@layer-drone/protocol 0.1.2 → 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 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;
@@ -87,12 +263,18 @@ type GetProvenanceCryptoKeyResponse = {
87
263
  type CreateMissionRequestDto = {
88
264
  missions: Array<{
89
265
  zoneId: string;
266
+ campaigns: Array<string>;
90
267
  flightPlanId: number;
91
268
  amount: string | number | bigint;
92
269
  startTime: Date;
93
270
  endTime: Date;
271
+ collateralToken: string;
272
+ decimals: number;
273
+ isReservable: boolean;
274
+ tags?: {
275
+ [key: string]: string;
276
+ };
94
277
  }>;
95
- campaignId: number;
96
278
  requestor: string;
97
279
  mintOnChain?: boolean;
98
280
  };
@@ -105,19 +287,24 @@ type CreateMissionResponseDto = {
105
287
  amount: string;
106
288
  zoneId: string;
107
289
  flightPlanId: number;
290
+ campaigns: Array<string>;
108
291
  captureStartTime: Date;
109
292
  captureEndTime: Date;
110
293
  requestor: string;
294
+ isReservable: boolean;
295
+ tags?: {
296
+ [key: string]: string;
297
+ };
111
298
  }>;
112
- } | string;
299
+ };
113
300
  };
114
301
  type UpdateMissionsRequestDto = {
115
302
  missions: Array<{
116
303
  id: string | number | bigint;
117
- amount: string | number | bigint;
118
- } | {
119
- id: string | number | bigint;
120
- isOpen: false;
304
+ amount?: string | number | bigint;
305
+ isOpen?: boolean;
306
+ collateralToken?: string;
307
+ decimals?: number;
121
308
  }>;
122
309
  treasuryAddress: string;
123
310
  };
@@ -127,7 +314,29 @@ type UpdateMissionsResponseDto = {
127
314
  escrowRequestsQueued: Array<string>;
128
315
  withdrawalRequestsQueued: Array<string>;
129
316
  cancelRequestsQueued: Array<string>;
130
- } | string;
317
+ };
318
+ };
319
+ type RepriceMissionsRequestDto = {
320
+ scaleFactor: number;
321
+ requestor: string;
322
+ jobId?: string;
323
+ };
324
+ type RepriceMissionsResponseDto = {
325
+ success: boolean;
326
+ data: {
327
+ jobId: string;
328
+ status: "in_progress" | "queued" | "completed" | "failed";
329
+ missionsProcessed: number;
330
+ escrowRequestsQueued: Array<string>;
331
+ withdrawalRequestsQueued: Array<string>;
332
+ errorMessage?: string;
333
+ };
334
+ };
335
+ type CloseMissionRequestDto = {
336
+ flightId: string | number | bigint;
337
+ };
338
+ type CloseMissionResponseDto = {
339
+ success: boolean;
131
340
  };
