@layer-drone/protocol 0.0.14 → 0.0.16
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 +155 -107
- package/dist/index.d.ts +155 -107
- package/dist/index.js +36 -52
- package/dist/index.mjs +36 -50
- package/package.json +2 -2
- package/src/client/sdk.gen.ts +11 -67
- package/src/client/types.gen.ts +26 -89
- package/src/event/types.gen.ts +19 -7
package/dist/index.d.mts
CHANGED
|
@@ -8,22 +8,11 @@ type GetProvenanceCryptoKeyResponse = {
|
|
|
8
8
|
KeyUsage?: "ENCRYPT_DECRYPT" | "GENERATE_VERIFY_MAC" | "KEY_AGREEMENT" | "SIGN_VERIFY";
|
|
9
9
|
EncryptionAlgorithms?: Array<"RSAES_OAEP_SHA_1" | "RSAES_OAEP_SHA_256" | "SM2PKE" | "SYMMETRIC_DEFAULT">;
|
|
10
10
|
};
|
|
11
|
-
type
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
};
|
|
17
|
-
type DepositRewardsResponseDto = {
|
|
18
|
-
MessageId: string;
|
|
19
|
-
};
|
|
20
|
-
type DistributeRewardsRequestDto = {
|
|
21
|
-
amounts: {
|
|
22
|
-
[key: string]: number;
|
|
23
|
-
};
|
|
24
|
-
};
|
|
25
|
-
type DistributeRewardsResponseDto = {
|
|
26
|
-
MessageId: string;
|
|
11
|
+
type CreateQuoteRequestDto = {
|
|
12
|
+
missionIds: Array<number>;
|
|
13
|
+
entitlementType: string;
|
|
14
|
+
buyer: string;
|
|
15
|
+
mintOnChain: boolean;
|
|
27
16
|
};
|
|
28
17
|
type CreateApiTokenResponseDto = {
|
|
29
18
|
id: string;
|
|
@@ -50,17 +39,11 @@ type UpdateApiTokenResponseDto = {
|
|
|
50
39
|
org: number;
|
|
51
40
|
scopes: Array<"manageTokens" | "manageFlights" | "manageWebhooks" | "all">;
|
|
52
41
|
};
|
|
53
|
-
type CreateQuoteRequestDto = {
|
|
54
|
-
missionIds: Array<number>;
|
|
55
|
-
entitlementType: string;
|
|
56
|
-
buyer: string;
|
|
57
|
-
mintOnChain: boolean;
|
|
58
|
-
};
|
|
59
42
|
type CreateMissionRequestDto = {
|
|
60
43
|
missions: Array<{
|
|
61
44
|
zoneId: string;
|
|
62
45
|
flightPlanId: number;
|
|
63
|
-
amount:
|
|
46
|
+
amount: bigint;
|
|
64
47
|
startTime: Date;
|
|
65
48
|
endTime: Date;
|
|
66
49
|
}>;
|
|
@@ -72,24 +55,23 @@ type CreateMissionResponseDto = {
|
|
|
72
55
|
success: boolean;
|
|
73
56
|
data: {
|
|
74
57
|
missions: Array<{
|
|
75
|
-
|
|
58
|
+
id: string;
|
|
76
59
|
vaultId: string;
|
|
77
|
-
amount:
|
|
60
|
+
amount: string;
|
|
78
61
|
zoneId: string;
|
|
79
62
|
flightPlanId: number;
|
|
80
63
|
captureStartTime: Date;
|
|
81
64
|
captureEndTime: Date;
|
|
82
65
|
requestor: string;
|
|
83
66
|
}>;
|
|
84
|
-
totalAmount: number;
|
|
85
67
|
} | string;
|
|
86
68
|
};
|
|
87
69
|
type UpdateMissionsRequestDto = {
|
|
88
70
|
missions: Array<{
|
|
89
|
-
id:
|
|
90
|
-
amount:
|
|
71
|
+
id: bigint;
|
|
72
|
+
amount: bigint;
|
|
91
73
|
} | {
|
|
92
|
-
id:
|
|
74
|
+
id: bigint;
|
|
93
75
|
isOpen: false;
|
|
94
76
|
}>;
|
|
95
77
|
};
|
|
@@ -238,34 +220,34 @@ type KeysControllerGetProvenanceCryptoKeyResponses = {
|
|
|
238
220
|
200: GetProvenanceCryptoKeyResponse;
|
|
239
221
|
};
|
|
240
222
|
type KeysControllerGetProvenanceCryptoKeyResponse = KeysControllerGetProvenanceCryptoKeyResponses[keyof KeysControllerGetProvenanceCryptoKeyResponses];
|
|
241
|
-
type
|
|
242
|
-
body:
|
|
223
|
+
type QuotesControllerCreateQuoteData = {
|
|
224
|
+
body: CreateQuoteRequestDto;
|
|
243
225
|
path?: never;
|
|
244
226
|
query?: never;
|
|
245
|
-
url: "/
|
|
227
|
+
url: "/quotes";
|
|
246
228
|
};
|
|
247
|
-
type
|
|
229
|
+
type QuotesControllerCreateQuoteErrors = {
|
|
248
230
|
401: unknown;
|
|
249
231
|
403: unknown;
|
|
250
232
|
};
|
|
251
|
-
type
|
|
252
|
-
|
|
233
|
+
type QuotesControllerCreateQuoteResponses = {
|
|
234
|
+
201: unknown;
|
|
253
235
|
};
|
|
254
|
-
type
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
236
|
+
type QuotesControllerGetQuoteData = {
|
|
237
|
+
body?: never;
|
|
238
|
+
path: {
|
|
239
|
+
id: string;
|
|
240
|
+
};
|
|
258
241
|
query?: never;
|
|
259
|
-
url: "/
|
|
242
|
+
url: "/quotes/{id}";
|
|
260
243
|
};
|
|
261
|
-
type
|
|
244
|
+
type QuotesControllerGetQuoteErrors = {
|
|
262
245
|
401: unknown;
|
|
263
246
|
403: unknown;
|
|
264
247
|
};
|
|
265
|
-
type
|
|
266
|
-
200:
|
|
248
|
+
type QuotesControllerGetQuoteResponses = {
|
|
249
|
+
200: unknown;
|
|
267
250
|
};
|
|
268
|
-
type RewardsControllerDistributeRewardsResponse = RewardsControllerDistributeRewardsResponses[keyof RewardsControllerDistributeRewardsResponses];
|
|
269
251
|
type ApiTokenControllerCreateTokenData = {
|
|
270
252
|
body: CreateApiTokenRequestDto;
|
|
271
253
|
path?: never;
|
|
@@ -327,34 +309,6 @@ type ApiTokenControllerUpdateTokenResponses = {
|
|
|
327
309
|
200: UpdateApiTokenResponseDto;
|
|
328
310
|
};
|
|
329
311
|
type ApiTokenControllerUpdateTokenResponse = ApiTokenControllerUpdateTokenResponses[keyof ApiTokenControllerUpdateTokenResponses];
|
|
330
|
-
type QuotesControllerCreateQuoteData = {
|
|
331
|
-
body: CreateQuoteRequestDto;
|
|
332
|
-
path?: never;
|
|
333
|
-
query?: never;
|
|
334
|
-
url: "/quotes";
|
|
335
|
-
};
|
|
336
|
-
type QuotesControllerCreateQuoteErrors = {
|
|
337
|
-
401: unknown;
|
|
338
|
-
403: unknown;
|
|
339
|
-
};
|
|
340
|
-
type QuotesControllerCreateQuoteResponses = {
|
|
341
|
-
201: unknown;
|
|
342
|
-
};
|
|
343
|
-
type QuotesControllerGetQuoteData = {
|
|
344
|
-
body?: never;
|
|
345
|
-
path: {
|
|
346
|
-
id: string;
|
|
347
|
-
};
|
|
348
|
-
query?: never;
|
|
349
|
-
url: "/quotes/{id}";
|
|
350
|
-
};
|
|
351
|
-
type QuotesControllerGetQuoteErrors = {
|
|
352
|
-
401: unknown;
|
|
353
|
-
403: unknown;
|
|
354
|
-
};
|
|
355
|
-
type QuotesControllerGetQuoteResponses = {
|
|
356
|
-
200: unknown;
|
|
357
|
-
};
|
|
358
312
|
type MissionsControllerCreateMissionsData = {
|
|
359
313
|
body: CreateMissionRequestDto;
|
|
360
314
|
path?: never;
|
|
@@ -798,14 +752,12 @@ type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean
|
|
|
798
752
|
};
|
|
799
753
|
declare const appControllerGetHello: <ThrowOnError extends boolean = false>(options?: Options<AppControllerGetHelloData, ThrowOnError>) => RequestResult<AppControllerGetHelloResponses, unknown, ThrowOnError, "fields">;
|
|
800
754
|
declare const keysControllerGetProvenanceCryptoKey: <ThrowOnError extends boolean = false>(options?: Options<KeysControllerGetProvenanceCryptoKeyData, ThrowOnError>) => RequestResult<KeysControllerGetProvenanceCryptoKeyResponses, unknown, ThrowOnError, "fields">;
|
|
801
|
-
declare const
|
|
802
|
-
declare const
|
|
755
|
+
declare const quotesControllerCreateQuote: <ThrowOnError extends boolean = false>(options: Options<QuotesControllerCreateQuoteData, ThrowOnError>) => RequestResult<QuotesControllerCreateQuoteResponses, QuotesControllerCreateQuoteErrors, ThrowOnError, "fields">;
|
|
756
|
+
declare const quotesControllerGetQuote: <ThrowOnError extends boolean = false>(options: Options<QuotesControllerGetQuoteData, ThrowOnError>) => RequestResult<QuotesControllerGetQuoteResponses, QuotesControllerGetQuoteErrors, ThrowOnError, "fields">;
|
|
803
757
|
declare const apiTokenControllerCreateToken: <ThrowOnError extends boolean = false>(options: Options<ApiTokenControllerCreateTokenData, ThrowOnError>) => RequestResult<ApiTokenControllerCreateTokenResponses, ApiTokenControllerCreateTokenErrors, ThrowOnError, "fields">;
|
|
804
758
|
declare const apiTokenControllerDeleteToken: <ThrowOnError extends boolean = false>(options: Options<ApiTokenControllerDeleteTokenData, ThrowOnError>) => RequestResult<ApiTokenControllerDeleteTokenResponses, ApiTokenControllerDeleteTokenErrors, ThrowOnError, "fields">;
|
|
805
759
|
declare const apiTokenControllerGetToken: <ThrowOnError extends boolean = false>(options: Options<ApiTokenControllerGetTokenData, ThrowOnError>) => RequestResult<ApiTokenControllerGetTokenResponses, ApiTokenControllerGetTokenErrors, ThrowOnError, "fields">;
|
|
806
760
|
declare const apiTokenControllerUpdateToken: <ThrowOnError extends boolean = false>(options: Options<ApiTokenControllerUpdateTokenData, ThrowOnError>) => RequestResult<ApiTokenControllerUpdateTokenResponses, ApiTokenControllerUpdateTokenErrors, ThrowOnError, "fields">;
|
|
807
|
-
declare const quotesControllerCreateQuote: <ThrowOnError extends boolean = false>(options: Options<QuotesControllerCreateQuoteData, ThrowOnError>) => RequestResult<QuotesControllerCreateQuoteResponses, QuotesControllerCreateQuoteErrors, ThrowOnError, "fields">;
|
|
808
|
-
declare const quotesControllerGetQuote: <ThrowOnError extends boolean = false>(options: Options<QuotesControllerGetQuoteData, ThrowOnError>) => RequestResult<QuotesControllerGetQuoteResponses, QuotesControllerGetQuoteErrors, ThrowOnError, "fields">;
|
|
809
761
|
declare const missionsControllerCreateMissions: <ThrowOnError extends boolean = false>(options: Options<MissionsControllerCreateMissionsData, ThrowOnError>) => RequestResult<MissionsControllerCreateMissionsResponses, MissionsControllerCreateMissionsErrors, ThrowOnError, "fields">;
|
|
810
762
|
declare const missionsControllerUpdateMissions: <ThrowOnError extends boolean = false>(options: Options<MissionsControllerUpdateMissionsData, ThrowOnError>) => RequestResult<MissionsControllerUpdateMissionsResponses, unknown, ThrowOnError, "fields">;
|
|
811
763
|
declare const missionsControllerClaimRewards: <ThrowOnError extends boolean = false>(options: Options<MissionsControllerClaimRewardsData, ThrowOnError>) => RequestResult<MissionsControllerClaimRewardsResponses, MissionsControllerClaimRewardsErrors, ThrowOnError, "fields">;
|
|
@@ -894,57 +846,116 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
|
|
|
894
846
|
event_type: z.ZodLiteral<"protocol.mission.created">;
|
|
895
847
|
timestamp: z.ZodAny;
|
|
896
848
|
data: z.ZodObject<{
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
849
|
+
id: z.ZodEffects<z.ZodObject<{
|
|
850
|
+
__type: z.ZodLiteral<"bigint">;
|
|
851
|
+
value: z.ZodString;
|
|
852
|
+
}, "strip", z.ZodTypeAny, {
|
|
853
|
+
value: string;
|
|
854
|
+
__type: "bigint";
|
|
855
|
+
}, {
|
|
856
|
+
value: string;
|
|
857
|
+
__type: "bigint";
|
|
858
|
+
}>, bigint, {
|
|
859
|
+
value: string;
|
|
860
|
+
__type: "bigint";
|
|
861
|
+
}>;
|
|
862
|
+
vaultId: z.ZodEffects<z.ZodObject<{
|
|
863
|
+
__type: z.ZodLiteral<"bigint">;
|
|
864
|
+
value: z.ZodString;
|
|
865
|
+
}, "strip", z.ZodTypeAny, {
|
|
866
|
+
value: string;
|
|
867
|
+
__type: "bigint";
|
|
868
|
+
}, {
|
|
869
|
+
value: string;
|
|
870
|
+
__type: "bigint";
|
|
871
|
+
}>, bigint, {
|
|
872
|
+
value: string;
|
|
873
|
+
__type: "bigint";
|
|
874
|
+
}>;
|
|
875
|
+
amount: z.ZodEffects<z.ZodObject<{
|
|
876
|
+
__type: z.ZodLiteral<"bigint">;
|
|
877
|
+
value: z.ZodString;
|
|
878
|
+
}, "strip", z.ZodTypeAny, {
|
|
879
|
+
value: string;
|
|
880
|
+
__type: "bigint";
|
|
881
|
+
}, {
|
|
882
|
+
value: string;
|
|
883
|
+
__type: "bigint";
|
|
884
|
+
}>, bigint, {
|
|
885
|
+
value: string;
|
|
886
|
+
__type: "bigint";
|
|
887
|
+
}>;
|
|
900
888
|
zoneId: z.ZodString;
|
|
901
889
|
flightPlanId: z.ZodNumber;
|
|
902
890
|
captureStartTime: z.ZodString;
|
|
903
891
|
captureEndTime: z.ZodString;
|
|
904
892
|
detailsHash: z.ZodString;
|
|
893
|
+
requestor: z.ZodString;
|
|
905
894
|
}, "strict", z.ZodTypeAny, {
|
|
906
|
-
|
|
907
|
-
vaultId:
|
|
908
|
-
amount:
|
|
895
|
+
id: bigint;
|
|
896
|
+
vaultId: bigint;
|
|
897
|
+
amount: bigint;
|
|
909
898
|
zoneId: string;
|
|
910
899
|
flightPlanId: number;
|
|
911
900
|
captureStartTime: string;
|
|
912
901
|
captureEndTime: string;
|
|
913
902
|
detailsHash: string;
|
|
903
|
+
requestor: string;
|
|
914
904
|
}, {
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
905
|
+
id: {
|
|
906
|
+
value: string;
|
|
907
|
+
__type: "bigint";
|
|
908
|
+
};
|
|
909
|
+
vaultId: {
|
|
910
|
+
value: string;
|
|
911
|
+
__type: "bigint";
|
|
912
|
+
};
|
|
913
|
+
amount: {
|
|
914
|
+
value: string;
|
|
915
|
+
__type: "bigint";
|
|
916
|
+
};
|
|
918
917
|
zoneId: string;
|
|
919
918
|
flightPlanId: number;
|
|
920
919
|
captureStartTime: string;
|
|
921
920
|
captureEndTime: string;
|
|
922
921
|
detailsHash: string;
|
|
922
|
+
requestor: string;
|
|
923
923
|
}>;
|
|
924
924
|
}, "strict", z.ZodTypeAny, {
|
|
925
925
|
data: {
|
|
926
|
-
|
|
927
|
-
vaultId:
|
|
928
|
-
amount:
|
|
926
|
+
id: bigint;
|
|
927
|
+
vaultId: bigint;
|
|
928
|
+
amount: bigint;
|
|
929
929
|
zoneId: string;
|
|
930
930
|
flightPlanId: number;
|
|
931
931
|
captureStartTime: string;
|
|
932
932
|
captureEndTime: string;
|
|
933
933
|
detailsHash: string;
|
|
934
|
+
requestor: string;
|
|
934
935
|
};
|
|
935
936
|
event_type: "protocol.mission.created";
|
|
936
937
|
id?: any;
|
|
937
938
|
timestamp?: any;
|
|
938
939
|
}, {
|
|
939
940
|
data: {
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
941
|
+
id: {
|
|
942
|
+
value: string;
|
|
943
|
+
__type: "bigint";
|
|
944
|
+
};
|
|
945
|
+
vaultId: {
|
|
946
|
+
value: string;
|
|
947
|
+
__type: "bigint";
|
|
948
|
+
};
|
|
949
|
+
amount: {
|
|
950
|
+
value: string;
|
|
951
|
+
__type: "bigint";
|
|
952
|
+
};
|
|
943
953
|
zoneId: string;
|
|
944
954
|
flightPlanId: number;
|
|
945
955
|
captureStartTime: string;
|
|
946
956
|
captureEndTime: string;
|
|
947
957
|
detailsHash: string;
|
|
958
|
+
requestor: string;
|
|
948
959
|
};
|
|
949
960
|
event_type: "protocol.mission.created";
|
|
950
961
|
id?: any;
|
|
@@ -954,22 +965,52 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
|
|
|
954
965
|
event_type: z.ZodLiteral<"protocol.mission.updated">;
|
|
955
966
|
timestamp: z.ZodAny;
|
|
956
967
|
data: z.ZodObject<{
|
|
957
|
-
id: z.
|
|
958
|
-
|
|
968
|
+
id: z.ZodEffects<z.ZodObject<{
|
|
969
|
+
__type: z.ZodLiteral<"bigint">;
|
|
970
|
+
value: z.ZodString;
|
|
971
|
+
}, "strip", z.ZodTypeAny, {
|
|
972
|
+
value: string;
|
|
973
|
+
__type: "bigint";
|
|
974
|
+
}, {
|
|
975
|
+
value: string;
|
|
976
|
+
__type: "bigint";
|
|
977
|
+
}>, bigint, {
|
|
978
|
+
value: string;
|
|
979
|
+
__type: "bigint";
|
|
980
|
+
}>;
|
|
981
|
+
amount: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
982
|
+
__type: z.ZodLiteral<"bigint">;
|
|
983
|
+
value: z.ZodString;
|
|
984
|
+
}, "strip", z.ZodTypeAny, {
|
|
985
|
+
value: string;
|
|
986
|
+
__type: "bigint";
|
|
987
|
+
}, {
|
|
988
|
+
value: string;
|
|
989
|
+
__type: "bigint";
|
|
990
|
+
}>, bigint, {
|
|
991
|
+
value: string;
|
|
992
|
+
__type: "bigint";
|
|
993
|
+
}>>;
|
|
959
994
|
isOpen: z.ZodOptional<z.ZodBoolean>;
|
|
960
995
|
}, "strict", z.ZodTypeAny, {
|
|
961
|
-
id:
|
|
962
|
-
amount?:
|
|
996
|
+
id: bigint;
|
|
997
|
+
amount?: bigint | undefined;
|
|
963
998
|
isOpen?: boolean | undefined;
|
|
964
999
|
}, {
|
|
965
|
-
id:
|
|
966
|
-
|
|
1000
|
+
id: {
|
|
1001
|
+
value: string;
|
|
1002
|
+
__type: "bigint";
|
|
1003
|
+
};
|
|
1004
|
+
amount?: {
|
|
1005
|
+
value: string;
|
|
1006
|
+
__type: "bigint";
|
|
1007
|
+
} | undefined;
|
|
967
1008
|
isOpen?: boolean | undefined;
|
|
968
1009
|
}>;
|
|
969
1010
|
}, "strict", z.ZodTypeAny, {
|
|
970
1011
|
data: {
|
|
971
|
-
id:
|
|
972
|
-
amount?:
|
|
1012
|
+
id: bigint;
|
|
1013
|
+
amount?: bigint | undefined;
|
|
973
1014
|
isOpen?: boolean | undefined;
|
|
974
1015
|
};
|
|
975
1016
|
event_type: "protocol.mission.updated";
|
|
@@ -977,8 +1018,14 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
|
|
|
977
1018
|
timestamp?: any;
|
|
978
1019
|
}, {
|
|
979
1020
|
data: {
|
|
980
|
-
id:
|
|
981
|
-
|
|
1021
|
+
id: {
|
|
1022
|
+
value: string;
|
|
1023
|
+
__type: "bigint";
|
|
1024
|
+
};
|
|
1025
|
+
amount?: {
|
|
1026
|
+
value: string;
|
|
1027
|
+
__type: "bigint";
|
|
1028
|
+
} | undefined;
|
|
982
1029
|
isOpen?: boolean | undefined;
|
|
983
1030
|
};
|
|
984
1031
|
event_type: "protocol.mission.updated";
|
|
@@ -1066,22 +1113,23 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): {
|
|
|
1066
1113
|
timestamp?: any;
|
|
1067
1114
|
} | {
|
|
1068
1115
|
data: {
|
|
1069
|
-
|
|
1070
|
-
vaultId:
|
|
1071
|
-
amount:
|
|
1116
|
+
id: bigint;
|
|
1117
|
+
vaultId: bigint;
|
|
1118
|
+
amount: bigint;
|
|
1072
1119
|
zoneId: string;
|
|
1073
1120
|
flightPlanId: number;
|
|
1074
1121
|
captureStartTime: string;
|
|
1075
1122
|
captureEndTime: string;
|
|
1076
1123
|
detailsHash: string;
|
|
1124
|
+
requestor: string;
|
|
1077
1125
|
};
|
|
1078
1126
|
event_type: "protocol.mission.created";
|
|
1079
1127
|
id?: any;
|
|
1080
1128
|
timestamp?: any;
|
|
1081
1129
|
} | {
|
|
1082
1130
|
data: {
|
|
1083
|
-
id:
|
|
1084
|
-
amount?:
|
|
1131
|
+
id: bigint;
|
|
1132
|
+
amount?: bigint | undefined;
|
|
1085
1133
|
isOpen?: boolean | undefined;
|
|
1086
1134
|
};
|
|
1087
1135
|
event_type: "protocol.mission.updated";
|
|
@@ -1100,4 +1148,4 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): {
|
|
|
1100
1148
|
timestamp?: any;
|
|
1101
1149
|
};
|
|
1102
1150
|
|
|
1103
|
-
export { 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 AppControllerGetHelloData, type AppControllerGetHelloResponses, type Auth, type ClaimRewardsRequestDto, type ClaimRewardsResponseDto, 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,
|
|
1151
|
+
export { 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 AppControllerGetHelloData, type AppControllerGetHelloResponses, type Auth, type ClaimRewardsRequestDto, type ClaimRewardsResponseDto, 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 FlightsControllerGenerateFlightIdData, type FlightsControllerGenerateFlightIdErrors, type FlightsControllerGenerateFlightIdResponse, type FlightsControllerGenerateFlightIdResponses, 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 MissionUpdatedEvent, type MissionsControllerClaimRewardsData, type MissionsControllerClaimRewardsErrors, type MissionsControllerClaimRewardsResponse, type MissionsControllerClaimRewardsResponses, type MissionsControllerCreateMissionsData, type MissionsControllerCreateMissionsErrors, type MissionsControllerCreateMissionsResponse, type MissionsControllerCreateMissionsResponses, type MissionsControllerUpdateMissionsData, type MissionsControllerUpdateMissionsResponse, type MissionsControllerUpdateMissionsResponses, type Options, type OptionsLegacyParser, type QuerySerializerOptions, type QuotesControllerCreateQuoteData, type QuotesControllerCreateQuoteErrors, type QuotesControllerCreateQuoteResponses, type QuotesControllerGetQuoteData, type QuotesControllerGetQuoteErrors, type QuotesControllerGetQuoteResponses, type RegenerateWebhookSecretResponseDto, type RequestOptions, type RequestResult, type ResponseStyle, type SchemaControllerGetEventSchemaData, type SchemaControllerGetEventSchemaResponses, type TDataShape, type TestEvent, type TestWebhookResponse, type UpdateApiTokenRequestDto, type UpdateApiTokenResponseDto, type UpdateMissionsRequestDto, type UpdateMissionsResponseDto, type UpdateWebhookBody, type UpdateWebhookResponse, type ValidateFlightDto, 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, apiTokenControllerCreateToken, apiTokenControllerDeleteToken, apiTokenControllerGetToken, apiTokenControllerUpdateToken, appControllerGetHello, buildClientParams, conditionsControllerGetSunAltitudeTimeLimits, createClient, createConfig, flightsControllerCreatePresignedUrls, flightsControllerGenerateFlightId, flightsControllerGetFlight, flightsControllerValidateFlight, formDataBodySerializer, jsonBodySerializer, keysControllerGetProvenanceCryptoKey, mergeHeaders, missionsControllerClaimRewards, missionsControllerCreateMissions, missionsControllerUpdateMissions, parseWebhookEvent, quotesControllerCreateQuote, quotesControllerGetQuote, schemaControllerGetEventSchema, urlSearchParamsBodySerializer, webhooksControllerCreate, webhooksControllerDelete, webhooksControllerGet, webhooksControllerGetMany, webhooksControllerGetStatus, webhooksControllerRegenerateSecret, webhooksControllerTest, webhooksControllerUpdate };
|