@slates/proto 1.0.0-rc.20 → 1.0.0-rc.21
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 +2 -1
- package/dist/index.d.cts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.module.js +2 -1
- package/package.json +2 -2
- package/src/messages/triggerGroup.ts +2 -1
package/dist/index.cjs
CHANGED
|
@@ -1050,7 +1050,8 @@ var slatesMessageTriggerGroupWebhookTargetsListResponse = import_zod15.default.o
|
|
|
1050
1050
|
id: import_zod15.default.string(),
|
|
1051
1051
|
result: withRequestTraces({
|
|
1052
1052
|
targets: import_zod15.default.array(slatesWebhookTarget),
|
|
1053
|
-
nextPageToken: import_zod15.default.any().nullable()
|
|
1053
|
+
nextPageToken: import_zod15.default.any().nullable(),
|
|
1054
|
+
isPartial: import_zod15.default.boolean().optional()
|
|
1054
1055
|
})
|
|
1055
1056
|
});
|
|
1056
1057
|
var slatesMessageTriggerGroupWebhookRegisterRequest = import_zod15.default.object({
|
package/dist/index.d.cts
CHANGED
|
@@ -2658,6 +2658,7 @@ declare let slatesMessageTriggerGroupWebhookTargetsListResponse: z.ZodObject<{
|
|
|
2658
2658
|
}>;
|
|
2659
2659
|
}, z.core.$strip>>;
|
|
2660
2660
|
nextPageToken: z.ZodNullable<z.ZodAny>;
|
|
2661
|
+
isPartial: z.ZodOptional<z.ZodBoolean>;
|
|
2661
2662
|
requestTraces: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2662
2663
|
startedAt: z.ZodString;
|
|
2663
2664
|
durationMs: z.ZodNumber;
|
|
@@ -3103,6 +3104,7 @@ declare let slatesTriggerGroupResponsesByMethod: {
|
|
|
3103
3104
|
}>;
|
|
3104
3105
|
}, z.core.$strip>>;
|
|
3105
3106
|
nextPageToken: z.ZodNullable<z.ZodAny>;
|
|
3107
|
+
isPartial: z.ZodOptional<z.ZodBoolean>;
|
|
3106
3108
|
requestTraces: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3107
3109
|
startedAt: z.ZodString;
|
|
3108
3110
|
durationMs: z.ZodNumber;
|
|
@@ -3586,6 +3588,7 @@ declare let slatesResponsesByMethod: {
|
|
|
3586
3588
|
}>;
|
|
3587
3589
|
}, z$1.core.$strip>>;
|
|
3588
3590
|
nextPageToken: z$1.ZodNullable<z$1.ZodAny>;
|
|
3591
|
+
isPartial: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
3589
3592
|
requestTraces: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
3590
3593
|
startedAt: z$1.ZodString;
|
|
3591
3594
|
durationMs: z$1.ZodNumber;
|
package/dist/index.d.ts
CHANGED
|
@@ -2658,6 +2658,7 @@ declare let slatesMessageTriggerGroupWebhookTargetsListResponse: z.ZodObject<{
|
|
|
2658
2658
|
}>;
|
|
2659
2659
|
}, z.core.$strip>>;
|
|
2660
2660
|
nextPageToken: z.ZodNullable<z.ZodAny>;
|
|
2661
|
+
isPartial: z.ZodOptional<z.ZodBoolean>;
|
|
2661
2662
|
requestTraces: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2662
2663
|
startedAt: z.ZodString;
|
|
2663
2664
|
durationMs: z.ZodNumber;
|
|
@@ -3103,6 +3104,7 @@ declare let slatesTriggerGroupResponsesByMethod: {
|
|
|
3103
3104
|
}>;
|
|
3104
3105
|
}, z.core.$strip>>;
|
|
3105
3106
|
nextPageToken: z.ZodNullable<z.ZodAny>;
|
|
3107
|
+
isPartial: z.ZodOptional<z.ZodBoolean>;
|
|
3106
3108
|
requestTraces: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3107
3109
|
startedAt: z.ZodString;
|
|
3108
3110
|
durationMs: z.ZodNumber;
|
|
@@ -3586,6 +3588,7 @@ declare let slatesResponsesByMethod: {
|
|
|
3586
3588
|
}>;
|
|
3587
3589
|
}, z$1.core.$strip>>;
|
|
3588
3590
|
nextPageToken: z$1.ZodNullable<z$1.ZodAny>;
|
|
3591
|
+
isPartial: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
3589
3592
|
requestTraces: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
3590
3593
|
startedAt: z$1.ZodString;
|
|
3591
3594
|
durationMs: z$1.ZodNumber;
|
package/dist/index.module.js
CHANGED
|
@@ -899,7 +899,8 @@ var slatesMessageTriggerGroupWebhookTargetsListResponse = z15.object({
|
|
|
899
899
|
id: z15.string(),
|
|
900
900
|
result: withRequestTraces({
|
|
901
901
|
targets: z15.array(slatesWebhookTarget),
|
|
902
|
-
nextPageToken: z15.any().nullable()
|
|
902
|
+
nextPageToken: z15.any().nullable(),
|
|
903
|
+
isPartial: z15.boolean().optional()
|
|
903
904
|
})
|
|
904
905
|
});
|
|
905
906
|
var slatesMessageTriggerGroupWebhookRegisterRequest = z15.object({
|
package/package.json
CHANGED
|
@@ -96,7 +96,8 @@ export let slatesMessageTriggerGroupWebhookTargetsListResponse = z.object({
|
|
|
96
96
|
id: z.string(),
|
|
97
97
|
result: withRequestTraces({
|
|
98
98
|
targets: z.array(slatesWebhookTarget),
|
|
99
|
-
nextPageToken: z.any().nullable()
|
|
99
|
+
nextPageToken: z.any().nullable(),
|
|
100
|
+
isPartial: z.boolean().optional()
|
|
100
101
|
})
|
|
101
102
|
});
|
|
102
103
|
|