@fairmint/canton-node-sdk 0.0.103 → 0.0.105

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 (38) hide show
  1. package/build/src/clients/ledger-json-api/operations/v2/state/get-active-contracts.d.ts.map +1 -1
  2. package/build/src/clients/ledger-json-api/operations/v2/state/get-active-contracts.js +2 -4
  3. package/build/src/clients/ledger-json-api/operations/v2/state/get-active-contracts.js.map +1 -1
  4. package/build/src/clients/ledger-json-api/operations/v2/state/subscribe-to-active-contracts.d.ts +26 -14
  5. package/build/src/clients/ledger-json-api/operations/v2/state/subscribe-to-active-contracts.d.ts.map +1 -1
  6. package/build/src/clients/ledger-json-api/operations/v2/state/subscribe-to-active-contracts.js +2 -2
  7. package/build/src/clients/ledger-json-api/operations/v2/state/subscribe-to-active-contracts.js.map +1 -1
  8. package/build/src/clients/ledger-json-api/operations/v2/updates/get-flats.d.ts +48 -24
  9. package/build/src/clients/ledger-json-api/operations/v2/updates/get-flats.d.ts.map +1 -1
  10. package/build/src/clients/ledger-json-api/operations/v2/updates/get-transaction-by-id.d.ts +24 -12
  11. package/build/src/clients/ledger-json-api/operations/v2/updates/get-transaction-by-id.d.ts.map +1 -1
  12. package/build/src/clients/ledger-json-api/operations/v2/updates/get-transaction-by-offset.d.ts +24 -12
  13. package/build/src/clients/ledger-json-api/operations/v2/updates/get-transaction-by-offset.d.ts.map +1 -1
  14. package/build/src/clients/ledger-json-api/operations/v2/updates/get-trees.d.ts +48 -24
  15. package/build/src/clients/ledger-json-api/operations/v2/updates/get-trees.d.ts.map +1 -1
  16. package/build/src/clients/ledger-json-api/operations/v2/updates/get-update-by-offset.d.ts +48 -24
  17. package/build/src/clients/ledger-json-api/operations/v2/updates/get-update-by-offset.d.ts.map +1 -1
  18. package/build/src/clients/ledger-json-api/operations/v2/updates/subscribe-to-flats.d.ts +96 -48
  19. package/build/src/clients/ledger-json-api/operations/v2/updates/subscribe-to-flats.d.ts.map +1 -1
  20. package/build/src/clients/ledger-json-api/operations/v2/updates/subscribe-to-trees.d.ts +96 -48
  21. package/build/src/clients/ledger-json-api/operations/v2/updates/subscribe-to-trees.d.ts.map +1 -1
  22. package/build/src/clients/ledger-json-api/operations/v2/updates/utils/format-normalizers.d.ts +1 -2
  23. package/build/src/clients/ledger-json-api/operations/v2/updates/utils/format-normalizers.d.ts.map +1 -1
  24. package/build/src/clients/ledger-json-api/operations/v2/updates/utils/format-normalizers.js +6 -48
  25. package/build/src/clients/ledger-json-api/operations/v2/updates/utils/format-normalizers.js.map +1 -1
  26. package/build/src/clients/ledger-json-api/schemas/api/events.d.ts +36 -18
  27. package/build/src/clients/ledger-json-api/schemas/api/events.d.ts.map +1 -1
  28. package/build/src/clients/ledger-json-api/schemas/api/reassignment.d.ts +12 -6
  29. package/build/src/clients/ledger-json-api/schemas/api/reassignment.d.ts.map +1 -1
  30. package/build/src/clients/ledger-json-api/schemas/api/state.d.ts +12 -6
  31. package/build/src/clients/ledger-json-api/schemas/api/state.d.ts.map +1 -1
  32. package/build/src/clients/ledger-json-api/schemas/api/updates.d.ts +24 -12
  33. package/build/src/clients/ledger-json-api/schemas/api/updates.d.ts.map +1 -1
  34. package/build/src/clients/ledger-json-api/schemas/operations/updates.d.ts +276 -138
  35. package/build/src/clients/ledger-json-api/schemas/operations/updates.d.ts.map +1 -1
  36. package/build/src/clients/ledger-json-api/schemas/operations/updates.js +17 -7
  37. package/build/src/clients/ledger-json-api/schemas/operations/updates.js.map +1 -1
  38. package/package.json +1 -1
