@layer-drone/protocol 0.1.3 → 0.3.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" | "manageFlightPlans" | "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" | "manageFlightPlans" | "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" | "manageFlightPlans" | "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" | "manageFlightPlans" | "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;
@@ -77,6 +253,165 @@ type ValidateFlightResponseDto = {
77
253
  flightId: bigint;
78
254
  flightManifestUri: string;
79
255
  };
256
+ type GetFlightPlansResponse = {
257
+ data: Array<{
258
+ id: number;
259
+ name: string;
260
+ description: string;
261
+ version: number;
262
+ base_energy_usage: number;
263
+ base_duration: number;
264
+ sections: Array<{
265
+ sectionType: "map";
266
+ parameters: {
267
+ altitudeAboveGround: number;
268
+ flightSpeed: number;
269
+ sideOverlap: number;
270
+ frontOverlap: number;
271
+ gimbalPitch: number;
272
+ takeOffAltitudeOffset: number;
273
+ flightLineHeading: {
274
+ mode: "relative" | "absolute";
275
+ degrees: number;
276
+ };
277
+ };
278
+ } | {
279
+ sectionType: "panorama";
280
+ count: number;
281
+ positioningMethod: "hex-distributed" | "centroid";
282
+ parameters: {
283
+ altitudeAboveGround: number;
284
+ flightSpeed: number;
285
+ fieldOfView: number;
286
+ yawOverlap: number;
287
+ gimbalPitches: Array<number>;
288
+ hasNadirShot: boolean;
289
+ };
290
+ }>;
291
+ connection_strategy: {
292
+ type: "original-order" | "battery-optimized-strict";
293
+ };
294
+ created_at: Date;
295
+ updated_at: Date;
296
+ }>;
297
+ };
298
+ type GetFlightPlanResponse = {
299
+ id: number;
300
+ name: string;
301
+ description: string;
302
+ version: number;
303
+ base_energy_usage: number;
304
+ base_duration: number;
305
+ sections: Array<{
306
+ sectionType: "map";
307
+ parameters: {
308
+ altitudeAboveGround: number;
309
+ flightSpeed: number;
310
+ sideOverlap: number;
311
+ frontOverlap: number;
312
+ gimbalPitch: number;
313
+ takeOffAltitudeOffset: number;
314
+ flightLineHeading: {
315
+ mode: "relative" | "absolute";
316
+ degrees: number;
317
+ };
318
+ };
319
+ } | {
320
+ sectionType: "panorama";
321
+ count: number;
322
+ positioningMethod: "hex-distributed" | "centroid";
323
+ parameters: {
324
+ altitudeAboveGround: number;
325
+ flightSpeed: number;
326
+ fieldOfView: number;
327
+ yawOverlap: number;
328
+ gimbalPitches: Array<number>;
329
+ hasNadirShot: boolean;
330
+ };
331
+ }>;
332
+ connection_strategy: {
333
+ type: "original-order" | "battery-optimized-strict";
334
+ };
335
+ created_at: Date;
336
+ updated_at: Date;
337
+ };
338
+ type CreateFlightPlanBody = {
339
+ name: string;
340
+ description?: string;
341
+ version?: number;
342
+ base_energy_usage: number;
343
+ base_duration: number;
344
+ sections: Array<{
345
+ sectionType: "map";
346
+ parameters: {
347
+ altitudeAboveGround: number;
348
+ flightSpeed: number;
349
+ sideOverlap: number;
350
+ frontOverlap: number;
351
+ gimbalPitch: number;
352
+ takeOffAltitudeOffset: number;
353
+ flightLineHeading: {
354
+ mode: "relative" | "absolute";
355
+ degrees: number;
356
+ };
357
+ };
358
+ } | {
359
+ sectionType: "panorama";
360
+ count: number;
361
+ positioningMethod: "hex-distributed" | "centroid";
362
+ parameters: {
363
+ altitudeAboveGround: number;
364
+ flightSpeed: number;
365
+ fieldOfView: number;
366
+ yawOverlap: number;
367
+ gimbalPitches: Array<number>;
368
+ hasNadirShot: boolean;
369
+ };
370
+ }>;
371
+ connection_strategy: {
372
+ type: "original-order" | "battery-optimized-strict";
373
+ };
374
+ };
375
+ type CreateFlightPlanResponse = {
376
+ id: number;
377
+ name: string;
378
+ description: string;
379
+ version: number;
380
+ base_energy_usage: number;
381
+ base_duration: number;
382
+ sections: Array<{
383
+ sectionType: "map";
384
+ parameters: {
385
+ altitudeAboveGround: number;
386
+ flightSpeed: number;
387
+ sideOverlap: number;
388
+ frontOverlap: number;
389
+ gimbalPitch: number;
390
+ takeOffAltitudeOffset: number;
391
+ flightLineHeading: {
392
+ mode: "relative" | "absolute";
393
+ degrees: number;
394
+ };
395
+ };
396
+ } | {
397
+ sectionType: "panorama";
398
+ count: number;
399
+ positioningMethod: "hex-distributed" | "centroid";
400
+ parameters: {
401
+ altitudeAboveGround: number;
402
+ flightSpeed: number;
403
+ fieldOfView: number;
404
+ yawOverlap: number;
405
+ gimbalPitches: Array<number>;
406
+ hasNadirShot: boolean;
407
+ };
408
+ }>;
409
+ connection_strategy: {
410
+ type: "original-order" | "battery-optimized-strict";
411
+ };
412
+ created_at: Date;
413
+ updated_at: Date;
414
+ };
80
415
  type GetProvenanceCryptoKeyResponse = {
81
416
  KeyId: string;
82
417
  PublicKey: string;
@@ -92,6 +427,12 @@ type CreateMissionRequestDto = {
92
427
  amount: string | number | bigint;
93
428
  startTime: Date;
94
429
  endTime: Date;
430
+ collateralToken: string;
431
+ decimals: number;
432
+ isReservable: boolean;
433
+ tags?: {
434
+ [key: string]: string;
435
+ };
95
436
  }>;
96
437
  requestor: string;
97
438
  mintOnChain?: boolean;
@@ -109,6 +450,10 @@ type CreateMissionResponseDto = {
109
450
  captureStartTime: Date;
110
451
  captureEndTime: Date;
111
452
  requestor: string;
453
+ isReservable: boolean;
454
+ tags?: {
455
+ [key: string]: string;
456
+ };
112
457
  }>;
113
458
  };
114
459
  };
@@ -117,6 +462,8 @@ type UpdateMissionsRequestDto = {
117
462
  id: string | number | bigint;
118
463
  amount?: string | number | bigint;
119
464
  isOpen?: boolean;
465
+ collateralToken?: string;
466
+ decimals?: number;
120
467
  }>;
121
468
  treasuryAddress: string;
122
469
  };
@@ -144,12 +491,37 @@ type RepriceMissionsResponseDto = {
144
491
  errorMessage?: string;
145
492
  };
146
493
  };
494
+ type CloseMissionRequestDto = {
495
+ flightId: string | number | bigint;
496
+ };
497
+ type CloseMissionResponseDto = {
498
+ success: boolean;
499
+ };
147
500
  type CreateQuoteRequestDto = {
148
501
  missionIds: Array<number>;
149
502
  entitlementType: string;
150
503
  buyer: string;
151
504
  mintOnChain: boolean;
152
505
  };
