@pear-protocol/types 0.0.1

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.
Files changed (131) hide show
  1. package/dist/auth/entities.d.ts +9 -0
  2. package/dist/auth/entities.js +8 -0
  3. package/dist/auth/index.d.ts +3 -0
  4. package/dist/auth/index.js +3 -0
  5. package/dist/auth/payloads.d.ts +50 -0
  6. package/dist/auth/payloads.js +39 -0
  7. package/dist/auth/response.d.ts +55 -0
  8. package/dist/auth/response.js +21 -0
  9. package/dist/bundle.d.ts +17 -0
  10. package/dist/bundle.js +17 -0
  11. package/dist/common/array.d.ts +10 -0
  12. package/dist/common/array.js +10 -0
  13. package/dist/common/index.d.ts +3 -0
  14. package/dist/common/index.js +3 -0
  15. package/dist/common/refinement.d.ts +20 -0
  16. package/dist/common/refinement.js +60 -0
  17. package/dist/common/request.d.ts +11 -0
  18. package/dist/common/request.js +24 -0
  19. package/dist/common/response.d.ts +12 -0
  20. package/dist/common/response.js +28 -0
  21. package/dist/common/schema.d.ts +8 -0
  22. package/dist/common/schema.js +10 -0
  23. package/dist/common/trade-legs.d.ts +34 -0
  24. package/dist/common/trade-legs.js +30 -0
  25. package/dist/connector/index.d.ts +8 -0
  26. package/dist/connector/index.js +5 -0
  27. package/dist/execution/entities.d.ts +741 -0
  28. package/dist/execution/entities.js +125 -0
  29. package/dist/execution/index.d.ts +3 -0
  30. package/dist/execution/index.js +3 -0
  31. package/dist/execution/queries.d.ts +20 -0
  32. package/dist/execution/queries.js +14 -0
  33. package/dist/execution/responses.d.ts +218 -0
  34. package/dist/execution/responses.js +9 -0
  35. package/dist/fill/entities.d.ts +25 -0
  36. package/dist/fill/entities.js +61 -0
  37. package/dist/fill/index.d.ts +3 -0
  38. package/dist/fill/index.js +3 -0
  39. package/dist/fill/queries.d.ts +13 -0
  40. package/dist/fill/queries.js +11 -0
  41. package/dist/fill/responses.d.ts +55 -0
  42. package/dist/fill/responses.js +12 -0
  43. package/dist/funding/entities.d.ts +11 -0
  44. package/dist/funding/entities.js +16 -0
  45. package/dist/funding/index.d.ts +3 -0
  46. package/dist/funding/index.js +3 -0
  47. package/dist/funding/queries.d.ts +10 -0
  48. package/dist/funding/queries.js +8 -0
  49. package/dist/funding/responses.d.ts +8 -0
  50. package/dist/funding/responses.js +11 -0
  51. package/dist/index.d.ts +2 -0
  52. package/dist/index.js +3 -0
  53. package/dist/instrument/entities.d.ts +43 -0
  54. package/dist/instrument/entities.js +48 -0
  55. package/dist/instrument/index.d.ts +3 -0
  56. package/dist/instrument/index.js +3 -0
  57. package/dist/instrument/queries.d.ts +10 -0
  58. package/dist/instrument/queries.js +8 -0
  59. package/dist/instrument/responses.d.ts +37 -0
  60. package/dist/instrument/responses.js +11 -0
  61. package/dist/instrument-precision/index.d.ts +18 -0
  62. package/dist/instrument-precision/index.js +51 -0
  63. package/dist/misc/index.d.ts +3 -0
  64. package/dist/misc/index.js +1 -0
  65. package/dist/order/entities.d.ts +73 -0
  66. package/dist/order/entities.js +73 -0
  67. package/dist/order/index.d.ts +1 -0
  68. package/dist/order/index.js +1 -0
  69. package/dist/position/entities.d.ts +53 -0
  70. package/dist/position/entities.js +55 -0
  71. package/dist/position/index.d.ts +3 -0
  72. package/dist/position/index.js +3 -0
  73. package/dist/position/queries.d.ts +16 -0
  74. package/dist/position/queries.js +28 -0
  75. package/dist/position/responses.d.ts +28 -0
  76. package/dist/position/responses.js +8 -0
  77. package/dist/price/entities.d.ts +8 -0
  78. package/dist/price/entities.js +7 -0
  79. package/dist/price/index.d.ts +3 -0
  80. package/dist/price/index.js +3 -0
  81. package/dist/price/queries.d.ts +10 -0
  82. package/dist/price/queries.js +8 -0
  83. package/dist/price/responses.d.ts +6 -0
  84. package/dist/price/responses.js +15 -0
  85. package/dist/schedule/entities.d.ts +380 -0
  86. package/dist/schedule/entities.js +159 -0
  87. package/dist/schedule/index.d.ts +4 -0
  88. package/dist/schedule/index.js +4 -0
  89. package/dist/schedule/payloads.d.ts +72 -0
  90. package/dist/schedule/payloads.js +102 -0
  91. package/dist/schedule/queries.d.ts +18 -0
  92. package/dist/schedule/queries.js +12 -0
  93. package/dist/schedule/responses.d.ts +279 -0
  94. package/dist/schedule/responses.js +10 -0
  95. package/dist/trade/index.d.ts +2 -0
  96. package/dist/trade/index.js +2 -0
  97. package/dist/trade/payloads.d.ts +217 -0
  98. package/dist/trade/payloads.js +35 -0
  99. package/dist/trade/responses.d.ts +861 -0
  100. package/dist/trade/responses.js +9 -0
  101. package/dist/trade-accounts/entities.d.ts +50 -0
  102. package/dist/trade-accounts/entities.js +18 -0
  103. package/dist/trade-accounts/index.d.ts +3 -0
  104. package/dist/trade-accounts/index.js +3 -0
  105. package/dist/trade-accounts/payloads.d.ts +137 -0
  106. package/dist/trade-accounts/payloads.js +84 -0
  107. package/dist/trade-accounts/response.d.ts +65 -0
  108. package/dist/trade-accounts/response.js +41 -0
  109. package/dist/trigger/entities/conditions.d.ts +407 -0
  110. package/dist/trigger/entities/conditions.js +239 -0
  111. package/dist/trigger/entities/index.d.ts +1549 -0
  112. package/dist/trigger/entities/index.js +123 -0
  113. package/dist/trigger/index.d.ts +6 -0
  114. package/dist/trigger/index.js +6 -0
  115. package/dist/trigger/payloads/conditions.d.ts +340 -0
  116. package/dist/trigger/payloads/conditions.js +109 -0
  117. package/dist/trigger/payloads/index.d.ts +470 -0
  118. package/dist/trigger/payloads/index.js +47 -0
  119. package/dist/trigger/queries.d.ts +18 -0
  120. package/dist/trigger/queries.js +12 -0
  121. package/dist/trigger/responses.d.ts +1001 -0
  122. package/dist/trigger/responses.js +10 -0
  123. package/dist/users/entities.d.ts +16 -0
  124. package/dist/users/entities.js +14 -0
  125. package/dist/users/index.d.ts +3 -0
  126. package/dist/users/index.js +3 -0
  127. package/dist/users/payloads.d.ts +5 -0
  128. package/dist/users/payloads.js +7 -0
  129. package/dist/users/response.d.ts +23 -0
  130. package/dist/users/response.js +12 -0
  131. package/package.json +35 -0