@@ -3,18 +3,24 @@ export declare const IdentifierFilterSchema: z.ZodUnion<readonly [z.ZodObject<{
3
3
  Empty: z.ZodObject<{}, z.core.$strip>;
4
4
  }, z.core.$strip>, z.ZodObject<{
5
5
  InterfaceFilter: z.ZodObject<{
6
- interfaceId: z.ZodString;
7
- includeInterfaceView: z.ZodOptional<z.ZodBoolean>;
8
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
6
+ value: z.ZodObject<{
7
+ interfaceId: z.ZodString;
8
+ includeInterfaceView: z.ZodBoolean;
9
+ includeCreatedEventBlob: z.ZodBoolean;
10
+ }, z.core.$strip>;
9
11
  }, z.core.$strip>;
10
12
  }, z.core.$strip>, z.ZodObject<{
11
13
  TemplateFilter: z.ZodObject<{
12
- templateId: z.ZodString;
13
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
14
+ value: z.ZodObject<{
15
+ templateId: z.ZodString;
16
+ includeCreatedEventBlob: z.ZodBoolean;
17
+ }, z.core.$strip>;
14
18
  }, z.core.$strip>;
15
19
  }, z.core.$strip>, z.ZodObject<{
16
20
  WildcardFilter: z.ZodObject<{
17
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
21
+ value: z.ZodObject<{
22
+ includeCreatedEventBlob: z.ZodBoolean;
23
+ }, z.core.$strip>;
18
24
  }, z.core.$strip>;
19
25
  }, z.core.$strip>]>;
20
26
  export type IdentifierFilter = z.infer<typeof IdentifierFilterSchema>;
@@ -24,18 +30,24 @@ export declare const CumulativeFilterSchema: z.ZodObject<{
24
30
  Empty: z.ZodObject<{}, z.core.$strip>;
25
31
  }, z.core.$strip>, z.ZodObject<{
26
32
  InterfaceFilter: z.ZodObject<{
27
- interfaceId: z.ZodString;
28
- includeInterfaceView: z.ZodOptional<z.ZodBoolean>;
29
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
33
+ value: z.ZodObject<{
34
+ interfaceId: z.ZodString;
35
+ includeInterfaceView: z.ZodBoolean;
36
+ includeCreatedEventBlob: z.ZodBoolean;
37
+ }, z.core.$strip>;
30
38
  }, z.core.$strip>;
31
39
  }, z.core.$strip>, z.ZodObject<{
32
40
  TemplateFilter: z.ZodObject<{
33
- templateId: z.ZodString;
34
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
41
+ value: z.ZodObject<{
42
+ templateId: z.ZodString;
43
+ includeCreatedEventBlob: z.ZodBoolean;
44
+ }, z.core.$strip>;
35
45
  }, z.core.$strip>;
36
46
  }, z.core.$strip>, z.ZodObject<{
37
47
  WildcardFilter: z.ZodObject<{
38
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
48
+ value: z.ZodObject<{
49
+ includeCreatedEventBlob: z.ZodBoolean;
50
+ }, z.core.$strip>;
39
51
  }, z.core.$strip>;
40
52
  }, z.core.$strip>]>;
41
53
  }, z.core.$strip>;
@@ -50,18 +62,24 @@ export declare const FiltersForAnyPartySchema: z.ZodOptional<z.ZodObject<{
50
62
  Empty: z.ZodObject<{}, z.core.$strip>;
51
63
  }, z.core.$strip>, z.ZodObject<{
52
64
  InterfaceFilter: z.ZodObject<{
53
- interfaceId: z.ZodString;
54
- includeInterfaceView: z.ZodOptional<z.ZodBoolean>;
55
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
65
+ value: z.ZodObject<{
66
+ interfaceId: z.ZodString;
67
+ includeInterfaceView: z.ZodBoolean;
68
+ includeCreatedEventBlob: z.ZodBoolean;
69
+ }, z.core.$strip>;
56
70
  }, z.core.$strip>;
57
71
  }, z.core.$strip>, z.ZodObject<{
58
72
  TemplateFilter: z.ZodObject<{
59
- templateId: z.ZodString;
60
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
73
+ value: z.ZodObject<{
74
+ templateId: z.ZodString;
75
+ includeCreatedEventBlob: z.ZodBoolean;
76
+ }, z.core.$strip>;
61
77
  }, z.core.$strip>;
62
78
  }, z.core.$strip>, z.ZodObject<{
63
79
  WildcardFilter: z.ZodObject<{
64
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
80
+ value: z.ZodObject<{
81
+ includeCreatedEventBlob: z.ZodBoolean;
82
+ }, z.core.$strip>;
65
83
  }, z.core.$strip>;
66
84
  }, z.core.$strip>]>;
67
85
  }, z.core.$strip>>;
@@ -78,18 +96,24 @@ export declare const OperationEventFormatSchema: z.ZodObject<{
78
96
  Empty: z.ZodObject<{}, z.core.$strip>;
79
97
  }, z.core.$strip>, z.ZodObject<{
80
98
  InterfaceFilter: z.ZodObject<{
81
- interfaceId: z.ZodString;
82
- includeInterfaceView: z.ZodOptional<z.ZodBoolean>;
83
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
99
+ value: z.ZodObject<{
100
+ interfaceId: z.ZodString;
101
+ includeInterfaceView: z.ZodBoolean;
102
+ includeCreatedEventBlob: z.ZodBoolean;
103
+ }, z.core.$strip>;
84
104
  }, z.core.$strip>;
85
105
  }, z.core.$strip>, z.ZodObject<{
86
106
  TemplateFilter: z.ZodObject<{
87
- templateId: z.ZodString;
88
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
107
+ value: z.ZodObject<{
108
+ templateId: z.ZodString;
109
+ includeCreatedEventBlob: z.ZodBoolean;
110
+ }, z.core.$strip>;
89
111
  }, z.core.$strip>;
90
112
  }, z.core.$strip>, z.ZodObject<{
91
113
  WildcardFilter: z.ZodObject<{
92
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
114
+ value: z.ZodObject<{
115
+ includeCreatedEventBlob: z.ZodBoolean;
116
+ }, z.core.$strip>;
93
117
  }, z.core.$strip>;
94
118
  }, z.core.$strip>]>;