506
+ type CreateVaultsRequestDto = {
507
+ vaults: Array<{
508
+ vaultId: string | number | bigint;
509
+ funder: string;
510
+ amount: string | number | bigint;
511
+ collateralToken: string;
512
+ decimals: number;
513
+ }>;
514
+ };
515
+ type CreateVaultsResponseDto = {
516
+ success: boolean;
517
+ data: {
518
+ vaults: Array<{
519
+ vaultId: string;
520
+ success: boolean;
521
+ message?: string;
522
+ }>;
523
+ };
524
+ };
153
525
  type CreateWebhookBody = {
154
526
  name: string;
155
527
  url: string;
@@ -212,6 +584,102 @@ type GetWebhookStatusResponse = {
212
584
  status: "inactive" | "error" | "connected" | "connecting";
213
585
  error?: string;
214
586
  };
587
+ type AlchemyWebhookBodyDto = {
588
+ [key: string]: unknown;
589
+ };
590
+ type CreateInboundWebhookConfigBody = {
591
+ name: string;
592
+ provider: string;
593
+ remote_id: string;
594
+ config: {
595
+ signingKey: string;
596
+ type: "AddressActivity";
597
+ monitoredAddress: string;
598
+ } | {
599
+ signingKey: string;
600
+ type: "Custom";
601
+ };
602
+ };
603
+ type CreateInboundWebhookConfigResponse = {
604
+ id: number;
605
+ name: string;
606
+ provider: string;
607
+ remote_id: string;
608
+ config: {
609
+ signingKey: string;
610
+ type: "AddressActivity";
611
+ monitoredAddress: string;
612
+ } | {
613
+ signingKey: string;
614
+ type: "Custom";
615
+ };
616
+ created_at: Date;
617
+ updated_at: Date;
618
+ };
619
+ type GetInboundWebhookConfigsResponse = Array<{
620
+ id: number;
621
+ name: string;
622
+ provider: string;
623
+ remote_id: string;
624
+ config: {
625
+ signingKey: string;
626
+ type: "AddressActivity";
627
+ monitoredAddress: string;
628
+ } | {
629
+ signingKey: string;
630
+ type: "Custom";
631
+ };
632
+ created_at: Date;
633
+ updated_at: Date;
634
+ }>;
635
+ type GetInboundWebhookConfigResponse = {
636
+ id: number;
637
+ name: string;
638
+ provider: string;
639
+ remote_id: string;
640
+ config: {
641
+ signingKey: string;
642
+ type: "AddressActivity";
643
+ monitoredAddress: string;
644
+ } | {
645
+ signingKey: string;
646
+ type: "Custom";
647
+ };
648
+ created_at: Date;
649
+ updated_at: Date;
650
+ };
651
+ type UpdateInboundWebhookConfigBody = {
652
+ name?: string;
653
+ provider?: string;
654
+ remote_id?: string;
655
+ config?: {
656
+ signingKey: string;
657
+ type: "AddressActivity";
658
+ monitoredAddress: string;
659
+ } | {
660
+ signingKey: string;
661
+ type: "Custom";
662
+ };
663
+ };
664
+ type UpdateInboundWebhookConfigResponse = {
665
+ id: number;
666
+ name: string;
667
+ provider: string;
668
+ remote_id: string;
669
+ config: {
670
+ signingKey: string;
671
+ type: "AddressActivity";
672
+ monitoredAddress: string;
673
+ } | {
674
+ signingKey: string;
675
+ type: "Custom";
676
+ };
677
+ created_at: Date;
678
+ updated_at: Date;
679
+ };
680
+ type DeleteInboundWebhookConfigResponse = {
681
+ message: string;
682
+ };
215
683
  type ApiControllerGetHelloData = {
216
684
  body?: never;
217
685
  path?: never;
@@ -305,6 +773,104 @@ type ConditionsControllerGetSunAltitudeTimeLimitsResponses = {
305
773
  200: GetTimeLimitsForSunAltitudeResponse;
306
774
  };
307
775
  type ConditionsControllerGetSunAltitudeTimeLimitsResponse = ConditionsControllerGetSunAltitudeTimeLimitsResponses[keyof ConditionsControllerGetSunAltitudeTimeLimitsResponses];
776
+ type ContractsControllerGetAllContractsData = {
777
+ body?: never;
778
+ path?: never;
779
+ query?: never;
780
+ url: "/contracts";
781
+ };
782
+ type ContractsControllerGetAllContractsErrors = {
783
+ 401: unknown;
784
+ 403: unknown;
785
+ };
786
+ type ContractsControllerGetAllContractsResponses = {
787
+ 200: GetContractsResponseDto;
788
+ };
789
+ type ContractsControllerGetAllContractsResponse = ContractsControllerGetAllContractsResponses[keyof ContractsControllerGetAllContractsResponses];
790
+ type ContractsControllerCreateContractData = {
791
+ body: CreateContractRequestDto;
792
+ path?: never;
793
+ query?: never;
794
+ url: "/contracts";
795
+ };
796
+ type ContractsControllerCreateContractErrors = {
797
+ 400: unknown;
798
+ 401: unknown;
799
+ 403: unknown;
800
+ 409: unknown;
801
+ };
802
+ type ContractsControllerCreateContractResponses = {
803
+ 201: CreateContractResponseDto;
804
+ };
805
+ type ContractsControllerCreateContractResponse = ContractsControllerCreateContractResponses[keyof ContractsControllerCreateContractResponses];
806
+ type ContractsControllerDeleteContractData = {
807
+ body?: never;
808
+ path: {
809
+ id: number;
810
+ };
811
+ query?: never;
812
+ url: "/contracts/{id}";
813
+ };
814
+ type ContractsControllerDeleteContractErrors = {
815
+ 401: unknown;
816
+ 403: unknown;
817
+ 404: unknown;
818
+ };
819
+ type ContractsControllerDeleteContractResponses = {
820
+ 200: DeleteContractResponseDto;
821
+ };
822
+ type ContractsControllerDeleteContractResponse = ContractsControllerDeleteContractResponses[keyof ContractsControllerDeleteContractResponses];
823
+ type ContractsControllerGetContractData = {
824
+ body?: never;
825
+ path: {
826
+ id: number;
827
+ };
828
+ query?: never;
829
+ url: "/contracts/{id}";
830
+ };
831
+ type ContractsControllerGetContractErrors = {
832
+ 401: unknown;
833
+ 403: unknown;
834
+ 404: unknown;
835
+ };
836
+ type ContractsControllerGetContractResponses = {
837
+ 200: GetContractResponseDto;
838
+ };
839
+ type ContractsControllerGetContractResponse = ContractsControllerGetContractResponses[keyof ContractsControllerGetContractResponses];
840
+ type ContractsControllerUpdateContractData = {
841
+ body: UpdateContractRequestDto;
842
+ path: {
843
+ id: number;
844
+ };
845
+ query?: never;
846
+ url: "/contracts/{id}";
847
+ };
848
+ type ContractsControllerUpdateContractErrors = {
849
+ 401: unknown;
850
+ 403: unknown;
851
+ 404: unknown;
852
+ 409: unknown;
853
+ };
854
+ type ContractsControllerUpdateContractResponses = {
855
+ 200: UpdateContractResponseDto;
856
+ };
857
+ type ContractsControllerUpdateContractResponse = ContractsControllerUpdateContractResponses[keyof ContractsControllerUpdateContractResponses];
858
+ type DlqRedriverControllerRedriveDlqData = {
859
+ body: RedriveDlqRequestDto;
860
+ path?: never;
861
+ query?: never;
862
+ url: "/dlq-redriver/redrive";
863
+ };
864
+ type DlqRedriverControllerRedriveDlqErrors = {
865
+ 400: unknown;
866
+ 401: unknown;
867
+ 403: unknown;
868
+ 500: unknown;
869
+ };
870
+ type DlqRedriverControllerRedriveDlqResponses = {
871
+ 200: RedriveDlqResponseDto;
872
+ };
873
+ type DlqRedriverControllerRedriveDlqResponse = DlqRedriverControllerRedriveDlqResponses[keyof DlqRedriverControllerRedriveDlqResponses];
308
874
  type FlightsControllerGenerateStorageKeyData = {
309
875
  body?: never;
310
876
  path?: never;
@@ -367,6 +933,50 @@ type FlightsControllerValidateFlightResponses = {
367
933
  200: ValidateFlightResponseDto;
368
934
  };
369
935
  type FlightsControllerValidateFlightResponse = FlightsControllerValidateFlightResponses[keyof FlightsControllerValidateFlightResponses];
936
+ type FlightPlansControllerGetManyData = {
937
+ body?: never;
938
+ path?: never;
939
+ query?: never;
940
+ url: "/flight-plans";
941
+ };
942
+ type FlightPlansControllerGetManyErrors = {
943
+ 401: unknown;
944
+ 403: unknown;
945
+ };
946
+ type FlightPlansControllerGetManyResponses = {
947
+ 200: GetFlightPlansResponse;
948
+ };
949
+ type FlightPlansControllerGetManyResponse = FlightPlansControllerGetManyResponses[keyof FlightPlansControllerGetManyResponses];
950
+ type FlightPlansControllerCreateData = {
951
+ body: CreateFlightPlanBody;
952
+ path?: never;
953
+ query?: never;
954
+ url: "/flight-plans";
955
+ };
956
+ type FlightPlansControllerCreateErrors = {
957
+ 401: unknown;
958
+ 403: unknown;
959
+ };
960
+ type FlightPlansControllerCreateResponses = {
961
+ 201: CreateFlightPlanResponse;
962
+ };
963
+ type FlightPlansControllerCreateResponse = FlightPlansControllerCreateResponses[keyof FlightPlansControllerCreateResponses];
964
+ type FlightPlansControllerGetData = {
965
+ body?: never;
966
+ path: {
967
+ id: number;
968
+ };
969
+ query?: never;
970
+ url: "/flight-plans/{id}";
971
+ };
972
+ type FlightPlansControllerGetErrors = {
973
+ 401: unknown;
974
+ 403: unknown;
975
+ };
976
+ type FlightPlansControllerGetResponses = {
977
+ 200: GetFlightPlanResponse;
978
+ };
979
+ type FlightPlansControllerGetResponse = FlightPlansControllerGetResponses[keyof FlightPlansControllerGetResponses];
370
980
  type KeysControllerGetProvenanceCryptoKeyData = {
371
981
  body?: never;
372
982
  path?: never;
@@ -421,6 +1031,24 @@ type MissionsControllerRepriceMissionsResponses = {
421
1031
  200: RepriceMissionsResponseDto;
422
1032
  };
423
1033
  type MissionsControllerRepriceMissionsResponse = MissionsControllerRepriceMissionsResponses[keyof MissionsControllerRepriceMissionsResponses];
1034
+ type MissionsControllerCloseMissionData = {
1035
+ body: CloseMissionRequestDto;
1036
+ path: {
1037
+ id: string;
1038
+ };
1039
+ query?: never;
1040
+ url: "/missions/{id}/close";
1041
+ };
1042
+ type MissionsControllerCloseMissionErrors = {
1043
+ 400: unknown;
1044
+ 401: unknown;
1045
+ 403: unknown;
1046
+ 500: unknown;
1047
+ };
1048
+ type MissionsControllerCloseMissionResponses = {
1049
+ 201: CloseMissionResponseDto;
1050
+ };
1051
+ type MissionsControllerCloseMissionResponse = MissionsControllerCloseMissionResponses[keyof MissionsControllerCloseMissionResponses];
424
1052
  type QuotesControllerCreateQuoteData = {
425
1053
  body: CreateQuoteRequestDto;
426
1054
  path?: never;
@@ -458,6 +1086,31 @@ type SchemaControllerGetEventSchemaData = {
458
1086
  type SchemaControllerGetEventSchemaResponses = {
459
1087
  200: unknown;
460
1088
  };
1089
+ type SchemaControllerGetFlightPlanSchemaData = {
1090
+ body?: never;
1091
+ path?: never;
1092
+ query?: never;
1093
+ url: "/schema/flight-plan";
1094
+ };
1095
+ type SchemaControllerGetFlightPlanSchemaResponses = {
1096
+ 200: unknown;
1097
+ };
1098
+ type VaultsControllerCreateVaultsData = {
1099
+ body: CreateVaultsRequestDto;
1100
+ path?: never;
1101
+ query?: never;
1102
+ url: "/vaults";
1103
+ };
1104
+ type VaultsControllerCreateVaultsErrors = {
1105
+ 400: unknown;
1106
+ 401: unknown;
1107
+ 403: unknown;
1108
+ 500: unknown;
1109
+ };
1110
+ type VaultsControllerCreateVaultsResponses = {
1111
+ 201: CreateVaultsResponseDto;
1112
+ };
1113
+ type VaultsControllerCreateVaultsResponse = VaultsControllerCreateVaultsResponses[keyof VaultsControllerCreateVaultsResponses];
461
1114
  type WebhooksControllerGetManyData = {
462
1115
  body?: never;
463
1116
  path: {
@@ -592,6 +1245,91 @@ type WebhooksControllerGetStatusResponses = {
592
1245
  200: GetWebhookStatusResponse;
593
1246
  };
594
1247
  type WebhooksControllerGetStatusResponse = WebhooksControllerGetStatusResponses[keyof WebhooksControllerGetStatusResponses];
1248
+ type AlchemyControllerHandleWebhookData = {
1249
+ body: AlchemyWebhookBodyDto;
1250
+ path?: never;
1251
+ query?: never;
1252
+ url: "/webhooks/inbound/alchemy";
1253
+ };
1254
+ type AlchemyControllerHandleWebhookResponses = {
1255
+ 200: unknown;
1256
+ };
1257
+ type InboundWebhookConfigsControllerGetManyData = {
1258
+ body?: never;
1259
+ path?: never;
1260
+ query?: never;
1261
+ url: "/webhooks/inbound/configs";
1262
+ };
1263
+ type InboundWebhookConfigsControllerGetManyErrors = {
1264
+ 401: unknown;
1265
+ 403: unknown;
1266
+ };
1267
+ type InboundWebhookConfigsControllerGetManyResponses = {
1268
+ 200: GetInboundWebhookConfigsResponse;
1269
+ };
1270
+ type InboundWebhookConfigsControllerGetManyResponse = InboundWebhookConfigsControllerGetManyResponses[keyof InboundWebhookConfigsControllerGetManyResponses];
1271
+ type InboundWebhookConfigsControllerCreateData = {
1272
+ body: CreateInboundWebhookConfigBody;
1273
+ path?: never;
1274
+ query?: never;
1275
+ url: "/webhooks/inbound/configs";
1276
+ };
1277
+ type InboundWebhookConfigsControllerCreateErrors = {
1278
+ 401: unknown;
1279
+ 403: unknown;
1280
+ };
1281
+ type InboundWebhookConfigsControllerCreateResponses = {
1282
+ 201: CreateInboundWebhookConfigResponse;
1283
+ };
1284
+ type InboundWebhookConfigsControllerCreateResponse = InboundWebhookConfigsControllerCreateResponses[keyof InboundWebhookConfigsControllerCreateResponses];
1285
+ type InboundWebhookConfigsControllerDeleteData = {
1286
+ body?: never;
1287
+ path: {
1288
+ id: number;
1289
+ };
1290
+ query?: never;
1291
+ url: "/webhooks/inbound/configs/{id}";
1292
+ };
1293
+ type InboundWebhookConfigsControllerDeleteErrors = {
1294
+ 401: unknown;
1295
+ 403: unknown;
1296
+ };
1297
+ type InboundWebhookConfigsControllerDeleteResponses = {
1298
+ 200: DeleteInboundWebhookConfigResponse;
1299
+ };
1300
+ type InboundWebhookConfigsControllerDeleteResponse = InboundWebhookConfigsControllerDeleteResponses[keyof InboundWebhookConfigsControllerDeleteResponses];
1301
+ type InboundWebhookConfigsControllerGetData = {
1302
+ body?: never;
1303
+ path: {
1304
+ id: number;
1305
+ };
1306
+ query?: never;
1307
+ url: "/webhooks/inbound/configs/{id}";
1308
+ };
1309
+ type InboundWebhookConfigsControllerGetErrors = {
1310
+ 401: unknown;
1311
+ 403: unknown;
1312
+ };
1313
+ type InboundWebhookConfigsControllerGetResponses = {
1314
+ 200: GetInboundWebhookConfigResponse;
1315
+ };
1316
+ type InboundWebhookConfigsControllerGetResponse = InboundWebhookConfigsControllerGetResponses[keyof InboundWebhookConfigsControllerGetResponses];
1317
+ type InboundWebhookConfigsControllerUpdateData = {
1318
+ body: UpdateInboundWebhookConfigBody;
1319
+ path: {
1320
+ id: number;
1321
+ };
1322
+ query?: never;
1323
+ url: "/webhooks/inbound/configs/{id}";
1324
+ };
1325
+ type InboundWebhookConfigsControllerUpdateErrors = {
1326
+ 401: unknown;
1327
+ 403: unknown;
1328
+ };
1329
+ type InboundWebhookConfigsControllerUpdateResponses = {
1330
+ 200: UpdateInboundWebhookConfigResponse;
1331
+ };
1332
+ type InboundWebhookConfigsControllerUpdateResponse = InboundWebhookConfigsControllerUpdateResponses[keyof InboundWebhookConfigsControllerUpdateResponses];
595
1333
  type ClientOptions$1 = {
596
1334
  baseUrl: string;
597
1335
  };
@@ -777,17 +1515,29 @@ declare const apiTokenControllerDeleteToken: <ThrowOnError extends boolean = fal
777
1515
  declare const apiTokenControllerGetToken: <ThrowOnError extends boolean = false>(options: Options<ApiTokenControllerGetTokenData, ThrowOnError>) => RequestResult<ApiTokenControllerGetTokenResponses, ApiTokenControllerGetTokenErrors, ThrowOnError, "fields">;
778
1516
  declare const apiTokenControllerUpdateToken: <ThrowOnError extends boolean = false>(options: Options<ApiTokenControllerUpdateTokenData, ThrowOnError>) => RequestResult<ApiTokenControllerUpdateTokenResponses, ApiTokenControllerUpdateTokenErrors, ThrowOnError, "fields">;
779
1517
  declare const conditionsControllerGetSunAltitudeTimeLimits: <ThrowOnError extends boolean = false>(options: Options<ConditionsControllerGetSunAltitudeTimeLimitsData, ThrowOnError>) => RequestResult<ConditionsControllerGetSunAltitudeTimeLimitsResponses, unknown, ThrowOnError, "fields">;
1518
+ declare const contractsControllerGetAllContracts: <ThrowOnError extends boolean = false>(options?: Options<ContractsControllerGetAllContractsData, ThrowOnError>) => RequestResult<ContractsControllerGetAllContractsResponses, ContractsControllerGetAllContractsErrors, ThrowOnError, "fields">;
1519
+ declare const contractsControllerCreateContract: <ThrowOnError extends boolean = false>(options: Options<ContractsControllerCreateContractData, ThrowOnError>) => RequestResult<ContractsControllerCreateContractResponses, ContractsControllerCreateContractErrors, ThrowOnError, "fields">;
1520
+ declare const contractsControllerDeleteContract: <ThrowOnError extends boolean = false>(options: Options<ContractsControllerDeleteContractData, ThrowOnError>) => RequestResult<ContractsControllerDeleteContractResponses, ContractsControllerDeleteContractErrors, ThrowOnError, "fields">;
1521
+ declare const contractsControllerGetContract: <ThrowOnError extends boolean = false>(options: Options<ContractsControllerGetContractData, ThrowOnError>) => RequestResult<ContractsControllerGetContractResponses, ContractsControllerGetContractErrors, ThrowOnError, "fields">;
1522
+ declare const contractsControllerUpdateContract: <ThrowOnError extends boolean = false>(options: Options<ContractsControllerUpdateContractData, ThrowOnError>) => RequestResult<ContractsControllerUpdateContractResponses, ContractsControllerUpdateContractErrors, ThrowOnError, "fields">;
1523
+ declare const dlqRedriverControllerRedriveDlq: <ThrowOnError extends boolean = false>(options: Options<DlqRedriverControllerRedriveDlqData, ThrowOnError>) => RequestResult<DlqRedriverControllerRedriveDlqResponses, DlqRedriverControllerRedriveDlqErrors, ThrowOnError, "fields">;
780
1524
  declare const flightsControllerGenerateStorageKey: <ThrowOnError extends boolean = false>(options: Options<FlightsControllerGenerateStorageKeyData, ThrowOnError>) => RequestResult<FlightsControllerGenerateStorageKeyResponses, FlightsControllerGenerateStorageKeyErrors, ThrowOnError, "fields">;
781
1525
  declare const flightsControllerGetFlight: <ThrowOnError extends boolean = false>(options: Options<FlightsControllerGetFlightData, ThrowOnError>) => RequestResult<FlightsControllerGetFlightResponses, FlightsControllerGetFlightErrors, ThrowOnError, "fields">;
782
1526
  declare const flightsControllerCreatePresignedUrls: <ThrowOnError extends boolean = false>(options: Options<FlightsControllerCreatePresignedUrlsData, ThrowOnError>) => RequestResult<FlightsControllerCreatePresignedUrlsResponses, FlightsControllerCreatePresignedUrlsErrors, ThrowOnError, "fields">;
783
1527
  declare const flightsControllerValidateFlight: <ThrowOnError extends boolean = false>(options: Options<FlightsControllerValidateFlightData, ThrowOnError>) => RequestResult<FlightsControllerValidateFlightResponses, FlightsControllerValidateFlightErrors, ThrowOnError, "fields">;
1528
+ declare const flightPlansControllerGetMany: <ThrowOnError extends boolean = false>(options?: Options<FlightPlansControllerGetManyData, ThrowOnError>) => RequestResult<FlightPlansControllerGetManyResponses, FlightPlansControllerGetManyErrors, ThrowOnError, "fields">;
1529
+ declare const flightPlansControllerCreate: <ThrowOnError extends boolean = false>(options: Options<FlightPlansControllerCreateData, ThrowOnError>) => RequestResult<FlightPlansControllerCreateResponses, FlightPlansControllerCreateErrors, ThrowOnError, "fields">;
1530
+ declare const flightPlansControllerGet: <ThrowOnError extends boolean = false>(options: Options<FlightPlansControllerGetData, ThrowOnError>) => RequestResult<FlightPlansControllerGetResponses, FlightPlansControllerGetErrors, ThrowOnError, "fields">;
784
1531
  declare const keysControllerGetProvenanceCryptoKey: <ThrowOnError extends boolean = false>(options?: Options<KeysControllerGetProvenanceCryptoKeyData, ThrowOnError>) => RequestResult<KeysControllerGetProvenanceCryptoKeyResponses, unknown, ThrowOnError, "fields">;
785
1532
  declare const missionsControllerCreateMissions: <ThrowOnError extends boolean = false>(options: Options<MissionsControllerCreateMissionsData, ThrowOnError>) => RequestResult<MissionsControllerCreateMissionsResponses, MissionsControllerCreateMissionsErrors, ThrowOnError, "fields">;
786
1533
  declare const missionsControllerUpdateMissions: <ThrowOnError extends boolean = false>(options: Options<MissionsControllerUpdateMissionsData, ThrowOnError>) => RequestResult<MissionsControllerUpdateMissionsResponses, MissionsControllerUpdateMissionsErrors, ThrowOnError, "fields">;
787
1534
  declare const missionsControllerRepriceMissions: <ThrowOnError extends boolean = false>(options: Options<MissionsControllerRepriceMissionsData, ThrowOnError>) => RequestResult<MissionsControllerRepriceMissionsResponses, MissionsControllerRepriceMissionsErrors, ThrowOnError, "fields">;
1535
+ declare const missionsControllerCloseMission: <ThrowOnError extends boolean = false>(options: Options<MissionsControllerCloseMissionData, ThrowOnError>) => RequestResult<MissionsControllerCloseMissionResponses, MissionsControllerCloseMissionErrors, ThrowOnError, "fields">;
788
1536
  declare const quotesControllerCreateQuote: <ThrowOnError extends boolean = false>(options: Options<QuotesControllerCreateQuoteData, ThrowOnError>) => RequestResult<QuotesControllerCreateQuoteResponses, QuotesControllerCreateQuoteErrors, ThrowOnError, "fields">;
789
1537
  declare const quotesControllerGetQuote: <ThrowOnError extends boolean = false>(options: Options<QuotesControllerGetQuoteData, ThrowOnError>) => RequestResult<QuotesControllerGetQuoteResponses, QuotesControllerGetQuoteErrors, ThrowOnError, "fields">;
790
1538
  declare const schemaControllerGetEventSchema: <ThrowOnError extends boolean = false>(options?: Options<SchemaControllerGetEventSchemaData, ThrowOnError>) => RequestResult<SchemaControllerGetEventSchemaResponses, unknown, ThrowOnError, "fields">;
1539
+ declare const schemaControllerGetFlightPlanSchema: <ThrowOnError extends boolean = false>(options?: Options<SchemaControllerGetFlightPlanSchemaData, ThrowOnError>) => RequestResult<SchemaControllerGetFlightPlanSchemaResponses, unknown, ThrowOnError, "fields">;
1540
+ declare const vaultsControllerCreateVaults: <ThrowOnError extends boolean = false>(options: Options<VaultsControllerCreateVaultsData, ThrowOnError>) => RequestResult<VaultsControllerCreateVaultsResponses, VaultsControllerCreateVaultsErrors, ThrowOnError, "fields">;
791
1541
  declare const webhooksControllerGetMany: <ThrowOnError extends boolean = false>(options: Options<WebhooksControllerGetManyData, ThrowOnError>) => RequestResult<WebhooksControllerGetManyResponses, WebhooksControllerGetManyErrors, ThrowOnError, "fields">;
792
1542
  declare const webhooksControllerCreate: <ThrowOnError extends boolean = false>(options: Options<WebhooksControllerCreateData, ThrowOnError>) => RequestResult<WebhooksControllerCreateResponses, WebhooksControllerCreateErrors, ThrowOnError, "fields">;
793
1543
  declare const webhooksControllerDelete: <ThrowOnError extends boolean = false>(options: Options<WebhooksControllerDeleteData, ThrowOnError>) => RequestResult<WebhooksControllerDeleteResponses, WebhooksControllerDeleteErrors, ThrowOnError, "fields">;
@@ -796,6 +1546,12 @@ declare const webhooksControllerUpdate: <ThrowOnError extends boolean = false>(o
796
1546
  declare const webhooksControllerRegenerateSecret: <ThrowOnError extends boolean = false>(options: Options<WebhooksControllerRegenerateSecretData, ThrowOnError>) => RequestResult<WebhooksControllerRegenerateSecretResponses, WebhooksControllerRegenerateSecretErrors, ThrowOnError, "fields">;
797
1547
  declare const webhooksControllerTest: <ThrowOnError extends boolean = false>(options: Options<WebhooksControllerTestData, ThrowOnError>) => RequestResult<WebhooksControllerTestResponses, WebhooksControllerTestErrors, ThrowOnError, "fields">;
798
1548
  declare const webhooksControllerGetStatus: <ThrowOnError extends boolean = false>(options: Options<WebhooksControllerGetStatusData, ThrowOnError>) => RequestResult<WebhooksControllerGetStatusResponses, WebhooksControllerGetStatusErrors, ThrowOnError, "fields">;
1549
+ declare const alchemyControllerHandleWebhook: <ThrowOnError extends boolean = false>(options: Options<AlchemyControllerHandleWebhookData, ThrowOnError>) => RequestResult<AlchemyControllerHandleWebhookResponses, unknown, ThrowOnError, "fields">;
1550
+ declare const inboundWebhookConfigsControllerGetMany: <ThrowOnError extends boolean = false>(options?: Options<InboundWebhookConfigsControllerGetManyData, ThrowOnError>) => RequestResult<InboundWebhookConfigsControllerGetManyResponses, InboundWebhookConfigsControllerGetManyErrors, ThrowOnError, "fields">;
1551
+ declare const inboundWebhookConfigsControllerCreate: <ThrowOnError extends boolean = false>(options: Options<InboundWebhookConfigsControllerCreateData, ThrowOnError>) => RequestResult<InboundWebhookConfigsControllerCreateResponses, InboundWebhookConfigsControllerCreateErrors, ThrowOnError, "fields">;
1552
+ declare const inboundWebhookConfigsControllerDelete: <ThrowOnError extends boolean = false>(options: Options<InboundWebhookConfigsControllerDeleteData, ThrowOnError>) => RequestResult<InboundWebhookConfigsControllerDeleteResponses, InboundWebhookConfigsControllerDeleteErrors, ThrowOnError, "fields">;
1553
+ declare const inboundWebhookConfigsControllerGet: <ThrowOnError extends boolean = false>(options: Options<InboundWebhookConfigsControllerGetData, ThrowOnError>) => RequestResult<InboundWebhookConfigsControllerGetResponses, InboundWebhookConfigsControllerGetErrors, ThrowOnError, "fields">;
1554
+ declare const inboundWebhookConfigsControllerUpdate: <ThrowOnError extends boolean = false>(options: Options<InboundWebhookConfigsControllerUpdateData, ThrowOnError>) => RequestResult<InboundWebhookConfigsControllerUpdateResponses, InboundWebhookConfigsControllerUpdateErrors, ThrowOnError, "fields">;
799
1555
 
800
1556
  declare const Event: z.ZodUnion<[z.ZodObject<{
801
1557
  id: z.ZodString;
@@ -835,6 +1591,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
835
1591
  event_type: z.ZodLiteral<"protocol.mission.created">;
836
1592
  timestamp: z.ZodString;
837
1593
  data: z.ZodObject<{
1594
+ version: z.ZodLiteral<1>;
838
1595
  id: z.ZodEffects<z.ZodObject<{
839
1596
  __type: z.ZodLiteral<"bigint">;
840
1597
  value: z.ZodString;
@@ -879,8 +1636,13 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
879
1636
  campaigns: z.ZodArray<z.ZodString, "many">;
880
1637
  captureStartTime: z.ZodString;
881
1638
  captureEndTime: z.ZodString;
1639
+ isReservable: z.ZodBoolean;
882
1640
  requestor: z.ZodString;
1641
+ collateralTokenAddress: z.ZodString;
1642
+ chainId: z.ZodNumber;
1643
+ tags: z.ZodRecord<z.ZodString, z.ZodString>;
883
1644
  }, "strip", z.ZodAny, z.objectOutputType<{
1645
+ version: z.ZodLiteral<1>;
884
1646
  id: z.ZodEffects<z.ZodObject<{
885
1647
  __type: z.ZodLiteral<"bigint">;
886
1648
  value: z.ZodString;
@@ -925,8 +1687,13 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
925
1687
  campaigns: z.ZodArray<z.ZodString, "many">;
926
1688
  captureStartTime: z.ZodString;
927
1689
  captureEndTime: z.ZodString;
1690
+ isReservable: z.ZodBoolean;
928
1691
  requestor: z.ZodString;
1692
+ collateralTokenAddress: z.ZodString;
1693
+ chainId: z.ZodNumber;
1694
+ tags: z.ZodRecord<z.ZodString, z.ZodString>;
929
1695
  }, z.ZodAny, "strip">, z.objectInputType<{
1696
+ version: z.ZodLiteral<1>;
930
1697
  id: z.ZodEffects<z.ZodObject<{
931
1698
  __type: z.ZodLiteral<"bigint">;
932
1699
  value: z.ZodString;
@@ -971,13 +1738,18 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
971
1738
  campaigns: z.ZodArray<z.ZodString, "many">;
972
1739
  captureStartTime: z.ZodString;
973
1740
  captureEndTime: z.ZodString;
1741
+ isReservable: z.ZodBoolean;
974
1742
  requestor: z.ZodString;
1743
+ collateralTokenAddress: z.ZodString;
1744
+ chainId: z.ZodNumber;
1745
+ tags: z.ZodRecord<z.ZodString, z.ZodString>;
975
1746
  }, z.ZodAny, "strip">>;
976
1747
  }, "strip", z.ZodAny, z.objectOutputType<{
977
1748
  id: z.ZodString;
978
1749
  event_type: z.ZodLiteral<"protocol.mission.created">;
979
1750
  timestamp: z.ZodString;
980
1751
  data: z.ZodObject<{
1752
+ version: z.ZodLiteral<1>;
981
1753
  id: z.ZodEffects<z.ZodObject<{
982
1754
  __type: z.ZodLiteral<"bigint">;
983
1755
  value: z.ZodString;
@@ -1022,8 +1794,13 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
1022
1794
  campaigns: z.ZodArray<z.ZodString, "many">;
1023
1795
  captureStartTime: z.ZodString;
1024
1796
  captureEndTime: z.ZodString;
1797
+ isReservable: z.ZodBoolean;
1025
1798
  requestor: z.ZodString;
1799
+ collateralTokenAddress: z.ZodString;
1800
+ chainId: z.ZodNumber;
1801
+ tags: z.ZodRecord<z.ZodString, z.ZodString>;
1026
1802
  }, "strip", z.ZodAny, z.objectOutputType<{
1803
+ version: z.ZodLiteral<1>;
1027
1804
  id: z.ZodEffects<z.ZodObject<{
1028
1805
  __type: z.ZodLiteral<"bigint">;
1029
1806
  value: z.ZodString;
@@ -1068,8 +1845,13 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
1068
1845
  campaigns: z.ZodArray<z.ZodString, "many">;
1069
1846
  captureStartTime: z.ZodString;
1070
1847
  captureEndTime: z.ZodString;
1848
+ isReservable: z.ZodBoolean;
1071
1849
  requestor: z.ZodString;
1850
+ collateralTokenAddress: z.ZodString;
1851
+ chainId: z.ZodNumber;
1852
+ tags: z.ZodRecord<z.ZodString, z.ZodString>;
1072
1853
  }, z.ZodAny, "strip">, z.objectInputType<{
1854
+ version: z.ZodLiteral<1>;
1073
1855
  id: z.ZodEffects<z.ZodObject<{
1074
1856
  __type: z.ZodLiteral<"bigint">;
1075
1857
  value: z.ZodString;
@@ -1114,13 +1896,18 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
1114
1896
  campaigns: z.ZodArray<z.ZodString, "many">;
1115
1897
  captureStartTime: z.ZodString;
1116
1898
  captureEndTime: z.ZodString;
1899
+ isReservable: z.ZodBoolean;
1117
1900
  requestor: z.ZodString;
1901
+ collateralTokenAddress: z.ZodString;
1902
+ chainId: z.ZodNumber;
1903
+ tags: z.ZodRecord<z.ZodString, z.ZodString>;
1118
1904
  }, z.ZodAny, "strip">>;
1119
1905
  }, z.ZodAny, "strip">, z.objectInputType<{
1120
1906
  id: z.ZodString;
1121
1907
  event_type: z.ZodLiteral<"protocol.mission.created">;
1122
1908
  timestamp: z.ZodString;
1123
1909
  data: z.ZodObject<{
1910
+ version: z.ZodLiteral<1>;
1124
1911
  id: z.ZodEffects<z.ZodObject<{
1125
1912
  __type: z.ZodLiteral<"bigint">;
1126
1913
  value: z.ZodString;
@@ -1165,8 +1952,13 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
1165
1952
  campaigns: z.ZodArray<z.ZodString, "many">;
1166
1953
  captureStartTime: z.ZodString;
1167
1954
  captureEndTime: z.ZodString;
1955
+ isReservable: z.ZodBoolean;
1168
1956
  requestor: z.ZodString;
1957
+ collateralTokenAddress: z.ZodString;
1958
+ chainId: z.ZodNumber;
1959
+ tags: z.ZodRecord<z.ZodString, z.ZodString>;
1169
1960
  }, "strip", z.ZodAny, z.objectOutputType<{
1961
+ version: z.ZodLiteral<1>;
1170
1962
  id: z.ZodEffects<z.ZodObject<{
1171
1963
  __type: z.ZodLiteral<"bigint">;
1172
1964
  value: z.ZodString;
@@ -1211,8 +2003,13 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
1211
2003
  campaigns: z.ZodArray<z.ZodString, "many">;
1212
2004
  captureStartTime: z.ZodString;
1213
2005
  captureEndTime: z.ZodString;
2006
+ isReservable: z.ZodBoolean;
1214
2007
  requestor: z.ZodString;
2008
+ collateralTokenAddress: z.ZodString;
2009
+ chainId: z.ZodNumber;
2010
+ tags: z.ZodRecord<z.ZodString, z.ZodString>;
1215
2011
  }, z.ZodAny, "strip">, z.objectInputType<{
2012
+ version: z.ZodLiteral<1>;
1216
2013
  id: z.ZodEffects<z.ZodObject<{
1217
2014
  __type: z.ZodLiteral<"bigint">;
1218
2015
  value: z.ZodString;
@@ -1257,13 +2054,18 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
1257
2054
  campaigns: z.ZodArray<z.ZodString, "many">;
1258
2055
  captureStartTime: z.ZodString;
1259
2056
  captureEndTime: z.ZodString;
2057
+ isReservable: z.ZodBoolean;
1260
2058
  requestor: z.ZodString;
2059
+ collateralTokenAddress: z.ZodString;
2060
+ chainId: z.ZodNumber;
2061
+ tags: z.ZodRecord<z.ZodString, z.ZodString>;
1261
2062
  }, z.ZodAny, "strip">>;
1262
2063
  }, z.ZodAny, "strip">>, z.ZodObject<{
1263
2064
  id: z.ZodString;
1264
2065
  event_type: z.ZodLiteral<"protocol.mission.updated">;
1265
2066
  timestamp: z.ZodString;
1266
2067
  data: z.ZodObject<{
2068
+ version: z.ZodLiteral<1>;
1267
2069
  id: z.ZodEffects<z.ZodObject<{
1268
2070
  __type: z.ZodLiteral<"bigint">;
1269
2071
  value: z.ZodString;
@@ -1293,6 +2095,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
1293
2095
  isOpen: z.ZodOptional<z.ZodBoolean>;
1294
2096
  campaigns: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1295
2097
  }, "strip", z.ZodAny, z.objectOutputType<{
2098
+ version: z.ZodLiteral<1>;
1296
2099
  id: z.ZodEffects<z.ZodObject<{
1297
2100
  __type: z.ZodLiteral<"bigint">;
1298
2101
  value: z.ZodString;
@@ -1322,6 +2125,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
1322
2125
  isOpen: z.ZodOptional<z.ZodBoolean>;
1323
2126
  campaigns: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1324
2127
  }, z.ZodAny, "strip">, z.objectInputType<{
2128
+ version: z.ZodLiteral<1>;
1325
2129
  id: z.ZodEffects<z.ZodObject<{
1326
2130
  __type: z.ZodLiteral<"bigint">;
1327
2131
  value: z.ZodString;
@@ -1356,6 +2160,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
1356
2160
  event_type: z.ZodLiteral<"protocol.mission.updated">;
1357
2161
  timestamp: z.ZodString;
1358
2162
  data: z.ZodObject<{
2163
+ version: z.ZodLiteral<1>;
1359
2164
  id: z.ZodEffects<z.ZodObject<{
1360
2165
  __type: z.ZodLiteral<"bigint">;
1361
2166
  value: z.ZodString;
@@ -1385,6 +2190,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
1385
2190
  isOpen: z.ZodOptional<z.ZodBoolean>;
1386
2191
  campaigns: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1387
2192
  }, "strip", z.ZodAny, z.objectOutputType<{
2193
+ version: z.ZodLiteral<1>;
1388
2194
  id: z.ZodEffects<z.ZodObject<{
1389
2195
  __type: z.ZodLiteral<"bigint">;
1390
2196
  value: z.ZodString;
@@ -1414,6 +2220,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
1414
2220
  isOpen: z.ZodOptional<z.ZodBoolean>;
1415
2221
  campaigns: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1416
2222
  }, z.ZodAny, "strip">, z.objectInputType<{
2223
+ version: z.ZodLiteral<1>;
1417
2224
  id: z.ZodEffects<z.ZodObject<{
1418
2225
  __type: z.ZodLiteral<"bigint">;
1419
2226
  value: z.ZodString;
@@ -1448,6 +2255,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
1448
2255
  event_type: z.ZodLiteral<"protocol.mission.updated">;
1449
2256
  timestamp: z.ZodString;
1450
2257
  data: z.ZodObject<{
2258
+ version: z.ZodLiteral<1>;
1451
2259
  id: z.ZodEffects<z.ZodObject<{
1452
2260
  __type: z.ZodLiteral<"bigint">;
1453
2261
  value: z.ZodString;
@@ -1477,6 +2285,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
1477
2285
  isOpen: z.ZodOptional<z.ZodBoolean>;
1478
2286
  campaigns: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1479
2287
  }, "strip", z.ZodAny, z.objectOutputType<{
2288
+ version: z.ZodLiteral<1>;
1480
2289
  id: z.ZodEffects<z.ZodObject<{
1481
2290
  __type: z.ZodLiteral<"bigint">;
1482
2291
  value: z.ZodString;
@@ -1506,6 +2315,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
1506
2315
  isOpen: z.ZodOptional<z.ZodBoolean>;
1507
2316
  campaigns: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1508
2317
  }, z.ZodAny, "strip">, z.objectInputType<{
2318
+ version: z.ZodLiteral<1>;
1509
2319
  id: z.ZodEffects<z.ZodObject<{
1510
2320
  __type: z.ZodLiteral<"bigint">;
1511
2321
  value: z.ZodString;
@@ -1540,6 +2350,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
1540
2350
  event_type: z.ZodLiteral<"protocol.mission.paid">;
1541
2351
  timestamp: z.ZodString;
1542
2352
  data: z.ZodObject<{
2353
+ version: z.ZodLiteral<1>;
1543
2354
  recipient: z.ZodString;
1544
2355
  flightId: z.ZodEffects<z.ZodObject<{
1545
2356
  __type: z.ZodLiteral<"bigint">;
@@ -1595,6 +2406,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
1595
2406
  }>;
1596
2407
  storageKey: z.ZodString;
1597
2408
  }, "strip", z.ZodAny, z.objectOutputType<{
2409
+ version: z.ZodLiteral<1>;
1598
2410
  recipient: z.ZodString;
1599
2411
  flightId: z.ZodEffects<z.ZodObject<{
1600
2412
  __type: z.ZodLiteral<"bigint">;
@@ -1650,6 +2462,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
1650
2462
  }>;
1651
2463
  storageKey: z.ZodString;
1652
2464
  }, z.ZodAny, "strip">, z.objectInputType<{
2465
+ version: z.ZodLiteral<1>;
1653
2466
  recipient: z.ZodString;
1654
2467
  flightId: z.ZodEffects<z.ZodObject<{
1655
2468
  __type: z.ZodLiteral<"bigint">;
@@ -1710,6 +2523,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
1710
2523
  event_type: z.ZodLiteral<"protocol.mission.paid">;
1711
2524
  timestamp: z.ZodString;
1712
2525
  data: z.ZodObject<{
2526
+ version: z.ZodLiteral<1>;
1713
2527
  recipient: z.ZodString;
1714
2528
  flightId: z.ZodEffects<z.ZodObject<{
1715
2529
  __type: z.ZodLiteral<"bigint">;
@@ -1765,6 +2579,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
1765
2579
  }>;
1766
2580
  storageKey: z.ZodString;
1767
2581
  }, "strip", z.ZodAny, z.objectOutputType<{
2582
+ version: z.ZodLiteral<1>;
1768
2583
  recipient: z.ZodString;
1769
2584
  flightId: z.ZodEffects<z.ZodObject<{
1770
2585
  __type: z.ZodLiteral<"bigint">;
@@ -1820,6 +2635,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
1820
2635
  }>;
1821
2636
  storageKey: z.ZodString;
1822
2637
  }, z.ZodAny, "strip">, z.objectInputType<{
2638
+ version: z.ZodLiteral<1>;
1823
2639
  recipient: z.ZodString;
1824
2640
  flightId: z.ZodEffects<z.ZodObject<{
1825
2641
  __type: z.ZodLiteral<"bigint">;
@@ -1880,6 +2696,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
1880
2696
  event_type: z.ZodLiteral<"protocol.mission.paid">;
1881
2697
  timestamp: z.ZodString;
1882
2698
  data: z.ZodObject<{
2699
+ version: z.ZodLiteral<1>;
1883
2700
  recipient: z.ZodString;
1884
2701
  flightId: z.ZodEffects<z.ZodObject<{
1885
2702
  __type: z.ZodLiteral<"bigint">;
@@ -1935,6 +2752,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
1935
2752
  }>;
1936
2753
  storageKey: z.ZodString;
1937
2754
  }, "strip", z.ZodAny, z.objectOutputType<{
2755
+ version: z.ZodLiteral<1>;
1938
2756
  recipient: z.ZodString;
1939
2757
  flightId: z.ZodEffects<z.ZodObject<{
1940
2758
  __type: z.ZodLiteral<"bigint">;
@@ -1990,6 +2808,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
1990
2808
  }>;
1991
2809
  storageKey: z.ZodString;
1992
2810
  }, z.ZodAny, "strip">, z.objectInputType<{
2811
+ version: z.ZodLiteral<1>;
1993
2812
  recipient: z.ZodString;
1994
2813
  flightId: z.ZodEffects<z.ZodObject<{
1995
2814
  __type: z.ZodLiteral<"bigint">;
@@ -2050,6 +2869,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
2050
2869
  event_type: z.ZodLiteral<"protocol.flight.submitted">;
2051
2870
  timestamp: z.ZodString;
2052
2871
  data: z.ZodObject<{
2872
+ version: z.ZodLiteral<1>;
2053
2873
  storageKey: z.ZodString;
2054
2874
  pilotAddress: z.ZodString;
2055
2875
  flightManifestUri: z.ZodString;
@@ -2067,6 +2887,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
2067
2887
  __type: "bigint";
2068
2888
  }>;
2069
2889
  }, "strip", z.ZodAny, z.objectOutputType<{
2890
+ version: z.ZodLiteral<1>;
2070
2891
  storageKey: z.ZodString;
2071
2892
  pilotAddress: z.ZodString;
2072
2893
  flightManifestUri: z.ZodString;
@@ -2084,6 +2905,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
2084
2905
  __type: "bigint";
2085
2906
  }>;
2086
2907
  }, z.ZodAny, "strip">, z.objectInputType<{
2908
+ version: z.ZodLiteral<1>;
2087
2909
  storageKey: z.ZodString;
2088
2910
  pilotAddress: z.ZodString;
2089
2911
  flightManifestUri: z.ZodString;
@@ -2106,6 +2928,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
2106
2928
  event_type: z.ZodLiteral<"protocol.flight.submitted">;
2107
2929
  timestamp: z.ZodString;
2108
2930
  data: z.ZodObject<{
2931
+ version: z.ZodLiteral<1>;
2109
2932
  storageKey: z.ZodString;
2110
2933
  pilotAddress: z.ZodString;
2111
2934
  flightManifestUri: z.ZodString;
@@ -2123,6 +2946,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
2123
2946
  __type: "bigint";
2124
2947
  }>;
2125
2948
  }, "strip", z.ZodAny, z.objectOutputType<{
2949
+ version: z.ZodLiteral<1>;
2126
2950
  storageKey: z.ZodString;
2127
2951
  pilotAddress: z.ZodString;
2128
2952
  flightManifestUri: z.ZodString;
@@ -2140,6 +2964,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
2140
2964
  __type: "bigint";
2141
2965
  }>;
2142
2966
  }, z.ZodAny, "strip">, z.objectInputType<{
2967
+ version: z.ZodLiteral<1>;
2143
2968
  storageKey: z.ZodString;
2144
2969
  pilotAddress: z.ZodString;
2145
2970
  flightManifestUri: z.ZodString;
@@ -2162,6 +2987,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
2162
2987
  event_type: z.ZodLiteral<"protocol.flight.submitted">;
2163
2988
  timestamp: z.ZodString;
2164
2989
  data: z.ZodObject<{
2990
+ version: z.ZodLiteral<1>;
2165
2991
  storageKey: z.ZodString;
2166
2992
  pilotAddress: z.ZodString;
2167
2993
  flightManifestUri: z.ZodString;
@@ -2179,6 +3005,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
2179
3005
  __type: "bigint";
2180
3006
  }>;
2181
3007
  }, "strip", z.ZodAny, z.objectOutputType<{
3008
+ version: z.ZodLiteral<1>;
2182
3009
  storageKey: z.ZodString;
2183
3010
  pilotAddress: z.ZodString;
2184
3011
  flightManifestUri: z.ZodString;
@@ -2196,6 +3023,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
2196
3023
  __type: "bigint";
2197
3024
  }>;
2198
3025
  }, z.ZodAny, "strip">, z.objectInputType<{
3026
+ version: z.ZodLiteral<1>;
2199
3027
  storageKey: z.ZodString;
2200
3028
  pilotAddress: z.ZodString;
2201
3029
  flightManifestUri: z.ZodString;
@@ -2218,6 +3046,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
2218
3046
  event_type: z.ZodLiteral<"protocol.flight.reviewed">;
2219
3047
  timestamp: z.ZodString;
2220
3048
  data: z.ZodObject<{
3049
+ version: z.ZodLiteral<1>;
2221
3050
  flightId: z.ZodEffects<z.ZodObject<{
2222
3051
  __type: z.ZodLiteral<"bigint">;
2223
3052
  value: z.ZodString;
@@ -2251,6 +3080,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
2251
3080
  __type: "bigint";
2252
3081
  }>;
2253
3082
  }, "strip", z.ZodAny, z.objectOutputType<{
3083
+ version: z.ZodLiteral<1>;
2254
3084
  flightId: z.ZodEffects<z.ZodObject<{
2255
3085
  __type: z.ZodLiteral<"bigint">;
2256
3086
  value: z.ZodString;
@@ -2284,6 +3114,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
2284
3114
  __type: "bigint";
2285
3115
  }>;
2286
3116
  }, z.ZodAny, "strip">, z.objectInputType<{
3117
+ version: z.ZodLiteral<1>;
2287
3118
  flightId: z.ZodEffects<z.ZodObject<{
2288
3119
  __type: z.ZodLiteral<"bigint">;
2289
3120
  value: z.ZodString;
@@ -2322,6 +3153,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
2322
3153
  event_type: z.ZodLiteral<"protocol.flight.reviewed">;
2323
3154
  timestamp: z.ZodString;
2324
3155
  data: z.ZodObject<{
3156
+ version: z.ZodLiteral<1>;
2325
3157
  flightId: z.ZodEffects<z.ZodObject<{
2326
3158
  __type: z.ZodLiteral<"bigint">;
2327
3159
  value: z.ZodString;
@@ -2355,6 +3187,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
2355
3187
  __type: "bigint";
2356
3188
  }>;
2357
3189
  }, "strip", z.ZodAny, z.objectOutputType<{
3190
+ version: z.ZodLiteral<1>;
2358
3191
  flightId: z.ZodEffects<z.ZodObject<{
2359
3192
  __type: z.ZodLiteral<"bigint">;
2360
3193
  value: z.ZodString;
@@ -2388,6 +3221,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
2388
3221
  __type: "bigint";
2389
3222
  }>;
2390
3223
  }, z.ZodAny, "strip">, z.objectInputType<{
3224
+ version: z.ZodLiteral<1>;
2391
3225
  flightId: z.ZodEffects<z.ZodObject<{
2392
3226
  __type: z.ZodLiteral<"bigint">;
2393
3227
  value: z.ZodString;
@@ -2426,6 +3260,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
2426
3260
  event_type: z.ZodLiteral<"protocol.flight.reviewed">;
2427
3261
  timestamp: z.ZodString;
2428
3262
  data: z.ZodObject<{
3263
+ version: z.ZodLiteral<1>;
2429
3264
  flightId: z.ZodEffects<z.ZodObject<{
2430
3265
  __type: z.ZodLiteral<"bigint">;
2431
3266
  value: z.ZodString;
@@ -2459,6 +3294,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
2459
3294
  __type: "bigint";
2460
3295
  }>;
2461
3296
  }, "strip", z.ZodAny, z.objectOutputType<{
3297
+ version: z.ZodLiteral<1>;
2462
3298
  flightId: z.ZodEffects<z.ZodObject<{
2463
3299
  __type: z.ZodLiteral<"bigint">;
2464
3300
  value: z.ZodString;
@@ -2492,6 +3328,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
2492
3328
  __type: "bigint";
2493
3329
  }>;
2494
3330
  }, z.ZodAny, "strip">, z.objectInputType<{
3331
+ version: z.ZodLiteral<1>;
2495
3332
  flightId: z.ZodEffects<z.ZodObject<{
2496
3333
  __type: z.ZodLiteral<"bigint">;
2497
3334
  value: z.ZodString;
@@ -2562,6 +3399,7 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.o
2562
3399
  event_type: zod.ZodLiteral<"protocol.mission.created">;
2563
3400
  timestamp: zod.ZodString;
2564
3401
  data: zod.ZodObject<{
3402
+ version: zod.ZodLiteral<1>;
2565
3403
  id: zod.ZodEffects<zod.ZodObject<{
2566
3404
  __type: zod.ZodLiteral<"bigint">;
2567
3405
  value: zod.ZodString;
@@ -2606,8 +3444,13 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.o
2606
3444
  campaigns: zod.ZodArray<zod.ZodString, "many">;
2607
3445
  captureStartTime: zod.ZodString;
2608
3446
  captureEndTime: zod.ZodString;
3447
+ isReservable: zod.ZodBoolean;
2609
3448
  requestor: zod.ZodString;
3449
+ collateralTokenAddress: zod.ZodString;
3450
+ chainId: zod.ZodNumber;
3451
+ tags: zod.ZodRecord<zod.ZodString, zod.ZodString>;
2610
3452
  }, "strip", zod.ZodAny, zod.objectOutputType<{
3453
+ version: zod.ZodLiteral<1>;
2611
3454
  id: zod.ZodEffects<zod.ZodObject<{
2612
3455
  __type: zod.ZodLiteral<"bigint">;
2613
3456
  value: zod.ZodString;
@@ -2652,8 +3495,13 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.o
2652
3495
  campaigns: zod.ZodArray<zod.ZodString, "many">;
2653
3496
  captureStartTime: zod.ZodString;
2654
3497
  captureEndTime: zod.ZodString;
3498
+ isReservable: zod.ZodBoolean;
2655
3499
  requestor: zod.ZodString;
3500
+ collateralTokenAddress: zod.ZodString;
3501
+ chainId: zod.ZodNumber;
3502
+ tags: zod.ZodRecord<zod.ZodString, zod.ZodString>;
2656
3503
  }, zod.ZodAny, "strip">, zod.objectInputType<{
3504
+ version: zod.ZodLiteral<1>;
2657
3505
  id: zod.ZodEffects<zod.ZodObject<{
2658
3506
  __type: zod.ZodLiteral<"bigint">;
2659
3507
  value: zod.ZodString;
@@ -2698,13 +3546,18 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.o
2698
3546
  campaigns: zod.ZodArray<zod.ZodString, "many">;
2699
3547
  captureStartTime: zod.ZodString;
2700
3548
  captureEndTime: zod.ZodString;
3549
+ isReservable: zod.ZodBoolean;
2701
3550
  requestor: zod.ZodString;
3551
+ collateralTokenAddress: zod.ZodString;
3552
+ chainId: zod.ZodNumber;
3553
+ tags: zod.ZodRecord<zod.ZodString, zod.ZodString>;
2702
3554
  }, zod.ZodAny, "strip">>;
2703
3555
  }, zod.ZodAny, "strip"> | zod.objectOutputType<{
2704
3556
  id: zod.ZodString;
2705
3557
  event_type: zod.ZodLiteral<"protocol.mission.updated">;
2706
3558
  timestamp: zod.ZodString;
2707
3559
  data: zod.ZodObject<{
3560
+ version: zod.ZodLiteral<1>;
2708
3561
  id: zod.ZodEffects<zod.ZodObject<{
2709
3562
  __type: zod.ZodLiteral<"bigint">;
2710
3563
  value: zod.ZodString;
@@ -2734,6 +3587,7 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.o
2734
3587
  isOpen: zod.ZodOptional<zod.ZodBoolean>;
2735
3588
  campaigns: zod.ZodOptional<zod.ZodArray<zod.ZodString, "many">>;
2736
3589
  }, "strip", zod.ZodAny, zod.objectOutputType<{
3590
+ version: zod.ZodLiteral<1>;
2737
3591
  id: zod.ZodEffects<zod.ZodObject<{
2738
3592
  __type: zod.ZodLiteral<"bigint">;
2739
3593
  value: zod.ZodString;
@@ -2763,6 +3617,7 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.o
2763
3617
  isOpen: zod.ZodOptional<zod.ZodBoolean>;
2764
3618
  campaigns: zod.ZodOptional<zod.ZodArray<zod.ZodString, "many">>;
2765
3619
  }, zod.ZodAny, "strip">, zod.objectInputType<{
3620
+ version: zod.ZodLiteral<1>;
2766
3621
  id: zod.ZodEffects<zod.ZodObject<{
2767
3622
  __type: zod.ZodLiteral<"bigint">;
2768
3623
  value: zod.ZodString;
@@ -2797,6 +3652,7 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.o
2797
3652
  event_type: zod.ZodLiteral<"protocol.mission.paid">;
2798
3653
  timestamp: zod.ZodString;
2799
3654
  data: zod.ZodObject<{
3655
+ version: zod.ZodLiteral<1>;
2800
3656
  recipient: zod.ZodString;
2801
3657
  flightId: zod.ZodEffects<zod.ZodObject<{
2802
3658
  __type: zod.ZodLiteral<"bigint">;
@@ -2852,6 +3708,7 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.o
2852
3708
  }>;
2853
3709
  storageKey: zod.ZodString;
2854
3710
  }, "strip", zod.ZodAny, zod.objectOutputType<{
3711
+ version: zod.ZodLiteral<1>;
2855
3712
  recipient: zod.ZodString;
2856
3713
  flightId: zod.ZodEffects<zod.ZodObject<{
2857
3714
  __type: zod.ZodLiteral<"bigint">;
@@ -2907,6 +3764,7 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.o
2907
3764
  }>;
2908
3765
  storageKey: zod.ZodString;
2909
3766
  }, zod.ZodAny, "strip">, zod.objectInputType<{
3767
+ version: zod.ZodLiteral<1>;
2910
3768
  recipient: zod.ZodString;
2911
3769
  flightId: zod.ZodEffects<zod.ZodObject<{
2912
3770
  __type: zod.ZodLiteral<"bigint">;
@@ -2967,6 +3825,7 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.o
2967
3825
  event_type: zod.ZodLiteral<"protocol.flight.submitted">;
2968
3826
  timestamp: zod.ZodString;
2969
3827
  data: zod.ZodObject<{
3828
+ version: zod.ZodLiteral<1>;
2970
3829
  storageKey: zod.ZodString;
2971
3830
  pilotAddress: zod.ZodString;
2972
3831
  flightManifestUri: zod.ZodString;
@@ -2984,6 +3843,7 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.o
2984
3843
  __type: "bigint";
2985
3844
  }>;
2986
3845
  }, "strip", zod.ZodAny, zod.objectOutputType<{
3846
+ version: zod.ZodLiteral<1>;
2987
3847
  storageKey: zod.ZodString;
2988
3848
  pilotAddress: zod.ZodString;
2989
3849
  flightManifestUri: zod.ZodString;
@@ -3001,6 +3861,7 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.o
3001
3861
  __type: "bigint";
3002
3862
  }>;
3003
3863
  }, zod.ZodAny, "strip">, zod.objectInputType<{
3864
+ version: zod.ZodLiteral<1>;
3004
3865
  storageKey: zod.ZodString;
3005
3866
  pilotAddress: zod.ZodString;
3006
3867
  flightManifestUri: zod.ZodString;
@@ -3023,6 +3884,7 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.o
3023
3884
  event_type: zod.ZodLiteral<"protocol.flight.reviewed">;
3024
3885
  timestamp: zod.ZodString;
3025
3886
  data: zod.ZodObject<{
3887
+ version: zod.ZodLiteral<1>;
3026
3888
  flightId: zod.ZodEffects<zod.ZodObject<{
3027
3889
  __type: zod.ZodLiteral<"bigint">;
3028
3890
  value: zod.ZodString;
@@ -3056,6 +3918,7 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.o
3056
3918
  __type: "bigint";
3057
3919
  }>;
3058
3920
  }, "strip", zod.ZodAny, zod.objectOutputType<{
3921
+ version: zod.ZodLiteral<1>;
3059
3922
  flightId: zod.ZodEffects<zod.ZodObject<{
3060
3923
  __type: zod.ZodLiteral<"bigint">;
3061
3924
  value: zod.ZodString;
@@ -3089,6 +3952,7 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.o
3089
3952
  __type: "bigint";
3090
3953
  }>;
3091
3954
  }, zod.ZodAny, "strip">, zod.objectInputType<{
3955
+ version: zod.ZodLiteral<1>;
3092
3956
  flightId: zod.ZodEffects<zod.ZodObject<{
3093
3957
  __type: zod.ZodLiteral<"bigint">;
3094
3958
  value: zod.ZodString;
@@ -3124,4 +3988,4 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.o
3124
3988
  }, zod.ZodAny, "strip">>;
3125
3989
  }, zod.ZodAny, "strip">;
3126
3990
 
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 };
3991
+ 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 CreateFlightPlanBody, type CreateFlightPlanResponse, 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 FlightPlansControllerCreateData, type FlightPlansControllerCreateErrors, type FlightPlansControllerCreateResponse, type FlightPlansControllerCreateResponses, type FlightPlansControllerGetData, type FlightPlansControllerGetErrors, type FlightPlansControllerGetManyData, type FlightPlansControllerGetManyErrors, type FlightPlansControllerGetManyResponse, type FlightPlansControllerGetManyResponses, type FlightPlansControllerGetResponse, type FlightPlansControllerGetResponses, 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 GetFlightPlanResponse, type GetFlightPlansResponse, 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 SchemaControllerGetFlightPlanSchemaData, type SchemaControllerGetFlightPlanSchemaResponses, 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, flightPlansControllerCreate, flightPlansControllerGet, flightPlansControllerGetMany, flightsControllerCreatePresignedUrls, flightsControllerGenerateStorageKey, flightsControllerGetFlight, flightsControllerValidateFlight, formDataBodySerializer, inboundWebhookConfigsControllerCreate, inboundWebhookConfigsControllerDelete, inboundWebhookConfigsControllerGet, inboundWebhookConfigsControllerGetMany, inboundWebhookConfigsControllerUpdate, jsonBodySerializer, keysControllerGetProvenanceCryptoKey, mergeHeaders, missionsControllerCloseMission, missionsControllerCreateMissions, missionsControllerRepriceMissions, missionsControllerUpdateMissions, parseWebhookEvent, quotesControllerCreateQuote, quotesControllerGetQuote, schemaControllerGetEventSchema, schemaControllerGetFlightPlanSchema, urlSearchParamsBodySerializer, vaultsControllerCreateVaults, webhooksControllerCreate, webhooksControllerDelete, webhooksControllerGet, webhooksControllerGetMany, webhooksControllerGetStatus, webhooksControllerRegenerateSecret, webhooksControllerTest, webhooksControllerUpdate };