@layer-drone/protocol 0.1.1 → 0.1.3

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.ts CHANGED
@@ -1,3 +1,4 @@
1
+ import * as zod from 'zod';
1
2
  import { z } from 'zod';
2
3
  import { Request as Request$1 } from 'express';
3
4
 
@@ -7,16 +8,16 @@ type CreateApiTokenResponseDto = {
7
8
  deleted_at: Date;
8
9
  last_used: Date;
9
10
  org: number;
10
- scopes: Array<"manageTokens" | "manageFlights" | "manageWebhooks" | "all">;
11
+ scopes: Array<"manageTokens" | "manageFlights" | "manageMissions" | "manageWebhooks" | "all">;
11
12
  };
12
13
  type CreateApiTokenRequestDto = {
13
14
  name: string;
14
- scopes: Array<"manageTokens" | "manageFlights" | "manageWebhooks" | "all">;
15
+ scopes: Array<"manageTokens" | "manageFlights" | "manageMissions" | "manageWebhooks" | "all">;
15
16
  orgId: number;
16
17
  };
17
18
  type UpdateApiTokenRequestDto = {
18
19
  name?: string;
19
- scopes?: Array<"manageTokens" | "manageFlights" | "manageWebhooks" | "all">;
20
+ scopes?: Array<"manageTokens" | "manageFlights" | "manageMissions" | "manageWebhooks" | "all">;
20
21
  };
21
22
  type UpdateApiTokenResponseDto = {
22
23
  id: string;
@@ -24,7 +25,7 @@ type UpdateApiTokenResponseDto = {
24
25
  deleted_at: Date;
25
26
  last_used: Date;
26
27
  org: number;
27
- scopes: Array<"manageTokens" | "manageFlights" | "manageWebhooks" | "all">;
28
+ scopes: Array<"manageTokens" | "manageFlights" | "manageMissions" | "manageWebhooks" | "all">;
28
29
  };
29
30
  type GetTimeLimitsForSunAltitudeResponse = {
30
31
  OptimalSunAltitudePeriod: {
@@ -86,12 +87,12 @@ type GetProvenanceCryptoKeyResponse = {
86
87
  type CreateMissionRequestDto = {
87
88
  missions: Array<{
88
89
  zoneId: string;
90
+ campaigns: Array<string>;
89
91
  flightPlanId: number;
90
92
  amount: string | number | bigint;
91
93
  startTime: Date;
92
94
  endTime: Date;
93
95
  }>;
94
- campaignId: number;
95
96
  requestor: string;
96
97
  mintOnChain?: boolean;
97
98
  };
@@ -104,19 +105,18 @@ type CreateMissionResponseDto = {
104
105
  amount: string;
105
106
  zoneId: string;
106
107
  flightPlanId: number;
108
+ campaigns: Array<string>;
107
109
  captureStartTime: Date;
108
110
  captureEndTime: Date;
109
111
  requestor: string;
110
112
  }>;
111
- } | string;
113
+ };
112
114
  };
113
115
  type UpdateMissionsRequestDto = {
114
116
  missions: Array<{
115
117
  id: string | number | bigint;
116
- amount: string | number | bigint;
117
- } | {
118
- id: string | number | bigint;
119
- isOpen: false;
118
+ amount?: string | number | bigint;
119
+ isOpen?: boolean;
120
120
  }>;
121
121
  treasuryAddress: string;
122
122
  };
@@ -126,7 +126,23 @@ type UpdateMissionsResponseDto = {
126
126
  escrowRequestsQueued: Array<string>;
127
127
  withdrawalRequestsQueued: Array<string>;
128
128
  cancelRequestsQueued: Array<string>;
129
- } | string;
129
+ };
130
+ };
131
+ type RepriceMissionsRequestDto = {
132
+ scaleFactor: number;
133
+ requestor: string;
134
+ jobId?: string;
135
+ };
136
+ type RepriceMissionsResponseDto = {
137
+ success: boolean;
138
+ data: {
139
+ jobId: string;
140
+ status: "in_progress" | "queued" | "completed" | "failed";
141
+ missionsProcessed: number;
142
+ escrowRequestsQueued: Array<string>;
143
+ withdrawalRequestsQueued: Array<string>;
144
+ errorMessage?: string;
145
+ };
130
146
  };
