@layer-drone/protocol 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +401 -6
- package/dist/index.d.ts +401 -6
- package/dist/index.js +23 -0
- package/dist/index.mjs +23 -0
- package/package.json +1 -1
- package/src/client/types.gen.ts +5 -0
- package/src/event/types.gen.ts +29 -0
package/dist/index.d.mts
CHANGED
|
@@ -803,7 +803,7 @@ type CreateVaultsResponseDto = {
|
|
|
803
803
|
type CreateWebhookBody = {
|
|
804
804
|
name: string;
|
|
805
805
|
url: string;
|
|
806
|
-
event_types: Array<"test" | "protocol.mission.created" | "protocol.mission.updated" | "protocol.mission.paid" | "protocol.flight.submitted" | "protocol.flight.reviewed" | "*">;
|
|
806
|
+
event_types: Array<"test" | "protocol.mission.created" | "protocol.mission.updated" | "protocol.mission.paid" | "protocol.flight.submitted" | "protocol.flight.reviewed" | "protocol.zone" | "*">;
|
|
807
807
|
active: boolean;
|
|
808
808
|
};
|
|
809
809
|
type CreateWebhookResponse = {
|
|
@@ -814,7 +814,7 @@ type GetWebhooksResponse = Array<{
|
|
|
814
814
|
id: number;
|
|
815
815
|
name: string;
|
|
816
816
|
url: string;
|
|
817
|
-
event_types: Array<"test" | "protocol.mission.created" | "protocol.mission.updated" | "protocol.mission.paid" | "protocol.flight.submitted" | "protocol.flight.reviewed" | "*">;
|
|
817
|
+
event_types: Array<"test" | "protocol.mission.created" | "protocol.mission.updated" | "protocol.mission.paid" | "protocol.flight.submitted" | "protocol.flight.reviewed" | "protocol.zone" | "*">;
|
|
818
818
|
active: boolean;
|
|
819
819
|
failure_count: number;
|
|
820
820
|
last_failure_reason: string;
|
|
@@ -826,7 +826,7 @@ type GetWebhookResponse = {
|
|
|
826
826
|
id: number;
|
|
827
827
|
name: string;
|
|
828
828
|
url: string;
|
|
829
|
-
event_types: Array<"test" | "protocol.mission.created" | "protocol.mission.updated" | "protocol.mission.paid" | "protocol.flight.submitted" | "protocol.flight.reviewed" | "*">;
|
|
829
|
+
event_types: Array<"test" | "protocol.mission.created" | "protocol.mission.updated" | "protocol.mission.paid" | "protocol.flight.submitted" | "protocol.flight.reviewed" | "protocol.zone" | "*">;
|
|
830
830
|
active: boolean;
|
|
831
831
|
failure_count: number;
|
|
832
832
|
last_failure_reason: string;
|
|
@@ -837,14 +837,14 @@ type GetWebhookResponse = {
|
|
|
837
837
|
type UpdateWebhookBody = {
|
|
838
838
|
name?: string;
|
|
839
839
|
url?: string;
|
|
840
|
-
event_types?: Array<"test" | "protocol.mission.created" | "protocol.mission.updated" | "protocol.mission.paid" | "protocol.flight.submitted" | "protocol.flight.reviewed" | "*">;
|
|
840
|
+
event_types?: Array<"test" | "protocol.mission.created" | "protocol.mission.updated" | "protocol.mission.paid" | "protocol.flight.submitted" | "protocol.flight.reviewed" | "protocol.zone" | "*">;
|
|
841
841
|
active?: boolean;
|
|
842
842
|
};
|
|
843
843
|
type UpdateWebhookResponse = {
|
|
844
844
|
id: number;
|
|
845
845
|
name: string;
|
|
846
846
|
url: string;
|
|
847
|
-
event_types: Array<"test" | "protocol.mission.created" | "protocol.mission.updated" | "protocol.mission.paid" | "protocol.flight.submitted" | "protocol.flight.reviewed" | "*">;
|
|
847
|
+
event_types: Array<"test" | "protocol.mission.created" | "protocol.mission.updated" | "protocol.mission.paid" | "protocol.flight.submitted" | "protocol.flight.reviewed" | "protocol.zone" | "*">;
|
|
848
848
|
active: boolean;
|
|
849
849
|
failure_count: number;
|
|
850
850
|
last_failure_reason: string;
|
|
@@ -4949,6 +4949,300 @@ declare const Event: z.ZodUnion<[z.ZodObject<{
|
|
|
4949
4949
|
__type: "bigint";
|
|
4950
4950
|
}>;
|
|
4951
4951
|
}, z.ZodAny, "strip">>;
|
|
4952
|
+
}, z.ZodAny, "strip">>, z.ZodObject<{
|
|
4953
|
+
id: z.ZodString;
|
|
4954
|
+
event_type: z.ZodLiteral<"protocol.zone">;
|
|
4955
|
+
timestamp: z.ZodString;
|
|
4956
|
+
data: z.ZodObject<{
|
|
4957
|
+
version: z.ZodLiteral<1>;
|
|
4958
|
+
data: z.ZodObject<{
|
|
4959
|
+
id: z.ZodString;
|
|
4960
|
+
region_id: z.ZodNumber;
|
|
4961
|
+
is_flyable: z.ZodBoolean;
|
|
4962
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
4963
|
+
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
4964
|
+
id: z.ZodString;
|
|
4965
|
+
region_id: z.ZodNumber;
|
|
4966
|
+
is_flyable: z.ZodBoolean;
|
|
4967
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
4968
|
+
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
4969
|
+
id: z.ZodString;
|
|
4970
|
+
region_id: z.ZodNumber;
|
|
4971
|
+
is_flyable: z.ZodBoolean;
|
|
4972
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
4973
|
+
}, z.ZodAny, "strip">>;
|
|
4974
|
+
changes: z.ZodOptional<z.ZodObject<{
|
|
4975
|
+
region_id: z.ZodOptional<z.ZodNumber>;
|
|
4976
|
+
is_flyable: z.ZodOptional<z.ZodBoolean>;
|
|
4977
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
4978
|
+
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
4979
|
+
region_id: z.ZodOptional<z.ZodNumber>;
|
|
4980
|
+
is_flyable: z.ZodOptional<z.ZodBoolean>;
|
|
4981
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
4982
|
+
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
4983
|
+
region_id: z.ZodOptional<z.ZodNumber>;
|
|
4984
|
+
is_flyable: z.ZodOptional<z.ZodBoolean>;
|
|
4985
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
4986
|
+
}, z.ZodAny, "strip">>>;
|
|
4987
|
+
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
4988
|
+
version: z.ZodLiteral<1>;
|
|
4989
|
+
data: z.ZodObject<{
|
|
4990
|
+
id: z.ZodString;
|
|
4991
|
+
region_id: z.ZodNumber;
|
|
4992
|
+
is_flyable: z.ZodBoolean;
|
|
4993
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
4994
|
+
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
4995
|
+
id: z.ZodString;
|
|
4996
|
+
region_id: z.ZodNumber;
|
|
4997
|
+
is_flyable: z.ZodBoolean;
|
|
4998
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
4999
|
+
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
5000
|
+
id: z.ZodString;
|
|
5001
|
+
region_id: z.ZodNumber;
|
|
5002
|
+
is_flyable: z.ZodBoolean;
|
|
5003
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
5004
|
+
}, z.ZodAny, "strip">>;
|
|
5005
|
+
changes: z.ZodOptional<z.ZodObject<{
|
|
5006
|
+
region_id: z.ZodOptional<z.ZodNumber>;
|
|
5007
|
+
is_flyable: z.ZodOptional<z.ZodBoolean>;
|
|
5008
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
5009
|
+
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
5010
|
+
region_id: z.ZodOptional<z.ZodNumber>;
|
|
5011
|
+
is_flyable: z.ZodOptional<z.ZodBoolean>;
|
|
5012
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
5013
|
+
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
5014
|
+
region_id: z.ZodOptional<z.ZodNumber>;
|
|
5015
|
+
is_flyable: z.ZodOptional<z.ZodBoolean>;
|
|
5016
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
5017
|
+
}, z.ZodAny, "strip">>>;
|
|
5018
|
+
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
5019
|
+
version: z.ZodLiteral<1>;
|
|
5020
|
+
data: z.ZodObject<{
|
|
5021
|
+
id: z.ZodString;
|
|
5022
|
+
region_id: z.ZodNumber;
|
|
5023
|
+
is_flyable: z.ZodBoolean;
|
|
5024
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
5025
|
+
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
5026
|
+
id: z.ZodString;
|
|
5027
|
+
region_id: z.ZodNumber;
|
|
5028
|
+
is_flyable: z.ZodBoolean;
|
|
5029
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
5030
|
+
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
5031
|
+
id: z.ZodString;
|
|
5032
|
+
region_id: z.ZodNumber;
|
|
5033
|
+
is_flyable: z.ZodBoolean;
|
|
5034
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
5035
|
+
}, z.ZodAny, "strip">>;
|
|
5036
|
+
changes: z.ZodOptional<z.ZodObject<{
|
|
5037
|
+
region_id: z.ZodOptional<z.ZodNumber>;
|
|
5038
|
+
is_flyable: z.ZodOptional<z.ZodBoolean>;
|
|
5039
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
5040
|
+
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
5041
|
+
region_id: z.ZodOptional<z.ZodNumber>;
|
|
5042
|
+
is_flyable: z.ZodOptional<z.ZodBoolean>;
|
|
5043
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
5044
|
+
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
5045
|
+
region_id: z.ZodOptional<z.ZodNumber>;
|
|
5046
|
+
is_flyable: z.ZodOptional<z.ZodBoolean>;
|
|
5047
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
5048
|
+
}, z.ZodAny, "strip">>>;
|
|
5049
|
+
}, z.ZodAny, "strip">>;
|
|
5050
|
+
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
5051
|
+
id: z.ZodString;
|
|
5052
|
+
event_type: z.ZodLiteral<"protocol.zone">;
|
|
5053
|
+
timestamp: z.ZodString;
|
|
5054
|
+
data: z.ZodObject<{
|
|
5055
|
+
version: z.ZodLiteral<1>;
|
|
5056
|
+
data: z.ZodObject<{
|
|
5057
|
+
id: z.ZodString;
|
|
5058
|
+
region_id: z.ZodNumber;
|
|
5059
|
+
is_flyable: z.ZodBoolean;
|
|
5060
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
5061
|
+
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
5062
|
+
id: z.ZodString;
|
|
5063
|
+
region_id: z.ZodNumber;
|
|
5064
|
+
is_flyable: z.ZodBoolean;
|
|
5065
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
5066
|
+
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
5067
|
+
id: z.ZodString;
|
|
5068
|
+
region_id: z.ZodNumber;
|
|
5069
|
+
is_flyable: z.ZodBoolean;
|
|
5070
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
5071
|
+
}, z.ZodAny, "strip">>;
|
|
5072
|
+
changes: z.ZodOptional<z.ZodObject<{
|
|
5073
|
+
region_id: z.ZodOptional<z.ZodNumber>;
|
|
5074
|
+
is_flyable: z.ZodOptional<z.ZodBoolean>;
|
|
5075
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
5076
|
+
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
5077
|
+
region_id: z.ZodOptional<z.ZodNumber>;
|
|
5078
|
+
is_flyable: z.ZodOptional<z.ZodBoolean>;
|
|
5079
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
5080
|
+
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
5081
|
+
region_id: z.ZodOptional<z.ZodNumber>;
|
|
5082
|
+
is_flyable: z.ZodOptional<z.ZodBoolean>;
|
|
5083
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
5084
|
+
}, z.ZodAny, "strip">>>;
|
|
5085
|
+
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
5086
|
+
version: z.ZodLiteral<1>;
|
|
5087
|
+
data: z.ZodObject<{
|
|
5088
|
+
id: z.ZodString;
|
|
5089
|
+
region_id: z.ZodNumber;
|
|
5090
|
+
is_flyable: z.ZodBoolean;
|
|
5091
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
5092
|
+
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
5093
|
+
id: z.ZodString;
|
|
5094
|
+
region_id: z.ZodNumber;
|
|
5095
|
+
is_flyable: z.ZodBoolean;
|
|
5096
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
5097
|
+
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
5098
|
+
id: z.ZodString;
|
|
5099
|
+
region_id: z.ZodNumber;
|
|
5100
|
+
is_flyable: z.ZodBoolean;
|
|
5101
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
5102
|
+
}, z.ZodAny, "strip">>;
|
|
5103
|
+
changes: z.ZodOptional<z.ZodObject<{
|
|
5104
|
+
region_id: z.ZodOptional<z.ZodNumber>;
|
|
5105
|
+
is_flyable: z.ZodOptional<z.ZodBoolean>;
|
|
5106
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
5107
|
+
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
5108
|
+
region_id: z.ZodOptional<z.ZodNumber>;
|
|
5109
|
+
is_flyable: z.ZodOptional<z.ZodBoolean>;
|
|
5110
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
5111
|
+
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
5112
|
+
region_id: z.ZodOptional<z.ZodNumber>;
|
|
5113
|
+
is_flyable: z.ZodOptional<z.ZodBoolean>;
|
|
5114
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
5115
|
+
}, z.ZodAny, "strip">>>;
|
|
5116
|
+
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
5117
|
+
version: z.ZodLiteral<1>;
|
|
5118
|
+
data: z.ZodObject<{
|
|
5119
|
+
id: z.ZodString;
|
|
5120
|
+
region_id: z.ZodNumber;
|
|
5121
|
+
is_flyable: z.ZodBoolean;
|
|
5122
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
5123
|
+
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
5124
|
+
id: z.ZodString;
|
|
5125
|
+
region_id: z.ZodNumber;
|
|
5126
|
+
is_flyable: z.ZodBoolean;
|
|
5127
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
5128
|
+
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
5129
|
+
id: z.ZodString;
|
|
5130
|
+
region_id: z.ZodNumber;
|
|
5131
|
+
is_flyable: z.ZodBoolean;
|
|
5132
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
5133
|
+
}, z.ZodAny, "strip">>;
|
|
5134
|
+
changes: z.ZodOptional<z.ZodObject<{
|
|
5135
|
+
region_id: z.ZodOptional<z.ZodNumber>;
|
|
5136
|
+
is_flyable: z.ZodOptional<z.ZodBoolean>;
|
|
5137
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
5138
|
+
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
5139
|
+
region_id: z.ZodOptional<z.ZodNumber>;
|
|
5140
|
+
is_flyable: z.ZodOptional<z.ZodBoolean>;
|
|
5141
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
5142
|
+
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
5143
|
+
region_id: z.ZodOptional<z.ZodNumber>;
|
|
5144
|
+
is_flyable: z.ZodOptional<z.ZodBoolean>;
|
|
5145
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
5146
|
+
}, z.ZodAny, "strip">>>;
|
|
5147
|
+
}, z.ZodAny, "strip">>;
|
|
5148
|
+
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
5149
|
+
id: z.ZodString;
|
|
5150
|
+
event_type: z.ZodLiteral<"protocol.zone">;
|
|
5151
|
+
timestamp: z.ZodString;
|
|
5152
|
+
data: z.ZodObject<{
|
|
5153
|
+
version: z.ZodLiteral<1>;
|
|
5154
|
+
data: z.ZodObject<{
|
|
5155
|
+
id: z.ZodString;
|
|
5156
|
+
region_id: z.ZodNumber;
|
|
5157
|
+
is_flyable: z.ZodBoolean;
|
|
5158
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
5159
|
+
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
5160
|
+
id: z.ZodString;
|
|
5161
|
+
region_id: z.ZodNumber;
|
|
5162
|
+
is_flyable: z.ZodBoolean;
|
|
5163
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
5164
|
+
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
5165
|
+
id: z.ZodString;
|
|
5166
|
+
region_id: z.ZodNumber;
|
|
5167
|
+
is_flyable: z.ZodBoolean;
|
|
5168
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
5169
|
+
}, z.ZodAny, "strip">>;
|
|
5170
|
+
changes: z.ZodOptional<z.ZodObject<{
|
|
5171
|
+
region_id: z.ZodOptional<z.ZodNumber>;
|
|
5172
|
+
is_flyable: z.ZodOptional<z.ZodBoolean>;
|
|
5173
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
5174
|
+
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
5175
|
+
region_id: z.ZodOptional<z.ZodNumber>;
|
|
5176
|
+
is_flyable: z.ZodOptional<z.ZodBoolean>;
|
|
5177
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
5178
|
+
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
5179
|
+
region_id: z.ZodOptional<z.ZodNumber>;
|
|
5180
|
+
is_flyable: z.ZodOptional<z.ZodBoolean>;
|
|
5181
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
5182
|
+
}, z.ZodAny, "strip">>>;
|
|
5183
|
+
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
5184
|
+
version: z.ZodLiteral<1>;
|
|
5185
|
+
data: z.ZodObject<{
|
|
5186
|
+
id: z.ZodString;
|
|
5187
|
+
region_id: z.ZodNumber;
|
|
5188
|
+
is_flyable: z.ZodBoolean;
|
|
5189
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
5190
|
+
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
5191
|
+
id: z.ZodString;
|
|
5192
|
+
region_id: z.ZodNumber;
|
|
5193
|
+
is_flyable: z.ZodBoolean;
|
|
5194
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
5195
|
+
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
5196
|
+
id: z.ZodString;
|
|
5197
|
+
region_id: z.ZodNumber;
|
|
5198
|
+
is_flyable: z.ZodBoolean;
|
|
5199
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
5200
|
+
}, z.ZodAny, "strip">>;
|
|
5201
|
+
changes: z.ZodOptional<z.ZodObject<{
|
|
5202
|
+
region_id: z.ZodOptional<z.ZodNumber>;
|
|
5203
|
+
is_flyable: z.ZodOptional<z.ZodBoolean>;
|
|
5204
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
5205
|
+
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
5206
|
+
region_id: z.ZodOptional<z.ZodNumber>;
|
|
5207
|
+
is_flyable: z.ZodOptional<z.ZodBoolean>;
|
|
5208
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
5209
|
+
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
5210
|
+
region_id: z.ZodOptional<z.ZodNumber>;
|
|
5211
|
+
is_flyable: z.ZodOptional<z.ZodBoolean>;
|
|
5212
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
5213
|
+
}, z.ZodAny, "strip">>>;
|
|
5214
|
+
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
5215
|
+
version: z.ZodLiteral<1>;
|
|
5216
|
+
data: z.ZodObject<{
|
|
5217
|
+
id: z.ZodString;
|
|
5218
|
+
region_id: z.ZodNumber;
|
|
5219
|
+
is_flyable: z.ZodBoolean;
|
|
5220
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
5221
|
+
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
5222
|
+
id: z.ZodString;
|
|
5223
|
+
region_id: z.ZodNumber;
|
|
5224
|
+
is_flyable: z.ZodBoolean;
|
|
5225
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
5226
|
+
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
5227
|
+
id: z.ZodString;
|
|
5228
|
+
region_id: z.ZodNumber;
|
|
5229
|
+
is_flyable: z.ZodBoolean;
|
|
5230
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
5231
|
+
}, z.ZodAny, "strip">>;
|
|
5232
|
+
changes: z.ZodOptional<z.ZodObject<{
|
|
5233
|
+
region_id: z.ZodOptional<z.ZodNumber>;
|
|
5234
|
+
is_flyable: z.ZodOptional<z.ZodBoolean>;
|
|
5235
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
5236
|
+
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
5237
|
+
region_id: z.ZodOptional<z.ZodNumber>;
|
|
5238
|
+
is_flyable: z.ZodOptional<z.ZodBoolean>;
|
|
5239
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
5240
|
+
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
5241
|
+
region_id: z.ZodOptional<z.ZodNumber>;
|
|
5242
|
+
is_flyable: z.ZodOptional<z.ZodBoolean>;
|
|
5243
|
+
deleted_at: z.ZodOptional<z.ZodString>;
|
|
5244
|
+
}, z.ZodAny, "strip">>>;
|
|
5245
|
+
}, z.ZodAny, "strip">>;
|
|
4952
5246
|
}, z.ZodAny, "strip">>]>;
|
|
4953
5247
|
type Event = z.infer<typeof Event>;
|
|
4954
5248
|
type TestEvent = Extract<Event, {
|
|
@@ -4969,6 +5263,9 @@ type FlightSubmittedEvent = Extract<Event, {
|
|
|
4969
5263
|
type FlightReviewedEvent = Extract<Event, {
|
|
4970
5264
|
event_type: "protocol.flight.reviewed";
|
|
4971
5265
|
}>;
|
|
5266
|
+
type ZoneEvent = Extract<Event, {
|
|
5267
|
+
event_type: "protocol.zone";
|
|
5268
|
+
}>;
|
|
4972
5269
|
|
|
4973
5270
|
declare const WEBHOOK_SECRET_HEADER = "X-Webhook-Secret";
|
|
4974
5271
|
declare const WEBHOOK_PREVIOUS_SECRET_HEADER = "X-Webhook-Previous-Secret";
|
|
@@ -5576,6 +5873,104 @@ declare function parseWebhookEvent(req: Request$1, webhookSecret: string): zod.o
|
|
|
5576
5873
|
__type: "bigint";
|
|
5577
5874
|
}>;
|
|
5578
5875
|
}, zod.ZodAny, "strip">>;
|
|
5876
|
+
}, zod.ZodAny, "strip"> | zod.objectOutputType<{
|
|
5877
|
+
id: zod.ZodString;
|
|
5878
|
+
event_type: zod.ZodLiteral<"protocol.zone">;
|
|
5879
|
+
timestamp: zod.ZodString;
|
|
5880
|
+
data: zod.ZodObject<{
|
|
5881
|
+
version: zod.ZodLiteral<1>;
|
|
5882
|
+
data: zod.ZodObject<{
|
|
5883
|
+
id: zod.ZodString;
|
|
5884
|
+
region_id: zod.ZodNumber;
|
|
5885
|
+
is_flyable: zod.ZodBoolean;
|
|
5886
|
+
deleted_at: zod.ZodOptional<zod.ZodString>;
|
|
5887
|
+
}, "strip", zod.ZodAny, zod.objectOutputType<{
|
|
5888
|
+
id: zod.ZodString;
|
|
5889
|
+
region_id: zod.ZodNumber;
|
|
5890
|
+
is_flyable: zod.ZodBoolean;
|
|
5891
|
+
deleted_at: zod.ZodOptional<zod.ZodString>;
|
|
5892
|
+
}, zod.ZodAny, "strip">, zod.objectInputType<{
|
|
5893
|
+
id: zod.ZodString;
|
|
5894
|
+
region_id: zod.ZodNumber;
|
|
5895
|
+
is_flyable: zod.ZodBoolean;
|
|
5896
|
+
deleted_at: zod.ZodOptional<zod.ZodString>;
|
|
5897
|
+
}, zod.ZodAny, "strip">>;
|
|
5898
|
+
changes: zod.ZodOptional<zod.ZodObject<{
|
|
5899
|
+
region_id: zod.ZodOptional<zod.ZodNumber>;
|
|
5900
|
+
is_flyable: zod.ZodOptional<zod.ZodBoolean>;
|
|
5901
|
+
deleted_at: zod.ZodOptional<zod.ZodString>;
|
|
5902
|
+
}, "strip", zod.ZodAny, zod.objectOutputType<{
|
|
5903
|
+
region_id: zod.ZodOptional<zod.ZodNumber>;
|
|
5904
|
+
is_flyable: zod.ZodOptional<zod.ZodBoolean>;
|
|
5905
|
+
deleted_at: zod.ZodOptional<zod.ZodString>;
|
|
5906
|
+
}, zod.ZodAny, "strip">, zod.objectInputType<{
|
|
5907
|
+
region_id: zod.ZodOptional<zod.ZodNumber>;
|
|
5908
|
+
is_flyable: zod.ZodOptional<zod.ZodBoolean>;
|
|
5909
|
+
deleted_at: zod.ZodOptional<zod.ZodString>;
|
|
5910
|
+
}, zod.ZodAny, "strip">>>;
|
|
5911
|
+
}, "strip", zod.ZodAny, zod.objectOutputType<{
|
|
5912
|
+
version: zod.ZodLiteral<1>;
|
|
5913
|
+
data: zod.ZodObject<{
|
|
5914
|
+
id: zod.ZodString;
|
|
5915
|
+
region_id: zod.ZodNumber;
|
|
5916
|
+
is_flyable: zod.ZodBoolean;
|
|
5917
|
+
deleted_at: zod.ZodOptional<zod.ZodString>;
|
|
5918
|
+
}, "strip", zod.ZodAny, zod.objectOutputType<{
|
|
5919
|
+
id: zod.ZodString;
|
|
5920
|
+
region_id: zod.ZodNumber;
|
|
5921
|
+
is_flyable: zod.ZodBoolean;
|
|
5922
|
+
deleted_at: zod.ZodOptional<zod.ZodString>;
|
|
5923
|
+
}, zod.ZodAny, "strip">, zod.objectInputType<{
|
|
5924
|
+
id: zod.ZodString;
|
|
5925
|
+
region_id: zod.ZodNumber;
|
|
5926
|
+
is_flyable: zod.ZodBoolean;
|
|
5927
|
+
deleted_at: zod.ZodOptional<zod.ZodString>;
|
|
5928
|
+
}, zod.ZodAny, "strip">>;
|
|
5929
|
+
changes: zod.ZodOptional<zod.ZodObject<{
|
|
5930
|
+
region_id: zod.ZodOptional<zod.ZodNumber>;
|
|
5931
|
+
is_flyable: zod.ZodOptional<zod.ZodBoolean>;
|
|
5932
|
+
deleted_at: zod.ZodOptional<zod.ZodString>;
|
|
5933
|
+
}, "strip", zod.ZodAny, zod.objectOutputType<{
|
|
5934
|
+
region_id: zod.ZodOptional<zod.ZodNumber>;
|
|
5935
|
+
is_flyable: zod.ZodOptional<zod.ZodBoolean>;
|
|
5936
|
+
deleted_at: zod.ZodOptional<zod.ZodString>;
|
|
5937
|
+
}, zod.ZodAny, "strip">, zod.objectInputType<{
|
|
5938
|
+
region_id: zod.ZodOptional<zod.ZodNumber>;
|
|
5939
|
+
is_flyable: zod.ZodOptional<zod.ZodBoolean>;
|
|
5940
|
+
deleted_at: zod.ZodOptional<zod.ZodString>;
|
|
5941
|
+
}, zod.ZodAny, "strip">>>;
|
|
5942
|
+
}, zod.ZodAny, "strip">, zod.objectInputType<{
|
|
5943
|
+
version: zod.ZodLiteral<1>;
|
|
5944
|
+
data: zod.ZodObject<{
|
|
5945
|
+
id: zod.ZodString;
|
|
5946
|
+
region_id: zod.ZodNumber;
|
|
5947
|
+
is_flyable: zod.ZodBoolean;
|
|
5948
|
+
deleted_at: zod.ZodOptional<zod.ZodString>;
|
|
5949
|
+
}, "strip", zod.ZodAny, zod.objectOutputType<{
|
|
5950
|
+
id: zod.ZodString;
|
|
5951
|
+
region_id: zod.ZodNumber;
|
|
5952
|
+
is_flyable: zod.ZodBoolean;
|
|
5953
|
+
deleted_at: zod.ZodOptional<zod.ZodString>;
|
|
5954
|
+
}, zod.ZodAny, "strip">, zod.objectInputType<{
|
|
5955
|
+
id: zod.ZodString;
|
|
5956
|
+
region_id: zod.ZodNumber;
|
|
5957
|
+
is_flyable: zod.ZodBoolean;
|
|
5958
|
+
deleted_at: zod.ZodOptional<zod.ZodString>;
|
|
5959
|
+
}, zod.ZodAny, "strip">>;
|
|
5960
|
+
changes: zod.ZodOptional<zod.ZodObject<{
|
|
5961
|
+
region_id: zod.ZodOptional<zod.ZodNumber>;
|
|
5962
|
+
is_flyable: zod.ZodOptional<zod.ZodBoolean>;
|
|
5963
|
+
deleted_at: zod.ZodOptional<zod.ZodString>;
|
|
5964
|
+
}, "strip", zod.ZodAny, zod.objectOutputType<{
|
|
5965
|
+
region_id: zod.ZodOptional<zod.ZodNumber>;
|
|
5966
|
+
is_flyable: zod.ZodOptional<zod.ZodBoolean>;
|
|
5967
|
+
deleted_at: zod.ZodOptional<zod.ZodString>;
|
|
5968
|
+
}, zod.ZodAny, "strip">, zod.objectInputType<{
|
|
5969
|
+
region_id: zod.ZodOptional<zod.ZodNumber>;
|
|
5970
|
+
is_flyable: zod.ZodOptional<zod.ZodBoolean>;
|
|
5971
|
+
deleted_at: zod.ZodOptional<zod.ZodString>;
|
|
5972
|
+
}, zod.ZodAny, "strip">>>;
|
|
5973
|
+
}, zod.ZodAny, "strip">>;
|
|
5579
5974
|
}, zod.ZodAny, "strip">;
|
|
5580
5975
|
|
|
5581
|
-
export { type AlchemyControllerHandleWebhook0V1Data, type AlchemyControllerHandleWebhook0V1Responses, type AlchemyControllerHandleWebhook1Data, type AlchemyControllerHandleWebhook1Responses, type AlchemyWebhookBodyDto, type ApiControllerGetError0V1Data, type ApiControllerGetError0V1Responses, type ApiControllerGetError1Data, type ApiControllerGetError1Responses, type ApiControllerGetHello0V1Data, type ApiControllerGetHello0V1Responses, type ApiControllerGetHello1Data, type ApiControllerGetHello1Responses, type ApiTokenControllerCreateToken0V1Data, type ApiTokenControllerCreateToken0V1Errors, type ApiTokenControllerCreateToken0V1Response, type ApiTokenControllerCreateToken0V1Responses, type ApiTokenControllerCreateToken1Data, type ApiTokenControllerCreateToken1Errors, type ApiTokenControllerCreateToken1Response, type ApiTokenControllerCreateToken1Responses, type ApiTokenControllerDeleteToken0V1Data, type ApiTokenControllerDeleteToken0V1Errors, type ApiTokenControllerDeleteToken0V1Responses, type ApiTokenControllerDeleteToken1Data, type ApiTokenControllerDeleteToken1Errors, type ApiTokenControllerDeleteToken1Responses, type ApiTokenControllerGetToken0V1Data, type ApiTokenControllerGetToken0V1Errors, type ApiTokenControllerGetToken0V1Responses, type ApiTokenControllerGetToken1Data, type ApiTokenControllerGetToken1Errors, type ApiTokenControllerGetToken1Responses, type ApiTokenControllerUpdateToken0V1Data, type ApiTokenControllerUpdateToken0V1Errors, type ApiTokenControllerUpdateToken0V1Response, type ApiTokenControllerUpdateToken0V1Responses, type ApiTokenControllerUpdateToken1Data, type ApiTokenControllerUpdateToken1Errors, type ApiTokenControllerUpdateToken1Response, type ApiTokenControllerUpdateToken1Responses, type Auth, type CampaignsControllerCreate0V1Data, type CampaignsControllerCreate0V1Errors, type CampaignsControllerCreate0V1Response, type CampaignsControllerCreate0V1Responses, type CampaignsControllerCreate1Data, type CampaignsControllerCreate1Errors, type CampaignsControllerCreate1Response, type CampaignsControllerCreate1Responses, type CampaignsControllerDelete0V1Data, type CampaignsControllerDelete0V1Errors, type CampaignsControllerDelete0V1Response, type CampaignsControllerDelete0V1Responses, type CampaignsControllerDelete1Data, type CampaignsControllerDelete1Errors, type CampaignsControllerDelete1Response, type CampaignsControllerDelete1Responses, type CampaignsControllerGet0V1Data, type CampaignsControllerGet0V1Errors, type CampaignsControllerGet0V1Response, type CampaignsControllerGet0V1Responses, type CampaignsControllerGet1Data, type CampaignsControllerGet1Errors, type CampaignsControllerGet1Response, type CampaignsControllerGet1Responses, type CampaignsControllerGetMany0V1Data, type CampaignsControllerGetMany0V1Errors, type CampaignsControllerGetMany0V1Response, type CampaignsControllerGetMany0V1Responses, type CampaignsControllerGetMany1Data, type CampaignsControllerGetMany1Errors, type CampaignsControllerGetMany1Response, type CampaignsControllerGetMany1Responses, type CampaignsControllerUpdate0V1Data, type CampaignsControllerUpdate0V1Errors, type CampaignsControllerUpdate0V1Response, type CampaignsControllerUpdate0V1Responses, type CampaignsControllerUpdate1Data, type CampaignsControllerUpdate1Errors, type CampaignsControllerUpdate1Response, type CampaignsControllerUpdate1Responses, type Client, type ClientOptions$1 as ClientOptions, type ConditionsControllerGetSunAltitudeTimeLimits0V1Data, type ConditionsControllerGetSunAltitudeTimeLimits0V1Response, type ConditionsControllerGetSunAltitudeTimeLimits0V1Responses, type ConditionsControllerGetSunAltitudeTimeLimits1Data, type ConditionsControllerGetSunAltitudeTimeLimits1Response, type ConditionsControllerGetSunAltitudeTimeLimits1Responses, type Config, type ContractsControllerCreateContract0V1Data, type ContractsControllerCreateContract0V1Errors, type ContractsControllerCreateContract0V1Response, type ContractsControllerCreateContract0V1Responses, type ContractsControllerCreateContract1Data, type ContractsControllerCreateContract1Errors, type ContractsControllerCreateContract1Response, type ContractsControllerCreateContract1Responses, type ContractsControllerDeleteContract0V1Data, type ContractsControllerDeleteContract0V1Errors, type ContractsControllerDeleteContract0V1Response, type ContractsControllerDeleteContract0V1Responses, type ContractsControllerDeleteContract1Data, type ContractsControllerDeleteContract1Errors, type ContractsControllerDeleteContract1Response, type ContractsControllerDeleteContract1Responses, type ContractsControllerGetAllContracts0V1Data, type ContractsControllerGetAllContracts0V1Errors, type ContractsControllerGetAllContracts0V1Response, type ContractsControllerGetAllContracts0V1Responses, type ContractsControllerGetAllContracts1Data, type ContractsControllerGetAllContracts1Errors, type ContractsControllerGetAllContracts1Response, type ContractsControllerGetAllContracts1Responses, type ContractsControllerGetContract0V1Data, type ContractsControllerGetContract0V1Errors, type ContractsControllerGetContract0V1Response, type ContractsControllerGetContract0V1Responses, type ContractsControllerGetContract1Data, type ContractsControllerGetContract1Errors, type ContractsControllerGetContract1Response, type ContractsControllerGetContract1Responses, type ContractsControllerUpdateContract0V1Data, type ContractsControllerUpdateContract0V1Errors, type ContractsControllerUpdateContract0V1Response, type ContractsControllerUpdateContract0V1Responses, type ContractsControllerUpdateContract1Data, type ContractsControllerUpdateContract1Errors, type ContractsControllerUpdateContract1Response, type ContractsControllerUpdateContract1Responses, type CreateApiTokenRequestDto, type CreateApiTokenResponseDto, type CreateCampaignBody, type CreateCampaignResponse, type CreateClientConfig, type CreateContractRequestDto, type CreateContractResponseDto, type CreateFileRequestDto, type CreateFileResponseDto, type CreateFlightPlanBody, type CreateFlightPlanResponse, type CreateInboundWebhookConfigBody, type CreateInboundWebhookConfigResponse, type CreateMissionRequestDto, type CreateMissionResponseDto, type CreateProposalRequestDto, type CreateProposalResponseDto, type CreateQuoteRequestDto, type CreateVaultsRequestDto, type CreateVaultsResponseDto, type CreateWebhookBody, type CreateWebhookResponse, type CreateZoneDto, type DeleteCampaignResponse, type DeleteContractResponseDto, type DeleteInboundWebhookConfigResponse, type DeleteWebhookResponse, type DlqRedriverControllerRedriveDlq0V1Data, type DlqRedriverControllerRedriveDlq0V1Errors, type DlqRedriverControllerRedriveDlq0V1Response, type DlqRedriverControllerRedriveDlq0V1Responses, type DlqRedriverControllerRedriveDlq1Data, type DlqRedriverControllerRedriveDlq1Errors, type DlqRedriverControllerRedriveDlq1Response, type DlqRedriverControllerRedriveDlq1Responses, Event, type EventProcessorFlightReviewsSyncControllerResyncFlightReviews0V1Data, type EventProcessorFlightReviewsSyncControllerResyncFlightReviews0V1Errors, type EventProcessorFlightReviewsSyncControllerResyncFlightReviews0V1Response, type EventProcessorFlightReviewsSyncControllerResyncFlightReviews0V1Responses, type EventProcessorFlightReviewsSyncControllerResyncFlightReviews1Data, type EventProcessorFlightReviewsSyncControllerResyncFlightReviews1Errors, type EventProcessorFlightReviewsSyncControllerResyncFlightReviews1Response, type EventProcessorFlightReviewsSyncControllerResyncFlightReviews1Responses, type EventProcessorMissionsSyncControllerResyncMissions0V1Data, type EventProcessorMissionsSyncControllerResyncMissions0V1Errors, type EventProcessorMissionsSyncControllerResyncMissions0V1Response, type EventProcessorMissionsSyncControllerResyncMissions0V1Responses, type EventProcessorMissionsSyncControllerResyncMissions1Data, type EventProcessorMissionsSyncControllerResyncMissions1Errors, type EventProcessorMissionsSyncControllerResyncMissions1Response, type EventProcessorMissionsSyncControllerResyncMissions1Responses, type FlightDto, type FlightPlansControllerCreate0V1Data, type FlightPlansControllerCreate0V1Errors, type FlightPlansControllerCreate0V1Response, type FlightPlansControllerCreate0V1Responses, type FlightPlansControllerCreate1Data, type FlightPlansControllerCreate1Errors, type FlightPlansControllerCreate1Response, type FlightPlansControllerCreate1Responses, type FlightPlansControllerGet0V1Data, type FlightPlansControllerGet0V1Errors, type FlightPlansControllerGet0V1Response, type FlightPlansControllerGet0V1Responses, type FlightPlansControllerGet1Data, type FlightPlansControllerGet1Errors, type FlightPlansControllerGet1Response, type FlightPlansControllerGet1Responses, type FlightPlansControllerGetMany0V1Data, type FlightPlansControllerGetMany0V1Errors, type FlightPlansControllerGetMany0V1Response, type FlightPlansControllerGetMany0V1Responses, type FlightPlansControllerGetMany1Data, type FlightPlansControllerGetMany1Errors, type FlightPlansControllerGetMany1Response, type FlightPlansControllerGetMany1Responses, type FlightReviewedEvent, type FlightReviewsControllerGetFlightReview0V1Data, type FlightReviewsControllerGetFlightReview0V1Errors, type FlightReviewsControllerGetFlightReview0V1Response, type FlightReviewsControllerGetFlightReview0V1Responses, type FlightReviewsControllerGetFlightReview1Data, type FlightReviewsControllerGetFlightReview1Errors, type FlightReviewsControllerGetFlightReview1Response, type FlightReviewsControllerGetFlightReview1Responses, type FlightReviewsControllerGetFlightReviews0V1Data, type FlightReviewsControllerGetFlightReviews0V1Errors, type FlightReviewsControllerGetFlightReviews0V1Response, type FlightReviewsControllerGetFlightReviews0V1Responses, type FlightReviewsControllerGetFlightReviews1Data, type FlightReviewsControllerGetFlightReviews1Errors, type FlightReviewsControllerGetFlightReviews1Response, type FlightReviewsControllerGetFlightReviews1Responses, type FlightSubmittedEvent, type FlightsControllerCreatePresignedUrls0V1Data, type FlightsControllerCreatePresignedUrls0V1Errors, type FlightsControllerCreatePresignedUrls0V1Response, type FlightsControllerCreatePresignedUrls0V1Responses, type FlightsControllerCreatePresignedUrls1Data, type FlightsControllerCreatePresignedUrls1Errors, type FlightsControllerCreatePresignedUrls1Response, type FlightsControllerCreatePresignedUrls1Responses, type FlightsControllerGenerateStorageKey0V1Data, type FlightsControllerGenerateStorageKey0V1Errors, type FlightsControllerGenerateStorageKey0V1Response, type FlightsControllerGenerateStorageKey0V1Responses, type FlightsControllerGenerateStorageKey1Data, type FlightsControllerGenerateStorageKey1Errors, type FlightsControllerGenerateStorageKey1Response, type FlightsControllerGenerateStorageKey1Responses, type FlightsControllerGetFlight0V1Data, type FlightsControllerGetFlight0V1Errors, type FlightsControllerGetFlight0V1Response, type FlightsControllerGetFlight0V1Responses, type FlightsControllerGetFlight1Data, type FlightsControllerGetFlight1Errors, type FlightsControllerGetFlight1Response, type FlightsControllerGetFlight1Responses, type FlightsControllerValidateFlight0V1Data, type FlightsControllerValidateFlight0V1Errors, type FlightsControllerValidateFlight0V1Response, type FlightsControllerValidateFlight0V1Responses, type FlightsControllerValidateFlight1Data, type FlightsControllerValidateFlight1Errors, type FlightsControllerValidateFlight1Response, type FlightsControllerValidateFlight1Responses, type GetCampaignResponse, type GetCampaignsResponse, type GetContractResponseDto, type GetContractsResponseDto, type GetFlightPlanResponse, type GetFlightPlansResponse, type GetFlightReviewResponseDto, type GetFlightReviewsResponseDto, type GetInboundWebhookConfigResponse, type GetInboundWebhookConfigsResponse, type GetMissionResponseDto, type GetMissionsResponseDto, type GetProposalData, type GetProposalErrors, type GetProposalResponse, type GetProposalResponseDto, type GetProposalResponses, type GetProposalsResponseDto, type GetProvenanceCryptoKeyResponse, type GetTimeLimitsForSunAltitudeResponse, type GetWebhookResponse, type GetWebhookStatusResponse, type GetWebhooksResponse, type InboundWebhookConfigsControllerCreate0V1Data, type InboundWebhookConfigsControllerCreate0V1Errors, type InboundWebhookConfigsControllerCreate0V1Response, type InboundWebhookConfigsControllerCreate0V1Responses, type InboundWebhookConfigsControllerCreate1Data, type InboundWebhookConfigsControllerCreate1Errors, type InboundWebhookConfigsControllerCreate1Response, type InboundWebhookConfigsControllerCreate1Responses, type InboundWebhookConfigsControllerDelete0V1Data, type InboundWebhookConfigsControllerDelete0V1Errors, type InboundWebhookConfigsControllerDelete0V1Response, type InboundWebhookConfigsControllerDelete0V1Responses, type InboundWebhookConfigsControllerDelete1Data, type InboundWebhookConfigsControllerDelete1Errors, type InboundWebhookConfigsControllerDelete1Response, type InboundWebhookConfigsControllerDelete1Responses, type InboundWebhookConfigsControllerGet0V1Data, type InboundWebhookConfigsControllerGet0V1Errors, type InboundWebhookConfigsControllerGet0V1Response, type InboundWebhookConfigsControllerGet0V1Responses, type InboundWebhookConfigsControllerGet1Data, type InboundWebhookConfigsControllerGet1Errors, type InboundWebhookConfigsControllerGet1Response, type InboundWebhookConfigsControllerGet1Responses, type InboundWebhookConfigsControllerGetMany0V1Data, type InboundWebhookConfigsControllerGetMany0V1Errors, type InboundWebhookConfigsControllerGetMany0V1Response, type InboundWebhookConfigsControllerGetMany0V1Responses, type InboundWebhookConfigsControllerGetMany1Data, type InboundWebhookConfigsControllerGetMany1Errors, type InboundWebhookConfigsControllerGetMany1Response, type InboundWebhookConfigsControllerGetMany1Responses, type InboundWebhookConfigsControllerUpdate0V1Data, type InboundWebhookConfigsControllerUpdate0V1Errors, type InboundWebhookConfigsControllerUpdate0V1Response, type InboundWebhookConfigsControllerUpdate0V1Responses, type InboundWebhookConfigsControllerUpdate1Data, type InboundWebhookConfigsControllerUpdate1Errors, type InboundWebhookConfigsControllerUpdate1Response, type InboundWebhookConfigsControllerUpdate1Responses, type KeysControllerGetProvenanceCryptoKey0V1Data, type KeysControllerGetProvenanceCryptoKey0V1Response, type KeysControllerGetProvenanceCryptoKey0V1Responses, type KeysControllerGetProvenanceCryptoKey1Data, type KeysControllerGetProvenanceCryptoKey1Response, type KeysControllerGetProvenanceCryptoKey1Responses, type ListProposalsData, type ListProposalsErrors, type ListProposalsResponse, type ListProposalsResponses, type MissionCreatedEvent, type MissionPaidEvent, type MissionUpdatedEvent, type MissionsControllerCreateMissions0V1Data, type MissionsControllerCreateMissions0V1Errors, type MissionsControllerCreateMissions0V1Response, type MissionsControllerCreateMissions0V1Responses, type MissionsControllerCreateMissions1Data, type MissionsControllerCreateMissions1Errors, type MissionsControllerCreateMissions1Response, type MissionsControllerCreateMissions1Responses, type MissionsControllerGetMission0V1Data, type MissionsControllerGetMission0V1Errors, type MissionsControllerGetMission0V1Response, type MissionsControllerGetMission0V1Responses, type MissionsControllerGetMission1Data, type MissionsControllerGetMission1Errors, type MissionsControllerGetMission1Response, type MissionsControllerGetMission1Responses, type MissionsControllerGetMissions0V1Data, type MissionsControllerGetMissions0V1Errors, type MissionsControllerGetMissions0V1Response, type MissionsControllerGetMissions0V1Responses, type MissionsControllerGetMissions1Data, type MissionsControllerGetMissions1Errors, type MissionsControllerGetMissions1Response, type MissionsControllerGetMissions1Responses, type MissionsControllerRepriceMissions0V1Data, type MissionsControllerRepriceMissions0V1Errors, type MissionsControllerRepriceMissions0V1Response, type MissionsControllerRepriceMissions0V1Responses, type MissionsControllerRepriceMissions1Data, type MissionsControllerRepriceMissions1Errors, type MissionsControllerRepriceMissions1Response, type MissionsControllerRepriceMissions1Responses, type MissionsControllerUpdateMissions0V1Data, type MissionsControllerUpdateMissions0V1Errors, type MissionsControllerUpdateMissions0V1Response, type MissionsControllerUpdateMissions0V1Responses, type MissionsControllerUpdateMissions1Data, type MissionsControllerUpdateMissions1Errors, type MissionsControllerUpdateMissions1Response, type MissionsControllerUpdateMissions1Responses, type Options, type OptionsLegacyParser, type ProtocolTriggersApiControllerTriggerMissionClose0V1Data, type ProtocolTriggersApiControllerTriggerMissionClose0V1Errors, type ProtocolTriggersApiControllerTriggerMissionClose0V1Responses, type ProtocolTriggersApiControllerTriggerMissionClose1Data, type ProtocolTriggersApiControllerTriggerMissionClose1Errors, type ProtocolTriggersApiControllerTriggerMissionClose1Responses, type ProtocolTriggersApiControllerTriggerPayout0V1Data, type ProtocolTriggersApiControllerTriggerPayout0V1Errors, type ProtocolTriggersApiControllerTriggerPayout0V1Responses, type ProtocolTriggersApiControllerTriggerPayout1Data, type ProtocolTriggersApiControllerTriggerPayout1Errors, type ProtocolTriggersApiControllerTriggerPayout1Responses, type QuerySerializerOptions, type QuotesControllerCreateQuote0V1Data, type QuotesControllerCreateQuote0V1Errors, type QuotesControllerCreateQuote0V1Responses, type QuotesControllerCreateQuote1Data, type QuotesControllerCreateQuote1Errors, type QuotesControllerCreateQuote1Responses, type QuotesControllerGetQuote0V1Data, type QuotesControllerGetQuote0V1Errors, type QuotesControllerGetQuote0V1Responses, type QuotesControllerGetQuote1Data, type QuotesControllerGetQuote1Errors, type QuotesControllerGetQuote1Responses, type RedriveDlqRequestDto, type RedriveDlqResponseDto, type RegenerateWebhookSecretBody, type RegenerateWebhookSecretResponseDto, type RepriceMissionsRequestDto, type RepriceMissionsResponseDto, type RequestOptions, type RequestResult, type ResponseStyle, type ReviewProposalData, type ReviewProposalErrors, type ReviewProposalRequestDto, type ReviewProposalResponse, type ReviewProposalResponseDto, type ReviewProposalResponses, type SchemaControllerGetEventSchema0V1Data, type SchemaControllerGetEventSchema0V1Responses, type SchemaControllerGetEventSchema1Data, type SchemaControllerGetEventSchema1Responses, type SubmitProposalData, type SubmitProposalErrors, type SubmitProposalResponse, type SubmitProposalResponses, type SyncEventProcessorFlightReviewsRequestDto, type SyncEventProcessorFlightReviewsResponseDto, type SyncEventProcessorMissionsRequestDto, type SyncEventProcessorMissionsResponseDto, type TDataShape, type TestEvent, type TestWebhookResponse, type TriggerMissionCloseRequestDto, type TriggerPayoutRequestDto, type UpdateApiTokenRequestDto, type UpdateApiTokenResponseDto, type UpdateCampaignBody, type UpdateCampaignResponse, type UpdateContractRequestDto, type UpdateContractResponseDto, type UpdateInboundWebhookConfigBody, type UpdateInboundWebhookConfigResponse, type UpdateMissionsRequestDto, type UpdateMissionsResponseDto, type UpdateWebhookBody, type UpdateWebhookResponse, type UpdateZoneDto, type ValidateFlightRequestDto, type ValidateFlightResponseDto, type VaultsControllerCreateVaults0V1Data, type VaultsControllerCreateVaults0V1Errors, type VaultsControllerCreateVaults0V1Response, type VaultsControllerCreateVaults0V1Responses, type VaultsControllerCreateVaults1Data, type VaultsControllerCreateVaults1Errors, type VaultsControllerCreateVaults1Response, type VaultsControllerCreateVaults1Responses, WEBHOOK_PREVIOUS_SECRET_EXPIRES_AT_HEADER, WEBHOOK_PREVIOUS_SECRET_HEADER, WEBHOOK_SECRET_HEADER, type WebhooksControllerCreate0V1Data, type WebhooksControllerCreate0V1Errors, type WebhooksControllerCreate0V1Response, type WebhooksControllerCreate0V1Responses, type WebhooksControllerCreate1Data, type WebhooksControllerCreate1Errors, type WebhooksControllerCreate1Response, type WebhooksControllerCreate1Responses, type WebhooksControllerDelete0V1Data, type WebhooksControllerDelete0V1Errors, type WebhooksControllerDelete0V1Response, type WebhooksControllerDelete0V1Responses, type WebhooksControllerDelete1Data, type WebhooksControllerDelete1Errors, type WebhooksControllerDelete1Response, type WebhooksControllerDelete1Responses, type WebhooksControllerGet0V1Data, type WebhooksControllerGet0V1Errors, type WebhooksControllerGet0V1Response, type WebhooksControllerGet0V1Responses, type WebhooksControllerGet1Data, type WebhooksControllerGet1Errors, type WebhooksControllerGet1Response, type WebhooksControllerGet1Responses, type WebhooksControllerGetMany0V1Data, type WebhooksControllerGetMany0V1Errors, type WebhooksControllerGetMany0V1Response, type WebhooksControllerGetMany0V1Responses, type WebhooksControllerGetMany1Data, type WebhooksControllerGetMany1Errors, type WebhooksControllerGetMany1Response, type WebhooksControllerGetMany1Responses, type WebhooksControllerGetStatus0V1Data, type WebhooksControllerGetStatus0V1Errors, type WebhooksControllerGetStatus0V1Response, type WebhooksControllerGetStatus0V1Responses, type WebhooksControllerGetStatus1Data, type WebhooksControllerGetStatus1Errors, type WebhooksControllerGetStatus1Response, type WebhooksControllerGetStatus1Responses, type WebhooksControllerRegenerateSecret0V1Data, type WebhooksControllerRegenerateSecret0V1Errors, type WebhooksControllerRegenerateSecret0V1Response, type WebhooksControllerRegenerateSecret0V1Responses, type WebhooksControllerRegenerateSecret1Data, type WebhooksControllerRegenerateSecret1Errors, type WebhooksControllerRegenerateSecret1Response, type WebhooksControllerRegenerateSecret1Responses, type WebhooksControllerTest0V1Data, type WebhooksControllerTest0V1Errors, type WebhooksControllerTest0V1Response, type WebhooksControllerTest0V1Responses, type WebhooksControllerTest1Data, type WebhooksControllerTest1Errors, type WebhooksControllerTest1Response, type WebhooksControllerTest1Responses, type WebhooksControllerUpdate0V1Data, type WebhooksControllerUpdate0V1Errors, type WebhooksControllerUpdate0V1Response, type WebhooksControllerUpdate0V1Responses, type WebhooksControllerUpdate1Data, type WebhooksControllerUpdate1Errors, type WebhooksControllerUpdate1Response, type WebhooksControllerUpdate1Responses, type ZoneResponseDto, type ZonesControllerCreateZone0V1Data, type ZonesControllerCreateZone0V1Errors, type ZonesControllerCreateZone0V1Response, type ZonesControllerCreateZone0V1Responses, type ZonesControllerCreateZone1Data, type ZonesControllerCreateZone1Errors, type ZonesControllerCreateZone1Response, type ZonesControllerCreateZone1Responses, type ZonesControllerDeleteZone0V1Data, type ZonesControllerDeleteZone0V1Errors, type ZonesControllerDeleteZone0V1Response, type ZonesControllerDeleteZone0V1Responses, type ZonesControllerDeleteZone1Data, type ZonesControllerDeleteZone1Errors, type ZonesControllerDeleteZone1Response, type ZonesControllerDeleteZone1Responses, type ZonesControllerUpdateZone0V1Data, type ZonesControllerUpdateZone0V1Errors, type ZonesControllerUpdateZone0V1Response, type ZonesControllerUpdateZone0V1Responses, type ZonesControllerUpdateZone1Data, type ZonesControllerUpdateZone1Errors, type ZonesControllerUpdateZone1Response, type ZonesControllerUpdateZone1Responses, alchemyControllerHandleWebhook0V1, alchemyControllerHandleWebhook1, apiControllerGetError0V1, apiControllerGetError1, apiControllerGetHello0V1, apiControllerGetHello1, apiTokenControllerCreateToken0V1, apiTokenControllerCreateToken1, apiTokenControllerDeleteToken0V1, apiTokenControllerDeleteToken1, apiTokenControllerGetToken0V1, apiTokenControllerGetToken1, apiTokenControllerUpdateToken0V1, apiTokenControllerUpdateToken1, buildClientParams, campaignsControllerCreate0V1, campaignsControllerCreate1, campaignsControllerDelete0V1, campaignsControllerDelete1, campaignsControllerGet0V1, campaignsControllerGet1, campaignsControllerGetMany0V1, campaignsControllerGetMany1, campaignsControllerUpdate0V1, campaignsControllerUpdate1, conditionsControllerGetSunAltitudeTimeLimits0V1, conditionsControllerGetSunAltitudeTimeLimits1, contractsControllerCreateContract0V1, contractsControllerCreateContract1, contractsControllerDeleteContract0V1, contractsControllerDeleteContract1, contractsControllerGetAllContracts0V1, contractsControllerGetAllContracts1, contractsControllerGetContract0V1, contractsControllerGetContract1, contractsControllerUpdateContract0V1, contractsControllerUpdateContract1, createClient, createConfig, dlqRedriverControllerRedriveDlq0V1, dlqRedriverControllerRedriveDlq1, eventProcessorFlightReviewsSyncControllerResyncFlightReviews0V1, eventProcessorFlightReviewsSyncControllerResyncFlightReviews1, eventProcessorMissionsSyncControllerResyncMissions0V1, eventProcessorMissionsSyncControllerResyncMissions1, flightPlansControllerCreate0V1, flightPlansControllerCreate1, flightPlansControllerGet0V1, flightPlansControllerGet1, flightPlansControllerGetMany0V1, flightPlansControllerGetMany1, flightReviewsControllerGetFlightReview0V1, flightReviewsControllerGetFlightReview1, flightReviewsControllerGetFlightReviews0V1, flightReviewsControllerGetFlightReviews1, flightsControllerCreatePresignedUrls0V1, flightsControllerCreatePresignedUrls1, flightsControllerGenerateStorageKey0V1, flightsControllerGenerateStorageKey1, flightsControllerGetFlight0V1, flightsControllerGetFlight1, flightsControllerValidateFlight0V1, flightsControllerValidateFlight1, formDataBodySerializer, getProposal, inboundWebhookConfigsControllerCreate0V1, inboundWebhookConfigsControllerCreate1, inboundWebhookConfigsControllerDelete0V1, inboundWebhookConfigsControllerDelete1, inboundWebhookConfigsControllerGet0V1, inboundWebhookConfigsControllerGet1, inboundWebhookConfigsControllerGetMany0V1, inboundWebhookConfigsControllerGetMany1, inboundWebhookConfigsControllerUpdate0V1, inboundWebhookConfigsControllerUpdate1, jsonBodySerializer, keysControllerGetProvenanceCryptoKey0V1, keysControllerGetProvenanceCryptoKey1, listProposals, mergeHeaders, missionsControllerCreateMissions0V1, missionsControllerCreateMissions1, missionsControllerGetMission0V1, missionsControllerGetMission1, missionsControllerGetMissions0V1, missionsControllerGetMissions1, missionsControllerRepriceMissions0V1, missionsControllerRepriceMissions1, missionsControllerUpdateMissions0V1, missionsControllerUpdateMissions1, parseWebhookEvent, protocolTriggersApiControllerTriggerMissionClose0V1, protocolTriggersApiControllerTriggerMissionClose1, protocolTriggersApiControllerTriggerPayout0V1, protocolTriggersApiControllerTriggerPayout1, quotesControllerCreateQuote0V1, quotesControllerCreateQuote1, quotesControllerGetQuote0V1, quotesControllerGetQuote1, reviewProposal, schemaControllerGetEventSchema0V1, schemaControllerGetEventSchema1, submitProposal, urlSearchParamsBodySerializer, vaultsControllerCreateVaults0V1, vaultsControllerCreateVaults1, webhooksControllerCreate0V1, webhooksControllerCreate1, webhooksControllerDelete0V1, webhooksControllerDelete1, webhooksControllerGet0V1, webhooksControllerGet1, webhooksControllerGetMany0V1, webhooksControllerGetMany1, webhooksControllerGetStatus0V1, webhooksControllerGetStatus1, webhooksControllerRegenerateSecret0V1, webhooksControllerRegenerateSecret1, webhooksControllerTest0V1, webhooksControllerTest1, webhooksControllerUpdate0V1, webhooksControllerUpdate1, zonesControllerCreateZone0V1, zonesControllerCreateZone1, zonesControllerDeleteZone0V1, zonesControllerDeleteZone1, zonesControllerUpdateZone0V1, zonesControllerUpdateZone1 };
|
|
5976
|
+
export { type AlchemyControllerHandleWebhook0V1Data, type AlchemyControllerHandleWebhook0V1Responses, type AlchemyControllerHandleWebhook1Data, type AlchemyControllerHandleWebhook1Responses, type AlchemyWebhookBodyDto, type ApiControllerGetError0V1Data, type ApiControllerGetError0V1Responses, type ApiControllerGetError1Data, type ApiControllerGetError1Responses, type ApiControllerGetHello0V1Data, type ApiControllerGetHello0V1Responses, type ApiControllerGetHello1Data, type ApiControllerGetHello1Responses, type ApiTokenControllerCreateToken0V1Data, type ApiTokenControllerCreateToken0V1Errors, type ApiTokenControllerCreateToken0V1Response, type ApiTokenControllerCreateToken0V1Responses, type ApiTokenControllerCreateToken1Data, type ApiTokenControllerCreateToken1Errors, type ApiTokenControllerCreateToken1Response, type ApiTokenControllerCreateToken1Responses, type ApiTokenControllerDeleteToken0V1Data, type ApiTokenControllerDeleteToken0V1Errors, type ApiTokenControllerDeleteToken0V1Responses, type ApiTokenControllerDeleteToken1Data, type ApiTokenControllerDeleteToken1Errors, type ApiTokenControllerDeleteToken1Responses, type ApiTokenControllerGetToken0V1Data, type ApiTokenControllerGetToken0V1Errors, type ApiTokenControllerGetToken0V1Responses, type ApiTokenControllerGetToken1Data, type ApiTokenControllerGetToken1Errors, type ApiTokenControllerGetToken1Responses, type ApiTokenControllerUpdateToken0V1Data, type ApiTokenControllerUpdateToken0V1Errors, type ApiTokenControllerUpdateToken0V1Response, type ApiTokenControllerUpdateToken0V1Responses, type ApiTokenControllerUpdateToken1Data, type ApiTokenControllerUpdateToken1Errors, type ApiTokenControllerUpdateToken1Response, type ApiTokenControllerUpdateToken1Responses, type Auth, type CampaignsControllerCreate0V1Data, type CampaignsControllerCreate0V1Errors, type CampaignsControllerCreate0V1Response, type CampaignsControllerCreate0V1Responses, type CampaignsControllerCreate1Data, type CampaignsControllerCreate1Errors, type CampaignsControllerCreate1Response, type CampaignsControllerCreate1Responses, type CampaignsControllerDelete0V1Data, type CampaignsControllerDelete0V1Errors, type CampaignsControllerDelete0V1Response, type CampaignsControllerDelete0V1Responses, type CampaignsControllerDelete1Data, type CampaignsControllerDelete1Errors, type CampaignsControllerDelete1Response, type CampaignsControllerDelete1Responses, type CampaignsControllerGet0V1Data, type CampaignsControllerGet0V1Errors, type CampaignsControllerGet0V1Response, type CampaignsControllerGet0V1Responses, type CampaignsControllerGet1Data, type CampaignsControllerGet1Errors, type CampaignsControllerGet1Response, type CampaignsControllerGet1Responses, type CampaignsControllerGetMany0V1Data, type CampaignsControllerGetMany0V1Errors, type CampaignsControllerGetMany0V1Response, type CampaignsControllerGetMany0V1Responses, type CampaignsControllerGetMany1Data, type CampaignsControllerGetMany1Errors, type CampaignsControllerGetMany1Response, type CampaignsControllerGetMany1Responses, type CampaignsControllerUpdate0V1Data, type CampaignsControllerUpdate0V1Errors, type CampaignsControllerUpdate0V1Response, type CampaignsControllerUpdate0V1Responses, type CampaignsControllerUpdate1Data, type CampaignsControllerUpdate1Errors, type CampaignsControllerUpdate1Response, type CampaignsControllerUpdate1Responses, type Client, type ClientOptions$1 as ClientOptions, type ConditionsControllerGetSunAltitudeTimeLimits0V1Data, type ConditionsControllerGetSunAltitudeTimeLimits0V1Response, type ConditionsControllerGetSunAltitudeTimeLimits0V1Responses, type ConditionsControllerGetSunAltitudeTimeLimits1Data, type ConditionsControllerGetSunAltitudeTimeLimits1Response, type ConditionsControllerGetSunAltitudeTimeLimits1Responses, type Config, type ContractsControllerCreateContract0V1Data, type ContractsControllerCreateContract0V1Errors, type ContractsControllerCreateContract0V1Response, type ContractsControllerCreateContract0V1Responses, type ContractsControllerCreateContract1Data, type ContractsControllerCreateContract1Errors, type ContractsControllerCreateContract1Response, type ContractsControllerCreateContract1Responses, type ContractsControllerDeleteContract0V1Data, type ContractsControllerDeleteContract0V1Errors, type ContractsControllerDeleteContract0V1Response, type ContractsControllerDeleteContract0V1Responses, type ContractsControllerDeleteContract1Data, type ContractsControllerDeleteContract1Errors, type ContractsControllerDeleteContract1Response, type ContractsControllerDeleteContract1Responses, type ContractsControllerGetAllContracts0V1Data, type ContractsControllerGetAllContracts0V1Errors, type ContractsControllerGetAllContracts0V1Response, type ContractsControllerGetAllContracts0V1Responses, type ContractsControllerGetAllContracts1Data, type ContractsControllerGetAllContracts1Errors, type ContractsControllerGetAllContracts1Response, type ContractsControllerGetAllContracts1Responses, type ContractsControllerGetContract0V1Data, type ContractsControllerGetContract0V1Errors, type ContractsControllerGetContract0V1Response, type ContractsControllerGetContract0V1Responses, type ContractsControllerGetContract1Data, type ContractsControllerGetContract1Errors, type ContractsControllerGetContract1Response, type ContractsControllerGetContract1Responses, type ContractsControllerUpdateContract0V1Data, type ContractsControllerUpdateContract0V1Errors, type ContractsControllerUpdateContract0V1Response, type ContractsControllerUpdateContract0V1Responses, type ContractsControllerUpdateContract1Data, type ContractsControllerUpdateContract1Errors, type ContractsControllerUpdateContract1Response, type ContractsControllerUpdateContract1Responses, type CreateApiTokenRequestDto, type CreateApiTokenResponseDto, type CreateCampaignBody, type CreateCampaignResponse, type CreateClientConfig, type CreateContractRequestDto, type CreateContractResponseDto, type CreateFileRequestDto, type CreateFileResponseDto, type CreateFlightPlanBody, type CreateFlightPlanResponse, type CreateInboundWebhookConfigBody, type CreateInboundWebhookConfigResponse, type CreateMissionRequestDto, type CreateMissionResponseDto, type CreateProposalRequestDto, type CreateProposalResponseDto, type CreateQuoteRequestDto, type CreateVaultsRequestDto, type CreateVaultsResponseDto, type CreateWebhookBody, type CreateWebhookResponse, type CreateZoneDto, type DeleteCampaignResponse, type DeleteContractResponseDto, type DeleteInboundWebhookConfigResponse, type DeleteWebhookResponse, type DlqRedriverControllerRedriveDlq0V1Data, type DlqRedriverControllerRedriveDlq0V1Errors, type DlqRedriverControllerRedriveDlq0V1Response, type DlqRedriverControllerRedriveDlq0V1Responses, type DlqRedriverControllerRedriveDlq1Data, type DlqRedriverControllerRedriveDlq1Errors, type DlqRedriverControllerRedriveDlq1Response, type DlqRedriverControllerRedriveDlq1Responses, Event, type EventProcessorFlightReviewsSyncControllerResyncFlightReviews0V1Data, type EventProcessorFlightReviewsSyncControllerResyncFlightReviews0V1Errors, type EventProcessorFlightReviewsSyncControllerResyncFlightReviews0V1Response, type EventProcessorFlightReviewsSyncControllerResyncFlightReviews0V1Responses, type EventProcessorFlightReviewsSyncControllerResyncFlightReviews1Data, type EventProcessorFlightReviewsSyncControllerResyncFlightReviews1Errors, type EventProcessorFlightReviewsSyncControllerResyncFlightReviews1Response, type EventProcessorFlightReviewsSyncControllerResyncFlightReviews1Responses, type EventProcessorMissionsSyncControllerResyncMissions0V1Data, type EventProcessorMissionsSyncControllerResyncMissions0V1Errors, type EventProcessorMissionsSyncControllerResyncMissions0V1Response, type EventProcessorMissionsSyncControllerResyncMissions0V1Responses, type EventProcessorMissionsSyncControllerResyncMissions1Data, type EventProcessorMissionsSyncControllerResyncMissions1Errors, type EventProcessorMissionsSyncControllerResyncMissions1Response, type EventProcessorMissionsSyncControllerResyncMissions1Responses, type FlightDto, type FlightPlansControllerCreate0V1Data, type FlightPlansControllerCreate0V1Errors, type FlightPlansControllerCreate0V1Response, type FlightPlansControllerCreate0V1Responses, type FlightPlansControllerCreate1Data, type FlightPlansControllerCreate1Errors, type FlightPlansControllerCreate1Response, type FlightPlansControllerCreate1Responses, type FlightPlansControllerGet0V1Data, type FlightPlansControllerGet0V1Errors, type FlightPlansControllerGet0V1Response, type FlightPlansControllerGet0V1Responses, type FlightPlansControllerGet1Data, type FlightPlansControllerGet1Errors, type FlightPlansControllerGet1Response, type FlightPlansControllerGet1Responses, type FlightPlansControllerGetMany0V1Data, type FlightPlansControllerGetMany0V1Errors, type FlightPlansControllerGetMany0V1Response, type FlightPlansControllerGetMany0V1Responses, type FlightPlansControllerGetMany1Data, type FlightPlansControllerGetMany1Errors, type FlightPlansControllerGetMany1Response, type FlightPlansControllerGetMany1Responses, type FlightReviewedEvent, type FlightReviewsControllerGetFlightReview0V1Data, type FlightReviewsControllerGetFlightReview0V1Errors, type FlightReviewsControllerGetFlightReview0V1Response, type FlightReviewsControllerGetFlightReview0V1Responses, type FlightReviewsControllerGetFlightReview1Data, type FlightReviewsControllerGetFlightReview1Errors, type FlightReviewsControllerGetFlightReview1Response, type FlightReviewsControllerGetFlightReview1Responses, type FlightReviewsControllerGetFlightReviews0V1Data, type FlightReviewsControllerGetFlightReviews0V1Errors, type FlightReviewsControllerGetFlightReviews0V1Response, type FlightReviewsControllerGetFlightReviews0V1Responses, type FlightReviewsControllerGetFlightReviews1Data, type FlightReviewsControllerGetFlightReviews1Errors, type FlightReviewsControllerGetFlightReviews1Response, type FlightReviewsControllerGetFlightReviews1Responses, type FlightSubmittedEvent, type FlightsControllerCreatePresignedUrls0V1Data, type FlightsControllerCreatePresignedUrls0V1Errors, type FlightsControllerCreatePresignedUrls0V1Response, type FlightsControllerCreatePresignedUrls0V1Responses, type FlightsControllerCreatePresignedUrls1Data, type FlightsControllerCreatePresignedUrls1Errors, type FlightsControllerCreatePresignedUrls1Response, type FlightsControllerCreatePresignedUrls1Responses, type FlightsControllerGenerateStorageKey0V1Data, type FlightsControllerGenerateStorageKey0V1Errors, type FlightsControllerGenerateStorageKey0V1Response, type FlightsControllerGenerateStorageKey0V1Responses, type FlightsControllerGenerateStorageKey1Data, type FlightsControllerGenerateStorageKey1Errors, type FlightsControllerGenerateStorageKey1Response, type FlightsControllerGenerateStorageKey1Responses, type FlightsControllerGetFlight0V1Data, type FlightsControllerGetFlight0V1Errors, type FlightsControllerGetFlight0V1Response, type FlightsControllerGetFlight0V1Responses, type FlightsControllerGetFlight1Data, type FlightsControllerGetFlight1Errors, type FlightsControllerGetFlight1Response, type FlightsControllerGetFlight1Responses, type FlightsControllerValidateFlight0V1Data, type FlightsControllerValidateFlight0V1Errors, type FlightsControllerValidateFlight0V1Response, type FlightsControllerValidateFlight0V1Responses, type FlightsControllerValidateFlight1Data, type FlightsControllerValidateFlight1Errors, type FlightsControllerValidateFlight1Response, type FlightsControllerValidateFlight1Responses, type GetCampaignResponse, type GetCampaignsResponse, type GetContractResponseDto, type GetContractsResponseDto, type GetFlightPlanResponse, type GetFlightPlansResponse, type GetFlightReviewResponseDto, type GetFlightReviewsResponseDto, type GetInboundWebhookConfigResponse, type GetInboundWebhookConfigsResponse, type GetMissionResponseDto, type GetMissionsResponseDto, type GetProposalData, type GetProposalErrors, type GetProposalResponse, type GetProposalResponseDto, type GetProposalResponses, type GetProposalsResponseDto, type GetProvenanceCryptoKeyResponse, type GetTimeLimitsForSunAltitudeResponse, type GetWebhookResponse, type GetWebhookStatusResponse, type GetWebhooksResponse, type InboundWebhookConfigsControllerCreate0V1Data, type InboundWebhookConfigsControllerCreate0V1Errors, type InboundWebhookConfigsControllerCreate0V1Response, type InboundWebhookConfigsControllerCreate0V1Responses, type InboundWebhookConfigsControllerCreate1Data, type InboundWebhookConfigsControllerCreate1Errors, type InboundWebhookConfigsControllerCreate1Response, type InboundWebhookConfigsControllerCreate1Responses, type InboundWebhookConfigsControllerDelete0V1Data, type InboundWebhookConfigsControllerDelete0V1Errors, type InboundWebhookConfigsControllerDelete0V1Response, type InboundWebhookConfigsControllerDelete0V1Responses, type InboundWebhookConfigsControllerDelete1Data, type InboundWebhookConfigsControllerDelete1Errors, type InboundWebhookConfigsControllerDelete1Response, type InboundWebhookConfigsControllerDelete1Responses, type InboundWebhookConfigsControllerGet0V1Data, type InboundWebhookConfigsControllerGet0V1Errors, type InboundWebhookConfigsControllerGet0V1Response, type InboundWebhookConfigsControllerGet0V1Responses, type InboundWebhookConfigsControllerGet1Data, type InboundWebhookConfigsControllerGet1Errors, type InboundWebhookConfigsControllerGet1Response, type InboundWebhookConfigsControllerGet1Responses, type InboundWebhookConfigsControllerGetMany0V1Data, type InboundWebhookConfigsControllerGetMany0V1Errors, type InboundWebhookConfigsControllerGetMany0V1Response, type InboundWebhookConfigsControllerGetMany0V1Responses, type InboundWebhookConfigsControllerGetMany1Data, type InboundWebhookConfigsControllerGetMany1Errors, type InboundWebhookConfigsControllerGetMany1Response, type InboundWebhookConfigsControllerGetMany1Responses, type InboundWebhookConfigsControllerUpdate0V1Data, type InboundWebhookConfigsControllerUpdate0V1Errors, type InboundWebhookConfigsControllerUpdate0V1Response, type InboundWebhookConfigsControllerUpdate0V1Responses, type InboundWebhookConfigsControllerUpdate1Data, type InboundWebhookConfigsControllerUpdate1Errors, type InboundWebhookConfigsControllerUpdate1Response, type InboundWebhookConfigsControllerUpdate1Responses, type KeysControllerGetProvenanceCryptoKey0V1Data, type KeysControllerGetProvenanceCryptoKey0V1Response, type KeysControllerGetProvenanceCryptoKey0V1Responses, type KeysControllerGetProvenanceCryptoKey1Data, type KeysControllerGetProvenanceCryptoKey1Response, type KeysControllerGetProvenanceCryptoKey1Responses, type ListProposalsData, type ListProposalsErrors, type ListProposalsResponse, type ListProposalsResponses, type MissionCreatedEvent, type MissionPaidEvent, type MissionUpdatedEvent, type MissionsControllerCreateMissions0V1Data, type MissionsControllerCreateMissions0V1Errors, type MissionsControllerCreateMissions0V1Response, type MissionsControllerCreateMissions0V1Responses, type MissionsControllerCreateMissions1Data, type MissionsControllerCreateMissions1Errors, type MissionsControllerCreateMissions1Response, type MissionsControllerCreateMissions1Responses, type MissionsControllerGetMission0V1Data, type MissionsControllerGetMission0V1Errors, type MissionsControllerGetMission0V1Response, type MissionsControllerGetMission0V1Responses, type MissionsControllerGetMission1Data, type MissionsControllerGetMission1Errors, type MissionsControllerGetMission1Response, type MissionsControllerGetMission1Responses, type MissionsControllerGetMissions0V1Data, type MissionsControllerGetMissions0V1Errors, type MissionsControllerGetMissions0V1Response, type MissionsControllerGetMissions0V1Responses, type MissionsControllerGetMissions1Data, type MissionsControllerGetMissions1Errors, type MissionsControllerGetMissions1Response, type MissionsControllerGetMissions1Responses, type MissionsControllerRepriceMissions0V1Data, type MissionsControllerRepriceMissions0V1Errors, type MissionsControllerRepriceMissions0V1Response, type MissionsControllerRepriceMissions0V1Responses, type MissionsControllerRepriceMissions1Data, type MissionsControllerRepriceMissions1Errors, type MissionsControllerRepriceMissions1Response, type MissionsControllerRepriceMissions1Responses, type MissionsControllerUpdateMissions0V1Data, type MissionsControllerUpdateMissions0V1Errors, type MissionsControllerUpdateMissions0V1Response, type MissionsControllerUpdateMissions0V1Responses, type MissionsControllerUpdateMissions1Data, type MissionsControllerUpdateMissions1Errors, type MissionsControllerUpdateMissions1Response, type MissionsControllerUpdateMissions1Responses, type Options, type OptionsLegacyParser, type ProtocolTriggersApiControllerTriggerMissionClose0V1Data, type ProtocolTriggersApiControllerTriggerMissionClose0V1Errors, type ProtocolTriggersApiControllerTriggerMissionClose0V1Responses, type ProtocolTriggersApiControllerTriggerMissionClose1Data, type ProtocolTriggersApiControllerTriggerMissionClose1Errors, type ProtocolTriggersApiControllerTriggerMissionClose1Responses, type ProtocolTriggersApiControllerTriggerPayout0V1Data, type ProtocolTriggersApiControllerTriggerPayout0V1Errors, type ProtocolTriggersApiControllerTriggerPayout0V1Responses, type ProtocolTriggersApiControllerTriggerPayout1Data, type ProtocolTriggersApiControllerTriggerPayout1Errors, type ProtocolTriggersApiControllerTriggerPayout1Responses, type QuerySerializerOptions, type QuotesControllerCreateQuote0V1Data, type QuotesControllerCreateQuote0V1Errors, type QuotesControllerCreateQuote0V1Responses, type QuotesControllerCreateQuote1Data, type QuotesControllerCreateQuote1Errors, type QuotesControllerCreateQuote1Responses, type QuotesControllerGetQuote0V1Data, type QuotesControllerGetQuote0V1Errors, type QuotesControllerGetQuote0V1Responses, type QuotesControllerGetQuote1Data, type QuotesControllerGetQuote1Errors, type QuotesControllerGetQuote1Responses, type RedriveDlqRequestDto, type RedriveDlqResponseDto, type RegenerateWebhookSecretBody, type RegenerateWebhookSecretResponseDto, type RepriceMissionsRequestDto, type RepriceMissionsResponseDto, type RequestOptions, type RequestResult, type ResponseStyle, type ReviewProposalData, type ReviewProposalErrors, type ReviewProposalRequestDto, type ReviewProposalResponse, type ReviewProposalResponseDto, type ReviewProposalResponses, type SchemaControllerGetEventSchema0V1Data, type SchemaControllerGetEventSchema0V1Responses, type SchemaControllerGetEventSchema1Data, type SchemaControllerGetEventSchema1Responses, type SubmitProposalData, type SubmitProposalErrors, type SubmitProposalResponse, type SubmitProposalResponses, type SyncEventProcessorFlightReviewsRequestDto, type SyncEventProcessorFlightReviewsResponseDto, type SyncEventProcessorMissionsRequestDto, type SyncEventProcessorMissionsResponseDto, type TDataShape, type TestEvent, type TestWebhookResponse, type TriggerMissionCloseRequestDto, type TriggerPayoutRequestDto, type UpdateApiTokenRequestDto, type UpdateApiTokenResponseDto, type UpdateCampaignBody, type UpdateCampaignResponse, type UpdateContractRequestDto, type UpdateContractResponseDto, type UpdateInboundWebhookConfigBody, type UpdateInboundWebhookConfigResponse, type UpdateMissionsRequestDto, type UpdateMissionsResponseDto, type UpdateWebhookBody, type UpdateWebhookResponse, type UpdateZoneDto, type ValidateFlightRequestDto, type ValidateFlightResponseDto, type VaultsControllerCreateVaults0V1Data, type VaultsControllerCreateVaults0V1Errors, type VaultsControllerCreateVaults0V1Response, type VaultsControllerCreateVaults0V1Responses, type VaultsControllerCreateVaults1Data, type VaultsControllerCreateVaults1Errors, type VaultsControllerCreateVaults1Response, type VaultsControllerCreateVaults1Responses, WEBHOOK_PREVIOUS_SECRET_EXPIRES_AT_HEADER, WEBHOOK_PREVIOUS_SECRET_HEADER, WEBHOOK_SECRET_HEADER, type WebhooksControllerCreate0V1Data, type WebhooksControllerCreate0V1Errors, type WebhooksControllerCreate0V1Response, type WebhooksControllerCreate0V1Responses, type WebhooksControllerCreate1Data, type WebhooksControllerCreate1Errors, type WebhooksControllerCreate1Response, type WebhooksControllerCreate1Responses, type WebhooksControllerDelete0V1Data, type WebhooksControllerDelete0V1Errors, type WebhooksControllerDelete0V1Response, type WebhooksControllerDelete0V1Responses, type WebhooksControllerDelete1Data, type WebhooksControllerDelete1Errors, type WebhooksControllerDelete1Response, type WebhooksControllerDelete1Responses, type WebhooksControllerGet0V1Data, type WebhooksControllerGet0V1Errors, type WebhooksControllerGet0V1Response, type WebhooksControllerGet0V1Responses, type WebhooksControllerGet1Data, type WebhooksControllerGet1Errors, type WebhooksControllerGet1Response, type WebhooksControllerGet1Responses, type WebhooksControllerGetMany0V1Data, type WebhooksControllerGetMany0V1Errors, type WebhooksControllerGetMany0V1Response, type WebhooksControllerGetMany0V1Responses, type WebhooksControllerGetMany1Data, type WebhooksControllerGetMany1Errors, type WebhooksControllerGetMany1Response, type WebhooksControllerGetMany1Responses, type WebhooksControllerGetStatus0V1Data, type WebhooksControllerGetStatus0V1Errors, type WebhooksControllerGetStatus0V1Response, type WebhooksControllerGetStatus0V1Responses, type WebhooksControllerGetStatus1Data, type WebhooksControllerGetStatus1Errors, type WebhooksControllerGetStatus1Response, type WebhooksControllerGetStatus1Responses, type WebhooksControllerRegenerateSecret0V1Data, type WebhooksControllerRegenerateSecret0V1Errors, type WebhooksControllerRegenerateSecret0V1Response, type WebhooksControllerRegenerateSecret0V1Responses, type WebhooksControllerRegenerateSecret1Data, type WebhooksControllerRegenerateSecret1Errors, type WebhooksControllerRegenerateSecret1Response, type WebhooksControllerRegenerateSecret1Responses, type WebhooksControllerTest0V1Data, type WebhooksControllerTest0V1Errors, type WebhooksControllerTest0V1Response, type WebhooksControllerTest0V1Responses, type WebhooksControllerTest1Data, type WebhooksControllerTest1Errors, type WebhooksControllerTest1Response, type WebhooksControllerTest1Responses, type WebhooksControllerUpdate0V1Data, type WebhooksControllerUpdate0V1Errors, type WebhooksControllerUpdate0V1Response, type WebhooksControllerUpdate0V1Responses, type WebhooksControllerUpdate1Data, type WebhooksControllerUpdate1Errors, type WebhooksControllerUpdate1Response, type WebhooksControllerUpdate1Responses, type ZoneEvent, type ZoneResponseDto, type ZonesControllerCreateZone0V1Data, type ZonesControllerCreateZone0V1Errors, type ZonesControllerCreateZone0V1Response, type ZonesControllerCreateZone0V1Responses, type ZonesControllerCreateZone1Data, type ZonesControllerCreateZone1Errors, type ZonesControllerCreateZone1Response, type ZonesControllerCreateZone1Responses, type ZonesControllerDeleteZone0V1Data, type ZonesControllerDeleteZone0V1Errors, type ZonesControllerDeleteZone0V1Response, type ZonesControllerDeleteZone0V1Responses, type ZonesControllerDeleteZone1Data, type ZonesControllerDeleteZone1Errors, type ZonesControllerDeleteZone1Response, type ZonesControllerDeleteZone1Responses, type ZonesControllerUpdateZone0V1Data, type ZonesControllerUpdateZone0V1Errors, type ZonesControllerUpdateZone0V1Response, type ZonesControllerUpdateZone0V1Responses, type ZonesControllerUpdateZone1Data, type ZonesControllerUpdateZone1Errors, type ZonesControllerUpdateZone1Response, type ZonesControllerUpdateZone1Responses, alchemyControllerHandleWebhook0V1, alchemyControllerHandleWebhook1, apiControllerGetError0V1, apiControllerGetError1, apiControllerGetHello0V1, apiControllerGetHello1, apiTokenControllerCreateToken0V1, apiTokenControllerCreateToken1, apiTokenControllerDeleteToken0V1, apiTokenControllerDeleteToken1, apiTokenControllerGetToken0V1, apiTokenControllerGetToken1, apiTokenControllerUpdateToken0V1, apiTokenControllerUpdateToken1, buildClientParams, campaignsControllerCreate0V1, campaignsControllerCreate1, campaignsControllerDelete0V1, campaignsControllerDelete1, campaignsControllerGet0V1, campaignsControllerGet1, campaignsControllerGetMany0V1, campaignsControllerGetMany1, campaignsControllerUpdate0V1, campaignsControllerUpdate1, conditionsControllerGetSunAltitudeTimeLimits0V1, conditionsControllerGetSunAltitudeTimeLimits1, contractsControllerCreateContract0V1, contractsControllerCreateContract1, contractsControllerDeleteContract0V1, contractsControllerDeleteContract1, contractsControllerGetAllContracts0V1, contractsControllerGetAllContracts1, contractsControllerGetContract0V1, contractsControllerGetContract1, contractsControllerUpdateContract0V1, contractsControllerUpdateContract1, createClient, createConfig, dlqRedriverControllerRedriveDlq0V1, dlqRedriverControllerRedriveDlq1, eventProcessorFlightReviewsSyncControllerResyncFlightReviews0V1, eventProcessorFlightReviewsSyncControllerResyncFlightReviews1, eventProcessorMissionsSyncControllerResyncMissions0V1, eventProcessorMissionsSyncControllerResyncMissions1, flightPlansControllerCreate0V1, flightPlansControllerCreate1, flightPlansControllerGet0V1, flightPlansControllerGet1, flightPlansControllerGetMany0V1, flightPlansControllerGetMany1, flightReviewsControllerGetFlightReview0V1, flightReviewsControllerGetFlightReview1, flightReviewsControllerGetFlightReviews0V1, flightReviewsControllerGetFlightReviews1, flightsControllerCreatePresignedUrls0V1, flightsControllerCreatePresignedUrls1, flightsControllerGenerateStorageKey0V1, flightsControllerGenerateStorageKey1, flightsControllerGetFlight0V1, flightsControllerGetFlight1, flightsControllerValidateFlight0V1, flightsControllerValidateFlight1, formDataBodySerializer, getProposal, inboundWebhookConfigsControllerCreate0V1, inboundWebhookConfigsControllerCreate1, inboundWebhookConfigsControllerDelete0V1, inboundWebhookConfigsControllerDelete1, inboundWebhookConfigsControllerGet0V1, inboundWebhookConfigsControllerGet1, inboundWebhookConfigsControllerGetMany0V1, inboundWebhookConfigsControllerGetMany1, inboundWebhookConfigsControllerUpdate0V1, inboundWebhookConfigsControllerUpdate1, jsonBodySerializer, keysControllerGetProvenanceCryptoKey0V1, keysControllerGetProvenanceCryptoKey1, listProposals, mergeHeaders, missionsControllerCreateMissions0V1, missionsControllerCreateMissions1, missionsControllerGetMission0V1, missionsControllerGetMission1, missionsControllerGetMissions0V1, missionsControllerGetMissions1, missionsControllerRepriceMissions0V1, missionsControllerRepriceMissions1, missionsControllerUpdateMissions0V1, missionsControllerUpdateMissions1, parseWebhookEvent, protocolTriggersApiControllerTriggerMissionClose0V1, protocolTriggersApiControllerTriggerMissionClose1, protocolTriggersApiControllerTriggerPayout0V1, protocolTriggersApiControllerTriggerPayout1, quotesControllerCreateQuote0V1, quotesControllerCreateQuote1, quotesControllerGetQuote0V1, quotesControllerGetQuote1, reviewProposal, schemaControllerGetEventSchema0V1, schemaControllerGetEventSchema1, submitProposal, urlSearchParamsBodySerializer, vaultsControllerCreateVaults0V1, vaultsControllerCreateVaults1, webhooksControllerCreate0V1, webhooksControllerCreate1, webhooksControllerDelete0V1, webhooksControllerDelete1, webhooksControllerGet0V1, webhooksControllerGet1, webhooksControllerGetMany0V1, webhooksControllerGetMany1, webhooksControllerGetStatus0V1, webhooksControllerGetStatus1, webhooksControllerRegenerateSecret0V1, webhooksControllerRegenerateSecret1, webhooksControllerTest0V1, webhooksControllerTest1, webhooksControllerUpdate0V1, webhooksControllerUpdate1, zonesControllerCreateZone0V1, zonesControllerCreateZone1, zonesControllerDeleteZone0V1, zonesControllerDeleteZone1, zonesControllerUpdateZone0V1, zonesControllerUpdateZone1 };
|