95
119
  }, z.core.$strip>>;
@@ -100,18 +124,24 @@ export declare const OperationEventFormatSchema: z.ZodObject<{
100
124
  Empty: z.ZodObject<{}, z.core.$strip>;
101
125
  }, z.core.$strip>, z.ZodObject<{
102
126
  InterfaceFilter: z.ZodObject<{
103
- interfaceId: z.ZodString;
104
- includeInterfaceView: z.ZodOptional<z.ZodBoolean>;
105
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
127
+ value: z.ZodObject<{
128
+ interfaceId: z.ZodString;
129
+ includeInterfaceView: z.ZodBoolean;
130
+ includeCreatedEventBlob: z.ZodBoolean;
131
+ }, z.core.$strip>;
106
132
  }, z.core.$strip>;
107
133
  }, z.core.$strip>, z.ZodObject<{
108
134
  TemplateFilter: z.ZodObject<{
109
- templateId: z.ZodString;
110
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
135
+ value: z.ZodObject<{
136
+ templateId: z.ZodString;
137
+ includeCreatedEventBlob: z.ZodBoolean;
138
+ }, z.core.$strip>;
111
139
  }, z.core.$strip>;
112
140
  }, z.core.$strip>, z.ZodObject<{
113
141
  WildcardFilter: z.ZodObject<{
114
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
142
+ value: z.ZodObject<{
143
+ includeCreatedEventBlob: z.ZodBoolean;
144
+ }, z.core.$strip>;
115
145
  }, z.core.$strip>;
116
146
  }, z.core.$strip>]>;
117
147
  }, z.core.$strip>>;
@@ -131,18 +161,24 @@ export declare const TransactionFormatSchema: z.ZodObject<{
131
161
  Empty: z.ZodObject<{}, z.core.$strip>;
132
162
  }, z.core.$strip>, z.ZodObject<{
133
163
  InterfaceFilter: z.ZodObject<{
134
- interfaceId: z.ZodString;
135
- includeInterfaceView: z.ZodOptional<z.ZodBoolean>;
136
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
164
+ value: z.ZodObject<{
165
+ interfaceId: z.ZodString;
166
+ includeInterfaceView: z.ZodBoolean;
167
+ includeCreatedEventBlob: z.ZodBoolean;
168
+ }, z.core.$strip>;
137
169
  }, z.core.$strip>;
138
170
  }, z.core.$strip>, z.ZodObject<{
139
171
  TemplateFilter: z.ZodObject<{
140
- templateId: z.ZodString;
141
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
172
+ value: z.ZodObject<{
173
+ templateId: z.ZodString;
174
+ includeCreatedEventBlob: z.ZodBoolean;
175
+ }, z.core.$strip>;
142
176
  }, z.core.$strip>;
143
177
  }, z.core.$strip>, z.ZodObject<{
144
178
  WildcardFilter: z.ZodObject<{
145
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
179
+ value: z.ZodObject<{
180
+ includeCreatedEventBlob: z.ZodBoolean;
181
+ }, z.core.$strip>;
146
182
  }, z.core.$strip>;
147
183
  }, z.core.$strip>]>;
148
184
  }, z.core.$strip>>;
@@ -153,18 +189,24 @@ export declare const TransactionFormatSchema: z.ZodObject<{
153
189
  Empty: z.ZodObject<{}, z.core.$strip>;
154
190
  }, z.core.$strip>, z.ZodObject<{
155
191
  InterfaceFilter: z.ZodObject<{
156
- interfaceId: z.ZodString;
157
- includeInterfaceView: z.ZodOptional<z.ZodBoolean>;
158
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
192
+ value: z.ZodObject<{
193
+ interfaceId: z.ZodString;
194
+ includeInterfaceView: z.ZodBoolean;
195
+ includeCreatedEventBlob: z.ZodBoolean;
196
+ }, z.core.$strip>;
159
197
  }, z.core.$strip>;
160
198
  }, z.core.$strip>, z.ZodObject<{
161
199
  TemplateFilter: z.ZodObject<{
162
- templateId: z.ZodString;
163
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
200
+ value: z.ZodObject<{
201
+ templateId: z.ZodString;
202
+ includeCreatedEventBlob: z.ZodBoolean;
203
+ }, z.core.$strip>;
164
204
  }, z.core.$strip>;
165
205
  }, z.core.$strip>, z.ZodObject<{
166
206
  WildcardFilter: z.ZodObject<{
167
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
207
+ value: z.ZodObject<{
208
+ includeCreatedEventBlob: z.ZodBoolean;
209
+ }, z.core.$strip>;
168
210
  }, z.core.$strip>;
169
211
  }, z.core.$strip>]>;