131
147
  type CreateQuoteRequestDto = {
132
148
  missionIds: Array<number>;
@@ -205,6 +221,15 @@ type ApiControllerGetHelloData = {
205
221
  type ApiControllerGetHelloResponses = {
206
222
  200: unknown;
207
223
  };
224
+ type ApiControllerGetErrorData = {
225
+ body?: never;
226
+ path?: never;
227
+ query?: never;
228
+ url: "/debug-sentry";
229
+ };
230
+ type ApiControllerGetErrorResponses = {
231
+ 200: unknown;
232
+ };
208
233
  type ApiTokenControllerCreateTokenData = {
209
234
  body: CreateApiTokenRequestDto;
210
235
  path?: never;
@@ -360,6 +385,7 @@ type MissionsControllerCreateMissionsData = {
360
385
  };
361
386
  type MissionsControllerCreateMissionsErrors = {
362
387
  400: unknown;
388
+ 401: unknown;
363
389
  403: unknown;
364
390
  500: unknown;
365
391
  };
@@ -373,10 +399,28 @@ type MissionsControllerUpdateMissionsData = {
373
399
  query?: never;
374
400
  url: "/missions";
375
401
  };
402
+ type MissionsControllerUpdateMissionsErrors = {
403
+ 401: unknown;
404
+ 403: unknown;
405
+ };
376
406
  type MissionsControllerUpdateMissionsResponses = {
377
407
  200: UpdateMissionsResponseDto;
378
408
  };
379
409
  type MissionsControllerUpdateMissionsResponse = MissionsControllerUpdateMissionsResponses[keyof MissionsControllerUpdateMissionsResponses];
410
+ type MissionsControllerRepriceMissionsData = {
411
+ body: RepriceMissionsRequestDto;
412
+ path?: never;
413
+ query?: never;
414
+ url: "/missions/amounts";
415
+ };
416
+ type MissionsControllerRepriceMissionsErrors = {
417
+ 401: unknown;
418
+ 403: unknown;
419
+ };
420
+ type MissionsControllerRepriceMissionsResponses = {
421
+ 200: RepriceMissionsResponseDto;
422
+ };
423
+ type MissionsControllerRepriceMissionsResponse = MissionsControllerRepriceMissionsResponses[keyof MissionsControllerRepriceMissionsResponses];
380
424
  type QuotesControllerCreateQuoteData = {
381
425
  body: CreateQuoteRequestDto;
382
426
  path?: never;
@@ -727,6 +771,7 @@ type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean
727
771
  meta?: Record<string, unknown>;
728
772
  };
729
773
  declare const apiControllerGetHello: <ThrowOnError extends boolean = false>(options?: Options<ApiControllerGetHelloData, ThrowOnError>) => RequestResult<ApiControllerGetHelloResponses, unknown, ThrowOnError, "fields">;
774
+ declare const apiControllerGetError: <ThrowOnError extends boolean = false>(options?: Options<ApiControllerGetErrorData, ThrowOnError>) => RequestResult<ApiControllerGetErrorResponses, unknown, ThrowOnError, "fields">;
730
775
  declare const apiTokenControllerCreateToken: <ThrowOnError extends boolean = false>(options: Options<ApiTokenControllerCreateTokenData, ThrowOnError>) => RequestResult<ApiTokenControllerCreateTokenResponses, ApiTokenControllerCreateTokenErrors, ThrowOnError, "fields">;
731
776
  declare const apiTokenControllerDeleteToken: <ThrowOnError extends boolean = false>(options: Options<ApiTokenControllerDeleteTokenData, ThrowOnError>) => RequestResult<ApiTokenControllerDeleteTokenResponses, ApiTokenControllerDeleteTokenErrors, ThrowOnError, "fields">;
732
777
  declare const apiTokenControllerGetToken: <ThrowOnError extends boolean = false>(options: Options<ApiTokenControllerGetTokenData, ThrowOnError>) => RequestResult<ApiTokenControllerGetTokenResponses, ApiTokenControllerGetTokenErrors, ThrowOnError, "fields">;
@@ -738,7 +783,8 @@ declare const flightsControllerCreatePresignedUrls: <ThrowOnError extends boolea
738
783
  declare const flightsControllerValidateFlight: <ThrowOnError extends boolean = false>(options: Options<FlightsControllerValidateFlightData, ThrowOnError>) => RequestResult<FlightsControllerValidateFlightResponses, FlightsControllerValidateFlightErrors, ThrowOnError, "fields">;
739
784
  declare const keysControllerGetProvenanceCryptoKey: <ThrowOnError extends boolean = false>(options?: Options<KeysControllerGetProvenanceCryptoKeyData, ThrowOnError>) => RequestResult<KeysControllerGetProvenanceCryptoKeyResponses, unknown, ThrowOnError, "fields">;
740
785
  declare const missionsControllerCreateMissions: <ThrowOnError extends boolean = false>(options: Options<MissionsControllerCreateMissionsData, ThrowOnError>) => RequestResult<MissionsControllerCreateMissionsResponses, MissionsControllerCreateMissionsErrors, ThrowOnError, "fields">;
741
- declare const missionsControllerUpdateMissions: <ThrowOnError extends boolean = false>(options: Options<MissionsControllerUpdateMissionsData, ThrowOnError>) => RequestResult<MissionsControllerUpdateMissionsResponses, unknown, ThrowOnError, "fields">;
786
+ declare const missionsControllerUpdateMissions: <ThrowOnError extends boolean = false>(options: Options<MissionsControllerUpdateMissionsData, ThrowOnError>) => RequestResult<MissionsControllerUpdateMissionsResponses, MissionsControllerUpdateMissionsErrors, ThrowOnError, "fields">;
787
+ declare const missionsControllerRepriceMissions: <ThrowOnError extends boolean = false>(options: Options<MissionsControllerRepriceMissionsData, ThrowOnError>) => RequestResult<MissionsControllerRepriceMissionsResponses, MissionsControllerRepriceMissionsErrors, ThrowOnError, "fields">;
742
788
  declare const quotesControllerCreateQuote: <ThrowOnError extends boolean = false>(options: Options<QuotesControllerCreateQuoteData, ThrowOnError>) => RequestResult<QuotesControllerCreateQuoteResponses, QuotesControllerCreateQuoteErrors, ThrowOnError, "fields">;
743
789
  declare const quotesControllerGetQuote: <ThrowOnError extends boolean = false>(options: Options<QuotesControllerGetQuoteData, ThrowOnError>) => RequestResult<QuotesControllerGetQuoteResponses, QuotesControllerGetQuoteErrors, ThrowOnError, "fields">;
744
790
  declare const schemaControllerGetEventSchema: <ThrowOnError extends boolean = false>(options?: Options<SchemaControllerGetEventSchemaData, ThrowOnError>) => RequestResult<SchemaControllerGetEventSchemaResponses, unknown, ThrowOnError, "fields">;
@@ -757,26 +803,34 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
757
803
  timestamp: z.ZodString;
758
804
  data: z.ZodObject<{
759
805
  message: z.ZodString;
760
- }, "strict", z.ZodTypeAny, {
761
- message: string;
762
- }, {
763
- message: string;
764
- }>;
765
- }, "strict", z.ZodTypeAny, {
766
- data: {
767
- message: string;
768
- };
769
- id: string;
770
- event_type: "test";
771
- timestamp: string;
772
- }, {
773
- data: {
774
- message: string;
775
- };
776
- id: string;
777
- event_type: "test";
778
- timestamp: string;
779
- }>, z.ZodObject<{
806
+ }, "strip", z.ZodAny, z.objectOutputType<{
807
+ message: z.ZodString;
808
+ }, z.ZodAny, "strip">, z.objectInputType<{
809
+ message: z.ZodString;
810
+ }, z.ZodAny, "strip">>;
811
+ }, "strip", z.ZodAny, z.objectOutputType<{
812
+ id: z.ZodString;
813
+ event_type: z.ZodLiteral<"test">;
814
+ timestamp: z.ZodString;
815
+ data: z.ZodObject<{
816
+ message: z.ZodString;
817
+ }, "strip", z.ZodAny, z.objectOutputType<{
818
+ message: z.ZodString;
819
+ }, z.ZodAny, "strip">, z.objectInputType<{
820
+ message: z.ZodString;
821
+ }, z.ZodAny, "strip">>;
822
+ }, z.ZodAny, "strip">, z.objectInputType<{
823
+ id: z.ZodString;
824
+ event_type: z.ZodLiteral<"test">;
825
+ timestamp: z.ZodString;
826
+ data: z.ZodObject<{
827
+ message: z.ZodString;
828
+ }, "strip", z.ZodAny, z.objectOutputType<{
829
+ message: z.ZodString;
830
+ }, z.ZodAny, "strip">, z.objectInputType<{
831
+ message: z.ZodString;
832
+ }, z.ZodAny, "strip">>;
833
+ }, z.ZodAny, "strip">>, z.ZodObject<{
780
834
  id: z.ZodString;
781
835
  event_type: z.ZodLiteral<"protocol.mission.created">;
782
836
  timestamp: z.ZodString;
@@ -822,80 +876,38 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
822
876
  }>;
823
877
  zoneId: z.ZodString;
824
878
  flightPlanId: z.ZodNumber;
879
+ campaigns: z.ZodArray<z.ZodString, "many">;
825
880
  captureStartTime: z.ZodString;
826
881
  captureEndTime: z.ZodString;
827
882
  requestor: z.ZodString;
828
- }, "strict", z.ZodTypeAny, {
829
- id: bigint;
830
- vaultId: bigint;
831
- amount: bigint;
832
- zoneId: string;
833
- flightPlanId: number;
834
- captureStartTime: string;
835
- captureEndTime: string;
836
- requestor: string;
837
- }, {
838
- id: {
883
+ }, "strip", z.ZodAny, z.objectOutputType<{
884
+ id: z.ZodEffects<z.ZodObject<{
885
+ __type: z.ZodLiteral<"bigint">;
886
+ value: z.ZodString;
887
+ }, "strip", z.ZodTypeAny, {
839
888
  value: string;
840
889
  __type: "bigint";
841
- };
842
- vaultId: {
890
+ }, {
843
891
  value: string;
844
892
  __type: "bigint";
845
- };
846
- amount: {
893
+ }>, bigint, {
847
894
  value: string;
848
895
  __type: "bigint";
849
- };
850
- zoneId: string;
851
- flightPlanId: number;
852
- captureStartTime: string;
853
- captureEndTime: string;
854
- requestor: string;
855
- }>;
856
- }, "strict", z.ZodTypeAny, {
857
- data: {
858
- id: bigint;
859
- vaultId: bigint;
860
- amount: bigint;
861
- zoneId: string;
862
- flightPlanId: number;
863
- captureStartTime: string;
864
- captureEndTime: string;
865
- requestor: string;
866
- };
867
- id: string;
868
- event_type: "protocol.mission.created";
869
- timestamp: string;
870
- }, {
871
- data: {
872
- id: {
896
+ }>;
897
+ vaultId: z.ZodEffects<z.ZodObject<{
898
+ __type: z.ZodLiteral<"bigint">;
899
+ value: z.ZodString;
900
+ }, "strip", z.ZodTypeAny, {
873
901
  value: string;
874
902
  __type: "bigint";
875
- };
876
- vaultId: {
903
+ }, {
877
904
  value: string;
878
905
  __type: "bigint";
879
- };
880
- amount: {
906
+ }>, bigint, {
881
907
  value: string;
882
908
  __type: "bigint";
883
- };
884
- zoneId: string;
885
- flightPlanId: number;
886
- captureStartTime: string;
887
- captureEndTime: string;
888
- requestor: string;
889
- };
890
- id: string;
891
- event_type: "protocol.mission.created";
892
- timestamp: string;
893
- }>, z.ZodObject<{
894
- id: z.ZodString;
895
- event_type: z.ZodLiteral<"protocol.mission.updated">;
896
- timestamp: z.ZodString;
897
- data: z.ZodObject<{
898
- id: z.ZodEffects<z.ZodObject<{
909
+ }>;
910
+ amount: z.ZodEffects<z.ZodObject<{
899
911
  __type: z.ZodLiteral<"bigint">;
900
912
  value: z.ZodString;
901
913
  }, "strip", z.ZodTypeAny, {
@@ -908,7 +920,14 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
908
920
  value: string;
909
921
  __type: "bigint";
910
922
  }>;
911
- amount: z.ZodOptional<z.ZodEffects<z.ZodObject<{
923
+ zoneId: z.ZodString;
924
+ flightPlanId: z.ZodNumber;
925
+ campaigns: z.ZodArray<z.ZodString, "many">;
926
+ captureStartTime: z.ZodString;
927
+ captureEndTime: z.ZodString;
928
+ requestor: z.ZodString;
929
+ }, z.ZodAny, "strip">, z.objectInputType<{
930
+ id: z.ZodEffects<z.ZodObject<{
912
931
  __type: z.ZodLiteral<"bigint">;
913
932
  value: z.ZodString;
914
933
  }, "strip", z.ZodTypeAny, {
@@ -920,54 +939,46 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
920
939
  }>, bigint, {
921
940
  value: string;
922
941
  __type: "bigint";
923
- }>>;
924
- isOpen: z.ZodOptional<z.ZodBoolean>;
925
- }, "strict", z.ZodTypeAny, {
926
- id: bigint;
927
- amount?: bigint | undefined;
928
- isOpen?: boolean | undefined;
929
- }, {
930
- id: {
942
+ }>;
943
+ vaultId: z.ZodEffects<z.ZodObject<{
944
+ __type: z.ZodLiteral<"bigint">;
945
+ value: z.ZodString;
946
+ }, "strip", z.ZodTypeAny, {
931
947
  value: string;
932
948
  __type: "bigint";
933
- };
934
- amount?: {
949
+ }, {
935
950
  value: string;
936
951
  __type: "bigint";
937
- } | undefined;
938
- isOpen?: boolean | undefined;
939
- }>;
940
- }, "strict", z.ZodTypeAny, {
941
- data: {
942
- id: bigint;
943
- amount?: bigint | undefined;
944
- isOpen?: boolean | undefined;
945
- };
946
- id: string;
947
- event_type: "protocol.mission.updated";
948
- timestamp: string;
949
- }, {
950
- data: {
951
- id: {
952
+ }>, bigint, {
952
953
  value: string;
953
954
  __type: "bigint";
954
- };
955
- amount?: {
955
+ }>;
956
+ amount: z.ZodEffects<z.ZodObject<{
957
+ __type: z.ZodLiteral<"bigint">;
958
+ value: z.ZodString;
959
+ }, "strip", z.ZodTypeAny, {
956
960
  value: string;
957
961
  __type: "bigint";
958
- } | undefined;
959
- isOpen?: boolean | undefined;
960
- };
961
- id: string;
962
- event_type: "protocol.mission.updated";
963
- timestamp: string;
964
- }>, z.ZodObject<{
962
+ }, {
963
+ value: string;
964
+ __type: "bigint";
965
+ }>, bigint, {
966
+ value: string;
967
+ __type: "bigint";
968
+ }>;
969
+ zoneId: z.ZodString;
970
+ flightPlanId: z.ZodNumber;
971
+ campaigns: z.ZodArray<z.ZodString, "many">;
972
+ captureStartTime: z.ZodString;
973
+ captureEndTime: z.ZodString;
974
+ requestor: z.ZodString;
975
+ }, z.ZodAny, "strip">>;
976
+ }, "strip", z.ZodAny, z.objectOutputType<{
965
977
  id: z.ZodString;
966
- event_type: z.ZodLiteral<"protocol.mission.paid">;
978
+ event_type: z.ZodLiteral<"protocol.mission.created">;
967
979
  timestamp: z.ZodString;
968
980
  data: z.ZodObject<{
969
- recipient: z.ZodString;
970
- flightId: z.ZodEffects<z.ZodObject<{
981
+ id: z.ZodEffects<z.ZodObject<{
971
982
  __type: z.ZodLiteral<"bigint">;
972
983
  value: z.ZodString;
973
984
  }, "strip", z.ZodTypeAny, {
@@ -980,7 +991,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
980
991
  value: string;
981
992
  __type: "bigint";
982
993
  }>;
983
- missionId: z.ZodEffects<z.ZodObject<{
994
+ vaultId: z.ZodEffects<z.ZodObject<{
984
995
  __type: z.ZodLiteral<"bigint">;
985
996
  value: z.ZodString;
986
997
  }, "strip", z.ZodTypeAny, {
@@ -993,7 +1004,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
993
1004
  value: string;
994
1005
  __type: "bigint";
995
1006
  }>;
996
- vaultId: z.ZodEffects<z.ZodObject<{
1007
+ amount: z.ZodEffects<z.ZodObject<{
997
1008
  __type: z.ZodLiteral<"bigint">;
998
1009
  value: z.ZodString;
999
1010
  }, "strip", z.ZodTypeAny, {
@@ -1006,7 +1017,14 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
1006
1017
  value: string;
1007
1018
  __type: "bigint";
1008
1019
  }>;
1009
- amount: z.ZodEffects<z.ZodObject<{
1020
+ zoneId: z.ZodString;
1021
+ flightPlanId: z.ZodNumber;
1022
+ campaigns: z.ZodArray<z.ZodString, "many">;
1023
+ captureStartTime: z.ZodString;
1024
+ captureEndTime: z.ZodString;
1025
+ requestor: z.ZodString;
1026
+ }, "strip", z.ZodAny, z.objectOutputType<{
1027
+ id: z.ZodEffects<z.ZodObject<{
1010
1028
  __type: z.ZodLiteral<"bigint">;
1011
1029
  value: z.ZodString;
1012
1030
  }, "strip", z.ZodTypeAny, {
@@ -1019,79 +1037,53 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
1019
1037
  value: string;
1020
1038
  __type: "bigint";
1021
1039
  }>;
1022
- storageKey: z.ZodString;
1023
- }, "strict", z.ZodTypeAny, {
1024
- missionId: bigint;
1025
- flightId: bigint;
1026
- vaultId: bigint;
1027
- amount: bigint;
1028
- recipient: string;
1029
- storageKey: string;
1030
- }, {
1031
- missionId: {
1040
+ vaultId: z.ZodEffects<z.ZodObject<{
1041
+ __type: z.ZodLiteral<"bigint">;
1042
+ value: z.ZodString;
1043
+ }, "strip", z.ZodTypeAny, {
1032
1044
  value: string;
1033
1045
  __type: "bigint";
1034
- };
1035
- flightId: {
1046
+ }, {
1036
1047
  value: string;
1037
1048
  __type: "bigint";
1038
- };
1039
- vaultId: {
1049
+ }>, bigint, {
1040
1050
  value: string;
1041
1051
  __type: "bigint";
1042
- };
1043
- amount: {
1052
+ }>;
1053
+ amount: z.ZodEffects<z.ZodObject<{
1054
+ __type: z.ZodLiteral<"bigint">;
1055
+ value: z.ZodString;
1056
+ }, "strip", z.ZodTypeAny, {
1044
1057
  value: string;
1045
1058
  __type: "bigint";
1046
- };
1047
- recipient: string;
1048
- storageKey: string;
1049
- }>;
1050
- }, "strict", z.ZodTypeAny, {
1051
- data: {
1052
- missionId: bigint;
1053
- flightId: bigint;
1054
- vaultId: bigint;
1055
- amount: bigint;
1056
- recipient: string;
1057
- storageKey: string;
1058
- };
1059
- id: string;
1060
- event_type: "protocol.mission.paid";
1061
- timestamp: string;
1062
- }, {
1063
- data: {
1064
- missionId: {
1059
+ }, {
1065
1060
  value: string;
1066
1061
  __type: "bigint";
1067
- };
1068
- flightId: {
1062
+ }>, bigint, {
1069
1063
  value: string;
1070
1064
  __type: "bigint";
1071
- };
1072
- vaultId: {
1065
+ }>;
1066
+ zoneId: z.ZodString;
1067
+ flightPlanId: z.ZodNumber;
1068
+ campaigns: z.ZodArray<z.ZodString, "many">;
1069
+ captureStartTime: z.ZodString;
1070
+ captureEndTime: z.ZodString;
1071
+ requestor: z.ZodString;
1072
+ }, z.ZodAny, "strip">, z.objectInputType<{
1073
+ id: z.ZodEffects<z.ZodObject<{
1074
+ __type: z.ZodLiteral<"bigint">;
1075
+ value: z.ZodString;
1076
+ }, "strip", z.ZodTypeAny, {
1073
1077
  value: string;
1074
1078
  __type: "bigint";
1075
- };
1076
- amount: {
1079
+ }, {
1077
1080
  value: string;
1078
1081
  __type: "bigint";
1079
- };
1080
- recipient: string;
1081
- storageKey: string;
1082
- };
1083
- id: string;
1084
- event_type: "protocol.mission.paid";
1085
- timestamp: string;
1086
- }>, z.ZodObject<{
1087
- id: z.ZodString;
1088
- event_type: z.ZodLiteral<"protocol.flight.submitted">;
1089
- timestamp: z.ZodString;
1090
- data: z.ZodObject<{
1091
- storageKey: z.ZodString;
1092
- pilotAddress: z.ZodString;
1093
- flightManifestUri: z.ZodString;
1094
- missionId: z.ZodEffects<z.ZodObject<{
1082
+ }>, bigint, {
1083
+ value: string;
1084
+ __type: "bigint";
1085
+ }>;
1086
+ vaultId: z.ZodEffects<z.ZodObject<{
1095
1087
  __type: z.ZodLiteral<"bigint">;
1096
1088
  value: z.ZodString;
1097
1089
  }, "strip", z.ZodTypeAny, {
@@ -1104,49 +1096,32 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
1104
1096
  value: string;
1105
1097
  __type: "bigint";
1106
1098
  }>;
1107
- }, "strict", z.ZodTypeAny, {
1108
- missionId: bigint;
1109
- pilotAddress: string;
1110
- storageKey: string;
1111
- flightManifestUri: string;
1112
- }, {
1113
- missionId: {
1099
+ amount: z.ZodEffects<z.ZodObject<{
1100
+ __type: z.ZodLiteral<"bigint">;
1101
+ value: z.ZodString;
1102
+ }, "strip", z.ZodTypeAny, {
1114
1103
  value: string;
1115
1104
  __type: "bigint";
1116
- };
1117
- pilotAddress: string;
1118
- storageKey: string;
1119
- flightManifestUri: string;
1120
- }>;
1121
- }, "strict", z.ZodTypeAny, {
1122
- data: {
1123
- missionId: bigint;
1124
- pilotAddress: string;
1125
- storageKey: string;
1126
- flightManifestUri: string;
1127
- };
1128
- id: string;
1129
- event_type: "protocol.flight.submitted";
1130
- timestamp: string;
1131
- }, {
1132
- data: {
1133
- missionId: {
1105
+ }, {
1134
1106
  value: string;
1135
1107
  __type: "bigint";
1136
- };
1137
- pilotAddress: string;
1138
- storageKey: string;
1139
- flightManifestUri: string;
1140
- };
1141
- id: string;
1142
- event_type: "protocol.flight.submitted";
1143
- timestamp: string;
1144
- }>, z.ZodObject<{
1108
+ }>, bigint, {
1109
+ value: string;
1110
+ __type: "bigint";
1111
+ }>;
1112
+ zoneId: z.ZodString;
1113
+ flightPlanId: z.ZodNumber;
1114
+ campaigns: z.ZodArray<z.ZodString, "many">;
1115
+ captureStartTime: z.ZodString;
1116
+ captureEndTime: z.ZodString;
1117
+ requestor: z.ZodString;
1118
+ }, z.ZodAny, "strip">>;
1119
+ }, z.ZodAny, "strip">, z.objectInputType<{
1145
1120
  id: z.ZodString;
1146
- event_type: z.ZodLiteral<"protocol.flight.reviewed">;
1121
+ event_type: z.ZodLiteral<"protocol.mission.created">;
1147
1122
  timestamp: z.ZodString;
1148
1123
  data: z.ZodObject<{
1149
- flightId: z.ZodEffects<z.ZodObject<{
1124
+ id: z.ZodEffects<z.ZodObject<{
1150
1125
  __type: z.ZodLiteral<"bigint">;
1151
1126
  value: z.ZodString;
1152
1127
  }, "strip", z.ZodTypeAny, {
@@ -1159,13 +1134,7 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
1159
1134
  value: string;
1160
1135
  __type: "bigint";
1161
1136
  }>;
1162
- owner: z.ZodString;
1163
- isApproved: z.ZodBoolean;
1164
- validationLogUri: z.ZodString;
1165
- validator: z.ZodString;
1166
- filesHash: z.ZodString;
1167
- storageKey: z.ZodString;
1168
- missionId: z.ZodEffects<z.ZodObject<{
1137
+ vaultId: z.ZodEffects<z.ZodObject<{
1169
1138
  __type: z.ZodLiteral<"bigint">;
1170
1139
  value: z.ZodString;
1171
1140
  }, "strip", z.ZodTypeAny, {
@@ -1178,69 +1147,1388 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
1178
1147
  value: string;
1179
1148
  __type: "bigint";
1180
1149
  }>;
1181
- }, "strict", z.ZodTypeAny, {
1182
- missionId: bigint;
1183
- flightId: bigint;
1184
- storageKey: string;
1185
- owner: string;
1186
- isApproved: boolean;
1187
- validationLogUri: string;
1188
- validator: string;
1189
- filesHash: string;
1190
- }, {
1191
- missionId: {
1192
- value: string;
1193
- __type: "bigint";
1194
- };
1195
- flightId: {
1196
- value: string;
1197
- __type: "bigint";
1198
- };
1199
- storageKey: string;
1200
- owner: string;
1201
- isApproved: boolean;
1202
- validationLogUri: string;
1203
- validator: string;
1204
- filesHash: string;
1205
- }>;
1206
- }, "strict", z.ZodTypeAny, {
1207
- data: {
1208
- missionId: bigint;
1209
- flightId: bigint;
1210
- storageKey: string;
1211
- owner: string;
1212
- isApproved: boolean;
1213
- validationLogUri: string;
1214
- validator: string;
1215
- filesHash: string;
1216
- };
1217
- id: string;
1218
- event_type: "protocol.flight.reviewed";
1219
- timestamp: string;
1220
- }, {
1221
- data: {
1222
- missionId: {
1150
+ amount: z.ZodEffects<z.ZodObject<{
1151
+ __type: z.ZodLiteral<"bigint">;
1152
+ value: z.ZodString;
1153
+ }, "strip", z.ZodTypeAny, {
1223
1154
  value: string;
1224
1155
  __type: "bigint";
1225
- };
1226
- flightId: {
1156
+ }, {
1227
1157
  value: string;
1228
1158
  __type: "bigint";
1229
- };
1230
- storageKey: string;
1231
- owner: string;
1232
- isApproved: boolean;
1233
- validationLogUri: string;
1234
- validator: string;
1235
- filesHash: string;
1236
- };
1237
- id: string;
1238
- event_type: "protocol.flight.reviewed";
1239
- timestamp: string;
1240
- }>]>;
1241
- type Event = z.infer<typeof Event>;
1242
- type TestEvent = Extract<Event, {
1243
- event_type: "test";
1159
+ }>, bigint, {
1160
+ value: string;
1161
+ __type: "bigint";
1162
+ }>;
1163
+ zoneId: z.ZodString;
1164
+ flightPlanId: z.ZodNumber;
1165
+ campaigns: z.ZodArray<z.ZodString, "many">;
1166
+ captureStartTime: z.ZodString;
1167
+ captureEndTime: z.ZodString;
1168
+ requestor: z.ZodString;
1169
+ }, "strip", z.ZodAny, z.objectOutputType<{
1170
+ id: z.ZodEffects<z.ZodObject<{
1171
+ __type: z.ZodLiteral<"bigint">;
1172
+ value: z.ZodString;
1173
+ }, "strip", z.ZodTypeAny, {
1174
+ value: string;
1175
+ __type: "bigint";
1176
+ }, {
1177
+ value: string;
1178
+ __type: "bigint";
1179
+ }>, bigint, {
1180
+ value: string;
1181
+ __type: "bigint";
1182
+ }>;
1183
+ vaultId: z.ZodEffects<z.ZodObject<{
1184
+ __type: z.ZodLiteral<"bigint">;
1185
+ value: z.ZodString;
1186
+ }, "strip", z.ZodTypeAny, {
1187
+ value: string;
1188
+ __type: "bigint";
1189
+ }, {
1190
+ value: string;
1191
+ __type: "bigint";
1192
+ }>, bigint, {
1193
+ value: string;
1194
+ __type: "bigint";
1195
+ }>;
1196
+ amount: z.ZodEffects<z.ZodObject<{
1197
+ __type: z.ZodLiteral<"bigint">;
1198
+ value: z.ZodString;
1199
+ }, "strip", z.ZodTypeAny, {
1200
+ value: string;
1201
+ __type: "bigint";
1202
+ }, {
1203
+ value: string;
1204
+ __type: "bigint";
1205
+ }>, bigint, {
1206
+ value: string;
1207
+ __type: "bigint";
1208
+ }>;
1209
+ zoneId: z.ZodString;
1210
+ flightPlanId: z.ZodNumber;
1211
+ campaigns: z.ZodArray<z.ZodString, "many">;
1212
+ captureStartTime: z.ZodString;
1213
+ captureEndTime: z.ZodString;
1214
+ requestor: z.ZodString;
1215
+ }, z.ZodAny, "strip">, z.objectInputType<{
1216
+ id: z.ZodEffects<z.ZodObject<{
1217
+ __type: z.ZodLiteral<"bigint">;
1218
+ value: z.ZodString;
1219
+ }, "strip", z.ZodTypeAny, {
1220
+ value: string;
1221
+ __type: "bigint";
1222
+ }, {
1223
+ value: string;
1224
+ __type: "bigint";
1225
+ }>, bigint, {
1226
+ value: string;
1227
+ __type: "bigint";
1228
+ }>;
1229
+ vaultId: z.ZodEffects<z.ZodObject<{
1230
+ __type: z.ZodLiteral<"bigint">;
1231
+ value: z.ZodString;
1232
+ }, "strip", z.ZodTypeAny, {
1233
+ value: string;
1234
+ __type: "bigint";
1235
+ }, {
1236
+ value: string;
1237
+ __type: "bigint";
1238
+ }>, bigint, {
1239
+ value: string;
1240
+ __type: "bigint";
1241
+ }>;
1242
+ amount: z.ZodEffects<z.ZodObject<{
1243
+ __type: z.ZodLiteral<"bigint">;
1244
+ value: z.ZodString;
1245
+ }, "strip", z.ZodTypeAny, {
1246
+ value: string;
1247
+ __type: "bigint";
1248
+ }, {
1249
+ value: string;
1250
+ __type: "bigint";
1251
+ }>, bigint, {
1252
+ value: string;
1253
+ __type: "bigint";
1254
+ }>;
1255
+ zoneId: z.ZodString;
1256
+ flightPlanId: z.ZodNumber;
1257
+ campaigns: z.ZodArray<z.ZodString, "many">;
1258
+ captureStartTime: z.ZodString;
1259
+ captureEndTime: z.ZodString;
1260
+ requestor: z.ZodString;
1261
+ }, z.ZodAny, "strip">>;
1262
+ }, z.ZodAny, "strip">>, z.ZodObject<{
1263
+ id: z.ZodString;
1264
+ event_type: z.ZodLiteral<"protocol.mission.updated">;
1265
+ timestamp: z.ZodString;
1266
+ data: z.ZodObject<{
1267
+ id: z.ZodEffects<z.ZodObject<{
1268
+ __type: z.ZodLiteral<"bigint">;
1269
+ value: z.ZodString;
1270
+ }, "strip", z.ZodTypeAny, {
1271
+ value: string;
1272
+ __type: "bigint";
1273
+ }, {
1274
+ value: string;
1275
+ __type: "bigint";
1276
+ }>, bigint, {
1277
+ value: string;
1278
+ __type: "bigint";
1279
+ }>;
1280
+ amount: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1281
+ __type: z.ZodLiteral<"bigint">;
1282
+ value: z.ZodString;
1283
+ }, "strip", z.ZodTypeAny, {
1284
+ value: string;
1285
+ __type: "bigint";
1286
+ }, {
1287
+ value: string;
1288
+ __type: "bigint";
1289
+ }>, bigint, {
1290
+ value: string;
1291
+ __type: "bigint";
1292
+ }>>;
1293
+ isOpen: z.ZodOptional<z.ZodBoolean>;
1294
+ campaigns: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1295
+ }, "strip", z.ZodAny, z.objectOutputType<{
1296
+ id: z.ZodEffects<z.ZodObject<{
1297
+ __type: z.ZodLiteral<"bigint">;
1298
+ value: z.ZodString;
1299
+ }, "strip", z.ZodTypeAny, {
1300
+ value: string;
1301
+ __type: "bigint";
1302
+ }, {
1303
+ value: string;
1304
+ __type: "bigint";
1305
+ }>, bigint, {
1306
+ value: string;
1307
+ __type: "bigint";
1308
+ }>;
1309
+ amount: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1310
+ __type: z.ZodLiteral<"bigint">;
1311
+ value: z.ZodString;
1312
+ }, "strip", z.ZodTypeAny, {
1313
+ value: string;
1314
+ __type: "bigint";
1315
+ }, {
1316
+ value: string;
1317
+ __type: "bigint";
1318
+ }>, bigint, {
1319
+ value: string;
1320
+ __type: "bigint";
1321
+ }>>;
1322
+ isOpen: z.ZodOptional<z.ZodBoolean>;
1323
+ campaigns: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1324
+ }, z.ZodAny, "strip">, z.objectInputType<{
1325
+ id: z.ZodEffects<z.ZodObject<{
1326
+ __type: z.ZodLiteral<"bigint">;
1327
+ value: z.ZodString;
1328
+ }, "strip", z.ZodTypeAny, {
1329
+ value: string;
1330
+ __type: "bigint";
1331
+ }, {
1332
+ value: string;
1333
+ __type: "bigint";
1334
+ }>, bigint, {
1335
+ value: string;
1336
+ __type: "bigint";
1337
+ }>;
1338
+ amount: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1339
+ __type: z.ZodLiteral<"bigint">;
1340
+ value: z.ZodString;
1341
+ }, "strip", z.ZodTypeAny, {
1342
+ value: string;
1343
+ __type: "bigint";
1344
+ }, {
1345
+ value: string;
1346
+ __type: "bigint";
1347
+ }>, bigint, {
1348
+ value: string;
1349
+ __type: "bigint";
1350
+ }>>;
1351
+ isOpen: z.ZodOptional<z.ZodBoolean>;
1352
+ campaigns: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1353
+ }, z.ZodAny, "strip">>;
1354
+ }, "strip", z.ZodAny, z.objectOutputType<{
1355
+ id: z.ZodString;
1356
+ event_type: z.ZodLiteral<"protocol.mission.updated">;
1357
+ timestamp: z.ZodString;
1358
+ data: z.ZodObject<{
1359
+ id: z.ZodEffects<z.ZodObject<{
1360
+ __type: z.ZodLiteral<"bigint">;
1361
+ value: z.ZodString;
1362
+ }, "strip", z.ZodTypeAny, {
1363
+ value: string;
1364
+ __type: "bigint";
1365
+ }, {
1366
+ value: string;
1367
+ __type: "bigint";
1368
+ }>, bigint, {
1369
+ value: string;
1370
+ __type: "bigint";
1371
+ }>;
1372
+ amount: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1373
+ __type: z.ZodLiteral<"bigint">;
1374
+ value: z.ZodString;
1375
+ }, "strip", z.ZodTypeAny, {
1376
+ value: string;
1377
+ __type: "bigint";
1378
+ }, {
1379
+ value: string;
1380
+ __type: "bigint";
1381
+ }>, bigint, {
1382
+ value: string;
1383
+ __type: "bigint";
1384
+ }>>;
1385
+ isOpen: z.ZodOptional<z.ZodBoolean>;
1386
+ campaigns: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1387
+ }, "strip", z.ZodAny, z.objectOutputType<{
1388
+ id: z.ZodEffects<z.ZodObject<{
1389
+ __type: z.ZodLiteral<"bigint">;
1390
+ value: z.ZodString;
1391
+ }, "strip", z.ZodTypeAny, {
1392
+ value: string;
1393
+ __type: "bigint";
1394
+ }, {
1395
+ value: string;
1396
+ __type: "bigint";
1397
+ }>, bigint, {
1398
+ value: string;
1399
+ __type: "bigint";
1400
+ }>;
1401
+ amount: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1402
+ __type: z.ZodLiteral<"bigint">;
1403
+ value: z.ZodString;
1404
+ }, "strip", z.ZodTypeAny, {
1405
+ value: string;
1406
+ __type: "bigint";
1407
+ }, {
1408
+ value: string;
1409
+ __type: "bigint";
1410
+ }>, bigint, {
1411
+ value: string;
1412
+ __type: "bigint";
1413
+ }>>;
1414
+ isOpen: z.ZodOptional<z.ZodBoolean>;
1415
+ campaigns: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1416
+ }, z.ZodAny, "strip">, z.objectInputType<{
1417
+ id: z.ZodEffects<z.ZodObject<{
1418
+ __type: z.ZodLiteral<"bigint">;
1419
+ value: z.ZodString;
1420
+ }, "strip", z.ZodTypeAny, {
1421
+ value: string;
1422
+ __type: "bigint";
1423
+ }, {
1424
+ value: string;
1425
+ __type: "bigint";
1426
+ }>, bigint, {
1427
+ value: string;
1428
+ __type: "bigint";
1429
+ }>;
1430
+ amount: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1431
+ __type: z.ZodLiteral<"bigint">;
1432
+ value: z.ZodString;
1433
+ }, "strip", z.ZodTypeAny, {
1434
+ value: string;
1435
+ __type: "bigint";
1436
+ }, {
1437
+ value: string;
1438
+ __type: "bigint";
1439
+ }>, bigint, {
1440
+ value: string;
1441
+ __type: "bigint";
1442
+ }>>;
1443
+ isOpen: z.ZodOptional<z.ZodBoolean>;
1444
+ campaigns: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1445
+ }, z.ZodAny, "strip">>;
1446
+ }, z.ZodAny, "strip">, z.objectInputType<{
1447
+ id: z.ZodString;
1448
+ event_type: z.ZodLiteral<"protocol.mission.updated">;
1449
+ timestamp: z.ZodString;
1450
+ data: z.ZodObject<{
1451
+ id: z.ZodEffects<z.ZodObject<{
1452
+ __type: z.ZodLiteral<"bigint">;
1453
+ value: z.ZodString;
1454
+ }, "strip", z.ZodTypeAny, {
1455
+ value: string;
1456
+ __type: "bigint";
1457
+ }, {
1458
+ value: string;
1459
+ __type: "bigint";
1460
+ }>, bigint, {
1461
+ value: string;
1462
+ __type: "bigint";
1463
+ }>;
1464
+ amount: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1465
+ __type: z.ZodLiteral<"bigint">;
1466
+ value: z.ZodString;
1467
+ }, "strip", z.ZodTypeAny, {
1468
+ value: string;
1469
+ __type: "bigint";
1470
+ }, {
1471
+ value: string;
1472
+ __type: "bigint";
1473
+ }>, bigint, {
1474
+ value: string;
1475
+ __type: "bigint";
1476
+ }>>;
1477
+ isOpen: z.ZodOptional<z.ZodBoolean>;
1478
+ campaigns: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1479
+ }, "strip", z.ZodAny, z.objectOutputType<{
1480
+ id: z.ZodEffects<z.ZodObject<{
1481
+ __type: z.ZodLiteral<"bigint">;
1482
+ value: z.ZodString;
1483
+ }, "strip", z.ZodTypeAny, {
1484
+ value: string;
1485
+ __type: "bigint";
1486
+ }, {
1487
+ value: string;
1488
+ __type: "bigint";
1489
+ }>, bigint, {
1490
+ value: string;
1491
+ __type: "bigint";
1492
+ }>;
1493
+ amount: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1494
+ __type: z.ZodLiteral<"bigint">;
1495
+ value: z.ZodString;
1496
+ }, "strip", z.ZodTypeAny, {
1497
+ value: string;
1498
+ __type: "bigint";
1499
+ }, {
1500
+ value: string;
1501
+ __type: "bigint";
1502
+ }>, bigint, {
1503
+ value: string;
1504
+ __type: "bigint";
1505
+ }>>;
1506
+ isOpen: z.ZodOptional<z.ZodBoolean>;
1507
+ campaigns: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1508
+ }, z.ZodAny, "strip">, z.objectInputType<{
1509
+ id: z.ZodEffects<z.ZodObject<{
1510
+ __type: z.ZodLiteral<"bigint">;
1511
+ value: z.ZodString;
1512
+ }, "strip", z.ZodTypeAny, {
1513
+ value: string;
1514
+ __type: "bigint";
1515
+ }, {
1516
+ value: string;
1517
+ __type: "bigint";
1518
+ }>, bigint, {
1519
+ value: string;
1520
+ __type: "bigint";
1521
+ }>;
1522
+ amount: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1523
+ __type: z.ZodLiteral<"bigint">;
1524
+ value: z.ZodString;
1525
+ }, "strip", z.ZodTypeAny, {
1526
+ value: string;
1527
+ __type: "bigint";
1528
+ }, {
1529
+ value: string;
1530
+ __type: "bigint";
1531
+ }>, bigint, {
1532
+ value: string;
1533
+ __type: "bigint";
1534
+ }>>;
1535
+ isOpen: z.ZodOptional<z.ZodBoolean>;
1536
+ campaigns: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1537
+ }, z.ZodAny, "strip">>;
1538
+ }, z.ZodAny, "strip">>, z.ZodObject<{
1539
+ id: z.ZodString;
1540
+ event_type: z.ZodLiteral<"protocol.mission.paid">;
1541
+ timestamp: z.ZodString;
1542
+ data: z.ZodObject<{
1543
+ recipient: z.ZodString;
1544
+ flightId: z.ZodEffects<z.ZodObject<{
1545
+ __type: z.ZodLiteral<"bigint">;
1546
+ value: z.ZodString;
1547
+ }, "strip", z.ZodTypeAny, {
1548
+ value: string;
1549
+ __type: "bigint";
1550
+ }, {
1551
+ value: string;
1552
+ __type: "bigint";
1553
+ }>, bigint, {
1554
+ value: string;
1555
+ __type: "bigint";
1556
+ }>;
1557
+ missionId: z.ZodEffects<z.ZodObject<{
1558
+ __type: z.ZodLiteral<"bigint">;
1559
+ value: z.ZodString;
1560
+ }, "strip", z.ZodTypeAny, {
1561
+ value: string;
1562
+ __type: "bigint";
1563
+ }, {
1564
+ value: string;
1565
+ __type: "bigint";
1566
+ }>, bigint, {
1567
+ value: string;
1568
+ __type: "bigint";
1569
+ }>;
1570
+ vaultId: z.ZodEffects<z.ZodObject<{
1571
+ __type: z.ZodLiteral<"bigint">;
1572
+ value: z.ZodString;
1573
+ }, "strip", z.ZodTypeAny, {
1574
+ value: string;
1575
+ __type: "bigint";
1576
+ }, {
1577
+ value: string;
1578
+ __type: "bigint";
1579
+ }>, bigint, {
1580
+ value: string;
1581
+ __type: "bigint";
1582
+ }>;
1583
+ amount: z.ZodEffects<z.ZodObject<{
1584
+ __type: z.ZodLiteral<"bigint">;
1585
+ value: z.ZodString;
1586
+ }, "strip", z.ZodTypeAny, {
1587
+ value: string;
1588
+ __type: "bigint";
1589
+ }, {
1590
+ value: string;
1591
+ __type: "bigint";
1592
+ }>, bigint, {
1593
+ value: string;
1594
+ __type: "bigint";
1595
+ }>;
1596
+ storageKey: z.ZodString;
1597
+ }, "strip", z.ZodAny, z.objectOutputType<{
1598
+ recipient: z.ZodString;
1599
+ flightId: z.ZodEffects<z.ZodObject<{
1600
+ __type: z.ZodLiteral<"bigint">;
1601
+ value: z.ZodString;
1602
+ }, "strip", z.ZodTypeAny, {
1603
+ value: string;
1604
+ __type: "bigint";
1605
+ }, {
1606
+ value: string;
1607
+ __type: "bigint";
1608
+ }>, bigint, {
1609
+ value: string;
1610
+ __type: "bigint";
1611
+ }>;
1612
+ missionId: z.ZodEffects<z.ZodObject<{
1613
+ __type: z.ZodLiteral<"bigint">;
1614
+ value: z.ZodString;
1615
+ }, "strip", z.ZodTypeAny, {
1616
+ value: string;
1617
+ __type: "bigint";
1618
+ }, {
1619
+ value: string;
1620
+ __type: "bigint";
1621
+ }>, bigint, {
1622
+ value: string;
1623
+ __type: "bigint";
1624
+ }>;
1625
+ vaultId: z.ZodEffects<z.ZodObject<{
1626
+ __type: z.ZodLiteral<"bigint">;
1627
+ value: z.ZodString;
1628
+ }, "strip", z.ZodTypeAny, {
1629
+ value: string;
1630
+ __type: "bigint";
1631
+ }, {
1632
+ value: string;
1633
+ __type: "bigint";
1634
+ }>, bigint, {
1635
+ value: string;
1636
+ __type: "bigint";
1637
+ }>;
1638
+ amount: z.ZodEffects<z.ZodObject<{
1639
+ __type: z.ZodLiteral<"bigint">;
1640
+ value: z.ZodString;
1641
+ }, "strip", z.ZodTypeAny, {
1642
+ value: string;
1643
+ __type: "bigint";
1644
+ }, {
1645
+ value: string;
1646
+ __type: "bigint";
1647
+ }>, bigint, {
1648
+ value: string;
1649
+ __type: "bigint";
1650
+ }>;
1651
+ storageKey: z.ZodString;
1652
+ }, z.ZodAny, "strip">, z.objectInputType<{
1653
+ recipient: z.ZodString;
1654
+ flightId: z.ZodEffects<z.ZodObject<{
1655
+ __type: z.ZodLiteral<"bigint">;
1656
+ value: z.ZodString;
1657
+ }, "strip", z.ZodTypeAny, {
1658
+ value: string;
1659
+ __type: "bigint";
1660
+ }, {
1661
+ value: string;
1662
+ __type: "bigint";
1663
+ }>, bigint, {
1664
+ value: string;
1665
+ __type: "bigint";
1666
+ }>;
1667
+ missionId: z.ZodEffects<z.ZodObject<{
1668
+ __type: z.ZodLiteral<"bigint">;
1669
+ value: z.ZodString;
1670
+ }, "strip", z.ZodTypeAny, {
1671
+ value: string;
1672
+ __type: "bigint";
1673
+ }, {
1674
+ value: string;
1675
+ __type: "bigint";
1676
+ }>, bigint, {
1677
+ value: string;
1678
+ __type: "bigint";
1679
+ }>;
1680
+ vaultId: z.ZodEffects<z.ZodObject<{
1681
+ __type: z.ZodLiteral<"bigint">;
1682
+ value: z.ZodString;
1683
+ }, "strip", z.ZodTypeAny, {
1684
+ value: string;
1685
+ __type: "bigint";
1686
+ }, {
1687
+ value: string;
1688
+ __type: "bigint";
1689
+ }>, bigint, {
1690
+ value: string;
1691
+ __type: "bigint";
1692
+ }>;
1693
+ amount: z.ZodEffects<z.ZodObject<{
1694
+ __type: z.ZodLiteral<"bigint">;
1695
+ value: z.ZodString;
1696
+ }, "strip", z.ZodTypeAny, {
1697
+ value: string;
1698
+ __type: "bigint";
1699
+ }, {
1700
+ value: string;
1701
+ __type: "bigint";
1702
+ }>, bigint, {
1703
+ value: string;
1704
+ __type: "bigint";
1705
+ }>;
1706
+ storageKey: z.ZodString;
1707
+ }, z.ZodAny, "strip">>;
1708
+ }, "strip", z.ZodAny, z.objectOutputType<{
1709
+ id: z.ZodString;
1710
+ event_type: z.ZodLiteral<"protocol.mission.paid">;
1711
+ timestamp: z.ZodString;
1712
+ data: z.ZodObject<{
1713
+ recipient: z.ZodString;
1714
+ flightId: z.ZodEffects<z.ZodObject<{
1715
+ __type: z.ZodLiteral<"bigint">;
1716
+ value: z.ZodString;
1717
+ }, "strip", z.ZodTypeAny, {
1718
+ value: string;
1719
+ __type: "bigint";
1720
+ }, {
1721
+ value: string;
1722
+ __type: "bigint";
1723
+ }>, bigint, {
1724
+ value: string;
1725
+ __type: "bigint";
1726
+ }>;
1727
+ missionId: z.ZodEffects<z.ZodObject<{
1728
+ __type: z.ZodLiteral<"bigint">;
1729
+ value: z.ZodString;
1730
+ }, "strip", z.ZodTypeAny, {
1731
+ value: string;
1732
+ __type: "bigint";
1733
+ }, {
1734
+ value: string;
1735
+ __type: "bigint";
1736
+ }>, bigint, {
1737
+ value: string;
1738
+ __type: "bigint";
1739
+ }>;
1740
+ vaultId: z.ZodEffects<z.ZodObject<{
1741
+ __type: z.ZodLiteral<"bigint">;
1742
+ value: z.ZodString;
1743
+ }, "strip", z.ZodTypeAny, {
1744
+ value: string;
1745
+ __type: "bigint";
1746
+ }, {
1747
+ value: string;
1748
+ __type: "bigint";
1749
+ }>, bigint, {
1750
+ value: string;
1751
+ __type: "bigint";
1752
+ }>;
1753
+ amount: z.ZodEffects<z.ZodObject<{
1754
+ __type: z.ZodLiteral<"bigint">;
1755
+ value: z.ZodString;
1756
+ }, "strip", z.ZodTypeAny, {
1757
+ value: string;
1758
+ __type: "bigint";
1759
+ }, {
1760
+ value: string;
1761
+ __type: "bigint";
1762
+ }>, bigint, {
1763
+ value: string;
1764
+ __type: "bigint";
1765
+ }>;
1766
+ storageKey: z.ZodString;
1767
+ }, "strip", z.ZodAny, z.objectOutputType<{
1768
+ recipient: z.ZodString;
1769
+ flightId: z.ZodEffects<z.ZodObject<{
1770
+ __type: z.ZodLiteral<"bigint">;
1771
+ value: z.ZodString;
1772
+ }, "strip", z.ZodTypeAny, {
1773
+ value: string;
1774
+ __type: "bigint";
1775
+ }, {
1776
+ value: string;
1777
+ __type: "bigint";
1778
+ }>, bigint, {
1779
+ value: string;
1780
+ __type: "bigint";
1781
+ }>;
1782
+ missionId: z.ZodEffects<z.ZodObject<{
1783
+ __type: z.ZodLiteral<"bigint">;
1784
+ value: z.ZodString;
1785
+ }, "strip", z.ZodTypeAny, {
1786
+ value: string;
1787
+ __type: "bigint";
1788
+ }, {
1789
+ value: string;
1790
+ __type: "bigint";
1791
+ }>, bigint, {
1792
+ value: string;
1793
+ __type: "bigint";
1794
+ }>;
1795
+ vaultId: z.ZodEffects<z.ZodObject<{
1796
+ __type: z.ZodLiteral<"bigint">;
1797
+ value: z.ZodString;
1798
+ }, "strip", z.ZodTypeAny, {
1799
+ value: string;
1800
+ __type: "bigint";
1801
+ }, {
1802
+ value: string;
1803
+ __type: "bigint";
1804
+ }>, bigint, {
1805
+ value: string;
1806
+ __type: "bigint";
1807
+ }>;
1808
+ amount: z.ZodEffects<z.ZodObject<{
1809
+ __type: z.ZodLiteral<"bigint">;
1810
+ value: z.ZodString;
1811
+ }, "strip", z.ZodTypeAny, {
1812
+ value: string;
1813
+ __type: "bigint";
1814
+ }, {
1815
+ value: string;
1816
+ __type: "bigint";
1817
+ }>, bigint, {
1818
+ value: string;
1819
+ __type: "bigint";
1820
+ }>;
1821
+ storageKey: z.ZodString;
1822
+ }, z.ZodAny, "strip">, z.objectInputType<{
1823
+ recipient: z.ZodString;
1824
+ flightId: z.ZodEffects<z.ZodObject<{
1825
+ __type: z.ZodLiteral<"bigint">;
1826
+ value: z.ZodString;
1827
+ }, "strip", z.ZodTypeAny, {
1828
+ value: string;
1829
+ __type: "bigint";
1830
+ }, {
1831
+ value: string;
1832
+ __type: "bigint";
1833
+ }>, bigint, {
1834
+ value: string;
1835
+ __type: "bigint";
1836
+ }>;
1837
+ missionId: z.ZodEffects<z.ZodObject<{
1838
+ __type: z.ZodLiteral<"bigint">;
1839
+ value: z.ZodString;
1840
+ }, "strip", z.ZodTypeAny, {
1841
+ value: string;
1842
+ __type: "bigint";
1843
+ }, {
1844
+ value: string;
1845
+ __type: "bigint";
1846
+ }>, bigint, {
1847
+ value: string;
1848
+ __type: "bigint";
1849
+ }>;
1850
+ vaultId: z.ZodEffects<z.ZodObject<{
1851
+ __type: z.ZodLiteral<"bigint">;
1852
+ value: z.ZodString;
1853
+ }, "strip", z.ZodTypeAny, {
1854
+ value: string;
1855
+ __type: "bigint";
1856
+ }, {
1857
+ value: string;
1858
+ __type: "bigint";
1859
+ }>, bigint, {
1860
+ value: string;
1861
+ __type: "bigint";
1862
+ }>;
1863
+ amount: z.ZodEffects<z.ZodObject<{
1864
+ __type: z.ZodLiteral<"bigint">;
1865
+ value: z.ZodString;
1866
+ }, "strip", z.ZodTypeAny, {
1867
+ value: string;
1868
+ __type: "bigint";
1869
+ }, {
1870
+ value: string;
1871
+ __type: "bigint";
1872
+ }>, bigint, {
1873
+ value: string;
1874
+ __type: "bigint";
1875
+ }>;
1876
+ storageKey: z.ZodString;
1877
+ }, z.ZodAny, "strip">>;
1878
+ }, z.ZodAny, "strip">, z.objectInputType<{
1879
+ id: z.ZodString;
1880
+ event_type: z.ZodLiteral<"protocol.mission.paid">;
1881
+ timestamp: z.ZodString;
1882
+ data: z.ZodObject<{
1883
+ recipient: z.ZodString;
1884
+ flightId: z.ZodEffects<z.ZodObject<{
1885
+ __type: z.ZodLiteral<"bigint">;
1886
+ value: z.ZodString;
1887
+ }, "strip", z.ZodTypeAny, {
1888
+ value: string;
1889
+ __type: "bigint";
1890
+ }, {
1891
+ value: string;
1892
+ __type: "bigint";
1893
+ }>, bigint, {
1894
+ value: string;
1895
+ __type: "bigint";
1896
+ }>;
1897
+ missionId: z.ZodEffects<z.ZodObject<{
1898
+ __type: z.ZodLiteral<"bigint">;
1899
+ value: z.ZodString;
1900
+ }, "strip", z.ZodTypeAny, {
1901
+ value: string;
1902
+ __type: "bigint";
1903
+ }, {
1904
+ value: string;
1905
+ __type: "bigint";
1906
+ }>, bigint, {
1907
+ value: string;
1908
+ __type: "bigint";
1909
+ }>;
1910
+ vaultId: z.ZodEffects<z.ZodObject<{
1911
+ __type: z.ZodLiteral<"bigint">;
1912
+ value: z.ZodString;
1913
+ }, "strip", z.ZodTypeAny, {
1914
+ value: string;
1915
+ __type: "bigint";
1916
+ }, {
1917
+ value: string;
1918
+ __type: "bigint";
1919
+ }>, bigint, {
1920
+ value: string;
1921
+ __type: "bigint";
1922
+ }>;
1923
+ amount: z.ZodEffects<z.ZodObject<{
1924
+ __type: z.ZodLiteral<"bigint">;
1925
+ value: z.ZodString;
1926
+ }, "strip", z.ZodTypeAny, {
1927
+ value: string;
1928
+ __type: "bigint";
1929
+ }, {
1930
+ value: string;
1931
+ __type: "bigint";
1932
+ }>, bigint, {
1933
+ value: string;
1934
+ __type: "bigint";
1935
+ }>;
1936
+ storageKey: z.ZodString;
1937
+ }, "strip", z.ZodAny, z.objectOutputType<{
1938
+ recipient: z.ZodString;
1939
+ flightId: z.ZodEffects<z.ZodObject<{
1940
+ __type: z.ZodLiteral<"bigint">;
1941
+ value: z.ZodString;
1942
+ }, "strip", z.ZodTypeAny, {
1943
+ value: string;
1944
+ __type: "bigint";
1945
+ }, {
1946
+ value: string;
1947
+ __type: "bigint";
1948
+ }>, bigint, {
1949
+ value: string;
1950
+ __type: "bigint";
1951
+ }>;
1952
+ missionId: z.ZodEffects<z.ZodObject<{
1953
+ __type: z.ZodLiteral<"bigint">;
1954
+ value: z.ZodString;
1955
+ }, "strip", z.ZodTypeAny, {
1956
+ value: string;
1957
+ __type: "bigint";
1958
+ }, {
1959
+ value: string;
1960
+ __type: "bigint";
1961
+ }>, bigint, {
1962
+ value: string;
1963
+ __type: "bigint";
1964
+ }>;
1965
+ vaultId: z.ZodEffects<z.ZodObject<{
1966
+ __type: z.ZodLiteral<"bigint">;
1967
+ value: z.ZodString;
1968
+ }, "strip", z.ZodTypeAny, {
1969
+ value: string;
1970
+ __type: "bigint";
1971
+ }, {
1972
+ value: string;
1973
+ __type: "bigint";
1974
+ }>, bigint, {
1975
+ value: string;
1976
+ __type: "bigint";
1977
+ }>;
1978
+ amount: z.ZodEffects<z.ZodObject<{
1979
+ __type: z.ZodLiteral<"bigint">;
1980
+ value: z.ZodString;
1981
+ }, "strip", z.ZodTypeAny, {
1982
+ value: string;
1983
+ __type: "bigint";
1984
+ }, {
1985
+ value: string;
1986
+ __type: "bigint";
1987
+ }>, bigint, {
1988
+ value: string;
1989
+ __type: "bigint";
1990
+ }>;
1991
+ storageKey: z.ZodString;
1992
+ }, z.ZodAny, "strip">, z.objectInputType<{
1993
+ recipient: z.ZodString;
1994
+ flightId: z.ZodEffects<z.ZodObject<{
1995
+ __type: z.ZodLiteral<"bigint">;
1996
+ value: z.ZodString;
1997
+ }, "strip", z.ZodTypeAny, {
1998
+ value: string;
1999
+ __type: "bigint";
2000
+ }, {
2001
+ value: string;
2002
+ __type: "bigint";
2003
+ }>, bigint, {
2004
+ value: string;
2005
+ __type: "bigint";
2006
+ }>;
2007
+ missionId: z.ZodEffects<z.ZodObject<{
2008
+ __type: z.ZodLiteral<"bigint">;
2009
+ value: z.ZodString;
2010
+ }, "strip", z.ZodTypeAny, {
2011
+ value: string;
2012
+ __type: "bigint";
2013
+ }, {
2014
+ value: string;
2015
+ __type: "bigint";
2016
+ }>, bigint, {
2017
+ value: string;
2018
+ __type: "bigint";
2019
+ }>;
2020
+ vaultId: z.ZodEffects<z.ZodObject<{
2021
+ __type: z.ZodLiteral<"bigint">;
2022
+ value: z.ZodString;
2023
+ }, "strip", z.ZodTypeAny, {
2024
+ value: string;
2025
+ __type: "bigint";
2026
+ }, {
2027
+ value: string;
2028
+ __type: "bigint";
2029
+ }>, bigint, {
2030
+ value: string;
2031
+ __type: "bigint";
2032
+ }>;
2033
+ amount: z.ZodEffects<z.ZodObject<{
2034
+ __type: z.ZodLiteral<"bigint">;
2035
+ value: z.ZodString;
2036
+ }, "strip", z.ZodTypeAny, {
2037
+ value: string;
2038
+ __type: "bigint";
2039
+ }, {
2040
+ value: string;
2041
+ __type: "bigint";
2042
+ }>, bigint, {
2043
+ value: string;
2044
+ __type: "bigint";
2045
+ }>;
2046
+ storageKey: z.ZodString;
2047
+ }, z.ZodAny, "strip">>;
2048
+ }, z.ZodAny, "strip">>, z.ZodObject<{
2049
+ id: z.ZodString;
2050
+ event_type: z.ZodLiteral<"protocol.flight.submitted">;
2051
+ timestamp: z.ZodString;
2052
+ data: z.ZodObject<{
2053
+ storageKey: z.ZodString;
2054
+ pilotAddress: z.ZodString;
2055
+ flightManifestUri: z.ZodString;
2056
+ missionId: z.ZodEffects<z.ZodObject<{
2057
+ __type: z.ZodLiteral<"bigint">;
2058
+ value: z.ZodString;
2059
+ }, "strip", z.ZodTypeAny, {
2060
+ value: string;
2061
+ __type: "bigint";
2062
+ }, {
2063
+ value: string;
2064
+ __type: "bigint";
2065
+ }>, bigint, {
2066
+ value: string;
2067
+ __type: "bigint";
2068
+ }>;
2069
+ }, "strip", z.ZodAny, z.objectOutputType<{
2070
+ storageKey: z.ZodString;
2071
+ pilotAddress: z.ZodString;
2072
+ flightManifestUri: z.ZodString;
2073
+ missionId: z.ZodEffects<z.ZodObject<{
2074
+ __type: z.ZodLiteral<"bigint">;
2075
+ value: z.ZodString;
2076
+ }, "strip", z.ZodTypeAny, {
2077
+ value: string;
2078
+ __type: "bigint";
2079
+ }, {
2080
+ value: string;
2081
+ __type: "bigint";
2082
+ }>, bigint, {
2083
+ value: string;
2084
+ __type: "bigint";
2085
+ }>;
2086
+ }, z.ZodAny, "strip">, z.objectInputType<{
2087
+ storageKey: z.ZodString;
2088
+ pilotAddress: z.ZodString;
2089
+ flightManifestUri: z.ZodString;
2090
+ missionId: z.ZodEffects<z.ZodObject<{
2091
+ __type: z.ZodLiteral<"bigint">;
2092
+ value: z.ZodString;
2093
+ }, "strip", z.ZodTypeAny, {
2094
+ value: string;
2095
+ __type: "bigint";
2096
+ }, {
2097
+ value: string;
2098
+ __type: "bigint";
2099
+ }>, bigint, {
2100
+ value: string;
2101
+ __type: "bigint";
2102
+ }>;
2103
+ }, z.ZodAny, "strip">>;
2104
+ }, "strip", z.ZodAny, z.objectOutputType<{
2105
+ id: z.ZodString;
2106
+ event_type: z.ZodLiteral<"protocol.flight.submitted">;
2107
+ timestamp: z.ZodString;
2108
+ data: z.ZodObject<{
2109
+ storageKey: z.ZodString;
2110
+ pilotAddress: z.ZodString;
2111
+ flightManifestUri: z.ZodString;
2112
+ missionId: z.ZodEffects<z.ZodObject<{
2113
+ __type: z.ZodLiteral<"bigint">;
2114
+ value: z.ZodString;
2115
+ }, "strip", z.ZodTypeAny, {
2116
+ value: string;
2117
+ __type: "bigint";
2118
+ }, {
2119
+ value: string;
2120
+ __type: "bigint";
2121
+ }>, bigint, {
2122
+ value: string;
2123
+ __type: "bigint";
2124
+ }>;
2125
+ }, "strip", z.ZodAny, z.objectOutputType<{
2126
+ storageKey: z.ZodString;
2127
+ pilotAddress: z.ZodString;
2128
+ flightManifestUri: z.ZodString;
2129
+ missionId: z.ZodEffects<z.ZodObject<{
2130
+ __type: z.ZodLiteral<"bigint">;
2131
+ value: z.ZodString;
2132
+ }, "strip", z.ZodTypeAny, {
2133
+ value: string;
2134
+ __type: "bigint";
2135
+ }, {
2136
+ value: string;
2137
+ __type: "bigint";
2138
+ }>, bigint, {
2139
+ value: string;
2140
+ __type: "bigint";
2141
+ }>;
2142
+ }, z.ZodAny, "strip">, z.objectInputType<{
2143
+ storageKey: z.ZodString;
2144
+ pilotAddress: z.ZodString;
2145
+ flightManifestUri: z.ZodString;
2146
+ missionId: z.ZodEffects<z.ZodObject<{
2147
+ __type: z.ZodLiteral<"bigint">;
2148
+ value: z.ZodString;
2149
+ }, "strip", z.ZodTypeAny, {
2150
+ value: string;
2151
+ __type: "bigint";
2152
+ }, {
2153
+ value: string;
2154
+ __type: "bigint";
2155
+ }>, bigint, {
2156
+ value: string;
2157
+ __type: "bigint";
2158
+ }>;
2159
+ }, z.ZodAny, "strip">>;
2160
+ }, z.ZodAny, "strip">, z.objectInputType<{
2161
+ id: z.ZodString;
2162
+ event_type: z.ZodLiteral<"protocol.flight.submitted">;
2163
+ timestamp: z.ZodString;
2164
+ data: z.ZodObject<{
2165
+ storageKey: z.ZodString;
2166
+ pilotAddress: z.ZodString;
2167
+ flightManifestUri: z.ZodString;
2168
+ missionId: z.ZodEffects<z.ZodObject<{
2169
+ __type: z.ZodLiteral<"bigint">;
2170
+ value: z.ZodString;
2171
+ }, "strip", z.ZodTypeAny, {
2172
+ value: string;
2173
+ __type: "bigint";
2174
+ }, {
2175
+ value: string;
2176
+ __type: "bigint";
2177
+ }>, bigint, {
2178
+ value: string;
2179
+ __type: "bigint";
2180
+ }>;
2181
+ }, "strip", z.ZodAny, z.objectOutputType<{
2182
+ storageKey: z.ZodString;
2183
+ pilotAddress: z.ZodString;
2184
+ flightManifestUri: z.ZodString;
2185
+ missionId: z.ZodEffects<z.ZodObject<{
2186
+ __type: z.ZodLiteral<"bigint">;
2187
+ value: z.ZodString;
2188
+ }, "strip", z.ZodTypeAny, {
2189
+ value: string;
2190
+ __type: "bigint";
2191
+ }, {
2192
+ value: string;
2193
+ __type: "bigint";
2194
+ }>, bigint, {
2195
+ value: string;
2196
+ __type: "bigint";
2197
+ }>;
2198
+ }, z.ZodAny, "strip">, z.objectInputType<{
2199
+ storageKey: z.ZodString;
2200
+ pilotAddress: z.ZodString;
2201
+ flightManifestUri: z.ZodString;
2202
+ missionId: z.ZodEffects<z.ZodObject<{
2203
+ __type: z.ZodLiteral<"bigint">;
2204
+ value: z.ZodString;
2205
+ }, "strip", z.ZodTypeAny, {
2206
+ value: string;
2207
+ __type: "bigint";
2208
+ }, {
2209
+ value: string;
2210
+ __type: "bigint";
2211
+ }>, bigint, {
2212
+ value: string;
2213
+ __type: "bigint";
2214
+ }>;
2215
+ }, z.ZodAny, "strip">>;
2216
+ }, z.ZodAny, "strip">>, z.ZodObject<{
2217
+ id: z.ZodString;
2218
+ event_type: z.ZodLiteral<"protocol.flight.reviewed">;
2219
+ timestamp: z.ZodString;
2220
+ data: z.ZodObject<{
2221
+ flightId: z.ZodEffects<z.ZodObject<{
2222
+ __type: z.ZodLiteral<"bigint">;
2223
+ value: z.ZodString;
2224
+ }, "strip", z.ZodTypeAny, {
2225
+ value: string;
2226
+ __type: "bigint";
2227
+ }, {
2228
+ value: string;
2229
+ __type: "bigint";
2230
+ }>, bigint, {
2231
+ value: string;
2232
+ __type: "bigint";
2233
+ }>;
2234
+ owner: z.ZodString;
2235
+ isApproved: z.ZodBoolean;
2236
+ validationLogUri: z.ZodString;
2237
+ validator: z.ZodString;
2238
+ filesHash: z.ZodString;
2239
+ storageKey: z.ZodString;
2240
+ missionId: z.ZodEffects<z.ZodObject<{
2241
+ __type: z.ZodLiteral<"bigint">;
2242
+ value: z.ZodString;
2243
+ }, "strip", z.ZodTypeAny, {
2244
+ value: string;
2245
+ __type: "bigint";
2246
+ }, {
2247
+ value: string;
2248
+ __type: "bigint";
2249
+ }>, bigint, {
2250
+ value: string;
2251
+ __type: "bigint";
2252
+ }>;
2253
+ }, "strip", z.ZodAny, z.objectOutputType<{
2254
+ flightId: z.ZodEffects<z.ZodObject<{
2255
+ __type: z.ZodLiteral<"bigint">;
2256
+ value: z.ZodString;
2257
+ }, "strip", z.ZodTypeAny, {
2258
+ value: string;
2259
+ __type: "bigint";
2260
+ }, {
2261
+ value: string;
2262
+ __type: "bigint";
2263
+ }>, bigint, {
2264
+ value: string;
2265
+ __type: "bigint";
2266
+ }>;
2267
+ owner: z.ZodString;
2268
+ isApproved: z.ZodBoolean;
2269
+ validationLogUri: z.ZodString;
2270
+ validator: z.ZodString;
2271
+ filesHash: z.ZodString;
2272
+ storageKey: z.ZodString;
2273
+ missionId: z.ZodEffects<z.ZodObject<{
2274
+ __type: z.ZodLiteral<"bigint">;
2275
+ value: z.ZodString;
2276
+ }, "strip", z.ZodTypeAny, {
2277
+ value: string;
2278
+ __type: "bigint";
2279
+ }, {
2280
+ value: string;
2281
+ __type: "bigint";
2282
+ }>, bigint, {
2283
+ value: string;
2284
+ __type: "bigint";
2285
+ }>;
2286
+ }, z.ZodAny, "strip">, z.objectInputType<{
2287
+ flightId: z.ZodEffects<z.ZodObject<{
2288
+ __type: z.ZodLiteral<"bigint">;
2289
+ value: z.ZodString;
2290
+ }, "strip", z.ZodTypeAny, {
2291
+ value: string;
2292
+ __type: "bigint";
2293
+ }, {
2294
+ value: string;
2295
+ __type: "bigint";
2296
+ }>, bigint, {
2297
+ value: string;
2298
+ __type: "bigint";
2299
+ }>;
2300
+ owner: z.ZodString;
2301
+ isApproved: z.ZodBoolean;
2302
+ validationLogUri: z.ZodString;
2303
+ validator: z.ZodString;
2304
+ filesHash: z.ZodString;
2305
+ storageKey: z.ZodString;
2306
+ missionId: z.ZodEffects<z.ZodObject<{
2307
+ __type: z.ZodLiteral<"bigint">;
2308
+ value: z.ZodString;
2309
+ }, "strip", z.ZodTypeAny, {
2310
+ value: string;
2311
+ __type: "bigint";
2312
+ }, {
2313
+ value: string;
2314
+ __type: "bigint";
2315
+ }>, bigint, {
2316
+ value: string;
2317
+ __type: "bigint";
2318
+ }>;
2319
+ }, z.ZodAny, "strip">>;
2320
+ }, "strip", z.ZodAny, z.objectOutputType<{
2321
+ id: z.ZodString;
2322
+ event_type: z.ZodLiteral<"protocol.flight.reviewed">;
2323
+ timestamp: z.ZodString;
2324
+ data: z.ZodObject<{
2325
+ flightId: z.ZodEffects<z.ZodObject<{
2326
+ __type: z.ZodLiteral<"bigint">;
2327
+ value: z.ZodString;
2328
+ }, "strip", z.ZodTypeAny, {
2329
+ value: string;
2330
+ __type: "bigint";
2331
+ }, {
2332
+ value: string;
2333
+ __type: "bigint";
2334
+ }>, bigint, {
2335
+ value: string;
2336
+ __type: "bigint";
2337
+ }>;
2338
+ owner: z.ZodString;
2339
+ isApproved: z.ZodBoolean;
2340
+ validationLogUri: z.ZodString;
2341
+ validator: z.ZodString;
2342
+ filesHash: z.ZodString;
2343
+ storageKey: z.ZodString;
2344
+ missionId: z.ZodEffects<z.ZodObject<{
2345
+ __type: z.ZodLiteral<"bigint">;
2346
+ value: z.ZodString;
2347
+ }, "strip", z.ZodTypeAny, {
2348
+ value: string;
2349
+ __type: "bigint";
2350
+ }, {
2351
+ value: string;
2352
+ __type: "bigint";
2353
+ }>, bigint, {
2354
+ value: string;
2355
+ __type: "bigint";
2356
+ }>;
2357
+ }, "strip", z.ZodAny, z.objectOutputType<{
2358
+ flightId: z.ZodEffects<z.ZodObject<{
2359
+ __type: z.ZodLiteral<"bigint">;
2360
+ value: z.ZodString;
2361
+ }, "strip", z.ZodTypeAny, {
2362
+ value: string;
2363
+ __type: "bigint";
2364
+ }, {
2365
+ value: string;
2366
+ __type: "bigint";
2367
+ }>, bigint, {
2368
+ value: string;
2369
+ __type: "bigint";
2370
+ }>;
2371
+ owner: z.ZodString;
2372
+ isApproved: z.ZodBoolean;
2373
+ validationLogUri: z.ZodString;
2374
+ validator: z.ZodString;
2375
+ filesHash: z.ZodString;
2376
+ storageKey: z.ZodString;
2377
+ missionId: z.ZodEffects<z.ZodObject<{
2378
+ __type: z.ZodLiteral<"bigint">;
2379
+ value: z.ZodString;
2380
+ }, "strip", z.ZodTypeAny, {
2381
+ value: string;
2382
+ __type: "bigint";
2383
+ }, {
2384
+ value: string;
2385
+ __type: "bigint";
2386
+ }>, bigint, {
2387
+ value: string;
2388
+ __type: "bigint";
2389
+ }>;
2390
+ }, z.ZodAny, "strip">, z.objectInputType<{
2391
+ flightId: z.ZodEffects<z.ZodObject<{
2392
+ __type: z.ZodLiteral<"bigint">;
2393
+ value: z.ZodString;
2394
+ }, "strip", z.ZodTypeAny, {
2395
+ value: string;
2396
+ __type: "bigint";
2397
+ }, {
2398
+ value: string;
2399
+ __type: "bigint";
2400
+ }>, bigint, {
2401
+ value: string;
2402
+ __type: "bigint";
2403
+ }>;
2404
+ owner: z.ZodString;
2405
+ isApproved: z.ZodBoolean;
2406
+ validationLogUri: z.ZodString;
2407
+ validator: z.ZodString;
2408
+ filesHash: z.ZodString;
2409
+ storageKey: z.ZodString;
2410
+ missionId: z.ZodEffects<z.ZodObject<{
2411
+ __type: z.ZodLiteral<"bigint">;
2412
+ value: z.ZodString;
2413
+ }, "strip", z.ZodTypeAny, {
2414
+ value: string;
2415
+ __type: "bigint";
2416
+ }, {
2417
+ value: string;
2418
+ __type: "bigint";
2419
+ }>, bigint, {
2420
+ value: string;
2421
+ __type: "bigint";
2422
+ }>;
2423
+ }, z.ZodAny, "strip">>;
2424
+ }, z.ZodAny, "strip">, z.objectInputType<{
2425
+ id: z.ZodString;
2426
+ event_type: z.ZodLiteral<"protocol.flight.reviewed">;
2427
+ timestamp: z.ZodString;
2428
+ data: z.ZodObject<{
2429
+ flightId: z.ZodEffects<z.ZodObject<{
2430
+ __type: z.ZodLiteral<"bigint">;
2431
+ value: z.ZodString;
2432
+ }, "strip", z.ZodTypeAny, {
2433
+ value: string;
2434
+ __type: "bigint";
2435
+ }, {
2436
+ value: string;
2437
+ __type: "bigint";
2438
+ }>, bigint, {
2439
+ value: string;
2440
+ __type: "bigint";
2441
+ }>;
2442
+ owner: z.ZodString;
2443
+ isApproved: z.ZodBoolean;
2444
+ validationLogUri: z.ZodString;
2445
+ validator: z.ZodString;
2446
+ filesHash: z.ZodString;
2447
+ storageKey: z.ZodString;
2448
+ missionId: z.ZodEffects<z.ZodObject<{
2449
+ __type: z.ZodLiteral<"bigint">;
2450
+ value: z.ZodString;
2451
+ }, "strip", z.ZodTypeAny, {
2452
+ value: string;
2453
+ __type: "bigint";
2454
+ }, {
2455
+ value: string;
2456
+ __type: "bigint";
2457
+ }>, bigint, {
2458
+ value: string;
2459
+ __type: "bigint";
2460
+ }>;
2461
+ }, "strip", z.ZodAny, z.objectOutputType<{
2462
+ flightId: z.ZodEffects<z.ZodObject<{
2463
+ __type: z.ZodLiteral<"bigint">;
2464
+ value: z.ZodString;
2465
+ }, "strip", z.ZodTypeAny, {
2466
+ value: string;
2467
+ __type: "bigint";
2468
+ }, {
2469
+ value: string;
2470
+ __type: "bigint";
2471
+ }>, bigint, {
2472
+ value: string;
2473
+ __type: "bigint";
2474
+ }>;
2475
+ owner: z.ZodString;
2476
+ isApproved: z.ZodBoolean;
2477
+ validationLogUri: z.ZodString;
2478
+ validator: z.ZodString;
2479
+ filesHash: z.ZodString;
2480
+ storageKey: z.ZodString;
2481
+ missionId: z.ZodEffects<z.ZodObject<{
2482
+ __type: z.ZodLiteral<"bigint">;
2483
+ value: z.ZodString;
2484
+ }, "strip", z.ZodTypeAny, {
2485
+ value: string;
2486
+ __type: "bigint";
2487
+ }, {
2488
+ value: string;
2489
+ __type: "bigint";
2490
+ }>, bigint, {
2491
+ value: string;
2492
+ __type: "bigint";
2493
+ }>;
2494
+ }, z.ZodAny, "strip">, z.objectInputType<{
2495
+ flightId: z.ZodEffects<z.ZodObject<{
2496
+ __type: z.ZodLiteral<"bigint">;
2497
+ value: z.ZodString;
2498
+ }, "strip", z.ZodTypeAny, {
2499
+ value: string;
2500
+ __type: "bigint";
2501
+ }, {
2502
+ value: string;
2503
+ __type: "bigint";
2504
+ }>, bigint, {
2505
+ value: string;
2506
+ __type: "bigint";
2507
+ }>;
2508
+ owner: z.ZodString;
2509
+ isApproved: z.ZodBoolean;
2510
+ validationLogUri: z.ZodString;
2511
+ validator: z.ZodString;
2512
+ filesHash: z.ZodString;
2513
+ storageKey: z.ZodString;
2514
+ missionId: z.ZodEffects<z.ZodObject<{
2515
+ __type: z.ZodLiteral<"bigint">;
2516
+ value: z.ZodString;
2517
+ }, "strip", z.ZodTypeAny, {
2518
+ value: string;
2519
+ __type: "bigint";
2520
+ }, {
2521
+ value: string;
2522
+ __type: "bigint";
2523
+ }>, bigint, {
2524
+ value: string;
2525
+ __type: "bigint";
2526
+ }>;
2527
+ }, z.ZodAny, "strip">>;
2528
+ }, z.ZodAny, "strip">>]>;
2529
+ type Event = z.infer<typeof Event>;
2530
+ type TestEvent = Extract<Event, {
2531
+ event_type: "test";
1244
2532
  }>;
