@agentpress/sdk 0.5.3 → 0.5.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -113,10 +113,15 @@ interface KeyRotationEvent {
113
113
  }
114
114
  /** Parameters for {@link WebhooksClient.send}. */
115
115
  interface WebhookSendParams {
116
- /** Webhook action name (matches an action rule on the server). */
116
+ /** Action webhook identifier (used in `/webhooks/actions/:org/:identifier`). */
117
117
  action: string;
118
118
  /** Arbitrary payload data forwarded to the webhook handler. */
119
119
  payload: Record<string, unknown>;
120
+ /**
121
+ * Verification scheme for the outbound request. Defaults to Svix signing
122
+ * with the client's `webhookSecret`.
123
+ */
124
+ auth?: WebhookSendAuth;
120
125
  }
121
126
  /** Parameters for verifying an inbound webhook signature via {@link WebhooksClient.verify} or {@link WebhooksClient.verifyOrThrow}. */
122
127
  interface WebhookVerifyParams {
@@ -136,6 +141,7 @@ interface WebhookResponse {
136
141
  actionId?: string;
137
142
  /** `true` if an action with the same `externalId` already existed (idempotency). */
138
143
  alreadyExists?: boolean;
144
+ /** `true` when AgentPress accepted the event but intentionally skipped dispatch. */
139
145
  skipped?: boolean;
140
146
  /**
141
147
  * `true` when AgentPress accepted the event (HTTP 202) but could not create
@@ -145,15 +151,69 @@ interface WebhookResponse {
145
151
  * is returned in this case; use {@link eventId} to correlate.
146
152
  */
147
153
  buffered?: boolean;
148
- /** UUID of the buffered `webhook_events` row (present when `buffered` is `true`). */
154
+ /** UUID of the persisted `webhook_events` row for buffered or skipped events. */
149
155
  eventId?: string;
150
- /** Machine-readable reason the event was buffered (e.g. `"no_action_rule_configured"`). */
156
+ /** Machine-readable reason the event was buffered or skipped. */
151
157
  reason?: string;
152
158
  data?: Record<string, unknown>;
153
159
  }
160
+ /** Authentication options for {@link WebhooksClient.send}. */
161
+ type WebhookSendAuth = {
162
+ scheme: "svix"; /** Action webhook secret. Defaults to the client's `webhookSecret`. */
163
+ secret?: string; /** Optional stable message id for deterministic tests/retries. */
164
+ msgId?: string; /** Unix timestamp in seconds. Defaults to now. */
165
+ timestamp?: number;
166
+ } | {
167
+ scheme: "hmac_sha256"; /** Action webhook secret. Defaults to the client's `webhookSecret`. */
168
+ secret?: string; /** Unix timestamp in seconds. Defaults to now. */
169
+ timestamp?: number;
170
+ } | {
171
+ scheme: "shared_token"; /** Action webhook token. Defaults to the client's `webhookSecret`. */
172
+ token?: string;
173
+ } | {
174
+ /** No verification headers. Only use for intentionally public webhooks. */scheme: "none";
175
+ };
176
+ /** Response from sending an event to the legacy Actions listener endpoint. */
177
+ interface WebhookIngestResponse {
178
+ /** UUID of the persisted `webhook_events` row. */
179
+ eventId: string;
180
+ /** True when the event matched an existing source/dedupe key. */
181
+ duplicate: boolean;
182
+ }
183
+ /** Authentication options for {@link WebhooksClient.sendToActionsListener}. */
184
+ type WebhookIngestAuth = {
185
+ scheme: "svix"; /** Listener secret shown once on create/rotation. */
186
+ secret: string; /** Optional stable message id for deterministic tests/retries. */
187
+ msgId?: string; /** Unix timestamp in seconds. Defaults to now. */
188
+ timestamp?: number;
189
+ } | {
190
+ scheme: "hmac_sha256"; /** Listener secret shown once on create/rotation. */
191
+ secret: string; /** Unix timestamp in seconds. Defaults to now. */
192
+ timestamp?: number;
193
+ } | {
194
+ scheme: "shared_token"; /** Listener token shown once on create/rotation. */
195
+ token: string;
196
+ } | {
197
+ /** Secret-URL listener. The endpoint URL itself is the credential. */scheme: "none";
198
+ };
199
+ /** Parameters for sending directly to the legacy Actions listener endpoint. */
200
+ interface WebhookIngestSendParams {
201
+ /** Listener identifier used in `/webhooks/ingest/:org/:identifier`. */
202
+ identifier: string;
203
+ /** Arbitrary JSON payload to buffer and route through the listener. */
204
+ payload: Record<string, unknown>;
205
+ /** Auth scheme matching the listener verification setting. */
206
+ auth: WebhookIngestAuth;
207
+ }
208
+ /** Preferred response name for Actions listener integrations. */
209
+ type ActionsListenerResponse = WebhookIngestResponse;
210
+ /** Preferred auth name for Actions listener integrations. */
211
+ type ActionsListenerAuth = WebhookIngestAuth;
212
+ /** Preferred parameter name for {@link WebhooksClient.sendToActionsListener}. */
213
+ type ActionsListenerSendParams = WebhookIngestSendParams;
154
214
  /** Parameters for {@link signHmacWebhookRequest}. */
155
215
  interface SignHmacWebhookRequestParams {
156
- /** The webhook listener's shared secret. */
216
+ /** The action webhook's shared secret. */
157
217
  secret: string;
158
218
  /**
159
219
  * The exact raw request body string that will be sent. The signature is
@@ -173,71 +233,75 @@ interface SignedHmacWebhookRequest {
173
233
  };
174
234
  }
175
235
  /**
176
- * Verification scheme for an inbound webhook listener
177
- * (`POST /webhooks/ingest/:org/:identifier`).
236
+ * Verification scheme for an action webhook
237
+ * (`POST /webhooks/actions/:org/:identifier`).
178
238
  *
179
239
  * - `"svix"` — Svix-style signing (`svix-id` / `svix-timestamp` / `svix-signature`).
180
240
  * - `"hmac_sha256"` — `x-webhook-timestamp` + `x-webhook-signature` headers;
181
241
  * sign with {@link signHmacWebhookRequest}.
182
242
  * - `"shared_token"` — `Authorization: Bearer <token>` or `x-webhook-token`;
183
243
  * build with {@link sharedTokenHeaders}.
184
- * - `"none"` — capability URL: the unguessable random suffix appended to the
185
- * endpoint identifier at creation time is the credential.
244
+ * - `"none"` — no verification headers; intended only for deliberately public
245
+ * or legacy endpoints.
186
246
  */
187
247
  type WebhookVerificationScheme = "svix" | "hmac_sha256" | "shared_token" | "none";
188
- /** Environment label for an inbound webhook listener. */
248
+ /** Preferred verification-scheme name for Actions listener integrations. */
249
+ type ActionsListenerVerificationScheme = WebhookVerificationScheme;
250
+ /** Environment label for an action webhook. */
189
251
  type WebhookEnvironment = "dev" | "sandbox" | "prod";
190
- /** Per-listener routing configuration ({@link IWebhookListenerConfig.routingConfig}). */
191
- interface IWebhookListenerRoutingConfig {
192
- /** Event types to skip (marked `skipped`, never dispatched to an agent). */
252
+ /** Preferred environment name for Actions listener integrations. */
253
+ type ActionsListenerEnvironment = WebhookEnvironment;
254
+ /** Per-action-webhook routing configuration. */
255
+ interface IActionWebhookRoutingConfig {
256
+ /** Legacy listener compatibility: event types to log but never dispatch. */
193
257
  ignoredEventTypes?: string[];
194
- /**
195
- * `"route"` dispatches buffered events to the target agent;
196
- * `"buffer_only"` accepts + logs events but skips agent dispatch.
197
- */
258
+ /** Legacy listener compatibility: buffer events without dispatching. */
198
259
  mode?: "route" | "buffer_only";
199
260
  /** Retention window in days for processed/skipped events. */
200
261
  retentionDays?: number;
201
- /** Sender IPs allowed to hit the ingest endpoint. Empty/omitted = all. */
262
+ /** Sender IPs allowed to hit the webhook endpoint. Empty/omitted = all. */
202
263
  ipAllowlist?: string[];
203
- /**
204
- * Webhook-specific guidance appended to the agent prompt on every
205
- * dispatched event (payload shapes, which tools to call, etc.).
206
- */
207
- instructions?: string;
208
- /** Ingest quota for this listener. Defaults to 100, capped at 1000. */
264
+ /** Browser sender origins allowed to hit the webhook endpoint. Empty/omitted = all. */
265
+ allowedOrigins?: string[];
266
+ /** Request quota for this action webhook. Defaults to 100/minute, capped at 1000. */
209
267
  rateLimitPerMinute?: number;
268
+ /** Legacy listener compatibility. New instructions should live on the action rule. */
269
+ instructions?: string;
210
270
  }
211
- /**
212
- * An inbound webhook listener as configured in AgentPress. Listeners receive
213
- * external events on `POST /webhooks/ingest/:org/:identifier`, buffer them
214
- * durably, and route them into actions for the target agent.
215
- */
216
- interface IWebhookListenerConfig {
271
+ /** Compatibility routing-config name for Actions listener integrations. */
272
+ type IWebhookListenerRoutingConfig = IActionWebhookRoutingConfig;
273
+ /** Preferred routing-config name for Actions listener integrations. */
274
+ type IActionsListenerRoutingConfig = IActionWebhookRoutingConfig;
275
+ /** Action webhook configuration as exposed to SDK consumers. */
276
+ interface IActionWebhookConfig {
217
277
  /** Human-readable display name. */
218
278
  name: string;
219
- /** Stable slug used in the ingest URL path. */
279
+ /** Stable slug used in the webhook URL path. */
220
280
  identifier: string;
221
281
  /** How inbound requests are authenticated. */
222
282
  verificationScheme: WebhookVerificationScheme;
223
- /** Environment label for the listener. */
283
+ /** Environment label for the webhook. */
224
284
  environment: WebhookEnvironment;
225
- /** Disabled listeners reject inbound events at the edge. */
285
+ /** Disabled webhooks reject inbound events at the edge. */
226
286
  enabled: boolean;
227
- /** Agent on the listener's default action rule (quick-setup path). */
287
+ /** Agent on the default action rule. */
228
288
  targetAgentId: string | null;
229
289
  /** Fallback user actions run as when the payload does not resolve one. */
230
290
  runAsUserId: string | null;
231
291
  /** Routing, retention, and rate-limit configuration. */
232
- routingConfig: IWebhookListenerRoutingConfig;
292
+ routingConfig: IActionWebhookRoutingConfig;
233
293
  }
294
+ /** Compatibility config name for Actions listener integrations. */
295
+ type IWebhookListenerConfig = IActionWebhookConfig;
296
+ /** Preferred config name for Actions listener integrations. */
297
+ type IActionsListenerConfig = IActionWebhookConfig;
234
298
  /**
235
- * An action rule's listen subscription. Rules that subscribe to a listening
299
+ * An action rule's webhook subscription. Rules that subscribe to an action
236
300
  * webhook receive its buffered events in addition to the webhook's default
237
- * rule, so one listening URL can fan out to several rules.
301
+ * rule, so one action webhook can fan out to several rules.
238
302
  */
239
- interface IActionRuleListenSubscription {
240
- /** Webhook listener this rule subscribes to; `null` = no subscription. */
303
+ interface IActionRuleWebhookSubscription {
304
+ /** Action webhook this rule subscribes to; `null` = no subscription. */
241
305
  listenWebhookId: string | null;
242
306
  /** Event types to receive; empty array = all event types. */
243
307
  listenEventTypes: string[];
@@ -778,7 +842,8 @@ declare class WebhooksClient {
778
842
  constructor(options: ResolvedOptions, http: HttpClient);
779
843
  /**
780
844
  * Send an arbitrary webhook payload to AgentPress.
781
- * Signs the payload with HMAC-SHA256 (Svix-compatible).
845
+ * Signs the payload with the verification scheme configured on the action
846
+ * webhook. Defaults to Svix-compatible signing.
782
847
  *
783
848
  * On the happy path the response is synchronous: `{ success: true,
784
849
  * actionId, data }`, or `{ success, actionId, alreadyExists: true, data }`
@@ -791,11 +856,25 @@ declare class WebhooksClient {
791
856
  * auto-processes once an operator fixes the configuration, so check
792
857
  * {@link WebhookResponse.buffered} before relying on `actionId`.
793
858
  *
794
- * @throws ConfigurationError if webhookSecret is not configured
859
+ * @throws ConfigurationError if the selected verification scheme needs a
860
+ * secret/token and none is configured
795
861
  * @throws HttpError on non-2xx response
796
862
  * @throws TimeoutError if request exceeds timeout
797
863
  */
798
864
  send(params: WebhookSendParams): Promise<WebhookResponse>;
865
+ /**
866
+ * Send a payload to the legacy Actions listener ingestion endpoint
867
+ * (`POST /webhooks/ingest/:org/:identifier`).
868
+ *
869
+ * New integrations should prefer {@link send}; this method is kept for
870
+ * existing listener integrations and SDK patch compatibility.
871
+ */
872
+ sendToActionsListener(params: ActionsListenerSendParams): Promise<ActionsListenerResponse>;
873
+ /**
874
+ * @deprecated Use {@link sendToActionsListener}. Kept as a compatibility
875
+ * alias for integrations created before the Actions listener naming update.
876
+ */
877
+ sendToListener(params: WebhookIngestSendParams): Promise<WebhookIngestResponse>;
799
878
  /**
800
879
  * Verify an inbound Svix webhook signature.
801
880
  *
@@ -924,11 +1003,11 @@ declare class KeyRotationVerifyError extends AgentPressError {
924
1003
  constructor(reason: KeyRotationVerifyErrorReason, message: string);
925
1004
  }
926
1005
  //#endregion
927
- //#region src/webhooks/ingestSigning.d.ts
1006
+ //#region src/webhooks/actionWebhookSigning.d.ts
928
1007
  /**
929
- * Sign an outbound request for an AgentPress inbound webhook listener that
930
- * uses the `hmac_sha256` verification scheme
931
- * (`POST /webhooks/ingest/:org/:identifier`).
1008
+ * Sign an outbound request for an AgentPress action webhook that uses the
1009
+ * `hmac_sha256` verification scheme
1010
+ * (`POST /webhooks/actions/:org/:identifier`).
932
1011
  *
933
1012
  * Produces the two headers AgentPress verifies:
934
1013
  *
@@ -943,7 +1022,7 @@ declare class KeyRotationVerifyError extends AgentPressError {
943
1022
  * ```ts
944
1023
  * const rawBody = JSON.stringify({ eventType: "review.created", data: {...} });
945
1024
  * const { headers } = signHmacWebhookRequest({ secret, rawBody });
946
- * await fetch(ingestUrl, {
1025
+ * await fetch(actionWebhookUrl, {
947
1026
  * method: "POST",
948
1027
  * body: rawBody,
949
1028
  * headers: { "content-type": "application/json", ...headers },
@@ -952,8 +1031,8 @@ declare class KeyRotationVerifyError extends AgentPressError {
952
1031
  */
953
1032
  declare function signHmacWebhookRequest(params: SignHmacWebhookRequestParams): SignedHmacWebhookRequest;
954
1033
  /**
955
- * Build the auth header for an AgentPress inbound webhook listener that uses
956
- * the `shared_token` verification scheme. AgentPress also accepts
1034
+ * Build the auth header for an AgentPress action webhook that uses the
1035
+ * `shared_token` verification scheme. AgentPress also accepts
957
1036
  * `Authorization: Bearer <token>`; this helper uses the dedicated
958
1037
  * `x-webhook-token` header so it never collides with other auth middleware.
959
1038
  */
@@ -961,5 +1040,5 @@ declare function sharedTokenHeaders(token: string): {
961
1040
  "x-webhook-token": string;
962
1041
  };
963
1042
  //#endregion
964
- export { ACTION_EVENT_TYPES, type ActionCallbackPayload, type ActionEventType, type ActionManageResponse, type ActionStatus, ActionsClient, AgentPress, AgentPressError, type AgentPressOptions, type AgentResponse, type ApprovalMode, type ApprovalRuleSyncMode, type ApproveActionParams, ConfigurationError, type CreateUserApprovalParams, type DeleteUserApprovalParams, type GetUserApprovalWebhookMetadataParams, HttpError, type IActionRuleListenSubscription, type IWebhookListenerConfig, type IWebhookListenerRoutingConfig, type KeyRotationEvent, KeyRotationVerifyError, type KeyRotationVerifyErrorReason, type KeyRotationVerifyParams, type ListUserApprovalsParams, type ListUserApprovalsResponse, type PartnerMcpOptions, type PartnerTokenClaims, PartnerTokenError, type PartnerTokenErrorReason, PartnersClient, type RejectActionParams, type SignHmacWebhookRequestParams, type SignedHmacWebhookRequest, type StagedToolCall, type StagedToolCallSummary, type SyncUserApprovalRule, type SyncUserApprovalsParams, type SyncUserApprovalsResponse, TimeoutError, type ToolCallResult, type UpdateUserApprovalParams, UserApprovalsClient, type UserToolApproval, type WebhookApprovalMetadata, type WebhookApprovalToolMetadata, type WebhookEnvironment, type WebhookResponse, type WebhookSendParams, WebhookSignatureError, type WebhookVerificationScheme, type WebhookVerifyParams, WebhooksClient, sharedTokenHeaders, signHmacWebhookRequest };
1043
+ export { ACTION_EVENT_TYPES, type ActionCallbackPayload, type ActionEventType, type ActionManageResponse, type ActionStatus, ActionsClient, type ActionsListenerAuth, type ActionsListenerEnvironment, type ActionsListenerResponse, type ActionsListenerSendParams, type ActionsListenerVerificationScheme, AgentPress, AgentPressError, type AgentPressOptions, type AgentResponse, type ApprovalMode, type ApprovalRuleSyncMode, type ApproveActionParams, ConfigurationError, type CreateUserApprovalParams, type DeleteUserApprovalParams, type GetUserApprovalWebhookMetadataParams, HttpError, type IActionRuleWebhookSubscription, type IActionWebhookConfig, type IActionWebhookRoutingConfig, type IActionsListenerConfig, type IActionsListenerRoutingConfig, type IWebhookListenerConfig, type IWebhookListenerRoutingConfig, type KeyRotationEvent, KeyRotationVerifyError, type KeyRotationVerifyErrorReason, type KeyRotationVerifyParams, type ListUserApprovalsParams, type ListUserApprovalsResponse, type PartnerMcpOptions, type PartnerTokenClaims, PartnerTokenError, type PartnerTokenErrorReason, PartnersClient, type RejectActionParams, type SignHmacWebhookRequestParams, type SignedHmacWebhookRequest, type StagedToolCall, type StagedToolCallSummary, type SyncUserApprovalRule, type SyncUserApprovalsParams, type SyncUserApprovalsResponse, TimeoutError, type ToolCallResult, type UpdateUserApprovalParams, UserApprovalsClient, type UserToolApproval, type WebhookApprovalMetadata, type WebhookApprovalToolMetadata, type WebhookEnvironment, type WebhookIngestAuth, type WebhookIngestResponse, type WebhookIngestSendParams, type WebhookResponse, type WebhookSendAuth, type WebhookSendParams, WebhookSignatureError, type WebhookVerificationScheme, type WebhookVerifyParams, WebhooksClient, sharedTokenHeaders, signHmacWebhookRequest };
965
1044
  //# sourceMappingURL=index.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.cts","names":[],"sources":["../src/types.ts","../src/http.ts","../src/actions/client.ts","../src/partners/client.ts","../src/userApprovals/client.ts","../src/webhooks/client.ts","../src/client.ts","../src/errors.ts","../src/webhooks/ingestSigning.ts"],"mappings":"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"}
1
+ {"version":3,"file":"index.d.cts","names":[],"sources":["../src/types.ts","../src/http.ts","../src/actions/client.ts","../src/partners/client.ts","../src/userApprovals/client.ts","../src/webhooks/client.ts","../src/client.ts","../src/errors.ts","../src/webhooks/actionWebhookSigning.ts"],"mappings":"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"}
package/dist/index.d.mts CHANGED
@@ -113,10 +113,15 @@ interface KeyRotationEvent {
113
113
  }
114
114
  /** Parameters for {@link WebhooksClient.send}. */
115
115
  interface WebhookSendParams {
116
- /** Webhook action name (matches an action rule on the server). */
116
+ /** Action webhook identifier (used in `/webhooks/actions/:org/:identifier`). */
117
117
  action: string;
118
118
  /** Arbitrary payload data forwarded to the webhook handler. */
119
119
  payload: Record<string, unknown>;
120
+ /**
121
+ * Verification scheme for the outbound request. Defaults to Svix signing
122
+ * with the client's `webhookSecret`.
123
+ */
124
+ auth?: WebhookSendAuth;
120
125
  }
121
126
  /** Parameters for verifying an inbound webhook signature via {@link WebhooksClient.verify} or {@link WebhooksClient.verifyOrThrow}. */
122
127
  interface WebhookVerifyParams {
@@ -136,6 +141,7 @@ interface WebhookResponse {
136
141
  actionId?: string;
137
142
  /** `true` if an action with the same `externalId` already existed (idempotency). */
138
143
  alreadyExists?: boolean;
144
+ /** `true` when AgentPress accepted the event but intentionally skipped dispatch. */
139
145
  skipped?: boolean;
140
146
  /**
141
147
  * `true` when AgentPress accepted the event (HTTP 202) but could not create
@@ -145,15 +151,69 @@ interface WebhookResponse {
145
151
  * is returned in this case; use {@link eventId} to correlate.
146
152
  */
147
153
  buffered?: boolean;
148
- /** UUID of the buffered `webhook_events` row (present when `buffered` is `true`). */
154
+ /** UUID of the persisted `webhook_events` row for buffered or skipped events. */
149
155
  eventId?: string;
150
- /** Machine-readable reason the event was buffered (e.g. `"no_action_rule_configured"`). */
156
+ /** Machine-readable reason the event was buffered or skipped. */
151
157
  reason?: string;
152
158
  data?: Record<string, unknown>;
153
159
  }
160
+ /** Authentication options for {@link WebhooksClient.send}. */
161
+ type WebhookSendAuth = {
162
+ scheme: "svix"; /** Action webhook secret. Defaults to the client's `webhookSecret`. */
163
+ secret?: string; /** Optional stable message id for deterministic tests/retries. */
164
+ msgId?: string; /** Unix timestamp in seconds. Defaults to now. */
165
+ timestamp?: number;
166
+ } | {
167
+ scheme: "hmac_sha256"; /** Action webhook secret. Defaults to the client's `webhookSecret`. */
168
+ secret?: string; /** Unix timestamp in seconds. Defaults to now. */
169
+ timestamp?: number;
170
+ } | {
171
+ scheme: "shared_token"; /** Action webhook token. Defaults to the client's `webhookSecret`. */
172
+ token?: string;
173
+ } | {
174
+ /** No verification headers. Only use for intentionally public webhooks. */scheme: "none";
175
+ };
176
+ /** Response from sending an event to the legacy Actions listener endpoint. */
177
+ interface WebhookIngestResponse {
178
+ /** UUID of the persisted `webhook_events` row. */
179
+ eventId: string;
180
+ /** True when the event matched an existing source/dedupe key. */
181
+ duplicate: boolean;
182
+ }
183
+ /** Authentication options for {@link WebhooksClient.sendToActionsListener}. */
184
+ type WebhookIngestAuth = {
185
+ scheme: "svix"; /** Listener secret shown once on create/rotation. */
186
+ secret: string; /** Optional stable message id for deterministic tests/retries. */
187
+ msgId?: string; /** Unix timestamp in seconds. Defaults to now. */
188
+ timestamp?: number;
189
+ } | {
190
+ scheme: "hmac_sha256"; /** Listener secret shown once on create/rotation. */
191
+ secret: string; /** Unix timestamp in seconds. Defaults to now. */
192
+ timestamp?: number;
193
+ } | {
194
+ scheme: "shared_token"; /** Listener token shown once on create/rotation. */
195
+ token: string;
196
+ } | {
197
+ /** Secret-URL listener. The endpoint URL itself is the credential. */scheme: "none";
198
+ };
199
+ /** Parameters for sending directly to the legacy Actions listener endpoint. */
200
+ interface WebhookIngestSendParams {
201
+ /** Listener identifier used in `/webhooks/ingest/:org/:identifier`. */
202
+ identifier: string;
203
+ /** Arbitrary JSON payload to buffer and route through the listener. */
204
+ payload: Record<string, unknown>;
205
+ /** Auth scheme matching the listener verification setting. */
206
+ auth: WebhookIngestAuth;
207
+ }
208
+ /** Preferred response name for Actions listener integrations. */
209
+ type ActionsListenerResponse = WebhookIngestResponse;
210
+ /** Preferred auth name for Actions listener integrations. */
211
+ type ActionsListenerAuth = WebhookIngestAuth;
212
+ /** Preferred parameter name for {@link WebhooksClient.sendToActionsListener}. */
213
+ type ActionsListenerSendParams = WebhookIngestSendParams;
154
214
  /** Parameters for {@link signHmacWebhookRequest}. */
155
215
  interface SignHmacWebhookRequestParams {
156
- /** The webhook listener's shared secret. */
216
+ /** The action webhook's shared secret. */
157
217
  secret: string;
158
218
  /**
159
219
  * The exact raw request body string that will be sent. The signature is
@@ -173,71 +233,75 @@ interface SignedHmacWebhookRequest {
173
233
  };
174
234
  }
175
235
  /**
176
- * Verification scheme for an inbound webhook listener
177
- * (`POST /webhooks/ingest/:org/:identifier`).
236
+ * Verification scheme for an action webhook
237
+ * (`POST /webhooks/actions/:org/:identifier`).
178
238
  *
179
239
  * - `"svix"` — Svix-style signing (`svix-id` / `svix-timestamp` / `svix-signature`).
180
240
  * - `"hmac_sha256"` — `x-webhook-timestamp` + `x-webhook-signature` headers;
181
241
  * sign with {@link signHmacWebhookRequest}.
182
242
  * - `"shared_token"` — `Authorization: Bearer <token>` or `x-webhook-token`;
183
243
  * build with {@link sharedTokenHeaders}.
184
- * - `"none"` — capability URL: the unguessable random suffix appended to the
185
- * endpoint identifier at creation time is the credential.
244
+ * - `"none"` — no verification headers; intended only for deliberately public
245
+ * or legacy endpoints.
186
246
  */
187
247
  type WebhookVerificationScheme = "svix" | "hmac_sha256" | "shared_token" | "none";
188
- /** Environment label for an inbound webhook listener. */
248
+ /** Preferred verification-scheme name for Actions listener integrations. */
249
+ type ActionsListenerVerificationScheme = WebhookVerificationScheme;
250
+ /** Environment label for an action webhook. */
189
251
  type WebhookEnvironment = "dev" | "sandbox" | "prod";
190
- /** Per-listener routing configuration ({@link IWebhookListenerConfig.routingConfig}). */
191
- interface IWebhookListenerRoutingConfig {
192
- /** Event types to skip (marked `skipped`, never dispatched to an agent). */
252
+ /** Preferred environment name for Actions listener integrations. */
253
+ type ActionsListenerEnvironment = WebhookEnvironment;
254
+ /** Per-action-webhook routing configuration. */
255
+ interface IActionWebhookRoutingConfig {
256
+ /** Legacy listener compatibility: event types to log but never dispatch. */
193
257
  ignoredEventTypes?: string[];
194
- /**
195
- * `"route"` dispatches buffered events to the target agent;
196
- * `"buffer_only"` accepts + logs events but skips agent dispatch.
197
- */
258
+ /** Legacy listener compatibility: buffer events without dispatching. */
198
259
  mode?: "route" | "buffer_only";
199
260
  /** Retention window in days for processed/skipped events. */
200
261
  retentionDays?: number;
201
- /** Sender IPs allowed to hit the ingest endpoint. Empty/omitted = all. */
262
+ /** Sender IPs allowed to hit the webhook endpoint. Empty/omitted = all. */
202
263
  ipAllowlist?: string[];
203
- /**
204
- * Webhook-specific guidance appended to the agent prompt on every
205
- * dispatched event (payload shapes, which tools to call, etc.).
206
- */
207
- instructions?: string;
208
- /** Ingest quota for this listener. Defaults to 100, capped at 1000. */
264
+ /** Browser sender origins allowed to hit the webhook endpoint. Empty/omitted = all. */
265
+ allowedOrigins?: string[];
266
+ /** Request quota for this action webhook. Defaults to 100/minute, capped at 1000. */
209
267
  rateLimitPerMinute?: number;
268
+ /** Legacy listener compatibility. New instructions should live on the action rule. */
269
+ instructions?: string;
210
270
  }
211
- /**
212
- * An inbound webhook listener as configured in AgentPress. Listeners receive
213
- * external events on `POST /webhooks/ingest/:org/:identifier`, buffer them
214
- * durably, and route them into actions for the target agent.
215
- */
216
- interface IWebhookListenerConfig {
271
+ /** Compatibility routing-config name for Actions listener integrations. */
272
+ type IWebhookListenerRoutingConfig = IActionWebhookRoutingConfig;
273
+ /** Preferred routing-config name for Actions listener integrations. */
274
+ type IActionsListenerRoutingConfig = IActionWebhookRoutingConfig;
275
+ /** Action webhook configuration as exposed to SDK consumers. */
276
+ interface IActionWebhookConfig {
217
277
  /** Human-readable display name. */
218
278
  name: string;
219
- /** Stable slug used in the ingest URL path. */
279
+ /** Stable slug used in the webhook URL path. */
220
280
  identifier: string;
221
281
  /** How inbound requests are authenticated. */
222
282
  verificationScheme: WebhookVerificationScheme;
223
- /** Environment label for the listener. */
283
+ /** Environment label for the webhook. */
224
284
  environment: WebhookEnvironment;
225
- /** Disabled listeners reject inbound events at the edge. */
285
+ /** Disabled webhooks reject inbound events at the edge. */
226
286
  enabled: boolean;
227
- /** Agent on the listener's default action rule (quick-setup path). */
287
+ /** Agent on the default action rule. */
228
288
  targetAgentId: string | null;
229
289
  /** Fallback user actions run as when the payload does not resolve one. */
230
290
  runAsUserId: string | null;
231
291
  /** Routing, retention, and rate-limit configuration. */
232
- routingConfig: IWebhookListenerRoutingConfig;
292
+ routingConfig: IActionWebhookRoutingConfig;
233
293
  }
294
+ /** Compatibility config name for Actions listener integrations. */
295
+ type IWebhookListenerConfig = IActionWebhookConfig;
296
+ /** Preferred config name for Actions listener integrations. */
297
+ type IActionsListenerConfig = IActionWebhookConfig;
234
298
  /**
235
- * An action rule's listen subscription. Rules that subscribe to a listening
299
+ * An action rule's webhook subscription. Rules that subscribe to an action
236
300
  * webhook receive its buffered events in addition to the webhook's default
237
- * rule, so one listening URL can fan out to several rules.
301
+ * rule, so one action webhook can fan out to several rules.
238
302
  */
239
- interface IActionRuleListenSubscription {
240
- /** Webhook listener this rule subscribes to; `null` = no subscription. */
303
+ interface IActionRuleWebhookSubscription {
304
+ /** Action webhook this rule subscribes to; `null` = no subscription. */
241
305
  listenWebhookId: string | null;
242
306
  /** Event types to receive; empty array = all event types. */
243
307
  listenEventTypes: string[];
@@ -778,7 +842,8 @@ declare class WebhooksClient {
778
842
  constructor(options: ResolvedOptions, http: HttpClient);
779
843
  /**
780
844
  * Send an arbitrary webhook payload to AgentPress.
781
- * Signs the payload with HMAC-SHA256 (Svix-compatible).
845
+ * Signs the payload with the verification scheme configured on the action
846
+ * webhook. Defaults to Svix-compatible signing.
782
847
  *
783
848
  * On the happy path the response is synchronous: `{ success: true,
784
849
  * actionId, data }`, or `{ success, actionId, alreadyExists: true, data }`
@@ -791,11 +856,25 @@ declare class WebhooksClient {
791
856
  * auto-processes once an operator fixes the configuration, so check
792
857
  * {@link WebhookResponse.buffered} before relying on `actionId`.
793
858
  *
794
- * @throws ConfigurationError if webhookSecret is not configured
859
+ * @throws ConfigurationError if the selected verification scheme needs a
860
+ * secret/token and none is configured
795
861
  * @throws HttpError on non-2xx response
796
862
  * @throws TimeoutError if request exceeds timeout
797
863
  */
798
864
  send(params: WebhookSendParams): Promise<WebhookResponse>;
865
+ /**
866
+ * Send a payload to the legacy Actions listener ingestion endpoint
867
+ * (`POST /webhooks/ingest/:org/:identifier`).
868
+ *
869
+ * New integrations should prefer {@link send}; this method is kept for
870
+ * existing listener integrations and SDK patch compatibility.
871
+ */
872
+ sendToActionsListener(params: ActionsListenerSendParams): Promise<ActionsListenerResponse>;
873
+ /**
874
+ * @deprecated Use {@link sendToActionsListener}. Kept as a compatibility
875
+ * alias for integrations created before the Actions listener naming update.
876
+ */
877
+ sendToListener(params: WebhookIngestSendParams): Promise<WebhookIngestResponse>;
799
878
  /**
800
879
  * Verify an inbound Svix webhook signature.
801
880
  *
@@ -924,11 +1003,11 @@ declare class KeyRotationVerifyError extends AgentPressError {
924
1003
  constructor(reason: KeyRotationVerifyErrorReason, message: string);
925
1004
  }
926
1005
  //#endregion
927
- //#region src/webhooks/ingestSigning.d.ts
1006
+ //#region src/webhooks/actionWebhookSigning.d.ts
928
1007
  /**
929
- * Sign an outbound request for an AgentPress inbound webhook listener that
930
- * uses the `hmac_sha256` verification scheme
931
- * (`POST /webhooks/ingest/:org/:identifier`).
1008
+ * Sign an outbound request for an AgentPress action webhook that uses the
1009
+ * `hmac_sha256` verification scheme
1010
+ * (`POST /webhooks/actions/:org/:identifier`).
932
1011
  *
933
1012
  * Produces the two headers AgentPress verifies:
934
1013
  *
@@ -943,7 +1022,7 @@ declare class KeyRotationVerifyError extends AgentPressError {
943
1022
  * ```ts
944
1023
  * const rawBody = JSON.stringify({ eventType: "review.created", data: {...} });
945
1024
  * const { headers } = signHmacWebhookRequest({ secret, rawBody });
946
- * await fetch(ingestUrl, {
1025
+ * await fetch(actionWebhookUrl, {
947
1026
  * method: "POST",
948
1027
  * body: rawBody,
949
1028
  * headers: { "content-type": "application/json", ...headers },
@@ -952,8 +1031,8 @@ declare class KeyRotationVerifyError extends AgentPressError {
952
1031
  */
953
1032
  declare function signHmacWebhookRequest(params: SignHmacWebhookRequestParams): SignedHmacWebhookRequest;
954
1033
  /**
955
- * Build the auth header for an AgentPress inbound webhook listener that uses
956
- * the `shared_token` verification scheme. AgentPress also accepts
1034
+ * Build the auth header for an AgentPress action webhook that uses the
1035
+ * `shared_token` verification scheme. AgentPress also accepts
957
1036
  * `Authorization: Bearer <token>`; this helper uses the dedicated
958
1037
  * `x-webhook-token` header so it never collides with other auth middleware.
959
1038
  */
@@ -961,5 +1040,5 @@ declare function sharedTokenHeaders(token: string): {
961
1040
  "x-webhook-token": string;
962
1041
  };
963
1042
  //#endregion
964
- export { ACTION_EVENT_TYPES, type ActionCallbackPayload, type ActionEventType, type ActionManageResponse, type ActionStatus, ActionsClient, AgentPress, AgentPressError, type AgentPressOptions, type AgentResponse, type ApprovalMode, type ApprovalRuleSyncMode, type ApproveActionParams, ConfigurationError, type CreateUserApprovalParams, type DeleteUserApprovalParams, type GetUserApprovalWebhookMetadataParams, HttpError, type IActionRuleListenSubscription, type IWebhookListenerConfig, type IWebhookListenerRoutingConfig, type KeyRotationEvent, KeyRotationVerifyError, type KeyRotationVerifyErrorReason, type KeyRotationVerifyParams, type ListUserApprovalsParams, type ListUserApprovalsResponse, type PartnerMcpOptions, type PartnerTokenClaims, PartnerTokenError, type PartnerTokenErrorReason, PartnersClient, type RejectActionParams, type SignHmacWebhookRequestParams, type SignedHmacWebhookRequest, type StagedToolCall, type StagedToolCallSummary, type SyncUserApprovalRule, type SyncUserApprovalsParams, type SyncUserApprovalsResponse, TimeoutError, type ToolCallResult, type UpdateUserApprovalParams, UserApprovalsClient, type UserToolApproval, type WebhookApprovalMetadata, type WebhookApprovalToolMetadata, type WebhookEnvironment, type WebhookResponse, type WebhookSendParams, WebhookSignatureError, type WebhookVerificationScheme, type WebhookVerifyParams, WebhooksClient, sharedTokenHeaders, signHmacWebhookRequest };
1043
+ export { ACTION_EVENT_TYPES, type ActionCallbackPayload, type ActionEventType, type ActionManageResponse, type ActionStatus, ActionsClient, type ActionsListenerAuth, type ActionsListenerEnvironment, type ActionsListenerResponse, type ActionsListenerSendParams, type ActionsListenerVerificationScheme, AgentPress, AgentPressError, type AgentPressOptions, type AgentResponse, type ApprovalMode, type ApprovalRuleSyncMode, type ApproveActionParams, ConfigurationError, type CreateUserApprovalParams, type DeleteUserApprovalParams, type GetUserApprovalWebhookMetadataParams, HttpError, type IActionRuleWebhookSubscription, type IActionWebhookConfig, type IActionWebhookRoutingConfig, type IActionsListenerConfig, type IActionsListenerRoutingConfig, type IWebhookListenerConfig, type IWebhookListenerRoutingConfig, type KeyRotationEvent, KeyRotationVerifyError, type KeyRotationVerifyErrorReason, type KeyRotationVerifyParams, type ListUserApprovalsParams, type ListUserApprovalsResponse, type PartnerMcpOptions, type PartnerTokenClaims, PartnerTokenError, type PartnerTokenErrorReason, PartnersClient, type RejectActionParams, type SignHmacWebhookRequestParams, type SignedHmacWebhookRequest, type StagedToolCall, type StagedToolCallSummary, type SyncUserApprovalRule, type SyncUserApprovalsParams, type SyncUserApprovalsResponse, TimeoutError, type ToolCallResult, type UpdateUserApprovalParams, UserApprovalsClient, type UserToolApproval, type WebhookApprovalMetadata, type WebhookApprovalToolMetadata, type WebhookEnvironment, type WebhookIngestAuth, type WebhookIngestResponse, type WebhookIngestSendParams, type WebhookResponse, type WebhookSendAuth, type WebhookSendParams, WebhookSignatureError, type WebhookVerificationScheme, type WebhookVerifyParams, WebhooksClient, sharedTokenHeaders, signHmacWebhookRequest };
965
1044
  //# sourceMappingURL=index.d.mts.map