170
212
  }, z.core.$strip>>;
@@ -194,18 +236,24 @@ export declare const GetUpdatesParamsSchema: z.ZodObject<{
194
236
  Empty: z.ZodObject<{}, z.core.$strip>;
195
237
  }, z.core.$strip>, z.ZodObject<{
196
238
  InterfaceFilter: z.ZodObject<{
197
- interfaceId: z.ZodString;
198
- includeInterfaceView: z.ZodOptional<z.ZodBoolean>;
199
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
239
+ value: z.ZodObject<{
240
+ interfaceId: z.ZodString;
241
+ includeInterfaceView: z.ZodBoolean;
242
+ includeCreatedEventBlob: z.ZodBoolean;
243
+ }, z.core.$strip>;
200
244
  }, z.core.$strip>;
201
245
  }, z.core.$strip>, z.ZodObject<{
202
246
  TemplateFilter: z.ZodObject<{
203
- templateId: z.ZodString;
204
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
247
+ value: z.ZodObject<{
248
+ templateId: z.ZodString;
249
+ includeCreatedEventBlob: z.ZodBoolean;
250
+ }, z.core.$strip>;
205
251
  }, z.core.$strip>;
206
252
  }, z.core.$strip>, z.ZodObject<{
207
253
  WildcardFilter: z.ZodObject<{
208
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
254
+ value: z.ZodObject<{
255
+ includeCreatedEventBlob: z.ZodBoolean;
256
+ }, z.core.$strip>;
209
257
  }, z.core.$strip>;
210
258
  }, z.core.$strip>]>;
211
259
  }, z.core.$strip>>;
@@ -216,18 +264,24 @@ export declare const GetUpdatesParamsSchema: z.ZodObject<{
216
264
  Empty: z.ZodObject<{}, z.core.$strip>;
217
265
  }, z.core.$strip>, z.ZodObject<{
218
266
  InterfaceFilter: z.ZodObject<{
219
- interfaceId: z.ZodString;
220
- includeInterfaceView: z.ZodOptional<z.ZodBoolean>;
221
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
267
+ value: z.ZodObject<{
268
+ interfaceId: z.ZodString;
269
+ includeInterfaceView: z.ZodBoolean;
270
+ includeCreatedEventBlob: z.ZodBoolean;
271
+ }, z.core.$strip>;
222
272
  }, z.core.$strip>;
223
273
  }, z.core.$strip>, z.ZodObject<{
224
274
  TemplateFilter: z.ZodObject<{
225
- templateId: z.ZodString;
226
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
275
+ value: z.ZodObject<{
276
+ templateId: z.ZodString;
277
+ includeCreatedEventBlob: z.ZodBoolean;
278
+ }, z.core.$strip>;
227
279
  }, z.core.$strip>;
228
280
  }, z.core.$strip>, z.ZodObject<{
229
281
  WildcardFilter: z.ZodObject<{
230
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
282
+ value: z.ZodObject<{
283
+ includeCreatedEventBlob: z.ZodBoolean;
284
+ }, z.core.$strip>;
231
285
  }, z.core.$strip>;
232
286
  }, z.core.$strip>]>;
233
287
  }, z.core.$strip>>;
@@ -243,18 +297,24 @@ export declare const GetUpdatesParamsSchema: z.ZodObject<{
243
297
  Empty: z.ZodObject<{}, z.core.$strip>;
244
298
  }, z.core.$strip>, z.ZodObject<{
245
299
  InterfaceFilter: z.ZodObject<{
246
- interfaceId: z.ZodString;
247
- includeInterfaceView: z.ZodOptional<z.ZodBoolean>;
248
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
300
+ value: z.ZodObject<{
301
+ interfaceId: z.ZodString;
302
+ includeInterfaceView: z.ZodBoolean;
303
+ includeCreatedEventBlob: z.ZodBoolean;
304
+ }, z.core.$strip>;
249
305
  }, z.core.$strip>;
250
306
  }, z.core.$strip>, z.ZodObject<{
251
307
  TemplateFilter: z.ZodObject<{
252
- templateId: z.ZodString;
253
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
308
+ value: z.ZodObject<{
309
+ templateId: z.ZodString;
310
+ includeCreatedEventBlob: z.ZodBoolean;
311
+ }, z.core.$strip>;
254
312
  }, z.core.$strip>;
255
313
  }, z.core.$strip>, z.ZodObject<{
256
314
  WildcardFilter: z.ZodObject<{
257
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
315
+ value: z.ZodObject<{
316
+ includeCreatedEventBlob: z.ZodBoolean;
317
+ }, z.core.$strip>;
258
318
  }, z.core.$strip>;
259
319
  }, z.core.$strip>]>;
260
320
  }, z.core.$strip>>;