@@ -0,0 +1,1001 @@
1
+ import { z } from 'zod';
2
+ export declare const TriggerListResponse: z.ZodObject<{
3
+ limit: z.ZodNumber;
4
+ nextCursor: z.ZodUnion<[z.ZodString, z.ZodUndefined]>;
5
+ triggers: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodDiscriminatedUnion<[z.ZodObject<{
6
+ id: z.ZodUUID;
7
+ tradeAccountId: z.ZodUUID;
8
+ connector: z.ZodEnum<{
9
+ hyperliquid: "hyperliquid";
10
+ binanceusdm: "binanceusdm";
11
+ bybit: "bybit";
12
+ okx: "okx";
13
+ }>;
14
+ status: z.ZodEnum<{
15
+ CANCELLED: "CANCELLED";
16
+ ACTIVE: "ACTIVE";
17
+ TRIGGERED: "TRIGGERED";
18
+ }>;
19
+ triggeredAt: z.ZodOptional<z.ZodString>;
20
+ cancelledAt: z.ZodOptional<z.ZodString>;
21
+ cancelledReason: z.ZodOptional<z.ZodEnum<{
22
+ USER: "USER";
23
+ POSITION_CLOSED: "POSITION_CLOSED";
24
+ SYSTEM: "SYSTEM";
25
+ }>>;
26
+ fills: z.ZodOptional<z.ZodArray<z.ZodObject<{
27
+ id: z.ZodUUID;
28
+ cloid: z.ZodOptional<z.ZodUUID>;
29
+ tradeAccountId: z.ZodUUID;
30
+ symbol: z.ZodString;
31
+ positionId: z.ZodUUID;
32
+ connector: z.ZodEnum<{
33
+ hyperliquid: "hyperliquid";
34
+ binanceusdm: "binanceusdm";
35
+ bybit: "bybit";
36
+ okx: "okx";
37
+ }>;
38
+ side: z.ZodEnum<{
39
+ BUY: "BUY";
40
+ SELL: "SELL";
41
+ }>;
42
+ reduceOnly: z.ZodBoolean;
43
+ quantity: z.ZodString;
44
+ price: z.ZodString;
45
+ usd: z.ZodString;
46
+ fee: z.ZodOptional<z.ZodString>;
47
+ timestamp: z.ZodString;
48
+ }, z.core.$strip>>>;
49
+ createdAt: z.ZodString;
50
+ updatedAt: z.ZodString;
51
+ intent: z.ZodLiteral<"OPEN">;
52
+ type: z.ZodLiteral<"MARKET">;
53
+ condition: z.ZodDiscriminatedUnion<[z.ZodObject<{
54
+ type: z.ZodLiteral<"ratio_v1">;
55
+ data: z.ZodObject<{
56
+ priceSource: z.ZodEnum<{
57
+ mid: "mid";
58
+ mark: "mark";
59
+ }>;
60
+ symbol_a: z.ZodString;
61
+ symbol_b: z.ZodString;
62
+ direction: z.ZodEnum<{
63
+ ABOVE: "ABOVE";
64
+ BELOW: "BELOW";
65
+ }>;
66
+ threshold: z.ZodNumber;
67
+ }, z.core.$strip>;
68
+ }, z.core.$strip>, z.ZodObject<{
69
+ type: z.ZodLiteral<"price_v1">;
70
+ data: z.ZodObject<{
71
+ priceSource: z.ZodEnum<{
72
+ mid: "mid";
73
+ mark: "mark";
74
+ }>;
75
+ symbol: z.ZodString;
76
+ direction: z.ZodEnum<{
77
+ ABOVE: "ABOVE";
78
+ BELOW: "BELOW";
79
+ }>;
80
+ threshold: z.ZodNumber;
81
+ }, z.core.$strip>;
82
+ }, z.core.$strip>, z.ZodObject<{
83
+ type: z.ZodLiteral<"index_v1">;
84
+ data: z.ZodObject<{
85
+ priceSource: z.ZodEnum<{
86
+ mid: "mid";
87
+ mark: "mark";
88
+ }>;
89
+ basket: z.ZodArray<z.ZodObject<{
90
+ symbol: z.ZodString;
91
+ weight: z.ZodNumber;
92
+ }, z.core.$strip>>;
93
+ direction: z.ZodEnum<{
94
+ ABOVE: "ABOVE";
95
+ BELOW: "BELOW";
96
+ }>;
97
+ threshold: z.ZodNumber;
98
+ }, z.core.$strip>;
99
+ }, z.core.$strip>, z.ZodObject<{
100
+ type: z.ZodLiteral<"weighted_ratio_v1">;
101
+ data: z.ZodObject<{
102
+ priceSource: z.ZodEnum<{
103
+ mid: "mid";
104
+ mark: "mark";
105
+ }>;
106
+ basket: z.ZodArray<z.ZodObject<{
107
+ symbol: z.ZodString;
108
+ side: z.ZodEnum<{
109
+ BUY: "BUY";
110
+ SELL: "SELL";
111
+ }>;
112
+ weight: z.ZodNumber;
113
+ }, z.core.$strip>>;
114
+ direction: z.ZodEnum<{
115
+ ABOVE: "ABOVE";
116
+ BELOW: "BELOW";
117
+ }>;
118
+ threshold: z.ZodNumber;
119
+ }, z.core.$strip>;
120
+ }, z.core.$strip>], "type">;
121
+ context: z.ZodObject<{
122
+ type: z.ZodLiteral<"MARKET">;
123
+ legs: z.ZodTuple<[z.ZodObject<{
124
+ symbol: z.ZodString;
125
+ side: z.ZodEnum<{
126
+ BUY: "BUY";
127
+ SELL: "SELL";
128
+ }>;
129
+ mode: z.ZodEnum<{
130
+ QUANTITY: "QUANTITY";
131
+ USD: "USD";
132
+ }>;
133
+ amount: z.ZodString;
134
+ }, z.core.$strip>], z.ZodObject<{
135
+ symbol: z.ZodString;
136
+ side: z.ZodEnum<{
137
+ BUY: "BUY";
138
+ SELL: "SELL";
139
+ }>;
140
+ mode: z.ZodEnum<{
141
+ QUANTITY: "QUANTITY";
142
+ USD: "USD";
143
+ }>;
144
+ amount: z.ZodString;
145
+ }, z.core.$strip>>;
146
+ }, z.core.$strip>;
147
+ }, z.core.$strip>, z.ZodObject<{
148
+ id: z.ZodUUID;
149
+ tradeAccountId: z.ZodUUID;
150
+ connector: z.ZodEnum<{
151
+ hyperliquid: "hyperliquid";
152
+ binanceusdm: "binanceusdm";
153
+ bybit: "bybit";
154
+ okx: "okx";
155
+ }>;
156
+ status: z.ZodEnum<{
157
+ CANCELLED: "CANCELLED";
158
+ ACTIVE: "ACTIVE";
159
+ TRIGGERED: "TRIGGERED";
160
+ }>;
161
+ triggeredAt: z.ZodOptional<z.ZodString>;
162
+ cancelledAt: z.ZodOptional<z.ZodString>;
163
+ cancelledReason: z.ZodOptional<z.ZodEnum<{
164
+ USER: "USER";
165
+ POSITION_CLOSED: "POSITION_CLOSED";
166
+ SYSTEM: "SYSTEM";
167
+ }>>;
168
+ fills: z.ZodOptional<z.ZodArray<z.ZodObject<{
169
+ id: z.ZodUUID;
170
+ cloid: z.ZodOptional<z.ZodUUID>;
171
+ tradeAccountId: z.ZodUUID;
172
+ symbol: z.ZodString;
173
+ positionId: z.ZodUUID;
174
+ connector: z.ZodEnum<{
175
+ hyperliquid: "hyperliquid";
176
+ binanceusdm: "binanceusdm";
177
+ bybit: "bybit";
178
+ okx: "okx";
179
+ }>;
180
+ side: z.ZodEnum<{
181
+ BUY: "BUY";
182
+ SELL: "SELL";
183
+ }>;
184
+ reduceOnly: z.ZodBoolean;
185
+ quantity: z.ZodString;
186
+ price: z.ZodString;
187
+ usd: z.ZodString;
188
+ fee: z.ZodOptional<z.ZodString>;
189
+ timestamp: z.ZodString;
190
+ }, z.core.$strip>>>;
191
+ createdAt: z.ZodString;
192
+ updatedAt: z.ZodString;
193
+ intent: z.ZodLiteral<"ADJUST">;
194
+ type: z.ZodLiteral<"MARKET">;
195
+ condition: z.ZodDiscriminatedUnion<[z.ZodObject<{
196
+ type: z.ZodLiteral<"ratio_v1">;
197
+ data: z.ZodObject<{
198
+ priceSource: z.ZodEnum<{
199
+ mid: "mid";
200
+ mark: "mark";
201
+ }>;
202
+ symbol_a: z.ZodString;
203
+ symbol_b: z.ZodString;
204
+ direction: z.ZodEnum<{
205
+ ABOVE: "ABOVE";
206
+ BELOW: "BELOW";
207
+ }>;
208
+ threshold: z.ZodNumber;
209
+ }, z.core.$strip>;
210
+ }, z.core.$strip>, z.ZodObject<{
211
+ type: z.ZodLiteral<"price_v1">;
212
+ data: z.ZodObject<{
213
+ priceSource: z.ZodEnum<{
214
+ mid: "mid";
215
+ mark: "mark";
216
+ }>;
217
+ symbol: z.ZodString;
218
+ direction: z.ZodEnum<{
219
+ ABOVE: "ABOVE";
220
+ BELOW: "BELOW";
221
+ }>;
222
+ threshold: z.ZodNumber;
223
+ }, z.core.$strip>;
224
+ }, z.core.$strip>, z.ZodObject<{
225
+ type: z.ZodLiteral<"index_v1">;
226
+ data: z.ZodObject<{
227
+ priceSource: z.ZodEnum<{
228
+ mid: "mid";
229
+ mark: "mark";
230
+ }>;
231
+ basket: z.ZodArray<z.ZodObject<{
232
+ symbol: z.ZodString;
233
+ weight: z.ZodNumber;
234
+ }, z.core.$strip>>;
235
+ direction: z.ZodEnum<{
236
+ ABOVE: "ABOVE";
237
+ BELOW: "BELOW";
238
+ }>;
239
+ threshold: z.ZodNumber;
240
+ }, z.core.$strip>;
241
+ }, z.core.$strip>, z.ZodObject<{
242
+ type: z.ZodLiteral<"weighted_ratio_v1">;
243
+ data: z.ZodObject<{
244
+ priceSource: z.ZodEnum<{
245
+ mid: "mid";
246
+ mark: "mark";
247
+ }>;
248
+ basket: z.ZodArray<z.ZodObject<{
249
+ symbol: z.ZodString;
250
+ side: z.ZodEnum<{
251
+ BUY: "BUY";
252
+ SELL: "SELL";
253
+ }>;
254
+ weight: z.ZodNumber;
255
+ }, z.core.$strip>>;
256
+ direction: z.ZodEnum<{
257
+ ABOVE: "ABOVE";
258
+ BELOW: "BELOW";
259
+ }>;
260
+ threshold: z.ZodNumber;
261
+ }, z.core.$strip>;
262
+ }, z.core.$strip>, z.ZodObject<{
263
+ type: z.ZodLiteral<"position_value_v1">;
264
+ data: z.ZodObject<{
265
+ priceSource: z.ZodEnum<{
266
+ mid: "mid";
267
+ mark: "mark";
268
+ }>;
269
+ direction: z.ZodEnum<{
270
+ ABOVE: "ABOVE";
271
+ BELOW: "BELOW";
272
+ }>;
273
+ threshold: z.ZodNumber;
274
+ }, z.core.$strip>;
275
+ }, z.core.$strip>, z.ZodObject<{
276
+ type: z.ZodLiteral<"position_upnl_value_v1">;
277
+ data: z.ZodObject<{
278
+ priceSource: z.ZodEnum<{
279
+ mid: "mid";
280
+ mark: "mark";
281
+ }>;
282
+ direction: z.ZodEnum<{
283
+ ABOVE: "ABOVE";
284
+ BELOW: "BELOW";
285
+ }>;
286
+ threshold: z.ZodNumber;
287
+ }, z.core.$strip>;
288
+ }, z.core.$strip>, z.ZodObject<{
289
+ type: z.ZodLiteral<"position_upnl_percentage_v1">;
290
+ data: z.ZodObject<{
291
+ priceSource: z.ZodEnum<{
292
+ mid: "mid";
293
+ mark: "mark";
294
+ }>;
295
+ direction: z.ZodEnum<{
296
+ ABOVE: "ABOVE";
297
+ BELOW: "BELOW";
298
+ }>;
299
+ threshold_bps: z.ZodNumber;
300
+ }, z.core.$strip>;
301
+ }, z.core.$strip>], "type">;
302
+ context: z.ZodObject<{
303
+ type: z.ZodLiteral<"MARKET">;
304
+ position: z.ZodObject<{
305
+ id: z.ZodUUID;
306
+ initialExposure: z.ZodRecord<z.ZodString, z.ZodString>;
307
+ }, z.core.$strip>;
308
+ legs: z.ZodTuple<[z.ZodObject<{
309
+ symbol: z.ZodString;
310
+ side: z.ZodEnum<{
311
+ BUY: "BUY";
312
+ SELL: "SELL";
313
+ }>;
314
+ mode: z.ZodEnum<{
315
+ QUANTITY: "QUANTITY";
316
+ USD: "USD";
317
+ }>;
318
+ amount: z.ZodString;
319
+ reduceOnly: z.ZodBoolean;
320
+ }, z.core.$strip>], z.ZodObject<{
321
+ symbol: z.ZodString;
322
+ side: z.ZodEnum<{
323
+ BUY: "BUY";
324
+ SELL: "SELL";
325
+ }>;
326
+ mode: z.ZodEnum<{
327
+ QUANTITY: "QUANTITY";
328
+ USD: "USD";
329
+ }>;
330
+ amount: z.ZodString;
331
+ reduceOnly: z.ZodBoolean;
332
+ }, z.core.$strip>>;
333
+ }, z.core.$strip>;
334
+ }, z.core.$strip>, z.ZodObject<{
335
+ id: z.ZodUUID;
336
+ tradeAccountId: z.ZodUUID;
337
+ connector: z.ZodEnum<{
338
+ hyperliquid: "hyperliquid";
339
+ binanceusdm: "binanceusdm";
340
+ bybit: "bybit";
341
+ okx: "okx";
342
+ }>;
343
+ status: z.ZodEnum<{
344
+ CANCELLED: "CANCELLED";
345
+ ACTIVE: "ACTIVE";
346
+ TRIGGERED: "TRIGGERED";
347
+ }>;
348
+ triggeredAt: z.ZodOptional<z.ZodString>;
349
+ cancelledAt: z.ZodOptional<z.ZodString>;
350
+ cancelledReason: z.ZodOptional<z.ZodEnum<{
351
+ USER: "USER";
352
+ POSITION_CLOSED: "POSITION_CLOSED";
353
+ SYSTEM: "SYSTEM";
354
+ }>>;
355
+ fills: z.ZodOptional<z.ZodArray<z.ZodObject<{
356
+ id: z.ZodUUID;
357
+ cloid: z.ZodOptional<z.ZodUUID>;
358
+ tradeAccountId: z.ZodUUID;
359
+ symbol: z.ZodString;
360
+ positionId: z.ZodUUID;
361
+ connector: z.ZodEnum<{
362
+ hyperliquid: "hyperliquid";
363
+ binanceusdm: "binanceusdm";
364
+ bybit: "bybit";
365
+ okx: "okx";
366
+ }>;
367
+ side: z.ZodEnum<{
368
+ BUY: "BUY";
369
+ SELL: "SELL";
370
+ }>;
371
+ reduceOnly: z.ZodBoolean;
372
+ quantity: z.ZodString;
373
+ price: z.ZodString;
374
+ usd: z.ZodString;
375
+ fee: z.ZodOptional<z.ZodString>;
376
+ timestamp: z.ZodString;
377
+ }, z.core.$strip>>>;
378
+ createdAt: z.ZodString;
379
+ updatedAt: z.ZodString;
380
+ intent: z.ZodLiteral<"CLOSE">;
381
+ type: z.ZodLiteral<"MARKET">;
382
+ condition: z.ZodDiscriminatedUnion<[z.ZodObject<{
383
+ type: z.ZodLiteral<"ratio_v1">;
384
+ data: z.ZodObject<{
385
+ priceSource: z.ZodEnum<{
386
+ mid: "mid";
387
+ mark: "mark";
388
+ }>;
389
+ symbol_a: z.ZodString;
390
+ symbol_b: z.ZodString;
391
+ direction: z.ZodEnum<{
392
+ ABOVE: "ABOVE";
393
+ BELOW: "BELOW";
394
+ }>;
395
+ threshold: z.ZodNumber;
396
+ }, z.core.$strip>;
397
+ }, z.core.$strip>, z.ZodObject<{
398
+ type: z.ZodLiteral<"price_v1">;
399
+ data: z.ZodObject<{
400
+ priceSource: z.ZodEnum<{
401
+ mid: "mid";
402
+ mark: "mark";
403
+ }>;
404
+ symbol: z.ZodString;
405
+ direction: z.ZodEnum<{
406
+ ABOVE: "ABOVE";
407
+ BELOW: "BELOW";
408
+ }>;
409
+ threshold: z.ZodNumber;
410
+ }, z.core.$strip>;
411
+ }, z.core.$strip>, z.ZodObject<{
412
+ type: z.ZodLiteral<"index_v1">;
413
+ data: z.ZodObject<{
414
+ priceSource: z.ZodEnum<{
415
+ mid: "mid";
416
+ mark: "mark";
417
+ }>;
418
+ basket: z.ZodArray<z.ZodObject<{
419
+ symbol: z.ZodString;
420
+ weight: z.ZodNumber;
421
+ }, z.core.$strip>>;
422
+ direction: z.ZodEnum<{
423
+ ABOVE: "ABOVE";
424
+ BELOW: "BELOW";
425
+ }>;
426
+ threshold: z.ZodNumber;
427
+ }, z.core.$strip>;
428
+ }, z.core.$strip>, z.ZodObject<{
429
+ type: z.ZodLiteral<"weighted_ratio_v1">;
430
+ data: z.ZodObject<{
431
+ priceSource: z.ZodEnum<{
432
+ mid: "mid";
433
+ mark: "mark";
434
+ }>;
435
+ basket: z.ZodArray<z.ZodObject<{
436
+ symbol: z.ZodString;
437
+ side: z.ZodEnum<{
438
+ BUY: "BUY";
439
+ SELL: "SELL";
440
+ }>;
441
+ weight: z.ZodNumber;
442
+ }, z.core.$strip>>;
443
+ direction: z.ZodEnum<{
444
+ ABOVE: "ABOVE";
445
+ BELOW: "BELOW";
446
+ }>;
447
+ threshold: z.ZodNumber;
448
+ }, z.core.$strip>;
449
+ }, z.core.$strip>, z.ZodObject<{
450
+ type: z.ZodLiteral<"position_value_v1">;
451
+ data: z.ZodObject<{
452
+ priceSource: z.ZodEnum<{
453
+ mid: "mid";
454
+ mark: "mark";
455
+ }>;
456
+ direction: z.ZodEnum<{
457
+ ABOVE: "ABOVE";
458
+ BELOW: "BELOW";
459
+ }>;
460
+ threshold: z.ZodNumber;
461
+ }, z.core.$strip>;
462
+ }, z.core.$strip>, z.ZodObject<{
463
+ type: z.ZodLiteral<"position_upnl_value_v1">;
464
+ data: z.ZodObject<{
465
+ priceSource: z.ZodEnum<{
466
+ mid: "mid";
467
+ mark: "mark";
468
+ }>;
469
+ direction: z.ZodEnum<{
470
+ ABOVE: "ABOVE";
471
+ BELOW: "BELOW";
472
+ }>;
473
+ threshold: z.ZodNumber;
474
+ }, z.core.$strip>;
475
+ }, z.core.$strip>, z.ZodObject<{
476
+ type: z.ZodLiteral<"position_upnl_percentage_v1">;
477
+ data: z.ZodObject<{
478
+ priceSource: z.ZodEnum<{
479
+ mid: "mid";
480
+ mark: "mark";
481
+ }>;
482
+ direction: z.ZodEnum<{
483
+ ABOVE: "ABOVE";
484
+ BELOW: "BELOW";
485
+ }>;
486
+ threshold_bps: z.ZodNumber;
487
+ }, z.core.$strip>;
488
+ }, z.core.$strip>], "type">;
489
+ context: z.ZodObject<{
490
+ type: z.ZodLiteral<"MARKET">;
491
+ position: z.ZodObject<{
492
+ id: z.ZodUUID;
493
+ initialExposure: z.ZodRecord<z.ZodString, z.ZodString>;
494
+ }, z.core.$strip>;
495
+ }, z.core.$strip>;
496
+ }, z.core.$strip>], "intent">], "type">>;
497
+ }, z.core.$strip>;
498
+ export type TriggerListResponse = z.output<typeof TriggerListResponse>;
499
+ export declare const CreateTriggerResponse: z.ZodObject<{
500
+ trigger: z.ZodDiscriminatedUnion<[z.ZodDiscriminatedUnion<[z.ZodObject<{
501
+ id: z.ZodUUID;
502
+ tradeAccountId: z.ZodUUID;
503
+ connector: z.ZodEnum<{
504
+ hyperliquid: "hyperliquid";
505
+ binanceusdm: "binanceusdm";
506
+ bybit: "bybit";
507
+ okx: "okx";
508
+ }>;
509
+ status: z.ZodEnum<{
510
+ CANCELLED: "CANCELLED";
511
+ ACTIVE: "ACTIVE";
512
+ TRIGGERED: "TRIGGERED";
513
+ }>;
514
+ triggeredAt: z.ZodOptional<z.ZodString>;
515
+ cancelledAt: z.ZodOptional<z.ZodString>;
516
+ cancelledReason: z.ZodOptional<z.ZodEnum<{
517
+ USER: "USER";
518
+ POSITION_CLOSED: "POSITION_CLOSED";
519
+ SYSTEM: "SYSTEM";
520
+ }>>;
521
+ fills: z.ZodOptional<z.ZodArray<z.ZodObject<{
522
+ id: z.ZodUUID;
523
+ cloid: z.ZodOptional<z.ZodUUID>;
524
+ tradeAccountId: z.ZodUUID;
525
+ symbol: z.ZodString;
526
+ positionId: z.ZodUUID;
527
+ connector: z.ZodEnum<{
528
+ hyperliquid: "hyperliquid";
529
+ binanceusdm: "binanceusdm";
530
+ bybit: "bybit";
531
+ okx: "okx";
532
+ }>;
533
+ side: z.ZodEnum<{
534
+ BUY: "BUY";
535
+ SELL: "SELL";
536
+ }>;
537
+ reduceOnly: z.ZodBoolean;
538
+ quantity: z.ZodString;
539
+ price: z.ZodString;
540
+ usd: z.ZodString;
541
+ fee: z.ZodOptional<z.ZodString>;
542
+ timestamp: z.ZodString;
543
+ }, z.core.$strip>>>;
544
+ createdAt: z.ZodString;
545
+ updatedAt: z.ZodString;
546
+ intent: z.ZodLiteral<"OPEN">;
547
+ type: z.ZodLiteral<"MARKET">;
548
+ condition: z.ZodDiscriminatedUnion<[z.ZodObject<{
549
+ type: z.ZodLiteral<"ratio_v1">;
550
+ data: z.ZodObject<{
551
+ priceSource: z.ZodEnum<{
552
+ mid: "mid";
553
+ mark: "mark";
554
+ }>;
555
+ symbol_a: z.ZodString;
556
+ symbol_b: z.ZodString;
557
+ direction: z.ZodEnum<{
558
+ ABOVE: "ABOVE";
559
+ BELOW: "BELOW";
560
+ }>;
561
+ threshold: z.ZodNumber;
562
+ }, z.core.$strip>;
563
+ }, z.core.$strip>, z.ZodObject<{
564
+ type: z.ZodLiteral<"price_v1">;
565
+ data: z.ZodObject<{
566
+ priceSource: z.ZodEnum<{
567
+ mid: "mid";
568
+ mark: "mark";
569
+ }>;
570
+ symbol: z.ZodString;
571
+ direction: z.ZodEnum<{
572
+ ABOVE: "ABOVE";
573
+ BELOW: "BELOW";
574
+ }>;
575
+ threshold: z.ZodNumber;
576
+ }, z.core.$strip>;
577
+ }, z.core.$strip>, z.ZodObject<{
578
+ type: z.ZodLiteral<"index_v1">;
579
+ data: z.ZodObject<{
580
+ priceSource: z.ZodEnum<{
581
+ mid: "mid";
582
+ mark: "mark";
583
+ }>;
584
+ basket: z.ZodArray<z.ZodObject<{
585
+ symbol: z.ZodString;
586
+ weight: z.ZodNumber;
587
+ }, z.core.$strip>>;
588
+ direction: z.ZodEnum<{
589
+ ABOVE: "ABOVE";
590
+ BELOW: "BELOW";
591
+ }>;
592
+ threshold: z.ZodNumber;
593
+ }, z.core.$strip>;
594
+ }, z.core.$strip>, z.ZodObject<{
595
+ type: z.ZodLiteral<"weighted_ratio_v1">;
596
+ data: z.ZodObject<{
597
+ priceSource: z.ZodEnum<{
598
+ mid: "mid";
599
+ mark: "mark";
600
+ }>;
601
+ basket: z.ZodArray<z.ZodObject<{
602
+ symbol: z.ZodString;
603
+ side: z.ZodEnum<{
604
+ BUY: "BUY";
605
+ SELL: "SELL";
606
+ }>;
607
+ weight: z.ZodNumber;
608
+ }, z.core.$strip>>;
609
+ direction: z.ZodEnum<{
610
+ ABOVE: "ABOVE";
611
+ BELOW: "BELOW";
612
+ }>;
613
+ threshold: z.ZodNumber;
614
+ }, z.core.$strip>;
615
+ }, z.core.$strip>], "type">;
616
+ context: z.ZodObject<{
617
+ type: z.ZodLiteral<"MARKET">;
618
+ legs: z.ZodTuple<[z.ZodObject<{
619
+ symbol: z.ZodString;
620
+ side: z.ZodEnum<{
621
+ BUY: "BUY";
622
+ SELL: "SELL";
623
+ }>;
624
+ mode: z.ZodEnum<{
625
+ QUANTITY: "QUANTITY";
626
+ USD: "USD";
627
+ }>;
628
+ amount: z.ZodString;
629
+ }, z.core.$strip>], z.ZodObject<{
630
+ symbol: z.ZodString;
631
+ side: z.ZodEnum<{
632
+ BUY: "BUY";
633
+ SELL: "SELL";
634
+ }>;
635
+ mode: z.ZodEnum<{
636
+ QUANTITY: "QUANTITY";
637
+ USD: "USD";
638
+ }>;
639
+ amount: z.ZodString;
640
+ }, z.core.$strip>>;
641
+ }, z.core.$strip>;
642
+ }, z.core.$strip>, z.ZodObject<{
643
+ id: z.ZodUUID;
644
+ tradeAccountId: z.ZodUUID;
645
+ connector: z.ZodEnum<{
646
+ hyperliquid: "hyperliquid";
647
+ binanceusdm: "binanceusdm";
648
+ bybit: "bybit";
649
+ okx: "okx";
650
+ }>;
651
+ status: z.ZodEnum<{
652
+ CANCELLED: "CANCELLED";
653
+ ACTIVE: "ACTIVE";
654
+ TRIGGERED: "TRIGGERED";
655
+ }>;
656
+ triggeredAt: z.ZodOptional<z.ZodString>;
657
+ cancelledAt: z.ZodOptional<z.ZodString>;
658
+ cancelledReason: z.ZodOptional<z.ZodEnum<{
659
+ USER: "USER";
660
+ POSITION_CLOSED: "POSITION_CLOSED";
661
+ SYSTEM: "SYSTEM";
662
+ }>>;
663
+ fills: z.ZodOptional<z.ZodArray<z.ZodObject<{
664
+ id: z.ZodUUID;
665
+ cloid: z.ZodOptional<z.ZodUUID>;
666
+ tradeAccountId: z.ZodUUID;
667
+ symbol: z.ZodString;
668
+ positionId: z.ZodUUID;
669
+ connector: z.ZodEnum<{
670
+ hyperliquid: "hyperliquid";
671
+ binanceusdm: "binanceusdm";
672
+ bybit: "bybit";
673
+ okx: "okx";
674
+ }>;
675
+ side: z.ZodEnum<{
676
+ BUY: "BUY";
677
+ SELL: "SELL";
678
+ }>;
679
+ reduceOnly: z.ZodBoolean;
680
+ quantity: z.ZodString;
681
+ price: z.ZodString;
682
+ usd: z.ZodString;
683
+ fee: z.ZodOptional<z.ZodString>;
684
+ timestamp: z.ZodString;
685
+ }, z.core.$strip>>>;
686
+ createdAt: z.ZodString;
687
+ updatedAt: z.ZodString;
688
+ intent: z.ZodLiteral<"ADJUST">;
689
+ type: z.ZodLiteral<"MARKET">;
690
+ condition: z.ZodDiscriminatedUnion<[z.ZodObject<{
691
+ type: z.ZodLiteral<"ratio_v1">;
692
+ data: z.ZodObject<{
693
+ priceSource: z.ZodEnum<{
694
+ mid: "mid";
695
+ mark: "mark";
696
+ }>;
697
+ symbol_a: z.ZodString;
698
+ symbol_b: z.ZodString;
699
+ direction: z.ZodEnum<{
700
+ ABOVE: "ABOVE";
701
+ BELOW: "BELOW";
702
+ }>;
703
+ threshold: z.ZodNumber;
704
+ }, z.core.$strip>;
705
+ }, z.core.$strip>, z.ZodObject<{
706
+ type: z.ZodLiteral<"price_v1">;
707
+ data: z.ZodObject<{
708
+ priceSource: z.ZodEnum<{
709
+ mid: "mid";
710
+ mark: "mark";
711
+ }>;
712
+ symbol: z.ZodString;
713
+ direction: z.ZodEnum<{
714
+ ABOVE: "ABOVE";
715
+ BELOW: "BELOW";
716
+ }>;
717
+ threshold: z.ZodNumber;
718
+ }, z.core.$strip>;
719
+ }, z.core.$strip>, z.ZodObject<{
720
+ type: z.ZodLiteral<"index_v1">;
721
+ data: z.ZodObject<{
722
+ priceSource: z.ZodEnum<{
723
+ mid: "mid";
724
+ mark: "mark";
725
+ }>;
726
+ basket: z.ZodArray<z.ZodObject<{
727
+ symbol: z.ZodString;
728
+ weight: z.ZodNumber;
729
+ }, z.core.$strip>>;
730
+ direction: z.ZodEnum<{
731
+ ABOVE: "ABOVE";
732
+ BELOW: "BELOW";
733
+ }>;
734
+ threshold: z.ZodNumber;
735
+ }, z.core.$strip>;
736
+ }, z.core.$strip>, z.ZodObject<{
737
+ type: z.ZodLiteral<"weighted_ratio_v1">;
738
+ data: z.ZodObject<{
739
+ priceSource: z.ZodEnum<{
740
+ mid: "mid";
741
+ mark: "mark";
742
+ }>;
743
+ basket: z.ZodArray<z.ZodObject<{
744
+ symbol: z.ZodString;
745
+ side: z.ZodEnum<{
746
+ BUY: "BUY";
747
+ SELL: "SELL";
748
+ }>;
749
+ weight: z.ZodNumber;
750
+ }, z.core.$strip>>;
751
+ direction: z.ZodEnum<{
752
+ ABOVE: "ABOVE";
753
+ BELOW: "BELOW";
754
+ }>;
755
+ threshold: z.ZodNumber;
756
+ }, z.core.$strip>;
757
+ }, z.core.$strip>, z.ZodObject<{
758
+ type: z.ZodLiteral<"position_value_v1">;
759
+ data: z.ZodObject<{
760
+ priceSource: z.ZodEnum<{
761
+ mid: "mid";
762
+ mark: "mark";
763
+ }>;
764
+ direction: z.ZodEnum<{
765
+ ABOVE: "ABOVE";
766
+ BELOW: "BELOW";
767
+ }>;
768
+ threshold: z.ZodNumber;
769
+ }, z.core.$strip>;
770
+ }, z.core.$strip>, z.ZodObject<{
771
+ type: z.ZodLiteral<"position_upnl_value_v1">;
772
+ data: z.ZodObject<{
773
+ priceSource: z.ZodEnum<{
774
+ mid: "mid";
775
+ mark: "mark";
776
+ }>;
777
+ direction: z.ZodEnum<{
778
+ ABOVE: "ABOVE";
779
+ BELOW: "BELOW";
780
+ }>;
781
+ threshold: z.ZodNumber;
782
+ }, z.core.$strip>;
783
+ }, z.core.$strip>, z.ZodObject<{
784
+ type: z.ZodLiteral<"position_upnl_percentage_v1">;
785
+ data: z.ZodObject<{
786
+ priceSource: z.ZodEnum<{
787
+ mid: "mid";
788
+ mark: "mark";
789
+ }>;
790
+ direction: z.ZodEnum<{
791
+ ABOVE: "ABOVE";
792
+ BELOW: "BELOW";
793
+ }>;
794
+ threshold_bps: z.ZodNumber;
795
+ }, z.core.$strip>;
796
+ }, z.core.$strip>], "type">;
797
+ context: z.ZodObject<{
798
+ type: z.ZodLiteral<"MARKET">;
799
+ position: z.ZodObject<{
800
+ id: z.ZodUUID;
801
+ initialExposure: z.ZodRecord<z.ZodString, z.ZodString>;
802
+ }, z.core.$strip>;
803
+ legs: z.ZodTuple<[z.ZodObject<{
804
+ symbol: z.ZodString;
805
+ side: z.ZodEnum<{
806
+ BUY: "BUY";
807
+ SELL: "SELL";
808
+ }>;
809
+ mode: z.ZodEnum<{
810
+ QUANTITY: "QUANTITY";
811
+ USD: "USD";
812
+ }>;
813
+ amount: z.ZodString;
814
+ reduceOnly: z.ZodBoolean;
815
+ }, z.core.$strip>], z.ZodObject<{
816
+ symbol: z.ZodString;
817
+ side: z.ZodEnum<{
818
+ BUY: "BUY";
819
+ SELL: "SELL";
820
+ }>;
821
+ mode: z.ZodEnum<{
822
+ QUANTITY: "QUANTITY";
823
+ USD: "USD";
824
+ }>;
825
+ amount: z.ZodString;
826
+ reduceOnly: z.ZodBoolean;
827
+ }, z.core.$strip>>;
828
+ }, z.core.$strip>;
829
+ }, z.core.$strip>, z.ZodObject<{
830
+ id: z.ZodUUID;
831
+ tradeAccountId: z.ZodUUID;
832
+ connector: z.ZodEnum<{
833
+ hyperliquid: "hyperliquid";
834
+ binanceusdm: "binanceusdm";
835
+ bybit: "bybit";
836
+ okx: "okx";
837
+ }>;
838
+ status: z.ZodEnum<{
839
+ CANCELLED: "CANCELLED";
840
+ ACTIVE: "ACTIVE";
841
+ TRIGGERED: "TRIGGERED";
842
+ }>;
843
+ triggeredAt: z.ZodOptional<z.ZodString>;
844
+ cancelledAt: z.ZodOptional<z.ZodString>;
845
+ cancelledReason: z.ZodOptional<z.ZodEnum<{
846
+ USER: "USER";
847
+ POSITION_CLOSED: "POSITION_CLOSED";
848
+ SYSTEM: "SYSTEM";
849
+ }>>;
850
+ fills: z.ZodOptional<z.ZodArray<z.ZodObject<{
851
+ id: z.ZodUUID;
852
+ cloid: z.ZodOptional<z.ZodUUID>;
853
+ tradeAccountId: z.ZodUUID;
854
+ symbol: z.ZodString;
855
+ positionId: z.ZodUUID;
856
+ connector: z.ZodEnum<{
857
+ hyperliquid: "hyperliquid";
858
+ binanceusdm: "binanceusdm";
859
+ bybit: "bybit";
860
+ okx: "okx";
861
+ }>;
862
+ side: z.ZodEnum<{
863
+ BUY: "BUY";
864
+ SELL: "SELL";
865
+ }>;
866
+ reduceOnly: z.ZodBoolean;
867
+ quantity: z.ZodString;
868
+ price: z.ZodString;
869
+ usd: z.ZodString;
870
+ fee: z.ZodOptional<z.ZodString>;
871
+ timestamp: z.ZodString;
872
+ }, z.core.$strip>>>;
873
+ createdAt: z.ZodString;
874
+ updatedAt: z.ZodString;
875
+ intent: z.ZodLiteral<"CLOSE">;
876
+ type: z.ZodLiteral<"MARKET">;
877
+ condition: z.ZodDiscriminatedUnion<[z.ZodObject<{
878
+ type: z.ZodLiteral<"ratio_v1">;
879
+ data: z.ZodObject<{
880
+ priceSource: z.ZodEnum<{
881
+ mid: "mid";
882
+ mark: "mark";
883
+ }>;
884
+ symbol_a: z.ZodString;
885
+ symbol_b: z.ZodString;
886
+ direction: z.ZodEnum<{
887
+ ABOVE: "ABOVE";
888
+ BELOW: "BELOW";
889
+ }>;
890
+ threshold: z.ZodNumber;
891
+ }, z.core.$strip>;
892
+ }, z.core.$strip>, z.ZodObject<{
893
+ type: z.ZodLiteral<"price_v1">;
894
+ data: z.ZodObject<{
895
+ priceSource: z.ZodEnum<{
896
+ mid: "mid";
897
+ mark: "mark";
898
+ }>;
899
+ symbol: z.ZodString;
900
+ direction: z.ZodEnum<{
901
+ ABOVE: "ABOVE";
902
+ BELOW: "BELOW";
903
+ }>;
904
+ threshold: z.ZodNumber;
905
+ }, z.core.$strip>;
906
+ }, z.core.$strip>, z.ZodObject<{
907
+ type: z.ZodLiteral<"index_v1">;
908
+ data: z.ZodObject<{
909
+ priceSource: z.ZodEnum<{
910
+ mid: "mid";
911
+ mark: "mark";
912
+ }>;
913
+ basket: z.ZodArray<z.ZodObject<{
914
+ symbol: z.ZodString;
915
+ weight: z.ZodNumber;
916
+ }, z.core.$strip>>;
917
+ direction: z.ZodEnum<{
918
+ ABOVE: "ABOVE";
919
+ BELOW: "BELOW";
920
+ }>;
921
+ threshold: z.ZodNumber;
922
+ }, z.core.$strip>;
923
+ }, z.core.$strip>, z.ZodObject<{
924
+ type: z.ZodLiteral<"weighted_ratio_v1">;
925
+ data: z.ZodObject<{
926
+ priceSource: z.ZodEnum<{
927
+ mid: "mid";
928
+ mark: "mark";
929
+ }>;
930
+ basket: z.ZodArray<z.ZodObject<{
931
+ symbol: z.ZodString;
932
+ side: z.ZodEnum<{
933
+ BUY: "BUY";
934
+ SELL: "SELL";
935
+ }>;
936
+ weight: z.ZodNumber;
937
+ }, z.core.$strip>>;
938
+ direction: z.ZodEnum<{
939
+ ABOVE: "ABOVE";
940
+ BELOW: "BELOW";
941
+ }>;
942
+ threshold: z.ZodNumber;
943
+ }, z.core.$strip>;
944
+ }, z.core.$strip>, z.ZodObject<{
945
+ type: z.ZodLiteral<"position_value_v1">;
946
+ data: z.ZodObject<{
947
+ priceSource: z.ZodEnum<{
948
+ mid: "mid";
949
+ mark: "mark";
950
+ }>;
951
+ direction: z.ZodEnum<{
952
+ ABOVE: "ABOVE";
953
+ BELOW: "BELOW";
954
+ }>;
955
+ threshold: z.ZodNumber;
956
+ }, z.core.$strip>;
957
+ }, z.core.$strip>, z.ZodObject<{
958
+ type: z.ZodLiteral<"position_upnl_value_v1">;
959
+ data: z.ZodObject<{
960
+ priceSource: z.ZodEnum<{
961
+ mid: "mid";
962
+ mark: "mark";
963
+ }>;
964
+ direction: z.ZodEnum<{
965
+ ABOVE: "ABOVE";
966
+ BELOW: "BELOW";
967
+ }>;
968
+ threshold: z.ZodNumber;
969
+ }, z.core.$strip>;
970
+ }, z.core.$strip>, z.ZodObject<{
971
+ type: z.ZodLiteral<"position_upnl_percentage_v1">;
972
+ data: z.ZodObject<{
973
+ priceSource: z.ZodEnum<{
974
+ mid: "mid";
975
+ mark: "mark";
976
+ }>;
977
+ direction: z.ZodEnum<{
978
+ ABOVE: "ABOVE";
979
+ BELOW: "BELOW";
980
+ }>;
981
+ threshold_bps: z.ZodNumber;
982
+ }, z.core.$strip>;
983
+ }, z.core.$strip>], "type">;
984
+ context: z.ZodObject<{
985
+ type: z.ZodLiteral<"MARKET">;
986
+ position: z.ZodObject<{
987
+ id: z.ZodUUID;
988
+ initialExposure: z.ZodRecord<z.ZodString, z.ZodString>;
989
+ }, z.core.$strip>;
990
+ }, z.core.$strip>;
991
+ }, z.core.$strip>], "intent">], "type">;
992
+ }, z.core.$strip>;
993
+ export type CreateTriggerResponse = z.output<typeof CreateTriggerResponse>;
994
+ export declare const CancelTriggerResponse: z.ZodObject<{
995
+ id: z.ZodUUID;
996
+ }, z.core.$strip>;
997
+ export type CancelTriggerResponse = z.output<typeof CancelTriggerResponse>;
998
+ export declare const CancelAllTriggersResponse: z.ZodObject<{
999
+ ids: z.ZodArray<z.ZodUUID>;
1000
+ }, z.core.$strip>;
1001
+ export type CancelAllTriggersResponse = z.output<typeof CancelAllTriggersResponse>;