@layer-drone/protocol 0.1.3 → 0.2.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.mts +653 -5
- package/dist/index.d.ts +653 -5
- package/dist/index.js +293 -1
- package/dist/index.mjs +279 -1
- package/package.json +2 -2
- package/src/client/sdk.gen.ts +430 -0
- package/src/client/transformers.gen.ts +85 -0
- package/src/client/types.gen.ts +715 -0
- package/src/event/types.gen.ts +11 -0
package/dist/index.d.mts
CHANGED
|
@@ -8,16 +8,16 @@ type CreateApiTokenResponseDto = {
|
|
|
8
8
|
deleted_at: Date;
|
|
9
9
|
last_used: Date;
|
|
10
10
|
org: number;
|
|
11
|
-
scopes: Array<"manageTokens" | "manageFlights" | "manageMissions" | "manageWebhooks" | "all">;
|
|
11
|
+
scopes: Array<"manageTokens" | "manageFlights" | "manageMissions" | "manageVaults" | "manageWebhooks" | "manageContracts" | "redrive" | "updateOnChainData" | "all">;
|
|
12
12
|
};
|
|
13
13
|
type CreateApiTokenRequestDto = {
|
|
14
14
|
name: string;
|
|
15
|
-
scopes: Array<"manageTokens" | "manageFlights" | "manageMissions" | "manageWebhooks" | "all">;
|
|
15
|
+
scopes: Array<"manageTokens" | "manageFlights" | "manageMissions" | "manageVaults" | "manageWebhooks" | "manageContracts" | "redrive" | "updateOnChainData" | "all">;
|
|
16
16
|
orgId: number;
|
|
17
17
|
};
|
|
18
18
|
type UpdateApiTokenRequestDto = {
|
|
19
19
|
name?: string;
|
|
20
|
-
scopes?: Array<"manageTokens" | "manageFlights" | "manageMissions" | "manageWebhooks" | "all">;
|
|
20
|
+
scopes?: Array<"manageTokens" | "manageFlights" | "manageMissions" | "manageVaults" | "manageWebhooks" | "manageContracts" | "redrive" | "updateOnChainData" | "all">;
|
|
21
21
|
};
|
|
22
22
|
type UpdateApiTokenResponseDto = {
|
|
23
23
|
id: string;
|
|
@@ -25,7 +25,7 @@ type UpdateApiTokenResponseDto = {
|
|
|
25
25
|
deleted_at: Date;
|
|
26
26
|
last_used: Date;
|
|
27
27
|
org: number;
|
|
28
|
-
scopes: Array<"manageTokens" | "manageFlights" | "manageMissions" | "manageWebhooks" | "all">;
|
|
28
|
+
scopes: Array<"manageTokens" | "manageFlights" | "manageMissions" | "manageVaults" | "manageWebhooks" | "manageContracts" | "redrive" | "updateOnChainData" | "all">;
|
|
29
29
|
};
|
|
30
30
|
type GetTimeLimitsForSunAltitudeResponse = {
|
|
31
31
|
OptimalSunAltitudePeriod: {
|
|
@@ -40,6 +40,182 @@ type GetTimeLimitsForSunAltitudeResponse = {
|
|
|
40
40
|
};
|
|
41
41
|
SunAltitudeInDegrees: number;
|
|
42
42
|
};
|
|
43
|
+
type CreateContractRequestDto = {
|
|
44
|
+
type: "BASE";
|
|
45
|
+
name: string;
|
|
46
|
+
address: string;
|
|
47
|
+
chainId: number;
|
|
48
|
+
version?: string;
|
|
49
|
+
active?: boolean;
|
|
50
|
+
deploymentTx?: string;
|
|
51
|
+
deploymentBlock?: number;
|
|
52
|
+
deployedAt?: Date;
|
|
53
|
+
} | {
|
|
54
|
+
type: "ERC20";
|
|
55
|
+
name: string;
|
|
56
|
+
address: string;
|
|
57
|
+
chainId: number;
|
|
58
|
+
version?: string;
|
|
59
|
+
active?: boolean;
|
|
60
|
+
deploymentTx?: string;
|
|
61
|
+
deploymentBlock?: number;
|
|
62
|
+
deployedAt?: Date;
|
|
63
|
+
symbol: string;
|
|
64
|
+
decimals: number;
|
|
65
|
+
isPaymentToken?: boolean;
|
|
66
|
+
};
|
|
67
|
+
type CreateContractResponseDto = {
|
|
68
|
+
success: boolean;
|
|
69
|
+
data: {
|
|
70
|
+
type: "BASE";
|
|
71
|
+
name: string;
|
|
72
|
+
address: string;
|
|
73
|
+
chainId: number;
|
|
74
|
+
version?: string;
|
|
75
|
+
active?: boolean;
|
|
76
|
+
deploymentTx?: string;
|
|
77
|
+
deploymentBlock?: number;
|
|
78
|
+
deployedAt?: Date;
|
|
79
|
+
} | {
|
|
80
|
+
type: "ERC20";
|
|
81
|
+
name: string;
|
|
82
|
+
address: string;
|
|
83
|
+
chainId: number;
|
|
84
|
+
version?: string;
|
|
85
|
+
active?: boolean;
|
|
86
|
+
deploymentTx?: string;
|
|
87
|
+
deploymentBlock?: number;
|
|
88
|
+
deployedAt?: Date;
|
|
89
|
+
symbol: string;
|
|
90
|
+
decimals: number;
|
|
91
|
+
isPaymentToken?: boolean;
|
|
92
|
+
};
|
|
93
|
+
};
|
|
94
|
+
type GetContractsResponseDto = {
|
|
95
|
+
success: boolean;
|
|
96
|
+
data: Array<{
|
|
97
|
+
type: "BASE";
|
|
98
|
+
name: string;
|
|
99
|
+
address: string;
|
|
100
|
+
chainId: number;
|
|
101
|
+
version?: string;
|
|
102
|
+
active?: boolean;
|
|
103
|
+
deploymentTx?: string;
|
|
104
|
+
deploymentBlock?: number;
|
|
105
|
+
deployedAt?: Date;
|
|
106
|
+
} | {
|
|
107
|
+
type: "ERC20";
|
|
108
|
+
name: string;
|
|
109
|
+
address: string;
|
|
110
|
+
chainId: number;
|
|
111
|
+
version?: string;
|
|
112
|
+
active?: boolean;
|
|
113
|
+
deploymentTx?: string;
|
|
114
|
+
deploymentBlock?: number;
|
|
115
|
+
deployedAt?: Date;
|
|
116
|
+
symbol: string;
|
|
117
|
+
decimals: number;
|
|
118
|
+
isPaymentToken?: boolean;
|
|
119
|
+
}>;
|
|
120
|
+
};
|
|
121
|
+
type GetContractResponseDto = {
|
|
122
|
+
success: boolean;
|
|
123
|
+
data: {
|
|
124
|
+
type: "BASE";
|
|
125
|
+
name: string;
|
|
126
|
+
address: string;
|
|
127
|
+
chainId: number;
|
|
128
|
+
version?: string;
|
|
129
|
+
active?: boolean;
|
|
130
|
+
deploymentTx?: string;
|
|
131
|
+
deploymentBlock?: number;
|
|
132
|
+
deployedAt?: Date;
|
|
133
|
+
} | {
|
|
134
|
+
type: "ERC20";
|
|
135
|
+
name: string;
|
|
136
|
+
address: string;
|
|
137
|
+
chainId: number;
|
|
138
|
+
version?: string;
|
|
139
|
+
active?: boolean;
|
|
140
|
+
deploymentTx?: string;
|
|
141
|
+
deploymentBlock?: number;
|
|
142
|
+
deployedAt?: Date;
|
|
143
|
+
symbol: string;
|
|
144
|
+
decimals: number;
|
|
145
|
+
isPaymentToken?: boolean;
|
|
146
|
+
};
|
|
147
|
+
};
|
|
148
|
+
type UpdateContractRequestDto = {
|
|
149
|
+
type: "BASE";
|
|
150
|
+
name?: string;
|
|
151
|
+
address?: string;
|
|
152
|
+
chainId?: number;
|
|
153
|
+
version?: string;
|
|
154
|
+
active?: boolean;
|
|
155
|
+
deploymentTx?: string;
|
|
156
|
+
deploymentBlock?: number;
|
|
157
|
+
deployedAt?: Date;
|
|
158
|
+
} | {
|
|
159
|
+
type: "ERC20";
|
|
160
|
+
name?: string;
|
|
161
|
+
address?: string;
|
|
162
|
+
chainId?: number;
|
|
163
|
+
version?: string;
|
|
164
|
+
active?: boolean;
|
|
165
|
+
deploymentTx?: string;
|
|
166
|
+
deploymentBlock?: number;
|
|
167
|
+
deployedAt?: Date;
|
|
168
|
+
symbol?: string;
|
|
169
|
+
decimals?: number;
|
|
170
|
+
isPaymentToken?: boolean;
|
|
171
|
+
};
|
|
172
|
+
type UpdateContractResponseDto = {
|
|
173
|
+
success: boolean;
|
|
174
|
+
data: {
|
|
175
|
+
type: "BASE";
|
|
176
|
+
name: string;
|
|
177
|
+
address: string;
|
|
178
|
+
chainId: number;
|
|
179
|
+
version?: string;
|
|
180
|
+
active?: boolean;
|
|
181
|
+
deploymentTx?: string;
|
|
182
|
+
deploymentBlock?: number;
|
|
183
|
+
deployedAt?: Date;
|
|
184
|
+
} | {
|
|
185
|
+
type: "ERC20";
|
|
186
|
+
name: string;
|
|
187
|
+
address: string;
|
|
188
|
+
chainId: number;
|
|
189
|
+
version?: string;
|
|
190
|
+
active?: boolean;
|
|
191
|
+
deploymentTx?: string;
|
|
192
|
+
deploymentBlock?: number;
|
|
193
|
+
deployedAt?: Date;
|
|
194
|
+
symbol: string;
|
|
195
|
+
decimals: number;
|
|
196
|
+
isPaymentToken?: boolean;
|
|
197
|
+
};
|
|
198
|
+
};
|
|
199
|
+
type DeleteContractResponseDto = {
|
|
200
|
+
success: boolean;
|
|
201
|
+
message: string;
|
|
202
|
+
};
|
|
203
|
+
type RedriveDlqRequestDto = {
|
|
204
|
+
topic: string;
|
|
205
|
+
batchSize?: number;
|
|
206
|
+
dryRun?: boolean;
|
|
207
|
+
resetOffsets?: boolean;
|
|
208
|
+
};
|
|
209
|
+
type RedriveDlqResponseDto = {
|
|
210
|
+
success: boolean;
|
|
211
|
+
message: string;
|
|
212
|
+
stats: {
|
|
213
|
+
total: number;
|
|
214
|
+
succeeded: number;
|
|
215
|
+
failed: number;
|
|
216
|
+
skipped: number;
|
|
217
|
+
};
|
|
218
|
+
};
|
|
43
219
|
type FlightDto = {
|
|
44
220
|
token_id: string;
|
|
45
221
|
mission_id: string;
|
|
@@ -92,6 +268,12 @@ type CreateMissionRequestDto = {
|
|
|
92
268
|
amount: string | number | bigint;
|
|
93
269
|
startTime: Date;
|
|
94
270
|
endTime: Date;
|
|
271
|
+
collateralToken: string;
|
|
272
|
+
decimals: number;
|
|
273
|
+
isReservable: boolean;
|
|
274
|
+
tags?: {
|
|
275
|
+
[key: string]: string;
|
|
276
|
+
};
|
|
95
277
|
}>;
|
|
96
278
|
requestor: string;
|
|
97
279
|
mintOnChain?: boolean;
|
|
@@ -109,6 +291,10 @@ type CreateMissionResponseDto = {
|
|
|
109
291
|
captureStartTime: Date;
|
|
110
292
|
captureEndTime: Date;
|
|
111
293
|
requestor: string;
|
|
294
|
+
isReservable: boolean;
|
|
295
|
+
tags?: {
|
|
296
|
+
[key: string]: string;
|
|
297
|
+
};
|
|
112
298
|
}>;
|
|
113
299
|
};
|
|
114
300
|
};
|
|
@@ -117,6 +303,8 @@ type UpdateMissionsRequestDto = {
|
|
|
117
303
|
id: string | number | bigint;
|
|
118
304
|
amount?: string | number | bigint;
|
|
119
305
|
isOpen?: boolean;
|
|
306
|
+
collateralToken?: string;
|
|
307
|
+
decimals?: number;
|
|
120
308
|
}>;
|
|
121
309
|
treasuryAddress: string;
|
|
122
310
|
};
|
|
@@ -144,12 +332,37 @@ type RepriceMissionsResponseDto = {
|
|
|
144
332
|
errorMessage?: string;
|
|
145
333
|
};
|
|
146
334
|
};
|
|
335
|
+
type CloseMissionRequestDto = {
|
|
336
|
+
flightId: string | number | bigint;
|
|
337
|
+
};
|
|
338
|
+
type CloseMissionResponseDto = {
|
|
339
|
+
success: boolean;
|
|
340
|
+
};
|
|
147
341
|
type CreateQuoteRequestDto = {
|
|
148
342
|
missionIds: Array<number>;
|
|
149
343
|
entitlementType: string;
|
|
150
344
|
buyer: string;
|
|
151
345
|
mintOnChain: boolean;
|
|
152
346
|
};
|
|
347
|
+
type CreateVaultsRequestDto = {
|
|
348
|
+
vaults: Array<{
|
|
349
|
+
vaultId: string | number | bigint;
|
|
350
|
+
funder: string;
|
|
351
|
+
amount: string | number | bigint;
|
|
352
|
+
collateralToken: string;
|
|
353
|
+
decimals: number;
|
|
354
|
+
}>;
|
|
355
|
+
};
|
|
356
|
+
type CreateVaultsResponseDto = {
|
|
357
|
+
success: boolean;
|
|
358
|
+
data: {
|
|
359
|
+
vaults: Array<{
|
|
360
|
+
vaultId: string;
|
|
361
|
+
success: boolean;
|
|
362
|
+
message?: string;
|
|
363
|
+
}>;
|
|
364
|
+
};
|
|
365
|
+
};
|
|
153
366
|
type CreateWebhookBody = {
|
|
154
367
|
name: string;
|
|
155
368
|
url: string;
|
|
@@ -212,6 +425,102 @@ type GetWebhookStatusResponse = {
|
|
|
212
425
|
status: "inactive" | "error" | "connected" | "connecting";
|
|
213
426
|
error?: string;
|
|
214
427
|
};
|
|
428
|
+
type AlchemyWebhookBodyDto = {
|
|
429
|
+
[key: string]: unknown;
|
|
430
|
+
};
|
|
431
|
+
type CreateInboundWebhookConfigBody = {
|
|
432
|
+
name: string;
|
|
433
|
+
provider: string;
|
|
434
|
+
remote_id: string;
|
|
435
|
+
config: {
|
|
436
|
+
signingKey: string;
|
|
437
|
+
type: "AddressActivity";
|
|
438
|
+
monitoredAddress: string;
|
|
439
|
+
} | {
|
|
440
|
+
signingKey: string;
|
|
441
|
+
type: "Custom";
|
|
442
|
+
};
|
|
443
|
+
};
|
|
444
|
+
type CreateInboundWebhookConfigResponse = {
|
|
445
|
+
id: number;
|
|
446
|
+
name: string;
|
|
447
|
+
provider: string;
|
|
448
|
+
remote_id: string;
|
|
449
|
+
config: {
|
|
450
|
+
signingKey: string;
|
|
451
|
+
type: "AddressActivity";
|
|
452
|
+
monitoredAddress: string;
|
|
453
|
+
} | {
|
|
454
|
+
signingKey: string;
|
|
455
|
+
type: "Custom";
|
|
456
|
+
};
|
|
457
|
+
created_at: Date;
|
|
458
|
+
updated_at: Date;
|
|
459
|
+
};
|
|
460
|
+
type GetInboundWebhookConfigsResponse = Array<{
|
|
461
|
+
id: number;
|
|
462
|
+
name: string;
|
|
463
|
+
provider: string;
|
|
464
|
+
remote_id: string;
|
|
465
|
+
config: {
|
|
466
|
+
signingKey: string;
|
|
467
|
+
type: "AddressActivity";
|
|
468
|
+
monitoredAddress: string;
|
|
469
|
+
} | {
|
|
470
|
+
signingKey: string;
|
|
471
|
+
type: "Custom";
|
|
472
|
+
};
|
|
473
|
+
created_at: Date;
|
|
474
|
+
updated_at: Date;
|
|
475
|
+
}>;
|
|
476
|
+
type GetInboundWebhookConfigResponse = {
|
|
477
|
+
id: number;
|
|
478
|
+
name: string;
|
|
479
|
+
provider: string;
|
|
480
|
+
remote_id: string;
|
|
481
|
+
config: {
|
|
482
|
+
signingKey: string;
|
|
483
|
+
type: "AddressActivity";
|
|
484
|
+
monitoredAddress: string;
|
|
485
|
+
} | {
|
|
486
|
+
signingKey: string;
|
|
487
|
+
type: "Custom";
|
|
488
|
+
};
|
|
489
|
+
created_at: Date;
|
|
490
|
+
updated_at: Date;
|
|
491
|
+
};
|
|
492
|
+
type UpdateInboundWebhookConfigBody = {
|
|
493
|
+
name?: string;
|
|
494
|
+
provider?: string;
|
|
495
|
+
remote_id?: string;
|
|
496
|
+
config?: {
|
|
497
|
+
signingKey: string;
|
|
498
|
+
type: "AddressActivity";
|
|
499
|
+
monitoredAddress: string;
|
|
500
|
+
} | {
|
|
501
|
+
signingKey: string;
|
|
502
|
+
type: "Custom";
|
|
503
|
+
};
|
|
504
|
+
};
|
|
505
|
+
type UpdateInboundWebhookConfigResponse = {
|
|
506
|
+
id: number;
|
|
507
|
+
name: string;
|
|
508
|
+
provider: string;
|
|
509
|
+
remote_id: string;
|
|
510
|
+
config: {
|
|
511
|
+
signingKey: string;
|
|
512
|
+
type: "AddressActivity";
|
|
513
|
+
monitoredAddress: string;
|
|
514
|
+
} | {
|
|
515
|
+
signingKey: string;
|
|
516
|
+
type: "Custom";
|
|
517
|
+
};
|
|
518
|
+
created_at: Date;
|
|
519
|
+
updated_at: Date;
|
|
520
|
+
};
|
|
521
|
+
type DeleteInboundWebhookConfigResponse = {
|
|
522
|
+
message: string;
|
|
523
|
+
};
|
|
215
524
|
type ApiControllerGetHelloData = {
|
|
216
525
|
body?: never;
|
|
217
526
|
path?: never;
|
|
@@ -305,6 +614,104 @@ type ConditionsControllerGetSunAltitudeTimeLimitsResponses = {
|
|
|
305
614
|
200: GetTimeLimitsForSunAltitudeResponse;
|
|
306
615
|
};
|
|
307
616
|
type ConditionsControllerGetSunAltitudeTimeLimitsResponse = ConditionsControllerGetSunAltitudeTimeLimitsResponses[keyof ConditionsControllerGetSunAltitudeTimeLimitsResponses];
|
|
617
|
+
type ContractsControllerGetAllContractsData = {
|
|
618
|
+
body?: never;
|
|
619
|
+
path?: never;
|
|
620
|
+
query?: never;
|
|
621
|
+
url: "/contracts";
|
|
622
|
+
};
|
|
623
|
+
type ContractsControllerGetAllContractsErrors = {
|
|
624
|
+
401: unknown;
|
|
625
|
+
403: unknown;
|
|
626
|
+
};
|
|
627
|
+
type ContractsControllerGetAllContractsResponses = {
|
|
628
|
+
200: GetContractsResponseDto;
|
|
629
|
+
};
|
|
630
|
+
type ContractsControllerGetAllContractsResponse = ContractsControllerGetAllContractsResponses[keyof ContractsControllerGetAllContractsResponses];
|
|
631
|
+
type ContractsControllerCreateContractData = {
|
|
632
|
+
body: CreateContractRequestDto;
|
|
633
|
+
path?: never;
|
|
634
|
+
query?: never;
|
|
635
|
+
url: "/contracts";
|
|
636
|
+
};
|
|
637
|
+
type ContractsControllerCreateContractErrors = {
|
|
638
|
+
400: unknown;
|
|
639
|
+
401: unknown;
|
|
640
|
+
403: unknown;
|
|
641
|
+
409: unknown;
|
|
642
|
+
};
|
|
643
|
+
type ContractsControllerCreateContractResponses = {
|
|
644
|
+
201: CreateContractResponseDto;
|
|
645
|
+
};
|
|
646
|
+
type ContractsControllerCreateContractResponse = ContractsControllerCreateContractResponses[keyof ContractsControllerCreateContractResponses];
|
|
647
|
+
type ContractsControllerDeleteContractData = {
|
|
648
|
+
body?: never;
|
|
649
|
+
path: {
|
|
650
|
+
id: number;
|
|
651
|
+
};
|
|
652
|
+
query?: never;
|
|
653
|
+
url: "/contracts/{id}";
|
|
654
|
+
};
|
|
655
|
+
type ContractsControllerDeleteContractErrors = {
|
|
656
|
+
401: unknown;
|
|
657
|
+
403: unknown;
|
|
658
|
+
404: unknown;
|
|
659
|
+
};
|
|
660
|
+
type ContractsControllerDeleteContractResponses = {
|
|
661
|
+
200: DeleteContractResponseDto;
|
|
662
|
+
};
|
|
663
|
+
type ContractsControllerDeleteContractResponse = ContractsControllerDeleteContractResponses[keyof ContractsControllerDeleteContractResponses];
|
|
664
|
+
type ContractsControllerGetContractData = {
|
|
665
|
+
body?: never;
|
|
666
|
+
path: {
|
|
667
|
+
id: number;
|
|
668
|
+
};
|
|
669
|
+
query?: never;
|
|
670
|
+
url: "/contracts/{id}";
|
|
671
|
+
};
|
|
672
|
+
type ContractsControllerGetContractErrors = {
|
|
673
|
+
401: unknown;
|
|
674
|
+
403: unknown;
|
|
675
|
+
404: unknown;
|
|
676
|
+
};
|
|
677
|
+
type ContractsControllerGetContractResponses = {
|
|
678
|
+
200: GetContractResponseDto;
|
|
679
|
+
};
|
|
680
|
+
type ContractsControllerGetContractResponse = ContractsControllerGetContractResponses[keyof ContractsControllerGetContractResponses];
|
|
681
|
+
type ContractsControllerUpdateContractData = {
|
|
682
|
+
body: UpdateContractRequestDto;
|
|
683
|
+
path: {
|
|
684
|
+
id: number;
|
|
685
|
+
};
|
|
686
|
+
query?: never;
|
|
687
|
+
url: "/contracts/{id}";
|
|
688
|
+
};
|
|
689
|
+
type ContractsControllerUpdateContractErrors = {
|
|
690
|
+
401: unknown;
|
|
691
|
+
403: unknown;
|
|
692
|
+
404: unknown;
|
|
693
|
+
409: unknown;
|
|
694
|
+
};
|
|
695
|
+
type ContractsControllerUpdateContractResponses = {
|
|
696
|
+
200: UpdateContractResponseDto;
|
|
697
|
+
};
|
|
698
|
+
type ContractsControllerUpdateContractResponse = ContractsControllerUpdateContractResponses[keyof ContractsControllerUpdateContractResponses];
|
|
699
|
+
type DlqRedriverControllerRedriveDlqData = {
|
|
700
|
+
body: RedriveDlqRequestDto;
|
|
701
|
+
path?: never;
|
|
702
|
+
query?: never;
|
|
703
|
+
url: "/dlq-redriver/redrive";
|
|
704
|
+
};
|
|
705
|
+
type DlqRedriverControllerRedriveDlqErrors = {
|
|
706
|
+
400: unknown;
|
|
707
|
+
401: unknown;
|
|
708
|
+
403: unknown;
|
|
709
|
+
500: unknown;
|
|
710
|
+
};
|
|
711
|
+
type DlqRedriverControllerRedriveDlqResponses = {
|
|
712
|
+
200: RedriveDlqResponseDto;
|
|
713
|
+
};
|
|
714
|
+
type DlqRedriverControllerRedriveDlqResponse = DlqRedriverControllerRedriveDlqResponses[keyof DlqRedriverControllerRedriveDlqResponses];
|
|
308
715
|
type FlightsControllerGenerateStorageKeyData = {
|
|
309
716
|
body?: never;
|
|
310
717
|
path?: never;
|
|
@@ -421,6 +828,24 @@ type MissionsControllerRepriceMissionsResponses = {
|
|
|
421
828
|
200: RepriceMissionsResponseDto;
|
|
422
829
|
};
|
|
423
830
|
type MissionsControllerRepriceMissionsResponse = MissionsControllerRepriceMissionsResponses[keyof MissionsControllerRepriceMissionsResponses];
|
|
831
|
+
type MissionsControllerCloseMissionData = {
|
|
832
|
+
body: CloseMissionRequestDto;
|
|
833
|
+
path: {
|
|
834
|
+
id: string;
|
|
835
|
+
};
|
|
836
|
+
query?: never;
|
|
837
|
+
url: "/missions/{id}/close";
|
|
838
|
+
};
|
|
839
|
+
type MissionsControllerCloseMissionErrors = {
|
|
840
|
+
400: unknown;
|
|
841
|
+
401: unknown;
|
|
842
|
+
403: unknown;
|
|
843
|
+
500: unknown;
|
|
844
|
+
};
|
|
845
|
+
type MissionsControllerCloseMissionResponses = {
|
|
846
|
+
201: CloseMissionResponseDto;
|
|
847
|
+
};
|
|
848
|
+
type MissionsControllerCloseMissionResponse = MissionsControllerCloseMissionResponses[keyof MissionsControllerCloseMissionResponses];
|
|
424
849
|
type QuotesControllerCreateQuoteData = {
|
|
425
850
|
body: CreateQuoteRequestDto;
|
|
426
851
|
path?: never;
|
|
@@ -458,6 +883,22 @@ type SchemaControllerGetEventSchemaData = {
|
|
|
458
883
|
type SchemaControllerGetEventSchemaResponses = {
|
|
459
884
|
200: unknown;
|
|
460
885
|
};
|
|
886
|
+
type VaultsControllerCreateVaultsData = {
|
|
887
|
+
body: CreateVaultsRequestDto;
|
|
888
|
+
path?: never;
|
|
889
|
+
query?: never;
|
|
890
|
+
url: "/vaults";
|
|
891
|
+
};
|
|
892
|
+
type VaultsControllerCreateVaultsErrors = {
|
|
893
|
+
400: unknown;
|
|
894
|
+
401: unknown;
|
|
895
|
+
403: unknown;
|
|
896
|
+
500: unknown;
|
|
897
|
+
};
|
|
898
|
+
type VaultsControllerCreateVaultsResponses = {
|
|
899
|
+
201: CreateVaultsResponseDto;
|
|
900
|
+
};
|
|
901
|
+
type VaultsControllerCreateVaultsResponse = VaultsControllerCreateVaultsResponses[keyof VaultsControllerCreateVaultsResponses];
|
|
461
902
|
type WebhooksControllerGetManyData = {
|
|
462
903
|
body?: never;
|
|
463
904
|
path: {
|
|
@@ -592,6 +1033,91 @@ type WebhooksControllerGetStatusResponses = {
|
|
|
592
1033
|
200: GetWebhookStatusResponse;
|
|
593
1034
|
};
|
|
594
1035
|
type WebhooksControllerGetStatusResponse = WebhooksControllerGetStatusResponses[keyof WebhooksControllerGetStatusResponses];
|
|
1036
|
+
type AlchemyControllerHandleWebhookData = {
|
|
1037
|
+
body: AlchemyWebhookBodyDto;
|
|
1038
|
+
path?: never;
|
|
1039
|
+
query?: never;
|
|
1040
|
+
url: "/webhooks/inbound/alchemy";
|
|
1041
|
+
};
|
|
1042
|
+
type AlchemyControllerHandleWebhookResponses = {
|
|
1043
|
+
200: unknown;
|
|
1044
|
+
};
|
|
1045
|
+
type InboundWebhookConfigsControllerGetManyData = {
|
|
1046
|
+
body?: never;
|
|
1047
|
+
path?: never;
|
|
1048
|
+
query?: never;
|
|
1049
|
+
url: "/webhooks/inbound/configs";
|
|
1050
|
+
};
|
|
1051
|
+
type InboundWebhookConfigsControllerGetManyErrors = {
|
|
1052
|
+
401: unknown;
|
|
1053
|
+
403: unknown;
|
|
1054
|
+
};
|
|
1055
|
+
type InboundWebhookConfigsControllerGetManyResponses = {
|
|
1056
|
+
200: GetInboundWebhookConfigsResponse;
|
|
1057
|
+
};
|
|
1058
|
+
type InboundWebhookConfigsControllerGetManyResponse = InboundWebhookConfigsControllerGetManyResponses[keyof InboundWebhookConfigsControllerGetManyResponses];
|
|
1059
|
+
type InboundWebhookConfigsControllerCreateData = {
|
|
1060
|
+
body: CreateInboundWebhookConfigBody;
|
|
1061
|
+
path?: never;
|
|
1062
|
+
query?: never;
|
|
1063
|
+
url: "/webhooks/inbound/configs";
|
|
1064
|
+
};
|
|
1065
|
+
type InboundWebhookConfigsControllerCreateErrors = {
|
|
1066
|
+
401: unknown;
|
|
1067
|
+
403: unknown;
|
|
1068
|
+
};
|
|
1069
|
+
type InboundWebhookConfigsControllerCreateResponses = {
|
|
1070
|
+
201: CreateInboundWebhookConfigResponse;
|
|
1071
|
+
};
|
|
1072
|
+
type InboundWebhookConfigsControllerCreateResponse = InboundWebhookConfigsControllerCreateResponses[keyof InboundWebhookConfigsControllerCreateResponses];
|
|
1073
|
+
type InboundWebhookConfigsControllerDeleteData = {
|
|
1074
|
+
body?: never;
|
|
1075
|
+
path: {
|
|
1076
|
+
id: number;
|
|
1077
|
+
};
|
|
1078
|
+
query?: never;
|
|
1079
|
+
url: "/webhooks/inbound/configs/{id}";
|
|
1080
|
+
};
|
|
1081
|
+
type InboundWebhookConfigsControllerDeleteErrors = {
|
|
1082
|
+
401: unknown;
|
|
1083
|
+
403: unknown;
|
|
1084
|
+
};
|
|
1085
|
+
type InboundWebhookConfigsControllerDeleteResponses = {
|
|
1086
|
+
200: DeleteInboundWebhookConfigResponse;
|
|
1087
|
+
};
|
|
1088
|
+
type InboundWebhookConfigsControllerDeleteResponse = InboundWebhookConfigsControllerDeleteResponses[keyof InboundWebhookConfigsControllerDeleteResponses];
|
|
1089
|
+
type InboundWebhookConfigsControllerGetData = {
|
|
1090
|
+
body?: never;
|
|
1091
|
+
path: {
|
|
1092
|
+
id: number;
|
|
1093
|
+
};
|
|
1094
|
+
query?: never;
|
|
1095
|
+
url: "/webhooks/inbound/configs/{id}";
|
|
1096
|
+
};
|
|
1097
|
+
type InboundWebhookConfigsControllerGetErrors = {
|
|
1098
|
+
401: unknown;
|
|
1099
|
+
403: unknown;
|
|
1100
|
+
};
|
|
1101
|
+
type InboundWebhookConfigsControllerGetResponses = {
|
|
1102
|
+
200: GetInboundWebhookConfigResponse;
|
|
1103
|
+
};
|
|
1104
|
+
type InboundWebhookConfigsControllerGetResponse = InboundWebhookConfigsControllerGetResponses[keyof InboundWebhookConfigsControllerGetResponses];
|
|
1105
|
+
type InboundWebhookConfigsControllerUpdateData = {
|
|
1106
|
+
body: UpdateInboundWebhookConfigBody;
|
|
1107
|
+
path: {
|
|
1108
|
+
id: number;
|
|
1109
|
+
};
|
|
1110
|
+
query?: never;
|
|
1111
|
+
url: "/webhooks/inbound/configs/{id}";
|
|
1112
|
+
};
|
|
1113
|
+
type InboundWebhookConfigsControllerUpdateErrors = {
|
|
1114
|
+
401: unknown;
|
|
1115
|
+
403: unknown;
|
|
1116
|
+
};
|
|
1117
|
+
type InboundWebhookConfigsControllerUpdateResponses = {
|
|
1118
|
+
200: UpdateInboundWebhookConfigResponse;
|
|
1119
|
+
};
|
|
1120
|
+
type InboundWebhookConfigsControllerUpdateResponse = InboundWebhookConfigsControllerUpdateResponses[keyof InboundWebhookConfigsControllerUpdateResponses];
|
|
595
1121
|
type ClientOptions$1 = {
|
|
596
1122
|
baseUrl: string;
|
|
597
1123
|
};
|
|
@@ -777,6 +1303,12 @@ declare const apiTokenControllerDeleteToken: <ThrowOnError extends boolean = fal
|
|
|
777
1303
|
declare const apiTokenControllerGetToken: <ThrowOnError extends boolean = false>(options: Options<ApiTokenControllerGetTokenData, ThrowOnError>) => RequestResult<ApiTokenControllerGetTokenResponses, ApiTokenControllerGetTokenErrors, ThrowOnError, "fields">;
|
|
778
1304
|
declare const apiTokenControllerUpdateToken: <ThrowOnError extends boolean = false>(options: Options<ApiTokenControllerUpdateTokenData, ThrowOnError>) => RequestResult<ApiTokenControllerUpdateTokenResponses, ApiTokenControllerUpdateTokenErrors, ThrowOnError, "fields">;
|
|
779
1305
|
declare const conditionsControllerGetSunAltitudeTimeLimits: <ThrowOnError extends boolean = false>(options: Options<ConditionsControllerGetSunAltitudeTimeLimitsData, ThrowOnError>) => RequestResult<ConditionsControllerGetSunAltitudeTimeLimitsResponses, unknown, ThrowOnError, "fields">;
|
|
1306
|
+
declare const contractsControllerGetAllContracts: <ThrowOnError extends boolean = false>(options?: Options<ContractsControllerGetAllContractsData, ThrowOnError>) => RequestResult<ContractsControllerGetAllContractsResponses, ContractsControllerGetAllContractsErrors, ThrowOnError, "fields">;
|
|
1307
|
+
declare const contractsControllerCreateContract: <ThrowOnError extends boolean = false>(options: Options<ContractsControllerCreateContractData, ThrowOnError>) => RequestResult<ContractsControllerCreateContractResponses, ContractsControllerCreateContractErrors, ThrowOnError, "fields">;
|
|
1308
|
+
declare const contractsControllerDeleteContract: <ThrowOnError extends boolean = false>(options: Options<ContractsControllerDeleteContractData, ThrowOnError>) => RequestResult<ContractsControllerDeleteContractResponses, ContractsControllerDeleteContractErrors, ThrowOnError, "fields">;
|
|
1309
|
+
declare const contractsControllerGetContract: <ThrowOnError extends boolean = false>(options: Options<ContractsControllerGetContractData, ThrowOnError>) => RequestResult<ContractsControllerGetContractResponses, ContractsControllerGetContractErrors, ThrowOnError, "fields">;
|
|
1310
|
+
declare const contractsControllerUpdateContract: <ThrowOnError extends boolean = false>(options: Options<ContractsControllerUpdateContractData, ThrowOnError>) => RequestResult<ContractsControllerUpdateContractResponses, ContractsControllerUpdateContractErrors, ThrowOnError, "fields">;
|
|
1311
|
+
declare const dlqRedriverControllerRedriveDlq: <ThrowOnError extends boolean = false>(options: Options<DlqRedriverControllerRedriveDlqData, ThrowOnError>) => RequestResult<DlqRedriverControllerRedriveDlqResponses, DlqRedriverControllerRedriveDlqErrors, ThrowOnError, "fields">;
|
|
780
1312
|
declare const flightsControllerGenerateStorageKey: <ThrowOnError extends boolean = false>(options: Options<FlightsControllerGenerateStorageKeyData, ThrowOnError>) => RequestResult<FlightsControllerGenerateStorageKeyResponses, FlightsControllerGenerateStorageKeyErrors, ThrowOnError, "fields">;
|
|
781
1313
|
declare const flightsControllerGetFlight: <ThrowOnError extends boolean = false>(options: Options<FlightsControllerGetFlightData, ThrowOnError>) => RequestResult<FlightsControllerGetFlightResponses, FlightsControllerGetFlightErrors, ThrowOnError, "fields">;
|
|
782
1314
|
declare const flightsControllerCreatePresignedUrls: <ThrowOnError extends boolean = false>(options: Options<FlightsControllerCreatePresignedUrlsData, ThrowOnError>) => RequestResult<FlightsControllerCreatePresignedUrlsResponses, FlightsControllerCreatePresignedUrlsErrors, ThrowOnError, "fields">;
|
|
@@ -785,9 +1317,11 @@ declare const keysControllerGetProvenanceCryptoKey: <ThrowOnError extends boolea
|
|
|
785
1317
|
declare const missionsControllerCreateMissions: <ThrowOnError extends boolean = false>(options: Options<MissionsControllerCreateMissionsData, ThrowOnError>) => RequestResult<MissionsControllerCreateMissionsResponses, MissionsControllerCreateMissionsErrors, ThrowOnError, "fields">;
|
|
786
1318
|
declare const missionsControllerUpdateMissions: <ThrowOnError extends boolean = false>(options: Options<MissionsControllerUpdateMissionsData, ThrowOnError>) => RequestResult<MissionsControllerUpdateMissionsResponses, MissionsControllerUpdateMissionsErrors, ThrowOnError, "fields">;
|
|
787
1319
|
declare const missionsControllerRepriceMissions: <ThrowOnError extends boolean = false>(options: Options<MissionsControllerRepriceMissionsData, ThrowOnError>) => RequestResult<MissionsControllerRepriceMissionsResponses, MissionsControllerRepriceMissionsErrors, ThrowOnError, "fields">;
|
|
1320
|
+
declare const missionsControllerCloseMission: <ThrowOnError extends boolean = false>(options: Options<MissionsControllerCloseMissionData, ThrowOnError>) => RequestResult<MissionsControllerCloseMissionResponses, MissionsControllerCloseMissionErrors, ThrowOnError, "fields">;
|
|
788
1321
|
declare const quotesControllerCreateQuote: <ThrowOnError extends boolean = false>(options: Options<QuotesControllerCreateQuoteData, ThrowOnError>) => RequestResult<QuotesControllerCreateQuoteResponses, QuotesControllerCreateQuoteErrors, ThrowOnError, "fields">;
|
|
789
1322
|
declare const quotesControllerGetQuote: <ThrowOnError extends boolean = false>(options: Options<QuotesControllerGetQuoteData, ThrowOnError>) => RequestResult<QuotesControllerGetQuoteResponses, QuotesControllerGetQuoteErrors, ThrowOnError, "fields">;
|
|
790
1323
|
declare const schemaControllerGetEventSchema: <ThrowOnError extends boolean = false>(options?: Options<SchemaControllerGetEventSchemaData, ThrowOnError>) => RequestResult<SchemaControllerGetEventSchemaResponses, unknown, ThrowOnError, "fields">;
|
|
1324
|
+
declare const vaultsControllerCreateVaults: <ThrowOnError extends boolean = false>(options: Options<VaultsControllerCreateVaultsData, ThrowOnError>) => RequestResult<VaultsControllerCreateVaultsResponses, VaultsControllerCreateVaultsErrors, ThrowOnError, "fields">;
|
|
791
1325
|
declare const webhooksControllerGetMany: <ThrowOnError extends boolean = false>(options: Options<WebhooksControllerGetManyData, ThrowOnError>) => RequestResult<WebhooksControllerGetManyResponses, WebhooksControllerGetManyErrors, ThrowOnError, "fields">;
|
|
792
1326
|
declare const webhooksControllerCreate: <ThrowOnError extends boolean = false>(options: Options<WebhooksControllerCreateData, ThrowOnError>) => RequestResult<WebhooksControllerCreateResponses, WebhooksControllerCreateErrors, ThrowOnError, "fields">;
|
|
793
1327
|
declare const webhooksControllerDelete: <ThrowOnError extends boolean = false>(options: Options<WebhooksControllerDeleteData, ThrowOnError>) => RequestResult<WebhooksControllerDeleteResponses, WebhooksControllerDeleteErrors, ThrowOnError, "fields">;
|
|
@@ -796,6 +1330,12 @@ declare const webhooksControllerUpdate: <ThrowOnError extends boolean = false>(o
|
|
|
796
1330
|
declare const webhooksControllerRegenerateSecret: <ThrowOnError extends boolean = false>(options: Options<WebhooksControllerRegenerateSecretData, ThrowOnError>) => RequestResult<WebhooksControllerRegenerateSecretResponses, WebhooksControllerRegenerateSecretErrors, ThrowOnError, "fields">;
|
|
797
1331
|
declare const webhooksControllerTest: <ThrowOnError extends boolean = false>(options: Options<WebhooksControllerTestData, ThrowOnError>) => RequestResult<WebhooksControllerTestResponses, WebhooksControllerTestErrors, ThrowOnError, "fields">;
|
|
798
1332
|
declare const webhooksControllerGetStatus: <ThrowOnError extends boolean = false>(options: Options<WebhooksControllerGetStatusData, ThrowOnError>) => RequestResult<WebhooksControllerGetStatusResponses, WebhooksControllerGetStatusErrors, ThrowOnError, "fields">;
|
|
1333
|
+
declare const alchemyControllerHandleWebhook: <ThrowOnError extends boolean = false>(options: Options<AlchemyControllerHandleWebhookData, ThrowOnError>) => RequestResult<AlchemyControllerHandleWebhookResponses, unknown, ThrowOnError, "fields">;
|
|
1334
|
+
declare const inboundWebhookConfigsControllerGetMany: <ThrowOnError extends boolean = false>(options?: Options<InboundWebhookConfigsControllerGetManyData, ThrowOnError>) => RequestResult<InboundWebhookConfigsControllerGetManyResponses, InboundWebhookConfigsControllerGetManyErrors, ThrowOnError, "fields">;
|
|
1335
|
+
declare const inboundWebhookConfigsControllerCreate: <ThrowOnError extends boolean = false>(options: Options<InboundWebhookConfigsControllerCreateData, ThrowOnError>) => RequestResult<InboundWebhookConfigsControllerCreateResponses, InboundWebhookConfigsControllerCreateErrors, ThrowOnError, "fields">;
|
|
1336
|
+
declare const inboundWebhookConfigsControllerDelete: <ThrowOnError extends boolean = false>(options: Options<InboundWebhookConfigsControllerDeleteData, ThrowOnError>) => RequestResult<InboundWebhookConfigsControllerDeleteResponses, InboundWebhookConfigsControllerDeleteErrors, ThrowOnError, "fields">;
|
|
1337
|
+
declare const inboundWebhookConfigsControllerGet: <ThrowOnError extends boolean = false>(options: Options<InboundWebhookConfigsControllerGetData, ThrowOnError>) => RequestResult<InboundWebhookConfigsControllerGetResponses, InboundWebhookConfigsControllerGetErrors, ThrowOnError, "fields">;
|
|
1338
|
+
declare const inboundWebhookConfigsControllerUpdate: <ThrowOnError extends boolean = false>(options: Options<InboundWebhookConfigsControllerUpdateData, ThrowOnError>) => RequestResult<InboundWebhookConfigsControllerUpdateResponses, InboundWebhookConfigsControllerUpdateErrors, ThrowOnError, "fields">;
|
|
799
1339
|
|
|
800
1340
|
declare const Event: z.ZodUnion<[z.ZodObject<{
|
|
801
1341
|
id: z.ZodString;
|
|
@@ -835,6 +1375,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
|
|
|
835
1375
|
event_type: z.ZodLiteral<"protocol.mission.created">;
|
|
836
1376
|
timestamp: z.ZodString;
|
|
837
1377
|
data: z.ZodObject<{
|
|
1378
|
+
version: z.ZodLiteral<1>;
|
|
838
1379
|
id: z.ZodEffects<z.ZodObject<{
|
|
839
1380
|
__type: z.ZodLiteral<"bigint">;
|
|
840
1381
|
value: z.ZodString;
|
|
@@ -879,8 +1420,13 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
|
|
|
879
1420
|
campaigns: z.ZodArray<z.ZodString, "many">;
|
|
880
1421
|
captureStartTime: z.ZodString;
|
|
881
1422
|
captureEndTime: z.ZodString;
|
|
1423
|
+
isReservable: z.ZodBoolean;
|
|
882
1424
|
requestor: z.ZodString;
|
|
1425
|
+
collateralTokenAddress: z.ZodString;
|
|
1426
|
+
chainId: z.ZodNumber;
|
|
1427
|
+
tags: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
883
1428
|
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
1429
|
+
version: z.ZodLiteral<1>;
|
|
884
1430
|
id: z.ZodEffects<z.ZodObject<{
|
|
885
1431
|
__type: z.ZodLiteral<"bigint">;
|
|
886
1432
|
value: z.ZodString;
|
|
@@ -925,8 +1471,13 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
|
|
|
925
1471
|
campaigns: z.ZodArray<z.ZodString, "many">;
|
|
926
1472
|
captureStartTime: z.ZodString;
|
|
927
1473
|
captureEndTime: z.ZodString;
|
|
1474
|
+
isReservable: z.ZodBoolean;
|
|
928
1475
|
requestor: z.ZodString;
|
|
1476
|
+
collateralTokenAddress: z.ZodString;
|
|
1477
|
+
chainId: z.ZodNumber;
|
|
1478
|
+
tags: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
929
1479
|
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
1480
|
+
version: z.ZodLiteral<1>;
|
|
930
1481
|
id: z.ZodEffects<z.ZodObject<{
|
|
931
1482
|
__type: z.ZodLiteral<"bigint">;
|
|
932
1483
|
value: z.ZodString;
|
|
@@ -971,13 +1522,18 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
|
|
|
971
1522
|
campaigns: z.ZodArray<z.ZodString, "many">;
|
|
972
1523
|
captureStartTime: z.ZodString;
|
|
973
1524
|
captureEndTime: z.ZodString;
|
|
1525
|
+
isReservable: z.ZodBoolean;
|
|
974
1526
|
requestor: z.ZodString;
|
|
1527
|
+
collateralTokenAddress: z.ZodString;
|
|
1528
|
+
chainId: z.ZodNumber;
|
|
1529
|
+
tags: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
975
1530
|
}, z.ZodAny, "strip">>;
|
|
976
1531
|
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
977
1532
|
id: z.ZodString;
|
|
978
1533
|
event_type: z.ZodLiteral<"protocol.mission.created">;
|
|
979
1534
|
timestamp: z.ZodString;
|
|
980
1535
|
data: z.ZodObject<{
|
|
1536
|
+
version: z.ZodLiteral<1>;
|
|
981
1537
|
id: z.ZodEffects<z.ZodObject<{
|
|
982
1538
|
__type: z.ZodLiteral<"bigint">;
|
|
983
1539
|
value: z.ZodString;
|
|
@@ -1022,8 +1578,13 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
|
|
|
1022
1578
|
campaigns: z.ZodArray<z.ZodString, "many">;
|
|
1023
1579
|
captureStartTime: z.ZodString;
|
|
1024
1580
|
captureEndTime: z.ZodString;
|
|
1581
|
+
isReservable: z.ZodBoolean;
|
|
1025
1582
|
requestor: z.ZodString;
|
|
1583
|
+
collateralTokenAddress: z.ZodString;
|
|
1584
|
+
chainId: z.ZodNumber;
|
|
1585
|
+
tags: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
1026
1586
|
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
1587
|
+
version: z.ZodLiteral<1>;
|
|
1027
1588
|
id: z.ZodEffects<z.ZodObject<{
|
|
1028
1589
|
__type: z.ZodLiteral<"bigint">;
|
|
1029
1590
|
value: z.ZodString;
|
|
@@ -1068,8 +1629,13 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
|
|
|
1068
1629
|
campaigns: z.ZodArray<z.ZodString, "many">;
|
|
1069
1630
|
captureStartTime: z.ZodString;
|
|
1070
1631
|
captureEndTime: z.ZodString;
|
|
1632
|
+
isReservable: z.ZodBoolean;
|
|
1071
1633
|
requestor: z.ZodString;
|
|
1634
|
+
collateralTokenAddress: z.ZodString;
|
|
1635
|
+
chainId: z.ZodNumber;
|
|
1636
|
+
tags: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
1072
1637
|
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
1638
|
+
version: z.ZodLiteral<1>;
|
|
1073
1639
|
id: z.ZodEffects<z.ZodObject<{
|
|
1074
1640
|
__type: z.ZodLiteral<"bigint">;
|
|
1075
1641
|
value: z.ZodString;
|
|
@@ -1114,13 +1680,18 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
|
|
|
1114
1680
|
campaigns: z.ZodArray<z.ZodString, "many">;
|
|
1115
1681
|
captureStartTime: z.ZodString;
|
|
1116
1682
|
captureEndTime: z.ZodString;
|
|
1683
|
+
isReservable: z.ZodBoolean;
|
|
1117
1684
|
requestor: z.ZodString;
|
|
1685
|
+
collateralTokenAddress: z.ZodString;
|
|
1686
|
+
chainId: z.ZodNumber;
|
|
1687
|
+
tags: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
1118
1688
|
}, z.ZodAny, "strip">>;
|
|
1119
1689
|
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
1120
1690
|
id: z.ZodString;
|
|
1121
1691
|
event_type: z.ZodLiteral<"protocol.mission.created">;
|
|
1122
1692
|
timestamp: z.ZodString;
|
|
1123
1693
|
data: z.ZodObject<{
|
|
1694
|
+
version: z.ZodLiteral<1>;
|
|
1124
1695
|
id: z.ZodEffects<z.ZodObject<{
|
|
1125
1696
|
__type: z.ZodLiteral<"bigint">;
|
|
1126
1697
|
value: z.ZodString;
|
|
@@ -1165,8 +1736,13 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
|
|
|
1165
1736
|
campaigns: z.ZodArray<z.ZodString, "many">;
|
|
1166
1737
|
captureStartTime: z.ZodString;
|
|
1167
1738
|
captureEndTime: z.ZodString;
|
|
1739
|
+
isReservable: z.ZodBoolean;
|
|
1168
1740
|
requestor: z.ZodString;
|
|
1741
|
+
collateralTokenAddress: z.ZodString;
|
|
1742
|
+
chainId: z.ZodNumber;
|
|
1743
|
+
tags: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
1169
1744
|
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
1745
|
+
version: z.ZodLiteral<1>;
|
|
1170
1746
|
id: z.ZodEffects<z.ZodObject<{
|
|
1171
1747
|
__type: z.ZodLiteral<"bigint">;
|
|
1172
1748
|
value: z.ZodString;
|
|
@@ -1211,8 +1787,13 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
|
|
|
1211
1787
|
campaigns: z.ZodArray<z.ZodString, "many">;
|
|
1212
1788
|
captureStartTime: z.ZodString;
|
|
1213
1789
|
captureEndTime: z.ZodString;
|
|
1790
|
+
isReservable: z.ZodBoolean;
|
|
1214
1791
|
requestor: z.ZodString;
|
|
1792
|
+
collateralTokenAddress: z.ZodString;
|
|
1793
|
+
chainId: z.ZodNumber;
|
|
1794
|
+
tags: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
1215
1795
|
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
1796
|
+
version: z.ZodLiteral<1>;
|
|
1216
1797
|
id: z.ZodEffects<z.ZodObject<{
|
|
1217
1798
|
__type: z.ZodLiteral<"bigint">;
|
|
1218
1799
|
value: z.ZodString;
|
|
@@ -1257,13 +1838,18 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
|
|
|
1257
1838
|
campaigns: z.ZodArray<z.ZodString, "many">;
|
|
1258
1839
|
captureStartTime: z.ZodString;
|
|
1259
1840
|
captureEndTime: z.ZodString;
|
|
1841
|
+
isReservable: z.ZodBoolean;
|
|
1260
1842
|
requestor: z.ZodString;
|
|
1843
|
+
collateralTokenAddress: z.ZodString;
|
|
1844
|
+
chainId: z.ZodNumber;
|
|
1845
|
+
tags: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
1261
1846
|
}, z.ZodAny, "strip">>;
|
|
1262
1847
|
}, z.ZodAny, "strip">>, z.ZodObject<{
|
|
1263
1848
|
id: z.ZodString;
|
|
1264
1849
|
event_type: z.ZodLiteral<"protocol.mission.updated">;
|
|
1265
1850
|
timestamp: z.ZodString;
|
|
1266
1851
|
data: z.ZodObject<{
|
|
1852
|
+
version: z.ZodLiteral<1>;
|
|
1267
1853
|
id: z.ZodEffects<z.ZodObject<{
|
|
1268
1854
|
__type: z.ZodLiteral<"bigint">;
|
|
1269
1855
|
value: z.ZodString;
|
|
@@ -1293,6 +1879,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
|
|
|
1293
1879
|
isOpen: z.ZodOptional<z.ZodBoolean>;
|
|
1294
1880
|
campaigns: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1295
1881
|
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
1882
|
+
version: z.ZodLiteral<1>;
|
|
1296
1883
|
id: z.ZodEffects<z.ZodObject<{
|
|
1297
1884
|
__type: z.ZodLiteral<"bigint">;
|
|
1298
1885
|
value: z.ZodString;
|
|
@@ -1322,6 +1909,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
|
|
|
1322
1909
|
isOpen: z.ZodOptional<z.ZodBoolean>;
|
|
1323
1910
|
campaigns: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1324
1911
|
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
1912
|
+
version: z.ZodLiteral<1>;
|
|
1325
1913
|
id: z.ZodEffects<z.ZodObject<{
|
|
1326
1914
|
__type: z.ZodLiteral<"bigint">;
|
|
1327
1915
|
value: z.ZodString;
|
|
@@ -1356,6 +1944,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
|
|
|
1356
1944
|
event_type: z.ZodLiteral<"protocol.mission.updated">;
|
|
1357
1945
|
timestamp: z.ZodString;
|
|
1358
1946
|
data: z.ZodObject<{
|
|
1947
|
+
version: z.ZodLiteral<1>;
|
|
1359
1948
|
id: z.ZodEffects<z.ZodObject<{
|
|
1360
1949
|
__type: z.ZodLiteral<"bigint">;
|
|
1361
1950
|
value: z.ZodString;
|
|
@@ -1385,6 +1974,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
|
|
|
1385
1974
|
isOpen: z.ZodOptional<z.ZodBoolean>;
|
|
1386
1975
|
campaigns: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1387
1976
|
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
1977
|
+
version: z.ZodLiteral<1>;
|
|
1388
1978
|
id: z.ZodEffects<z.ZodObject<{
|
|
1389
1979
|
__type: z.ZodLiteral<"bigint">;
|
|
1390
1980
|
value: z.ZodString;
|
|
@@ -1414,6 +2004,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
|
|
|
1414
2004
|
isOpen: z.ZodOptional<z.ZodBoolean>;
|
|
1415
2005
|
campaigns: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1416
2006
|
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
2007
|
+
version: z.ZodLiteral<1>;
|
|
1417
2008
|
id: z.ZodEffects<z.ZodObject<{
|
|
1418
2009
|
__type: z.ZodLiteral<"bigint">;
|
|
1419
2010
|
value: z.ZodString;
|
|
@@ -1448,6 +2039,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
|
|
|
1448
2039
|
event_type: z.ZodLiteral<"protocol.mission.updated">;
|
|
1449
2040
|
timestamp: z.ZodString;
|
|
1450
2041
|
data: z.ZodObject<{
|
|
2042
|
+
version: z.ZodLiteral<1>;
|
|
1451
2043
|
id: z.ZodEffects<z.ZodObject<{
|
|
1452
2044
|
__type: z.ZodLiteral<"bigint">;
|
|
1453
2045
|
value: z.ZodString;
|
|
@@ -1477,6 +2069,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
|
|
|
1477
2069
|
isOpen: z.ZodOptional<z.ZodBoolean>;
|
|
1478
2070
|
campaigns: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1479
2071
|
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
2072
|
+
version: z.ZodLiteral<1>;
|
|
1480
2073
|
id: z.ZodEffects<z.ZodObject<{
|
|
1481
2074
|
__type: z.ZodLiteral<"bigint">;
|
|
1482
2075
|
value: z.ZodString;
|
|
@@ -1506,6 +2099,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
|
|
|
1506
2099
|
isOpen: z.ZodOptional<z.ZodBoolean>;
|
|
1507
2100
|
campaigns: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1508
2101
|
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
2102
|
+
version: z.ZodLiteral<1>;
|
|
1509
2103
|
id: z.ZodEffects<z.ZodObject<{
|
|
1510
2104
|
__type: z.ZodLiteral<"bigint">;
|
|
1511
2105
|
value: z.ZodString;
|
|
@@ -1540,6 +2134,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
|
|
|
1540
2134
|
event_type: z.ZodLiteral<"protocol.mission.paid">;
|
|
1541
2135
|
timestamp: z.ZodString;
|
|
1542
2136
|
data: z.ZodObject<{
|
|
2137
|
+
version: z.ZodLiteral<1>;
|
|
1543
2138
|
recipient: z.ZodString;
|
|
1544
2139
|
flightId: z.ZodEffects<z.ZodObject<{
|
|
1545
2140
|
__type: z.ZodLiteral<"bigint">;
|
|
@@ -1595,6 +2190,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
|
|
|
1595
2190
|
}>;
|
|
1596
2191
|
storageKey: z.ZodString;
|
|
1597
2192
|
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
2193
|
+
version: z.ZodLiteral<1>;
|
|
1598
2194
|
recipient: z.ZodString;
|
|
1599
2195
|
flightId: z.ZodEffects<z.ZodObject<{
|
|
1600
2196
|
__type: z.ZodLiteral<"bigint">;
|
|
@@ -1650,6 +2246,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
|
|
|
1650
2246
|
}>;
|
|
1651
2247
|
storageKey: z.ZodString;
|
|
1652
2248
|
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
2249
|
+
version: z.ZodLiteral<1>;
|
|
1653
2250
|
recipient: z.ZodString;
|
|
1654
2251
|
flightId: z.ZodEffects<z.ZodObject<{
|
|
1655
2252
|
__type: z.ZodLiteral<"bigint">;
|
|
@@ -1710,6 +2307,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
|
|
|
1710
2307
|
event_type: z.ZodLiteral<"protocol.mission.paid">;
|
|
1711
2308
|
timestamp: z.ZodString;
|
|
1712
2309
|
data: z.ZodObject<{
|
|
2310
|
+
version: z.ZodLiteral<1>;
|
|
1713
2311
|
recipient: z.ZodString;
|
|
1714
2312
|
flightId: z.ZodEffects<z.ZodObject<{
|
|
1715
2313
|
__type: z.ZodLiteral<"bigint">;
|
|
@@ -1765,6 +2363,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
|
|
|
1765
2363
|
}>;
|
|
1766
2364
|
storageKey: z.ZodString;
|
|
1767
2365
|
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
2366
|
+
version: z.ZodLiteral<1>;
|
|
1768
2367
|
recipient: z.ZodString;
|
|
1769
2368
|
flightId: z.ZodEffects<z.ZodObject<{
|
|
1770
2369
|
__type: z.ZodLiteral<"bigint">;
|
|
@@ -1820,6 +2419,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
|
|
|
1820
2419
|
}>;
|
|
1821
2420
|
storageKey: z.ZodString;
|
|
1822
2421
|
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
2422
|
+
version: z.ZodLiteral<1>;
|
|
1823
2423
|
recipient: z.ZodString;
|
|
1824
2424
|
flightId: z.ZodEffects<z.ZodObject<{
|
|
1825
2425
|
__type: z.ZodLiteral<"bigint">;
|
|
@@ -1880,6 +2480,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
|
|
|
1880
2480
|
event_type: z.ZodLiteral<"protocol.mission.paid">;
|
|
1881
2481
|
timestamp: z.ZodString;
|
|
1882
2482
|
data: z.ZodObject<{
|
|
2483
|
+
version: z.ZodLiteral<1>;
|
|
1883
2484
|
recipient: z.ZodString;
|
|
1884
2485
|
flightId: z.ZodEffects<z.ZodObject<{
|
|
1885
2486
|
__type: z.ZodLiteral<"bigint">;
|
|
@@ -1935,6 +2536,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
|
|
|
1935
2536
|
}>;
|
|
1936
2537
|
storageKey: z.ZodString;
|
|
1937
2538
|
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
2539
|
+
version: z.ZodLiteral<1>;
|
|
1938
2540
|
recipient: z.ZodString;
|
|
1939
2541
|
flightId: z.ZodEffects<z.ZodObject<{
|
|
1940
2542
|
__type: z.ZodLiteral<"bigint">;
|
|
@@ -1990,6 +2592,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
|
|
|
1990
2592
|
}>;
|
|
1991
2593
|
storageKey: z.ZodString;
|
|
1992
2594
|
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
2595
|
+
version: z.ZodLiteral<1>;
|
|
1993
2596
|
recipient: z.ZodString;
|
|
1994
2597
|
flightId: z.ZodEffects<z.ZodObject<{
|
|
1995
2598
|
__type: z.ZodLiteral<"bigint">;
|
|
@@ -2050,6 +2653,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
|
|
|
2050
2653
|
event_type: z.ZodLiteral<"protocol.flight.submitted">;
|
|
2051
2654
|
timestamp: z.ZodString;
|
|
2052
2655
|
data: z.ZodObject<{
|
|
2656
|
+
version: z.ZodLiteral<1>;
|
|
2053
2657
|
storageKey: z.ZodString;
|
|
2054
2658
|
pilotAddress: z.ZodString;
|
|
2055
2659
|
flightManifestUri: z.ZodString;
|
|
@@ -2067,6 +2671,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
|
|
|
2067
2671
|
__type: "bigint";
|
|
2068
2672
|
}>;
|
|
2069
2673
|
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
2674
|
+
version: z.ZodLiteral<1>;
|
|
2070
2675
|
storageKey: z.ZodString;
|
|
2071
2676
|
pilotAddress: z.ZodString;
|
|
2072
2677
|
flightManifestUri: z.ZodString;
|
|
@@ -2084,6 +2689,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
|
|
|
2084
2689
|
__type: "bigint";
|
|
2085
2690
|
}>;
|
|
2086
2691
|
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
2692
|
+
version: z.ZodLiteral<1>;
|
|
2087
2693
|
storageKey: z.ZodString;
|
|
2088
2694
|
pilotAddress: z.ZodString;
|
|
2089
2695
|
flightManifestUri: z.ZodString;
|
|
@@ -2106,6 +2712,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
|
|
|
2106
2712
|
event_type: z.ZodLiteral<"protocol.flight.submitted">;
|
|
2107
2713
|
timestamp: z.ZodString;
|
|
2108
2714
|
data: z.ZodObject<{
|
|
2715
|
+
version: z.ZodLiteral<1>;
|
|
2109
2716
|
storageKey: z.ZodString;
|
|
2110
2717
|
pilotAddress: z.ZodString;
|
|
2111
2718
|
flightManifestUri: z.ZodString;
|
|
@@ -2123,6 +2730,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
|
|
|
2123
2730
|
__type: "bigint";
|
|
2124
2731
|
}>;
|
|
2125
2732
|
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
2733
|
+
version: z.ZodLiteral<1>;
|
|
2126
2734
|
storageKey: z.ZodString;
|
|
2127
2735
|
pilotAddress: z.ZodString;
|
|
2128
2736
|
flightManifestUri: z.ZodString;
|
|
@@ -2140,6 +2748,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
|
|
|
2140
2748
|
__type: "bigint";
|
|
2141
2749
|
}>;
|
|
2142
2750
|
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
2751
|
+
version: z.ZodLiteral<1>;
|
|
2143
2752
|
storageKey: z.ZodString;
|
|
2144
2753
|
pilotAddress: z.ZodString;
|
|
2145
2754
|
flightManifestUri: z.ZodString;
|
|
@@ -2162,6 +2771,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
|
|
|
2162
2771
|
event_type: z.ZodLiteral<"protocol.flight.submitted">;
|
|
2163
2772
|
timestamp: z.ZodString;
|
|
2164
2773
|
data: z.ZodObject<{
|
|
2774
|
+
version: z.ZodLiteral<1>;
|
|
2165
2775
|
storageKey: z.ZodString;
|
|
2166
2776
|
pilotAddress: z.ZodString;
|
|
2167
2777
|
flightManifestUri: z.ZodString;
|
|
@@ -2179,6 +2789,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
|
|
|
2179
2789
|
__type: "bigint";
|
|
2180
2790
|
}>;
|
|
2181
2791
|
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
2792
|
+
version: z.ZodLiteral<1>;
|
|
2182
2793
|
storageKey: z.ZodString;
|
|
2183
2794
|
pilotAddress: z.ZodString;
|
|
2184
2795
|
flightManifestUri: z.ZodString;
|
|
@@ -2196,6 +2807,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
|
|
|
2196
2807
|
__type: "bigint";
|
|
2197
2808
|
}>;
|
|
2198
2809
|
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
2810
|
+
version: z.ZodLiteral<1>;
|
|
2199
2811
|
storageKey: z.ZodString;
|
|
2200
2812
|
pilotAddress: z.ZodString;
|
|
2201
2813
|
flightManifestUri: z.ZodString;
|
|
@@ -2218,6 +2830,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
|
|
|
2218
2830
|
event_type: z.ZodLiteral<"protocol.flight.reviewed">;
|
|
2219
2831
|
timestamp: z.ZodString;
|
|
2220
2832
|
data: z.ZodObject<{
|
|
2833
|
+
version: z.ZodLiteral<1>;
|
|
2221
2834
|
flightId: z.ZodEffects<z.ZodObject<{
|
|
2222
2835
|
__type: z.ZodLiteral<"bigint">;
|
|
2223
2836
|
value: z.ZodString;
|
|
@@ -2251,6 +2864,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
|
|
|
2251
2864
|
__type: "bigint";
|
|
2252
2865
|
}>;
|
|
2253
2866
|
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
2867
|
+
version: z.ZodLiteral<1>;
|
|
2254
2868
|
flightId: z.ZodEffects<z.ZodObject<{
|
|
2255
2869
|
__type: z.ZodLiteral<"bigint">;
|
|
2256
2870
|
value: z.ZodString;
|
|
@@ -2284,6 +2898,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
|
|
|
2284
2898
|
__type: "bigint";
|
|
2285
2899
|
}>;
|
|
2286
2900
|
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
2901
|
+
version: z.ZodLiteral<1>;
|
|
2287
2902
|
flightId: z.ZodEffects<z.ZodObject<{
|
|
2288
2903
|
__type: z.ZodLiteral<"bigint">;
|
|
2289
2904
|
value: z.ZodString;
|
|
@@ -2322,6 +2937,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
|
|
|
2322
2937
|
event_type: z.ZodLiteral<"protocol.flight.reviewed">;
|
|
2323
2938
|
timestamp: z.ZodString;
|
|
2324
2939
|
data: z.ZodObject<{
|
|
2940
|
+
version: z.ZodLiteral<1>;
|
|
2325
2941
|
flightId: z.ZodEffects<z.ZodObject<{
|
|
2326
2942
|
__type: z.ZodLiteral<"bigint">;
|
|
2327
2943
|
value: z.ZodString;
|
|
@@ -2355,6 +2971,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
|
|
|
2355
2971
|
__type: "bigint";
|
|
2356
2972
|
}>;
|
|
2357
2973
|
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
2974
|
+
version: z.ZodLiteral<1>;
|
|
2358
2975
|
flightId: z.ZodEffects<z.ZodObject<{
|
|
2359
2976
|
__type: z.ZodLiteral<"bigint">;
|
|
2360
2977
|
value: z.ZodString;
|
|
@@ -2388,6 +3005,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
|
|
|
2388
3005
|
__type: "bigint";
|
|
2389
3006
|
}>;
|
|
2390
3007
|
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
3008
|
+
version: z.ZodLiteral<1>;
|
|
2391
3009
|
flightId: z.ZodEffects<z.ZodObject<{
|
|
2392
3010
|
__type: z.ZodLiteral<"bigint">;
|
|
2393
3011
|
value: z.ZodString;
|
|
@@ -2426,6 +3044,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
|
|
|
2426
3044
|
event_type: z.ZodLiteral<"protocol.flight.reviewed">;
|
|
2427
3045
|
timestamp: z.ZodString;
|
|
2428
3046
|
data: z.ZodObject<{
|
|
3047
|
+
version: z.ZodLiteral<1>;
|
|
2429
3048
|
flightId: z.ZodEffects<z.ZodObject<{
|
|
2430
3049
|
__type: z.ZodLiteral<"bigint">;
|
|
2431
3050
|
value: z.ZodString;
|
|
@@ -2459,6 +3078,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
|
|
|
2459
3078
|
__type: "bigint";
|
|
2460
3079
|
}>;
|
|
2461
3080
|
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
3081
|
+
version: z.ZodLiteral<1>;
|
|
2462
3082
|
flightId: z.ZodEffects<z.ZodObject<{
|
|
2463
3083
|
__type: z.ZodLiteral<"bigint">;
|
|
2464
3084
|
value: z.ZodString;
|
|
@@ -2492,6 +3112,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
|
|
|
2492
3112
|
__type: "bigint";
|
|
2493
3113
|
}>;
|
|
2494
3114
|
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
3115
|
+
version: z.ZodLiteral<1>;
|
|
2495
3116
|
flightId: z.ZodEffects<z.ZodObject<{
|
|
2496
3117
|
__type: z.ZodLiteral<"bigint">;
|
|
2497
3118
|
value: z.ZodString;
|
|
@@ -2562,6 +3183,7 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.o
|
|
|
2562
3183
|
event_type: zod.ZodLiteral<"protocol.mission.created">;
|
|
2563
3184
|
timestamp: zod.ZodString;
|
|
2564
3185
|
data: zod.ZodObject<{
|
|
3186
|
+
version: zod.ZodLiteral<1>;
|
|
2565
3187
|
id: zod.ZodEffects<zod.ZodObject<{
|
|
2566
3188
|
__type: zod.ZodLiteral<"bigint">;
|
|
2567
3189
|
value: zod.ZodString;
|
|
@@ -2606,8 +3228,13 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.o
|
|
|
2606
3228
|
campaigns: zod.ZodArray<zod.ZodString, "many">;
|
|
2607
3229
|
captureStartTime: zod.ZodString;
|
|
2608
3230
|
captureEndTime: zod.ZodString;
|
|
3231
|
+
isReservable: zod.ZodBoolean;
|
|
2609
3232
|
requestor: zod.ZodString;
|
|
3233
|
+
collateralTokenAddress: zod.ZodString;
|
|
3234
|
+
chainId: zod.ZodNumber;
|
|
3235
|
+
tags: zod.ZodRecord<zod.ZodString, zod.ZodString>;
|
|
2610
3236
|
}, "strip", zod.ZodAny, zod.objectOutputType<{
|
|
3237
|
+
version: zod.ZodLiteral<1>;
|
|
2611
3238
|
id: zod.ZodEffects<zod.ZodObject<{
|
|
2612
3239
|
__type: zod.ZodLiteral<"bigint">;
|
|
2613
3240
|
value: zod.ZodString;
|
|
@@ -2652,8 +3279,13 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.o
|
|
|
2652
3279
|
campaigns: zod.ZodArray<zod.ZodString, "many">;
|
|
2653
3280
|
captureStartTime: zod.ZodString;
|
|
2654
3281
|
captureEndTime: zod.ZodString;
|
|
3282
|
+
isReservable: zod.ZodBoolean;
|
|
2655
3283
|
requestor: zod.ZodString;
|
|
3284
|
+
collateralTokenAddress: zod.ZodString;
|
|
3285
|
+
chainId: zod.ZodNumber;
|
|
3286
|
+
tags: zod.ZodRecord<zod.ZodString, zod.ZodString>;
|
|
2656
3287
|
}, zod.ZodAny, "strip">, zod.objectInputType<{
|
|
3288
|
+
version: zod.ZodLiteral<1>;
|
|
2657
3289
|
id: zod.ZodEffects<zod.ZodObject<{
|
|
2658
3290
|
__type: zod.ZodLiteral<"bigint">;
|
|
2659
3291
|
value: zod.ZodString;
|
|
@@ -2698,13 +3330,18 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.o
|
|
|
2698
3330
|
campaigns: zod.ZodArray<zod.ZodString, "many">;
|
|
2699
3331
|
captureStartTime: zod.ZodString;
|
|
2700
3332
|
captureEndTime: zod.ZodString;
|
|
3333
|
+
isReservable: zod.ZodBoolean;
|
|
2701
3334
|
requestor: zod.ZodString;
|
|
3335
|
+
collateralTokenAddress: zod.ZodString;
|
|
3336
|
+
chainId: zod.ZodNumber;
|
|
3337
|
+
tags: zod.ZodRecord<zod.ZodString, zod.ZodString>;
|
|
2702
3338
|
}, zod.ZodAny, "strip">>;
|
|
2703
3339
|
}, zod.ZodAny, "strip"> | zod.objectOutputType<{
|
|
2704
3340
|
id: zod.ZodString;
|
|
2705
3341
|
event_type: zod.ZodLiteral<"protocol.mission.updated">;
|
|
2706
3342
|
timestamp: zod.ZodString;
|
|
2707
3343
|
data: zod.ZodObject<{
|
|
3344
|
+
version: zod.ZodLiteral<1>;
|
|
2708
3345
|
id: zod.ZodEffects<zod.ZodObject<{
|
|
2709
3346
|
__type: zod.ZodLiteral<"bigint">;
|
|
2710
3347
|
value: zod.ZodString;
|
|
@@ -2734,6 +3371,7 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.o
|
|
|
2734
3371
|
isOpen: zod.ZodOptional<zod.ZodBoolean>;
|
|
2735
3372
|
campaigns: zod.ZodOptional<zod.ZodArray<zod.ZodString, "many">>;
|
|
2736
3373
|
}, "strip", zod.ZodAny, zod.objectOutputType<{
|
|
3374
|
+
version: zod.ZodLiteral<1>;
|
|
2737
3375
|
id: zod.ZodEffects<zod.ZodObject<{
|
|
2738
3376
|
__type: zod.ZodLiteral<"bigint">;
|
|
2739
3377
|
value: zod.ZodString;
|
|
@@ -2763,6 +3401,7 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.o
|
|
|
2763
3401
|
isOpen: zod.ZodOptional<zod.ZodBoolean>;
|
|
2764
3402
|
campaigns: zod.ZodOptional<zod.ZodArray<zod.ZodString, "many">>;
|
|
2765
3403
|
}, zod.ZodAny, "strip">, zod.objectInputType<{
|
|
3404
|
+
version: zod.ZodLiteral<1>;
|
|
2766
3405
|
id: zod.ZodEffects<zod.ZodObject<{
|
|
2767
3406
|
__type: zod.ZodLiteral<"bigint">;
|
|
2768
3407
|
value: zod.ZodString;
|
|
@@ -2797,6 +3436,7 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.o
|
|
|
2797
3436
|
event_type: zod.ZodLiteral<"protocol.mission.paid">;
|
|
2798
3437
|
timestamp: zod.ZodString;
|
|
2799
3438
|
data: zod.ZodObject<{
|
|
3439
|
+
version: zod.ZodLiteral<1>;
|
|
2800
3440
|
recipient: zod.ZodString;
|
|
2801
3441
|
flightId: zod.ZodEffects<zod.ZodObject<{
|
|
2802
3442
|
__type: zod.ZodLiteral<"bigint">;
|
|
@@ -2852,6 +3492,7 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.o
|
|
|
2852
3492
|
}>;
|
|
2853
3493
|
storageKey: zod.ZodString;
|
|
2854
3494
|
}, "strip", zod.ZodAny, zod.objectOutputType<{
|
|
3495
|
+
version: zod.ZodLiteral<1>;
|
|
2855
3496
|
recipient: zod.ZodString;
|
|
2856
3497
|
flightId: zod.ZodEffects<zod.ZodObject<{
|
|
2857
3498
|
__type: zod.ZodLiteral<"bigint">;
|
|
@@ -2907,6 +3548,7 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.o
|
|
|
2907
3548
|
}>;
|
|
2908
3549
|
storageKey: zod.ZodString;
|
|
2909
3550
|
}, zod.ZodAny, "strip">, zod.objectInputType<{
|
|
3551
|
+
version: zod.ZodLiteral<1>;
|
|
2910
3552
|
recipient: zod.ZodString;
|
|
2911
3553
|
flightId: zod.ZodEffects<zod.ZodObject<{
|
|
2912
3554
|
__type: zod.ZodLiteral<"bigint">;
|
|
@@ -2967,6 +3609,7 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.o
|
|
|
2967
3609
|
event_type: zod.ZodLiteral<"protocol.flight.submitted">;
|
|
2968
3610
|
timestamp: zod.ZodString;
|
|
2969
3611
|
data: zod.ZodObject<{
|
|
3612
|
+
version: zod.ZodLiteral<1>;
|
|
2970
3613
|
storageKey: zod.ZodString;
|
|
2971
3614
|
pilotAddress: zod.ZodString;
|
|
2972
3615
|
flightManifestUri: zod.ZodString;
|
|
@@ -2984,6 +3627,7 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.o
|
|
|
2984
3627
|
__type: "bigint";
|
|
2985
3628
|
}>;
|
|
2986
3629
|
}, "strip", zod.ZodAny, zod.objectOutputType<{
|
|
3630
|
+
version: zod.ZodLiteral<1>;
|
|
2987
3631
|
storageKey: zod.ZodString;
|
|
2988
3632
|
pilotAddress: zod.ZodString;
|
|
2989
3633
|
flightManifestUri: zod.ZodString;
|
|
@@ -3001,6 +3645,7 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.o
|
|
|
3001
3645
|
__type: "bigint";
|
|
3002
3646
|
}>;
|
|
3003
3647
|
}, zod.ZodAny, "strip">, zod.objectInputType<{
|
|
3648
|
+
version: zod.ZodLiteral<1>;
|
|
3004
3649
|
storageKey: zod.ZodString;
|
|
3005
3650
|
pilotAddress: zod.ZodString;
|
|
3006
3651
|
flightManifestUri: zod.ZodString;
|
|
@@ -3023,6 +3668,7 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.o
|
|
|
3023
3668
|
event_type: zod.ZodLiteral<"protocol.flight.reviewed">;
|
|
3024
3669
|
timestamp: zod.ZodString;
|
|
3025
3670
|
data: zod.ZodObject<{
|
|
3671
|
+
version: zod.ZodLiteral<1>;
|
|
3026
3672
|
flightId: zod.ZodEffects<zod.ZodObject<{
|
|
3027
3673
|
__type: zod.ZodLiteral<"bigint">;
|
|
3028
3674
|
value: zod.ZodString;
|
|
@@ -3056,6 +3702,7 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.o
|
|
|
3056
3702
|
__type: "bigint";
|
|
3057
3703
|
}>;
|
|
3058
3704
|
}, "strip", zod.ZodAny, zod.objectOutputType<{
|
|
3705
|
+
version: zod.ZodLiteral<1>;
|
|
3059
3706
|
flightId: zod.ZodEffects<zod.ZodObject<{
|
|
3060
3707
|
__type: zod.ZodLiteral<"bigint">;
|
|
3061
3708
|
value: zod.ZodString;
|
|
@@ -3089,6 +3736,7 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.o
|
|
|
3089
3736
|
__type: "bigint";
|
|
3090
3737
|
}>;
|
|
3091
3738
|
}, zod.ZodAny, "strip">, zod.objectInputType<{
|
|
3739
|
+
version: zod.ZodLiteral<1>;
|
|
3092
3740
|
flightId: zod.ZodEffects<zod.ZodObject<{
|
|
3093
3741
|
__type: zod.ZodLiteral<"bigint">;
|
|
3094
3742
|
value: zod.ZodString;
|
|
@@ -3124,4 +3772,4 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.o
|
|
|
3124
3772
|
}, zod.ZodAny, "strip">>;
|
|
3125
3773
|
}, zod.ZodAny, "strip">;
|
|
3126
3774
|
|
|
3127
|
-
export { type ApiControllerGetErrorData, type ApiControllerGetErrorResponses, type ApiControllerGetHelloData, type ApiControllerGetHelloResponses, type ApiTokenControllerCreateTokenData, type ApiTokenControllerCreateTokenErrors, type ApiTokenControllerCreateTokenResponse, type ApiTokenControllerCreateTokenResponses, type ApiTokenControllerDeleteTokenData, type ApiTokenControllerDeleteTokenErrors, type ApiTokenControllerDeleteTokenResponses, type ApiTokenControllerGetTokenData, type ApiTokenControllerGetTokenErrors, type ApiTokenControllerGetTokenResponses, type ApiTokenControllerUpdateTokenData, type ApiTokenControllerUpdateTokenErrors, type ApiTokenControllerUpdateTokenResponse, type ApiTokenControllerUpdateTokenResponses, type Auth, type Client, type ClientOptions$1 as ClientOptions, type ConditionsControllerGetSunAltitudeTimeLimitsData, type ConditionsControllerGetSunAltitudeTimeLimitsResponse, type ConditionsControllerGetSunAltitudeTimeLimitsResponses, type Config, type CreateApiTokenRequestDto, type CreateApiTokenResponseDto, type CreateClientConfig, type CreateFileRequestDto, type CreateFileResponseDto, type CreateMissionRequestDto, type CreateMissionResponseDto, type CreateQuoteRequestDto, type CreateWebhookBody, type CreateWebhookResponse, type DeleteWebhookResponse, Event, type FlightDto, type FlightReviewedEvent, type FlightSubmittedEvent, type FlightsControllerCreatePresignedUrlsData, type FlightsControllerCreatePresignedUrlsErrors, type FlightsControllerCreatePresignedUrlsResponse, type FlightsControllerCreatePresignedUrlsResponses, type FlightsControllerGenerateStorageKeyData, type FlightsControllerGenerateStorageKeyErrors, type FlightsControllerGenerateStorageKeyResponse, type FlightsControllerGenerateStorageKeyResponses, type FlightsControllerGetFlightData, type FlightsControllerGetFlightErrors, type FlightsControllerGetFlightResponse, type FlightsControllerGetFlightResponses, type FlightsControllerValidateFlightData, type FlightsControllerValidateFlightErrors, type FlightsControllerValidateFlightResponse, type FlightsControllerValidateFlightResponses, type GetProvenanceCryptoKeyResponse, type GetTimeLimitsForSunAltitudeResponse, type GetWebhookResponse, type GetWebhookStatusResponse, type GetWebhooksResponse, type KeysControllerGetProvenanceCryptoKeyData, type KeysControllerGetProvenanceCryptoKeyResponse, type KeysControllerGetProvenanceCryptoKeyResponses, type MissionCreatedEvent, type MissionPaidEvent, type MissionUpdatedEvent, type MissionsControllerCreateMissionsData, type MissionsControllerCreateMissionsErrors, type MissionsControllerCreateMissionsResponse, type MissionsControllerCreateMissionsResponses, type MissionsControllerRepriceMissionsData, type MissionsControllerRepriceMissionsErrors, type MissionsControllerRepriceMissionsResponse, type MissionsControllerRepriceMissionsResponses, type MissionsControllerUpdateMissionsData, type MissionsControllerUpdateMissionsErrors, type MissionsControllerUpdateMissionsResponse, type MissionsControllerUpdateMissionsResponses, type Options, type OptionsLegacyParser, type QuerySerializerOptions, type QuotesControllerCreateQuoteData, type QuotesControllerCreateQuoteErrors, type QuotesControllerCreateQuoteResponses, type QuotesControllerGetQuoteData, type QuotesControllerGetQuoteErrors, type QuotesControllerGetQuoteResponses, type RegenerateWebhookSecretResponseDto, type RepriceMissionsRequestDto, type RepriceMissionsResponseDto, type RequestOptions, type RequestResult, type ResponseStyle, type SchemaControllerGetEventSchemaData, type SchemaControllerGetEventSchemaResponses, type TDataShape, type TestEvent, type TestWebhookResponse, type UpdateApiTokenRequestDto, type UpdateApiTokenResponseDto, type UpdateMissionsRequestDto, type UpdateMissionsResponseDto, type UpdateWebhookBody, type UpdateWebhookResponse, type ValidateFlightRequestDto, type ValidateFlightResponseDto, type WebhooksControllerCreateData, type WebhooksControllerCreateErrors, type WebhooksControllerCreateResponse, type WebhooksControllerCreateResponses, type WebhooksControllerDeleteData, type WebhooksControllerDeleteErrors, type WebhooksControllerDeleteResponse, type WebhooksControllerDeleteResponses, type WebhooksControllerGetData, type WebhooksControllerGetErrors, type WebhooksControllerGetManyData, type WebhooksControllerGetManyErrors, type WebhooksControllerGetManyResponse, type WebhooksControllerGetManyResponses, type WebhooksControllerGetResponse, type WebhooksControllerGetResponses, type WebhooksControllerGetStatusData, type WebhooksControllerGetStatusErrors, type WebhooksControllerGetStatusResponse, type WebhooksControllerGetStatusResponses, type WebhooksControllerRegenerateSecretData, type WebhooksControllerRegenerateSecretErrors, type WebhooksControllerRegenerateSecretResponse, type WebhooksControllerRegenerateSecretResponses, type WebhooksControllerTestData, type WebhooksControllerTestErrors, type WebhooksControllerTestResponse, type WebhooksControllerTestResponses, type WebhooksControllerUpdateData, type WebhooksControllerUpdateErrors, type WebhooksControllerUpdateResponse, type WebhooksControllerUpdateResponses, apiControllerGetError, apiControllerGetHello, apiTokenControllerCreateToken, apiTokenControllerDeleteToken, apiTokenControllerGetToken, apiTokenControllerUpdateToken, buildClientParams, conditionsControllerGetSunAltitudeTimeLimits, createClient, createConfig, flightsControllerCreatePresignedUrls, flightsControllerGenerateStorageKey, flightsControllerGetFlight, flightsControllerValidateFlight, formDataBodySerializer, jsonBodySerializer, keysControllerGetProvenanceCryptoKey, mergeHeaders, missionsControllerCreateMissions, missionsControllerRepriceMissions, missionsControllerUpdateMissions, parseWebhookEvent, quotesControllerCreateQuote, quotesControllerGetQuote, schemaControllerGetEventSchema, urlSearchParamsBodySerializer, webhooksControllerCreate, webhooksControllerDelete, webhooksControllerGet, webhooksControllerGetMany, webhooksControllerGetStatus, webhooksControllerRegenerateSecret, webhooksControllerTest, webhooksControllerUpdate };
|
|
3775
|
+
export { type AlchemyControllerHandleWebhookData, type AlchemyControllerHandleWebhookResponses, type AlchemyWebhookBodyDto, type ApiControllerGetErrorData, type ApiControllerGetErrorResponses, type ApiControllerGetHelloData, type ApiControllerGetHelloResponses, type ApiTokenControllerCreateTokenData, type ApiTokenControllerCreateTokenErrors, type ApiTokenControllerCreateTokenResponse, type ApiTokenControllerCreateTokenResponses, type ApiTokenControllerDeleteTokenData, type ApiTokenControllerDeleteTokenErrors, type ApiTokenControllerDeleteTokenResponses, type ApiTokenControllerGetTokenData, type ApiTokenControllerGetTokenErrors, type ApiTokenControllerGetTokenResponses, type ApiTokenControllerUpdateTokenData, type ApiTokenControllerUpdateTokenErrors, type ApiTokenControllerUpdateTokenResponse, type ApiTokenControllerUpdateTokenResponses, type Auth, type Client, type ClientOptions$1 as ClientOptions, type CloseMissionRequestDto, type CloseMissionResponseDto, type ConditionsControllerGetSunAltitudeTimeLimitsData, type ConditionsControllerGetSunAltitudeTimeLimitsResponse, type ConditionsControllerGetSunAltitudeTimeLimitsResponses, type Config, type ContractsControllerCreateContractData, type ContractsControllerCreateContractErrors, type ContractsControllerCreateContractResponse, type ContractsControllerCreateContractResponses, type ContractsControllerDeleteContractData, type ContractsControllerDeleteContractErrors, type ContractsControllerDeleteContractResponse, type ContractsControllerDeleteContractResponses, type ContractsControllerGetAllContractsData, type ContractsControllerGetAllContractsErrors, type ContractsControllerGetAllContractsResponse, type ContractsControllerGetAllContractsResponses, type ContractsControllerGetContractData, type ContractsControllerGetContractErrors, type ContractsControllerGetContractResponse, type ContractsControllerGetContractResponses, type ContractsControllerUpdateContractData, type ContractsControllerUpdateContractErrors, type ContractsControllerUpdateContractResponse, type ContractsControllerUpdateContractResponses, type CreateApiTokenRequestDto, type CreateApiTokenResponseDto, type CreateClientConfig, type CreateContractRequestDto, type CreateContractResponseDto, type CreateFileRequestDto, type CreateFileResponseDto, type CreateInboundWebhookConfigBody, type CreateInboundWebhookConfigResponse, type CreateMissionRequestDto, type CreateMissionResponseDto, type CreateQuoteRequestDto, type CreateVaultsRequestDto, type CreateVaultsResponseDto, type CreateWebhookBody, type CreateWebhookResponse, type DeleteContractResponseDto, type DeleteInboundWebhookConfigResponse, type DeleteWebhookResponse, type DlqRedriverControllerRedriveDlqData, type DlqRedriverControllerRedriveDlqErrors, type DlqRedriverControllerRedriveDlqResponse, type DlqRedriverControllerRedriveDlqResponses, Event, type FlightDto, type FlightReviewedEvent, type FlightSubmittedEvent, type FlightsControllerCreatePresignedUrlsData, type FlightsControllerCreatePresignedUrlsErrors, type FlightsControllerCreatePresignedUrlsResponse, type FlightsControllerCreatePresignedUrlsResponses, type FlightsControllerGenerateStorageKeyData, type FlightsControllerGenerateStorageKeyErrors, type FlightsControllerGenerateStorageKeyResponse, type FlightsControllerGenerateStorageKeyResponses, type FlightsControllerGetFlightData, type FlightsControllerGetFlightErrors, type FlightsControllerGetFlightResponse, type FlightsControllerGetFlightResponses, type FlightsControllerValidateFlightData, type FlightsControllerValidateFlightErrors, type FlightsControllerValidateFlightResponse, type FlightsControllerValidateFlightResponses, type GetContractResponseDto, type GetContractsResponseDto, type GetInboundWebhookConfigResponse, type GetInboundWebhookConfigsResponse, type GetProvenanceCryptoKeyResponse, type GetTimeLimitsForSunAltitudeResponse, type GetWebhookResponse, type GetWebhookStatusResponse, type GetWebhooksResponse, type InboundWebhookConfigsControllerCreateData, type InboundWebhookConfigsControllerCreateErrors, type InboundWebhookConfigsControllerCreateResponse, type InboundWebhookConfigsControllerCreateResponses, type InboundWebhookConfigsControllerDeleteData, type InboundWebhookConfigsControllerDeleteErrors, type InboundWebhookConfigsControllerDeleteResponse, type InboundWebhookConfigsControllerDeleteResponses, type InboundWebhookConfigsControllerGetData, type InboundWebhookConfigsControllerGetErrors, type InboundWebhookConfigsControllerGetManyData, type InboundWebhookConfigsControllerGetManyErrors, type InboundWebhookConfigsControllerGetManyResponse, type InboundWebhookConfigsControllerGetManyResponses, type InboundWebhookConfigsControllerGetResponse, type InboundWebhookConfigsControllerGetResponses, type InboundWebhookConfigsControllerUpdateData, type InboundWebhookConfigsControllerUpdateErrors, type InboundWebhookConfigsControllerUpdateResponse, type InboundWebhookConfigsControllerUpdateResponses, type KeysControllerGetProvenanceCryptoKeyData, type KeysControllerGetProvenanceCryptoKeyResponse, type KeysControllerGetProvenanceCryptoKeyResponses, type MissionCreatedEvent, type MissionPaidEvent, type MissionUpdatedEvent, type MissionsControllerCloseMissionData, type MissionsControllerCloseMissionErrors, type MissionsControllerCloseMissionResponse, type MissionsControllerCloseMissionResponses, type MissionsControllerCreateMissionsData, type MissionsControllerCreateMissionsErrors, type MissionsControllerCreateMissionsResponse, type MissionsControllerCreateMissionsResponses, type MissionsControllerRepriceMissionsData, type MissionsControllerRepriceMissionsErrors, type MissionsControllerRepriceMissionsResponse, type MissionsControllerRepriceMissionsResponses, type MissionsControllerUpdateMissionsData, type MissionsControllerUpdateMissionsErrors, type MissionsControllerUpdateMissionsResponse, type MissionsControllerUpdateMissionsResponses, type Options, type OptionsLegacyParser, type QuerySerializerOptions, type QuotesControllerCreateQuoteData, type QuotesControllerCreateQuoteErrors, type QuotesControllerCreateQuoteResponses, type QuotesControllerGetQuoteData, type QuotesControllerGetQuoteErrors, type QuotesControllerGetQuoteResponses, type RedriveDlqRequestDto, type RedriveDlqResponseDto, type RegenerateWebhookSecretResponseDto, type RepriceMissionsRequestDto, type RepriceMissionsResponseDto, type RequestOptions, type RequestResult, type ResponseStyle, type SchemaControllerGetEventSchemaData, type SchemaControllerGetEventSchemaResponses, type TDataShape, type TestEvent, type TestWebhookResponse, type UpdateApiTokenRequestDto, type UpdateApiTokenResponseDto, type UpdateContractRequestDto, type UpdateContractResponseDto, type UpdateInboundWebhookConfigBody, type UpdateInboundWebhookConfigResponse, type UpdateMissionsRequestDto, type UpdateMissionsResponseDto, type UpdateWebhookBody, type UpdateWebhookResponse, type ValidateFlightRequestDto, type ValidateFlightResponseDto, type VaultsControllerCreateVaultsData, type VaultsControllerCreateVaultsErrors, type VaultsControllerCreateVaultsResponse, type VaultsControllerCreateVaultsResponses, type WebhooksControllerCreateData, type WebhooksControllerCreateErrors, type WebhooksControllerCreateResponse, type WebhooksControllerCreateResponses, type WebhooksControllerDeleteData, type WebhooksControllerDeleteErrors, type WebhooksControllerDeleteResponse, type WebhooksControllerDeleteResponses, type WebhooksControllerGetData, type WebhooksControllerGetErrors, type WebhooksControllerGetManyData, type WebhooksControllerGetManyErrors, type WebhooksControllerGetManyResponse, type WebhooksControllerGetManyResponses, type WebhooksControllerGetResponse, type WebhooksControllerGetResponses, type WebhooksControllerGetStatusData, type WebhooksControllerGetStatusErrors, type WebhooksControllerGetStatusResponse, type WebhooksControllerGetStatusResponses, type WebhooksControllerRegenerateSecretData, type WebhooksControllerRegenerateSecretErrors, type WebhooksControllerRegenerateSecretResponse, type WebhooksControllerRegenerateSecretResponses, type WebhooksControllerTestData, type WebhooksControllerTestErrors, type WebhooksControllerTestResponse, type WebhooksControllerTestResponses, type WebhooksControllerUpdateData, type WebhooksControllerUpdateErrors, type WebhooksControllerUpdateResponse, type WebhooksControllerUpdateResponses, alchemyControllerHandleWebhook, apiControllerGetError, apiControllerGetHello, apiTokenControllerCreateToken, apiTokenControllerDeleteToken, apiTokenControllerGetToken, apiTokenControllerUpdateToken, buildClientParams, conditionsControllerGetSunAltitudeTimeLimits, contractsControllerCreateContract, contractsControllerDeleteContract, contractsControllerGetAllContracts, contractsControllerGetContract, contractsControllerUpdateContract, createClient, createConfig, dlqRedriverControllerRedriveDlq, flightsControllerCreatePresignedUrls, flightsControllerGenerateStorageKey, flightsControllerGetFlight, flightsControllerValidateFlight, formDataBodySerializer, inboundWebhookConfigsControllerCreate, inboundWebhookConfigsControllerDelete, inboundWebhookConfigsControllerGet, inboundWebhookConfigsControllerGetMany, inboundWebhookConfigsControllerUpdate, jsonBodySerializer, keysControllerGetProvenanceCryptoKey, mergeHeaders, missionsControllerCloseMission, missionsControllerCreateMissions, missionsControllerRepriceMissions, missionsControllerUpdateMissions, parseWebhookEvent, quotesControllerCreateQuote, quotesControllerGetQuote, schemaControllerGetEventSchema, urlSearchParamsBodySerializer, vaultsControllerCreateVaults, webhooksControllerCreate, webhooksControllerDelete, webhooksControllerGet, webhooksControllerGetMany, webhooksControllerGetStatus, webhooksControllerRegenerateSecret, webhooksControllerTest, webhooksControllerUpdate };
|