This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

core / api / tangled / reporetryWebhookDelivery.go
1.2 kB 34 lines
1// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT. 2 3package tangled 4 5// schema: org.tangled.temp.repo.retryWebhookDelivery 6 7import ( 8 "context" 9 10 "github.com/bluesky-social/indigo/lex/util" 11) 12 13const ( 14 TempRepoRetryWebhookDeliveryNSID = "org.tangled.temp.repo.retryWebhookDelivery" 15) 16 17// TempRepoRetryWebhookDelivery_Input is the input argument to a org.tangled.temp.repo.retryWebhookDelivery call. 18type TempRepoRetryWebhookDelivery_Input struct { 19 // deliveryId: UUID of the delivery to retry. 20 DeliveryId string `json:"deliveryId" cborgen:"deliveryId"` 21 // repoDid: DID of the repository as minted by the knot. 22 RepoDid string `json:"repoDid" cborgen:"repoDid"` 23 // webhookId: Webhook ID that owns the delivery. 24 WebhookId int64 `json:"webhookId" cborgen:"webhookId"` 25} 26 27// TempRepoRetryWebhookDelivery calls the XRPC method "org.tangled.temp.repo.retryWebhookDelivery". 28func TempRepoRetryWebhookDelivery(ctx context.Context, c util.LexClient, input *TempRepoRetryWebhookDelivery_Input) error { 29 if err := c.LexDo(ctx, util.Procedure, "application/json", "org.tangled.temp.repo.retryWebhookDelivery", nil, input, nil); err != nil { 30 return err 31 } 32 33 return nil 34}