1245
2533
  type MissionCreatedEvent = Extract<Event, {
1246
2534
  event_type: "protocol.mission.created";
@@ -1258,72 +2546,582 @@ type FlightReviewedEvent = Extract<Event, {
1258
2546
  event_type: "protocol.flight.reviewed";
1259
2547
  }>;
1260
2548
 
1261
- declare function parseWebhookEvent(req: Request$1, webhookSecret: string): {
1262
- data: {
1263
- message: string;
1264
- };
1265
- id: string;
1266
- event_type: "test";
1267
- timestamp: string;
1268
- } | {
1269
- data: {
1270
- id: bigint;
1271
- vaultId: bigint;
1272
- amount: bigint;
1273
- zoneId: string;
1274
- flightPlanId: number;
1275
- captureStartTime: string;
1276
- captureEndTime: string;
1277
- requestor: string;
1278
- };
1279
- id: string;
1280
- event_type: "protocol.mission.created";
1281
- timestamp: string;
1282
- } | {
1283
- data: {
1284
- id: bigint;
1285
- amount?: bigint | undefined;
1286
- isOpen?: boolean | undefined;
1287
- };
1288
- id: string;
1289
- event_type: "protocol.mission.updated";
1290
- timestamp: string;
1291
- } | {
1292
- data: {
1293
- missionId: bigint;
1294
- flightId: bigint;
1295
- vaultId: bigint;
1296
- amount: bigint;
1297
- recipient: string;
1298
- storageKey: string;
1299
- };
1300
- id: string;
1301
- event_type: "protocol.mission.paid";
1302
- timestamp: string;
1303
- } | {
1304
- data: {
1305
- missionId: bigint;
1306
- pilotAddress: string;
1307
- storageKey: string;
1308
- flightManifestUri: string;
1309
- };
1310
- id: string;
1311
- event_type: "protocol.flight.submitted";
1312
- timestamp: string;
1313
- } | {
1314
- data: {
1315
- missionId: bigint;
1316
- flightId: bigint;
1317
- storageKey: string;
1318
- owner: string;
1319
- isApproved: boolean;
1320
- validationLogUri: string;
1321
- validator: string;
1322
- filesHash: string;
1323
- };
1324
- id: string;
1325
- event_type: "protocol.flight.reviewed";
1326
- timestamp: string;
1327
- };
2549
+ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.objectOutputType<{
2550
+ id: zod.ZodString;
2551
+ event_type: zod.ZodLiteral<"test">;
2552
+ timestamp: zod.ZodString;
2553
+ data: zod.ZodObject<{
2554
+ message: zod.ZodString;
2555
+ }, "strip", zod.ZodAny, zod.objectOutputType<{
2556
+ message: zod.ZodString;
2557
+ }, zod.ZodAny, "strip">, zod.objectInputType<{
2558
+ message: zod.ZodString;
2559
+ }, zod.ZodAny, "strip">>;
2560
+ }, zod.ZodAny, "strip"> | zod.objectOutputType<{
2561
+ id: zod.ZodString;
2562
+ event_type: zod.ZodLiteral<"protocol.mission.created">;
2563
+ timestamp: zod.ZodString;
2564
+ data: zod.ZodObject<{
2565
+ id: zod.ZodEffects<zod.ZodObject<{
2566
+ __type: zod.ZodLiteral<"bigint">;
2567
+ value: zod.ZodString;
2568
+ }, "strip", zod.ZodTypeAny, {
2569
+ value: string;
2570
+ __type: "bigint";
2571
+ }, {
2572
+ value: string;
2573
+ __type: "bigint";
2574
+ }>, bigint, {
2575
+ value: string;
2576
+ __type: "bigint";
2577
+ }>;
2578
+ vaultId: zod.ZodEffects<zod.ZodObject<{
2579
+ __type: zod.ZodLiteral<"bigint">;
2580
+ value: zod.ZodString;
2581
+ }, "strip", zod.ZodTypeAny, {
2582
+ value: string;
2583
+ __type: "bigint";
2584
+ }, {
2585
+ value: string;
2586
+ __type: "bigint";
2587
+ }>, bigint, {
2588
+ value: string;
2589
+ __type: "bigint";
2590
+ }>;
2591
+ amount: zod.ZodEffects<zod.ZodObject<{
2592
+ __type: zod.ZodLiteral<"bigint">;
2593
+ value: zod.ZodString;
2594
+ }, "strip", zod.ZodTypeAny, {
2595
+ value: string;
2596
+ __type: "bigint";
2597
+ }, {
2598
+ value: string;
2599
+ __type: "bigint";
2600
+ }>, bigint, {
2601
+ value: string;
2602
+ __type: "bigint";
2603
+ }>;
2604
+ zoneId: zod.ZodString;
2605
+ flightPlanId: zod.ZodNumber;
2606
+ campaigns: zod.ZodArray<zod.ZodString, "many">;
2607
+ captureStartTime: zod.ZodString;
2608
+ captureEndTime: zod.ZodString;
2609
+ requestor: zod.ZodString;
2610
+ }, "strip", zod.ZodAny, zod.objectOutputType<{
2611
+ id: zod.ZodEffects<zod.ZodObject<{
2612
+ __type: zod.ZodLiteral<"bigint">;
2613
+ value: zod.ZodString;
2614
+ }, "strip", zod.ZodTypeAny, {
2615
+ value: string;
2616
+ __type: "bigint";
2617
+ }, {
2618
+ value: string;
2619
+ __type: "bigint";
2620
+ }>, bigint, {
2621
+ value: string;
2622
+ __type: "bigint";
2623
+ }>;
2624
+ vaultId: zod.ZodEffects<zod.ZodObject<{
2625
+ __type: zod.ZodLiteral<"bigint">;
2626
+ value: zod.ZodString;
2627
+ }, "strip", zod.ZodTypeAny, {
2628
+ value: string;
2629
+ __type: "bigint";
2630
+ }, {
2631
+ value: string;
2632
+ __type: "bigint";
2633
+ }>, bigint, {
2634
+ value: string;
2635
+ __type: "bigint";
2636
+ }>;
2637
+ amount: zod.ZodEffects<zod.ZodObject<{
2638
+ __type: zod.ZodLiteral<"bigint">;
2639
+ value: zod.ZodString;
2640
+ }, "strip", zod.ZodTypeAny, {
2641
+ value: string;
2642
+ __type: "bigint";
2643
+ }, {
2644
+ value: string;
2645
+ __type: "bigint";
2646
+ }>, bigint, {
2647
+ value: string;
2648
+ __type: "bigint";
2649
+ }>;
2650
+ zoneId: zod.ZodString;
2651
+ flightPlanId: zod.ZodNumber;
2652
+ campaigns: zod.ZodArray<zod.ZodString, "many">;
2653
+ captureStartTime: zod.ZodString;
2654
+ captureEndTime: zod.ZodString;
2655
+ requestor: zod.ZodString;
2656
+ }, zod.ZodAny, "strip">, zod.objectInputType<{
2657
+ id: zod.ZodEffects<zod.ZodObject<{
2658
+ __type: zod.ZodLiteral<"bigint">;
2659
+ value: zod.ZodString;
2660
+ }, "strip", zod.ZodTypeAny, {
2661
+ value: string;
2662
+ __type: "bigint";
2663
+ }, {
2664
+ value: string;
2665
+ __type: "bigint";
2666
+ }>, bigint, {
2667
+ value: string;
2668
+ __type: "bigint";
2669
+ }>;
2670
+ vaultId: zod.ZodEffects<zod.ZodObject<{
2671
+ __type: zod.ZodLiteral<"bigint">;
2672
+ value: zod.ZodString;
2673
+ }, "strip", zod.ZodTypeAny, {
2674
+ value: string;
2675
+ __type: "bigint";
2676
+ }, {
2677
+ value: string;
2678
+ __type: "bigint";
2679
+ }>, bigint, {
2680
+ value: string;
2681
+ __type: "bigint";
2682
+ }>;
2683
+ amount: zod.ZodEffects<zod.ZodObject<{
2684
+ __type: zod.ZodLiteral<"bigint">;
2685
+ value: zod.ZodString;
2686
+ }, "strip", zod.ZodTypeAny, {
2687
+ value: string;
2688
+ __type: "bigint";
2689
+ }, {
2690
+ value: string;
2691
+ __type: "bigint";
2692
+ }>, bigint, {
2693
+ value: string;
2694
+ __type: "bigint";
2695
+ }>;
2696
+ zoneId: zod.ZodString;
2697
+ flightPlanId: zod.ZodNumber;
2698
+ campaigns: zod.ZodArray<zod.ZodString, "many">;
2699
+ captureStartTime: zod.ZodString;
2700
+ captureEndTime: zod.ZodString;
2701
+ requestor: zod.ZodString;
2702
+ }, zod.ZodAny, "strip">>;
2703
+ }, zod.ZodAny, "strip"> | zod.objectOutputType<{
2704
+ id: zod.ZodString;
2705
+ event_type: zod.ZodLiteral<"protocol.mission.updated">;
2706
+ timestamp: zod.ZodString;
2707
+ data: zod.ZodObject<{
2708
+ id: zod.ZodEffects<zod.ZodObject<{
2709
+ __type: zod.ZodLiteral<"bigint">;
2710
+ value: zod.ZodString;
2711
+ }, "strip", zod.ZodTypeAny, {
2712
+ value: string;
2713
+ __type: "bigint";
2714
+ }, {
2715
+ value: string;
2716
+ __type: "bigint";
2717
+ }>, bigint, {
2718
+ value: string;
2719
+ __type: "bigint";
2720
+ }>;
2721
+ amount: zod.ZodOptional<zod.ZodEffects<zod.ZodObject<{
2722
+ __type: zod.ZodLiteral<"bigint">;
2723
+ value: zod.ZodString;
2724
+ }, "strip", zod.ZodTypeAny, {
2725
+ value: string;
2726
+ __type: "bigint";
2727
+ }, {
2728
+ value: string;
2729
+ __type: "bigint";
2730
+ }>, bigint, {
2731
+ value: string;
2732
+ __type: "bigint";
2733
+ }>>;
2734
+ isOpen: zod.ZodOptional<zod.ZodBoolean>;
2735
+ campaigns: zod.ZodOptional<zod.ZodArray<zod.ZodString, "many">>;
2736
+ }, "strip", zod.ZodAny, zod.objectOutputType<{
2737
+ id: zod.ZodEffects<zod.ZodObject<{
2738
+ __type: zod.ZodLiteral<"bigint">;
2739
+ value: zod.ZodString;
2740
+ }, "strip", zod.ZodTypeAny, {
2741
+ value: string;
2742
+ __type: "bigint";
2743
+ }, {
2744
+ value: string;
2745
+ __type: "bigint";
2746
+ }>, bigint, {
2747
+ value: string;
2748
+ __type: "bigint";
2749
+ }>;
2750
+ amount: zod.ZodOptional<zod.ZodEffects<zod.ZodObject<{
2751
+ __type: zod.ZodLiteral<"bigint">;
2752
+ value: zod.ZodString;
2753
+ }, "strip", zod.ZodTypeAny, {
2754
+ value: string;
2755
+ __type: "bigint";
2756
+ }, {
2757
+ value: string;
2758
+ __type: "bigint";
2759
+ }>, bigint, {
2760
+ value: string;
2761
+ __type: "bigint";
2762
+ }>>;
2763
+ isOpen: zod.ZodOptional<zod.ZodBoolean>;
2764
+ campaigns: zod.ZodOptional<zod.ZodArray<zod.ZodString, "many">>;
2765
+ }, zod.ZodAny, "strip">, zod.objectInputType<{
2766
+ id: zod.ZodEffects<zod.ZodObject<{
2767
+ __type: zod.ZodLiteral<"bigint">;
2768
+ value: zod.ZodString;
2769
+ }, "strip", zod.ZodTypeAny, {
2770
+ value: string;
2771
+ __type: "bigint";
2772
+ }, {
2773
+ value: string;
2774
+ __type: "bigint";
2775
+ }>, bigint, {
2776
+ value: string;
2777
+ __type: "bigint";
2778
+ }>;
2779
+ amount: zod.ZodOptional<zod.ZodEffects<zod.ZodObject<{
2780
+ __type: zod.ZodLiteral<"bigint">;
2781
+ value: zod.ZodString;
2782
+ }, "strip", zod.ZodTypeAny, {
2783
+ value: string;
2784
+ __type: "bigint";
2785
+ }, {
2786
+ value: string;
2787
+ __type: "bigint";
2788
+ }>, bigint, {
2789
+ value: string;
2790
+ __type: "bigint";
2791
+ }>>;
2792
+ isOpen: zod.ZodOptional<zod.ZodBoolean>;
2793
+ campaigns: zod.ZodOptional<zod.ZodArray<zod.ZodString, "many">>;
2794
+ }, zod.ZodAny, "strip">>;
2795
+ }, zod.ZodAny, "strip"> | zod.objectOutputType<{
2796
+ id: zod.ZodString;
2797
+ event_type: zod.ZodLiteral<"protocol.mission.paid">;
2798
+ timestamp: zod.ZodString;
2799
+ data: zod.ZodObject<{
2800
+ recipient: zod.ZodString;
2801
+ flightId: zod.ZodEffects<zod.ZodObject<{
2802
+ __type: zod.ZodLiteral<"bigint">;
2803
+ value: zod.ZodString;
2804
+ }, "strip", zod.ZodTypeAny, {
2805
+ value: string;
2806
+ __type: "bigint";
2807
+ }, {
2808
+ value: string;
2809
+ __type: "bigint";
2810
+ }>, bigint, {
2811
+ value: string;
2812
+ __type: "bigint";
2813
+ }>;
2814
+ missionId: zod.ZodEffects<zod.ZodObject<{
2815
+ __type: zod.ZodLiteral<"bigint">;
2816
+ value: zod.ZodString;
2817
+ }, "strip", zod.ZodTypeAny, {
2818
+ value: string;
2819
+ __type: "bigint";
2820
+ }, {
2821
+ value: string;
2822
+ __type: "bigint";
2823
+ }>, bigint, {
2824
+ value: string;
2825
+ __type: "bigint";
2826
+ }>;
2827
+ vaultId: zod.ZodEffects<zod.ZodObject<{
2828
+ __type: zod.ZodLiteral<"bigint">;
2829
+ value: zod.ZodString;
2830
+ }, "strip", zod.ZodTypeAny, {
2831
+ value: string;
2832
+ __type: "bigint";
2833
+ }, {
2834
+ value: string;
2835
+ __type: "bigint";
2836
+ }>, bigint, {
2837
+ value: string;
2838
+ __type: "bigint";
2839
+ }>;
2840
+ amount: zod.ZodEffects<zod.ZodObject<{
2841
+ __type: zod.ZodLiteral<"bigint">;
2842
+ value: zod.ZodString;
2843
+ }, "strip", zod.ZodTypeAny, {
2844
+ value: string;
2845
+ __type: "bigint";
2846
+ }, {
2847
+ value: string;
2848
+ __type: "bigint";
2849
+ }>, bigint, {
2850
+ value: string;
2851
+ __type: "bigint";
2852
+ }>;
2853
+ storageKey: zod.ZodString;
2854
+ }, "strip", zod.ZodAny, zod.objectOutputType<{
2855
+ recipient: zod.ZodString;
2856
+ flightId: zod.ZodEffects<zod.ZodObject<{
2857
+ __type: zod.ZodLiteral<"bigint">;
2858
+ value: zod.ZodString;
2859
+ }, "strip", zod.ZodTypeAny, {
2860
+ value: string;
2861
+ __type: "bigint";
2862
+ }, {
2863
+ value: string;
2864
+ __type: "bigint";
2865
+ }>, bigint, {
2866
+ value: string;
2867
+ __type: "bigint";
2868
+ }>;
2869
+ missionId: zod.ZodEffects<zod.ZodObject<{
2870
+ __type: zod.ZodLiteral<"bigint">;
2871
+ value: zod.ZodString;
2872
+ }, "strip", zod.ZodTypeAny, {
2873
+ value: string;
2874
+ __type: "bigint";
2875
+ }, {
2876
+ value: string;
2877
+ __type: "bigint";
2878
+ }>, bigint, {
2879
+ value: string;
2880
+ __type: "bigint";
2881
+ }>;
2882
+ vaultId: zod.ZodEffects<zod.ZodObject<{
2883
+ __type: zod.ZodLiteral<"bigint">;
2884
+ value: zod.ZodString;
2885
+ }, "strip", zod.ZodTypeAny, {
2886
+ value: string;
2887
+ __type: "bigint";
2888
+ }, {
2889
+ value: string;
2890
+ __type: "bigint";
2891
+ }>, bigint, {
2892
+ value: string;
2893
+ __type: "bigint";
2894
+ }>;
2895
+ amount: zod.ZodEffects<zod.ZodObject<{
2896
+ __type: zod.ZodLiteral<"bigint">;
2897
+ value: zod.ZodString;
2898
+ }, "strip", zod.ZodTypeAny, {
2899
+ value: string;
2900
+ __type: "bigint";
2901
+ }, {
2902
+ value: string;
2903
+ __type: "bigint";
2904
+ }>, bigint, {
2905
+ value: string;
2906
+ __type: "bigint";
2907
+ }>;
2908
+ storageKey: zod.ZodString;
2909
+ }, zod.ZodAny, "strip">, zod.objectInputType<{
2910
+ recipient: zod.ZodString;
2911
+ flightId: zod.ZodEffects<zod.ZodObject<{
2912
+ __type: zod.ZodLiteral<"bigint">;
2913
+ value: zod.ZodString;
2914
+ }, "strip", zod.ZodTypeAny, {
2915
+ value: string;
2916
+ __type: "bigint";
2917
+ }, {
2918
+ value: string;
2919
+ __type: "bigint";
2920
+ }>, bigint, {
2921
+ value: string;
2922
+ __type: "bigint";
2923
+ }>;
2924
+ missionId: zod.ZodEffects<zod.ZodObject<{
2925
+ __type: zod.ZodLiteral<"bigint">;
2926
+ value: zod.ZodString;
2927
+ }, "strip", zod.ZodTypeAny, {
2928
+ value: string;
2929
+ __type: "bigint";
2930
+ }, {
2931
+ value: string;
2932
+ __type: "bigint";
2933
+ }>, bigint, {
2934
+ value: string;
2935
+ __type: "bigint";
2936
+ }>;
2937
+ vaultId: zod.ZodEffects<zod.ZodObject<{
2938
+ __type: zod.ZodLiteral<"bigint">;
2939
+ value: zod.ZodString;
2940
+ }, "strip", zod.ZodTypeAny, {
2941
+ value: string;
2942
+ __type: "bigint";
2943
+ }, {
2944
+ value: string;
2945
+ __type: "bigint";
2946
+ }>, bigint, {
2947
+ value: string;
2948
+ __type: "bigint";
2949
+ }>;
2950
+ amount: zod.ZodEffects<zod.ZodObject<{
2951
+ __type: zod.ZodLiteral<"bigint">;
2952
+ value: zod.ZodString;
2953
+ }, "strip", zod.ZodTypeAny, {
2954
+ value: string;
2955
+ __type: "bigint";
2956
+ }, {
2957
+ value: string;
2958
+ __type: "bigint";
2959
+ }>, bigint, {
2960
+ value: string;
2961
+ __type: "bigint";
2962
+ }>;
2963
+ storageKey: zod.ZodString;
2964
+ }, zod.ZodAny, "strip">>;
2965
+ }, zod.ZodAny, "strip"> | zod.objectOutputType<{
2966
+ id: zod.ZodString;
2967
+ event_type: zod.ZodLiteral<"protocol.flight.submitted">;
2968
+ timestamp: zod.ZodString;
2969
+ data: zod.ZodObject<{
2970
+ storageKey: zod.ZodString;
2971
+ pilotAddress: zod.ZodString;
2972
+ flightManifestUri: zod.ZodString;
2973
+ missionId: zod.ZodEffects<zod.ZodObject<{
2974
+ __type: zod.ZodLiteral<"bigint">;
2975
+ value: zod.ZodString;
2976
+ }, "strip", zod.ZodTypeAny, {
2977
+ value: string;
2978
+ __type: "bigint";
2979
+ }, {
2980
+ value: string;
2981
+ __type: "bigint";
2982
+ }>, bigint, {
2983
+ value: string;
2984
+ __type: "bigint";
2985
+ }>;
2986
+ }, "strip", zod.ZodAny, zod.objectOutputType<{
2987
+ storageKey: zod.ZodString;
2988
+ pilotAddress: zod.ZodString;
2989
+ flightManifestUri: zod.ZodString;
2990
+ missionId: zod.ZodEffects<zod.ZodObject<{
2991
+ __type: zod.ZodLiteral<"bigint">;
2992
+ value: zod.ZodString;
2993
+ }, "strip", zod.ZodTypeAny, {
2994
+ value: string;
2995
+ __type: "bigint";
2996
+ }, {
2997
+ value: string;
2998
+ __type: "bigint";
2999
+ }>, bigint, {
3000
+ value: string;
3001
+ __type: "bigint";
3002
+ }>;
3003
+ }, zod.ZodAny, "strip">, zod.objectInputType<{
3004
+ storageKey: zod.ZodString;
3005
+ pilotAddress: zod.ZodString;
3006
+ flightManifestUri: zod.ZodString;
3007
+ missionId: zod.ZodEffects<zod.ZodObject<{
3008
+ __type: zod.ZodLiteral<"bigint">;
3009
+ value: zod.ZodString;
3010
+ }, "strip", zod.ZodTypeAny, {
3011
+ value: string;
3012
+ __type: "bigint";
3013
+ }, {
3014
+ value: string;
3015
+ __type: "bigint";
3016
+ }>, bigint, {
3017
+ value: string;
3018
+ __type: "bigint";
3019
+ }>;
3020
+ }, zod.ZodAny, "strip">>;
3021
+ }, zod.ZodAny, "strip"> | zod.objectOutputType<{
3022
+ id: zod.ZodString;
3023
+ event_type: zod.ZodLiteral<"protocol.flight.reviewed">;
3024
+ timestamp: zod.ZodString;
3025
+ data: zod.ZodObject<{
3026
+ flightId: zod.ZodEffects<zod.ZodObject<{
3027
+ __type: zod.ZodLiteral<"bigint">;
3028
+ value: zod.ZodString;
3029
+ }, "strip", zod.ZodTypeAny, {
3030
+ value: string;
3031
+ __type: "bigint";
3032
+ }, {
3033
+ value: string;
3034
+ __type: "bigint";
3035
+ }>, bigint, {
3036
+ value: string;
3037
+ __type: "bigint";
3038
+ }>;
3039
+ owner: zod.ZodString;
3040
+ isApproved: zod.ZodBoolean;
3041
+ validationLogUri: zod.ZodString;
3042
+ validator: zod.ZodString;
3043
+ filesHash: zod.ZodString;
3044
+ storageKey: zod.ZodString;
3045
+ missionId: zod.ZodEffects<zod.ZodObject<{
3046
+ __type: zod.ZodLiteral<"bigint">;
3047
+ value: zod.ZodString;
3048
+ }, "strip", zod.ZodTypeAny, {
3049
+ value: string;
3050
+ __type: "bigint";
3051
+ }, {
3052
+ value: string;
3053
+ __type: "bigint";
3054
+ }>, bigint, {
3055
+ value: string;
3056
+ __type: "bigint";
3057
+ }>;
3058
+ }, "strip", zod.ZodAny, zod.objectOutputType<{
3059
+ flightId: zod.ZodEffects<zod.ZodObject<{
3060
+ __type: zod.ZodLiteral<"bigint">;
3061
+ value: zod.ZodString;
3062
+ }, "strip", zod.ZodTypeAny, {
3063
+ value: string;
3064
+ __type: "bigint";
3065
+ }, {
3066
+ value: string;
3067
+ __type: "bigint";
3068
+ }>, bigint, {
3069
+ value: string;
3070
+ __type: "bigint";
3071
+ }>;
3072
+ owner: zod.ZodString;
3073
+ isApproved: zod.ZodBoolean;
3074
+ validationLogUri: zod.ZodString;
3075
+ validator: zod.ZodString;
3076
+ filesHash: zod.ZodString;
3077
+ storageKey: zod.ZodString;
3078
+ missionId: zod.ZodEffects<zod.ZodObject<{
3079
+ __type: zod.ZodLiteral<"bigint">;
3080
+ value: zod.ZodString;
3081
+ }, "strip", zod.ZodTypeAny, {
3082
+ value: string;
3083
+ __type: "bigint";
3084
+ }, {
3085
+ value: string;
3086
+ __type: "bigint";
3087
+ }>, bigint, {
3088
+ value: string;
3089
+ __type: "bigint";
3090
+ }>;
3091
+ }, zod.ZodAny, "strip">, zod.objectInputType<{
3092
+ flightId: zod.ZodEffects<zod.ZodObject<{
3093
+ __type: zod.ZodLiteral<"bigint">;
3094
+ value: zod.ZodString;
3095
+ }, "strip", zod.ZodTypeAny, {
3096
+ value: string;
3097
+ __type: "bigint";
3098
+ }, {
3099
+ value: string;
3100
+ __type: "bigint";
3101
+ }>, bigint, {
3102
+ value: string;
3103
+ __type: "bigint";
3104
+ }>;
3105
+ owner: zod.ZodString;
3106
+ isApproved: zod.ZodBoolean;
3107
+ validationLogUri: zod.ZodString;
3108
+ validator: zod.ZodString;
3109
+ filesHash: zod.ZodString;
3110
+ storageKey: zod.ZodString;
3111
+ missionId: zod.ZodEffects<zod.ZodObject<{
3112
+ __type: zod.ZodLiteral<"bigint">;
3113
+ value: zod.ZodString;
3114
+ }, "strip", zod.ZodTypeAny, {
3115
+ value: string;
3116
+ __type: "bigint";
3117
+ }, {
3118
+ value: string;
3119
+ __type: "bigint";
3120
+ }>, bigint, {
3121
+ value: string;
3122
+ __type: "bigint";
3123
+ }>;
3124
+ }, zod.ZodAny, "strip">>;
3125
+ }, zod.ZodAny, "strip">;
1328
3126
 
1329
- export { type ApiControllerGetHelloData, type ApiControllerGetHelloResponses, type ApiTokenControllerCreateTokenData, type ApiTokenControllerCreateTokenErrors, type ApiTokenControllerCreateTokenResponse, type ApiTokenControllerCreateTokenResponses, type ApiTokenControllerDeleteTokenData, type ApiTokenControllerDeleteTokenErrors, type ApiTokenControllerDeleteTokenResponses, type ApiTokenControllerGetTokenData, type ApiTokenControllerGetTokenErrors, type ApiTokenControllerGetTokenResponses, type ApiTokenControllerUpdateTokenData, type ApiTokenControllerUpdateTokenErrors, type ApiTokenControllerUpdateTokenResponse, type ApiTokenControllerUpdateTokenResponses, type Auth, type Client, type ClientOptions$1 as ClientOptions, type ConditionsControllerGetSunAltitudeTimeLimitsData, type ConditionsControllerGetSunAltitudeTimeLimitsResponse, type ConditionsControllerGetSunAltitudeTimeLimitsResponses, type Config, type CreateApiTokenRequestDto, type CreateApiTokenResponseDto, type CreateClientConfig, type CreateFileRequestDto, type CreateFileResponseDto, type CreateMissionRequestDto, type CreateMissionResponseDto, type CreateQuoteRequestDto, type CreateWebhookBody, type CreateWebhookResponse, type DeleteWebhookResponse, Event, type FlightDto, type FlightReviewedEvent, type FlightSubmittedEvent, type FlightsControllerCreatePresignedUrlsData, type FlightsControllerCreatePresignedUrlsErrors, type FlightsControllerCreatePresignedUrlsResponse, type FlightsControllerCreatePresignedUrlsResponses, type FlightsControllerGenerateStorageKeyData, type FlightsControllerGenerateStorageKeyErrors, type FlightsControllerGenerateStorageKeyResponse, type FlightsControllerGenerateStorageKeyResponses, type FlightsControllerGetFlightData, type FlightsControllerGetFlightErrors, type FlightsControllerGetFlightResponse, type FlightsControllerGetFlightResponses, type FlightsControllerValidateFlightData, type FlightsControllerValidateFlightErrors, type FlightsControllerValidateFlightResponse, type FlightsControllerValidateFlightResponses, type GetProvenanceCryptoKeyResponse, type GetTimeLimitsForSunAltitudeResponse, type GetWebhookResponse, type GetWebhookStatusResponse, type GetWebhooksResponse, type KeysControllerGetProvenanceCryptoKeyData, type KeysControllerGetProvenanceCryptoKeyResponse, type KeysControllerGetProvenanceCryptoKeyResponses, type MissionCreatedEvent, type MissionPaidEvent, type MissionUpdatedEvent, type MissionsControllerCreateMissionsData, type MissionsControllerCreateMissionsErrors, type MissionsControllerCreateMissionsResponse, type MissionsControllerCreateMissionsResponses, type MissionsControllerUpdateMissionsData, type MissionsControllerUpdateMissionsResponse, type MissionsControllerUpdateMissionsResponses, type Options, type OptionsLegacyParser, type QuerySerializerOptions, type QuotesControllerCreateQuoteData, type QuotesControllerCreateQuoteErrors, type QuotesControllerCreateQuoteResponses, type QuotesControllerGetQuoteData, type QuotesControllerGetQuoteErrors, type QuotesControllerGetQuoteResponses, type RegenerateWebhookSecretResponseDto, type RequestOptions, type RequestResult, type ResponseStyle, type SchemaControllerGetEventSchemaData, type SchemaControllerGetEventSchemaResponses, type TDataShape, type TestEvent, type TestWebhookResponse, type UpdateApiTokenRequestDto, type UpdateApiTokenResponseDto, type UpdateMissionsRequestDto, type UpdateMissionsResponseDto, type UpdateWebhookBody, type UpdateWebhookResponse, type ValidateFlightRequestDto, type ValidateFlightResponseDto, type WebhooksControllerCreateData, type WebhooksControllerCreateErrors, type WebhooksControllerCreateResponse, type WebhooksControllerCreateResponses, type WebhooksControllerDeleteData, type WebhooksControllerDeleteErrors, type WebhooksControllerDeleteResponse, type WebhooksControllerDeleteResponses, type WebhooksControllerGetData, type WebhooksControllerGetErrors, type WebhooksControllerGetManyData, type WebhooksControllerGetManyErrors, type WebhooksControllerGetManyResponse, type WebhooksControllerGetManyResponses, type WebhooksControllerGetResponse, type WebhooksControllerGetResponses, type WebhooksControllerGetStatusData, type WebhooksControllerGetStatusErrors, type WebhooksControllerGetStatusResponse, type WebhooksControllerGetStatusResponses, type WebhooksControllerRegenerateSecretData, type WebhooksControllerRegenerateSecretErrors, type WebhooksControllerRegenerateSecretResponse, type WebhooksControllerRegenerateSecretResponses, type WebhooksControllerTestData, type WebhooksControllerTestErrors, type WebhooksControllerTestResponse, type WebhooksControllerTestResponses, type WebhooksControllerUpdateData, type WebhooksControllerUpdateErrors, type WebhooksControllerUpdateResponse, type WebhooksControllerUpdateResponses, apiControllerGetHello, apiTokenControllerCreateToken, apiTokenControllerDeleteToken, apiTokenControllerGetToken, apiTokenControllerUpdateToken, buildClientParams, conditionsControllerGetSunAltitudeTimeLimits, createClient, createConfig, flightsControllerCreatePresignedUrls, flightsControllerGenerateStorageKey, flightsControllerGetFlight, flightsControllerValidateFlight, formDataBodySerializer, jsonBodySerializer, keysControllerGetProvenanceCryptoKey, mergeHeaders, missionsControllerCreateMissions, missionsControllerUpdateMissions, parseWebhookEvent, quotesControllerCreateQuote, quotesControllerGetQuote, schemaControllerGetEventSchema, urlSearchParamsBodySerializer, webhooksControllerCreate, webhooksControllerDelete, webhooksControllerGet, webhooksControllerGetMany, webhooksControllerGetStatus, webhooksControllerRegenerateSecret, webhooksControllerTest, webhooksControllerUpdate };
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 };