@@ -265,18 +325,24 @@ export declare const GetUpdatesParamsSchema: z.ZodObject<{
265
325
  Empty: z.ZodObject<{}, z.core.$strip>;
266
326
  }, z.core.$strip>, z.ZodObject<{
267
327
  InterfaceFilter: z.ZodObject<{
268
- interfaceId: z.ZodString;
269
- includeInterfaceView: z.ZodOptional<z.ZodBoolean>;
270
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
328
+ value: z.ZodObject<{
329
+ interfaceId: z.ZodString;
330
+ includeInterfaceView: z.ZodBoolean;
331
+ includeCreatedEventBlob: z.ZodBoolean;
332
+ }, z.core.$strip>;
271
333
  }, z.core.$strip>;
272
334
  }, z.core.$strip>, z.ZodObject<{
273
335
  TemplateFilter: z.ZodObject<{
274
- templateId: z.ZodString;
275
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
336
+ value: z.ZodObject<{
337
+ templateId: z.ZodString;
338
+ includeCreatedEventBlob: z.ZodBoolean;
339
+ }, z.core.$strip>;
276
340
  }, z.core.$strip>;
277
341
  }, z.core.$strip>, z.ZodObject<{
278
342
  WildcardFilter: z.ZodObject<{
279
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
343
+ value: z.ZodObject<{
344
+ includeCreatedEventBlob: z.ZodBoolean;
345
+ }, z.core.$strip>;
280
346
  }, z.core.$strip>;
281
347
  }, z.core.$strip>]>;
282
348
  }, z.core.$strip>>;
@@ -308,18 +374,24 @@ export declare const GetUpdateTreesParamsSchema: z.ZodObject<{
308
374
  Empty: z.ZodObject<{}, z.core.$strip>;
309
375
  }, z.core.$strip>, z.ZodObject<{
310
376
  InterfaceFilter: z.ZodObject<{
311
- interfaceId: z.ZodString;
312
- includeInterfaceView: z.ZodOptional<z.ZodBoolean>;
313
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
377
+ value: z.ZodObject<{
378
+ interfaceId: z.ZodString;
379
+ includeInterfaceView: z.ZodBoolean;
380
+ includeCreatedEventBlob: z.ZodBoolean;
381
+ }, z.core.$strip>;
314
382
  }, z.core.$strip>;
315
383
  }, z.core.$strip>, z.ZodObject<{
316
384
  TemplateFilter: z.ZodObject<{
317
- templateId: z.ZodString;
318
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
385
+ value: z.ZodObject<{
386
+ templateId: z.ZodString;
387
+ includeCreatedEventBlob: z.ZodBoolean;
388
+ }, z.core.$strip>;
319
389
  }, z.core.$strip>;
320
390
  }, z.core.$strip>, z.ZodObject<{
321
391
  WildcardFilter: z.ZodObject<{
322
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
392
+ value: z.ZodObject<{
393
+ includeCreatedEventBlob: z.ZodBoolean;
394
+ }, z.core.$strip>;
323
395
  }, z.core.$strip>;
324
396
  }, z.core.$strip>]>;
325
397
  }, z.core.$strip>>;
@@ -330,18 +402,24 @@ export declare const GetUpdateTreesParamsSchema: z.ZodObject<{
330
402
  Empty: z.ZodObject<{}, z.core.$strip>;
331
403
  }, z.core.$strip>, z.ZodObject<{
332
404
  InterfaceFilter: z.ZodObject<{
333
- interfaceId: z.ZodString;
334
- includeInterfaceView: z.ZodOptional<z.ZodBoolean>;
335
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
405
+ value: z.ZodObject<{
406
+ interfaceId: z.ZodString;
407
+ includeInterfaceView: z.ZodBoolean;
408
+ includeCreatedEventBlob: z.ZodBoolean;
409
+ }, z.core.$strip>;
336
410
  }, z.core.$strip>;
337
411
  }, z.core.$strip>, z.ZodObject<{
338
412
  TemplateFilter: z.ZodObject<{
339
- templateId: z.ZodString;
340
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
413
+ value: z.ZodObject<{
414
+ templateId: z.ZodString;
415
+ includeCreatedEventBlob: z.ZodBoolean;
416
+ }, z.core.$strip>;
341
417
  }, z.core.$strip>;
342
418
  }, z.core.$strip>, z.ZodObject<{
343
419
  WildcardFilter: z.ZodObject<{
344
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
420
+ value: z.ZodObject<{
421
+ includeCreatedEventBlob: z.ZodBoolean;
422
+ }, z.core.$strip>;
345
423
  }, z.core.$strip>;
346
424
  }, z.core.$strip>]>;
347
425
  }, z.core.$strip>>;
