@sentry/api 0.286.0 → 0.287.0
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.ts +1 -1
- package/dist/types.gen.d.ts +55 -3
- package/dist/valibot.gen.d.ts +29 -3
- package/dist/valibot.js +46 -4
- package/dist/zod.gen.d.ts +241 -125
- package/dist/zod.js +46 -4
- package/package.json +1 -1
package/dist/zod.gen.d.ts
CHANGED
|
@@ -1,4 +1,25 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
+
/**
|
|
3
|
+
* Allows parameters to be defined in snake case, but passed as camel case.
|
|
4
|
+
*
|
|
5
|
+
* Errors are output in camel case.
|
|
6
|
+
*/
|
|
7
|
+
export declare const zActionFilterValidator: z.ZodObject<{
|
|
8
|
+
id: z.ZodOptional<z.ZodNumber>;
|
|
9
|
+
logic_type: z.ZodEnum<["any", "any-short", "all", "none"]>;
|
|
10
|
+
conditions: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
11
|
+
actions: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
|
|
12
|
+
}, "strip", z.ZodTypeAny, {
|
|
13
|
+
logic_type: "any" | "any-short" | "all" | "none";
|
|
14
|
+
actions: Record<string, unknown>[];
|
|
15
|
+
id?: number | undefined;
|
|
16
|
+
conditions?: unknown[] | undefined;
|
|
17
|
+
}, {
|
|
18
|
+
logic_type: "any" | "any-short" | "all" | "none";
|
|
19
|
+
actions: Record<string, unknown>[];
|
|
20
|
+
id?: number | undefined;
|
|
21
|
+
conditions?: unknown[] | undefined;
|
|
22
|
+
}>;
|
|
2
23
|
/**
|
|
3
24
|
* Response type for the POST endpoint (default kickoff and step paths).
|
|
4
25
|
*/
|
|
@@ -17517,8 +17538,6 @@ export declare const zListWorkflow: z.ZodArray<z.ZodObject<{
|
|
|
17517
17538
|
comparison: number | boolean;
|
|
17518
17539
|
conditionResult: boolean;
|
|
17519
17540
|
}[] | undefined;
|
|
17520
|
-
organizationId?: string | undefined;
|
|
17521
|
-
logicType?: string | undefined;
|
|
17522
17541
|
actions?: unknown[] | {
|
|
17523
17542
|
data?: Record<string, string> | undefined;
|
|
17524
17543
|
id?: string | undefined;
|
|
@@ -17527,6 +17546,8 @@ export declare const zListWorkflow: z.ZodArray<z.ZodObject<{
|
|
|
17527
17546
|
config?: Record<string, unknown> | undefined;
|
|
17528
17547
|
integrationId?: string | null | undefined;
|
|
17529
17548
|
}[] | undefined;
|
|
17549
|
+
organizationId?: string | undefined;
|
|
17550
|
+
logicType?: string | undefined;
|
|
17530
17551
|
}, {
|
|
17531
17552
|
id?: string | undefined;
|
|
17532
17553
|
conditions?: unknown[] | {
|
|
@@ -17535,8 +17556,6 @@ export declare const zListWorkflow: z.ZodArray<z.ZodObject<{
|
|
|
17535
17556
|
comparison: number | boolean;
|
|
17536
17557
|
conditionResult: boolean;
|
|
17537
17558
|
}[] | undefined;
|
|
17538
|
-
organizationId?: string | undefined;
|
|
17539
|
-
logicType?: string | undefined;
|
|
17540
17559
|
actions?: unknown[] | {
|
|
17541
17560
|
data?: Record<string, string> | undefined;
|
|
17542
17561
|
id?: string | undefined;
|
|
@@ -17545,6 +17564,8 @@ export declare const zListWorkflow: z.ZodArray<z.ZodObject<{
|
|
|
17545
17564
|
config?: Record<string, unknown> | undefined;
|
|
17546
17565
|
integrationId?: string | null | undefined;
|
|
17547
17566
|
}[] | undefined;
|
|
17567
|
+
organizationId?: string | undefined;
|
|
17568
|
+
logicType?: string | undefined;
|
|
17548
17569
|
}>, z.ZodNull]>;
|
|
17549
17570
|
actionFilters: z.ZodUnion<[z.ZodArray<z.ZodObject<{
|
|
17550
17571
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -17596,8 +17617,6 @@ export declare const zListWorkflow: z.ZodArray<z.ZodObject<{
|
|
|
17596
17617
|
comparison: number | boolean;
|
|
17597
17618
|
conditionResult: boolean;
|
|
17598
17619
|
}[] | undefined;
|
|
17599
|
-
organizationId?: string | undefined;
|
|
17600
|
-
logicType?: string | undefined;
|
|
17601
17620
|
actions?: unknown[] | {
|
|
17602
17621
|
data?: Record<string, string> | undefined;
|
|
17603
17622
|
id?: string | undefined;
|
|
@@ -17606,6 +17625,8 @@ export declare const zListWorkflow: z.ZodArray<z.ZodObject<{
|
|
|
17606
17625
|
config?: Record<string, unknown> | undefined;
|
|
17607
17626
|
integrationId?: string | null | undefined;
|
|
17608
17627
|
}[] | undefined;
|
|
17628
|
+
organizationId?: string | undefined;
|
|
17629
|
+
logicType?: string | undefined;
|
|
17609
17630
|
}, {
|
|
17610
17631
|
id?: string | undefined;
|
|
17611
17632
|
conditions?: unknown[] | {
|
|
@@ -17614,8 +17635,6 @@ export declare const zListWorkflow: z.ZodArray<z.ZodObject<{
|
|
|
17614
17635
|
comparison: number | boolean;
|
|
17615
17636
|
conditionResult: boolean;
|
|
17616
17637
|
}[] | undefined;
|
|
17617
|
-
organizationId?: string | undefined;
|
|
17618
|
-
logicType?: string | undefined;
|
|
17619
17638
|
actions?: unknown[] | {
|
|
17620
17639
|
data?: Record<string, string> | undefined;
|
|
17621
17640
|
id?: string | undefined;
|
|
@@ -17624,6 +17643,8 @@ export declare const zListWorkflow: z.ZodArray<z.ZodObject<{
|
|
|
17624
17643
|
config?: Record<string, unknown> | undefined;
|
|
17625
17644
|
integrationId?: string | null | undefined;
|
|
17626
17645
|
}[] | undefined;
|
|
17646
|
+
organizationId?: string | undefined;
|
|
17647
|
+
logicType?: string | undefined;
|
|
17627
17648
|
}>, "many">, z.ZodNull]>;
|
|
17628
17649
|
environment: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
17629
17650
|
config: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
@@ -17650,8 +17671,6 @@ export declare const zListWorkflow: z.ZodArray<z.ZodObject<{
|
|
|
17650
17671
|
comparison: number | boolean;
|
|
17651
17672
|
conditionResult: boolean;
|
|
17652
17673
|
}[] | undefined;
|
|
17653
|
-
organizationId?: string | undefined;
|
|
17654
|
-
logicType?: string | undefined;
|
|
17655
17674
|
actions?: unknown[] | {
|
|
17656
17675
|
data?: Record<string, string> | undefined;
|
|
17657
17676
|
id?: string | undefined;
|
|
@@ -17660,6 +17679,8 @@ export declare const zListWorkflow: z.ZodArray<z.ZodObject<{
|
|
|
17660
17679
|
config?: Record<string, unknown> | undefined;
|
|
17661
17680
|
integrationId?: string | null | undefined;
|
|
17662
17681
|
}[] | undefined;
|
|
17682
|
+
organizationId?: string | undefined;
|
|
17683
|
+
logicType?: string | undefined;
|
|
17663
17684
|
} | null;
|
|
17664
17685
|
actionFilters: {
|
|
17665
17686
|
id?: string | undefined;
|
|
@@ -17669,8 +17690,6 @@ export declare const zListWorkflow: z.ZodArray<z.ZodObject<{
|
|
|
17669
17690
|
comparison: number | boolean;
|
|
17670
17691
|
conditionResult: boolean;
|
|
17671
17692
|
}[] | undefined;
|
|
17672
|
-
organizationId?: string | undefined;
|
|
17673
|
-
logicType?: string | undefined;
|
|
17674
17693
|
actions?: unknown[] | {
|
|
17675
17694
|
data?: Record<string, string> | undefined;
|
|
17676
17695
|
id?: string | undefined;
|
|
@@ -17679,6 +17698,8 @@ export declare const zListWorkflow: z.ZodArray<z.ZodObject<{
|
|
|
17679
17698
|
config?: Record<string, unknown> | undefined;
|
|
17680
17699
|
integrationId?: string | null | undefined;
|
|
17681
17700
|
}[] | undefined;
|
|
17701
|
+
organizationId?: string | undefined;
|
|
17702
|
+
logicType?: string | undefined;
|
|
17682
17703
|
}[] | null;
|
|
17683
17704
|
detectorIds: string[] | null;
|
|
17684
17705
|
lastTriggered: string | null;
|
|
@@ -17701,8 +17722,6 @@ export declare const zListWorkflow: z.ZodArray<z.ZodObject<{
|
|
|
17701
17722
|
comparison: number | boolean;
|
|
17702
17723
|
conditionResult: boolean;
|
|
17703
17724
|
}[] | undefined;
|
|
17704
|
-
organizationId?: string | undefined;
|
|
17705
|
-
logicType?: string | undefined;
|
|
17706
17725
|
actions?: unknown[] | {
|
|
17707
17726
|
data?: Record<string, string> | undefined;
|
|
17708
17727
|
id?: string | undefined;
|
|
@@ -17711,6 +17730,8 @@ export declare const zListWorkflow: z.ZodArray<z.ZodObject<{
|
|
|
17711
17730
|
config?: Record<string, unknown> | undefined;
|
|
17712
17731
|
integrationId?: string | null | undefined;
|
|
17713
17732
|
}[] | undefined;
|
|
17733
|
+
organizationId?: string | undefined;
|
|
17734
|
+
logicType?: string | undefined;
|
|
17714
17735
|
} | null;
|
|
17715
17736
|
actionFilters: {
|
|
17716
17737
|
id?: string | undefined;
|
|
@@ -17720,8 +17741,6 @@ export declare const zListWorkflow: z.ZodArray<z.ZodObject<{
|
|
|
17720
17741
|
comparison: number | boolean;
|
|
17721
17742
|
conditionResult: boolean;
|
|
17722
17743
|
}[] | undefined;
|
|
17723
|
-
organizationId?: string | undefined;
|
|
17724
|
-
logicType?: string | undefined;
|
|
17725
17744
|
actions?: unknown[] | {
|
|
17726
17745
|
data?: Record<string, string> | undefined;
|
|
17727
17746
|
id?: string | undefined;
|
|
@@ -17730,6 +17749,8 @@ export declare const zListWorkflow: z.ZodArray<z.ZodObject<{
|
|
|
17730
17749
|
config?: Record<string, unknown> | undefined;
|
|
17731
17750
|
integrationId?: string | null | undefined;
|
|
17732
17751
|
}[] | undefined;
|
|
17752
|
+
organizationId?: string | undefined;
|
|
17753
|
+
logicType?: string | undefined;
|
|
17733
17754
|
}[] | null;
|
|
17734
17755
|
detectorIds: string[] | null;
|
|
17735
17756
|
lastTriggered: string | null;
|
|
@@ -31122,8 +31143,6 @@ export declare const zWorkflow: z.ZodObject<{
|
|
|
31122
31143
|
comparison: number | boolean;
|
|
31123
31144
|
conditionResult: boolean;
|
|
31124
31145
|
}[] | undefined;
|
|
31125
|
-
organizationId?: string | undefined;
|
|
31126
|
-
logicType?: string | undefined;
|
|
31127
31146
|
actions?: unknown[] | {
|
|
31128
31147
|
data?: Record<string, string> | undefined;
|
|
31129
31148
|
id?: string | undefined;
|
|
@@ -31132,6 +31151,8 @@ export declare const zWorkflow: z.ZodObject<{
|
|
|
31132
31151
|
config?: Record<string, unknown> | undefined;
|
|
31133
31152
|
integrationId?: string | null | undefined;
|
|
31134
31153
|
}[] | undefined;
|
|
31154
|
+
organizationId?: string | undefined;
|
|
31155
|
+
logicType?: string | undefined;
|
|
31135
31156
|
}, {
|
|
31136
31157
|
id?: string | undefined;
|
|
31137
31158
|
conditions?: unknown[] | {
|
|
@@ -31140,8 +31161,6 @@ export declare const zWorkflow: z.ZodObject<{
|
|
|
31140
31161
|
comparison: number | boolean;
|
|
31141
31162
|
conditionResult: boolean;
|
|
31142
31163
|
}[] | undefined;
|
|
31143
|
-
organizationId?: string | undefined;
|
|
31144
|
-
logicType?: string | undefined;
|
|
31145
31164
|
actions?: unknown[] | {
|
|
31146
31165
|
data?: Record<string, string> | undefined;
|
|
31147
31166
|
id?: string | undefined;
|
|
@@ -31150,6 +31169,8 @@ export declare const zWorkflow: z.ZodObject<{
|
|
|
31150
31169
|
config?: Record<string, unknown> | undefined;
|
|
31151
31170
|
integrationId?: string | null | undefined;
|
|
31152
31171
|
}[] | undefined;
|
|
31172
|
+
organizationId?: string | undefined;
|
|
31173
|
+
logicType?: string | undefined;
|
|
31153
31174
|
}>, z.ZodNull]>;
|
|
31154
31175
|
actionFilters: z.ZodUnion<[z.ZodArray<z.ZodObject<{
|
|
31155
31176
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -31201,8 +31222,6 @@ export declare const zWorkflow: z.ZodObject<{
|
|
|
31201
31222
|
comparison: number | boolean;
|
|
31202
31223
|
conditionResult: boolean;
|
|
31203
31224
|
}[] | undefined;
|
|
31204
|
-
organizationId?: string | undefined;
|
|
31205
|
-
logicType?: string | undefined;
|
|
31206
31225
|
actions?: unknown[] | {
|
|
31207
31226
|
data?: Record<string, string> | undefined;
|
|
31208
31227
|
id?: string | undefined;
|
|
@@ -31211,6 +31230,8 @@ export declare const zWorkflow: z.ZodObject<{
|
|
|
31211
31230
|
config?: Record<string, unknown> | undefined;
|
|
31212
31231
|
integrationId?: string | null | undefined;
|
|
31213
31232
|
}[] | undefined;
|
|
31233
|
+
organizationId?: string | undefined;
|
|
31234
|
+
logicType?: string | undefined;
|
|
31214
31235
|
}, {
|
|
31215
31236
|
id?: string | undefined;
|
|
31216
31237
|
conditions?: unknown[] | {
|
|
@@ -31219,8 +31240,6 @@ export declare const zWorkflow: z.ZodObject<{
|
|
|
31219
31240
|
comparison: number | boolean;
|
|
31220
31241
|
conditionResult: boolean;
|
|
31221
31242
|
}[] | undefined;
|
|
31222
|
-
organizationId?: string | undefined;
|
|
31223
|
-
logicType?: string | undefined;
|
|
31224
31243
|
actions?: unknown[] | {
|
|
31225
31244
|
data?: Record<string, string> | undefined;
|
|
31226
31245
|
id?: string | undefined;
|
|
@@ -31229,6 +31248,8 @@ export declare const zWorkflow: z.ZodObject<{
|
|
|
31229
31248
|
config?: Record<string, unknown> | undefined;
|
|
31230
31249
|
integrationId?: string | null | undefined;
|
|
31231
31250
|
}[] | undefined;
|
|
31251
|
+
organizationId?: string | undefined;
|
|
31252
|
+
logicType?: string | undefined;
|
|
31232
31253
|
}>, "many">, z.ZodNull]>;
|
|
31233
31254
|
environment: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
31234
31255
|
config: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
@@ -31255,8 +31276,6 @@ export declare const zWorkflow: z.ZodObject<{
|
|
|
31255
31276
|
comparison: number | boolean;
|
|
31256
31277
|
conditionResult: boolean;
|
|
31257
31278
|
}[] | undefined;
|
|
31258
|
-
organizationId?: string | undefined;
|
|
31259
|
-
logicType?: string | undefined;
|
|
31260
31279
|
actions?: unknown[] | {
|
|
31261
31280
|
data?: Record<string, string> | undefined;
|
|
31262
31281
|
id?: string | undefined;
|
|
@@ -31265,6 +31284,8 @@ export declare const zWorkflow: z.ZodObject<{
|
|
|
31265
31284
|
config?: Record<string, unknown> | undefined;
|
|
31266
31285
|
integrationId?: string | null | undefined;
|
|
31267
31286
|
}[] | undefined;
|
|
31287
|
+
organizationId?: string | undefined;
|
|
31288
|
+
logicType?: string | undefined;
|
|
31268
31289
|
} | null;
|
|
31269
31290
|
actionFilters: {
|
|
31270
31291
|
id?: string | undefined;
|
|
@@ -31274,8 +31295,6 @@ export declare const zWorkflow: z.ZodObject<{
|
|
|
31274
31295
|
comparison: number | boolean;
|
|
31275
31296
|
conditionResult: boolean;
|
|
31276
31297
|
}[] | undefined;
|
|
31277
|
-
organizationId?: string | undefined;
|
|
31278
|
-
logicType?: string | undefined;
|
|
31279
31298
|
actions?: unknown[] | {
|
|
31280
31299
|
data?: Record<string, string> | undefined;
|
|
31281
31300
|
id?: string | undefined;
|
|
@@ -31284,6 +31303,8 @@ export declare const zWorkflow: z.ZodObject<{
|
|
|
31284
31303
|
config?: Record<string, unknown> | undefined;
|
|
31285
31304
|
integrationId?: string | null | undefined;
|
|
31286
31305
|
}[] | undefined;
|
|
31306
|
+
organizationId?: string | undefined;
|
|
31307
|
+
logicType?: string | undefined;
|
|
31287
31308
|
}[] | null;
|
|
31288
31309
|
detectorIds: string[] | null;
|
|
31289
31310
|
lastTriggered: string | null;
|
|
@@ -31306,8 +31327,6 @@ export declare const zWorkflow: z.ZodObject<{
|
|
|
31306
31327
|
comparison: number | boolean;
|
|
31307
31328
|
conditionResult: boolean;
|
|
31308
31329
|
}[] | undefined;
|
|
31309
|
-
organizationId?: string | undefined;
|
|
31310
|
-
logicType?: string | undefined;
|
|
31311
31330
|
actions?: unknown[] | {
|
|
31312
31331
|
data?: Record<string, string> | undefined;
|
|
31313
31332
|
id?: string | undefined;
|
|
@@ -31316,6 +31335,8 @@ export declare const zWorkflow: z.ZodObject<{
|
|
|
31316
31335
|
config?: Record<string, unknown> | undefined;
|
|
31317
31336
|
integrationId?: string | null | undefined;
|
|
31318
31337
|
}[] | undefined;
|
|
31338
|
+
organizationId?: string | undefined;
|
|
31339
|
+
logicType?: string | undefined;
|
|
31319
31340
|
} | null;
|
|
31320
31341
|
actionFilters: {
|
|
31321
31342
|
id?: string | undefined;
|
|
@@ -31325,8 +31346,6 @@ export declare const zWorkflow: z.ZodObject<{
|
|
|
31325
31346
|
comparison: number | boolean;
|
|
31326
31347
|
conditionResult: boolean;
|
|
31327
31348
|
}[] | undefined;
|
|
31328
|
-
organizationId?: string | undefined;
|
|
31329
|
-
logicType?: string | undefined;
|
|
31330
31349
|
actions?: unknown[] | {
|
|
31331
31350
|
data?: Record<string, string> | undefined;
|
|
31332
31351
|
id?: string | undefined;
|
|
@@ -31335,6 +31354,8 @@ export declare const zWorkflow: z.ZodObject<{
|
|
|
31335
31354
|
config?: Record<string, unknown> | undefined;
|
|
31336
31355
|
integrationId?: string | null | undefined;
|
|
31337
31356
|
}[] | undefined;
|
|
31357
|
+
organizationId?: string | undefined;
|
|
31358
|
+
logicType?: string | undefined;
|
|
31338
31359
|
}[] | null;
|
|
31339
31360
|
detectorIds: string[] | null;
|
|
31340
31361
|
lastTriggered: string | null;
|
|
@@ -31364,7 +31385,22 @@ export declare const zWorkflowValidator: z.ZodObject<{
|
|
|
31364
31385
|
id?: number | undefined;
|
|
31365
31386
|
conditions?: unknown[] | undefined;
|
|
31366
31387
|
}>>;
|
|
31367
|
-
action_filters: z.ZodOptional<z.ZodArray<z.
|
|
31388
|
+
action_filters: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
31389
|
+
id: z.ZodOptional<z.ZodNumber>;
|
|
31390
|
+
logic_type: z.ZodEnum<["any", "any-short", "all", "none"]>;
|
|
31391
|
+
conditions: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
31392
|
+
actions: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
|
|
31393
|
+
}, "strip", z.ZodTypeAny, {
|
|
31394
|
+
logic_type: "any" | "any-short" | "all" | "none";
|
|
31395
|
+
actions: Record<string, unknown>[];
|
|
31396
|
+
id?: number | undefined;
|
|
31397
|
+
conditions?: unknown[] | undefined;
|
|
31398
|
+
}, {
|
|
31399
|
+
logic_type: "any" | "any-short" | "all" | "none";
|
|
31400
|
+
actions: Record<string, unknown>[];
|
|
31401
|
+
id?: number | undefined;
|
|
31402
|
+
conditions?: unknown[] | undefined;
|
|
31403
|
+
}>, "many">>;
|
|
31368
31404
|
owner: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
31369
31405
|
}, "strip", z.ZodTypeAny, {
|
|
31370
31406
|
name: string;
|
|
@@ -31379,7 +31415,12 @@ export declare const zWorkflowValidator: z.ZodObject<{
|
|
|
31379
31415
|
conditions?: unknown[] | undefined;
|
|
31380
31416
|
} | undefined;
|
|
31381
31417
|
detector_ids?: number[] | undefined;
|
|
31382
|
-
action_filters?:
|
|
31418
|
+
action_filters?: {
|
|
31419
|
+
logic_type: "any" | "any-short" | "all" | "none";
|
|
31420
|
+
actions: Record<string, unknown>[];
|
|
31421
|
+
id?: number | undefined;
|
|
31422
|
+
conditions?: unknown[] | undefined;
|
|
31423
|
+
}[] | undefined;
|
|
31383
31424
|
}, {
|
|
31384
31425
|
name: string;
|
|
31385
31426
|
owner?: string | null | undefined;
|
|
@@ -31393,7 +31434,12 @@ export declare const zWorkflowValidator: z.ZodObject<{
|
|
|
31393
31434
|
conditions?: unknown[] | undefined;
|
|
31394
31435
|
} | undefined;
|
|
31395
31436
|
detector_ids?: number[] | undefined;
|
|
31396
|
-
action_filters?:
|
|
31437
|
+
action_filters?: {
|
|
31438
|
+
logic_type: "any" | "any-short" | "all" | "none";
|
|
31439
|
+
actions: Record<string, unknown>[];
|
|
31440
|
+
id?: number | undefined;
|
|
31441
|
+
conditions?: unknown[] | undefined;
|
|
31442
|
+
}[] | undefined;
|
|
31397
31443
|
}>;
|
|
31398
31444
|
export declare const zLegacyBrowserFilter: z.ZodObject<{
|
|
31399
31445
|
active: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -62796,8 +62842,6 @@ export declare const zListOrganizationWorkflowsResponse: z.ZodArray<z.ZodObject<
|
|
|
62796
62842
|
comparison: number | boolean;
|
|
62797
62843
|
conditionResult: boolean;
|
|
62798
62844
|
}[] | undefined;
|
|
62799
|
-
organizationId?: string | undefined;
|
|
62800
|
-
logicType?: string | undefined;
|
|
62801
62845
|
actions?: unknown[] | {
|
|
62802
62846
|
data?: Record<string, string> | undefined;
|
|
62803
62847
|
id?: string | undefined;
|
|
@@ -62806,6 +62850,8 @@ export declare const zListOrganizationWorkflowsResponse: z.ZodArray<z.ZodObject<
|
|
|
62806
62850
|
config?: Record<string, unknown> | undefined;
|
|
62807
62851
|
integrationId?: string | null | undefined;
|
|
62808
62852
|
}[] | undefined;
|
|
62853
|
+
organizationId?: string | undefined;
|
|
62854
|
+
logicType?: string | undefined;
|
|
62809
62855
|
}, {
|
|
62810
62856
|
id?: string | undefined;
|
|
62811
62857
|
conditions?: unknown[] | {
|
|
@@ -62814,8 +62860,6 @@ export declare const zListOrganizationWorkflowsResponse: z.ZodArray<z.ZodObject<
|
|
|
62814
62860
|
comparison: number | boolean;
|
|
62815
62861
|
conditionResult: boolean;
|
|
62816
62862
|
}[] | undefined;
|
|
62817
|
-
organizationId?: string | undefined;
|
|
62818
|
-
logicType?: string | undefined;
|
|
62819
62863
|
actions?: unknown[] | {
|
|
62820
62864
|
data?: Record<string, string> | undefined;
|
|
62821
62865
|
id?: string | undefined;
|
|
@@ -62824,6 +62868,8 @@ export declare const zListOrganizationWorkflowsResponse: z.ZodArray<z.ZodObject<
|
|
|
62824
62868
|
config?: Record<string, unknown> | undefined;
|
|
62825
62869
|
integrationId?: string | null | undefined;
|
|
62826
62870
|
}[] | undefined;
|
|
62871
|
+
organizationId?: string | undefined;
|
|
62872
|
+
logicType?: string | undefined;
|
|
62827
62873
|
}>, z.ZodNull]>;
|
|
62828
62874
|
actionFilters: z.ZodUnion<[z.ZodArray<z.ZodObject<{
|
|
62829
62875
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -62875,8 +62921,6 @@ export declare const zListOrganizationWorkflowsResponse: z.ZodArray<z.ZodObject<
|
|
|
62875
62921
|
comparison: number | boolean;
|
|
62876
62922
|
conditionResult: boolean;
|
|
62877
62923
|
}[] | undefined;
|
|
62878
|
-
organizationId?: string | undefined;
|
|
62879
|
-
logicType?: string | undefined;
|
|
62880
62924
|
actions?: unknown[] | {
|
|
62881
62925
|
data?: Record<string, string> | undefined;
|
|
62882
62926
|
id?: string | undefined;
|
|
@@ -62885,6 +62929,8 @@ export declare const zListOrganizationWorkflowsResponse: z.ZodArray<z.ZodObject<
|
|
|
62885
62929
|
config?: Record<string, unknown> | undefined;
|
|
62886
62930
|
integrationId?: string | null | undefined;
|
|
62887
62931
|
}[] | undefined;
|
|
62932
|
+
organizationId?: string | undefined;
|
|
62933
|
+
logicType?: string | undefined;
|
|
62888
62934
|
}, {
|
|
62889
62935
|
id?: string | undefined;
|
|
62890
62936
|
conditions?: unknown[] | {
|
|
@@ -62893,8 +62939,6 @@ export declare const zListOrganizationWorkflowsResponse: z.ZodArray<z.ZodObject<
|
|
|
62893
62939
|
comparison: number | boolean;
|
|
62894
62940
|
conditionResult: boolean;
|
|
62895
62941
|
}[] | undefined;
|
|
62896
|
-
organizationId?: string | undefined;
|
|
62897
|
-
logicType?: string | undefined;
|
|
62898
62942
|
actions?: unknown[] | {
|
|
62899
62943
|
data?: Record<string, string> | undefined;
|
|
62900
62944
|
id?: string | undefined;
|
|
@@ -62903,6 +62947,8 @@ export declare const zListOrganizationWorkflowsResponse: z.ZodArray<z.ZodObject<
|
|
|
62903
62947
|
config?: Record<string, unknown> | undefined;
|
|
62904
62948
|
integrationId?: string | null | undefined;
|
|
62905
62949
|
}[] | undefined;
|
|
62950
|
+
organizationId?: string | undefined;
|
|
62951
|
+
logicType?: string | undefined;
|
|
62906
62952
|
}>, "many">, z.ZodNull]>;
|
|
62907
62953
|
environment: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
62908
62954
|
config: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
@@ -62929,8 +62975,6 @@ export declare const zListOrganizationWorkflowsResponse: z.ZodArray<z.ZodObject<
|
|
|
62929
62975
|
comparison: number | boolean;
|
|
62930
62976
|
conditionResult: boolean;
|
|
62931
62977
|
}[] | undefined;
|
|
62932
|
-
organizationId?: string | undefined;
|
|
62933
|
-
logicType?: string | undefined;
|
|
62934
62978
|
actions?: unknown[] | {
|
|
62935
62979
|
data?: Record<string, string> | undefined;
|
|
62936
62980
|
id?: string | undefined;
|
|
@@ -62939,6 +62983,8 @@ export declare const zListOrganizationWorkflowsResponse: z.ZodArray<z.ZodObject<
|
|
|
62939
62983
|
config?: Record<string, unknown> | undefined;
|
|
62940
62984
|
integrationId?: string | null | undefined;
|
|
62941
62985
|
}[] | undefined;
|
|
62986
|
+
organizationId?: string | undefined;
|
|
62987
|
+
logicType?: string | undefined;
|
|
62942
62988
|
} | null;
|
|
62943
62989
|
actionFilters: {
|
|
62944
62990
|
id?: string | undefined;
|
|
@@ -62948,8 +62994,6 @@ export declare const zListOrganizationWorkflowsResponse: z.ZodArray<z.ZodObject<
|
|
|
62948
62994
|
comparison: number | boolean;
|
|
62949
62995
|
conditionResult: boolean;
|
|
62950
62996
|
}[] | undefined;
|
|
62951
|
-
organizationId?: string | undefined;
|
|
62952
|
-
logicType?: string | undefined;
|
|
62953
62997
|
actions?: unknown[] | {
|
|
62954
62998
|
data?: Record<string, string> | undefined;
|
|
62955
62999
|
id?: string | undefined;
|
|
@@ -62958,6 +63002,8 @@ export declare const zListOrganizationWorkflowsResponse: z.ZodArray<z.ZodObject<
|
|
|
62958
63002
|
config?: Record<string, unknown> | undefined;
|
|
62959
63003
|
integrationId?: string | null | undefined;
|
|
62960
63004
|
}[] | undefined;
|
|
63005
|
+
organizationId?: string | undefined;
|
|
63006
|
+
logicType?: string | undefined;
|
|
62961
63007
|
}[] | null;
|
|
62962
63008
|
detectorIds: string[] | null;
|
|
62963
63009
|
lastTriggered: string | null;
|
|
@@ -62980,8 +63026,6 @@ export declare const zListOrganizationWorkflowsResponse: z.ZodArray<z.ZodObject<
|
|
|
62980
63026
|
comparison: number | boolean;
|
|
62981
63027
|
conditionResult: boolean;
|
|
62982
63028
|
}[] | undefined;
|
|
62983
|
-
organizationId?: string | undefined;
|
|
62984
|
-
logicType?: string | undefined;
|
|
62985
63029
|
actions?: unknown[] | {
|
|
62986
63030
|
data?: Record<string, string> | undefined;
|
|
62987
63031
|
id?: string | undefined;
|
|
@@ -62990,6 +63034,8 @@ export declare const zListOrganizationWorkflowsResponse: z.ZodArray<z.ZodObject<
|
|
|
62990
63034
|
config?: Record<string, unknown> | undefined;
|
|
62991
63035
|
integrationId?: string | null | undefined;
|
|
62992
63036
|
}[] | undefined;
|
|
63037
|
+
organizationId?: string | undefined;
|
|
63038
|
+
logicType?: string | undefined;
|
|
62993
63039
|
} | null;
|
|
62994
63040
|
actionFilters: {
|
|
62995
63041
|
id?: string | undefined;
|
|
@@ -62999,8 +63045,6 @@ export declare const zListOrganizationWorkflowsResponse: z.ZodArray<z.ZodObject<
|
|
|
62999
63045
|
comparison: number | boolean;
|
|
63000
63046
|
conditionResult: boolean;
|
|
63001
63047
|
}[] | undefined;
|
|
63002
|
-
organizationId?: string | undefined;
|
|
63003
|
-
logicType?: string | undefined;
|
|
63004
63048
|
actions?: unknown[] | {
|
|
63005
63049
|
data?: Record<string, string> | undefined;
|
|
63006
63050
|
id?: string | undefined;
|
|
@@ -63009,6 +63053,8 @@ export declare const zListOrganizationWorkflowsResponse: z.ZodArray<z.ZodObject<
|
|
|
63009
63053
|
config?: Record<string, unknown> | undefined;
|
|
63010
63054
|
integrationId?: string | null | undefined;
|
|
63011
63055
|
}[] | undefined;
|
|
63056
|
+
organizationId?: string | undefined;
|
|
63057
|
+
logicType?: string | undefined;
|
|
63012
63058
|
}[] | null;
|
|
63013
63059
|
detectorIds: string[] | null;
|
|
63014
63060
|
lastTriggered: string | null;
|
|
@@ -63034,7 +63080,22 @@ export declare const zCreateOrganizationWorkflowData: z.ZodObject<{
|
|
|
63034
63080
|
id?: number | undefined;
|
|
63035
63081
|
conditions?: unknown[] | undefined;
|
|
63036
63082
|
}>>;
|
|
63037
|
-
action_filters: z.ZodOptional<z.ZodArray<z.
|
|
63083
|
+
action_filters: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
63084
|
+
id: z.ZodOptional<z.ZodNumber>;
|
|
63085
|
+
logic_type: z.ZodEnum<["any", "any-short", "all", "none"]>;
|
|
63086
|
+
conditions: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
63087
|
+
actions: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
|
|
63088
|
+
}, "strip", z.ZodTypeAny, {
|
|
63089
|
+
logic_type: "any" | "any-short" | "all" | "none";
|
|
63090
|
+
actions: Record<string, unknown>[];
|
|
63091
|
+
id?: number | undefined;
|
|
63092
|
+
conditions?: unknown[] | undefined;
|
|
63093
|
+
}, {
|
|
63094
|
+
logic_type: "any" | "any-short" | "all" | "none";
|
|
63095
|
+
actions: Record<string, unknown>[];
|
|
63096
|
+
id?: number | undefined;
|
|
63097
|
+
conditions?: unknown[] | undefined;
|
|
63098
|
+
}>, "many">>;
|
|
63038
63099
|
owner: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
63039
63100
|
}, "strip", z.ZodTypeAny, {
|
|
63040
63101
|
name: string;
|
|
@@ -63049,7 +63110,12 @@ export declare const zCreateOrganizationWorkflowData: z.ZodObject<{
|
|
|
63049
63110
|
conditions?: unknown[] | undefined;
|
|
63050
63111
|
} | undefined;
|
|
63051
63112
|
detector_ids?: number[] | undefined;
|
|
63052
|
-
action_filters?:
|
|
63113
|
+
action_filters?: {
|
|
63114
|
+
logic_type: "any" | "any-short" | "all" | "none";
|
|
63115
|
+
actions: Record<string, unknown>[];
|
|
63116
|
+
id?: number | undefined;
|
|
63117
|
+
conditions?: unknown[] | undefined;
|
|
63118
|
+
}[] | undefined;
|
|
63053
63119
|
}, {
|
|
63054
63120
|
name: string;
|
|
63055
63121
|
owner?: string | null | undefined;
|
|
@@ -63063,7 +63129,12 @@ export declare const zCreateOrganizationWorkflowData: z.ZodObject<{
|
|
|
63063
63129
|
conditions?: unknown[] | undefined;
|
|
63064
63130
|
} | undefined;
|
|
63065
63131
|
detector_ids?: number[] | undefined;
|
|
63066
|
-
action_filters?:
|
|
63132
|
+
action_filters?: {
|
|
63133
|
+
logic_type: "any" | "any-short" | "all" | "none";
|
|
63134
|
+
actions: Record<string, unknown>[];
|
|
63135
|
+
id?: number | undefined;
|
|
63136
|
+
conditions?: unknown[] | undefined;
|
|
63137
|
+
}[] | undefined;
|
|
63067
63138
|
}>;
|
|
63068
63139
|
path: z.ZodObject<{
|
|
63069
63140
|
organization_id_or_slug: z.ZodString;
|
|
@@ -63087,7 +63158,12 @@ export declare const zCreateOrganizationWorkflowData: z.ZodObject<{
|
|
|
63087
63158
|
conditions?: unknown[] | undefined;
|
|
63088
63159
|
} | undefined;
|
|
63089
63160
|
detector_ids?: number[] | undefined;
|
|
63090
|
-
action_filters?:
|
|
63161
|
+
action_filters?: {
|
|
63162
|
+
logic_type: "any" | "any-short" | "all" | "none";
|
|
63163
|
+
actions: Record<string, unknown>[];
|
|
63164
|
+
id?: number | undefined;
|
|
63165
|
+
conditions?: unknown[] | undefined;
|
|
63166
|
+
}[] | undefined;
|
|
63091
63167
|
};
|
|
63092
63168
|
path: {
|
|
63093
63169
|
organization_id_or_slug: string;
|
|
@@ -63107,7 +63183,12 @@ export declare const zCreateOrganizationWorkflowData: z.ZodObject<{
|
|
|
63107
63183
|
conditions?: unknown[] | undefined;
|
|
63108
63184
|
} | undefined;
|
|
63109
63185
|
detector_ids?: number[] | undefined;
|
|
63110
|
-
action_filters?:
|
|
63186
|
+
action_filters?: {
|
|
63187
|
+
logic_type: "any" | "any-short" | "all" | "none";
|
|
63188
|
+
actions: Record<string, unknown>[];
|
|
63189
|
+
id?: number | undefined;
|
|
63190
|
+
conditions?: unknown[] | undefined;
|
|
63191
|
+
}[] | undefined;
|
|
63111
63192
|
};
|
|
63112
63193
|
path: {
|
|
63113
63194
|
organization_id_or_slug: string;
|
|
@@ -63171,8 +63252,6 @@ export declare const zCreateOrganizationWorkflowResponse: z.ZodObject<{
|
|
|
63171
63252
|
comparison: number | boolean;
|
|
63172
63253
|
conditionResult: boolean;
|
|
63173
63254
|
}[] | undefined;
|
|
63174
|
-
organizationId?: string | undefined;
|
|
63175
|
-
logicType?: string | undefined;
|
|
63176
63255
|
actions?: unknown[] | {
|
|
63177
63256
|
data?: Record<string, string> | undefined;
|
|
63178
63257
|
id?: string | undefined;
|
|
@@ -63181,6 +63260,8 @@ export declare const zCreateOrganizationWorkflowResponse: z.ZodObject<{
|
|
|
63181
63260
|
config?: Record<string, unknown> | undefined;
|
|
63182
63261
|
integrationId?: string | null | undefined;
|
|
63183
63262
|
}[] | undefined;
|
|
63263
|
+
organizationId?: string | undefined;
|
|
63264
|
+
logicType?: string | undefined;
|
|
63184
63265
|
}, {
|
|
63185
63266
|
id?: string | undefined;
|
|
63186
63267
|
conditions?: unknown[] | {
|
|
@@ -63189,8 +63270,6 @@ export declare const zCreateOrganizationWorkflowResponse: z.ZodObject<{
|
|
|
63189
63270
|
comparison: number | boolean;
|
|
63190
63271
|
conditionResult: boolean;
|
|
63191
63272
|
}[] | undefined;
|
|
63192
|
-
organizationId?: string | undefined;
|
|
63193
|
-
logicType?: string | undefined;
|
|
63194
63273
|
actions?: unknown[] | {
|
|
63195
63274
|
data?: Record<string, string> | undefined;
|
|
63196
63275
|
id?: string | undefined;
|
|
@@ -63199,6 +63278,8 @@ export declare const zCreateOrganizationWorkflowResponse: z.ZodObject<{
|
|
|
63199
63278
|
config?: Record<string, unknown> | undefined;
|
|
63200
63279
|
integrationId?: string | null | undefined;
|
|
63201
63280
|
}[] | undefined;
|
|
63281
|
+
organizationId?: string | undefined;
|
|
63282
|
+
logicType?: string | undefined;
|
|
63202
63283
|
}>, z.ZodNull]>;
|
|
63203
63284
|
actionFilters: z.ZodUnion<[z.ZodArray<z.ZodObject<{
|
|
63204
63285
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -63250,8 +63331,6 @@ export declare const zCreateOrganizationWorkflowResponse: z.ZodObject<{
|
|
|
63250
63331
|
comparison: number | boolean;
|
|
63251
63332
|
conditionResult: boolean;
|
|
63252
63333
|
}[] | undefined;
|
|
63253
|
-
organizationId?: string | undefined;
|
|
63254
|
-
logicType?: string | undefined;
|
|
63255
63334
|
actions?: unknown[] | {
|
|
63256
63335
|
data?: Record<string, string> | undefined;
|
|
63257
63336
|
id?: string | undefined;
|
|
@@ -63260,6 +63339,8 @@ export declare const zCreateOrganizationWorkflowResponse: z.ZodObject<{
|
|
|
63260
63339
|
config?: Record<string, unknown> | undefined;
|
|
63261
63340
|
integrationId?: string | null | undefined;
|
|
63262
63341
|
}[] | undefined;
|
|
63342
|
+
organizationId?: string | undefined;
|
|
63343
|
+
logicType?: string | undefined;
|
|
63263
63344
|
}, {
|
|
63264
63345
|
id?: string | undefined;
|
|
63265
63346
|
conditions?: unknown[] | {
|
|
@@ -63268,8 +63349,6 @@ export declare const zCreateOrganizationWorkflowResponse: z.ZodObject<{
|
|
|
63268
63349
|
comparison: number | boolean;
|
|
63269
63350
|
conditionResult: boolean;
|
|
63270
63351
|
}[] | undefined;
|
|
63271
|
-
organizationId?: string | undefined;
|
|
63272
|
-
logicType?: string | undefined;
|
|
63273
63352
|
actions?: unknown[] | {
|
|
63274
63353
|
data?: Record<string, string> | undefined;
|
|
63275
63354
|
id?: string | undefined;
|
|
@@ -63278,6 +63357,8 @@ export declare const zCreateOrganizationWorkflowResponse: z.ZodObject<{
|
|
|
63278
63357
|
config?: Record<string, unknown> | undefined;
|
|
63279
63358
|
integrationId?: string | null | undefined;
|
|
63280
63359
|
}[] | undefined;
|
|
63360
|
+
organizationId?: string | undefined;
|
|
63361
|
+
logicType?: string | undefined;
|
|
63281
63362
|
}>, "many">, z.ZodNull]>;
|
|
63282
63363
|
environment: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
63283
63364
|
config: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
@@ -63304,8 +63385,6 @@ export declare const zCreateOrganizationWorkflowResponse: z.ZodObject<{
|
|
|
63304
63385
|
comparison: number | boolean;
|
|
63305
63386
|
conditionResult: boolean;
|
|
63306
63387
|
}[] | undefined;
|
|
63307
|
-
organizationId?: string | undefined;
|
|
63308
|
-
logicType?: string | undefined;
|
|
63309
63388
|
actions?: unknown[] | {
|
|
63310
63389
|
data?: Record<string, string> | undefined;
|
|
63311
63390
|
id?: string | undefined;
|
|
@@ -63314,6 +63393,8 @@ export declare const zCreateOrganizationWorkflowResponse: z.ZodObject<{
|
|
|
63314
63393
|
config?: Record<string, unknown> | undefined;
|
|
63315
63394
|
integrationId?: string | null | undefined;
|
|
63316
63395
|
}[] | undefined;
|
|
63396
|
+
organizationId?: string | undefined;
|
|
63397
|
+
logicType?: string | undefined;
|
|
63317
63398
|
} | null;
|
|
63318
63399
|
actionFilters: {
|
|
63319
63400
|
id?: string | undefined;
|
|
@@ -63323,8 +63404,6 @@ export declare const zCreateOrganizationWorkflowResponse: z.ZodObject<{
|
|
|
63323
63404
|
comparison: number | boolean;
|
|
63324
63405
|
conditionResult: boolean;
|
|
63325
63406
|
}[] | undefined;
|
|
63326
|
-
organizationId?: string | undefined;
|
|
63327
|
-
logicType?: string | undefined;
|
|
63328
63407
|
actions?: unknown[] | {
|
|
63329
63408
|
data?: Record<string, string> | undefined;
|
|
63330
63409
|
id?: string | undefined;
|
|
@@ -63333,6 +63412,8 @@ export declare const zCreateOrganizationWorkflowResponse: z.ZodObject<{
|
|
|
63333
63412
|
config?: Record<string, unknown> | undefined;
|
|
63334
63413
|
integrationId?: string | null | undefined;
|
|
63335
63414
|
}[] | undefined;
|
|
63415
|
+
organizationId?: string | undefined;
|
|
63416
|
+
logicType?: string | undefined;
|
|
63336
63417
|
}[] | null;
|
|
63337
63418
|
detectorIds: string[] | null;
|
|
63338
63419
|
lastTriggered: string | null;
|
|
@@ -63355,8 +63436,6 @@ export declare const zCreateOrganizationWorkflowResponse: z.ZodObject<{
|
|
|
63355
63436
|
comparison: number | boolean;
|
|
63356
63437
|
conditionResult: boolean;
|
|
63357
63438
|
}[] | undefined;
|
|
63358
|
-
organizationId?: string | undefined;
|
|
63359
|
-
logicType?: string | undefined;
|
|
63360
63439
|
actions?: unknown[] | {
|
|
63361
63440
|
data?: Record<string, string> | undefined;
|
|
63362
63441
|
id?: string | undefined;
|
|
@@ -63365,6 +63444,8 @@ export declare const zCreateOrganizationWorkflowResponse: z.ZodObject<{
|
|
|
63365
63444
|
config?: Record<string, unknown> | undefined;
|
|
63366
63445
|
integrationId?: string | null | undefined;
|
|
63367
63446
|
}[] | undefined;
|
|
63447
|
+
organizationId?: string | undefined;
|
|
63448
|
+
logicType?: string | undefined;
|
|
63368
63449
|
} | null;
|
|
63369
63450
|
actionFilters: {
|
|
63370
63451
|
id?: string | undefined;
|
|
@@ -63374,8 +63455,6 @@ export declare const zCreateOrganizationWorkflowResponse: z.ZodObject<{
|
|
|
63374
63455
|
comparison: number | boolean;
|
|
63375
63456
|
conditionResult: boolean;
|
|
63376
63457
|
}[] | undefined;
|
|
63377
|
-
organizationId?: string | undefined;
|
|
63378
|
-
logicType?: string | undefined;
|
|
63379
63458
|
actions?: unknown[] | {
|
|
63380
63459
|
data?: Record<string, string> | undefined;
|
|
63381
63460
|
id?: string | undefined;
|
|
@@ -63384,6 +63463,8 @@ export declare const zCreateOrganizationWorkflowResponse: z.ZodObject<{
|
|
|
63384
63463
|
config?: Record<string, unknown> | undefined;
|
|
63385
63464
|
integrationId?: string | null | undefined;
|
|
63386
63465
|
}[] | undefined;
|
|
63466
|
+
organizationId?: string | undefined;
|
|
63467
|
+
logicType?: string | undefined;
|
|
63387
63468
|
}[] | null;
|
|
63388
63469
|
detectorIds: string[] | null;
|
|
63389
63470
|
lastTriggered: string | null;
|
|
@@ -63498,8 +63579,6 @@ export declare const zUpdateOrganizationWorkflowsResponse: z.ZodArray<z.ZodObjec
|
|
|
63498
63579
|
comparison: number | boolean;
|
|
63499
63580
|
conditionResult: boolean;
|
|
63500
63581
|
}[] | undefined;
|
|
63501
|
-
organizationId?: string | undefined;
|
|
63502
|
-
logicType?: string | undefined;
|
|
63503
63582
|
actions?: unknown[] | {
|
|
63504
63583
|
data?: Record<string, string> | undefined;
|
|
63505
63584
|
id?: string | undefined;
|
|
@@ -63508,6 +63587,8 @@ export declare const zUpdateOrganizationWorkflowsResponse: z.ZodArray<z.ZodObjec
|
|
|
63508
63587
|
config?: Record<string, unknown> | undefined;
|
|
63509
63588
|
integrationId?: string | null | undefined;
|
|
63510
63589
|
}[] | undefined;
|
|
63590
|
+
organizationId?: string | undefined;
|
|
63591
|
+
logicType?: string | undefined;
|
|
63511
63592
|
}, {
|
|
63512
63593
|
id?: string | undefined;
|
|
63513
63594
|
conditions?: unknown[] | {
|
|
@@ -63516,8 +63597,6 @@ export declare const zUpdateOrganizationWorkflowsResponse: z.ZodArray<z.ZodObjec
|
|
|
63516
63597
|
comparison: number | boolean;
|
|
63517
63598
|
conditionResult: boolean;
|
|
63518
63599
|
}[] | undefined;
|
|
63519
|
-
organizationId?: string | undefined;
|
|
63520
|
-
logicType?: string | undefined;
|
|
63521
63600
|
actions?: unknown[] | {
|
|
63522
63601
|
data?: Record<string, string> | undefined;
|
|
63523
63602
|
id?: string | undefined;
|
|
@@ -63526,6 +63605,8 @@ export declare const zUpdateOrganizationWorkflowsResponse: z.ZodArray<z.ZodObjec
|
|
|
63526
63605
|
config?: Record<string, unknown> | undefined;
|
|
63527
63606
|
integrationId?: string | null | undefined;
|
|
63528
63607
|
}[] | undefined;
|
|
63608
|
+
organizationId?: string | undefined;
|
|
63609
|
+
logicType?: string | undefined;
|
|
63529
63610
|
}>, z.ZodNull]>;
|
|
63530
63611
|
actionFilters: z.ZodUnion<[z.ZodArray<z.ZodObject<{
|
|
63531
63612
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -63577,8 +63658,6 @@ export declare const zUpdateOrganizationWorkflowsResponse: z.ZodArray<z.ZodObjec
|
|
|
63577
63658
|
comparison: number | boolean;
|
|
63578
63659
|
conditionResult: boolean;
|
|
63579
63660
|
}[] | undefined;
|
|
63580
|
-
organizationId?: string | undefined;
|
|
63581
|
-
logicType?: string | undefined;
|
|
63582
63661
|
actions?: unknown[] | {
|
|
63583
63662
|
data?: Record<string, string> | undefined;
|
|
63584
63663
|
id?: string | undefined;
|
|
@@ -63587,6 +63666,8 @@ export declare const zUpdateOrganizationWorkflowsResponse: z.ZodArray<z.ZodObjec
|
|
|
63587
63666
|
config?: Record<string, unknown> | undefined;
|
|
63588
63667
|
integrationId?: string | null | undefined;
|
|
63589
63668
|
}[] | undefined;
|
|
63669
|
+
organizationId?: string | undefined;
|
|
63670
|
+
logicType?: string | undefined;
|
|
63590
63671
|
}, {
|
|
63591
63672
|
id?: string | undefined;
|
|
63592
63673
|
conditions?: unknown[] | {
|
|
@@ -63595,8 +63676,6 @@ export declare const zUpdateOrganizationWorkflowsResponse: z.ZodArray<z.ZodObjec
|
|
|
63595
63676
|
comparison: number | boolean;
|
|
63596
63677
|
conditionResult: boolean;
|
|
63597
63678
|
}[] | undefined;
|
|
63598
|
-
organizationId?: string | undefined;
|
|
63599
|
-
logicType?: string | undefined;
|
|
63600
63679
|
actions?: unknown[] | {
|
|
63601
63680
|
data?: Record<string, string> | undefined;
|
|
63602
63681
|
id?: string | undefined;
|
|
@@ -63605,6 +63684,8 @@ export declare const zUpdateOrganizationWorkflowsResponse: z.ZodArray<z.ZodObjec
|
|
|
63605
63684
|
config?: Record<string, unknown> | undefined;
|
|
63606
63685
|
integrationId?: string | null | undefined;
|
|
63607
63686
|
}[] | undefined;
|
|
63687
|
+
organizationId?: string | undefined;
|
|
63688
|
+
logicType?: string | undefined;
|
|
63608
63689
|
}>, "many">, z.ZodNull]>;
|
|
63609
63690
|
environment: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
63610
63691
|
config: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
@@ -63631,8 +63712,6 @@ export declare const zUpdateOrganizationWorkflowsResponse: z.ZodArray<z.ZodObjec
|
|
|
63631
63712
|
comparison: number | boolean;
|
|
63632
63713
|
conditionResult: boolean;
|
|
63633
63714
|
}[] | undefined;
|
|
63634
|
-
organizationId?: string | undefined;
|
|
63635
|
-
logicType?: string | undefined;
|
|
63636
63715
|
actions?: unknown[] | {
|
|
63637
63716
|
data?: Record<string, string> | undefined;
|
|
63638
63717
|
id?: string | undefined;
|
|
@@ -63641,6 +63720,8 @@ export declare const zUpdateOrganizationWorkflowsResponse: z.ZodArray<z.ZodObjec
|
|
|
63641
63720
|
config?: Record<string, unknown> | undefined;
|
|
63642
63721
|
integrationId?: string | null | undefined;
|
|
63643
63722
|
}[] | undefined;
|
|
63723
|
+
organizationId?: string | undefined;
|
|
63724
|
+
logicType?: string | undefined;
|
|
63644
63725
|
} | null;
|
|
63645
63726
|
actionFilters: {
|
|
63646
63727
|
id?: string | undefined;
|
|
@@ -63650,8 +63731,6 @@ export declare const zUpdateOrganizationWorkflowsResponse: z.ZodArray<z.ZodObjec
|
|
|
63650
63731
|
comparison: number | boolean;
|
|
63651
63732
|
conditionResult: boolean;
|
|
63652
63733
|
}[] | undefined;
|
|
63653
|
-
organizationId?: string | undefined;
|
|
63654
|
-
logicType?: string | undefined;
|
|
63655
63734
|
actions?: unknown[] | {
|
|
63656
63735
|
data?: Record<string, string> | undefined;
|
|
63657
63736
|
id?: string | undefined;
|
|
@@ -63660,6 +63739,8 @@ export declare const zUpdateOrganizationWorkflowsResponse: z.ZodArray<z.ZodObjec
|
|
|
63660
63739
|
config?: Record<string, unknown> | undefined;
|
|
63661
63740
|
integrationId?: string | null | undefined;
|
|
63662
63741
|
}[] | undefined;
|
|
63742
|
+
organizationId?: string | undefined;
|
|
63743
|
+
logicType?: string | undefined;
|
|
63663
63744
|
}[] | null;
|
|
63664
63745
|
detectorIds: string[] | null;
|
|
63665
63746
|
lastTriggered: string | null;
|
|
@@ -63682,8 +63763,6 @@ export declare const zUpdateOrganizationWorkflowsResponse: z.ZodArray<z.ZodObjec
|
|
|
63682
63763
|
comparison: number | boolean;
|
|
63683
63764
|
conditionResult: boolean;
|
|
63684
63765
|
}[] | undefined;
|
|
63685
|
-
organizationId?: string | undefined;
|
|
63686
|
-
logicType?: string | undefined;
|
|
63687
63766
|
actions?: unknown[] | {
|
|
63688
63767
|
data?: Record<string, string> | undefined;
|
|
63689
63768
|
id?: string | undefined;
|
|
@@ -63692,6 +63771,8 @@ export declare const zUpdateOrganizationWorkflowsResponse: z.ZodArray<z.ZodObjec
|
|
|
63692
63771
|
config?: Record<string, unknown> | undefined;
|
|
63693
63772
|
integrationId?: string | null | undefined;
|
|
63694
63773
|
}[] | undefined;
|
|
63774
|
+
organizationId?: string | undefined;
|
|
63775
|
+
logicType?: string | undefined;
|
|
63695
63776
|
} | null;
|
|
63696
63777
|
actionFilters: {
|
|
63697
63778
|
id?: string | undefined;
|
|
@@ -63701,8 +63782,6 @@ export declare const zUpdateOrganizationWorkflowsResponse: z.ZodArray<z.ZodObjec
|
|
|
63701
63782
|
comparison: number | boolean;
|
|
63702
63783
|
conditionResult: boolean;
|
|
63703
63784
|
}[] | undefined;
|
|
63704
|
-
organizationId?: string | undefined;
|
|
63705
|
-
logicType?: string | undefined;
|
|
63706
63785
|
actions?: unknown[] | {
|
|
63707
63786
|
data?: Record<string, string> | undefined;
|
|
63708
63787
|
id?: string | undefined;
|
|
@@ -63711,6 +63790,8 @@ export declare const zUpdateOrganizationWorkflowsResponse: z.ZodArray<z.ZodObjec
|
|
|
63711
63790
|
config?: Record<string, unknown> | undefined;
|
|
63712
63791
|
integrationId?: string | null | undefined;
|
|
63713
63792
|
}[] | undefined;
|
|
63793
|
+
organizationId?: string | undefined;
|
|
63794
|
+
logicType?: string | undefined;
|
|
63714
63795
|
}[] | null;
|
|
63715
63796
|
detectorIds: string[] | null;
|
|
63716
63797
|
lastTriggered: string | null;
|
|
@@ -63832,8 +63913,6 @@ export declare const zGetOrganizationWorkflowResponse: z.ZodObject<{
|
|
|
63832
63913
|
comparison: number | boolean;
|
|
63833
63914
|
conditionResult: boolean;
|
|
63834
63915
|
}[] | undefined;
|
|
63835
|
-
organizationId?: string | undefined;
|
|
63836
|
-
logicType?: string | undefined;
|
|
63837
63916
|
actions?: unknown[] | {
|
|
63838
63917
|
data?: Record<string, string> | undefined;
|
|
63839
63918
|
id?: string | undefined;
|
|
@@ -63842,6 +63921,8 @@ export declare const zGetOrganizationWorkflowResponse: z.ZodObject<{
|
|
|
63842
63921
|
config?: Record<string, unknown> | undefined;
|
|
63843
63922
|
integrationId?: string | null | undefined;
|
|
63844
63923
|
}[] | undefined;
|
|
63924
|
+
organizationId?: string | undefined;
|
|
63925
|
+
logicType?: string | undefined;
|
|
63845
63926
|
}, {
|
|
63846
63927
|
id?: string | undefined;
|
|
63847
63928
|
conditions?: unknown[] | {
|
|
@@ -63850,8 +63931,6 @@ export declare const zGetOrganizationWorkflowResponse: z.ZodObject<{
|
|
|
63850
63931
|
comparison: number | boolean;
|
|
63851
63932
|
conditionResult: boolean;
|
|
63852
63933
|
}[] | undefined;
|
|
63853
|
-
organizationId?: string | undefined;
|
|
63854
|
-
logicType?: string | undefined;
|
|
63855
63934
|
actions?: unknown[] | {
|
|
63856
63935
|
data?: Record<string, string> | undefined;
|
|
63857
63936
|
id?: string | undefined;
|
|
@@ -63860,6 +63939,8 @@ export declare const zGetOrganizationWorkflowResponse: z.ZodObject<{
|
|
|
63860
63939
|
config?: Record<string, unknown> | undefined;
|
|
63861
63940
|
integrationId?: string | null | undefined;
|
|
63862
63941
|
}[] | undefined;
|
|
63942
|
+
organizationId?: string | undefined;
|
|
63943
|
+
logicType?: string | undefined;
|
|
63863
63944
|
}>, z.ZodNull]>;
|
|
63864
63945
|
actionFilters: z.ZodUnion<[z.ZodArray<z.ZodObject<{
|
|
63865
63946
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -63911,8 +63992,6 @@ export declare const zGetOrganizationWorkflowResponse: z.ZodObject<{
|
|
|
63911
63992
|
comparison: number | boolean;
|
|
63912
63993
|
conditionResult: boolean;
|
|
63913
63994
|
}[] | undefined;
|
|
63914
|
-
organizationId?: string | undefined;
|
|
63915
|
-
logicType?: string | undefined;
|
|
63916
63995
|
actions?: unknown[] | {
|
|
63917
63996
|
data?: Record<string, string> | undefined;
|
|
63918
63997
|
id?: string | undefined;
|
|
@@ -63921,6 +64000,8 @@ export declare const zGetOrganizationWorkflowResponse: z.ZodObject<{
|
|
|
63921
64000
|
config?: Record<string, unknown> | undefined;
|
|
63922
64001
|
integrationId?: string | null | undefined;
|
|
63923
64002
|
}[] | undefined;
|
|
64003
|
+
organizationId?: string | undefined;
|
|
64004
|
+
logicType?: string | undefined;
|
|
63924
64005
|
}, {
|
|
63925
64006
|
id?: string | undefined;
|
|
63926
64007
|
conditions?: unknown[] | {
|
|
@@ -63929,8 +64010,6 @@ export declare const zGetOrganizationWorkflowResponse: z.ZodObject<{
|
|
|
63929
64010
|
comparison: number | boolean;
|
|
63930
64011
|
conditionResult: boolean;
|
|
63931
64012
|
}[] | undefined;
|
|
63932
|
-
organizationId?: string | undefined;
|
|
63933
|
-
logicType?: string | undefined;
|
|
63934
64013
|
actions?: unknown[] | {
|
|
63935
64014
|
data?: Record<string, string> | undefined;
|
|
63936
64015
|
id?: string | undefined;
|
|
@@ -63939,6 +64018,8 @@ export declare const zGetOrganizationWorkflowResponse: z.ZodObject<{
|
|
|
63939
64018
|
config?: Record<string, unknown> | undefined;
|
|
63940
64019
|
integrationId?: string | null | undefined;
|
|
63941
64020
|
}[] | undefined;
|
|
64021
|
+
organizationId?: string | undefined;
|
|
64022
|
+
logicType?: string | undefined;
|
|
63942
64023
|
}>, "many">, z.ZodNull]>;
|
|
63943
64024
|
environment: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
63944
64025
|
config: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
@@ -63965,8 +64046,6 @@ export declare const zGetOrganizationWorkflowResponse: z.ZodObject<{
|
|
|
63965
64046
|
comparison: number | boolean;
|
|
63966
64047
|
conditionResult: boolean;
|
|
63967
64048
|
}[] | undefined;
|
|
63968
|
-
organizationId?: string | undefined;
|
|
63969
|
-
logicType?: string | undefined;
|
|
63970
64049
|
actions?: unknown[] | {
|
|
63971
64050
|
data?: Record<string, string> | undefined;
|
|
63972
64051
|
id?: string | undefined;
|
|
@@ -63975,6 +64054,8 @@ export declare const zGetOrganizationWorkflowResponse: z.ZodObject<{
|
|
|
63975
64054
|
config?: Record<string, unknown> | undefined;
|
|
63976
64055
|
integrationId?: string | null | undefined;
|
|
63977
64056
|
}[] | undefined;
|
|
64057
|
+
organizationId?: string | undefined;
|
|
64058
|
+
logicType?: string | undefined;
|
|
63978
64059
|
} | null;
|
|
63979
64060
|
actionFilters: {
|
|
63980
64061
|
id?: string | undefined;
|
|
@@ -63984,8 +64065,6 @@ export declare const zGetOrganizationWorkflowResponse: z.ZodObject<{
|
|
|
63984
64065
|
comparison: number | boolean;
|
|
63985
64066
|
conditionResult: boolean;
|
|
63986
64067
|
}[] | undefined;
|
|
63987
|
-
organizationId?: string | undefined;
|
|
63988
|
-
logicType?: string | undefined;
|
|
63989
64068
|
actions?: unknown[] | {
|
|
63990
64069
|
data?: Record<string, string> | undefined;
|
|
63991
64070
|
id?: string | undefined;
|
|
@@ -63994,6 +64073,8 @@ export declare const zGetOrganizationWorkflowResponse: z.ZodObject<{
|
|
|
63994
64073
|
config?: Record<string, unknown> | undefined;
|
|
63995
64074
|
integrationId?: string | null | undefined;
|
|
63996
64075
|
}[] | undefined;
|
|
64076
|
+
organizationId?: string | undefined;
|
|
64077
|
+
logicType?: string | undefined;
|
|
63997
64078
|
}[] | null;
|
|
63998
64079
|
detectorIds: string[] | null;
|
|
63999
64080
|
lastTriggered: string | null;
|
|
@@ -64016,8 +64097,6 @@ export declare const zGetOrganizationWorkflowResponse: z.ZodObject<{
|
|
|
64016
64097
|
comparison: number | boolean;
|
|
64017
64098
|
conditionResult: boolean;
|
|
64018
64099
|
}[] | undefined;
|
|
64019
|
-
organizationId?: string | undefined;
|
|
64020
|
-
logicType?: string | undefined;
|
|
64021
64100
|
actions?: unknown[] | {
|
|
64022
64101
|
data?: Record<string, string> | undefined;
|
|
64023
64102
|
id?: string | undefined;
|
|
@@ -64026,6 +64105,8 @@ export declare const zGetOrganizationWorkflowResponse: z.ZodObject<{
|
|
|
64026
64105
|
config?: Record<string, unknown> | undefined;
|
|
64027
64106
|
integrationId?: string | null | undefined;
|
|
64028
64107
|
}[] | undefined;
|
|
64108
|
+
organizationId?: string | undefined;
|
|
64109
|
+
logicType?: string | undefined;
|
|
64029
64110
|
} | null;
|
|
64030
64111
|
actionFilters: {
|
|
64031
64112
|
id?: string | undefined;
|
|
@@ -64035,8 +64116,6 @@ export declare const zGetOrganizationWorkflowResponse: z.ZodObject<{
|
|
|
64035
64116
|
comparison: number | boolean;
|
|
64036
64117
|
conditionResult: boolean;
|
|
64037
64118
|
}[] | undefined;
|
|
64038
|
-
organizationId?: string | undefined;
|
|
64039
|
-
logicType?: string | undefined;
|
|
64040
64119
|
actions?: unknown[] | {
|
|
64041
64120
|
data?: Record<string, string> | undefined;
|
|
64042
64121
|
id?: string | undefined;
|
|
@@ -64045,6 +64124,8 @@ export declare const zGetOrganizationWorkflowResponse: z.ZodObject<{
|
|
|
64045
64124
|
config?: Record<string, unknown> | undefined;
|
|
64046
64125
|
integrationId?: string | null | undefined;
|
|
64047
64126
|
}[] | undefined;
|
|
64127
|
+
organizationId?: string | undefined;
|
|
64128
|
+
logicType?: string | undefined;
|
|
64048
64129
|
}[] | null;
|
|
64049
64130
|
detectorIds: string[] | null;
|
|
64050
64131
|
lastTriggered: string | null;
|
|
@@ -64070,7 +64151,22 @@ export declare const zUpdateOrganizationWorkflowData: z.ZodObject<{
|
|
|
64070
64151
|
id?: number | undefined;
|
|
64071
64152
|
conditions?: unknown[] | undefined;
|
|
64072
64153
|
}>>;
|
|
64073
|
-
action_filters: z.ZodOptional<z.ZodArray<z.
|
|
64154
|
+
action_filters: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
64155
|
+
id: z.ZodOptional<z.ZodNumber>;
|
|
64156
|
+
logic_type: z.ZodEnum<["any", "any-short", "all", "none"]>;
|
|
64157
|
+
conditions: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
64158
|
+
actions: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
|
|
64159
|
+
}, "strip", z.ZodTypeAny, {
|
|
64160
|
+
logic_type: "any" | "any-short" | "all" | "none";
|
|
64161
|
+
actions: Record<string, unknown>[];
|
|
64162
|
+
id?: number | undefined;
|
|
64163
|
+
conditions?: unknown[] | undefined;
|
|
64164
|
+
}, {
|
|
64165
|
+
logic_type: "any" | "any-short" | "all" | "none";
|
|
64166
|
+
actions: Record<string, unknown>[];
|
|
64167
|
+
id?: number | undefined;
|
|
64168
|
+
conditions?: unknown[] | undefined;
|
|
64169
|
+
}>, "many">>;
|
|
64074
64170
|
owner: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
64075
64171
|
}, "strip", z.ZodTypeAny, {
|
|
64076
64172
|
name: string;
|
|
@@ -64085,7 +64181,12 @@ export declare const zUpdateOrganizationWorkflowData: z.ZodObject<{
|
|
|
64085
64181
|
conditions?: unknown[] | undefined;
|
|
64086
64182
|
} | undefined;
|
|
64087
64183
|
detector_ids?: number[] | undefined;
|
|
64088
|
-
action_filters?:
|
|
64184
|
+
action_filters?: {
|
|
64185
|
+
logic_type: "any" | "any-short" | "all" | "none";
|
|
64186
|
+
actions: Record<string, unknown>[];
|
|
64187
|
+
id?: number | undefined;
|
|
64188
|
+
conditions?: unknown[] | undefined;
|
|
64189
|
+
}[] | undefined;
|
|
64089
64190
|
}, {
|
|
64090
64191
|
name: string;
|
|
64091
64192
|
owner?: string | null | undefined;
|
|
@@ -64099,7 +64200,12 @@ export declare const zUpdateOrganizationWorkflowData: z.ZodObject<{
|
|
|
64099
64200
|
conditions?: unknown[] | undefined;
|
|
64100
64201
|
} | undefined;
|
|
64101
64202
|
detector_ids?: number[] | undefined;
|
|
64102
|
-
action_filters?:
|
|
64203
|
+
action_filters?: {
|
|
64204
|
+
logic_type: "any" | "any-short" | "all" | "none";
|
|
64205
|
+
actions: Record<string, unknown>[];
|
|
64206
|
+
id?: number | undefined;
|
|
64207
|
+
conditions?: unknown[] | undefined;
|
|
64208
|
+
}[] | undefined;
|
|
64103
64209
|
}>;
|
|
64104
64210
|
path: z.ZodObject<{
|
|
64105
64211
|
organization_id_or_slug: z.ZodString;
|
|
@@ -64126,7 +64232,12 @@ export declare const zUpdateOrganizationWorkflowData: z.ZodObject<{
|
|
|
64126
64232
|
conditions?: unknown[] | undefined;
|
|
64127
64233
|
} | undefined;
|
|
64128
64234
|
detector_ids?: number[] | undefined;
|
|
64129
|
-
action_filters?:
|
|
64235
|
+
action_filters?: {
|
|
64236
|
+
logic_type: "any" | "any-short" | "all" | "none";
|
|
64237
|
+
actions: Record<string, unknown>[];
|
|
64238
|
+
id?: number | undefined;
|
|
64239
|
+
conditions?: unknown[] | undefined;
|
|
64240
|
+
}[] | undefined;
|
|
64130
64241
|
};
|
|
64131
64242
|
path: {
|
|
64132
64243
|
organization_id_or_slug: string;
|
|
@@ -64147,7 +64258,12 @@ export declare const zUpdateOrganizationWorkflowData: z.ZodObject<{
|
|
|
64147
64258
|
conditions?: unknown[] | undefined;
|
|
64148
64259
|
} | undefined;
|
|
64149
64260
|
detector_ids?: number[] | undefined;
|
|
64150
|
-
action_filters?:
|
|
64261
|
+
action_filters?: {
|
|
64262
|
+
logic_type: "any" | "any-short" | "all" | "none";
|
|
64263
|
+
actions: Record<string, unknown>[];
|
|
64264
|
+
id?: number | undefined;
|
|
64265
|
+
conditions?: unknown[] | undefined;
|
|
64266
|
+
}[] | undefined;
|
|
64151
64267
|
};
|
|
64152
64268
|
path: {
|
|
64153
64269
|
organization_id_or_slug: string;
|
|
@@ -64212,8 +64328,6 @@ export declare const zUpdateOrganizationWorkflowResponse: z.ZodObject<{
|
|
|
64212
64328
|
comparison: number | boolean;
|
|
64213
64329
|
conditionResult: boolean;
|
|
64214
64330
|
}[] | undefined;
|
|
64215
|
-
organizationId?: string | undefined;
|
|
64216
|
-
logicType?: string | undefined;
|
|
64217
64331
|
actions?: unknown[] | {
|
|
64218
64332
|
data?: Record<string, string> | undefined;
|
|
64219
64333
|
id?: string | undefined;
|
|
@@ -64222,6 +64336,8 @@ export declare const zUpdateOrganizationWorkflowResponse: z.ZodObject<{
|
|
|
64222
64336
|
config?: Record<string, unknown> | undefined;
|
|
64223
64337
|
integrationId?: string | null | undefined;
|
|
64224
64338
|
}[] | undefined;
|
|
64339
|
+
organizationId?: string | undefined;
|
|
64340
|
+
logicType?: string | undefined;
|
|
64225
64341
|
}, {
|
|
64226
64342
|
id?: string | undefined;
|
|
64227
64343
|
conditions?: unknown[] | {
|
|
@@ -64230,8 +64346,6 @@ export declare const zUpdateOrganizationWorkflowResponse: z.ZodObject<{
|
|
|
64230
64346
|
comparison: number | boolean;
|
|
64231
64347
|
conditionResult: boolean;
|
|
64232
64348
|
}[] | undefined;
|
|
64233
|
-
organizationId?: string | undefined;
|
|
64234
|
-
logicType?: string | undefined;
|
|
64235
64349
|
actions?: unknown[] | {
|
|
64236
64350
|
data?: Record<string, string> | undefined;
|
|
64237
64351
|
id?: string | undefined;
|
|
@@ -64240,6 +64354,8 @@ export declare const zUpdateOrganizationWorkflowResponse: z.ZodObject<{
|
|
|
64240
64354
|
config?: Record<string, unknown> | undefined;
|
|
64241
64355
|
integrationId?: string | null | undefined;
|
|
64242
64356
|
}[] | undefined;
|
|
64357
|
+
organizationId?: string | undefined;
|
|
64358
|
+
logicType?: string | undefined;
|
|
64243
64359
|
}>, z.ZodNull]>;
|
|
64244
64360
|
actionFilters: z.ZodUnion<[z.ZodArray<z.ZodObject<{
|
|
64245
64361
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -64291,8 +64407,6 @@ export declare const zUpdateOrganizationWorkflowResponse: z.ZodObject<{
|
|
|
64291
64407
|
comparison: number | boolean;
|
|
64292
64408
|
conditionResult: boolean;
|
|
64293
64409
|
}[] | undefined;
|
|
64294
|
-
organizationId?: string | undefined;
|
|
64295
|
-
logicType?: string | undefined;
|
|
64296
64410
|
actions?: unknown[] | {
|
|
64297
64411
|
data?: Record<string, string> | undefined;
|
|
64298
64412
|
id?: string | undefined;
|
|
@@ -64301,6 +64415,8 @@ export declare const zUpdateOrganizationWorkflowResponse: z.ZodObject<{
|
|
|
64301
64415
|
config?: Record<string, unknown> | undefined;
|
|
64302
64416
|
integrationId?: string | null | undefined;
|
|
64303
64417
|
}[] | undefined;
|
|
64418
|
+
organizationId?: string | undefined;
|
|
64419
|
+
logicType?: string | undefined;
|
|
64304
64420
|
}, {
|
|
64305
64421
|
id?: string | undefined;
|
|
64306
64422
|
conditions?: unknown[] | {
|
|
@@ -64309,8 +64425,6 @@ export declare const zUpdateOrganizationWorkflowResponse: z.ZodObject<{
|
|
|
64309
64425
|
comparison: number | boolean;
|
|
64310
64426
|
conditionResult: boolean;
|
|
64311
64427
|
}[] | undefined;
|
|
64312
|
-
organizationId?: string | undefined;
|
|
64313
|
-
logicType?: string | undefined;
|
|
64314
64428
|
actions?: unknown[] | {
|
|
64315
64429
|
data?: Record<string, string> | undefined;
|
|
64316
64430
|
id?: string | undefined;
|
|
@@ -64319,6 +64433,8 @@ export declare const zUpdateOrganizationWorkflowResponse: z.ZodObject<{
|
|
|
64319
64433
|
config?: Record<string, unknown> | undefined;
|
|
64320
64434
|
integrationId?: string | null | undefined;
|
|
64321
64435
|
}[] | undefined;
|
|
64436
|
+
organizationId?: string | undefined;
|
|
64437
|
+
logicType?: string | undefined;
|
|
64322
64438
|
}>, "many">, z.ZodNull]>;
|
|
64323
64439
|
environment: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
64324
64440
|
config: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
@@ -64345,8 +64461,6 @@ export declare const zUpdateOrganizationWorkflowResponse: z.ZodObject<{
|
|
|
64345
64461
|
comparison: number | boolean;
|
|
64346
64462
|
conditionResult: boolean;
|
|
64347
64463
|
}[] | undefined;
|
|
64348
|
-
organizationId?: string | undefined;
|
|
64349
|
-
logicType?: string | undefined;
|
|
64350
64464
|
actions?: unknown[] | {
|
|
64351
64465
|
data?: Record<string, string> | undefined;
|
|
64352
64466
|
id?: string | undefined;
|
|
@@ -64355,6 +64469,8 @@ export declare const zUpdateOrganizationWorkflowResponse: z.ZodObject<{
|
|
|
64355
64469
|
config?: Record<string, unknown> | undefined;
|
|
64356
64470
|
integrationId?: string | null | undefined;
|
|
64357
64471
|
}[] | undefined;
|
|
64472
|
+
organizationId?: string | undefined;
|
|
64473
|
+
logicType?: string | undefined;
|
|
64358
64474
|
} | null;
|
|
64359
64475
|
actionFilters: {
|
|
64360
64476
|
id?: string | undefined;
|
|
@@ -64364,8 +64480,6 @@ export declare const zUpdateOrganizationWorkflowResponse: z.ZodObject<{
|
|
|
64364
64480
|
comparison: number | boolean;
|
|
64365
64481
|
conditionResult: boolean;
|
|
64366
64482
|
}[] | undefined;
|
|
64367
|
-
organizationId?: string | undefined;
|
|
64368
|
-
logicType?: string | undefined;
|
|
64369
64483
|
actions?: unknown[] | {
|
|
64370
64484
|
data?: Record<string, string> | undefined;
|
|
64371
64485
|
id?: string | undefined;
|
|
@@ -64374,6 +64488,8 @@ export declare const zUpdateOrganizationWorkflowResponse: z.ZodObject<{
|
|
|
64374
64488
|
config?: Record<string, unknown> | undefined;
|
|
64375
64489
|
integrationId?: string | null | undefined;
|
|
64376
64490
|
}[] | undefined;
|
|
64491
|
+
organizationId?: string | undefined;
|
|
64492
|
+
logicType?: string | undefined;
|
|
64377
64493
|
}[] | null;
|
|
64378
64494
|
detectorIds: string[] | null;
|
|
64379
64495
|
lastTriggered: string | null;
|
|
@@ -64396,8 +64512,6 @@ export declare const zUpdateOrganizationWorkflowResponse: z.ZodObject<{
|
|
|
64396
64512
|
comparison: number | boolean;
|
|
64397
64513
|
conditionResult: boolean;
|
|
64398
64514
|
}[] | undefined;
|
|
64399
|
-
organizationId?: string | undefined;
|
|
64400
|
-
logicType?: string | undefined;
|
|
64401
64515
|
actions?: unknown[] | {
|
|
64402
64516
|
data?: Record<string, string> | undefined;
|
|
64403
64517
|
id?: string | undefined;
|
|
@@ -64406,6 +64520,8 @@ export declare const zUpdateOrganizationWorkflowResponse: z.ZodObject<{
|
|
|
64406
64520
|
config?: Record<string, unknown> | undefined;
|
|
64407
64521
|
integrationId?: string | null | undefined;
|
|
64408
64522
|
}[] | undefined;
|
|
64523
|
+
organizationId?: string | undefined;
|
|
64524
|
+
logicType?: string | undefined;
|
|
64409
64525
|
} | null;
|
|
64410
64526
|
actionFilters: {
|
|
64411
64527
|
id?: string | undefined;
|
|
@@ -64415,8 +64531,6 @@ export declare const zUpdateOrganizationWorkflowResponse: z.ZodObject<{
|
|
|
64415
64531
|
comparison: number | boolean;
|
|
64416
64532
|
conditionResult: boolean;
|
|
64417
64533
|
}[] | undefined;
|
|
64418
|
-
organizationId?: string | undefined;
|
|
64419
|
-
logicType?: string | undefined;
|
|
64420
64534
|
actions?: unknown[] | {
|
|
64421
64535
|
data?: Record<string, string> | undefined;
|
|
64422
64536
|
id?: string | undefined;
|
|
@@ -64425,6 +64539,8 @@ export declare const zUpdateOrganizationWorkflowResponse: z.ZodObject<{
|
|
|
64425
64539
|
config?: Record<string, unknown> | undefined;
|
|
64426
64540
|
integrationId?: string | null | undefined;
|
|
64427
64541
|
}[] | undefined;
|
|
64542
|
+
organizationId?: string | undefined;
|
|
64543
|
+
logicType?: string | undefined;
|
|
64428
64544
|
}[] | null;
|
|
64429
64545
|
detectorIds: string[] | null;
|
|
64430
64546
|
lastTriggered: string | null;
|