@slates/proto 1.0.0-rc.20 → 1.0.0-rc.22
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.cjs +9 -2
- package/dist/index.d.cts +17 -1
- package/dist/index.d.ts +17 -1
- package/dist/index.module.js +8 -2
- package/package.json +2 -2
- package/src/messages/triggerGroup.ts +12 -2
package/dist/index.cjs
CHANGED
|
@@ -146,6 +146,7 @@ __export(index_exports, {
|
|
|
146
146
|
slatesTriggerGroupInvocation: () => slatesTriggerGroupInvocation,
|
|
147
147
|
slatesTriggerGroupRequestsByMethod: () => slatesTriggerGroupRequestsByMethod,
|
|
148
148
|
slatesTriggerGroupResponsesByMethod: () => slatesTriggerGroupResponsesByMethod,
|
|
149
|
+
slatesTriggerGroupWebhookSkipped: () => slatesTriggerGroupWebhookSkipped,
|
|
149
150
|
slatesTriggerRoutingMatcher: () => slatesTriggerRoutingMatcher,
|
|
150
151
|
slatesWebhookHttpResponse: () => slatesWebhookHttpResponse,
|
|
151
152
|
slatesWebhookTarget: () => slatesWebhookTarget,
|
|
@@ -1003,6 +1004,9 @@ var slatesTriggerGroupWebhookEvent = import_zod15.default.object({
|
|
|
1003
1004
|
idempotencyKey: import_zod15.default.string().optional(),
|
|
1004
1005
|
triggerIds: import_zod15.default.array(import_zod15.default.string())
|
|
1005
1006
|
});
|
|
1007
|
+
var slatesTriggerGroupWebhookSkipped = import_zod15.default.object({
|
|
1008
|
+
reason: import_zod15.default.string()
|
|
1009
|
+
});
|
|
1006
1010
|
var slatesTriggerGroupPollEvent = import_zod15.default.object({
|
|
1007
1011
|
payload: import_zod15.default.record(import_zod15.default.string(), import_zod15.default.any()),
|
|
1008
1012
|
idempotencyKey: import_zod15.default.string().optional(),
|
|
@@ -1050,7 +1054,8 @@ var slatesMessageTriggerGroupWebhookTargetsListResponse = import_zod15.default.o
|
|
|
1050
1054
|
id: import_zod15.default.string(),
|
|
1051
1055
|
result: withRequestTraces({
|
|
1052
1056
|
targets: import_zod15.default.array(slatesWebhookTarget),
|
|
1053
|
-
nextPageToken: import_zod15.default.any().nullable()
|
|
1057
|
+
nextPageToken: import_zod15.default.any().nullable(),
|
|
1058
|
+
isPartial: import_zod15.default.boolean().optional()
|
|
1054
1059
|
})
|
|
1055
1060
|
});
|
|
1056
1061
|
var slatesMessageTriggerGroupWebhookRegisterRequest = import_zod15.default.object({
|
|
@@ -1143,7 +1148,8 @@ var slatesMessageTriggerGroupWebhookProcessResponse = import_zod15.default.objec
|
|
|
1143
1148
|
id: import_zod15.default.string(),
|
|
1144
1149
|
result: withRequestTraces({
|
|
1145
1150
|
events: import_zod15.default.array(slatesTriggerGroupWebhookEvent),
|
|
1146
|
-
response: slatesWebhookHttpResponse.nullable().optional()
|
|
1151
|
+
response: slatesWebhookHttpResponse.nullable().optional(),
|
|
1152
|
+
skipped: slatesTriggerGroupWebhookSkipped.nullable().optional()
|
|
1147
1153
|
})
|
|
1148
1154
|
});
|
|
1149
1155
|
var slatesMessageTriggerGroupRoutingMatchersGetRequest = import_zod15.default.object({
|
|
@@ -1623,6 +1629,7 @@ var mapUnknownErrorToSlateErrorResponse = (error, defaults = {}) => ({
|
|
|
1623
1629
|
slatesTriggerGroupInvocation,
|
|
1624
1630
|
slatesTriggerGroupRequestsByMethod,
|
|
1625
1631
|
slatesTriggerGroupResponsesByMethod,
|
|
1632
|
+
slatesTriggerGroupWebhookSkipped,
|
|
1626
1633
|
slatesTriggerRoutingMatcher,
|
|
1627
1634
|
slatesWebhookHttpResponse,
|
|
1628
1635
|
slatesWebhookTarget,
|
package/dist/index.d.cts
CHANGED
|
@@ -2555,6 +2555,10 @@ declare let withRequestTraces: <Shape extends z.ZodRawShape>(shape: Shape) => z.
|
|
|
2555
2555
|
}, z.core.$strip>>>;
|
|
2556
2556
|
})[P]; } : never, z.core.$strip>;
|
|
2557
2557
|
|
|
2558
|
+
declare let slatesTriggerGroupWebhookSkipped: z.ZodObject<{
|
|
2559
|
+
reason: z.ZodString;
|
|
2560
|
+
}, z.core.$strip>;
|
|
2561
|
+
type SlatesTriggerGroupWebhookSkipped = z.infer<typeof slatesTriggerGroupWebhookSkipped>;
|
|
2558
2562
|
/**
|
|
2559
2563
|
* List Trigger Groups
|
|
2560
2564
|
*/
|
|
@@ -2658,6 +2662,7 @@ declare let slatesMessageTriggerGroupWebhookTargetsListResponse: z.ZodObject<{
|
|
|
2658
2662
|
}>;
|
|
2659
2663
|
}, z.core.$strip>>;
|
|
2660
2664
|
nextPageToken: z.ZodNullable<z.ZodAny>;
|
|
2665
|
+
isPartial: z.ZodOptional<z.ZodBoolean>;
|
|
2661
2666
|
requestTraces: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2662
2667
|
startedAt: z.ZodString;
|
|
2663
2668
|
durationMs: z.ZodNumber;
|
|
@@ -2901,6 +2906,9 @@ declare let slatesMessageTriggerGroupWebhookProcessResponse: z.ZodObject<{
|
|
|
2901
2906
|
content: z.ZodString;
|
|
2902
2907
|
}, z.core.$strip>>;
|
|
2903
2908
|
}, z.core.$strip>>>;
|
|
2909
|
+
skipped: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2910
|
+
reason: z.ZodString;
|
|
2911
|
+
}, z.core.$strip>>>;
|
|
2904
2912
|
requestTraces: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2905
2913
|
startedAt: z.ZodString;
|
|
2906
2914
|
durationMs: z.ZodNumber;
|
|
@@ -3103,6 +3111,7 @@ declare let slatesTriggerGroupResponsesByMethod: {
|
|
|
3103
3111
|
}>;
|
|
3104
3112
|
}, z.core.$strip>>;
|
|
3105
3113
|
nextPageToken: z.ZodNullable<z.ZodAny>;
|
|
3114
|
+
isPartial: z.ZodOptional<z.ZodBoolean>;
|
|
3106
3115
|
requestTraces: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3107
3116
|
startedAt: z.ZodString;
|
|
3108
3117
|
durationMs: z.ZodNumber;
|
|
@@ -3264,6 +3273,9 @@ declare let slatesTriggerGroupResponsesByMethod: {
|
|
|
3264
3273
|
content: z.ZodString;
|
|
3265
3274
|
}, z.core.$strip>>;
|
|
3266
3275
|
}, z.core.$strip>>>;
|
|
3276
|
+
skipped: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
3277
|
+
reason: z.ZodString;
|
|
3278
|
+
}, z.core.$strip>>>;
|
|
3267
3279
|
requestTraces: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3268
3280
|
startedAt: z.ZodString;
|
|
3269
3281
|
durationMs: z.ZodNumber;
|
|
@@ -3586,6 +3598,7 @@ declare let slatesResponsesByMethod: {
|
|
|
3586
3598
|
}>;
|
|
3587
3599
|
}, z$1.core.$strip>>;
|
|
3588
3600
|
nextPageToken: z$1.ZodNullable<z$1.ZodAny>;
|
|
3601
|
+
isPartial: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
3589
3602
|
requestTraces: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
3590
3603
|
startedAt: z$1.ZodString;
|
|
3591
3604
|
durationMs: z$1.ZodNumber;
|
|
@@ -3747,6 +3760,9 @@ declare let slatesResponsesByMethod: {
|
|
|
3747
3760
|
content: z$1.ZodString;
|
|
3748
3761
|
}, z$1.core.$strip>>;
|
|
3749
3762
|
}, z$1.core.$strip>>>;
|
|
3763
|
+
skipped: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
|
|
3764
|
+
reason: z$1.ZodString;
|
|
3765
|
+
}, z$1.core.$strip>>>;
|
|
3750
3766
|
requestTraces: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
3751
3767
|
startedAt: z$1.ZodString;
|
|
3752
3768
|
durationMs: z$1.ZodNumber;
|
|
@@ -5391,4 +5407,4 @@ type SlatesWebhookTarget = z.infer<typeof slatesWebhookTarget>;
|
|
|
5391
5407
|
declare const SLATES_PROTOCOL_VERSION: "slates@2026-01-01";
|
|
5392
5408
|
type SlatesProtocolVersion = typeof SLATES_PROTOCOL_VERSION;
|
|
5393
5409
|
|
|
5394
|
-
export { SLATES_PROTOCOL_VERSION, SLATES_WEBHOOK_ERROR_CODES, SLATES_WEBHOOK_ERROR_DEFAULTS, type SlateAdapter, type SlateAuthenticationMethod, type SlatesAction, type SlatesActionRequests, type SlatesActionResponses, type SlatesActionScopes, type SlatesActionTool, type SlatesActionTrigger, type SlatesAdapterRequests, type SlatesAdapterResponses, type SlatesAuthNotifications, type SlatesAuthRequests, type SlatesAuthResponses, type SlatesConfigNotifications, type SlatesConfigRequests, type SlatesConfigResponses, type SlatesControlFlowNotifications, type SlatesHubNotifications, type SlatesHubRequests, type SlatesHubResponses, type SlatesIdentifyRequests, type SlatesIdentifyResponses, type SlatesLegacyTriggerRequests, type SlatesLegacyTriggerResponses, type SlatesMessageActionGetRequest, type SlatesMessageActionGetResponse, type SlatesMessageActionInvokeRequest, type SlatesMessageActionInvokeResponse, type SlatesMessageActionTriggerEventMapRequest, type SlatesMessageActionTriggerEventMapResponse, type SlatesMessageActionTriggerEventsPollRequest, type SlatesMessageActionTriggerEventsPollResponse, type SlatesMessageActionTriggerWebhookHandleRequest, type SlatesMessageActionTriggerWebhookHandleResponse, type SlatesMessageActionTriggerWebhookRegisterRequest, type SlatesMessageActionTriggerWebhookRegisterResponse, type SlatesMessageActionTriggerWebhookUnregisterRequest, type SlatesMessageActionTriggerWebhookUnregisterResponse, type SlatesMessageActionsListRequest, type SlatesMessageActionsListResponse, type SlatesMessageAdapterGetRequest, type SlatesMessageAdapterGetResponse, type SlatesMessageAdaptersListRequest, type SlatesMessageAdaptersListResponse, type SlatesMessageAuthAuthorizationCallbackHandleRequest, type SlatesMessageAuthAuthorizationCallbackHandleResponse, type SlatesMessageAuthAuthorizationUrlGetRequest, type SlatesMessageAuthAuthorizationUrlGetResponse, type SlatesMessageAuthDefaultInputGetRequest, type SlatesMessageAuthDefaultInputGetResponse, type SlatesMessageAuthInputChangedRequest, type SlatesMessageAuthInputChangedResponse, type SlatesMessageAuthMethodGetRequest, type SlatesMessageAuthMethodGetResponse, type SlatesMessageAuthMethodsListRequest, type SlatesMessageAuthMethodsListResponse, type SlatesMessageAuthOutputGetRequest, type SlatesMessageAuthOutputGetResponse, type SlatesMessageAuthProfileGetRequest, type SlatesMessageAuthProfileGetResponse, type SlatesMessageAuthTokenRefreshHandleRequest, type SlatesMessageAuthTokenRefreshHandleResponse, type SlatesMessageConfigChangedRequest, type SlatesMessageConfigChangedResponse, type SlatesMessageConfigDefaultGetRequest, type SlatesMessageConfigDefaultGetResponse, type SlatesMessageConfigSchemaGetRequest, type SlatesMessageConfigSchemaGetResponse, type SlatesMessageHelloNotification, type SlatesMessageHubCapabilitiesSetNotification, type SlatesMessageHubLiveInvocationSetNotification, type SlatesMessageProviderCapabilitiesGetRequest, type SlatesMessageProviderCapabilitiesGetResponse, type SlatesMessageProviderIdentifyRequest, type SlatesMessageProviderIdentifyResponse, type SlatesMessageSessionStartNotification, type SlatesMessageSetAuthNotification, type SlatesMessageSetConfigNotification, type SlatesMessageSetParticipantsNotification, type SlatesMessageTriggerGroupGetRequest, type SlatesMessageTriggerGroupGetResponse, type SlatesMessageTriggerGroupPollingPollRequest, type SlatesMessageTriggerGroupPollingPollResponse, type SlatesMessageTriggerGroupRoutingMatchersGetRequest, type SlatesMessageTriggerGroupRoutingMatchersGetResponse, type SlatesMessageTriggerGroupWebhookManualFinishRequest, type SlatesMessageTriggerGroupWebhookManualFinishResponse, type SlatesMessageTriggerGroupWebhookManualSetupRequest, type SlatesMessageTriggerGroupWebhookManualSetupResponse, type SlatesMessageTriggerGroupWebhookProcessRequest, type SlatesMessageTriggerGroupWebhookProcessResponse, type SlatesMessageTriggerGroupWebhookRegisterRequest, type SlatesMessageTriggerGroupWebhookRegisterResponse, type SlatesMessageTriggerGroupWebhookTargetsListRequest, type SlatesMessageTriggerGroupWebhookTargetsListResponse, type SlatesMessageTriggerGroupWebhookUnregisterRequest, type SlatesMessageTriggerGroupWebhookUnregisterResponse, type SlatesMessageTriggerGroupsListRequest, type SlatesMessageTriggerGroupsListResponse, type SlatesNotifications, type SlatesParticipant, type SlatesProtocolVersion, SlatesProviderProtoHandlerManager, type SlatesRequests, type SlatesResponses, type SlatesResponsesByMethod, type SlatesTriggerGroup, type SlatesTriggerGroupInvocation, type SlatesTriggerGroupRequests, type SlatesTriggerGroupResponses, type SlatesTriggerRoutingMatcher, type SlatesWebhookErrorCode, type SlatesWebhookHttpResponse, type SlatesWebhookTarget, type SlatesWebhookTargetOwnership, createSlatesProviderProtoHandler, slatesAction, slatesActionBase, slatesActionRequestsByMethod, slatesActionResponsesByMethod, slatesActionScopeClause, slatesActionScopes, slatesActionTool, slatesActionTrigger, slatesAdapter, slatesAdapterRequestsByMethod, slatesAdapterResponsesByMethod, slatesAuthNotificationsByMethod, slatesAuthRequestsByMethod, slatesAuthResponsesByMethod, slatesAuthenticationMethod, slatesConfigNotificationsByMethod, slatesConfigRequestsByMethod, slatesConfigResponsesByMethod, slatesControlFlowNotificationsByMethod, slatesHubNotificationsByMethod, slatesHubRequestsByMethod, slatesHubResponsesByMethod, slatesIdentifyRequestsByMethod, slatesIdentifyResponsesByMethod, slatesLegacyTriggerRequestsByMethod, slatesLegacyTriggerResponsesByMethod, slatesMessageActionGetRequest, slatesMessageActionGetResponse, slatesMessageActionInvokeRequest, slatesMessageActionInvokeResponse, slatesMessageActionTriggerEventMapRequest, slatesMessageActionTriggerEventMapResponse, slatesMessageActionTriggerEventsPollRequest, slatesMessageActionTriggerEventsPollResponse, slatesMessageActionTriggerWebhookHandleRequest, slatesMessageActionTriggerWebhookHandleResponse, slatesMessageActionTriggerWebhookRegisterRequest, slatesMessageActionTriggerWebhookRegisterResponse, slatesMessageActionTriggerWebhookUnregisterRequest, slatesMessageActionTriggerWebhookUnregisterResponse, slatesMessageActionsListRequest, slatesMessageActionsListResponse, slatesMessageAdapterGetRequest, slatesMessageAdapterGetResponse, slatesMessageAdaptersListRequest, slatesMessageAdaptersListResponse, slatesMessageAuthAuthorizationCallbackHandleRequest, slatesMessageAuthAuthorizationCallbackHandleResponse, slatesMessageAuthAuthorizationUrlGetRequest, slatesMessageAuthAuthorizationUrlGetResponse, slatesMessageAuthDefaultInputGetRequest, slatesMessageAuthDefaultInputGetResponse, slatesMessageAuthInputChangedRequest, slatesMessageAuthInputChangedResponse, slatesMessageAuthMethodGetRequest, slatesMessageAuthMethodGetResponse, slatesMessageAuthMethodsListRequest, slatesMessageAuthMethodsListResponse, slatesMessageAuthOutputGetRequest, slatesMessageAuthOutputGetResponse, slatesMessageAuthProfileGetRequest, slatesMessageAuthProfileGetResponse, slatesMessageAuthTokenRefreshHandleRequest, slatesMessageAuthTokenRefreshHandleResponse, slatesMessageConfigChangedRequest, slatesMessageConfigChangedResponse, slatesMessageConfigDefaultGetRequest, slatesMessageConfigDefaultGetResponse, slatesMessageConfigSchemaGetRequest, slatesMessageConfigSchemaGetResponse, slatesMessageHelloNotification, slatesMessageHubCapabilitiesSetNotification, slatesMessageHubLiveInvocationSetNotification, slatesMessageProviderCapabilitiesGetRequest, slatesMessageProviderCapabilitiesGetResponse, slatesMessageProviderIdentifyRequest, slatesMessageProviderIdentifyResponse, slatesMessageSessionStartNotification, slatesMessageSetAuthNotification, slatesMessageSetConfigNotification, slatesMessageSetParticipantsNotification, slatesMessageTriggerGroupGetRequest, slatesMessageTriggerGroupGetResponse, slatesMessageTriggerGroupPollingPollRequest, slatesMessageTriggerGroupPollingPollResponse, slatesMessageTriggerGroupRoutingMatchersGetRequest, slatesMessageTriggerGroupRoutingMatchersGetResponse, slatesMessageTriggerGroupWebhookManualFinishRequest, slatesMessageTriggerGroupWebhookManualFinishResponse, slatesMessageTriggerGroupWebhookManualSetupRequest, slatesMessageTriggerGroupWebhookManualSetupResponse, slatesMessageTriggerGroupWebhookProcessRequest, slatesMessageTriggerGroupWebhookProcessResponse, slatesMessageTriggerGroupWebhookRegisterRequest, slatesMessageTriggerGroupWebhookRegisterResponse, slatesMessageTriggerGroupWebhookTargetsListRequest, slatesMessageTriggerGroupWebhookTargetsListResponse, slatesMessageTriggerGroupWebhookUnregisterRequest, slatesMessageTriggerGroupWebhookUnregisterResponse, slatesMessageTriggerGroupsListRequest, slatesMessageTriggerGroupsListResponse, slatesNotificationsByMethod, slatesParticipant, slatesRequestTrace, slatesRequestTraceTextBody, slatesRequestsByMethod, slatesResponsesByMethod, slatesTriggerGroup, slatesTriggerGroupInvocation, slatesTriggerGroupRequestsByMethod, slatesTriggerGroupResponsesByMethod, slatesTriggerRoutingMatcher, slatesWebhookHttpResponse, slatesWebhookTarget, slatesWebhookTargetOwnership, withRequestTraces };
|
|
5410
|
+
export { SLATES_PROTOCOL_VERSION, SLATES_WEBHOOK_ERROR_CODES, SLATES_WEBHOOK_ERROR_DEFAULTS, type SlateAdapter, type SlateAuthenticationMethod, type SlatesAction, type SlatesActionRequests, type SlatesActionResponses, type SlatesActionScopes, type SlatesActionTool, type SlatesActionTrigger, type SlatesAdapterRequests, type SlatesAdapterResponses, type SlatesAuthNotifications, type SlatesAuthRequests, type SlatesAuthResponses, type SlatesConfigNotifications, type SlatesConfigRequests, type SlatesConfigResponses, type SlatesControlFlowNotifications, type SlatesHubNotifications, type SlatesHubRequests, type SlatesHubResponses, type SlatesIdentifyRequests, type SlatesIdentifyResponses, type SlatesLegacyTriggerRequests, type SlatesLegacyTriggerResponses, type SlatesMessageActionGetRequest, type SlatesMessageActionGetResponse, type SlatesMessageActionInvokeRequest, type SlatesMessageActionInvokeResponse, type SlatesMessageActionTriggerEventMapRequest, type SlatesMessageActionTriggerEventMapResponse, type SlatesMessageActionTriggerEventsPollRequest, type SlatesMessageActionTriggerEventsPollResponse, type SlatesMessageActionTriggerWebhookHandleRequest, type SlatesMessageActionTriggerWebhookHandleResponse, type SlatesMessageActionTriggerWebhookRegisterRequest, type SlatesMessageActionTriggerWebhookRegisterResponse, type SlatesMessageActionTriggerWebhookUnregisterRequest, type SlatesMessageActionTriggerWebhookUnregisterResponse, type SlatesMessageActionsListRequest, type SlatesMessageActionsListResponse, type SlatesMessageAdapterGetRequest, type SlatesMessageAdapterGetResponse, type SlatesMessageAdaptersListRequest, type SlatesMessageAdaptersListResponse, type SlatesMessageAuthAuthorizationCallbackHandleRequest, type SlatesMessageAuthAuthorizationCallbackHandleResponse, type SlatesMessageAuthAuthorizationUrlGetRequest, type SlatesMessageAuthAuthorizationUrlGetResponse, type SlatesMessageAuthDefaultInputGetRequest, type SlatesMessageAuthDefaultInputGetResponse, type SlatesMessageAuthInputChangedRequest, type SlatesMessageAuthInputChangedResponse, type SlatesMessageAuthMethodGetRequest, type SlatesMessageAuthMethodGetResponse, type SlatesMessageAuthMethodsListRequest, type SlatesMessageAuthMethodsListResponse, type SlatesMessageAuthOutputGetRequest, type SlatesMessageAuthOutputGetResponse, type SlatesMessageAuthProfileGetRequest, type SlatesMessageAuthProfileGetResponse, type SlatesMessageAuthTokenRefreshHandleRequest, type SlatesMessageAuthTokenRefreshHandleResponse, type SlatesMessageConfigChangedRequest, type SlatesMessageConfigChangedResponse, type SlatesMessageConfigDefaultGetRequest, type SlatesMessageConfigDefaultGetResponse, type SlatesMessageConfigSchemaGetRequest, type SlatesMessageConfigSchemaGetResponse, type SlatesMessageHelloNotification, type SlatesMessageHubCapabilitiesSetNotification, type SlatesMessageHubLiveInvocationSetNotification, type SlatesMessageProviderCapabilitiesGetRequest, type SlatesMessageProviderCapabilitiesGetResponse, type SlatesMessageProviderIdentifyRequest, type SlatesMessageProviderIdentifyResponse, type SlatesMessageSessionStartNotification, type SlatesMessageSetAuthNotification, type SlatesMessageSetConfigNotification, type SlatesMessageSetParticipantsNotification, type SlatesMessageTriggerGroupGetRequest, type SlatesMessageTriggerGroupGetResponse, type SlatesMessageTriggerGroupPollingPollRequest, type SlatesMessageTriggerGroupPollingPollResponse, type SlatesMessageTriggerGroupRoutingMatchersGetRequest, type SlatesMessageTriggerGroupRoutingMatchersGetResponse, type SlatesMessageTriggerGroupWebhookManualFinishRequest, type SlatesMessageTriggerGroupWebhookManualFinishResponse, type SlatesMessageTriggerGroupWebhookManualSetupRequest, type SlatesMessageTriggerGroupWebhookManualSetupResponse, type SlatesMessageTriggerGroupWebhookProcessRequest, type SlatesMessageTriggerGroupWebhookProcessResponse, type SlatesMessageTriggerGroupWebhookRegisterRequest, type SlatesMessageTriggerGroupWebhookRegisterResponse, type SlatesMessageTriggerGroupWebhookTargetsListRequest, type SlatesMessageTriggerGroupWebhookTargetsListResponse, type SlatesMessageTriggerGroupWebhookUnregisterRequest, type SlatesMessageTriggerGroupWebhookUnregisterResponse, type SlatesMessageTriggerGroupsListRequest, type SlatesMessageTriggerGroupsListResponse, type SlatesNotifications, type SlatesParticipant, type SlatesProtocolVersion, SlatesProviderProtoHandlerManager, type SlatesRequests, type SlatesResponses, type SlatesResponsesByMethod, type SlatesTriggerGroup, type SlatesTriggerGroupInvocation, type SlatesTriggerGroupRequests, type SlatesTriggerGroupResponses, type SlatesTriggerGroupWebhookSkipped, type SlatesTriggerRoutingMatcher, type SlatesWebhookErrorCode, type SlatesWebhookHttpResponse, type SlatesWebhookTarget, type SlatesWebhookTargetOwnership, createSlatesProviderProtoHandler, slatesAction, slatesActionBase, slatesActionRequestsByMethod, slatesActionResponsesByMethod, slatesActionScopeClause, slatesActionScopes, slatesActionTool, slatesActionTrigger, slatesAdapter, slatesAdapterRequestsByMethod, slatesAdapterResponsesByMethod, slatesAuthNotificationsByMethod, slatesAuthRequestsByMethod, slatesAuthResponsesByMethod, slatesAuthenticationMethod, slatesConfigNotificationsByMethod, slatesConfigRequestsByMethod, slatesConfigResponsesByMethod, slatesControlFlowNotificationsByMethod, slatesHubNotificationsByMethod, slatesHubRequestsByMethod, slatesHubResponsesByMethod, slatesIdentifyRequestsByMethod, slatesIdentifyResponsesByMethod, slatesLegacyTriggerRequestsByMethod, slatesLegacyTriggerResponsesByMethod, slatesMessageActionGetRequest, slatesMessageActionGetResponse, slatesMessageActionInvokeRequest, slatesMessageActionInvokeResponse, slatesMessageActionTriggerEventMapRequest, slatesMessageActionTriggerEventMapResponse, slatesMessageActionTriggerEventsPollRequest, slatesMessageActionTriggerEventsPollResponse, slatesMessageActionTriggerWebhookHandleRequest, slatesMessageActionTriggerWebhookHandleResponse, slatesMessageActionTriggerWebhookRegisterRequest, slatesMessageActionTriggerWebhookRegisterResponse, slatesMessageActionTriggerWebhookUnregisterRequest, slatesMessageActionTriggerWebhookUnregisterResponse, slatesMessageActionsListRequest, slatesMessageActionsListResponse, slatesMessageAdapterGetRequest, slatesMessageAdapterGetResponse, slatesMessageAdaptersListRequest, slatesMessageAdaptersListResponse, slatesMessageAuthAuthorizationCallbackHandleRequest, slatesMessageAuthAuthorizationCallbackHandleResponse, slatesMessageAuthAuthorizationUrlGetRequest, slatesMessageAuthAuthorizationUrlGetResponse, slatesMessageAuthDefaultInputGetRequest, slatesMessageAuthDefaultInputGetResponse, slatesMessageAuthInputChangedRequest, slatesMessageAuthInputChangedResponse, slatesMessageAuthMethodGetRequest, slatesMessageAuthMethodGetResponse, slatesMessageAuthMethodsListRequest, slatesMessageAuthMethodsListResponse, slatesMessageAuthOutputGetRequest, slatesMessageAuthOutputGetResponse, slatesMessageAuthProfileGetRequest, slatesMessageAuthProfileGetResponse, slatesMessageAuthTokenRefreshHandleRequest, slatesMessageAuthTokenRefreshHandleResponse, slatesMessageConfigChangedRequest, slatesMessageConfigChangedResponse, slatesMessageConfigDefaultGetRequest, slatesMessageConfigDefaultGetResponse, slatesMessageConfigSchemaGetRequest, slatesMessageConfigSchemaGetResponse, slatesMessageHelloNotification, slatesMessageHubCapabilitiesSetNotification, slatesMessageHubLiveInvocationSetNotification, slatesMessageProviderCapabilitiesGetRequest, slatesMessageProviderCapabilitiesGetResponse, slatesMessageProviderIdentifyRequest, slatesMessageProviderIdentifyResponse, slatesMessageSessionStartNotification, slatesMessageSetAuthNotification, slatesMessageSetConfigNotification, slatesMessageSetParticipantsNotification, slatesMessageTriggerGroupGetRequest, slatesMessageTriggerGroupGetResponse, slatesMessageTriggerGroupPollingPollRequest, slatesMessageTriggerGroupPollingPollResponse, slatesMessageTriggerGroupRoutingMatchersGetRequest, slatesMessageTriggerGroupRoutingMatchersGetResponse, slatesMessageTriggerGroupWebhookManualFinishRequest, slatesMessageTriggerGroupWebhookManualFinishResponse, slatesMessageTriggerGroupWebhookManualSetupRequest, slatesMessageTriggerGroupWebhookManualSetupResponse, slatesMessageTriggerGroupWebhookProcessRequest, slatesMessageTriggerGroupWebhookProcessResponse, slatesMessageTriggerGroupWebhookRegisterRequest, slatesMessageTriggerGroupWebhookRegisterResponse, slatesMessageTriggerGroupWebhookTargetsListRequest, slatesMessageTriggerGroupWebhookTargetsListResponse, slatesMessageTriggerGroupWebhookUnregisterRequest, slatesMessageTriggerGroupWebhookUnregisterResponse, slatesMessageTriggerGroupsListRequest, slatesMessageTriggerGroupsListResponse, slatesNotificationsByMethod, slatesParticipant, slatesRequestTrace, slatesRequestTraceTextBody, slatesRequestsByMethod, slatesResponsesByMethod, slatesTriggerGroup, slatesTriggerGroupInvocation, slatesTriggerGroupRequestsByMethod, slatesTriggerGroupResponsesByMethod, slatesTriggerGroupWebhookSkipped, slatesTriggerRoutingMatcher, slatesWebhookHttpResponse, slatesWebhookTarget, slatesWebhookTargetOwnership, withRequestTraces };
|
package/dist/index.d.ts
CHANGED
|
@@ -2555,6 +2555,10 @@ declare let withRequestTraces: <Shape extends z.ZodRawShape>(shape: Shape) => z.
|
|
|
2555
2555
|
}, z.core.$strip>>>;
|
|
2556
2556
|
})[P]; } : never, z.core.$strip>;
|
|
2557
2557
|
|
|
2558
|
+
declare let slatesTriggerGroupWebhookSkipped: z.ZodObject<{
|
|
2559
|
+
reason: z.ZodString;
|
|
2560
|
+
}, z.core.$strip>;
|
|
2561
|
+
type SlatesTriggerGroupWebhookSkipped = z.infer<typeof slatesTriggerGroupWebhookSkipped>;
|
|
2558
2562
|
/**
|
|
2559
2563
|
* List Trigger Groups
|
|
2560
2564
|
*/
|
|
@@ -2658,6 +2662,7 @@ declare let slatesMessageTriggerGroupWebhookTargetsListResponse: z.ZodObject<{
|
|
|
2658
2662
|
}>;
|
|
2659
2663
|
}, z.core.$strip>>;
|
|
2660
2664
|
nextPageToken: z.ZodNullable<z.ZodAny>;
|
|
2665
|
+
isPartial: z.ZodOptional<z.ZodBoolean>;
|
|
2661
2666
|
requestTraces: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2662
2667
|
startedAt: z.ZodString;
|
|
2663
2668
|
durationMs: z.ZodNumber;
|
|
@@ -2901,6 +2906,9 @@ declare let slatesMessageTriggerGroupWebhookProcessResponse: z.ZodObject<{
|
|
|
2901
2906
|
content: z.ZodString;
|
|
2902
2907
|
}, z.core.$strip>>;
|
|
2903
2908
|
}, z.core.$strip>>>;
|
|
2909
|
+
skipped: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2910
|
+
reason: z.ZodString;
|
|
2911
|
+
}, z.core.$strip>>>;
|
|
2904
2912
|
requestTraces: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2905
2913
|
startedAt: z.ZodString;
|
|
2906
2914
|
durationMs: z.ZodNumber;
|
|
@@ -3103,6 +3111,7 @@ declare let slatesTriggerGroupResponsesByMethod: {
|
|
|
3103
3111
|
}>;
|
|
3104
3112
|
}, z.core.$strip>>;
|
|
3105
3113
|
nextPageToken: z.ZodNullable<z.ZodAny>;
|
|
3114
|
+
isPartial: z.ZodOptional<z.ZodBoolean>;
|
|
3106
3115
|
requestTraces: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3107
3116
|
startedAt: z.ZodString;
|
|
3108
3117
|
durationMs: z.ZodNumber;
|
|
@@ -3264,6 +3273,9 @@ declare let slatesTriggerGroupResponsesByMethod: {
|
|
|
3264
3273
|
content: z.ZodString;
|
|
3265
3274
|
}, z.core.$strip>>;
|
|
3266
3275
|
}, z.core.$strip>>>;
|
|
3276
|
+
skipped: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
3277
|
+
reason: z.ZodString;
|
|
3278
|
+
}, z.core.$strip>>>;
|
|
3267
3279
|
requestTraces: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3268
3280
|
startedAt: z.ZodString;
|
|
3269
3281
|
durationMs: z.ZodNumber;
|
|
@@ -3586,6 +3598,7 @@ declare let slatesResponsesByMethod: {
|
|
|
3586
3598
|
}>;
|
|
3587
3599
|
}, z$1.core.$strip>>;
|
|
3588
3600
|
nextPageToken: z$1.ZodNullable<z$1.ZodAny>;
|
|
3601
|
+
isPartial: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
3589
3602
|
requestTraces: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
3590
3603
|
startedAt: z$1.ZodString;
|
|
3591
3604
|
durationMs: z$1.ZodNumber;
|
|
@@ -3747,6 +3760,9 @@ declare let slatesResponsesByMethod: {
|
|
|
3747
3760
|
content: z$1.ZodString;
|
|
3748
3761
|
}, z$1.core.$strip>>;
|
|
3749
3762
|
}, z$1.core.$strip>>>;
|
|
3763
|
+
skipped: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodObject<{
|
|
3764
|
+
reason: z$1.ZodString;
|
|
3765
|
+
}, z$1.core.$strip>>>;
|
|
3750
3766
|
requestTraces: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
3751
3767
|
startedAt: z$1.ZodString;
|
|
3752
3768
|
durationMs: z$1.ZodNumber;
|
|
@@ -5391,4 +5407,4 @@ type SlatesWebhookTarget = z.infer<typeof slatesWebhookTarget>;
|
|
|
5391
5407
|
declare const SLATES_PROTOCOL_VERSION: "slates@2026-01-01";
|
|
5392
5408
|
type SlatesProtocolVersion = typeof SLATES_PROTOCOL_VERSION;
|
|
5393
5409
|
|
|
5394
|
-
export { SLATES_PROTOCOL_VERSION, SLATES_WEBHOOK_ERROR_CODES, SLATES_WEBHOOK_ERROR_DEFAULTS, type SlateAdapter, type SlateAuthenticationMethod, type SlatesAction, type SlatesActionRequests, type SlatesActionResponses, type SlatesActionScopes, type SlatesActionTool, type SlatesActionTrigger, type SlatesAdapterRequests, type SlatesAdapterResponses, type SlatesAuthNotifications, type SlatesAuthRequests, type SlatesAuthResponses, type SlatesConfigNotifications, type SlatesConfigRequests, type SlatesConfigResponses, type SlatesControlFlowNotifications, type SlatesHubNotifications, type SlatesHubRequests, type SlatesHubResponses, type SlatesIdentifyRequests, type SlatesIdentifyResponses, type SlatesLegacyTriggerRequests, type SlatesLegacyTriggerResponses, type SlatesMessageActionGetRequest, type SlatesMessageActionGetResponse, type SlatesMessageActionInvokeRequest, type SlatesMessageActionInvokeResponse, type SlatesMessageActionTriggerEventMapRequest, type SlatesMessageActionTriggerEventMapResponse, type SlatesMessageActionTriggerEventsPollRequest, type SlatesMessageActionTriggerEventsPollResponse, type SlatesMessageActionTriggerWebhookHandleRequest, type SlatesMessageActionTriggerWebhookHandleResponse, type SlatesMessageActionTriggerWebhookRegisterRequest, type SlatesMessageActionTriggerWebhookRegisterResponse, type SlatesMessageActionTriggerWebhookUnregisterRequest, type SlatesMessageActionTriggerWebhookUnregisterResponse, type SlatesMessageActionsListRequest, type SlatesMessageActionsListResponse, type SlatesMessageAdapterGetRequest, type SlatesMessageAdapterGetResponse, type SlatesMessageAdaptersListRequest, type SlatesMessageAdaptersListResponse, type SlatesMessageAuthAuthorizationCallbackHandleRequest, type SlatesMessageAuthAuthorizationCallbackHandleResponse, type SlatesMessageAuthAuthorizationUrlGetRequest, type SlatesMessageAuthAuthorizationUrlGetResponse, type SlatesMessageAuthDefaultInputGetRequest, type SlatesMessageAuthDefaultInputGetResponse, type SlatesMessageAuthInputChangedRequest, type SlatesMessageAuthInputChangedResponse, type SlatesMessageAuthMethodGetRequest, type SlatesMessageAuthMethodGetResponse, type SlatesMessageAuthMethodsListRequest, type SlatesMessageAuthMethodsListResponse, type SlatesMessageAuthOutputGetRequest, type SlatesMessageAuthOutputGetResponse, type SlatesMessageAuthProfileGetRequest, type SlatesMessageAuthProfileGetResponse, type SlatesMessageAuthTokenRefreshHandleRequest, type SlatesMessageAuthTokenRefreshHandleResponse, type SlatesMessageConfigChangedRequest, type SlatesMessageConfigChangedResponse, type SlatesMessageConfigDefaultGetRequest, type SlatesMessageConfigDefaultGetResponse, type SlatesMessageConfigSchemaGetRequest, type SlatesMessageConfigSchemaGetResponse, type SlatesMessageHelloNotification, type SlatesMessageHubCapabilitiesSetNotification, type SlatesMessageHubLiveInvocationSetNotification, type SlatesMessageProviderCapabilitiesGetRequest, type SlatesMessageProviderCapabilitiesGetResponse, type SlatesMessageProviderIdentifyRequest, type SlatesMessageProviderIdentifyResponse, type SlatesMessageSessionStartNotification, type SlatesMessageSetAuthNotification, type SlatesMessageSetConfigNotification, type SlatesMessageSetParticipantsNotification, type SlatesMessageTriggerGroupGetRequest, type SlatesMessageTriggerGroupGetResponse, type SlatesMessageTriggerGroupPollingPollRequest, type SlatesMessageTriggerGroupPollingPollResponse, type SlatesMessageTriggerGroupRoutingMatchersGetRequest, type SlatesMessageTriggerGroupRoutingMatchersGetResponse, type SlatesMessageTriggerGroupWebhookManualFinishRequest, type SlatesMessageTriggerGroupWebhookManualFinishResponse, type SlatesMessageTriggerGroupWebhookManualSetupRequest, type SlatesMessageTriggerGroupWebhookManualSetupResponse, type SlatesMessageTriggerGroupWebhookProcessRequest, type SlatesMessageTriggerGroupWebhookProcessResponse, type SlatesMessageTriggerGroupWebhookRegisterRequest, type SlatesMessageTriggerGroupWebhookRegisterResponse, type SlatesMessageTriggerGroupWebhookTargetsListRequest, type SlatesMessageTriggerGroupWebhookTargetsListResponse, type SlatesMessageTriggerGroupWebhookUnregisterRequest, type SlatesMessageTriggerGroupWebhookUnregisterResponse, type SlatesMessageTriggerGroupsListRequest, type SlatesMessageTriggerGroupsListResponse, type SlatesNotifications, type SlatesParticipant, type SlatesProtocolVersion, SlatesProviderProtoHandlerManager, type SlatesRequests, type SlatesResponses, type SlatesResponsesByMethod, type SlatesTriggerGroup, type SlatesTriggerGroupInvocation, type SlatesTriggerGroupRequests, type SlatesTriggerGroupResponses, type SlatesTriggerRoutingMatcher, type SlatesWebhookErrorCode, type SlatesWebhookHttpResponse, type SlatesWebhookTarget, type SlatesWebhookTargetOwnership, createSlatesProviderProtoHandler, slatesAction, slatesActionBase, slatesActionRequestsByMethod, slatesActionResponsesByMethod, slatesActionScopeClause, slatesActionScopes, slatesActionTool, slatesActionTrigger, slatesAdapter, slatesAdapterRequestsByMethod, slatesAdapterResponsesByMethod, slatesAuthNotificationsByMethod, slatesAuthRequestsByMethod, slatesAuthResponsesByMethod, slatesAuthenticationMethod, slatesConfigNotificationsByMethod, slatesConfigRequestsByMethod, slatesConfigResponsesByMethod, slatesControlFlowNotificationsByMethod, slatesHubNotificationsByMethod, slatesHubRequestsByMethod, slatesHubResponsesByMethod, slatesIdentifyRequestsByMethod, slatesIdentifyResponsesByMethod, slatesLegacyTriggerRequestsByMethod, slatesLegacyTriggerResponsesByMethod, slatesMessageActionGetRequest, slatesMessageActionGetResponse, slatesMessageActionInvokeRequest, slatesMessageActionInvokeResponse, slatesMessageActionTriggerEventMapRequest, slatesMessageActionTriggerEventMapResponse, slatesMessageActionTriggerEventsPollRequest, slatesMessageActionTriggerEventsPollResponse, slatesMessageActionTriggerWebhookHandleRequest, slatesMessageActionTriggerWebhookHandleResponse, slatesMessageActionTriggerWebhookRegisterRequest, slatesMessageActionTriggerWebhookRegisterResponse, slatesMessageActionTriggerWebhookUnregisterRequest, slatesMessageActionTriggerWebhookUnregisterResponse, slatesMessageActionsListRequest, slatesMessageActionsListResponse, slatesMessageAdapterGetRequest, slatesMessageAdapterGetResponse, slatesMessageAdaptersListRequest, slatesMessageAdaptersListResponse, slatesMessageAuthAuthorizationCallbackHandleRequest, slatesMessageAuthAuthorizationCallbackHandleResponse, slatesMessageAuthAuthorizationUrlGetRequest, slatesMessageAuthAuthorizationUrlGetResponse, slatesMessageAuthDefaultInputGetRequest, slatesMessageAuthDefaultInputGetResponse, slatesMessageAuthInputChangedRequest, slatesMessageAuthInputChangedResponse, slatesMessageAuthMethodGetRequest, slatesMessageAuthMethodGetResponse, slatesMessageAuthMethodsListRequest, slatesMessageAuthMethodsListResponse, slatesMessageAuthOutputGetRequest, slatesMessageAuthOutputGetResponse, slatesMessageAuthProfileGetRequest, slatesMessageAuthProfileGetResponse, slatesMessageAuthTokenRefreshHandleRequest, slatesMessageAuthTokenRefreshHandleResponse, slatesMessageConfigChangedRequest, slatesMessageConfigChangedResponse, slatesMessageConfigDefaultGetRequest, slatesMessageConfigDefaultGetResponse, slatesMessageConfigSchemaGetRequest, slatesMessageConfigSchemaGetResponse, slatesMessageHelloNotification, slatesMessageHubCapabilitiesSetNotification, slatesMessageHubLiveInvocationSetNotification, slatesMessageProviderCapabilitiesGetRequest, slatesMessageProviderCapabilitiesGetResponse, slatesMessageProviderIdentifyRequest, slatesMessageProviderIdentifyResponse, slatesMessageSessionStartNotification, slatesMessageSetAuthNotification, slatesMessageSetConfigNotification, slatesMessageSetParticipantsNotification, slatesMessageTriggerGroupGetRequest, slatesMessageTriggerGroupGetResponse, slatesMessageTriggerGroupPollingPollRequest, slatesMessageTriggerGroupPollingPollResponse, slatesMessageTriggerGroupRoutingMatchersGetRequest, slatesMessageTriggerGroupRoutingMatchersGetResponse, slatesMessageTriggerGroupWebhookManualFinishRequest, slatesMessageTriggerGroupWebhookManualFinishResponse, slatesMessageTriggerGroupWebhookManualSetupRequest, slatesMessageTriggerGroupWebhookManualSetupResponse, slatesMessageTriggerGroupWebhookProcessRequest, slatesMessageTriggerGroupWebhookProcessResponse, slatesMessageTriggerGroupWebhookRegisterRequest, slatesMessageTriggerGroupWebhookRegisterResponse, slatesMessageTriggerGroupWebhookTargetsListRequest, slatesMessageTriggerGroupWebhookTargetsListResponse, slatesMessageTriggerGroupWebhookUnregisterRequest, slatesMessageTriggerGroupWebhookUnregisterResponse, slatesMessageTriggerGroupsListRequest, slatesMessageTriggerGroupsListResponse, slatesNotificationsByMethod, slatesParticipant, slatesRequestTrace, slatesRequestTraceTextBody, slatesRequestsByMethod, slatesResponsesByMethod, slatesTriggerGroup, slatesTriggerGroupInvocation, slatesTriggerGroupRequestsByMethod, slatesTriggerGroupResponsesByMethod, slatesTriggerRoutingMatcher, slatesWebhookHttpResponse, slatesWebhookTarget, slatesWebhookTargetOwnership, withRequestTraces };
|
|
5410
|
+
export { SLATES_PROTOCOL_VERSION, SLATES_WEBHOOK_ERROR_CODES, SLATES_WEBHOOK_ERROR_DEFAULTS, type SlateAdapter, type SlateAuthenticationMethod, type SlatesAction, type SlatesActionRequests, type SlatesActionResponses, type SlatesActionScopes, type SlatesActionTool, type SlatesActionTrigger, type SlatesAdapterRequests, type SlatesAdapterResponses, type SlatesAuthNotifications, type SlatesAuthRequests, type SlatesAuthResponses, type SlatesConfigNotifications, type SlatesConfigRequests, type SlatesConfigResponses, type SlatesControlFlowNotifications, type SlatesHubNotifications, type SlatesHubRequests, type SlatesHubResponses, type SlatesIdentifyRequests, type SlatesIdentifyResponses, type SlatesLegacyTriggerRequests, type SlatesLegacyTriggerResponses, type SlatesMessageActionGetRequest, type SlatesMessageActionGetResponse, type SlatesMessageActionInvokeRequest, type SlatesMessageActionInvokeResponse, type SlatesMessageActionTriggerEventMapRequest, type SlatesMessageActionTriggerEventMapResponse, type SlatesMessageActionTriggerEventsPollRequest, type SlatesMessageActionTriggerEventsPollResponse, type SlatesMessageActionTriggerWebhookHandleRequest, type SlatesMessageActionTriggerWebhookHandleResponse, type SlatesMessageActionTriggerWebhookRegisterRequest, type SlatesMessageActionTriggerWebhookRegisterResponse, type SlatesMessageActionTriggerWebhookUnregisterRequest, type SlatesMessageActionTriggerWebhookUnregisterResponse, type SlatesMessageActionsListRequest, type SlatesMessageActionsListResponse, type SlatesMessageAdapterGetRequest, type SlatesMessageAdapterGetResponse, type SlatesMessageAdaptersListRequest, type SlatesMessageAdaptersListResponse, type SlatesMessageAuthAuthorizationCallbackHandleRequest, type SlatesMessageAuthAuthorizationCallbackHandleResponse, type SlatesMessageAuthAuthorizationUrlGetRequest, type SlatesMessageAuthAuthorizationUrlGetResponse, type SlatesMessageAuthDefaultInputGetRequest, type SlatesMessageAuthDefaultInputGetResponse, type SlatesMessageAuthInputChangedRequest, type SlatesMessageAuthInputChangedResponse, type SlatesMessageAuthMethodGetRequest, type SlatesMessageAuthMethodGetResponse, type SlatesMessageAuthMethodsListRequest, type SlatesMessageAuthMethodsListResponse, type SlatesMessageAuthOutputGetRequest, type SlatesMessageAuthOutputGetResponse, type SlatesMessageAuthProfileGetRequest, type SlatesMessageAuthProfileGetResponse, type SlatesMessageAuthTokenRefreshHandleRequest, type SlatesMessageAuthTokenRefreshHandleResponse, type SlatesMessageConfigChangedRequest, type SlatesMessageConfigChangedResponse, type SlatesMessageConfigDefaultGetRequest, type SlatesMessageConfigDefaultGetResponse, type SlatesMessageConfigSchemaGetRequest, type SlatesMessageConfigSchemaGetResponse, type SlatesMessageHelloNotification, type SlatesMessageHubCapabilitiesSetNotification, type SlatesMessageHubLiveInvocationSetNotification, type SlatesMessageProviderCapabilitiesGetRequest, type SlatesMessageProviderCapabilitiesGetResponse, type SlatesMessageProviderIdentifyRequest, type SlatesMessageProviderIdentifyResponse, type SlatesMessageSessionStartNotification, type SlatesMessageSetAuthNotification, type SlatesMessageSetConfigNotification, type SlatesMessageSetParticipantsNotification, type SlatesMessageTriggerGroupGetRequest, type SlatesMessageTriggerGroupGetResponse, type SlatesMessageTriggerGroupPollingPollRequest, type SlatesMessageTriggerGroupPollingPollResponse, type SlatesMessageTriggerGroupRoutingMatchersGetRequest, type SlatesMessageTriggerGroupRoutingMatchersGetResponse, type SlatesMessageTriggerGroupWebhookManualFinishRequest, type SlatesMessageTriggerGroupWebhookManualFinishResponse, type SlatesMessageTriggerGroupWebhookManualSetupRequest, type SlatesMessageTriggerGroupWebhookManualSetupResponse, type SlatesMessageTriggerGroupWebhookProcessRequest, type SlatesMessageTriggerGroupWebhookProcessResponse, type SlatesMessageTriggerGroupWebhookRegisterRequest, type SlatesMessageTriggerGroupWebhookRegisterResponse, type SlatesMessageTriggerGroupWebhookTargetsListRequest, type SlatesMessageTriggerGroupWebhookTargetsListResponse, type SlatesMessageTriggerGroupWebhookUnregisterRequest, type SlatesMessageTriggerGroupWebhookUnregisterResponse, type SlatesMessageTriggerGroupsListRequest, type SlatesMessageTriggerGroupsListResponse, type SlatesNotifications, type SlatesParticipant, type SlatesProtocolVersion, SlatesProviderProtoHandlerManager, type SlatesRequests, type SlatesResponses, type SlatesResponsesByMethod, type SlatesTriggerGroup, type SlatesTriggerGroupInvocation, type SlatesTriggerGroupRequests, type SlatesTriggerGroupResponses, type SlatesTriggerGroupWebhookSkipped, type SlatesTriggerRoutingMatcher, type SlatesWebhookErrorCode, type SlatesWebhookHttpResponse, type SlatesWebhookTarget, type SlatesWebhookTargetOwnership, createSlatesProviderProtoHandler, slatesAction, slatesActionBase, slatesActionRequestsByMethod, slatesActionResponsesByMethod, slatesActionScopeClause, slatesActionScopes, slatesActionTool, slatesActionTrigger, slatesAdapter, slatesAdapterRequestsByMethod, slatesAdapterResponsesByMethod, slatesAuthNotificationsByMethod, slatesAuthRequestsByMethod, slatesAuthResponsesByMethod, slatesAuthenticationMethod, slatesConfigNotificationsByMethod, slatesConfigRequestsByMethod, slatesConfigResponsesByMethod, slatesControlFlowNotificationsByMethod, slatesHubNotificationsByMethod, slatesHubRequestsByMethod, slatesHubResponsesByMethod, slatesIdentifyRequestsByMethod, slatesIdentifyResponsesByMethod, slatesLegacyTriggerRequestsByMethod, slatesLegacyTriggerResponsesByMethod, slatesMessageActionGetRequest, slatesMessageActionGetResponse, slatesMessageActionInvokeRequest, slatesMessageActionInvokeResponse, slatesMessageActionTriggerEventMapRequest, slatesMessageActionTriggerEventMapResponse, slatesMessageActionTriggerEventsPollRequest, slatesMessageActionTriggerEventsPollResponse, slatesMessageActionTriggerWebhookHandleRequest, slatesMessageActionTriggerWebhookHandleResponse, slatesMessageActionTriggerWebhookRegisterRequest, slatesMessageActionTriggerWebhookRegisterResponse, slatesMessageActionTriggerWebhookUnregisterRequest, slatesMessageActionTriggerWebhookUnregisterResponse, slatesMessageActionsListRequest, slatesMessageActionsListResponse, slatesMessageAdapterGetRequest, slatesMessageAdapterGetResponse, slatesMessageAdaptersListRequest, slatesMessageAdaptersListResponse, slatesMessageAuthAuthorizationCallbackHandleRequest, slatesMessageAuthAuthorizationCallbackHandleResponse, slatesMessageAuthAuthorizationUrlGetRequest, slatesMessageAuthAuthorizationUrlGetResponse, slatesMessageAuthDefaultInputGetRequest, slatesMessageAuthDefaultInputGetResponse, slatesMessageAuthInputChangedRequest, slatesMessageAuthInputChangedResponse, slatesMessageAuthMethodGetRequest, slatesMessageAuthMethodGetResponse, slatesMessageAuthMethodsListRequest, slatesMessageAuthMethodsListResponse, slatesMessageAuthOutputGetRequest, slatesMessageAuthOutputGetResponse, slatesMessageAuthProfileGetRequest, slatesMessageAuthProfileGetResponse, slatesMessageAuthTokenRefreshHandleRequest, slatesMessageAuthTokenRefreshHandleResponse, slatesMessageConfigChangedRequest, slatesMessageConfigChangedResponse, slatesMessageConfigDefaultGetRequest, slatesMessageConfigDefaultGetResponse, slatesMessageConfigSchemaGetRequest, slatesMessageConfigSchemaGetResponse, slatesMessageHelloNotification, slatesMessageHubCapabilitiesSetNotification, slatesMessageHubLiveInvocationSetNotification, slatesMessageProviderCapabilitiesGetRequest, slatesMessageProviderCapabilitiesGetResponse, slatesMessageProviderIdentifyRequest, slatesMessageProviderIdentifyResponse, slatesMessageSessionStartNotification, slatesMessageSetAuthNotification, slatesMessageSetConfigNotification, slatesMessageSetParticipantsNotification, slatesMessageTriggerGroupGetRequest, slatesMessageTriggerGroupGetResponse, slatesMessageTriggerGroupPollingPollRequest, slatesMessageTriggerGroupPollingPollResponse, slatesMessageTriggerGroupRoutingMatchersGetRequest, slatesMessageTriggerGroupRoutingMatchersGetResponse, slatesMessageTriggerGroupWebhookManualFinishRequest, slatesMessageTriggerGroupWebhookManualFinishResponse, slatesMessageTriggerGroupWebhookManualSetupRequest, slatesMessageTriggerGroupWebhookManualSetupResponse, slatesMessageTriggerGroupWebhookProcessRequest, slatesMessageTriggerGroupWebhookProcessResponse, slatesMessageTriggerGroupWebhookRegisterRequest, slatesMessageTriggerGroupWebhookRegisterResponse, slatesMessageTriggerGroupWebhookTargetsListRequest, slatesMessageTriggerGroupWebhookTargetsListResponse, slatesMessageTriggerGroupWebhookUnregisterRequest, slatesMessageTriggerGroupWebhookUnregisterResponse, slatesMessageTriggerGroupsListRequest, slatesMessageTriggerGroupsListResponse, slatesNotificationsByMethod, slatesParticipant, slatesRequestTrace, slatesRequestTraceTextBody, slatesRequestsByMethod, slatesResponsesByMethod, slatesTriggerGroup, slatesTriggerGroupInvocation, slatesTriggerGroupRequestsByMethod, slatesTriggerGroupResponsesByMethod, slatesTriggerGroupWebhookSkipped, slatesTriggerRoutingMatcher, slatesWebhookHttpResponse, slatesWebhookTarget, slatesWebhookTargetOwnership, withRequestTraces };
|
package/dist/index.module.js
CHANGED
|
@@ -852,6 +852,9 @@ var slatesTriggerGroupWebhookEvent = z15.object({
|
|
|
852
852
|
idempotencyKey: z15.string().optional(),
|
|
853
853
|
triggerIds: z15.array(z15.string())
|
|
854
854
|
});
|
|
855
|
+
var slatesTriggerGroupWebhookSkipped = z15.object({
|
|
856
|
+
reason: z15.string()
|
|
857
|
+
});
|
|
855
858
|
var slatesTriggerGroupPollEvent = z15.object({
|
|
856
859
|
payload: z15.record(z15.string(), z15.any()),
|
|
857
860
|
idempotencyKey: z15.string().optional(),
|
|
@@ -899,7 +902,8 @@ var slatesMessageTriggerGroupWebhookTargetsListResponse = z15.object({
|
|
|
899
902
|
id: z15.string(),
|
|
900
903
|
result: withRequestTraces({
|
|
901
904
|
targets: z15.array(slatesWebhookTarget),
|
|
902
|
-
nextPageToken: z15.any().nullable()
|
|
905
|
+
nextPageToken: z15.any().nullable(),
|
|
906
|
+
isPartial: z15.boolean().optional()
|
|
903
907
|
})
|
|
904
908
|
});
|
|
905
909
|
var slatesMessageTriggerGroupWebhookRegisterRequest = z15.object({
|
|
@@ -992,7 +996,8 @@ var slatesMessageTriggerGroupWebhookProcessResponse = z15.object({
|
|
|
992
996
|
id: z15.string(),
|
|
993
997
|
result: withRequestTraces({
|
|
994
998
|
events: z15.array(slatesTriggerGroupWebhookEvent),
|
|
995
|
-
response: slatesWebhookHttpResponse.nullable().optional()
|
|
999
|
+
response: slatesWebhookHttpResponse.nullable().optional(),
|
|
1000
|
+
skipped: slatesTriggerGroupWebhookSkipped.nullable().optional()
|
|
996
1001
|
})
|
|
997
1002
|
});
|
|
998
1003
|
var slatesMessageTriggerGroupRoutingMatchersGetRequest = z15.object({
|
|
@@ -1471,6 +1476,7 @@ export {
|
|
|
1471
1476
|
slatesTriggerGroupInvocation,
|
|
1472
1477
|
slatesTriggerGroupRequestsByMethod,
|
|
1473
1478
|
slatesTriggerGroupResponsesByMethod,
|
|
1479
|
+
slatesTriggerGroupWebhookSkipped,
|
|
1474
1480
|
slatesTriggerRoutingMatcher,
|
|
1475
1481
|
slatesWebhookHttpResponse,
|
|
1476
1482
|
slatesWebhookTarget,
|
package/package.json
CHANGED
|
@@ -14,6 +14,14 @@ let slatesTriggerGroupWebhookEvent = z.object({
|
|
|
14
14
|
triggerIds: z.array(z.string())
|
|
15
15
|
});
|
|
16
16
|
|
|
17
|
+
export let slatesTriggerGroupWebhookSkipped = z.object({
|
|
18
|
+
reason: z.string()
|
|
19
|
+
});
|
|
20
|
+
|
|
21
|
+
export type SlatesTriggerGroupWebhookSkipped = z.infer<
|
|
22
|
+
typeof slatesTriggerGroupWebhookSkipped
|
|
23
|
+
>;
|
|
24
|
+
|
|
17
25
|
let slatesTriggerGroupPollEvent = z.object({
|
|
18
26
|
payload: z.record(z.string(), z.any()),
|
|
19
27
|
idempotencyKey: z.string().optional(),
|
|
@@ -96,7 +104,8 @@ export let slatesMessageTriggerGroupWebhookTargetsListResponse = z.object({
|
|
|
96
104
|
id: z.string(),
|
|
97
105
|
result: withRequestTraces({
|
|
98
106
|
targets: z.array(slatesWebhookTarget),
|
|
99
|
-
nextPageToken: z.any().nullable()
|
|
107
|
+
nextPageToken: z.any().nullable(),
|
|
108
|
+
isPartial: z.boolean().optional()
|
|
100
109
|
})
|
|
101
110
|
});
|
|
102
111
|
|
|
@@ -256,7 +265,8 @@ export let slatesMessageTriggerGroupWebhookProcessResponse = z.object({
|
|
|
256
265
|
id: z.string(),
|
|
257
266
|
result: withRequestTraces({
|
|
258
267
|
events: z.array(slatesTriggerGroupWebhookEvent),
|
|
259
|
-
response: slatesWebhookHttpResponse.nullable().optional()
|
|
268
|
+
response: slatesWebhookHttpResponse.nullable().optional(),
|
|
269
|
+
skipped: slatesTriggerGroupWebhookSkipped.nullable().optional()
|
|
260
270
|
})
|
|
261
271
|
});
|
|
262
272
|
|