@@ -357,18 +435,24 @@ export declare const GetUpdateTreesParamsSchema: z.ZodObject<{
357
435
  Empty: z.ZodObject<{}, z.core.$strip>;
358
436
  }, z.core.$strip>, z.ZodObject<{
359
437
  InterfaceFilter: z.ZodObject<{
360
- interfaceId: z.ZodString;
361
- includeInterfaceView: z.ZodOptional<z.ZodBoolean>;
362
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
438
+ value: z.ZodObject<{
439
+ interfaceId: z.ZodString;
440
+ includeInterfaceView: z.ZodBoolean;
441
+ includeCreatedEventBlob: z.ZodBoolean;
442
+ }, z.core.$strip>;
363
443
  }, z.core.$strip>;
364
444
  }, z.core.$strip>, z.ZodObject<{
365
445
  TemplateFilter: z.ZodObject<{
366
- templateId: z.ZodString;
367
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
446
+ value: z.ZodObject<{
447
+ templateId: z.ZodString;
448
+ includeCreatedEventBlob: z.ZodBoolean;
449
+ }, z.core.$strip>;
368
450
  }, z.core.$strip>;
369
451
  }, z.core.$strip>, z.ZodObject<{
370
452
  WildcardFilter: z.ZodObject<{
371
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
453
+ value: z.ZodObject<{
454
+ includeCreatedEventBlob: z.ZodBoolean;
455
+ }, z.core.$strip>;
372
456
  }, z.core.$strip>;
373
457
  }, z.core.$strip>]>;
374
458
  }, z.core.$strip>>;
@@ -379,18 +463,24 @@ export declare const GetUpdateTreesParamsSchema: z.ZodObject<{
379
463
  Empty: z.ZodObject<{}, z.core.$strip>;
380
464
  }, z.core.$strip>, z.ZodObject<{
381
465
  InterfaceFilter: z.ZodObject<{
382
- interfaceId: z.ZodString;
383
- includeInterfaceView: z.ZodOptional<z.ZodBoolean>;
384
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
466
+ value: z.ZodObject<{
467
+ interfaceId: z.ZodString;
468
+ includeInterfaceView: z.ZodBoolean;
469
+ includeCreatedEventBlob: z.ZodBoolean;
470
+ }, z.core.$strip>;
385
471
  }, z.core.$strip>;
386
472
  }, z.core.$strip>, z.ZodObject<{
387
473
  TemplateFilter: z.ZodObject<{
388
- templateId: z.ZodString;
389
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
474
+ value: z.ZodObject<{
475
+ templateId: z.ZodString;
476
+ includeCreatedEventBlob: z.ZodBoolean;
477
+ }, z.core.$strip>;
390
478
  }, z.core.$strip>;
391
479
  }, z.core.$strip>, z.ZodObject<{
392
480
  WildcardFilter: z.ZodObject<{
393
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
481
+ value: z.ZodObject<{
482
+ includeCreatedEventBlob: z.ZodBoolean;
483
+ }, z.core.$strip>;
394
484
  }, z.core.$strip>;
395
485
  }, z.core.$strip>]>;
396
486
  }, z.core.$strip>>;
@@ -418,18 +508,24 @@ export declare const GetTransactionByOffsetParamsSchema: z.ZodObject<{
418
508
  Empty: z.ZodObject<{}, z.core.$strip>;
419
509
  }, z.core.$strip>, z.ZodObject<{
420
510
  InterfaceFilter: z.ZodObject<{
421
- interfaceId: z.ZodString;
422
- includeInterfaceView: z.ZodOptional<z.ZodBoolean>;
423
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
511
+ value: z.ZodObject<{
512
+ interfaceId: z.ZodString;
513
+ includeInterfaceView: z.ZodBoolean;
514
+ includeCreatedEventBlob: z.ZodBoolean;
515
+ }, z.core.$strip>;
424
516
  }, z.core.$strip>;
425
517
  }, z.core.$strip>, z.ZodObject<{
426
518
  TemplateFilter: z.ZodObject<{
427
- templateId: z.ZodString;
428
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
519
+ value: z.ZodObject<{
520
+ templateId: z.ZodString;
521
+ includeCreatedEventBlob: z.ZodBoolean;
522
+ }, z.core.$strip>;
429
523
  }, z.core.$strip>;
430
524
  }, z.core.$strip>, z.ZodObject<{
431
525
  WildcardFilter: z.ZodObject<{
432
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
526
+ value: z.ZodObject<{
527
+ includeCreatedEventBlob: z.ZodBoolean;
528
+ }, z.core.$strip>;
433
529
  }, z.core.$strip>;
434
530
  }, z.core.$strip>]>;
435
531
  }, z.core.$strip>>;
@@ -440,18 +536,24 @@ export declare const GetTransactionByOffsetParamsSchema: z.ZodObject<{
440
536
  Empty: z.ZodObject<{}, z.core.$strip>;
441
537
  }, z.core.$strip>, z.ZodObject<{
442
538
  InterfaceFilter: z.ZodObject<{
443
- interfaceId: z.ZodString;
444
- includeInterfaceView: z.ZodOptional<z.ZodBoolean>;
445
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
539
+ value: z.ZodObject<{
540
+ interfaceId: z.ZodString;
541
+ includeInterfaceView: z.ZodBoolean;
542
+ includeCreatedEventBlob: z.ZodBoolean;
543
+ }, z.core.$strip>;
446
544
  }, z.core.$strip>;
447
545
  }, z.core.$strip>, z.ZodObject<{
448
546
  TemplateFilter: z.ZodObject<{
449
- templateId: z.ZodString;
450
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
547
+ value: z.ZodObject<{
548
+ templateId: z.ZodString;
549
+ includeCreatedEventBlob: z.ZodBoolean;
550
+ }, z.core.$strip>;
451
551
  }, z.core.$strip>;
452
552
  }, z.core.$strip>, z.ZodObject<{
453
553
  WildcardFilter: z.ZodObject<{
454
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
554
+ value: z.ZodObject<{
555
+ includeCreatedEventBlob: z.ZodBoolean;
556
+ }, z.core.$strip>;
455
557
  }, z.core.$strip>;
456
558
  }, z.core.$strip>]>;
