@layer-drone/protocol 0.3.0 → 0.6.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 +336 -18
- package/dist/index.d.ts +336 -18
- package/dist/index.js +300 -19
- package/dist/index.mjs +287 -17
- package/package.json +1 -1
- package/src/client/client/types.ts +4 -5
- package/src/client/core/pathSerializer.ts +1 -2
- package/src/client/sdk.gen.ts +290 -17
- package/src/client/transformers.gen.ts +165 -0
- package/src/client/types.gen.ts +438 -16
- package/src/event/parser.ts +62 -10
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" | "manageFlightPlans" | "manageMissions" | "manageVaults" | "manageWebhooks" | "manageContracts" | "redrive" | "updateOnChainData" | "all">;
|
|
11
|
+
scopes: Array<"manageTokens" | "manageFlights" | "manageFlightReviews" | "manageFlightPlans" | "manageMissions" | "manageVaults" | "manageWebhooks" | "manageContracts" | "redrive" | "updateOnChainData" | "syncEventProcessorState" | "manageZones" | "manageProposals" | "approveProposals" | "all">;
|
|
12
12
|
};
|
|
13
13
|
type CreateApiTokenRequestDto = {
|
|
14
14
|
name: string;
|
|
15
|
-
scopes: Array<"manageTokens" | "manageFlights" | "manageFlightPlans" | "manageMissions" | "manageVaults" | "manageWebhooks" | "manageContracts" | "redrive" | "updateOnChainData" | "all">;
|
|
15
|
+
scopes: Array<"manageTokens" | "manageFlights" | "manageFlightReviews" | "manageFlightPlans" | "manageMissions" | "manageVaults" | "manageWebhooks" | "manageContracts" | "redrive" | "updateOnChainData" | "syncEventProcessorState" | "manageZones" | "manageProposals" | "approveProposals" | "all">;
|
|
16
16
|
orgId: number;
|
|
17
17
|
};
|
|
18
18
|
type UpdateApiTokenRequestDto = {
|
|
19
19
|
name?: string;
|
|
20
|
-
scopes?: Array<"manageTokens" | "manageFlights" | "manageFlightPlans" | "manageMissions" | "manageVaults" | "manageWebhooks" | "manageContracts" | "redrive" | "updateOnChainData" | "all">;
|
|
20
|
+
scopes?: Array<"manageTokens" | "manageFlights" | "manageFlightReviews" | "manageFlightPlans" | "manageMissions" | "manageVaults" | "manageWebhooks" | "manageContracts" | "redrive" | "updateOnChainData" | "syncEventProcessorState" | "manageZones" | "manageProposals" | "approveProposals" | "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" | "manageFlightPlans" | "manageMissions" | "manageVaults" | "manageWebhooks" | "manageContracts" | "redrive" | "updateOnChainData" | "all">;
|
|
28
|
+
scopes: Array<"manageTokens" | "manageFlights" | "manageFlightReviews" | "manageFlightPlans" | "manageMissions" | "manageVaults" | "manageWebhooks" | "manageContracts" | "redrive" | "updateOnChainData" | "syncEventProcessorState" | "manageZones" | "manageProposals" | "approveProposals" | "all">;
|
|
29
29
|
};
|
|
30
30
|
type GetTimeLimitsForSunAltitudeResponse = {
|
|
31
31
|
OptimalSunAltitudePeriod: {
|
|
@@ -227,6 +227,16 @@ type FlightDto = {
|
|
|
227
227
|
block_number: number;
|
|
228
228
|
block_timestamp: number;
|
|
229
229
|
transaction_hash: string;
|
|
230
|
+
payout: {
|
|
231
|
+
id: string;
|
|
232
|
+
missionId: string;
|
|
233
|
+
flightReviewId: string;
|
|
234
|
+
recipient: string;
|
|
235
|
+
amount: string;
|
|
236
|
+
tokenContractAddress: string;
|
|
237
|
+
chainId: number;
|
|
238
|
+
createdAt: Date;
|
|
239
|
+
};
|
|
230
240
|
};
|
|
231
241
|
type CreateFileRequestDto = {
|
|
232
242
|
filenames: Array<string>;
|
|
@@ -412,13 +422,118 @@ type CreateFlightPlanResponse = {
|
|
|
412
422
|
created_at: Date;
|
|
413
423
|
updated_at: Date;
|
|
414
424
|
};
|
|
425
|
+
type GetFlightReviewResponseDto = {
|
|
426
|
+
flightId: string;
|
|
427
|
+
owner: string;
|
|
428
|
+
validator: string;
|
|
429
|
+
isApproved: boolean;
|
|
430
|
+
storageKey: string;
|
|
431
|
+
filesHash: string;
|
|
432
|
+
missionId: string;
|
|
433
|
+
validationLogUri: string;
|
|
434
|
+
contractAddress: string;
|
|
435
|
+
chainId: number;
|
|
436
|
+
createdAt: Date;
|
|
437
|
+
updatedAt: Date;
|
|
438
|
+
};
|
|
439
|
+
type GetFlightReviewsResponseDto = {
|
|
440
|
+
flightReviews: Array<{
|
|
441
|
+
flightId: string;
|
|
442
|
+
owner: string;
|
|
443
|
+
validator: string;
|
|
444
|
+
isApproved: boolean;
|
|
445
|
+
storageKey: string;
|
|
446
|
+
filesHash: string;
|
|
447
|
+
missionId: string;
|
|
448
|
+
validationLogUri: string;
|
|
449
|
+
contractAddress: string;
|
|
450
|
+
chainId: number;
|
|
451
|
+
createdAt: Date;
|
|
452
|
+
updatedAt: Date;
|
|
453
|
+
}>;
|
|
454
|
+
};
|
|
415
455
|
type GetProvenanceCryptoKeyResponse = {
|
|
416
456
|
KeyId: string;
|
|
417
457
|
PublicKey: string;
|
|
418
|
-
KeySpec?: "ECC_NIST_P256" | "ECC_NIST_P384" | "ECC_NIST_P521" | "ECC_SECG_P256K1" | "HMAC_224" | "HMAC_256" | "HMAC_384" | "HMAC_512" | "RSA_2048" | "RSA_3072" | "RSA_4096" | "SM2" | "SYMMETRIC_DEFAULT";
|
|
458
|
+
KeySpec?: "ECC_NIST_EDWARDS25519" | "ECC_NIST_P256" | "ECC_NIST_P384" | "ECC_NIST_P521" | "ECC_SECG_P256K1" | "HMAC_224" | "HMAC_256" | "HMAC_384" | "HMAC_512" | "ML_DSA_44" | "ML_DSA_65" | "ML_DSA_87" | "RSA_2048" | "RSA_3072" | "RSA_4096" | "SM2" | "SYMMETRIC_DEFAULT";
|
|
419
459
|
KeyUsage?: "ENCRYPT_DECRYPT" | "GENERATE_VERIFY_MAC" | "KEY_AGREEMENT" | "SIGN_VERIFY";
|
|
420
460
|
EncryptionAlgorithms?: Array<"RSAES_OAEP_SHA_1" | "RSAES_OAEP_SHA_256" | "SM2PKE" | "SYMMETRIC_DEFAULT">;
|
|
421
461
|
};
|
|
462
|
+
type GetMissionResponseDto = {
|
|
463
|
+
id: string;
|
|
464
|
+
vaultId: string;
|
|
465
|
+
requestor: string;
|
|
466
|
+
zoneId: string;
|
|
467
|
+
isOpen: boolean;
|
|
468
|
+
flightPlanId: number;
|
|
469
|
+
isReservable: boolean;
|
|
470
|
+
tags: {
|
|
471
|
+
[key: string]: string;
|
|
472
|
+
};
|
|
473
|
+
captureStartTime: Date;
|
|
474
|
+
captureEndTime: Date;
|
|
475
|
+
campaigns: Array<string>;
|
|
476
|
+
contractAddress: string;
|
|
477
|
+
chainId: number;
|
|
478
|
+
createdAt: Date;
|
|
479
|
+
updatedAt: Date;
|
|
480
|
+
payout: {
|
|
481
|
+
id: string;
|
|
482
|
+
recipient: string;
|
|
483
|
+
amount: string;
|
|
484
|
+
flightReviewId: string;
|
|
485
|
+
createdAt: Date;
|
|
486
|
+
};
|
|
487
|
+
vault: {
|
|
488
|
+
id: string;
|
|
489
|
+
amount: string;
|
|
490
|
+
collateralTokenAddress: string;
|
|
491
|
+
funder: string;
|
|
492
|
+
contractAddress: string;
|
|
493
|
+
chainId: number;
|
|
494
|
+
createdAt: Date;
|
|
495
|
+
updatedAt: Date;
|
|
496
|
+
};
|
|
497
|
+
};
|
|
498
|
+
type GetMissionsResponseDto = {
|
|
499
|
+
missions: Array<{
|
|
500
|
+
id: string;
|
|
501
|
+
vaultId: string;
|
|
502
|
+
requestor: string;
|
|
503
|
+
zoneId: string;
|
|
504
|
+
isOpen: boolean;
|
|
505
|
+
flightPlanId: number;
|
|
506
|
+
isReservable: boolean;
|
|
507
|
+
tags: {
|
|
508
|
+
[key: string]: string;
|
|
509
|
+
};
|
|
510
|
+
captureStartTime: Date;
|
|
511
|
+
captureEndTime: Date;
|
|
512
|
+
campaigns: Array<string>;
|
|
513
|
+
contractAddress: string;
|
|
514
|
+
chainId: number;
|
|
515
|
+
createdAt: Date;
|
|
516
|
+
updatedAt: Date;
|
|
517
|
+
payout: {
|
|
518
|
+
id: string;
|
|
519
|
+
recipient: string;
|
|
520
|
+
amount: string;
|
|
521
|
+
flightReviewId: string;
|
|
522
|
+
createdAt: Date;
|
|
523
|
+
};
|
|
524
|
+
vault: {
|
|
525
|
+
id: string;
|
|
526
|
+
amount: string;
|
|
527
|
+
collateralTokenAddress: string;
|
|
528
|
+
funder: string;
|
|
529
|
+
contractAddress: string;
|
|
530
|
+
chainId: number;
|
|
531
|
+
createdAt: Date;
|
|
532
|
+
updatedAt: Date;
|
|
533
|
+
};
|
|
534
|
+
}>;
|
|
535
|
+
hasNextPage: boolean;
|
|
536
|
+
};
|
|
422
537
|
type CreateMissionRequestDto = {
|
|
423
538
|
missions: Array<{
|
|
424
539
|
zoneId: string;
|
|
@@ -429,7 +544,7 @@ type CreateMissionRequestDto = {
|
|
|
429
544
|
endTime: Date;
|
|
430
545
|
collateralToken: string;
|
|
431
546
|
decimals: number;
|
|
432
|
-
isReservable
|
|
547
|
+
isReservable?: boolean;
|
|
433
548
|
tags?: {
|
|
434
549
|
[key: string]: string;
|
|
435
550
|
};
|
|
@@ -444,6 +559,7 @@ type CreateMissionResponseDto = {
|
|
|
444
559
|
id: string;
|
|
445
560
|
vaultId: string;
|
|
446
561
|
amount: string;
|
|
562
|
+
collateralToken: string;
|
|
447
563
|
zoneId: string;
|
|
448
564
|
flightPlanId: number;
|
|
449
565
|
campaigns: Array<string>;
|
|
@@ -540,6 +656,7 @@ type GetWebhooksResponse = Array<{
|
|
|
540
656
|
active: boolean;
|
|
541
657
|
failure_count: number;
|
|
542
658
|
last_failure_reason: string;
|
|
659
|
+
previous_secret_expires_at: Date;
|
|
543
660
|
created_at: string;
|
|
544
661
|
updated_at: string;
|
|
545
662
|
}>;
|
|
@@ -551,6 +668,7 @@ type GetWebhookResponse = {
|
|
|
551
668
|
active: boolean;
|
|
552
669
|
failure_count: number;
|
|
553
670
|
last_failure_reason: string;
|
|
671
|
+
previous_secret_expires_at: Date;
|
|
554
672
|
created_at: string;
|
|
555
673
|
updated_at: string;
|
|
556
674
|
};
|
|
@@ -568,14 +686,19 @@ type UpdateWebhookResponse = {
|
|
|
568
686
|
active: boolean;
|
|
569
687
|
failure_count: number;
|
|
570
688
|
last_failure_reason: string;
|
|
689
|
+
previous_secret_expires_at: Date;
|
|
571
690
|
created_at: string;
|
|
572
691
|
updated_at: string;
|
|
573
692
|
};
|
|
574
693
|
type DeleteWebhookResponse = {
|
|
575
694
|
message: string;
|
|
576
695
|
};
|
|
696
|
+
type RegenerateWebhookSecretBody = {
|
|
697
|
+
previous_secret_expires_at?: Date;
|
|
698
|
+
} | unknown;
|
|
577
699
|
type RegenerateWebhookSecretResponseDto = {
|
|
578
700
|
secret: string;
|
|
701
|
+
previous_secret_expires_at: Date;
|
|
579
702
|
};
|
|
580
703
|
type TestWebhookResponse = {
|
|
581
704
|
success: boolean;
|
|
@@ -584,6 +707,44 @@ type GetWebhookStatusResponse = {
|
|
|
584
707
|
status: "inactive" | "error" | "connected" | "connecting";
|
|
585
708
|
error?: string;
|
|
586
709
|
};
|
|
710
|
+
type CreateZoneDto = {
|
|
711
|
+
id: string;
|
|
712
|
+
region_id: number;
|
|
713
|
+
is_flyable?: boolean;
|
|
714
|
+
};
|
|
715
|
+
type ZoneResponseDto = {
|
|
716
|
+
id: string;
|
|
717
|
+
region_id: number;
|
|
718
|
+
is_flyable: boolean;
|
|
719
|
+
created_at: Date;
|
|
720
|
+
updated_at: Date;
|
|
721
|
+
};
|
|
722
|
+
type UpdateZoneDto = {
|
|
723
|
+
is_flyable: boolean;
|
|
724
|
+
};
|
|
725
|
+
type SyncEventProcessorMissionsRequestDto = {
|
|
726
|
+
missionIds: Array<string>;
|
|
727
|
+
missionDataContractAddress: string;
|
|
728
|
+
missionEscrowContractAddress: string;
|
|
729
|
+
};
|
|
730
|
+
type SyncEventProcessorMissionsResponseDto = {
|
|
731
|
+
succeeded: Array<string>;
|
|
732
|
+
failed: Array<{
|
|
733
|
+
missionId: string;
|
|
734
|
+
error: string;
|
|
735
|
+
}>;
|
|
736
|
+
};
|
|
737
|
+
type SyncEventProcessorFlightReviewsRequestDto = {
|
|
738
|
+
flightIds: Array<string>;
|
|
739
|
+
flightReviewContractAddress: string;
|
|
740
|
+
};
|
|
741
|
+
type SyncEventProcessorFlightReviewsResponseDto = {
|
|
742
|
+
succeeded: Array<string>;
|
|
743
|
+
failed: Array<{
|
|
744
|
+
flightId: string;
|
|
745
|
+
error: string;
|
|
746
|
+
}>;
|
|
747
|
+
};
|
|
587
748
|
type AlchemyWebhookBodyDto = {
|
|
588
749
|
[key: string]: unknown;
|
|
589
750
|
};
|
|
@@ -977,6 +1138,40 @@ type FlightPlansControllerGetResponses = {
|
|
|
977
1138
|
200: GetFlightPlanResponse;
|
|
978
1139
|
};
|
|
979
1140
|
type FlightPlansControllerGetResponse = FlightPlansControllerGetResponses[keyof FlightPlansControllerGetResponses];
|
|
1141
|
+
type FlightReviewsControllerGetFlightReviewData = {
|
|
1142
|
+
body?: never;
|
|
1143
|
+
path: {
|
|
1144
|
+
id: bigint;
|
|
1145
|
+
};
|
|
1146
|
+
query?: never;
|
|
1147
|
+
url: "/flight-reviews/{id}";
|
|
1148
|
+
};
|
|
1149
|
+
type FlightReviewsControllerGetFlightReviewErrors = {
|
|
1150
|
+
401: unknown;
|
|
1151
|
+
403: unknown;
|
|
1152
|
+
404: unknown;
|
|
1153
|
+
};
|
|
1154
|
+
type FlightReviewsControllerGetFlightReviewResponses = {
|
|
1155
|
+
200: GetFlightReviewResponseDto;
|
|
1156
|
+
};
|
|
1157
|
+
type FlightReviewsControllerGetFlightReviewResponse = FlightReviewsControllerGetFlightReviewResponses[keyof FlightReviewsControllerGetFlightReviewResponses];
|
|
1158
|
+
type FlightReviewsControllerGetFlightReviewsData = {
|
|
1159
|
+
body?: never;
|
|
1160
|
+
path?: never;
|
|
1161
|
+
query: {
|
|
1162
|
+
updated_at_gt: Date;
|
|
1163
|
+
updated_at_lt: Date;
|
|
1164
|
+
};
|
|
1165
|
+
url: "/flight-reviews";
|
|
1166
|
+
};
|
|
1167
|
+
type FlightReviewsControllerGetFlightReviewsErrors = {
|
|
1168
|
+
401: unknown;
|
|
1169
|
+
403: unknown;
|
|
1170
|
+
};
|
|
1171
|
+
type FlightReviewsControllerGetFlightReviewsResponses = {
|
|
1172
|
+
200: GetFlightReviewsResponseDto;
|
|
1173
|
+
};
|
|
1174
|
+
type FlightReviewsControllerGetFlightReviewsResponse = FlightReviewsControllerGetFlightReviewsResponses[keyof FlightReviewsControllerGetFlightReviewsResponses];
|
|
980
1175
|
type KeysControllerGetProvenanceCryptoKeyData = {
|
|
981
1176
|
body?: never;
|
|
982
1177
|
path?: never;
|
|
@@ -987,6 +1182,49 @@ type KeysControllerGetProvenanceCryptoKeyResponses = {
|
|
|
987
1182
|
200: GetProvenanceCryptoKeyResponse;
|
|
988
1183
|
};
|
|
989
1184
|
type KeysControllerGetProvenanceCryptoKeyResponse = KeysControllerGetProvenanceCryptoKeyResponses[keyof KeysControllerGetProvenanceCryptoKeyResponses];
|
|
1185
|
+
type MissionsControllerGetMissionData = {
|
|
1186
|
+
body?: never;
|
|
1187
|
+
path: {
|
|
1188
|
+
id: string;
|
|
1189
|
+
};
|
|
1190
|
+
query?: {
|
|
1191
|
+
relations?: "vault" | "payout" | "campaigns" | Array<"vault" | "payout" | "campaigns">;
|
|
1192
|
+
};
|
|
1193
|
+
url: "/missions/{id}";
|
|
1194
|
+
};
|
|
1195
|
+
type MissionsControllerGetMissionErrors = {
|
|
1196
|
+
401: unknown;
|
|
1197
|
+
403: unknown;
|
|
1198
|
+
404: unknown;
|
|
1199
|
+
};
|
|
1200
|
+
type MissionsControllerGetMissionResponses = {
|
|
1201
|
+
200: GetMissionResponseDto;
|
|
1202
|
+
};
|
|
1203
|
+
type MissionsControllerGetMissionResponse = MissionsControllerGetMissionResponses[keyof MissionsControllerGetMissionResponses];
|
|
1204
|
+
type MissionsControllerGetMissionsData = {
|
|
1205
|
+
body?: never;
|
|
1206
|
+
path?: never;
|
|
1207
|
+
query?: {
|
|
1208
|
+
updatedAt_gt?: Date;
|
|
1209
|
+
updatedAt_lt?: Date;
|
|
1210
|
+
createdAt_gt?: Date;
|
|
1211
|
+
createdAt_lt?: Date;
|
|
1212
|
+
isOpen?: string;
|
|
1213
|
+
zoneIds?: string | Array<string>;
|
|
1214
|
+
flightPlanId?: number;
|
|
1215
|
+
page?: number;
|
|
1216
|
+
relations?: "vault" | "payout" | "campaigns" | Array<"vault" | "payout" | "campaigns">;
|
|
1217
|
+
};
|
|
1218
|
+
url: "/missions";
|
|
1219
|
+
};
|
|
1220
|
+
type MissionsControllerGetMissionsErrors = {
|
|
1221
|
+
401: unknown;
|
|
1222
|
+
403: unknown;
|
|
1223
|
+
};
|
|
1224
|
+
type MissionsControllerGetMissionsResponses = {
|
|
1225
|
+
200: GetMissionsResponseDto;
|
|
1226
|
+
};
|
|
1227
|
+
type MissionsControllerGetMissionsResponse = MissionsControllerGetMissionsResponses[keyof MissionsControllerGetMissionsResponses];
|
|
990
1228
|
type MissionsControllerCreateMissionsData = {
|
|
991
1229
|
body: CreateMissionRequestDto;
|
|
992
1230
|
path?: never;
|
|
@@ -1086,15 +1324,6 @@ type SchemaControllerGetEventSchemaData = {
|
|
|
1086
1324
|
type SchemaControllerGetEventSchemaResponses = {
|
|
1087
1325
|
200: unknown;
|
|
1088
1326
|
};
|
|
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
1327
|
type VaultsControllerCreateVaultsData = {
|
|
1099
1328
|
body: CreateVaultsRequestDto;
|
|
1100
1329
|
path?: never;
|
|
@@ -1195,7 +1424,7 @@ type WebhooksControllerUpdateResponses = {
|
|
|
1195
1424
|
};
|
|
1196
1425
|
type WebhooksControllerUpdateResponse = WebhooksControllerUpdateResponses[keyof WebhooksControllerUpdateResponses];
|
|
1197
1426
|
type WebhooksControllerRegenerateSecretData = {
|
|
1198
|
-
body
|
|
1427
|
+
body: RegenerateWebhookSecretBody;
|
|
1199
1428
|
path: {
|
|
1200
1429
|
org_id: number;
|
|
1201
1430
|
id: number;
|
|
@@ -1245,6 +1474,84 @@ type WebhooksControllerGetStatusResponses = {
|
|
|
1245
1474
|
200: GetWebhookStatusResponse;
|
|
1246
1475
|
};
|
|
1247
1476
|
type WebhooksControllerGetStatusResponse = WebhooksControllerGetStatusResponses[keyof WebhooksControllerGetStatusResponses];
|
|
1477
|
+
type ZonesControllerCreateZoneData = {
|
|
1478
|
+
body: CreateZoneDto;
|
|
1479
|
+
path?: never;
|
|
1480
|
+
query?: never;
|
|
1481
|
+
url: "/zones";
|
|
1482
|
+
};
|
|
1483
|
+
type ZonesControllerCreateZoneErrors = {
|
|
1484
|
+
400: unknown;
|
|
1485
|
+
401: unknown;
|
|
1486
|
+
403: unknown;
|
|
1487
|
+
409: unknown;
|
|
1488
|
+
};
|
|
1489
|
+
type ZonesControllerCreateZoneResponses = {
|
|
1490
|
+
201: ZoneResponseDto;
|
|
1491
|
+
};
|
|
1492
|
+
type ZonesControllerCreateZoneResponse = ZonesControllerCreateZoneResponses[keyof ZonesControllerCreateZoneResponses];
|
|
1493
|
+
type ZonesControllerDeleteZoneData = {
|
|
1494
|
+
body?: never;
|
|
1495
|
+
path: {
|
|
1496
|
+
id: string;
|
|
1497
|
+
};
|
|
1498
|
+
query?: never;
|
|
1499
|
+
url: "/zones/{id}";
|
|
1500
|
+
};
|
|
1501
|
+
type ZonesControllerDeleteZoneErrors = {
|
|
1502
|
+
401: unknown;
|
|
1503
|
+
403: unknown;
|
|
1504
|
+
404: unknown;
|
|
1505
|
+
};
|
|
1506
|
+
type ZonesControllerDeleteZoneResponses = {
|
|
1507
|
+
204: void;
|
|
1508
|
+
};
|
|
1509
|
+
type ZonesControllerDeleteZoneResponse = ZonesControllerDeleteZoneResponses[keyof ZonesControllerDeleteZoneResponses];
|
|
1510
|
+
type ZonesControllerUpdateZoneData = {
|
|
1511
|
+
body: UpdateZoneDto;
|
|
1512
|
+
path: {
|
|
1513
|
+
id: string;
|
|
1514
|
+
};
|
|
1515
|
+
query?: never;
|
|
1516
|
+
url: "/zones/{id}";
|
|
1517
|
+
};
|
|
1518
|
+
type ZonesControllerUpdateZoneErrors = {
|
|
1519
|
+
401: unknown;
|
|
1520
|
+
403: unknown;
|
|
1521
|
+
404: unknown;
|
|
1522
|
+
};
|
|
1523
|
+
type ZonesControllerUpdateZoneResponses = {
|
|
1524
|
+
200: ZoneResponseDto;
|
|
1525
|
+
};
|
|
1526
|
+
type ZonesControllerUpdateZoneResponse = ZonesControllerUpdateZoneResponses[keyof ZonesControllerUpdateZoneResponses];
|
|
1527
|
+
type EventProcessorMissionsSyncControllerResyncMissionsData = {
|
|
1528
|
+
body: SyncEventProcessorMissionsRequestDto;
|
|
1529
|
+
path?: never;
|
|
1530
|
+
query?: never;
|
|
1531
|
+
url: "/event-processor/missions/sync";
|
|
1532
|
+
};
|
|
1533
|
+
type EventProcessorMissionsSyncControllerResyncMissionsErrors = {
|
|
1534
|
+
401: unknown;
|
|
1535
|
+
403: unknown;
|
|
1536
|
+
};
|
|
1537
|
+
type EventProcessorMissionsSyncControllerResyncMissionsResponses = {
|
|
1538
|
+
200: SyncEventProcessorMissionsResponseDto;
|
|
1539
|
+
};
|
|
1540
|
+
type EventProcessorMissionsSyncControllerResyncMissionsResponse = EventProcessorMissionsSyncControllerResyncMissionsResponses[keyof EventProcessorMissionsSyncControllerResyncMissionsResponses];
|
|
1541
|
+
type EventProcessorFlightReviewsSyncControllerResyncFlightReviewsData = {
|
|
1542
|
+
body: SyncEventProcessorFlightReviewsRequestDto;
|
|
1543
|
+
path?: never;
|
|
1544
|
+
query?: never;
|
|
1545
|
+
url: "/event-processor/flightreviews";
|
|
1546
|
+
};
|
|
1547
|
+
type EventProcessorFlightReviewsSyncControllerResyncFlightReviewsErrors = {
|
|
1548
|
+
401: unknown;
|
|
1549
|
+
403: unknown;
|
|
1550
|
+
};
|
|
1551
|
+
type EventProcessorFlightReviewsSyncControllerResyncFlightReviewsResponses = {
|
|
1552
|
+
200: SyncEventProcessorFlightReviewsResponseDto;
|
|
1553
|
+
};
|
|
1554
|
+
type EventProcessorFlightReviewsSyncControllerResyncFlightReviewsResponse = EventProcessorFlightReviewsSyncControllerResyncFlightReviewsResponses[keyof EventProcessorFlightReviewsSyncControllerResyncFlightReviewsResponses];
|
|
1248
1555
|
type AlchemyControllerHandleWebhookData = {
|
|
1249
1556
|
body: AlchemyWebhookBodyDto;
|
|
1250
1557
|
path?: never;
|
|
@@ -1528,7 +1835,11 @@ declare const flightsControllerValidateFlight: <ThrowOnError extends boolean = f
|
|
|
1528
1835
|
declare const flightPlansControllerGetMany: <ThrowOnError extends boolean = false>(options?: Options<FlightPlansControllerGetManyData, ThrowOnError>) => RequestResult<FlightPlansControllerGetManyResponses, FlightPlansControllerGetManyErrors, ThrowOnError, "fields">;
|
|
1529
1836
|
declare const flightPlansControllerCreate: <ThrowOnError extends boolean = false>(options: Options<FlightPlansControllerCreateData, ThrowOnError>) => RequestResult<FlightPlansControllerCreateResponses, FlightPlansControllerCreateErrors, ThrowOnError, "fields">;
|
|
1530
1837
|
declare const flightPlansControllerGet: <ThrowOnError extends boolean = false>(options: Options<FlightPlansControllerGetData, ThrowOnError>) => RequestResult<FlightPlansControllerGetResponses, FlightPlansControllerGetErrors, ThrowOnError, "fields">;
|
|
1838
|
+
declare const flightReviewsControllerGetFlightReview: <ThrowOnError extends boolean = false>(options: Options<FlightReviewsControllerGetFlightReviewData, ThrowOnError>) => RequestResult<FlightReviewsControllerGetFlightReviewResponses, FlightReviewsControllerGetFlightReviewErrors, ThrowOnError, "fields">;
|
|
1839
|
+
declare const flightReviewsControllerGetFlightReviews: <ThrowOnError extends boolean = false>(options: Options<FlightReviewsControllerGetFlightReviewsData, ThrowOnError>) => RequestResult<FlightReviewsControllerGetFlightReviewsResponses, FlightReviewsControllerGetFlightReviewsErrors, ThrowOnError, "fields">;
|
|
1531
1840
|
declare const keysControllerGetProvenanceCryptoKey: <ThrowOnError extends boolean = false>(options?: Options<KeysControllerGetProvenanceCryptoKeyData, ThrowOnError>) => RequestResult<KeysControllerGetProvenanceCryptoKeyResponses, unknown, ThrowOnError, "fields">;
|
|
1841
|
+
declare const missionsControllerGetMission: <ThrowOnError extends boolean = false>(options: Options<MissionsControllerGetMissionData, ThrowOnError>) => RequestResult<MissionsControllerGetMissionResponses, MissionsControllerGetMissionErrors, ThrowOnError, "fields">;
|
|
1842
|
+
declare const missionsControllerGetMissions: <ThrowOnError extends boolean = false>(options?: Options<MissionsControllerGetMissionsData, ThrowOnError>) => RequestResult<MissionsControllerGetMissionsResponses, MissionsControllerGetMissionsErrors, ThrowOnError, "fields">;
|
|
1532
1843
|
declare const missionsControllerCreateMissions: <ThrowOnError extends boolean = false>(options: Options<MissionsControllerCreateMissionsData, ThrowOnError>) => RequestResult<MissionsControllerCreateMissionsResponses, MissionsControllerCreateMissionsErrors, ThrowOnError, "fields">;
|
|
1533
1844
|
declare const missionsControllerUpdateMissions: <ThrowOnError extends boolean = false>(options: Options<MissionsControllerUpdateMissionsData, ThrowOnError>) => RequestResult<MissionsControllerUpdateMissionsResponses, MissionsControllerUpdateMissionsErrors, ThrowOnError, "fields">;
|
|
1534
1845
|
declare const missionsControllerRepriceMissions: <ThrowOnError extends boolean = false>(options: Options<MissionsControllerRepriceMissionsData, ThrowOnError>) => RequestResult<MissionsControllerRepriceMissionsResponses, MissionsControllerRepriceMissionsErrors, ThrowOnError, "fields">;
|
|
@@ -1536,7 +1847,6 @@ declare const missionsControllerCloseMission: <ThrowOnError extends boolean = fa
|
|
|
1536
1847
|
declare const quotesControllerCreateQuote: <ThrowOnError extends boolean = false>(options: Options<QuotesControllerCreateQuoteData, ThrowOnError>) => RequestResult<QuotesControllerCreateQuoteResponses, QuotesControllerCreateQuoteErrors, ThrowOnError, "fields">;
|
|
1537
1848
|
declare const quotesControllerGetQuote: <ThrowOnError extends boolean = false>(options: Options<QuotesControllerGetQuoteData, ThrowOnError>) => RequestResult<QuotesControllerGetQuoteResponses, QuotesControllerGetQuoteErrors, ThrowOnError, "fields">;
|
|
1538
1849
|
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
1850
|
declare const vaultsControllerCreateVaults: <ThrowOnError extends boolean = false>(options: Options<VaultsControllerCreateVaultsData, ThrowOnError>) => RequestResult<VaultsControllerCreateVaultsResponses, VaultsControllerCreateVaultsErrors, ThrowOnError, "fields">;
|
|
1541
1851
|
declare const webhooksControllerGetMany: <ThrowOnError extends boolean = false>(options: Options<WebhooksControllerGetManyData, ThrowOnError>) => RequestResult<WebhooksControllerGetManyResponses, WebhooksControllerGetManyErrors, ThrowOnError, "fields">;
|
|
1542
1852
|
declare const webhooksControllerCreate: <ThrowOnError extends boolean = false>(options: Options<WebhooksControllerCreateData, ThrowOnError>) => RequestResult<WebhooksControllerCreateResponses, WebhooksControllerCreateErrors, ThrowOnError, "fields">;
|
|
@@ -1546,6 +1856,11 @@ declare const webhooksControllerUpdate: <ThrowOnError extends boolean = false>(o
|
|
|
1546
1856
|
declare const webhooksControllerRegenerateSecret: <ThrowOnError extends boolean = false>(options: Options<WebhooksControllerRegenerateSecretData, ThrowOnError>) => RequestResult<WebhooksControllerRegenerateSecretResponses, WebhooksControllerRegenerateSecretErrors, ThrowOnError, "fields">;
|
|
1547
1857
|
declare const webhooksControllerTest: <ThrowOnError extends boolean = false>(options: Options<WebhooksControllerTestData, ThrowOnError>) => RequestResult<WebhooksControllerTestResponses, WebhooksControllerTestErrors, ThrowOnError, "fields">;
|
|
1548
1858
|
declare const webhooksControllerGetStatus: <ThrowOnError extends boolean = false>(options: Options<WebhooksControllerGetStatusData, ThrowOnError>) => RequestResult<WebhooksControllerGetStatusResponses, WebhooksControllerGetStatusErrors, ThrowOnError, "fields">;
|
|
1859
|
+
declare const zonesControllerCreateZone: <ThrowOnError extends boolean = false>(options: Options<ZonesControllerCreateZoneData, ThrowOnError>) => RequestResult<ZonesControllerCreateZoneResponses, ZonesControllerCreateZoneErrors, ThrowOnError, "fields">;
|
|
1860
|
+
declare const zonesControllerDeleteZone: <ThrowOnError extends boolean = false>(options: Options<ZonesControllerDeleteZoneData, ThrowOnError>) => RequestResult<ZonesControllerDeleteZoneResponses, ZonesControllerDeleteZoneErrors, ThrowOnError, "fields">;
|
|
1861
|
+
declare const zonesControllerUpdateZone: <ThrowOnError extends boolean = false>(options: Options<ZonesControllerUpdateZoneData, ThrowOnError>) => RequestResult<ZonesControllerUpdateZoneResponses, ZonesControllerUpdateZoneErrors, ThrowOnError, "fields">;
|
|
1862
|
+
declare const eventProcessorMissionsSyncControllerResyncMissions: <ThrowOnError extends boolean = false>(options: Options<EventProcessorMissionsSyncControllerResyncMissionsData, ThrowOnError>) => RequestResult<EventProcessorMissionsSyncControllerResyncMissionsResponses, EventProcessorMissionsSyncControllerResyncMissionsErrors, ThrowOnError, "fields">;
|
|
1863
|
+
declare const eventProcessorFlightReviewsSyncControllerResyncFlightReviews: <ThrowOnError extends boolean = false>(options: Options<EventProcessorFlightReviewsSyncControllerResyncFlightReviewsData, ThrowOnError>) => RequestResult<EventProcessorFlightReviewsSyncControllerResyncFlightReviewsResponses, EventProcessorFlightReviewsSyncControllerResyncFlightReviewsErrors, ThrowOnError, "fields">;
|
|
1549
1864
|
declare const alchemyControllerHandleWebhook: <ThrowOnError extends boolean = false>(options: Options<AlchemyControllerHandleWebhookData, ThrowOnError>) => RequestResult<AlchemyControllerHandleWebhookResponses, unknown, ThrowOnError, "fields">;
|
|
1550
1865
|
declare const inboundWebhookConfigsControllerGetMany: <ThrowOnError extends boolean = false>(options?: Options<InboundWebhookConfigsControllerGetManyData, ThrowOnError>) => RequestResult<InboundWebhookConfigsControllerGetManyResponses, InboundWebhookConfigsControllerGetManyErrors, ThrowOnError, "fields">;
|
|
1551
1866
|
declare const inboundWebhookConfigsControllerCreate: <ThrowOnError extends boolean = false>(options: Options<InboundWebhookConfigsControllerCreateData, ThrowOnError>) => RequestResult<InboundWebhookConfigsControllerCreateResponses, InboundWebhookConfigsControllerCreateErrors, ThrowOnError, "fields">;
|
|
@@ -3383,6 +3698,9 @@ type FlightReviewedEvent = Extract<Event, {
|
|
|
3383
3698
|
event_type: "protocol.flight.reviewed";
|
|
3384
3699
|
}>;
|
|
3385
3700
|
|
|
3701
|
+
declare const WEBHOOK_SECRET_HEADER = "X-Webhook-Secret";
|
|
3702
|
+
declare const WEBHOOK_PREVIOUS_SECRET_HEADER = "X-Webhook-Previous-Secret";
|
|
3703
|
+
declare const WEBHOOK_PREVIOUS_SECRET_EXPIRES_AT_HEADER = "X-Webhook-Previous-Secret-Expires-At";
|
|
3386
3704
|
declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.objectOutputType<{
|
|
3387
3705
|
id: zod.ZodString;
|
|
3388
3706
|
event_type: zod.ZodLiteral<"test">;
|
|
@@ -3988,4 +4306,4 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.o
|
|
|
3988
4306
|
}, zod.ZodAny, "strip">>;
|
|
3989
4307
|
}, zod.ZodAny, "strip">;
|
|
3990
4308
|
|
|
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 };
|
|
4309
|
+
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 CreateZoneDto, type DeleteContractResponseDto, type DeleteInboundWebhookConfigResponse, type DeleteWebhookResponse, type DlqRedriverControllerRedriveDlqData, type DlqRedriverControllerRedriveDlqErrors, type DlqRedriverControllerRedriveDlqResponse, type DlqRedriverControllerRedriveDlqResponses, Event, type EventProcessorFlightReviewsSyncControllerResyncFlightReviewsData, type EventProcessorFlightReviewsSyncControllerResyncFlightReviewsErrors, type EventProcessorFlightReviewsSyncControllerResyncFlightReviewsResponse, type EventProcessorFlightReviewsSyncControllerResyncFlightReviewsResponses, type EventProcessorMissionsSyncControllerResyncMissionsData, type EventProcessorMissionsSyncControllerResyncMissionsErrors, type EventProcessorMissionsSyncControllerResyncMissionsResponse, type EventProcessorMissionsSyncControllerResyncMissionsResponses, 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 FlightReviewsControllerGetFlightReviewData, type FlightReviewsControllerGetFlightReviewErrors, type FlightReviewsControllerGetFlightReviewResponse, type FlightReviewsControllerGetFlightReviewResponses, type FlightReviewsControllerGetFlightReviewsData, type FlightReviewsControllerGetFlightReviewsErrors, type FlightReviewsControllerGetFlightReviewsResponse, type FlightReviewsControllerGetFlightReviewsResponses, 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 GetFlightReviewResponseDto, type GetFlightReviewsResponseDto, type GetInboundWebhookConfigResponse, type GetInboundWebhookConfigsResponse, type GetMissionResponseDto, type GetMissionsResponseDto, 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 MissionsControllerGetMissionData, type MissionsControllerGetMissionErrors, type MissionsControllerGetMissionResponse, type MissionsControllerGetMissionResponses, type MissionsControllerGetMissionsData, type MissionsControllerGetMissionsErrors, type MissionsControllerGetMissionsResponse, type MissionsControllerGetMissionsResponses, 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 RegenerateWebhookSecretBody, type RegenerateWebhookSecretResponseDto, type RepriceMissionsRequestDto, type RepriceMissionsResponseDto, type RequestOptions, type RequestResult, type ResponseStyle, type SchemaControllerGetEventSchemaData, type SchemaControllerGetEventSchemaResponses, type SyncEventProcessorFlightReviewsRequestDto, type SyncEventProcessorFlightReviewsResponseDto, type SyncEventProcessorMissionsRequestDto, type SyncEventProcessorMissionsResponseDto, 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 UpdateZoneDto, type ValidateFlightRequestDto, type ValidateFlightResponseDto, type VaultsControllerCreateVaultsData, type VaultsControllerCreateVaultsErrors, type VaultsControllerCreateVaultsResponse, type VaultsControllerCreateVaultsResponses, WEBHOOK_PREVIOUS_SECRET_EXPIRES_AT_HEADER, WEBHOOK_PREVIOUS_SECRET_HEADER, WEBHOOK_SECRET_HEADER, 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, type ZoneResponseDto, type ZonesControllerCreateZoneData, type ZonesControllerCreateZoneErrors, type ZonesControllerCreateZoneResponse, type ZonesControllerCreateZoneResponses, type ZonesControllerDeleteZoneData, type ZonesControllerDeleteZoneErrors, type ZonesControllerDeleteZoneResponse, type ZonesControllerDeleteZoneResponses, type ZonesControllerUpdateZoneData, type ZonesControllerUpdateZoneErrors, type ZonesControllerUpdateZoneResponse, type ZonesControllerUpdateZoneResponses, alchemyControllerHandleWebhook, apiControllerGetError, apiControllerGetHello, apiTokenControllerCreateToken, apiTokenControllerDeleteToken, apiTokenControllerGetToken, apiTokenControllerUpdateToken, buildClientParams, conditionsControllerGetSunAltitudeTimeLimits, contractsControllerCreateContract, contractsControllerDeleteContract, contractsControllerGetAllContracts, contractsControllerGetContract, contractsControllerUpdateContract, createClient, createConfig, dlqRedriverControllerRedriveDlq, eventProcessorFlightReviewsSyncControllerResyncFlightReviews, eventProcessorMissionsSyncControllerResyncMissions, flightPlansControllerCreate, flightPlansControllerGet, flightPlansControllerGetMany, flightReviewsControllerGetFlightReview, flightReviewsControllerGetFlightReviews, flightsControllerCreatePresignedUrls, flightsControllerGenerateStorageKey, flightsControllerGetFlight, flightsControllerValidateFlight, formDataBodySerializer, inboundWebhookConfigsControllerCreate, inboundWebhookConfigsControllerDelete, inboundWebhookConfigsControllerGet, inboundWebhookConfigsControllerGetMany, inboundWebhookConfigsControllerUpdate, jsonBodySerializer, keysControllerGetProvenanceCryptoKey, mergeHeaders, missionsControllerCloseMission, missionsControllerCreateMissions, missionsControllerGetMission, missionsControllerGetMissions, missionsControllerRepriceMissions, missionsControllerUpdateMissions, parseWebhookEvent, quotesControllerCreateQuote, quotesControllerGetQuote, schemaControllerGetEventSchema, urlSearchParamsBodySerializer, vaultsControllerCreateVaults, webhooksControllerCreate, webhooksControllerDelete, webhooksControllerGet, webhooksControllerGetMany, webhooksControllerGetStatus, webhooksControllerRegenerateSecret, webhooksControllerTest, webhooksControllerUpdate, zonesControllerCreateZone, zonesControllerDeleteZone, zonesControllerUpdateZone };
|