132
341
  type CreateQuoteRequestDto = {
133
342
  missionIds: Array<number>;
@@ -135,6 +344,25 @@ type CreateQuoteRequestDto = {
135
344
  buyer: string;
136
345
  mintOnChain: boolean;
137
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
+ };
138
366
  type CreateWebhookBody = {
139
367
  name: string;
140
368
  url: string;
@@ -197,6 +425,102 @@ type GetWebhookStatusResponse = {
197
425
  status: "inactive" | "error" | "connected" | "connecting";
198
426
  error?: string;
199
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
+ };
200
524
  type ApiControllerGetHelloData = {
201
525
  body?: never;
202
526
  path?: never;
@@ -290,6 +614,104 @@ type ConditionsControllerGetSunAltitudeTimeLimitsResponses = {
290
614
  200: GetTimeLimitsForSunAltitudeResponse;
291
615
  };
292
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];
293
715
  type FlightsControllerGenerateStorageKeyData = {
294
716
  body?: never;
295
717
  path?: never;
@@ -392,6 +814,38 @@ type MissionsControllerUpdateMissionsResponses = {
392
814
  200: UpdateMissionsResponseDto;
393
815
  };
394
816
  type MissionsControllerUpdateMissionsResponse = MissionsControllerUpdateMissionsResponses[keyof MissionsControllerUpdateMissionsResponses];
817
+ type MissionsControllerRepriceMissionsData = {
818
+ body: RepriceMissionsRequestDto;
819
+ path?: never;
820
+ query?: never;
821
+ url: "/missions/amounts";
822
+ };
823
+ type MissionsControllerRepriceMissionsErrors = {
824
+ 401: unknown;
825
+ 403: unknown;
826
+ };
827
+ type MissionsControllerRepriceMissionsResponses = {
828
+ 200: RepriceMissionsResponseDto;
829
+ };
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];
395
849
  type QuotesControllerCreateQuoteData = {
396
850
  body: CreateQuoteRequestDto;
397
851
  path?: never;
@@ -429,6 +883,22 @@ type SchemaControllerGetEventSchemaData = {
429
883
  type SchemaControllerGetEventSchemaResponses = {
430
884
  200: unknown;
431
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];
432
902
  type WebhooksControllerGetManyData = {
433
903
  body?: never;
434
904
  path: {
@@ -563,6 +1033,91 @@ type WebhooksControllerGetStatusResponses = {
563
1033
  200: GetWebhookStatusResponse;
564
1034
  };
565
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];
566
1121
  type ClientOptions$1 = {
567
1122
  baseUrl: string;
568
1123
  };
@@ -748,6 +1303,12 @@ declare const apiTokenControllerDeleteToken: <ThrowOnError extends boolean = fal
748
1303
  declare const apiTokenControllerGetToken: <ThrowOnError extends boolean = false>(options: Options<ApiTokenControllerGetTokenData, ThrowOnError>) => RequestResult<ApiTokenControllerGetTokenResponses, ApiTokenControllerGetTokenErrors, ThrowOnError, "fields">;
749
1304
  declare const apiTokenControllerUpdateToken: <ThrowOnError extends boolean = false>(options: Options<ApiTokenControllerUpdateTokenData, ThrowOnError>) => RequestResult<ApiTokenControllerUpdateTokenResponses, ApiTokenControllerUpdateTokenErrors, ThrowOnError, "fields">;
750
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">;
751
1312
  declare const flightsControllerGenerateStorageKey: <ThrowOnError extends boolean = false>(options: Options<FlightsControllerGenerateStorageKeyData, ThrowOnError>) => RequestResult<FlightsControllerGenerateStorageKeyResponses, FlightsControllerGenerateStorageKeyErrors, ThrowOnError, "fields">;
752
1313
  declare const flightsControllerGetFlight: <ThrowOnError extends boolean = false>(options: Options<FlightsControllerGetFlightData, ThrowOnError>) => RequestResult<FlightsControllerGetFlightResponses, FlightsControllerGetFlightErrors, ThrowOnError, "fields">;
753
1314
  declare const flightsControllerCreatePresignedUrls: <ThrowOnError extends boolean = false>(options: Options<FlightsControllerCreatePresignedUrlsData, ThrowOnError>) => RequestResult<FlightsControllerCreatePresignedUrlsResponses, FlightsControllerCreatePresignedUrlsErrors, ThrowOnError, "fields">;
@@ -755,9 +1316,12 @@ declare const flightsControllerValidateFlight: <ThrowOnError extends boolean = f
755
1316
  declare const keysControllerGetProvenanceCryptoKey: <ThrowOnError extends boolean = false>(options?: Options<KeysControllerGetProvenanceCryptoKeyData, ThrowOnError>) => RequestResult<KeysControllerGetProvenanceCryptoKeyResponses, unknown, ThrowOnError, "fields">;
756
1317
  declare const missionsControllerCreateMissions: <ThrowOnError extends boolean = false>(options: Options<MissionsControllerCreateMissionsData, ThrowOnError>) => RequestResult<MissionsControllerCreateMissionsResponses, MissionsControllerCreateMissionsErrors, ThrowOnError, "fields">;
757
1318
  declare const missionsControllerUpdateMissions: <ThrowOnError extends boolean = false>(options: Options<MissionsControllerUpdateMissionsData, ThrowOnError>) => RequestResult<MissionsControllerUpdateMissionsResponses, MissionsControllerUpdateMissionsErrors, ThrowOnError, "fields">;
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">;
758
1321
  declare const quotesControllerCreateQuote: <ThrowOnError extends boolean = false>(options: Options<QuotesControllerCreateQuoteData, ThrowOnError>) => RequestResult<QuotesControllerCreateQuoteResponses, QuotesControllerCreateQuoteErrors, ThrowOnError, "fields">;
759
1322
  declare const quotesControllerGetQuote: <ThrowOnError extends boolean = false>(options: Options<QuotesControllerGetQuoteData, ThrowOnError>) => RequestResult<QuotesControllerGetQuoteResponses, QuotesControllerGetQuoteErrors, ThrowOnError, "fields">;
760
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">;
761
1325
  declare const webhooksControllerGetMany: <ThrowOnError extends boolean = false>(options: Options<WebhooksControllerGetManyData, ThrowOnError>) => RequestResult<WebhooksControllerGetManyResponses, WebhooksControllerGetManyErrors, ThrowOnError, "fields">;
762
1326
  declare const webhooksControllerCreate: <ThrowOnError extends boolean = false>(options: Options<WebhooksControllerCreateData, ThrowOnError>) => RequestResult<WebhooksControllerCreateResponses, WebhooksControllerCreateErrors, ThrowOnError, "fields">;
763
1327
  declare const webhooksControllerDelete: <ThrowOnError extends boolean = false>(options: Options<WebhooksControllerDeleteData, ThrowOnError>) => RequestResult<WebhooksControllerDeleteResponses, WebhooksControllerDeleteErrors, ThrowOnError, "fields">;
@@ -766,6 +1330,12 @@ declare const webhooksControllerUpdate: <ThrowOnError extends boolean = false>(o
766
1330
  declare const webhooksControllerRegenerateSecret: <ThrowOnError extends boolean = false>(options: Options<WebhooksControllerRegenerateSecretData, ThrowOnError>) => RequestResult<WebhooksControllerRegenerateSecretResponses, WebhooksControllerRegenerateSecretErrors, ThrowOnError, "fields">;
767
1331
  declare const webhooksControllerTest: <ThrowOnError extends boolean = false>(options: Options<WebhooksControllerTestData, ThrowOnError>) => RequestResult<WebhooksControllerTestResponses, WebhooksControllerTestErrors, ThrowOnError, "fields">;
768
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">;
769
1339
 
770
1340
  declare const Event: z.ZodUnion<[z.ZodObject<{
771
1341
  id: z.ZodString;
@@ -805,6 +1375,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
805
1375
  event_type: z.ZodLiteral<"protocol.mission.created">;
806
1376
  timestamp: z.ZodString;
807
1377
  data: z.ZodObject<{
1378
+ version: z.ZodLiteral<1>;
808
1379
  id: z.ZodEffects<z.ZodObject<{
809
1380
  __type: z.ZodLiteral<"bigint">;
810
1381
  value: z.ZodString;
@@ -849,8 +1420,13 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
849
1420
  campaigns: z.ZodArray<z.ZodString, "many">;
850
1421
  captureStartTime: z.ZodString;
851
1422
  captureEndTime: z.ZodString;
1423
+ isReservable: z.ZodBoolean;
852
1424
  requestor: z.ZodString;
1425
+ collateralTokenAddress: z.ZodString;
1426
+ chainId: z.ZodNumber;
1427
+ tags: z.ZodRecord<z.ZodString, z.ZodString>;
853
1428
  }, "strip", z.ZodAny, z.objectOutputType<{
1429
+ version: z.ZodLiteral<1>;
854
1430
  id: z.ZodEffects<z.ZodObject<{
855
1431
  __type: z.ZodLiteral<"bigint">;
856
1432
  value: z.ZodString;
@@ -895,8 +1471,13 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
895
1471
  campaigns: z.ZodArray<z.ZodString, "many">;
896
1472
  captureStartTime: z.ZodString;
897
1473
  captureEndTime: z.ZodString;
1474
+ isReservable: z.ZodBoolean;
898
1475
  requestor: z.ZodString;
1476
+ collateralTokenAddress: z.ZodString;
1477
+ chainId: z.ZodNumber;
1478
+ tags: z.ZodRecord<z.ZodString, z.ZodString>;
899
1479
  }, z.ZodAny, "strip">, z.objectInputType<{
1480
+ version: z.ZodLiteral<1>;
900
1481
  id: z.ZodEffects<z.ZodObject<{
901
1482
  __type: z.ZodLiteral<"bigint">;
902
1483
  value: z.ZodString;
@@ -941,13 +1522,18 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
941
1522
  campaigns: z.ZodArray<z.ZodString, "many">;
942
1523
  captureStartTime: z.ZodString;
943
1524
  captureEndTime: z.ZodString;
1525
+ isReservable: z.ZodBoolean;
944
1526
  requestor: z.ZodString;
1527
+ collateralTokenAddress: z.ZodString;
1528
+ chainId: z.ZodNumber;
1529
+ tags: z.ZodRecord<z.ZodString, z.ZodString>;
945
1530
  }, z.ZodAny, "strip">>;
946
1531
  }, "strip", z.ZodAny, z.objectOutputType<{
947
1532
  id: z.ZodString;
948
1533
  event_type: z.ZodLiteral<"protocol.mission.created">;
949
1534
  timestamp: z.ZodString;
950
1535
  data: z.ZodObject<{
1536
+ version: z.ZodLiteral<1>;
951
1537
  id: z.ZodEffects<z.ZodObject<{
952
1538
  __type: z.ZodLiteral<"bigint">;
953
1539
  value: z.ZodString;
@@ -992,8 +1578,13 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
992
1578
  campaigns: z.ZodArray<z.ZodString, "many">;
993
1579
  captureStartTime: z.ZodString;
994
1580
  captureEndTime: z.ZodString;
1581
+ isReservable: z.ZodBoolean;
995
1582
  requestor: z.ZodString;
1583
+ collateralTokenAddress: z.ZodString;
1584
+ chainId: z.ZodNumber;
1585
+ tags: z.ZodRecord<z.ZodString, z.ZodString>;
996
1586
  }, "strip", z.ZodAny, z.objectOutputType<{
1587
+ version: z.ZodLiteral<1>;
997
1588
  id: z.ZodEffects<z.ZodObject<{
998
1589
  __type: z.ZodLiteral<"bigint">;
999
1590
  value: z.ZodString;
@@ -1038,8 +1629,13 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
1038
1629
  campaigns: z.ZodArray<z.ZodString, "many">;
1039
1630
  captureStartTime: z.ZodString;
1040
1631
  captureEndTime: z.ZodString;
1632
+ isReservable: z.ZodBoolean;
1041
1633
  requestor: z.ZodString;
1634
+ collateralTokenAddress: z.ZodString;
1635
+ chainId: z.ZodNumber;
1636
+ tags: z.ZodRecord<z.ZodString, z.ZodString>;
1042
1637
  }, z.ZodAny, "strip">, z.objectInputType<{
1638
+ version: z.ZodLiteral<1>;
1043
1639
  id: z.ZodEffects<z.ZodObject<{
1044
1640
  __type: z.ZodLiteral<"bigint">;
1045
1641
  value: z.ZodString;
@@ -1084,13 +1680,18 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
1084
1680
  campaigns: z.ZodArray<z.ZodString, "many">;
1085
1681
  captureStartTime: z.ZodString;
1086
1682
  captureEndTime: z.ZodString;
1683
+ isReservable: z.ZodBoolean;
1087
1684
  requestor: z.ZodString;
1685
+ collateralTokenAddress: z.ZodString;
1686
+ chainId: z.ZodNumber;
1687
+ tags: z.ZodRecord<z.ZodString, z.ZodString>;
1088
1688
  }, z.ZodAny, "strip">>;
1089
1689
  }, z.ZodAny, "strip">, z.objectInputType<{
1090
1690
  id: z.ZodString;
1091
1691
  event_type: z.ZodLiteral<"protocol.mission.created">;
1092
1692
  timestamp: z.ZodString;
1093
1693
  data: z.ZodObject<{
1694
+ version: z.ZodLiteral<1>;
1094
1695
  id: z.ZodEffects<z.ZodObject<{
1095
1696
  __type: z.ZodLiteral<"bigint">;
1096
1697
  value: z.ZodString;
@@ -1135,8 +1736,13 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
1135
1736
  campaigns: z.ZodArray<z.ZodString, "many">;
1136
1737
  captureStartTime: z.ZodString;
1137
1738
  captureEndTime: z.ZodString;
1739
+ isReservable: z.ZodBoolean;
1138
1740
  requestor: z.ZodString;
1741
+ collateralTokenAddress: z.ZodString;
1742
+ chainId: z.ZodNumber;
1743
+ tags: z.ZodRecord<z.ZodString, z.ZodString>;
1139
1744
  }, "strip", z.ZodAny, z.objectOutputType<{
1745
+ version: z.ZodLiteral<1>;
1140
1746
  id: z.ZodEffects<z.ZodObject<{
1141
1747
  __type: z.ZodLiteral<"bigint">;
1142
1748
  value: z.ZodString;
@@ -1181,8 +1787,13 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
1181
1787
  campaigns: z.ZodArray<z.ZodString, "many">;
1182
1788
  captureStartTime: z.ZodString;
1183
1789
  captureEndTime: z.ZodString;
1790
+ isReservable: z.ZodBoolean;
1184
1791
  requestor: z.ZodString;
1792
+ collateralTokenAddress: z.ZodString;
1793
+ chainId: z.ZodNumber;
1794
+ tags: z.ZodRecord<z.ZodString, z.ZodString>;
1185
1795
  }, z.ZodAny, "strip">, z.objectInputType<{
1796
+ version: z.ZodLiteral<1>;
1186
1797
  id: z.ZodEffects<z.ZodObject<{
1187
1798
  __type: z.ZodLiteral<"bigint">;
1188
1799
  value: z.ZodString;
@@ -1227,13 +1838,18 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
1227
1838
  campaigns: z.ZodArray<z.ZodString, "many">;
1228
1839
  captureStartTime: z.ZodString;
1229
1840
  captureEndTime: z.ZodString;
1841
+ isReservable: z.ZodBoolean;
1230
1842
  requestor: z.ZodString;
1843
+ collateralTokenAddress: z.ZodString;
1844
+ chainId: z.ZodNumber;
1845
+ tags: z.ZodRecord<z.ZodString, z.ZodString>;
1231
1846
  }, z.ZodAny, "strip">>;
1232
1847
  }, z.ZodAny, "strip">>, z.ZodObject<{
1233
1848
  id: z.ZodString;
1234
1849
  event_type: z.ZodLiteral<"protocol.mission.updated">;
1235
1850
  timestamp: z.ZodString;
1236
1851
  data: z.ZodObject<{
1852
+ version: z.ZodLiteral<1>;
1237
1853
  id: z.ZodEffects<z.ZodObject<{
1238
1854
  __type: z.ZodLiteral<"bigint">;
1239
1855
  value: z.ZodString;
@@ -1263,6 +1879,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
1263
1879
  isOpen: z.ZodOptional<z.ZodBoolean>;
1264
1880
  campaigns: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1265
1881
  }, "strip", z.ZodAny, z.objectOutputType<{
1882
+ version: z.ZodLiteral<1>;
1266
1883
  id: z.ZodEffects<z.ZodObject<{
1267
1884
  __type: z.ZodLiteral<"bigint">;
1268
1885
  value: z.ZodString;
@@ -1292,6 +1909,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
1292
1909
  isOpen: z.ZodOptional<z.ZodBoolean>;
1293
1910
  campaigns: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1294
1911
  }, z.ZodAny, "strip">, z.objectInputType<{
1912
+ version: z.ZodLiteral<1>;
1295
1913
  id: z.ZodEffects<z.ZodObject<{
1296
1914
  __type: z.ZodLiteral<"bigint">;
1297
1915
  value: z.ZodString;
@@ -1326,6 +1944,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
1326
1944
  event_type: z.ZodLiteral<"protocol.mission.updated">;
1327
1945
  timestamp: z.ZodString;
1328
1946
  data: z.ZodObject<{
1947
+ version: z.ZodLiteral<1>;
1329
1948
  id: z.ZodEffects<z.ZodObject<{
1330
1949
  __type: z.ZodLiteral<"bigint">;
1331
1950
  value: z.ZodString;
@@ -1355,6 +1974,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
1355
1974
  isOpen: z.ZodOptional<z.ZodBoolean>;
1356
1975
  campaigns: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1357
1976
  }, "strip", z.ZodAny, z.objectOutputType<{
1977
+ version: z.ZodLiteral<1>;
1358
1978
  id: z.ZodEffects<z.ZodObject<{
1359
1979
  __type: z.ZodLiteral<"bigint">;
1360
1980
  value: z.ZodString;
@@ -1384,6 +2004,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
1384
2004
  isOpen: z.ZodOptional<z.ZodBoolean>;
1385
2005
  campaigns: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1386
2006
  }, z.ZodAny, "strip">, z.objectInputType<{
2007
+ version: z.ZodLiteral<1>;
1387
2008
  id: z.ZodEffects<z.ZodObject<{
1388
2009
  __type: z.ZodLiteral<"bigint">;
1389
2010
  value: z.ZodString;
@@ -1418,6 +2039,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
1418
2039
  event_type: z.ZodLiteral<"protocol.mission.updated">;
1419
2040
  timestamp: z.ZodString;
1420
2041
  data: z.ZodObject<{
2042
+ version: z.ZodLiteral<1>;
1421
2043
  id: z.ZodEffects<z.ZodObject<{
1422
2044
  __type: z.ZodLiteral<"bigint">;
1423
2045
  value: z.ZodString;
@@ -1447,6 +2069,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
1447
2069
  isOpen: z.ZodOptional<z.ZodBoolean>;
1448
2070
  campaigns: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1449
2071
  }, "strip", z.ZodAny, z.objectOutputType<{
2072
+ version: z.ZodLiteral<1>;
1450
2073
  id: z.ZodEffects<z.ZodObject<{
1451
2074
  __type: z.ZodLiteral<"bigint">;
1452
2075
  value: z.ZodString;
@@ -1476,6 +2099,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
1476
2099
  isOpen: z.ZodOptional<z.ZodBoolean>;
1477
2100
  campaigns: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1478
2101
  }, z.ZodAny, "strip">, z.objectInputType<{
2102
+ version: z.ZodLiteral<1>;
1479
2103
  id: z.ZodEffects<z.ZodObject<{
1480
2104
  __type: z.ZodLiteral<"bigint">;
1481
2105
  value: z.ZodString;
@@ -1510,6 +2134,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
1510
2134
  event_type: z.ZodLiteral<"protocol.mission.paid">;
1511
2135
  timestamp: z.ZodString;
1512
2136
  data: z.ZodObject<{
2137
+ version: z.ZodLiteral<1>;
1513
2138
  recipient: z.ZodString;
1514
2139
  flightId: z.ZodEffects<z.ZodObject<{
1515
2140
  __type: z.ZodLiteral<"bigint">;
@@ -1565,6 +2190,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
1565
2190
  }>;
1566
2191
  storageKey: z.ZodString;
1567
2192
  }, "strip", z.ZodAny, z.objectOutputType<{
2193
+ version: z.ZodLiteral<1>;
1568
2194
  recipient: z.ZodString;
1569
2195
  flightId: z.ZodEffects<z.ZodObject<{
1570
2196
  __type: z.ZodLiteral<"bigint">;
@@ -1620,6 +2246,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
1620
2246
  }>;
1621
2247
  storageKey: z.ZodString;
1622
2248
  }, z.ZodAny, "strip">, z.objectInputType<{
2249
+ version: z.ZodLiteral<1>;
1623
2250
  recipient: z.ZodString;
1624
2251
  flightId: z.ZodEffects<z.ZodObject<{
1625
2252
  __type: z.ZodLiteral<"bigint">;
@@ -1680,6 +2307,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
1680
2307
  event_type: z.ZodLiteral<"protocol.mission.paid">;
1681
2308
  timestamp: z.ZodString;
1682
2309
  data: z.ZodObject<{
2310
+ version: z.ZodLiteral<1>;
1683
2311
  recipient: z.ZodString;
1684
2312
  flightId: z.ZodEffects<z.ZodObject<{
1685
2313
  __type: z.ZodLiteral<"bigint">;
@@ -1735,6 +2363,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
1735
2363
  }>;
1736
2364
  storageKey: z.ZodString;
1737
2365
  }, "strip", z.ZodAny, z.objectOutputType<{
2366
+ version: z.ZodLiteral<1>;
1738
2367
  recipient: z.ZodString;
1739
2368
  flightId: z.ZodEffects<z.ZodObject<{
1740
2369
  __type: z.ZodLiteral<"bigint">;
@@ -1790,6 +2419,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
1790
2419
  }>;
1791
2420
  storageKey: z.ZodString;
1792
2421
  }, z.ZodAny, "strip">, z.objectInputType<{
2422
+ version: z.ZodLiteral<1>;
1793
2423
  recipient: z.ZodString;
1794
2424
  flightId: z.ZodEffects<z.ZodObject<{
1795
2425
  __type: z.ZodLiteral<"bigint">;
@@ -1850,6 +2480,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
1850
2480
  event_type: z.ZodLiteral<"protocol.mission.paid">;
1851
2481
  timestamp: z.ZodString;
1852
2482
  data: z.ZodObject<{
2483
+ version: z.ZodLiteral<1>;
1853
2484
  recipient: z.ZodString;
1854
2485
  flightId: z.ZodEffects<z.ZodObject<{
1855
2486
  __type: z.ZodLiteral<"bigint">;
@@ -1905,6 +2536,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
1905
2536
  }>;
1906
2537
  storageKey: z.ZodString;
1907
2538
  }, "strip", z.ZodAny, z.objectOutputType<{
2539
+ version: z.ZodLiteral<1>;
1908
2540
  recipient: z.ZodString;
1909
2541
  flightId: z.ZodEffects<z.ZodObject<{
1910
2542
  __type: z.ZodLiteral<"bigint">;
@@ -1960,6 +2592,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
1960
2592
  }>;
1961
2593
  storageKey: z.ZodString;
1962
2594
  }, z.ZodAny, "strip">, z.objectInputType<{
2595
+ version: z.ZodLiteral<1>;
1963
2596
  recipient: z.ZodString;
1964
2597
  flightId: z.ZodEffects<z.ZodObject<{
1965
2598
  __type: z.ZodLiteral<"bigint">;
@@ -2020,6 +2653,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
2020
2653
  event_type: z.ZodLiteral<"protocol.flight.submitted">;
2021
2654
  timestamp: z.ZodString;
2022
2655
  data: z.ZodObject<{
2656
+ version: z.ZodLiteral<1>;
2023
2657
  storageKey: z.ZodString;
2024
2658
  pilotAddress: z.ZodString;
2025
2659
  flightManifestUri: z.ZodString;
@@ -2037,6 +2671,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
2037
2671
  __type: "bigint";
2038
2672
  }>;
2039
2673
  }, "strip", z.ZodAny, z.objectOutputType<{
2674
+ version: z.ZodLiteral<1>;
2040
2675
  storageKey: z.ZodString;
2041
2676
  pilotAddress: z.ZodString;
2042
2677
  flightManifestUri: z.ZodString;
@@ -2054,6 +2689,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
2054
2689
  __type: "bigint";
2055
2690
  }>;
2056
2691
  }, z.ZodAny, "strip">, z.objectInputType<{
2692
+ version: z.ZodLiteral<1>;
2057
2693
  storageKey: z.ZodString;
2058
2694
  pilotAddress: z.ZodString;
2059
2695
  flightManifestUri: z.ZodString;
@@ -2076,6 +2712,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
2076
2712
  event_type: z.ZodLiteral<"protocol.flight.submitted">;
2077
2713
  timestamp: z.ZodString;
2078
2714
  data: z.ZodObject<{
2715
+ version: z.ZodLiteral<1>;
2079
2716
  storageKey: z.ZodString;
2080
2717
  pilotAddress: z.ZodString;
2081
2718
  flightManifestUri: z.ZodString;
@@ -2093,6 +2730,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
2093
2730
  __type: "bigint";
2094
2731
  }>;
2095
2732
  }, "strip", z.ZodAny, z.objectOutputType<{
2733
+ version: z.ZodLiteral<1>;
2096
2734
  storageKey: z.ZodString;
2097
2735
  pilotAddress: z.ZodString;
2098
2736
  flightManifestUri: z.ZodString;
@@ -2110,6 +2748,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
2110
2748
  __type: "bigint";
2111
2749
  }>;
2112
2750
  }, z.ZodAny, "strip">, z.objectInputType<{
2751
+ version: z.ZodLiteral<1>;
2113
2752
  storageKey: z.ZodString;
2114
2753
  pilotAddress: z.ZodString;
2115
2754
  flightManifestUri: z.ZodString;
@@ -2132,6 +2771,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
2132
2771
  event_type: z.ZodLiteral<"protocol.flight.submitted">;
2133
2772
  timestamp: z.ZodString;
2134
2773
  data: z.ZodObject<{
2774
+ version: z.ZodLiteral<1>;
2135
2775
  storageKey: z.ZodString;
2136
2776
  pilotAddress: z.ZodString;
2137
2777
  flightManifestUri: z.ZodString;
@@ -2149,6 +2789,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
2149
2789
  __type: "bigint";
2150
2790
  }>;
2151
2791
  }, "strip", z.ZodAny, z.objectOutputType<{
2792
+ version: z.ZodLiteral<1>;
2152
2793
  storageKey: z.ZodString;
2153
2794
  pilotAddress: z.ZodString;
2154
2795
  flightManifestUri: z.ZodString;
@@ -2166,6 +2807,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
2166
2807
  __type: "bigint";
2167
2808
  }>;
2168
2809
  }, z.ZodAny, "strip">, z.objectInputType<{
2810
+ version: z.ZodLiteral<1>;
2169
2811
  storageKey: z.ZodString;
2170
2812
  pilotAddress: z.ZodString;
2171
2813
  flightManifestUri: z.ZodString;
@@ -2188,6 +2830,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
2188
2830
  event_type: z.ZodLiteral<"protocol.flight.reviewed">;
2189
2831
  timestamp: z.ZodString;
2190
2832
  data: z.ZodObject<{
2833
+ version: z.ZodLiteral<1>;
2191
2834
  flightId: z.ZodEffects<z.ZodObject<{
2192
2835
  __type: z.ZodLiteral<"bigint">;
2193
2836
  value: z.ZodString;
@@ -2221,6 +2864,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
2221
2864
  __type: "bigint";
2222
2865
  }>;
2223
2866
  }, "strip", z.ZodAny, z.objectOutputType<{
2867
+ version: z.ZodLiteral<1>;
2224
2868
  flightId: z.ZodEffects<z.ZodObject<{
2225
2869
  __type: z.ZodLiteral<"bigint">;
2226
2870
  value: z.ZodString;
@@ -2254,6 +2898,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
2254
2898
  __type: "bigint";
2255
2899
  }>;
2256
2900
  }, z.ZodAny, "strip">, z.objectInputType<{
2901
+ version: z.ZodLiteral<1>;
2257
2902
  flightId: z.ZodEffects<z.ZodObject<{
2258
2903
  __type: z.ZodLiteral<"bigint">;
2259
2904
  value: z.ZodString;
@@ -2292,6 +2937,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
2292
2937
  event_type: z.ZodLiteral<"protocol.flight.reviewed">;
2293
2938
  timestamp: z.ZodString;
2294
2939
  data: z.ZodObject<{
2940
+ version: z.ZodLiteral<1>;
2295
2941
  flightId: z.ZodEffects<z.ZodObject<{
2296
2942
  __type: z.ZodLiteral<"bigint">;
2297
2943
  value: z.ZodString;
@@ -2325,6 +2971,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
2325
2971
  __type: "bigint";
2326
2972
  }>;
2327
2973
  }, "strip", z.ZodAny, z.objectOutputType<{
2974
+ version: z.ZodLiteral<1>;
2328
2975
  flightId: z.ZodEffects<z.ZodObject<{
2329
2976
  __type: z.ZodLiteral<"bigint">;
2330
2977
  value: z.ZodString;
@@ -2358,6 +3005,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
2358
3005
  __type: "bigint";
2359
3006
  }>;
2360
3007
  }, z.ZodAny, "strip">, z.objectInputType<{
3008
+ version: z.ZodLiteral<1>;
2361
3009
  flightId: z.ZodEffects<z.ZodObject<{
2362
3010
  __type: z.ZodLiteral<"bigint">;
2363
3011
  value: z.ZodString;
@@ -2396,6 +3044,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
2396
3044
  event_type: z.ZodLiteral<"protocol.flight.reviewed">;
2397
3045
  timestamp: z.ZodString;
2398
3046
  data: z.ZodObject<{
3047
+ version: z.ZodLiteral<1>;
2399
3048
  flightId: z.ZodEffects<z.ZodObject<{
2400
3049
  __type: z.ZodLiteral<"bigint">;
2401
3050
  value: z.ZodString;
@@ -2429,6 +3078,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
2429
3078
  __type: "bigint";
2430
3079
  }>;
2431
3080
  }, "strip", z.ZodAny, z.objectOutputType<{
3081
+ version: z.ZodLiteral<1>;
2432
3082
  flightId: z.ZodEffects<z.ZodObject<{
2433
3083
  __type: z.ZodLiteral<"bigint">;
2434
3084
  value: z.ZodString;
@@ -2462,6 +3112,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
2462
3112
  __type: "bigint";
2463
3113
  }>;
2464
3114
  }, z.ZodAny, "strip">, z.objectInputType<{
3115
+ version: z.ZodLiteral<1>;
2465
3116
  flightId: z.ZodEffects<z.ZodObject<{
2466
3117
  __type: z.ZodLiteral<"bigint">;
2467
3118
  value: z.ZodString;
@@ -2532,6 +3183,7 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.o
2532
3183
  event_type: zod.ZodLiteral<"protocol.mission.created">;
2533
3184
  timestamp: zod.ZodString;
2534
3185
  data: zod.ZodObject<{
3186
+ version: zod.ZodLiteral<1>;
2535
3187
  id: zod.ZodEffects<zod.ZodObject<{
2536
3188
  __type: zod.ZodLiteral<"bigint">;
2537
3189
  value: zod.ZodString;
@@ -2576,8 +3228,13 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.o
2576
3228
  campaigns: zod.ZodArray<zod.ZodString, "many">;
2577
3229
  captureStartTime: zod.ZodString;
2578
3230
  captureEndTime: zod.ZodString;
3231
+ isReservable: zod.ZodBoolean;
2579
3232
  requestor: zod.ZodString;
3233
+ collateralTokenAddress: zod.ZodString;
3234
+ chainId: zod.ZodNumber;
3235
+ tags: zod.ZodRecord<zod.ZodString, zod.ZodString>;
2580
3236
  }, "strip", zod.ZodAny, zod.objectOutputType<{
3237
+ version: zod.ZodLiteral<1>;
2581
3238
  id: zod.ZodEffects<zod.ZodObject<{
2582
3239
  __type: zod.ZodLiteral<"bigint">;
2583
3240
  value: zod.ZodString;
@@ -2622,8 +3279,13 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.o
2622
3279
  campaigns: zod.ZodArray<zod.ZodString, "many">;
2623
3280
  captureStartTime: zod.ZodString;
2624
3281
  captureEndTime: zod.ZodString;
3282
+ isReservable: zod.ZodBoolean;
2625
3283
  requestor: zod.ZodString;
3284
+ collateralTokenAddress: zod.ZodString;
3285
+ chainId: zod.ZodNumber;
3286
+ tags: zod.ZodRecord<zod.ZodString, zod.ZodString>;
2626
3287
  }, zod.ZodAny, "strip">, zod.objectInputType<{
3288
+ version: zod.ZodLiteral<1>;
2627
3289
  id: zod.ZodEffects<zod.ZodObject<{
2628
3290
  __type: zod.ZodLiteral<"bigint">;
2629
3291
  value: zod.ZodString;
@@ -2668,13 +3330,18 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.o
2668
3330
  campaigns: zod.ZodArray<zod.ZodString, "many">;
2669
3331
  captureStartTime: zod.ZodString;
2670
3332
  captureEndTime: zod.ZodString;
3333
+ isReservable: zod.ZodBoolean;
2671
3334
  requestor: zod.ZodString;
3335
+ collateralTokenAddress: zod.ZodString;
3336
+ chainId: zod.ZodNumber;
3337
+ tags: zod.ZodRecord<zod.ZodString, zod.ZodString>;
2672
3338
  }, zod.ZodAny, "strip">>;
2673
3339
  }, zod.ZodAny, "strip"> | zod.objectOutputType<{
2674
3340
  id: zod.ZodString;
2675
3341
  event_type: zod.ZodLiteral<"protocol.mission.updated">;
2676
3342
  timestamp: zod.ZodString;
2677
3343
  data: zod.ZodObject<{
3344
+ version: zod.ZodLiteral<1>;
2678
3345
  id: zod.ZodEffects<zod.ZodObject<{
2679
3346
  __type: zod.ZodLiteral<"bigint">;
2680
3347
  value: zod.ZodString;
@@ -2704,6 +3371,7 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.o
2704
3371
  isOpen: zod.ZodOptional<zod.ZodBoolean>;
2705
3372
  campaigns: zod.ZodOptional<zod.ZodArray<zod.ZodString, "many">>;
2706
3373
  }, "strip", zod.ZodAny, zod.objectOutputType<{
3374
+ version: zod.ZodLiteral<1>;
2707
3375
  id: zod.ZodEffects<zod.ZodObject<{
2708
3376
  __type: zod.ZodLiteral<"bigint">;
2709
3377
  value: zod.ZodString;
@@ -2733,6 +3401,7 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.o
2733
3401
  isOpen: zod.ZodOptional<zod.ZodBoolean>;
2734
3402
  campaigns: zod.ZodOptional<zod.ZodArray<zod.ZodString, "many">>;
2735
3403
  }, zod.ZodAny, "strip">, zod.objectInputType<{
3404
+ version: zod.ZodLiteral<1>;
2736
3405
  id: zod.ZodEffects<zod.ZodObject<{
2737
3406
  __type: zod.ZodLiteral<"bigint">;
2738
3407
  value: zod.ZodString;
@@ -2767,6 +3436,7 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.o
2767
3436
  event_type: zod.ZodLiteral<"protocol.mission.paid">;
2768
3437
  timestamp: zod.ZodString;
2769
3438
  data: zod.ZodObject<{
3439
+ version: zod.ZodLiteral<1>;
2770
3440
  recipient: zod.ZodString;
2771
3441
  flightId: zod.ZodEffects<zod.ZodObject<{
2772
3442
  __type: zod.ZodLiteral<"bigint">;
@@ -2822,6 +3492,7 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.o
2822
3492
  }>;
2823
3493
  storageKey: zod.ZodString;
2824
3494
  }, "strip", zod.ZodAny, zod.objectOutputType<{
3495
+ version: zod.ZodLiteral<1>;
2825
3496
  recipient: zod.ZodString;
2826
3497
  flightId: zod.ZodEffects<zod.ZodObject<{
2827
3498
  __type: zod.ZodLiteral<"bigint">;
@@ -2877,6 +3548,7 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.o
2877
3548
  }>;
2878
3549
  storageKey: zod.ZodString;
2879
3550
  }, zod.ZodAny, "strip">, zod.objectInputType<{
3551
+ version: zod.ZodLiteral<1>;
2880
3552
  recipient: zod.ZodString;
2881
3553
  flightId: zod.ZodEffects<zod.ZodObject<{
2882
3554
  __type: zod.ZodLiteral<"bigint">;
@@ -2937,6 +3609,7 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.o
2937
3609
  event_type: zod.ZodLiteral<"protocol.flight.submitted">;
2938
3610
  timestamp: zod.ZodString;
2939
3611
  data: zod.ZodObject<{
3612
+ version: zod.ZodLiteral<1>;
2940
3613
  storageKey: zod.ZodString;
2941
3614
  pilotAddress: zod.ZodString;
2942
3615
  flightManifestUri: zod.ZodString;
@@ -2954,6 +3627,7 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.o
2954
3627
  __type: "bigint";
2955
3628
  }>;
2956
3629
  }, "strip", zod.ZodAny, zod.objectOutputType<{
3630
+ version: zod.ZodLiteral<1>;
2957
3631
  storageKey: zod.ZodString;
2958
3632
  pilotAddress: zod.ZodString;
2959
3633
  flightManifestUri: zod.ZodString;
@@ -2971,6 +3645,7 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.o
2971
3645
  __type: "bigint";
2972
3646
  }>;
2973
3647
  }, zod.ZodAny, "strip">, zod.objectInputType<{
3648
+ version: zod.ZodLiteral<1>;
2974
3649
  storageKey: zod.ZodString;
2975
3650
  pilotAddress: zod.ZodString;
2976
3651
  flightManifestUri: zod.ZodString;
@@ -2993,6 +3668,7 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.o
2993
3668
  event_type: zod.ZodLiteral<"protocol.flight.reviewed">;
2994
3669
  timestamp: zod.ZodString;
2995
3670
  data: zod.ZodObject<{
3671
+ version: zod.ZodLiteral<1>;
2996
3672
  flightId: zod.ZodEffects<zod.ZodObject<{
2997
3673
  __type: zod.ZodLiteral<"bigint">;
2998
3674
  value: zod.ZodString;
@@ -3026,6 +3702,7 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.o
3026
3702
  __type: "bigint";
3027
3703
  }>;
3028
3704
  }, "strip", zod.ZodAny, zod.objectOutputType<{
3705
+ version: zod.ZodLiteral<1>;
3029
3706
  flightId: zod.ZodEffects<zod.ZodObject<{
3030
3707
  __type: zod.ZodLiteral<"bigint">;
3031
3708
  value: zod.ZodString;
@@ -3059,6 +3736,7 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.o
3059
3736
  __type: "bigint";
3060
3737
  }>;
3061
3738
  }, zod.ZodAny, "strip">, zod.objectInputType<{
3739
+ version: zod.ZodLiteral<1>;
3062
3740
  flightId: zod.ZodEffects<zod.ZodObject<{
3063
3741
  __type: zod.ZodLiteral<"bigint">;
3064
3742
  value: zod.ZodString;
@@ -3094,4 +3772,4 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.o
3094
3772
  }, zod.ZodAny, "strip">>;
3095
3773
  }, zod.ZodAny, "strip">;
3096
3774
 
3097
- 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 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 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, 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 };