457
559
  }, z.core.$strip>>;
@@ -473,18 +575,24 @@ export declare const GetUpdateByOffsetParamsSchema: z.ZodObject<{
473
575
  Empty: z.ZodObject<{}, z.core.$strip>;
474
576
  }, z.core.$strip>, z.ZodObject<{
475
577
  InterfaceFilter: z.ZodObject<{
476
- interfaceId: z.ZodString;
477
- includeInterfaceView: z.ZodOptional<z.ZodBoolean>;
478
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
578
+ value: z.ZodObject<{
579
+ interfaceId: z.ZodString;
580
+ includeInterfaceView: z.ZodBoolean;
581
+ includeCreatedEventBlob: z.ZodBoolean;
582
+ }, z.core.$strip>;
479
583
  }, z.core.$strip>;
480
584
  }, z.core.$strip>, z.ZodObject<{
481
585
  TemplateFilter: z.ZodObject<{
482
- templateId: z.ZodString;
483
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
586
+ value: z.ZodObject<{
587
+ templateId: z.ZodString;
588
+ includeCreatedEventBlob: z.ZodBoolean;
589
+ }, z.core.$strip>;
484
590
  }, z.core.$strip>;
485
591
  }, z.core.$strip>, z.ZodObject<{
486
592
  WildcardFilter: z.ZodObject<{
487
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
593
+ value: z.ZodObject<{
594
+ includeCreatedEventBlob: z.ZodBoolean;
595
+ }, z.core.$strip>;
488
596
  }, z.core.$strip>;
489
597
  }, z.core.$strip>]>;
490
598
  }, z.core.$strip>>;
@@ -495,18 +603,24 @@ export declare const GetUpdateByOffsetParamsSchema: z.ZodObject<{
495
603
  Empty: z.ZodObject<{}, z.core.$strip>;
496
604
  }, z.core.$strip>, z.ZodObject<{
497
605
  InterfaceFilter: z.ZodObject<{
498
- interfaceId: z.ZodString;
499
- includeInterfaceView: z.ZodOptional<z.ZodBoolean>;
500
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
606
+ value: z.ZodObject<{
607
+ interfaceId: z.ZodString;
608
+ includeInterfaceView: z.ZodBoolean;
609
+ includeCreatedEventBlob: z.ZodBoolean;
610
+ }, z.core.$strip>;
501
611
  }, z.core.$strip>;
502
612
  }, z.core.$strip>, z.ZodObject<{
503
613
  TemplateFilter: z.ZodObject<{
504
- templateId: z.ZodString;
505
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
614
+ value: z.ZodObject<{
615
+ templateId: z.ZodString;
616
+ includeCreatedEventBlob: z.ZodBoolean;
617
+ }, z.core.$strip>;
506
618
  }, z.core.$strip>;
507
619
  }, z.core.$strip>, z.ZodObject<{
508
620
  WildcardFilter: z.ZodObject<{
509
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
621
+ value: z.ZodObject<{
622
+ includeCreatedEventBlob: z.ZodBoolean;
623
+ }, z.core.$strip>;
510
624
  }, z.core.$strip>;
511
625
  }, z.core.$strip>]>;
512
626
  }, z.core.$strip>>;
@@ -522,18 +636,24 @@ export declare const GetUpdateByOffsetParamsSchema: z.ZodObject<{
522
636
  Empty: z.ZodObject<{}, z.core.$strip>;
523
637
  }, z.core.$strip>, z.ZodObject<{
524
638
  InterfaceFilter: z.ZodObject<{
525
- interfaceId: z.ZodString;
526
- includeInterfaceView: z.ZodOptional<z.ZodBoolean>;
527
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
639
+ value: z.ZodObject<{
640
+ interfaceId: z.ZodString;
641
+ includeInterfaceView: z.ZodBoolean;
642
+ includeCreatedEventBlob: z.ZodBoolean;
643
+ }, z.core.$strip>;
528
644
  }, z.core.$strip>;
529
645
  }, z.core.$strip>, z.ZodObject<{
530
646
  TemplateFilter: z.ZodObject<{
531
- templateId: z.ZodString;
532
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
647
+ value: z.ZodObject<{
648
+ templateId: z.ZodString;
649
+ includeCreatedEventBlob: z.ZodBoolean;
650
+ }, z.core.$strip>;
533
651
  }, z.core.$strip>;
534
652
  }, z.core.$strip>, z.ZodObject<{
535
653
  WildcardFilter: z.ZodObject<{
536
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
654
+ value: z.ZodObject<{
655
+ includeCreatedEventBlob: z.ZodBoolean;
656
+ }, z.core.$strip>;
537
657
  }, z.core.$strip>;
538
658
  }, z.core.$strip>]>;
539
659
  }, z.core.$strip>>;
@@ -544,18 +664,24 @@ export declare const GetUpdateByOffsetParamsSchema: z.ZodObject<{
544
664
  Empty: z.ZodObject<{}, z.core.$strip>;
545
665
  }, z.core.$strip>, z.ZodObject<{
546
666
  InterfaceFilter: z.ZodObject<{
547
- interfaceId: z.ZodString;
548
- includeInterfaceView: z.ZodOptional<z.ZodBoolean>;
549
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
667
+ value: z.ZodObject<{
668
+ interfaceId: z.ZodString;
669
+ includeInterfaceView: z.ZodBoolean;
670
+ includeCreatedEventBlob: z.ZodBoolean;
671
+ }, z.core.$strip>;
550
672
  }, z.core.$strip>;
551
673
  }, z.core.$strip>, z.ZodObject<{
552
674
  TemplateFilter: z.ZodObject<{
553
- templateId: z.ZodString;
554
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
675
+ value: z.ZodObject<{
676
+ templateId: z.ZodString;
677
+ includeCreatedEventBlob: z.ZodBoolean;
678
+ }, z.core.$strip>;
555
679
  }, z.core.$strip>;
556
680
  }, z.core.$strip>, z.ZodObject<{
557
681
  WildcardFilter: z.ZodObject<{
558
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
682
+ value: z.ZodObject<{
683
+ includeCreatedEventBlob: z.ZodBoolean;
684
+ }, z.core.$strip>;
559
685
  }, z.core.$strip>;
560
686
  }, z.core.$strip>]>;
561
687
  }, z.core.$strip>>;
@@ -580,18 +706,24 @@ export declare const GetTransactionByIdParamsSchema: z.ZodObject<{
580
706
  Empty: z.ZodObject<{}, z.core.$strip>;
581
707
  }, z.core.$strip>, z.ZodObject<{
582
708
  InterfaceFilter: z.ZodObject<{
583
- interfaceId: z.ZodString;
584
- includeInterfaceView: z.ZodOptional<z.ZodBoolean>;
585
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
709
+ value: z.ZodObject<{
710
+ interfaceId: z.ZodString;
711
+ includeInterfaceView: z.ZodBoolean;
712
+ includeCreatedEventBlob: z.ZodBoolean;
713
+ }, z.core.$strip>;
586
714
  }, z.core.$strip>;
587
715
  }, z.core.$strip>, z.ZodObject<{
588
716
  TemplateFilter: z.ZodObject<{
589
- templateId: z.ZodString;
590
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
717
+ value: z.ZodObject<{
718
+ templateId: z.ZodString;
719
+ includeCreatedEventBlob: z.ZodBoolean;
720
+ }, z.core.$strip>;
591
721
  }, z.core.$strip>;
592
722
  }, z.core.$strip>, z.ZodObject<{
593
723
  WildcardFilter: z.ZodObject<{
594
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
724
+ value: z.ZodObject<{
725
+ includeCreatedEventBlob: z.ZodBoolean;
726
+ }, z.core.$strip>;
595
727
  }, z.core.$strip>;
596
728
  }, z.core.$strip>]>;
597
729
  }, z.core.$strip>>;
@@ -602,18 +734,24 @@ export declare const GetTransactionByIdParamsSchema: z.ZodObject<{
602
734
  Empty: z.ZodObject<{}, z.core.$strip>;
603
735
  }, z.core.$strip>, z.ZodObject<{
604
736
  InterfaceFilter: z.ZodObject<{
605
- interfaceId: z.ZodString;
606
- includeInterfaceView: z.ZodOptional<z.ZodBoolean>;
607
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
737
+ value: z.ZodObject<{
738
+ interfaceId: z.ZodString;
739
+ includeInterfaceView: z.ZodBoolean;
740
+ includeCreatedEventBlob: z.ZodBoolean;
741
+ }, z.core.$strip>;
608
742
  }, z.core.$strip>;
609
743
  }, z.core.$strip>, z.ZodObject<{
610
744
  TemplateFilter: z.ZodObject<{
611
- templateId: z.ZodString;
612
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
745
+ value: z.ZodObject<{
746
+ templateId: z.ZodString;
747
+ includeCreatedEventBlob: z.ZodBoolean;
748
+ }, z.core.$strip>;
613
749
  }, z.core.$strip>;
614
750
  }, z.core.$strip>, z.ZodObject<{
615
751
  WildcardFilter: z.ZodObject<{
616
- includeCreatedEventBlob: z.ZodOptional<z.ZodBoolean>;
752
+ value: z.ZodObject<{
753
+ includeCreatedEventBlob: z.ZodBoolean;
754
+ }, z.core.$strip>;
617
755
  }, z.core.$strip>;
618
756
  }, z.core.$strip>]>;
619
757
  }, z.core.$strip>>;