@layer-drone/protocol 0.7.0 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/index.d.mts +1137 -271
- package/dist/index.d.ts +1137 -271
- package/dist/index.js +1328 -385
- package/dist/index.mjs +1222 -333
- package/package.json +3 -3
- package/src/client/sdk.gen.ts +2231 -584
- package/src/client/transformers.gen.ts +269 -77
- package/src/client/types.gen.ts +1541 -359
package/dist/index.mjs
CHANGED
|
@@ -695,10 +695,14 @@ var updateApiTokenResponseDtoSchemaResponseTransformer = /* @__PURE__ */ __name(
|
|
|
695
695
|
data.last_used = new Date(data.last_used);
|
|
696
696
|
return data;
|
|
697
697
|
}, "updateApiTokenResponseDtoSchemaResponseTransformer");
|
|
698
|
-
var
|
|
698
|
+
var apiTokenControllerUpdateToken0V1ResponseTransformer = /* @__PURE__ */ __name(async (data) => {
|
|
699
699
|
data = updateApiTokenResponseDtoSchemaResponseTransformer(data);
|
|
700
700
|
return data;
|
|
701
|
-
}, "
|
|
701
|
+
}, "apiTokenControllerUpdateToken0V1ResponseTransformer");
|
|
702
|
+
var apiTokenControllerUpdateToken1ResponseTransformer = /* @__PURE__ */ __name(async (data) => {
|
|
703
|
+
data = updateApiTokenResponseDtoSchemaResponseTransformer(data);
|
|
704
|
+
return data;
|
|
705
|
+
}, "apiTokenControllerUpdateToken1ResponseTransformer");
|
|
702
706
|
var getTimeLimitsForSunAltitudeResponseSchemaResponseTransformer = /* @__PURE__ */ __name((data) => {
|
|
703
707
|
data.OptimalSunAltitudePeriod.StartTime = new Date(data.OptimalSunAltitudePeriod.StartTime);
|
|
704
708
|
data.OptimalSunAltitudePeriod.EndTime = new Date(data.OptimalSunAltitudePeriod.EndTime);
|
|
@@ -706,10 +710,14 @@ var getTimeLimitsForSunAltitudeResponseSchemaResponseTransformer = /* @__PURE__
|
|
|
706
710
|
data.DaylightPeriod.EndTime = new Date(data.DaylightPeriod.EndTime);
|
|
707
711
|
return data;
|
|
708
712
|
}, "getTimeLimitsForSunAltitudeResponseSchemaResponseTransformer");
|
|
709
|
-
var
|
|
713
|
+
var conditionsControllerGetSunAltitudeTimeLimits0V1ResponseTransformer = /* @__PURE__ */ __name(async (data) => {
|
|
714
|
+
data = getTimeLimitsForSunAltitudeResponseSchemaResponseTransformer(data);
|
|
715
|
+
return data;
|
|
716
|
+
}, "conditionsControllerGetSunAltitudeTimeLimits0V1ResponseTransformer");
|
|
717
|
+
var conditionsControllerGetSunAltitudeTimeLimits1ResponseTransformer = /* @__PURE__ */ __name(async (data) => {
|
|
710
718
|
data = getTimeLimitsForSunAltitudeResponseSchemaResponseTransformer(data);
|
|
711
719
|
return data;
|
|
712
|
-
}, "
|
|
720
|
+
}, "conditionsControllerGetSunAltitudeTimeLimits1ResponseTransformer");
|
|
713
721
|
var getContractsResponseDtoSchemaResponseTransformer = /* @__PURE__ */ __name((data) => {
|
|
714
722
|
data.data = data.data.map((item) => {
|
|
715
723
|
if (item.deployedAt) {
|
|
@@ -719,26 +727,38 @@ var getContractsResponseDtoSchemaResponseTransformer = /* @__PURE__ */ __name((d
|
|
|
719
727
|
});
|
|
720
728
|
return data;
|
|
721
729
|
}, "getContractsResponseDtoSchemaResponseTransformer");
|
|
722
|
-
var
|
|
730
|
+
var contractsControllerGetAllContracts0V1ResponseTransformer = /* @__PURE__ */ __name(async (data) => {
|
|
723
731
|
data = getContractsResponseDtoSchemaResponseTransformer(data);
|
|
724
732
|
return data;
|
|
725
|
-
}, "
|
|
733
|
+
}, "contractsControllerGetAllContracts0V1ResponseTransformer");
|
|
734
|
+
var contractsControllerGetAllContracts1ResponseTransformer = /* @__PURE__ */ __name(async (data) => {
|
|
735
|
+
data = getContractsResponseDtoSchemaResponseTransformer(data);
|
|
736
|
+
return data;
|
|
737
|
+
}, "contractsControllerGetAllContracts1ResponseTransformer");
|
|
726
738
|
var flightDtoSchemaResponseTransformer = /* @__PURE__ */ __name((data) => {
|
|
727
739
|
data.payout.createdAt = new Date(data.payout.createdAt);
|
|
728
740
|
return data;
|
|
729
741
|
}, "flightDtoSchemaResponseTransformer");
|
|
730
|
-
var
|
|
742
|
+
var flightsControllerGetFlight0V1ResponseTransformer = /* @__PURE__ */ __name(async (data) => {
|
|
743
|
+
data = flightDtoSchemaResponseTransformer(data);
|
|
744
|
+
return data;
|
|
745
|
+
}, "flightsControllerGetFlight0V1ResponseTransformer");
|
|
746
|
+
var flightsControllerGetFlight1ResponseTransformer = /* @__PURE__ */ __name(async (data) => {
|
|
731
747
|
data = flightDtoSchemaResponseTransformer(data);
|
|
732
748
|
return data;
|
|
733
|
-
}, "
|
|
749
|
+
}, "flightsControllerGetFlight1ResponseTransformer");
|
|
734
750
|
var validateFlightResponseDtoSchemaResponseTransformer = /* @__PURE__ */ __name((data) => {
|
|
735
751
|
data.flightId = BigInt(data.flightId.toString());
|
|
736
752
|
return data;
|
|
737
753
|
}, "validateFlightResponseDtoSchemaResponseTransformer");
|
|
738
|
-
var
|
|
754
|
+
var flightsControllerValidateFlight0V1ResponseTransformer = /* @__PURE__ */ __name(async (data) => {
|
|
739
755
|
data = validateFlightResponseDtoSchemaResponseTransformer(data);
|
|
740
756
|
return data;
|
|
741
|
-
}, "
|
|
757
|
+
}, "flightsControllerValidateFlight0V1ResponseTransformer");
|
|
758
|
+
var flightsControllerValidateFlight1ResponseTransformer = /* @__PURE__ */ __name(async (data) => {
|
|
759
|
+
data = validateFlightResponseDtoSchemaResponseTransformer(data);
|
|
760
|
+
return data;
|
|
761
|
+
}, "flightsControllerValidateFlight1ResponseTransformer");
|
|
742
762
|
var getFlightPlansResponseSchemaResponseTransformer = /* @__PURE__ */ __name((data) => {
|
|
743
763
|
data.data = data.data.map((item) => {
|
|
744
764
|
item.created_at = new Date(item.created_at);
|
|
@@ -747,37 +767,53 @@ var getFlightPlansResponseSchemaResponseTransformer = /* @__PURE__ */ __name((da
|
|
|
747
767
|
});
|
|
748
768
|
return data;
|
|
749
769
|
}, "getFlightPlansResponseSchemaResponseTransformer");
|
|
750
|
-
var
|
|
770
|
+
var flightPlansControllerGetMany0V1ResponseTransformer = /* @__PURE__ */ __name(async (data) => {
|
|
751
771
|
data = getFlightPlansResponseSchemaResponseTransformer(data);
|
|
752
772
|
return data;
|
|
753
|
-
}, "
|
|
773
|
+
}, "flightPlansControllerGetMany0V1ResponseTransformer");
|
|
754
774
|
var createFlightPlanResponseSchemaResponseTransformer = /* @__PURE__ */ __name((data) => {
|
|
755
775
|
data.created_at = new Date(data.created_at);
|
|
756
776
|
data.updated_at = new Date(data.updated_at);
|
|
757
777
|
return data;
|
|
758
778
|
}, "createFlightPlanResponseSchemaResponseTransformer");
|
|
759
|
-
var
|
|
779
|
+
var flightPlansControllerCreate0V1ResponseTransformer = /* @__PURE__ */ __name(async (data) => {
|
|
780
|
+
data = createFlightPlanResponseSchemaResponseTransformer(data);
|
|
781
|
+
return data;
|
|
782
|
+
}, "flightPlansControllerCreate0V1ResponseTransformer");
|
|
783
|
+
var flightPlansControllerGetMany1ResponseTransformer = /* @__PURE__ */ __name(async (data) => {
|
|
784
|
+
data = getFlightPlansResponseSchemaResponseTransformer(data);
|
|
785
|
+
return data;
|
|
786
|
+
}, "flightPlansControllerGetMany1ResponseTransformer");
|
|
787
|
+
var flightPlansControllerCreate1ResponseTransformer = /* @__PURE__ */ __name(async (data) => {
|
|
760
788
|
data = createFlightPlanResponseSchemaResponseTransformer(data);
|
|
761
789
|
return data;
|
|
762
|
-
}, "
|
|
790
|
+
}, "flightPlansControllerCreate1ResponseTransformer");
|
|
763
791
|
var getFlightPlanResponseSchemaResponseTransformer = /* @__PURE__ */ __name((data) => {
|
|
764
792
|
data.created_at = new Date(data.created_at);
|
|
765
793
|
data.updated_at = new Date(data.updated_at);
|
|
766
794
|
return data;
|
|
767
795
|
}, "getFlightPlanResponseSchemaResponseTransformer");
|
|
768
|
-
var
|
|
796
|
+
var flightPlansControllerGet0V1ResponseTransformer = /* @__PURE__ */ __name(async (data) => {
|
|
797
|
+
data = getFlightPlanResponseSchemaResponseTransformer(data);
|
|
798
|
+
return data;
|
|
799
|
+
}, "flightPlansControllerGet0V1ResponseTransformer");
|
|
800
|
+
var flightPlansControllerGet1ResponseTransformer = /* @__PURE__ */ __name(async (data) => {
|
|
769
801
|
data = getFlightPlanResponseSchemaResponseTransformer(data);
|
|
770
802
|
return data;
|
|
771
|
-
}, "
|
|
803
|
+
}, "flightPlansControllerGet1ResponseTransformer");
|
|
772
804
|
var getFlightReviewResponseDtoSchemaResponseTransformer = /* @__PURE__ */ __name((data) => {
|
|
773
805
|
data.createdAt = new Date(data.createdAt);
|
|
774
806
|
data.updatedAt = new Date(data.updatedAt);
|
|
775
807
|
return data;
|
|
776
808
|
}, "getFlightReviewResponseDtoSchemaResponseTransformer");
|
|
777
|
-
var
|
|
809
|
+
var flightReviewsControllerGetFlightReview0V1ResponseTransformer = /* @__PURE__ */ __name(async (data) => {
|
|
778
810
|
data = getFlightReviewResponseDtoSchemaResponseTransformer(data);
|
|
779
811
|
return data;
|
|
780
|
-
}, "
|
|
812
|
+
}, "flightReviewsControllerGetFlightReview0V1ResponseTransformer");
|
|
813
|
+
var flightReviewsControllerGetFlightReview1ResponseTransformer = /* @__PURE__ */ __name(async (data) => {
|
|
814
|
+
data = getFlightReviewResponseDtoSchemaResponseTransformer(data);
|
|
815
|
+
return data;
|
|
816
|
+
}, "flightReviewsControllerGetFlightReview1ResponseTransformer");
|
|
781
817
|
var getFlightReviewsResponseDtoSchemaResponseTransformer = /* @__PURE__ */ __name((data) => {
|
|
782
818
|
data.flightReviews = data.flightReviews.map((item) => {
|
|
783
819
|
item.createdAt = new Date(item.createdAt);
|
|
@@ -786,10 +822,14 @@ var getFlightReviewsResponseDtoSchemaResponseTransformer = /* @__PURE__ */ __nam
|
|
|
786
822
|
});
|
|
787
823
|
return data;
|
|
788
824
|
}, "getFlightReviewsResponseDtoSchemaResponseTransformer");
|
|
789
|
-
var
|
|
825
|
+
var flightReviewsControllerGetFlightReviews0V1ResponseTransformer = /* @__PURE__ */ __name(async (data) => {
|
|
826
|
+
data = getFlightReviewsResponseDtoSchemaResponseTransformer(data);
|
|
827
|
+
return data;
|
|
828
|
+
}, "flightReviewsControllerGetFlightReviews0V1ResponseTransformer");
|
|
829
|
+
var flightReviewsControllerGetFlightReviews1ResponseTransformer = /* @__PURE__ */ __name(async (data) => {
|
|
790
830
|
data = getFlightReviewsResponseDtoSchemaResponseTransformer(data);
|
|
791
831
|
return data;
|
|
792
|
-
}, "
|
|
832
|
+
}, "flightReviewsControllerGetFlightReviews1ResponseTransformer");
|
|
793
833
|
var getMissionResponseDtoSchemaResponseTransformer = /* @__PURE__ */ __name((data) => {
|
|
794
834
|
data.captureStartTime = new Date(data.captureStartTime);
|
|
795
835
|
data.captureEndTime = new Date(data.captureEndTime);
|
|
@@ -804,10 +844,14 @@ var getMissionResponseDtoSchemaResponseTransformer = /* @__PURE__ */ __name((dat
|
|
|
804
844
|
}
|
|
805
845
|
return data;
|
|
806
846
|
}, "getMissionResponseDtoSchemaResponseTransformer");
|
|
807
|
-
var
|
|
847
|
+
var missionsControllerGetMission0V1ResponseTransformer = /* @__PURE__ */ __name(async (data) => {
|
|
808
848
|
data = getMissionResponseDtoSchemaResponseTransformer(data);
|
|
809
849
|
return data;
|
|
810
|
-
}, "
|
|
850
|
+
}, "missionsControllerGetMission0V1ResponseTransformer");
|
|
851
|
+
var missionsControllerGetMission1ResponseTransformer = /* @__PURE__ */ __name(async (data) => {
|
|
852
|
+
data = getMissionResponseDtoSchemaResponseTransformer(data);
|
|
853
|
+
return data;
|
|
854
|
+
}, "missionsControllerGetMission1ResponseTransformer");
|
|
811
855
|
var getMissionsResponseDtoSchemaResponseTransformer = /* @__PURE__ */ __name((data) => {
|
|
812
856
|
data.missions = data.missions.map((item) => {
|
|
813
857
|
item.captureStartTime = new Date(item.captureStartTime);
|
|
@@ -825,10 +869,10 @@ var getMissionsResponseDtoSchemaResponseTransformer = /* @__PURE__ */ __name((da
|
|
|
825
869
|
});
|
|
826
870
|
return data;
|
|
827
871
|
}, "getMissionsResponseDtoSchemaResponseTransformer");
|
|
828
|
-
var
|
|
872
|
+
var missionsControllerGetMissions0V1ResponseTransformer = /* @__PURE__ */ __name(async (data) => {
|
|
829
873
|
data = getMissionsResponseDtoSchemaResponseTransformer(data);
|
|
830
874
|
return data;
|
|
831
|
-
}, "
|
|
875
|
+
}, "missionsControllerGetMissions0V1ResponseTransformer");
|
|
832
876
|
var createMissionResponseDtoSchemaResponseTransformer = /* @__PURE__ */ __name((data) => {
|
|
833
877
|
data.data.missions = data.data.missions.map((item) => {
|
|
834
878
|
item.captureStartTime = new Date(item.captureStartTime);
|
|
@@ -837,10 +881,18 @@ var createMissionResponseDtoSchemaResponseTransformer = /* @__PURE__ */ __name((
|
|
|
837
881
|
});
|
|
838
882
|
return data;
|
|
839
883
|
}, "createMissionResponseDtoSchemaResponseTransformer");
|
|
840
|
-
var
|
|
884
|
+
var missionsControllerCreateMissions0V1ResponseTransformer = /* @__PURE__ */ __name(async (data) => {
|
|
885
|
+
data = createMissionResponseDtoSchemaResponseTransformer(data);
|
|
886
|
+
return data;
|
|
887
|
+
}, "missionsControllerCreateMissions0V1ResponseTransformer");
|
|
888
|
+
var missionsControllerGetMissions1ResponseTransformer = /* @__PURE__ */ __name(async (data) => {
|
|
889
|
+
data = getMissionsResponseDtoSchemaResponseTransformer(data);
|
|
890
|
+
return data;
|
|
891
|
+
}, "missionsControllerGetMissions1ResponseTransformer");
|
|
892
|
+
var missionsControllerCreateMissions1ResponseTransformer = /* @__PURE__ */ __name(async (data) => {
|
|
841
893
|
data = createMissionResponseDtoSchemaResponseTransformer(data);
|
|
842
894
|
return data;
|
|
843
|
-
}, "
|
|
895
|
+
}, "missionsControllerCreateMissions1ResponseTransformer");
|
|
844
896
|
var getWebhooksResponseSchemaResponseTransformer = /* @__PURE__ */ __name((data) => {
|
|
845
897
|
data = data.map((item) => {
|
|
846
898
|
item.previous_secret_expires_at = new Date(item.previous_secret_expires_at);
|
|
@@ -848,47 +900,71 @@ var getWebhooksResponseSchemaResponseTransformer = /* @__PURE__ */ __name((data)
|
|
|
848
900
|
});
|
|
849
901
|
return data;
|
|
850
902
|
}, "getWebhooksResponseSchemaResponseTransformer");
|
|
851
|
-
var
|
|
903
|
+
var webhooksControllerGetMany0V1ResponseTransformer = /* @__PURE__ */ __name(async (data) => {
|
|
904
|
+
data = getWebhooksResponseSchemaResponseTransformer(data);
|
|
905
|
+
return data;
|
|
906
|
+
}, "webhooksControllerGetMany0V1ResponseTransformer");
|
|
907
|
+
var webhooksControllerGetMany1ResponseTransformer = /* @__PURE__ */ __name(async (data) => {
|
|
852
908
|
data = getWebhooksResponseSchemaResponseTransformer(data);
|
|
853
909
|
return data;
|
|
854
|
-
}, "
|
|
910
|
+
}, "webhooksControllerGetMany1ResponseTransformer");
|
|
855
911
|
var getWebhookResponseSchemaResponseTransformer = /* @__PURE__ */ __name((data) => {
|
|
856
912
|
data.previous_secret_expires_at = new Date(data.previous_secret_expires_at);
|
|
857
913
|
return data;
|
|
858
914
|
}, "getWebhookResponseSchemaResponseTransformer");
|
|
859
|
-
var
|
|
915
|
+
var webhooksControllerGet0V1ResponseTransformer = /* @__PURE__ */ __name(async (data) => {
|
|
860
916
|
data = getWebhookResponseSchemaResponseTransformer(data);
|
|
861
917
|
return data;
|
|
862
|
-
}, "
|
|
918
|
+
}, "webhooksControllerGet0V1ResponseTransformer");
|
|
863
919
|
var updateWebhookResponseSchemaResponseTransformer = /* @__PURE__ */ __name((data) => {
|
|
864
920
|
data.previous_secret_expires_at = new Date(data.previous_secret_expires_at);
|
|
865
921
|
return data;
|
|
866
922
|
}, "updateWebhookResponseSchemaResponseTransformer");
|
|
867
|
-
var
|
|
923
|
+
var webhooksControllerUpdate0V1ResponseTransformer = /* @__PURE__ */ __name(async (data) => {
|
|
924
|
+
data = updateWebhookResponseSchemaResponseTransformer(data);
|
|
925
|
+
return data;
|
|
926
|
+
}, "webhooksControllerUpdate0V1ResponseTransformer");
|
|
927
|
+
var webhooksControllerGet1ResponseTransformer = /* @__PURE__ */ __name(async (data) => {
|
|
928
|
+
data = getWebhookResponseSchemaResponseTransformer(data);
|
|
929
|
+
return data;
|
|
930
|
+
}, "webhooksControllerGet1ResponseTransformer");
|
|
931
|
+
var webhooksControllerUpdate1ResponseTransformer = /* @__PURE__ */ __name(async (data) => {
|
|
868
932
|
data = updateWebhookResponseSchemaResponseTransformer(data);
|
|
869
933
|
return data;
|
|
870
|
-
}, "
|
|
934
|
+
}, "webhooksControllerUpdate1ResponseTransformer");
|
|
871
935
|
var regenerateWebhookSecretResponseDtoSchemaResponseTransformer = /* @__PURE__ */ __name((data) => {
|
|
872
936
|
data.previous_secret_expires_at = new Date(data.previous_secret_expires_at);
|
|
873
937
|
return data;
|
|
874
938
|
}, "regenerateWebhookSecretResponseDtoSchemaResponseTransformer");
|
|
875
|
-
var
|
|
939
|
+
var webhooksControllerRegenerateSecret0V1ResponseTransformer = /* @__PURE__ */ __name(async (data) => {
|
|
876
940
|
data = regenerateWebhookSecretResponseDtoSchemaResponseTransformer(data);
|
|
877
941
|
return data;
|
|
878
|
-
}, "
|
|
942
|
+
}, "webhooksControllerRegenerateSecret0V1ResponseTransformer");
|
|
943
|
+
var webhooksControllerRegenerateSecret1ResponseTransformer = /* @__PURE__ */ __name(async (data) => {
|
|
944
|
+
data = regenerateWebhookSecretResponseDtoSchemaResponseTransformer(data);
|
|
945
|
+
return data;
|
|
946
|
+
}, "webhooksControllerRegenerateSecret1ResponseTransformer");
|
|
879
947
|
var zoneResponseDtoSchemaResponseTransformer = /* @__PURE__ */ __name((data) => {
|
|
880
948
|
data.created_at = new Date(data.created_at);
|
|
881
949
|
data.updated_at = new Date(data.updated_at);
|
|
882
950
|
return data;
|
|
883
951
|
}, "zoneResponseDtoSchemaResponseTransformer");
|
|
884
|
-
var
|
|
952
|
+
var zonesControllerCreateZone0V1ResponseTransformer = /* @__PURE__ */ __name(async (data) => {
|
|
953
|
+
data = zoneResponseDtoSchemaResponseTransformer(data);
|
|
954
|
+
return data;
|
|
955
|
+
}, "zonesControllerCreateZone0V1ResponseTransformer");
|
|
956
|
+
var zonesControllerCreateZone1ResponseTransformer = /* @__PURE__ */ __name(async (data) => {
|
|
885
957
|
data = zoneResponseDtoSchemaResponseTransformer(data);
|
|
886
958
|
return data;
|
|
887
|
-
}, "
|
|
888
|
-
var
|
|
959
|
+
}, "zonesControllerCreateZone1ResponseTransformer");
|
|
960
|
+
var zonesControllerUpdateZone0V1ResponseTransformer = /* @__PURE__ */ __name(async (data) => {
|
|
889
961
|
data = zoneResponseDtoSchemaResponseTransformer(data);
|
|
890
962
|
return data;
|
|
891
|
-
}, "
|
|
963
|
+
}, "zonesControllerUpdateZone0V1ResponseTransformer");
|
|
964
|
+
var zonesControllerUpdateZone1ResponseTransformer = /* @__PURE__ */ __name(async (data) => {
|
|
965
|
+
data = zoneResponseDtoSchemaResponseTransformer(data);
|
|
966
|
+
return data;
|
|
967
|
+
}, "zonesControllerUpdateZone1ResponseTransformer");
|
|
892
968
|
var getInboundWebhookConfigsResponseSchemaResponseTransformer = /* @__PURE__ */ __name((data) => {
|
|
893
969
|
data = data.map((item) => {
|
|
894
970
|
item.created_at = new Date(item.created_at);
|
|
@@ -897,52 +973,96 @@ var getInboundWebhookConfigsResponseSchemaResponseTransformer = /* @__PURE__ */
|
|
|
897
973
|
});
|
|
898
974
|
return data;
|
|
899
975
|
}, "getInboundWebhookConfigsResponseSchemaResponseTransformer");
|
|
900
|
-
var
|
|
976
|
+
var inboundWebhookConfigsControllerGetMany0V1ResponseTransformer = /* @__PURE__ */ __name(async (data) => {
|
|
901
977
|
data = getInboundWebhookConfigsResponseSchemaResponseTransformer(data);
|
|
902
978
|
return data;
|
|
903
|
-
}, "
|
|
979
|
+
}, "inboundWebhookConfigsControllerGetMany0V1ResponseTransformer");
|
|
904
980
|
var createInboundWebhookConfigResponseSchemaResponseTransformer = /* @__PURE__ */ __name((data) => {
|
|
905
981
|
data.created_at = new Date(data.created_at);
|
|
906
982
|
data.updated_at = new Date(data.updated_at);
|
|
907
983
|
return data;
|
|
908
984
|
}, "createInboundWebhookConfigResponseSchemaResponseTransformer");
|
|
909
|
-
var
|
|
985
|
+
var inboundWebhookConfigsControllerCreate0V1ResponseTransformer = /* @__PURE__ */ __name(async (data) => {
|
|
986
|
+
data = createInboundWebhookConfigResponseSchemaResponseTransformer(data);
|
|
987
|
+
return data;
|
|
988
|
+
}, "inboundWebhookConfigsControllerCreate0V1ResponseTransformer");
|
|
989
|
+
var inboundWebhookConfigsControllerGetMany1ResponseTransformer = /* @__PURE__ */ __name(async (data) => {
|
|
990
|
+
data = getInboundWebhookConfigsResponseSchemaResponseTransformer(data);
|
|
991
|
+
return data;
|
|
992
|
+
}, "inboundWebhookConfigsControllerGetMany1ResponseTransformer");
|
|
993
|
+
var inboundWebhookConfigsControllerCreate1ResponseTransformer = /* @__PURE__ */ __name(async (data) => {
|
|
910
994
|
data = createInboundWebhookConfigResponseSchemaResponseTransformer(data);
|
|
911
995
|
return data;
|
|
912
|
-
}, "
|
|
996
|
+
}, "inboundWebhookConfigsControllerCreate1ResponseTransformer");
|
|
913
997
|
var getInboundWebhookConfigResponseSchemaResponseTransformer = /* @__PURE__ */ __name((data) => {
|
|
914
998
|
data.created_at = new Date(data.created_at);
|
|
915
999
|
data.updated_at = new Date(data.updated_at);
|
|
916
1000
|
return data;
|
|
917
1001
|
}, "getInboundWebhookConfigResponseSchemaResponseTransformer");
|
|
918
|
-
var
|
|
1002
|
+
var inboundWebhookConfigsControllerGet0V1ResponseTransformer = /* @__PURE__ */ __name(async (data) => {
|
|
919
1003
|
data = getInboundWebhookConfigResponseSchemaResponseTransformer(data);
|
|
920
1004
|
return data;
|
|
921
|
-
}, "
|
|
1005
|
+
}, "inboundWebhookConfigsControllerGet0V1ResponseTransformer");
|
|
922
1006
|
var updateInboundWebhookConfigResponseSchemaResponseTransformer = /* @__PURE__ */ __name((data) => {
|
|
923
1007
|
data.created_at = new Date(data.created_at);
|
|
924
1008
|
data.updated_at = new Date(data.updated_at);
|
|
925
1009
|
return data;
|
|
926
1010
|
}, "updateInboundWebhookConfigResponseSchemaResponseTransformer");
|
|
927
|
-
var
|
|
1011
|
+
var inboundWebhookConfigsControllerUpdate0V1ResponseTransformer = /* @__PURE__ */ __name(async (data) => {
|
|
1012
|
+
data = updateInboundWebhookConfigResponseSchemaResponseTransformer(data);
|
|
1013
|
+
return data;
|
|
1014
|
+
}, "inboundWebhookConfigsControllerUpdate0V1ResponseTransformer");
|
|
1015
|
+
var inboundWebhookConfigsControllerGet1ResponseTransformer = /* @__PURE__ */ __name(async (data) => {
|
|
1016
|
+
data = getInboundWebhookConfigResponseSchemaResponseTransformer(data);
|
|
1017
|
+
return data;
|
|
1018
|
+
}, "inboundWebhookConfigsControllerGet1ResponseTransformer");
|
|
1019
|
+
var inboundWebhookConfigsControllerUpdate1ResponseTransformer = /* @__PURE__ */ __name(async (data) => {
|
|
928
1020
|
data = updateInboundWebhookConfigResponseSchemaResponseTransformer(data);
|
|
929
1021
|
return data;
|
|
930
|
-
}, "
|
|
1022
|
+
}, "inboundWebhookConfigsControllerUpdate1ResponseTransformer");
|
|
931
1023
|
|
|
932
1024
|
// src/client/sdk.gen.ts
|
|
933
|
-
var
|
|
1025
|
+
var apiControllerGetHello0V1 = /* @__PURE__ */ __name((options) => {
|
|
1026
|
+
return (options?.client ?? client).get({
|
|
1027
|
+
url: "/v1",
|
|
1028
|
+
...options
|
|
1029
|
+
});
|
|
1030
|
+
}, "apiControllerGetHello0V1");
|
|
1031
|
+
var apiControllerGetHello1 = /* @__PURE__ */ __name((options) => {
|
|
934
1032
|
return (options?.client ?? client).get({
|
|
935
1033
|
url: "/",
|
|
936
1034
|
...options
|
|
937
1035
|
});
|
|
938
|
-
}, "
|
|
939
|
-
var
|
|
1036
|
+
}, "apiControllerGetHello1");
|
|
1037
|
+
var apiControllerGetError0V1 = /* @__PURE__ */ __name((options) => {
|
|
1038
|
+
return (options?.client ?? client).get({
|
|
1039
|
+
url: "/v1/debug-sentry",
|
|
1040
|
+
...options
|
|
1041
|
+
});
|
|
1042
|
+
}, "apiControllerGetError0V1");
|
|
1043
|
+
var apiControllerGetError1 = /* @__PURE__ */ __name((options) => {
|
|
940
1044
|
return (options?.client ?? client).get({
|
|
941
1045
|
url: "/debug-sentry",
|
|
942
1046
|
...options
|
|
943
1047
|
});
|
|
944
|
-
}, "
|
|
945
|
-
var
|
|
1048
|
+
}, "apiControllerGetError1");
|
|
1049
|
+
var apiTokenControllerCreateToken0V1 = /* @__PURE__ */ __name((options) => {
|
|
1050
|
+
return (options.client ?? client).post({
|
|
1051
|
+
security: [
|
|
1052
|
+
{
|
|
1053
|
+
name: "x-api-token",
|
|
1054
|
+
type: "apiKey"
|
|
1055
|
+
}
|
|
1056
|
+
],
|
|
1057
|
+
url: "/v1/tokens",
|
|
1058
|
+
...options,
|
|
1059
|
+
headers: {
|
|
1060
|
+
"Content-Type": "application/json",
|
|
1061
|
+
...options.headers
|
|
1062
|
+
}
|
|
1063
|
+
});
|
|
1064
|
+
}, "apiTokenControllerCreateToken0V1");
|
|
1065
|
+
var apiTokenControllerCreateToken1 = /* @__PURE__ */ __name((options) => {
|
|
946
1066
|
return (options.client ?? client).post({
|
|
947
1067
|
security: [
|
|
948
1068
|
{
|
|
@@ -957,8 +1077,8 @@ var apiTokenControllerCreateToken = /* @__PURE__ */ __name((options) => {
|
|
|
957
1077
|
...options.headers
|
|
958
1078
|
}
|
|
959
1079
|
});
|
|
960
|
-
}, "
|
|
961
|
-
var
|
|
1080
|
+
}, "apiTokenControllerCreateToken1");
|
|
1081
|
+
var apiTokenControllerDeleteToken0V1 = /* @__PURE__ */ __name((options) => {
|
|
962
1082
|
return (options.client ?? client).delete({
|
|
963
1083
|
security: [
|
|
964
1084
|
{
|
|
@@ -966,11 +1086,11 @@ var apiTokenControllerDeleteToken = /* @__PURE__ */ __name((options) => {
|
|
|
966
1086
|
type: "apiKey"
|
|
967
1087
|
}
|
|
968
1088
|
],
|
|
969
|
-
url: "/tokens/{id}",
|
|
1089
|
+
url: "/v1/tokens/{id}",
|
|
970
1090
|
...options
|
|
971
1091
|
});
|
|
972
|
-
}, "
|
|
973
|
-
var
|
|
1092
|
+
}, "apiTokenControllerDeleteToken0V1");
|
|
1093
|
+
var apiTokenControllerGetToken0V1 = /* @__PURE__ */ __name((options) => {
|
|
974
1094
|
return (options.client ?? client).get({
|
|
975
1095
|
security: [
|
|
976
1096
|
{
|
|
@@ -978,11 +1098,11 @@ var apiTokenControllerGetToken = /* @__PURE__ */ __name((options) => {
|
|
|
978
1098
|
type: "apiKey"
|
|
979
1099
|
}
|
|
980
1100
|
],
|
|
981
|
-
url: "/tokens/{id}",
|
|
1101
|
+
url: "/v1/tokens/{id}",
|
|
982
1102
|
...options
|
|
983
1103
|
});
|
|
984
|
-
}, "
|
|
985
|
-
var
|
|
1104
|
+
}, "apiTokenControllerGetToken0V1");
|
|
1105
|
+
var apiTokenControllerUpdateToken0V1 = /* @__PURE__ */ __name((options) => {
|
|
986
1106
|
return (options.client ?? client).patch({
|
|
987
1107
|
security: [
|
|
988
1108
|
{
|
|
@@ -990,92 +1110,113 @@ var apiTokenControllerUpdateToken = /* @__PURE__ */ __name((options) => {
|
|
|
990
1110
|
type: "apiKey"
|
|
991
1111
|
}
|
|
992
1112
|
],
|
|
993
|
-
responseTransformer:
|
|
994
|
-
url: "/tokens/{id}",
|
|
1113
|
+
responseTransformer: apiTokenControllerUpdateToken0V1ResponseTransformer,
|
|
1114
|
+
url: "/v1/tokens/{id}",
|
|
995
1115
|
...options,
|
|
996
1116
|
headers: {
|
|
997
1117
|
"Content-Type": "application/json",
|
|
998
1118
|
...options.headers
|
|
999
1119
|
}
|
|
1000
1120
|
});
|
|
1001
|
-
}, "
|
|
1002
|
-
var
|
|
1003
|
-
return (options.client ?? client).
|
|
1004
|
-
|
|
1005
|
-
|
|
1121
|
+
}, "apiTokenControllerUpdateToken0V1");
|
|
1122
|
+
var apiTokenControllerDeleteToken1 = /* @__PURE__ */ __name((options) => {
|
|
1123
|
+
return (options.client ?? client).delete({
|
|
1124
|
+
security: [
|
|
1125
|
+
{
|
|
1126
|
+
name: "x-api-token",
|
|
1127
|
+
type: "apiKey"
|
|
1128
|
+
}
|
|
1129
|
+
],
|
|
1130
|
+
url: "/tokens/{id}",
|
|
1006
1131
|
...options
|
|
1007
1132
|
});
|
|
1008
|
-
}, "
|
|
1009
|
-
var
|
|
1010
|
-
return (options
|
|
1133
|
+
}, "apiTokenControllerDeleteToken1");
|
|
1134
|
+
var apiTokenControllerGetToken1 = /* @__PURE__ */ __name((options) => {
|
|
1135
|
+
return (options.client ?? client).get({
|
|
1011
1136
|
security: [
|
|
1012
1137
|
{
|
|
1013
1138
|
name: "x-api-token",
|
|
1014
1139
|
type: "apiKey"
|
|
1015
1140
|
}
|
|
1016
1141
|
],
|
|
1017
|
-
|
|
1018
|
-
url: "/contracts",
|
|
1142
|
+
url: "/tokens/{id}",
|
|
1019
1143
|
...options
|
|
1020
1144
|
});
|
|
1021
|
-
}, "
|
|
1022
|
-
var
|
|
1023
|
-
return (options.client ?? client).
|
|
1145
|
+
}, "apiTokenControllerGetToken1");
|
|
1146
|
+
var apiTokenControllerUpdateToken1 = /* @__PURE__ */ __name((options) => {
|
|
1147
|
+
return (options.client ?? client).patch({
|
|
1024
1148
|
security: [
|
|
1025
1149
|
{
|
|
1026
1150
|
name: "x-api-token",
|
|
1027
1151
|
type: "apiKey"
|
|
1028
1152
|
}
|
|
1029
1153
|
],
|
|
1030
|
-
|
|
1154
|
+
responseTransformer: apiTokenControllerUpdateToken1ResponseTransformer,
|
|
1155
|
+
url: "/tokens/{id}",
|
|
1031
1156
|
...options,
|
|
1032
1157
|
headers: {
|
|
1033
1158
|
"Content-Type": "application/json",
|
|
1034
1159
|
...options.headers
|
|
1035
1160
|
}
|
|
1036
1161
|
});
|
|
1037
|
-
}, "
|
|
1038
|
-
var
|
|
1039
|
-
return (options.client ?? client).
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
name: "x-api-token",
|
|
1043
|
-
type: "apiKey"
|
|
1044
|
-
}
|
|
1045
|
-
],
|
|
1046
|
-
url: "/contracts/{id}",
|
|
1162
|
+
}, "apiTokenControllerUpdateToken1");
|
|
1163
|
+
var conditionsControllerGetSunAltitudeTimeLimits0V1 = /* @__PURE__ */ __name((options) => {
|
|
1164
|
+
return (options.client ?? client).get({
|
|
1165
|
+
responseTransformer: conditionsControllerGetSunAltitudeTimeLimits0V1ResponseTransformer,
|
|
1166
|
+
url: "/v1/conditions/sun-altitude",
|
|
1047
1167
|
...options
|
|
1048
1168
|
});
|
|
1049
|
-
}, "
|
|
1050
|
-
var
|
|
1169
|
+
}, "conditionsControllerGetSunAltitudeTimeLimits0V1");
|
|
1170
|
+
var conditionsControllerGetSunAltitudeTimeLimits1 = /* @__PURE__ */ __name((options) => {
|
|
1051
1171
|
return (options.client ?? client).get({
|
|
1172
|
+
responseTransformer: conditionsControllerGetSunAltitudeTimeLimits1ResponseTransformer,
|
|
1173
|
+
url: "/conditions/sun-altitude",
|
|
1174
|
+
...options
|
|
1175
|
+
});
|
|
1176
|
+
}, "conditionsControllerGetSunAltitudeTimeLimits1");
|
|
1177
|
+
var contractsControllerGetAllContracts0V1 = /* @__PURE__ */ __name((options) => {
|
|
1178
|
+
return (options?.client ?? client).get({
|
|
1052
1179
|
security: [
|
|
1053
1180
|
{
|
|
1054
1181
|
name: "x-api-token",
|
|
1055
1182
|
type: "apiKey"
|
|
1056
1183
|
}
|
|
1057
1184
|
],
|
|
1058
|
-
|
|
1185
|
+
responseTransformer: contractsControllerGetAllContracts0V1ResponseTransformer,
|
|
1186
|
+
url: "/v1/contracts",
|
|
1059
1187
|
...options
|
|
1060
1188
|
});
|
|
1061
|
-
}, "
|
|
1062
|
-
var
|
|
1063
|
-
return (options.client ?? client).
|
|
1189
|
+
}, "contractsControllerGetAllContracts0V1");
|
|
1190
|
+
var contractsControllerCreateContract0V1 = /* @__PURE__ */ __name((options) => {
|
|
1191
|
+
return (options.client ?? client).post({
|
|
1064
1192
|
security: [
|
|
1065
1193
|
{
|
|
1066
1194
|
name: "x-api-token",
|
|
1067
1195
|
type: "apiKey"
|
|
1068
1196
|
}
|
|
1069
1197
|
],
|
|
1070
|
-
url: "/contracts
|
|
1198
|
+
url: "/v1/contracts",
|
|
1071
1199
|
...options,
|
|
1072
1200
|
headers: {
|
|
1073
1201
|
"Content-Type": "application/json",
|
|
1074
1202
|
...options.headers
|
|
1075
1203
|
}
|
|
1076
1204
|
});
|
|
1077
|
-
}, "
|
|
1078
|
-
var
|
|
1205
|
+
}, "contractsControllerCreateContract0V1");
|
|
1206
|
+
var contractsControllerGetAllContracts1 = /* @__PURE__ */ __name((options) => {
|
|
1207
|
+
return (options?.client ?? client).get({
|
|
1208
|
+
security: [
|
|
1209
|
+
{
|
|
1210
|
+
name: "x-api-token",
|
|
1211
|
+
type: "apiKey"
|
|
1212
|
+
}
|
|
1213
|
+
],
|
|
1214
|
+
responseTransformer: contractsControllerGetAllContracts1ResponseTransformer,
|
|
1215
|
+
url: "/contracts",
|
|
1216
|
+
...options
|
|
1217
|
+
});
|
|
1218
|
+
}, "contractsControllerGetAllContracts1");
|
|
1219
|
+
var contractsControllerCreateContract1 = /* @__PURE__ */ __name((options) => {
|
|
1079
1220
|
return (options.client ?? client).post({
|
|
1080
1221
|
security: [
|
|
1081
1222
|
{
|
|
@@ -1083,27 +1224,27 @@ var dlqRedriverControllerRedriveDlq = /* @__PURE__ */ __name((options) => {
|
|
|
1083
1224
|
type: "apiKey"
|
|
1084
1225
|
}
|
|
1085
1226
|
],
|
|
1086
|
-
url: "/
|
|
1227
|
+
url: "/contracts",
|
|
1087
1228
|
...options,
|
|
1088
1229
|
headers: {
|
|
1089
1230
|
"Content-Type": "application/json",
|
|
1090
1231
|
...options.headers
|
|
1091
1232
|
}
|
|
1092
1233
|
});
|
|
1093
|
-
}, "
|
|
1094
|
-
var
|
|
1095
|
-
return (options.client ?? client).
|
|
1234
|
+
}, "contractsControllerCreateContract1");
|
|
1235
|
+
var contractsControllerDeleteContract0V1 = /* @__PURE__ */ __name((options) => {
|
|
1236
|
+
return (options.client ?? client).delete({
|
|
1096
1237
|
security: [
|
|
1097
1238
|
{
|
|
1098
1239
|
name: "x-api-token",
|
|
1099
1240
|
type: "apiKey"
|
|
1100
1241
|
}
|
|
1101
1242
|
],
|
|
1102
|
-
url: "/
|
|
1243
|
+
url: "/v1/contracts/{id}",
|
|
1103
1244
|
...options
|
|
1104
1245
|
});
|
|
1105
|
-
}, "
|
|
1106
|
-
var
|
|
1246
|
+
}, "contractsControllerDeleteContract0V1");
|
|
1247
|
+
var contractsControllerGetContract0V1 = /* @__PURE__ */ __name((options) => {
|
|
1107
1248
|
return (options.client ?? client).get({
|
|
1108
1249
|
security: [
|
|
1109
1250
|
{
|
|
@@ -1111,101 +1252,99 @@ var flightsControllerGetFlight = /* @__PURE__ */ __name((options) => {
|
|
|
1111
1252
|
type: "apiKey"
|
|
1112
1253
|
}
|
|
1113
1254
|
],
|
|
1114
|
-
|
|
1115
|
-
url: "/flights/{flightId}",
|
|
1255
|
+
url: "/v1/contracts/{id}",
|
|
1116
1256
|
...options
|
|
1117
1257
|
});
|
|
1118
|
-
}, "
|
|
1119
|
-
var
|
|
1120
|
-
return (options.client ?? client).
|
|
1258
|
+
}, "contractsControllerGetContract0V1");
|
|
1259
|
+
var contractsControllerUpdateContract0V1 = /* @__PURE__ */ __name((options) => {
|
|
1260
|
+
return (options.client ?? client).patch({
|
|
1121
1261
|
security: [
|
|
1122
1262
|
{
|
|
1123
1263
|
name: "x-api-token",
|
|
1124
1264
|
type: "apiKey"
|
|
1125
1265
|
}
|
|
1126
1266
|
],
|
|
1127
|
-
url: "/
|
|
1267
|
+
url: "/v1/contracts/{id}",
|
|
1128
1268
|
...options,
|
|
1129
1269
|
headers: {
|
|
1130
1270
|
"Content-Type": "application/json",
|
|
1131
1271
|
...options.headers
|
|
1132
1272
|
}
|
|
1133
1273
|
});
|
|
1134
|
-
}, "
|
|
1135
|
-
var
|
|
1136
|
-
return (options.client ?? client).
|
|
1274
|
+
}, "contractsControllerUpdateContract0V1");
|
|
1275
|
+
var contractsControllerDeleteContract1 = /* @__PURE__ */ __name((options) => {
|
|
1276
|
+
return (options.client ?? client).delete({
|
|
1137
1277
|
security: [
|
|
1138
1278
|
{
|
|
1139
1279
|
name: "x-api-token",
|
|
1140
1280
|
type: "apiKey"
|
|
1141
1281
|
}
|
|
1142
1282
|
],
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
...options,
|
|
1146
|
-
headers: {
|
|
1147
|
-
"Content-Type": "application/json",
|
|
1148
|
-
...options.headers
|
|
1149
|
-
}
|
|
1283
|
+
url: "/contracts/{id}",
|
|
1284
|
+
...options
|
|
1150
1285
|
});
|
|
1151
|
-
}, "
|
|
1152
|
-
var
|
|
1153
|
-
return (options
|
|
1286
|
+
}, "contractsControllerDeleteContract1");
|
|
1287
|
+
var contractsControllerGetContract1 = /* @__PURE__ */ __name((options) => {
|
|
1288
|
+
return (options.client ?? client).get({
|
|
1154
1289
|
security: [
|
|
1155
1290
|
{
|
|
1156
1291
|
name: "x-api-token",
|
|
1157
1292
|
type: "apiKey"
|
|
1158
1293
|
}
|
|
1159
1294
|
],
|
|
1160
|
-
|
|
1161
|
-
url: "/flight-plans",
|
|
1295
|
+
url: "/contracts/{id}",
|
|
1162
1296
|
...options
|
|
1163
1297
|
});
|
|
1164
|
-
}, "
|
|
1165
|
-
var
|
|
1166
|
-
return (options.client ?? client).
|
|
1298
|
+
}, "contractsControllerGetContract1");
|
|
1299
|
+
var contractsControllerUpdateContract1 = /* @__PURE__ */ __name((options) => {
|
|
1300
|
+
return (options.client ?? client).patch({
|
|
1167
1301
|
security: [
|
|
1168
1302
|
{
|
|
1169
1303
|
name: "x-api-token",
|
|
1170
1304
|
type: "apiKey"
|
|
1171
1305
|
}
|
|
1172
1306
|
],
|
|
1173
|
-
|
|
1174
|
-
url: "/flight-plans",
|
|
1307
|
+
url: "/contracts/{id}",
|
|
1175
1308
|
...options,
|
|
1176
1309
|
headers: {
|
|
1177
1310
|
"Content-Type": "application/json",
|
|
1178
1311
|
...options.headers
|
|
1179
1312
|
}
|
|
1180
1313
|
});
|
|
1181
|
-
}, "
|
|
1182
|
-
var
|
|
1183
|
-
return (options.client ?? client).
|
|
1314
|
+
}, "contractsControllerUpdateContract1");
|
|
1315
|
+
var dlqRedriverControllerRedriveDlq0V1 = /* @__PURE__ */ __name((options) => {
|
|
1316
|
+
return (options.client ?? client).post({
|
|
1184
1317
|
security: [
|
|
1185
1318
|
{
|
|
1186
1319
|
name: "x-api-token",
|
|
1187
1320
|
type: "apiKey"
|
|
1188
1321
|
}
|
|
1189
1322
|
],
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1323
|
+
url: "/v1/dlq-redriver/redrive",
|
|
1324
|
+
...options,
|
|
1325
|
+
headers: {
|
|
1326
|
+
"Content-Type": "application/json",
|
|
1327
|
+
...options.headers
|
|
1328
|
+
}
|
|
1193
1329
|
});
|
|
1194
|
-
}, "
|
|
1195
|
-
var
|
|
1196
|
-
return (options.client ?? client).
|
|
1330
|
+
}, "dlqRedriverControllerRedriveDlq0V1");
|
|
1331
|
+
var dlqRedriverControllerRedriveDlq1 = /* @__PURE__ */ __name((options) => {
|
|
1332
|
+
return (options.client ?? client).post({
|
|
1197
1333
|
security: [
|
|
1198
1334
|
{
|
|
1199
1335
|
name: "x-api-token",
|
|
1200
1336
|
type: "apiKey"
|
|
1201
1337
|
}
|
|
1202
1338
|
],
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1339
|
+
url: "/dlq-redriver/redrive",
|
|
1340
|
+
...options,
|
|
1341
|
+
headers: {
|
|
1342
|
+
"Content-Type": "application/json",
|
|
1343
|
+
...options.headers
|
|
1344
|
+
}
|
|
1206
1345
|
});
|
|
1207
|
-
}, "
|
|
1208
|
-
var
|
|
1346
|
+
}, "dlqRedriverControllerRedriveDlq1");
|
|
1347
|
+
var flightsControllerGenerateStorageKey0V1 = /* @__PURE__ */ __name((options) => {
|
|
1209
1348
|
return (options.client ?? client).get({
|
|
1210
1349
|
security: [
|
|
1211
1350
|
{
|
|
@@ -1213,18 +1352,11 @@ var flightReviewsControllerGetFlightReviews = /* @__PURE__ */ __name((options) =
|
|
|
1213
1352
|
type: "apiKey"
|
|
1214
1353
|
}
|
|
1215
1354
|
],
|
|
1216
|
-
|
|
1217
|
-
url: "/flight-reviews",
|
|
1355
|
+
url: "/v1/flights/storage-key",
|
|
1218
1356
|
...options
|
|
1219
1357
|
});
|
|
1220
|
-
}, "
|
|
1221
|
-
var
|
|
1222
|
-
return (options?.client ?? client).get({
|
|
1223
|
-
url: "/keys",
|
|
1224
|
-
...options
|
|
1225
|
-
});
|
|
1226
|
-
}, "keysControllerGetProvenanceCryptoKey");
|
|
1227
|
-
var missionsControllerGetMission = /* @__PURE__ */ __name((options) => {
|
|
1358
|
+
}, "flightsControllerGenerateStorageKey0V1");
|
|
1359
|
+
var flightsControllerGenerateStorageKey1 = /* @__PURE__ */ __name((options) => {
|
|
1228
1360
|
return (options.client ?? client).get({
|
|
1229
1361
|
security: [
|
|
1230
1362
|
{
|
|
@@ -1232,74 +1364,69 @@ var missionsControllerGetMission = /* @__PURE__ */ __name((options) => {
|
|
|
1232
1364
|
type: "apiKey"
|
|
1233
1365
|
}
|
|
1234
1366
|
],
|
|
1235
|
-
|
|
1236
|
-
url: "/missions/{id}",
|
|
1367
|
+
url: "/flights/storage-key",
|
|
1237
1368
|
...options
|
|
1238
1369
|
});
|
|
1239
|
-
}, "
|
|
1240
|
-
var
|
|
1241
|
-
return (options
|
|
1370
|
+
}, "flightsControllerGenerateStorageKey1");
|
|
1371
|
+
var flightsControllerGetFlight0V1 = /* @__PURE__ */ __name((options) => {
|
|
1372
|
+
return (options.client ?? client).get({
|
|
1242
1373
|
security: [
|
|
1243
1374
|
{
|
|
1244
1375
|
name: "x-api-token",
|
|
1245
1376
|
type: "apiKey"
|
|
1246
1377
|
}
|
|
1247
1378
|
],
|
|
1248
|
-
responseTransformer:
|
|
1249
|
-
url: "/
|
|
1379
|
+
responseTransformer: flightsControllerGetFlight0V1ResponseTransformer,
|
|
1380
|
+
url: "/v1/flights/{flightId}",
|
|
1250
1381
|
...options
|
|
1251
1382
|
});
|
|
1252
|
-
}, "
|
|
1253
|
-
var
|
|
1254
|
-
return (options.client ?? client).
|
|
1383
|
+
}, "flightsControllerGetFlight0V1");
|
|
1384
|
+
var flightsControllerGetFlight1 = /* @__PURE__ */ __name((options) => {
|
|
1385
|
+
return (options.client ?? client).get({
|
|
1255
1386
|
security: [
|
|
1256
1387
|
{
|
|
1257
1388
|
name: "x-api-token",
|
|
1258
1389
|
type: "apiKey"
|
|
1259
1390
|
}
|
|
1260
1391
|
],
|
|
1261
|
-
responseTransformer:
|
|
1262
|
-
url: "/
|
|
1263
|
-
...options
|
|
1264
|
-
headers: {
|
|
1265
|
-
"Content-Type": "application/json",
|
|
1266
|
-
...options.headers
|
|
1267
|
-
}
|
|
1392
|
+
responseTransformer: flightsControllerGetFlight1ResponseTransformer,
|
|
1393
|
+
url: "/flights/{flightId}",
|
|
1394
|
+
...options
|
|
1268
1395
|
});
|
|
1269
|
-
}, "
|
|
1270
|
-
var
|
|
1271
|
-
return (options.client ?? client).
|
|
1396
|
+
}, "flightsControllerGetFlight1");
|
|
1397
|
+
var flightsControllerCreatePresignedUrls0V1 = /* @__PURE__ */ __name((options) => {
|
|
1398
|
+
return (options.client ?? client).post({
|
|
1272
1399
|
security: [
|
|
1273
1400
|
{
|
|
1274
1401
|
name: "x-api-token",
|
|
1275
1402
|
type: "apiKey"
|
|
1276
1403
|
}
|
|
1277
1404
|
],
|
|
1278
|
-
url: "/
|
|
1405
|
+
url: "/v1/flights/files",
|
|
1279
1406
|
...options,
|
|
1280
1407
|
headers: {
|
|
1281
1408
|
"Content-Type": "application/json",
|
|
1282
1409
|
...options.headers
|
|
1283
1410
|
}
|
|
1284
1411
|
});
|
|
1285
|
-
}, "
|
|
1286
|
-
var
|
|
1287
|
-
return (options.client ?? client).
|
|
1412
|
+
}, "flightsControllerCreatePresignedUrls0V1");
|
|
1413
|
+
var flightsControllerCreatePresignedUrls1 = /* @__PURE__ */ __name((options) => {
|
|
1414
|
+
return (options.client ?? client).post({
|
|
1288
1415
|
security: [
|
|
1289
1416
|
{
|
|
1290
1417
|
name: "x-api-token",
|
|
1291
1418
|
type: "apiKey"
|
|
1292
1419
|
}
|
|
1293
1420
|
],
|
|
1294
|
-
url: "/
|
|
1421
|
+
url: "/flights/files",
|
|
1295
1422
|
...options,
|
|
1296
1423
|
headers: {
|
|
1297
1424
|
"Content-Type": "application/json",
|
|
1298
1425
|
...options.headers
|
|
1299
1426
|
}
|
|
1300
1427
|
});
|
|
1301
|
-
}, "
|
|
1302
|
-
var
|
|
1428
|
+
}, "flightsControllerCreatePresignedUrls1");
|
|
1429
|
+
var flightsControllerValidateFlight0V1 = /* @__PURE__ */ __name((options) => {
|
|
1303
1430
|
return (options.client ?? client).post({
|
|
1304
1431
|
security: [
|
|
1305
1432
|
{
|
|
@@ -1307,15 +1434,16 @@ var missionsControllerCloseMission = /* @__PURE__ */ __name((options) => {
|
|
|
1307
1434
|
type: "apiKey"
|
|
1308
1435
|
}
|
|
1309
1436
|
],
|
|
1310
|
-
|
|
1437
|
+
responseTransformer: flightsControllerValidateFlight0V1ResponseTransformer,
|
|
1438
|
+
url: "/v1/flights",
|
|
1311
1439
|
...options,
|
|
1312
1440
|
headers: {
|
|
1313
1441
|
"Content-Type": "application/json",
|
|
1314
1442
|
...options.headers
|
|
1315
1443
|
}
|
|
1316
1444
|
});
|
|
1317
|
-
}, "
|
|
1318
|
-
var
|
|
1445
|
+
}, "flightsControllerValidateFlight0V1");
|
|
1446
|
+
var flightsControllerValidateFlight1 = /* @__PURE__ */ __name((options) => {
|
|
1319
1447
|
return (options.client ?? client).post({
|
|
1320
1448
|
security: [
|
|
1321
1449
|
{
|
|
@@ -1323,66 +1451,59 @@ var quotesControllerCreateQuote = /* @__PURE__ */ __name((options) => {
|
|
|
1323
1451
|
type: "apiKey"
|
|
1324
1452
|
}
|
|
1325
1453
|
],
|
|
1326
|
-
|
|
1454
|
+
responseTransformer: flightsControllerValidateFlight1ResponseTransformer,
|
|
1455
|
+
url: "/flights",
|
|
1327
1456
|
...options,
|
|
1328
1457
|
headers: {
|
|
1329
1458
|
"Content-Type": "application/json",
|
|
1330
1459
|
...options.headers
|
|
1331
1460
|
}
|
|
1332
1461
|
});
|
|
1333
|
-
}, "
|
|
1334
|
-
var
|
|
1335
|
-
return (options
|
|
1462
|
+
}, "flightsControllerValidateFlight1");
|
|
1463
|
+
var flightPlansControllerGetMany0V1 = /* @__PURE__ */ __name((options) => {
|
|
1464
|
+
return (options?.client ?? client).get({
|
|
1336
1465
|
security: [
|
|
1337
1466
|
{
|
|
1338
1467
|
name: "x-api-token",
|
|
1339
1468
|
type: "apiKey"
|
|
1340
1469
|
}
|
|
1341
1470
|
],
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
});
|
|
1345
|
-
}, "quotesControllerGetQuote");
|
|
1346
|
-
var schemaControllerGetEventSchema = /* @__PURE__ */ __name((options) => {
|
|
1347
|
-
return (options?.client ?? client).get({
|
|
1348
|
-
url: "/schema/event",
|
|
1471
|
+
responseTransformer: flightPlansControllerGetMany0V1ResponseTransformer,
|
|
1472
|
+
url: "/v1/flight-plans",
|
|
1349
1473
|
...options
|
|
1350
1474
|
});
|
|
1351
|
-
}, "
|
|
1352
|
-
var
|
|
1475
|
+
}, "flightPlansControllerGetMany0V1");
|
|
1476
|
+
var flightPlansControllerCreate0V1 = /* @__PURE__ */ __name((options) => {
|
|
1353
1477
|
return (options.client ?? client).post({
|
|
1354
1478
|
security: [
|
|
1355
|
-
{
|
|
1356
|
-
name: "x-api-token",
|
|
1357
|
-
type: "apiKey"
|
|
1358
|
-
},
|
|
1359
1479
|
{
|
|
1360
1480
|
name: "x-api-token",
|
|
1361
1481
|
type: "apiKey"
|
|
1362
1482
|
}
|
|
1363
1483
|
],
|
|
1364
|
-
|
|
1484
|
+
responseTransformer: flightPlansControllerCreate0V1ResponseTransformer,
|
|
1485
|
+
url: "/v1/flight-plans",
|
|
1365
1486
|
...options,
|
|
1366
1487
|
headers: {
|
|
1367
1488
|
"Content-Type": "application/json",
|
|
1368
1489
|
...options.headers
|
|
1369
1490
|
}
|
|
1370
1491
|
});
|
|
1371
|
-
}, "
|
|
1372
|
-
var
|
|
1373
|
-
return (options
|
|
1492
|
+
}, "flightPlansControllerCreate0V1");
|
|
1493
|
+
var flightPlansControllerGetMany1 = /* @__PURE__ */ __name((options) => {
|
|
1494
|
+
return (options?.client ?? client).get({
|
|
1374
1495
|
security: [
|
|
1375
1496
|
{
|
|
1376
1497
|
name: "x-api-token",
|
|
1377
1498
|
type: "apiKey"
|
|
1378
1499
|
}
|
|
1379
1500
|
],
|
|
1380
|
-
responseTransformer:
|
|
1381
|
-
url: "/
|
|
1501
|
+
responseTransformer: flightPlansControllerGetMany1ResponseTransformer,
|
|
1502
|
+
url: "/flight-plans",
|
|
1382
1503
|
...options
|
|
1383
1504
|
});
|
|
1384
|
-
}, "
|
|
1385
|
-
var
|
|
1505
|
+
}, "flightPlansControllerGetMany1");
|
|
1506
|
+
var flightPlansControllerCreate1 = /* @__PURE__ */ __name((options) => {
|
|
1386
1507
|
return (options.client ?? client).post({
|
|
1387
1508
|
security: [
|
|
1388
1509
|
{
|
|
@@ -1390,27 +1511,29 @@ var webhooksControllerCreate = /* @__PURE__ */ __name((options) => {
|
|
|
1390
1511
|
type: "apiKey"
|
|
1391
1512
|
}
|
|
1392
1513
|
],
|
|
1393
|
-
|
|
1514
|
+
responseTransformer: flightPlansControllerCreate1ResponseTransformer,
|
|
1515
|
+
url: "/flight-plans",
|
|
1394
1516
|
...options,
|
|
1395
1517
|
headers: {
|
|
1396
1518
|
"Content-Type": "application/json",
|
|
1397
1519
|
...options.headers
|
|
1398
1520
|
}
|
|
1399
1521
|
});
|
|
1400
|
-
}, "
|
|
1401
|
-
var
|
|
1402
|
-
return (options.client ?? client).
|
|
1522
|
+
}, "flightPlansControllerCreate1");
|
|
1523
|
+
var flightPlansControllerGet0V1 = /* @__PURE__ */ __name((options) => {
|
|
1524
|
+
return (options.client ?? client).get({
|
|
1403
1525
|
security: [
|
|
1404
1526
|
{
|
|
1405
1527
|
name: "x-api-token",
|
|
1406
1528
|
type: "apiKey"
|
|
1407
1529
|
}
|
|
1408
1530
|
],
|
|
1409
|
-
|
|
1531
|
+
responseTransformer: flightPlansControllerGet0V1ResponseTransformer,
|
|
1532
|
+
url: "/v1/flight-plans/{id}",
|
|
1410
1533
|
...options
|
|
1411
1534
|
});
|
|
1412
|
-
}, "
|
|
1413
|
-
var
|
|
1535
|
+
}, "flightPlansControllerGet0V1");
|
|
1536
|
+
var flightPlansControllerGet1 = /* @__PURE__ */ __name((options) => {
|
|
1414
1537
|
return (options.client ?? client).get({
|
|
1415
1538
|
security: [
|
|
1416
1539
|
{
|
|
@@ -1418,58 +1541,51 @@ var webhooksControllerGet = /* @__PURE__ */ __name((options) => {
|
|
|
1418
1541
|
type: "apiKey"
|
|
1419
1542
|
}
|
|
1420
1543
|
],
|
|
1421
|
-
responseTransformer:
|
|
1422
|
-
url: "/
|
|
1544
|
+
responseTransformer: flightPlansControllerGet1ResponseTransformer,
|
|
1545
|
+
url: "/flight-plans/{id}",
|
|
1423
1546
|
...options
|
|
1424
1547
|
});
|
|
1425
|
-
}, "
|
|
1426
|
-
var
|
|
1427
|
-
return (options.client ?? client).
|
|
1548
|
+
}, "flightPlansControllerGet1");
|
|
1549
|
+
var flightReviewsControllerGetFlightReview0V1 = /* @__PURE__ */ __name((options) => {
|
|
1550
|
+
return (options.client ?? client).get({
|
|
1428
1551
|
security: [
|
|
1429
1552
|
{
|
|
1430
1553
|
name: "x-api-token",
|
|
1431
1554
|
type: "apiKey"
|
|
1432
1555
|
}
|
|
1433
1556
|
],
|
|
1434
|
-
responseTransformer:
|
|
1435
|
-
url: "/
|
|
1436
|
-
...options
|
|
1437
|
-
headers: {
|
|
1438
|
-
"Content-Type": "application/json",
|
|
1439
|
-
...options.headers
|
|
1440
|
-
}
|
|
1557
|
+
responseTransformer: flightReviewsControllerGetFlightReview0V1ResponseTransformer,
|
|
1558
|
+
url: "/v1/flight-reviews/{id}",
|
|
1559
|
+
...options
|
|
1441
1560
|
});
|
|
1442
|
-
}, "
|
|
1443
|
-
var
|
|
1444
|
-
return (options.client ?? client).
|
|
1561
|
+
}, "flightReviewsControllerGetFlightReview0V1");
|
|
1562
|
+
var flightReviewsControllerGetFlightReview1 = /* @__PURE__ */ __name((options) => {
|
|
1563
|
+
return (options.client ?? client).get({
|
|
1445
1564
|
security: [
|
|
1446
1565
|
{
|
|
1447
1566
|
name: "x-api-token",
|
|
1448
1567
|
type: "apiKey"
|
|
1449
1568
|
}
|
|
1450
1569
|
],
|
|
1451
|
-
responseTransformer:
|
|
1452
|
-
url: "/
|
|
1453
|
-
...options
|
|
1454
|
-
headers: {
|
|
1455
|
-
"Content-Type": "application/json",
|
|
1456
|
-
...options.headers
|
|
1457
|
-
}
|
|
1570
|
+
responseTransformer: flightReviewsControllerGetFlightReview1ResponseTransformer,
|
|
1571
|
+
url: "/flight-reviews/{id}",
|
|
1572
|
+
...options
|
|
1458
1573
|
});
|
|
1459
|
-
}, "
|
|
1460
|
-
var
|
|
1461
|
-
return (options.client ?? client).
|
|
1574
|
+
}, "flightReviewsControllerGetFlightReview1");
|
|
1575
|
+
var flightReviewsControllerGetFlightReviews0V1 = /* @__PURE__ */ __name((options) => {
|
|
1576
|
+
return (options.client ?? client).get({
|
|
1462
1577
|
security: [
|
|
1463
1578
|
{
|
|
1464
1579
|
name: "x-api-token",
|
|
1465
1580
|
type: "apiKey"
|
|
1466
1581
|
}
|
|
1467
1582
|
],
|
|
1468
|
-
|
|
1583
|
+
responseTransformer: flightReviewsControllerGetFlightReviews0V1ResponseTransformer,
|
|
1584
|
+
url: "/v1/flight-reviews",
|
|
1469
1585
|
...options
|
|
1470
1586
|
});
|
|
1471
|
-
}, "
|
|
1472
|
-
var
|
|
1587
|
+
}, "flightReviewsControllerGetFlightReviews0V1");
|
|
1588
|
+
var flightReviewsControllerGetFlightReviews1 = /* @__PURE__ */ __name((options) => {
|
|
1473
1589
|
return (options.client ?? client).get({
|
|
1474
1590
|
security: [
|
|
1475
1591
|
{
|
|
@@ -1477,57 +1593,678 @@ var webhooksControllerGetStatus = /* @__PURE__ */ __name((options) => {
|
|
|
1477
1593
|
type: "apiKey"
|
|
1478
1594
|
}
|
|
1479
1595
|
],
|
|
1480
|
-
|
|
1596
|
+
responseTransformer: flightReviewsControllerGetFlightReviews1ResponseTransformer,
|
|
1597
|
+
url: "/flight-reviews",
|
|
1481
1598
|
...options
|
|
1482
1599
|
});
|
|
1483
|
-
}, "
|
|
1484
|
-
var
|
|
1485
|
-
return (options
|
|
1600
|
+
}, "flightReviewsControllerGetFlightReviews1");
|
|
1601
|
+
var keysControllerGetProvenanceCryptoKey0V1 = /* @__PURE__ */ __name((options) => {
|
|
1602
|
+
return (options?.client ?? client).get({
|
|
1603
|
+
url: "/v1/keys",
|
|
1604
|
+
...options
|
|
1605
|
+
});
|
|
1606
|
+
}, "keysControllerGetProvenanceCryptoKey0V1");
|
|
1607
|
+
var keysControllerGetProvenanceCryptoKey1 = /* @__PURE__ */ __name((options) => {
|
|
1608
|
+
return (options?.client ?? client).get({
|
|
1609
|
+
url: "/keys",
|
|
1610
|
+
...options
|
|
1611
|
+
});
|
|
1612
|
+
}, "keysControllerGetProvenanceCryptoKey1");
|
|
1613
|
+
var missionsControllerGetMission0V1 = /* @__PURE__ */ __name((options) => {
|
|
1614
|
+
return (options.client ?? client).get({
|
|
1486
1615
|
security: [
|
|
1487
1616
|
{
|
|
1488
1617
|
name: "x-api-token",
|
|
1489
1618
|
type: "apiKey"
|
|
1490
1619
|
}
|
|
1491
1620
|
],
|
|
1492
|
-
responseTransformer:
|
|
1493
|
-
url: "/
|
|
1494
|
-
...options
|
|
1495
|
-
headers: {
|
|
1496
|
-
"Content-Type": "application/json",
|
|
1497
|
-
...options.headers
|
|
1498
|
-
}
|
|
1621
|
+
responseTransformer: missionsControllerGetMission0V1ResponseTransformer,
|
|
1622
|
+
url: "/v1/missions/{id}",
|
|
1623
|
+
...options
|
|
1499
1624
|
});
|
|
1500
|
-
}, "
|
|
1501
|
-
var
|
|
1502
|
-
return (options.client ?? client).
|
|
1625
|
+
}, "missionsControllerGetMission0V1");
|
|
1626
|
+
var missionsControllerGetMission1 = /* @__PURE__ */ __name((options) => {
|
|
1627
|
+
return (options.client ?? client).get({
|
|
1503
1628
|
security: [
|
|
1504
1629
|
{
|
|
1505
1630
|
name: "x-api-token",
|
|
1506
1631
|
type: "apiKey"
|
|
1507
1632
|
}
|
|
1508
1633
|
],
|
|
1509
|
-
|
|
1634
|
+
responseTransformer: missionsControllerGetMission1ResponseTransformer,
|
|
1635
|
+
url: "/missions/{id}",
|
|
1510
1636
|
...options
|
|
1511
1637
|
});
|
|
1512
|
-
}, "
|
|
1513
|
-
var
|
|
1514
|
-
return (options
|
|
1638
|
+
}, "missionsControllerGetMission1");
|
|
1639
|
+
var missionsControllerGetMissions0V1 = /* @__PURE__ */ __name((options) => {
|
|
1640
|
+
return (options?.client ?? client).get({
|
|
1641
|
+
security: [
|
|
1642
|
+
{
|
|
1643
|
+
name: "x-api-token",
|
|
1644
|
+
type: "apiKey"
|
|
1645
|
+
}
|
|
1646
|
+
],
|
|
1647
|
+
responseTransformer: missionsControllerGetMissions0V1ResponseTransformer,
|
|
1648
|
+
url: "/v1/missions",
|
|
1649
|
+
...options
|
|
1650
|
+
});
|
|
1651
|
+
}, "missionsControllerGetMissions0V1");
|
|
1652
|
+
var missionsControllerCreateMissions0V1 = /* @__PURE__ */ __name((options) => {
|
|
1653
|
+
return (options.client ?? client).post({
|
|
1654
|
+
security: [
|
|
1655
|
+
{
|
|
1656
|
+
name: "x-api-token",
|
|
1657
|
+
type: "apiKey"
|
|
1658
|
+
}
|
|
1659
|
+
],
|
|
1660
|
+
responseTransformer: missionsControllerCreateMissions0V1ResponseTransformer,
|
|
1661
|
+
url: "/v1/missions",
|
|
1662
|
+
...options,
|
|
1663
|
+
headers: {
|
|
1664
|
+
"Content-Type": "application/json",
|
|
1665
|
+
...options.headers
|
|
1666
|
+
}
|
|
1667
|
+
});
|
|
1668
|
+
}, "missionsControllerCreateMissions0V1");
|
|
1669
|
+
var missionsControllerUpdateMissions0V1 = /* @__PURE__ */ __name((options) => {
|
|
1670
|
+
return (options.client ?? client).put({
|
|
1671
|
+
security: [
|
|
1672
|
+
{
|
|
1673
|
+
name: "x-api-token",
|
|
1674
|
+
type: "apiKey"
|
|
1675
|
+
}
|
|
1676
|
+
],
|
|
1677
|
+
url: "/v1/missions",
|
|
1678
|
+
...options,
|
|
1679
|
+
headers: {
|
|
1680
|
+
"Content-Type": "application/json",
|
|
1681
|
+
...options.headers
|
|
1682
|
+
}
|
|
1683
|
+
});
|
|
1684
|
+
}, "missionsControllerUpdateMissions0V1");
|
|
1685
|
+
var missionsControllerGetMissions1 = /* @__PURE__ */ __name((options) => {
|
|
1686
|
+
return (options?.client ?? client).get({
|
|
1687
|
+
security: [
|
|
1688
|
+
{
|
|
1689
|
+
name: "x-api-token",
|
|
1690
|
+
type: "apiKey"
|
|
1691
|
+
}
|
|
1692
|
+
],
|
|
1693
|
+
responseTransformer: missionsControllerGetMissions1ResponseTransformer,
|
|
1694
|
+
url: "/missions",
|
|
1695
|
+
...options
|
|
1696
|
+
});
|
|
1697
|
+
}, "missionsControllerGetMissions1");
|
|
1698
|
+
var missionsControllerCreateMissions1 = /* @__PURE__ */ __name((options) => {
|
|
1699
|
+
return (options.client ?? client).post({
|
|
1700
|
+
security: [
|
|
1701
|
+
{
|
|
1702
|
+
name: "x-api-token",
|
|
1703
|
+
type: "apiKey"
|
|
1704
|
+
}
|
|
1705
|
+
],
|
|
1706
|
+
responseTransformer: missionsControllerCreateMissions1ResponseTransformer,
|
|
1707
|
+
url: "/missions",
|
|
1708
|
+
...options,
|
|
1709
|
+
headers: {
|
|
1710
|
+
"Content-Type": "application/json",
|
|
1711
|
+
...options.headers
|
|
1712
|
+
}
|
|
1713
|
+
});
|
|
1714
|
+
}, "missionsControllerCreateMissions1");
|
|
1715
|
+
var missionsControllerUpdateMissions1 = /* @__PURE__ */ __name((options) => {
|
|
1716
|
+
return (options.client ?? client).put({
|
|
1717
|
+
security: [
|
|
1718
|
+
{
|
|
1719
|
+
name: "x-api-token",
|
|
1720
|
+
type: "apiKey"
|
|
1721
|
+
}
|
|
1722
|
+
],
|
|
1723
|
+
url: "/missions",
|
|
1724
|
+
...options,
|
|
1725
|
+
headers: {
|
|
1726
|
+
"Content-Type": "application/json",
|
|
1727
|
+
...options.headers
|
|
1728
|
+
}
|
|
1729
|
+
});
|
|
1730
|
+
}, "missionsControllerUpdateMissions1");
|
|
1731
|
+
var missionsControllerRepriceMissions0V1 = /* @__PURE__ */ __name((options) => {
|
|
1732
|
+
return (options.client ?? client).put({
|
|
1733
|
+
security: [
|
|
1734
|
+
{
|
|
1735
|
+
name: "x-api-token",
|
|
1736
|
+
type: "apiKey"
|
|
1737
|
+
}
|
|
1738
|
+
],
|
|
1739
|
+
url: "/v1/missions/amounts",
|
|
1740
|
+
...options,
|
|
1741
|
+
headers: {
|
|
1742
|
+
"Content-Type": "application/json",
|
|
1743
|
+
...options.headers
|
|
1744
|
+
}
|
|
1745
|
+
});
|
|
1746
|
+
}, "missionsControllerRepriceMissions0V1");
|
|
1747
|
+
var missionsControllerRepriceMissions1 = /* @__PURE__ */ __name((options) => {
|
|
1748
|
+
return (options.client ?? client).put({
|
|
1749
|
+
security: [
|
|
1750
|
+
{
|
|
1751
|
+
name: "x-api-token",
|
|
1752
|
+
type: "apiKey"
|
|
1753
|
+
}
|
|
1754
|
+
],
|
|
1755
|
+
url: "/missions/amounts",
|
|
1756
|
+
...options,
|
|
1757
|
+
headers: {
|
|
1758
|
+
"Content-Type": "application/json",
|
|
1759
|
+
...options.headers
|
|
1760
|
+
}
|
|
1761
|
+
});
|
|
1762
|
+
}, "missionsControllerRepriceMissions1");
|
|
1763
|
+
var protocolTriggersApiControllerTriggerPayout0V1 = /* @__PURE__ */ __name((options) => {
|
|
1764
|
+
return (options.client ?? client).post({
|
|
1765
|
+
security: [
|
|
1766
|
+
{
|
|
1767
|
+
name: "x-api-token",
|
|
1768
|
+
type: "apiKey"
|
|
1769
|
+
}
|
|
1770
|
+
],
|
|
1771
|
+
url: "/v1/protocol-triggers/missions/payout",
|
|
1772
|
+
...options,
|
|
1773
|
+
headers: {
|
|
1774
|
+
"Content-Type": "application/json",
|
|
1775
|
+
...options.headers
|
|
1776
|
+
}
|
|
1777
|
+
});
|
|
1778
|
+
}, "protocolTriggersApiControllerTriggerPayout0V1");
|
|
1779
|
+
var protocolTriggersApiControllerTriggerPayout1 = /* @__PURE__ */ __name((options) => {
|
|
1780
|
+
return (options.client ?? client).post({
|
|
1781
|
+
security: [
|
|
1782
|
+
{
|
|
1783
|
+
name: "x-api-token",
|
|
1784
|
+
type: "apiKey"
|
|
1785
|
+
}
|
|
1786
|
+
],
|
|
1787
|
+
url: "/protocol-triggers/missions/payout",
|
|
1788
|
+
...options,
|
|
1789
|
+
headers: {
|
|
1790
|
+
"Content-Type": "application/json",
|
|
1791
|
+
...options.headers
|
|
1792
|
+
}
|
|
1793
|
+
});
|
|
1794
|
+
}, "protocolTriggersApiControllerTriggerPayout1");
|
|
1795
|
+
var protocolTriggersApiControllerTriggerMissionClose0V1 = /* @__PURE__ */ __name((options) => {
|
|
1796
|
+
return (options.client ?? client).post({
|
|
1797
|
+
security: [
|
|
1798
|
+
{
|
|
1799
|
+
name: "x-api-token",
|
|
1800
|
+
type: "apiKey"
|
|
1801
|
+
}
|
|
1802
|
+
],
|
|
1803
|
+
url: "/v1/protocol-triggers/missions/close",
|
|
1804
|
+
...options,
|
|
1805
|
+
headers: {
|
|
1806
|
+
"Content-Type": "application/json",
|
|
1807
|
+
...options.headers
|
|
1808
|
+
}
|
|
1809
|
+
});
|
|
1810
|
+
}, "protocolTriggersApiControllerTriggerMissionClose0V1");
|
|
1811
|
+
var protocolTriggersApiControllerTriggerMissionClose1 = /* @__PURE__ */ __name((options) => {
|
|
1812
|
+
return (options.client ?? client).post({
|
|
1813
|
+
security: [
|
|
1814
|
+
{
|
|
1815
|
+
name: "x-api-token",
|
|
1816
|
+
type: "apiKey"
|
|
1817
|
+
}
|
|
1818
|
+
],
|
|
1819
|
+
url: "/protocol-triggers/missions/close",
|
|
1820
|
+
...options,
|
|
1821
|
+
headers: {
|
|
1822
|
+
"Content-Type": "application/json",
|
|
1823
|
+
...options.headers
|
|
1824
|
+
}
|
|
1825
|
+
});
|
|
1826
|
+
}, "protocolTriggersApiControllerTriggerMissionClose1");
|
|
1827
|
+
var quotesControllerCreateQuote0V1 = /* @__PURE__ */ __name((options) => {
|
|
1828
|
+
return (options.client ?? client).post({
|
|
1829
|
+
security: [
|
|
1830
|
+
{
|
|
1831
|
+
name: "x-api-token",
|
|
1832
|
+
type: "apiKey"
|
|
1833
|
+
}
|
|
1834
|
+
],
|
|
1835
|
+
url: "/v1/quotes",
|
|
1836
|
+
...options,
|
|
1837
|
+
headers: {
|
|
1838
|
+
"Content-Type": "application/json",
|
|
1839
|
+
...options.headers
|
|
1840
|
+
}
|
|
1841
|
+
});
|
|
1842
|
+
}, "quotesControllerCreateQuote0V1");
|
|
1843
|
+
var quotesControllerCreateQuote1 = /* @__PURE__ */ __name((options) => {
|
|
1844
|
+
return (options.client ?? client).post({
|
|
1845
|
+
security: [
|
|
1846
|
+
{
|
|
1847
|
+
name: "x-api-token",
|
|
1848
|
+
type: "apiKey"
|
|
1849
|
+
}
|
|
1850
|
+
],
|
|
1851
|
+
url: "/quotes",
|
|
1852
|
+
...options,
|
|
1853
|
+
headers: {
|
|
1854
|
+
"Content-Type": "application/json",
|
|
1855
|
+
...options.headers
|
|
1856
|
+
}
|
|
1857
|
+
});
|
|
1858
|
+
}, "quotesControllerCreateQuote1");
|
|
1859
|
+
var quotesControllerGetQuote0V1 = /* @__PURE__ */ __name((options) => {
|
|
1860
|
+
return (options.client ?? client).get({
|
|
1861
|
+
security: [
|
|
1862
|
+
{
|
|
1863
|
+
name: "x-api-token",
|
|
1864
|
+
type: "apiKey"
|
|
1865
|
+
}
|
|
1866
|
+
],
|
|
1867
|
+
url: "/v1/quotes/{id}",
|
|
1868
|
+
...options
|
|
1869
|
+
});
|
|
1870
|
+
}, "quotesControllerGetQuote0V1");
|
|
1871
|
+
var quotesControllerGetQuote1 = /* @__PURE__ */ __name((options) => {
|
|
1872
|
+
return (options.client ?? client).get({
|
|
1873
|
+
security: [
|
|
1874
|
+
{
|
|
1875
|
+
name: "x-api-token",
|
|
1876
|
+
type: "apiKey"
|
|
1877
|
+
}
|
|
1878
|
+
],
|
|
1879
|
+
url: "/quotes/{id}",
|
|
1880
|
+
...options
|
|
1881
|
+
});
|
|
1882
|
+
}, "quotesControllerGetQuote1");
|
|
1883
|
+
var schemaControllerGetEventSchema0V1 = /* @__PURE__ */ __name((options) => {
|
|
1884
|
+
return (options?.client ?? client).get({
|
|
1885
|
+
url: "/v1/schema/event",
|
|
1886
|
+
...options
|
|
1887
|
+
});
|
|
1888
|
+
}, "schemaControllerGetEventSchema0V1");
|
|
1889
|
+
var schemaControllerGetEventSchema1 = /* @__PURE__ */ __name((options) => {
|
|
1890
|
+
return (options?.client ?? client).get({
|
|
1891
|
+
url: "/schema/event",
|
|
1892
|
+
...options
|
|
1893
|
+
});
|
|
1894
|
+
}, "schemaControllerGetEventSchema1");
|
|
1895
|
+
var vaultsControllerCreateVaults0V1 = /* @__PURE__ */ __name((options) => {
|
|
1896
|
+
return (options.client ?? client).post({
|
|
1897
|
+
security: [
|
|
1898
|
+
{
|
|
1899
|
+
name: "x-api-token",
|
|
1900
|
+
type: "apiKey"
|
|
1901
|
+
},
|
|
1902
|
+
{
|
|
1903
|
+
name: "x-api-token",
|
|
1904
|
+
type: "apiKey"
|
|
1905
|
+
}
|
|
1906
|
+
],
|
|
1907
|
+
url: "/v1/vaults",
|
|
1908
|
+
...options,
|
|
1909
|
+
headers: {
|
|
1910
|
+
"Content-Type": "application/json",
|
|
1911
|
+
...options.headers
|
|
1912
|
+
}
|
|
1913
|
+
});
|
|
1914
|
+
}, "vaultsControllerCreateVaults0V1");
|
|
1915
|
+
var vaultsControllerCreateVaults1 = /* @__PURE__ */ __name((options) => {
|
|
1916
|
+
return (options.client ?? client).post({
|
|
1917
|
+
security: [
|
|
1918
|
+
{
|
|
1919
|
+
name: "x-api-token",
|
|
1920
|
+
type: "apiKey"
|
|
1921
|
+
},
|
|
1922
|
+
{
|
|
1923
|
+
name: "x-api-token",
|
|
1924
|
+
type: "apiKey"
|
|
1925
|
+
}
|
|
1926
|
+
],
|
|
1927
|
+
url: "/vaults",
|
|
1928
|
+
...options,
|
|
1929
|
+
headers: {
|
|
1930
|
+
"Content-Type": "application/json",
|
|
1931
|
+
...options.headers
|
|
1932
|
+
}
|
|
1933
|
+
});
|
|
1934
|
+
}, "vaultsControllerCreateVaults1");
|
|
1935
|
+
var webhooksControllerGetMany0V1 = /* @__PURE__ */ __name((options) => {
|
|
1936
|
+
return (options.client ?? client).get({
|
|
1937
|
+
security: [
|
|
1938
|
+
{
|
|
1939
|
+
name: "x-api-token",
|
|
1940
|
+
type: "apiKey"
|
|
1941
|
+
}
|
|
1942
|
+
],
|
|
1943
|
+
responseTransformer: webhooksControllerGetMany0V1ResponseTransformer,
|
|
1944
|
+
url: "/v1/org/{org_id}/webhooks",
|
|
1945
|
+
...options
|
|
1946
|
+
});
|
|
1947
|
+
}, "webhooksControllerGetMany0V1");
|
|
1948
|
+
var webhooksControllerCreate0V1 = /* @__PURE__ */ __name((options) => {
|
|
1949
|
+
return (options.client ?? client).post({
|
|
1950
|
+
security: [
|
|
1951
|
+
{
|
|
1952
|
+
name: "x-api-token",
|
|
1953
|
+
type: "apiKey"
|
|
1954
|
+
}
|
|
1955
|
+
],
|
|
1956
|
+
url: "/v1/org/{org_id}/webhooks",
|
|
1957
|
+
...options,
|
|
1958
|
+
headers: {
|
|
1959
|
+
"Content-Type": "application/json",
|
|
1960
|
+
...options.headers
|
|
1961
|
+
}
|
|
1962
|
+
});
|
|
1963
|
+
}, "webhooksControllerCreate0V1");
|
|
1964
|
+
var webhooksControllerGetMany1 = /* @__PURE__ */ __name((options) => {
|
|
1965
|
+
return (options.client ?? client).get({
|
|
1966
|
+
security: [
|
|
1967
|
+
{
|
|
1968
|
+
name: "x-api-token",
|
|
1969
|
+
type: "apiKey"
|
|
1970
|
+
}
|
|
1971
|
+
],
|
|
1972
|
+
responseTransformer: webhooksControllerGetMany1ResponseTransformer,
|
|
1973
|
+
url: "/org/{org_id}/webhooks",
|
|
1974
|
+
...options
|
|
1975
|
+
});
|
|
1976
|
+
}, "webhooksControllerGetMany1");
|
|
1977
|
+
var webhooksControllerCreate1 = /* @__PURE__ */ __name((options) => {
|
|
1978
|
+
return (options.client ?? client).post({
|
|
1979
|
+
security: [
|
|
1980
|
+
{
|
|
1981
|
+
name: "x-api-token",
|
|
1982
|
+
type: "apiKey"
|
|
1983
|
+
}
|
|
1984
|
+
],
|
|
1985
|
+
url: "/org/{org_id}/webhooks",
|
|
1986
|
+
...options,
|
|
1987
|
+
headers: {
|
|
1988
|
+
"Content-Type": "application/json",
|
|
1989
|
+
...options.headers
|
|
1990
|
+
}
|
|
1991
|
+
});
|
|
1992
|
+
}, "webhooksControllerCreate1");
|
|
1993
|
+
var webhooksControllerDelete0V1 = /* @__PURE__ */ __name((options) => {
|
|
1994
|
+
return (options.client ?? client).delete({
|
|
1995
|
+
security: [
|
|
1996
|
+
{
|
|
1997
|
+
name: "x-api-token",
|
|
1998
|
+
type: "apiKey"
|
|
1999
|
+
}
|
|
2000
|
+
],
|
|
2001
|
+
url: "/v1/org/{org_id}/webhooks/{id}",
|
|
2002
|
+
...options
|
|
2003
|
+
});
|
|
2004
|
+
}, "webhooksControllerDelete0V1");
|
|
2005
|
+
var webhooksControllerGet0V1 = /* @__PURE__ */ __name((options) => {
|
|
2006
|
+
return (options.client ?? client).get({
|
|
2007
|
+
security: [
|
|
2008
|
+
{
|
|
2009
|
+
name: "x-api-token",
|
|
2010
|
+
type: "apiKey"
|
|
2011
|
+
}
|
|
2012
|
+
],
|
|
2013
|
+
responseTransformer: webhooksControllerGet0V1ResponseTransformer,
|
|
2014
|
+
url: "/v1/org/{org_id}/webhooks/{id}",
|
|
2015
|
+
...options
|
|
2016
|
+
});
|
|
2017
|
+
}, "webhooksControllerGet0V1");
|
|
2018
|
+
var webhooksControllerUpdate0V1 = /* @__PURE__ */ __name((options) => {
|
|
2019
|
+
return (options.client ?? client).put({
|
|
2020
|
+
security: [
|
|
2021
|
+
{
|
|
2022
|
+
name: "x-api-token",
|
|
2023
|
+
type: "apiKey"
|
|
2024
|
+
}
|
|
2025
|
+
],
|
|
2026
|
+
responseTransformer: webhooksControllerUpdate0V1ResponseTransformer,
|
|
2027
|
+
url: "/v1/org/{org_id}/webhooks/{id}",
|
|
2028
|
+
...options,
|
|
2029
|
+
headers: {
|
|
2030
|
+
"Content-Type": "application/json",
|
|
2031
|
+
...options.headers
|
|
2032
|
+
}
|
|
2033
|
+
});
|
|
2034
|
+
}, "webhooksControllerUpdate0V1");
|
|
2035
|
+
var webhooksControllerDelete1 = /* @__PURE__ */ __name((options) => {
|
|
2036
|
+
return (options.client ?? client).delete({
|
|
2037
|
+
security: [
|
|
2038
|
+
{
|
|
2039
|
+
name: "x-api-token",
|
|
2040
|
+
type: "apiKey"
|
|
2041
|
+
}
|
|
2042
|
+
],
|
|
2043
|
+
url: "/org/{org_id}/webhooks/{id}",
|
|
2044
|
+
...options
|
|
2045
|
+
});
|
|
2046
|
+
}, "webhooksControllerDelete1");
|
|
2047
|
+
var webhooksControllerGet1 = /* @__PURE__ */ __name((options) => {
|
|
2048
|
+
return (options.client ?? client).get({
|
|
2049
|
+
security: [
|
|
2050
|
+
{
|
|
2051
|
+
name: "x-api-token",
|
|
2052
|
+
type: "apiKey"
|
|
2053
|
+
}
|
|
2054
|
+
],
|
|
2055
|
+
responseTransformer: webhooksControllerGet1ResponseTransformer,
|
|
2056
|
+
url: "/org/{org_id}/webhooks/{id}",
|
|
2057
|
+
...options
|
|
2058
|
+
});
|
|
2059
|
+
}, "webhooksControllerGet1");
|
|
2060
|
+
var webhooksControllerUpdate1 = /* @__PURE__ */ __name((options) => {
|
|
2061
|
+
return (options.client ?? client).put({
|
|
2062
|
+
security: [
|
|
2063
|
+
{
|
|
2064
|
+
name: "x-api-token",
|
|
2065
|
+
type: "apiKey"
|
|
2066
|
+
}
|
|
2067
|
+
],
|
|
2068
|
+
responseTransformer: webhooksControllerUpdate1ResponseTransformer,
|
|
2069
|
+
url: "/org/{org_id}/webhooks/{id}",
|
|
2070
|
+
...options,
|
|
2071
|
+
headers: {
|
|
2072
|
+
"Content-Type": "application/json",
|
|
2073
|
+
...options.headers
|
|
2074
|
+
}
|
|
2075
|
+
});
|
|
2076
|
+
}, "webhooksControllerUpdate1");
|
|
2077
|
+
var webhooksControllerRegenerateSecret0V1 = /* @__PURE__ */ __name((options) => {
|
|
2078
|
+
return (options.client ?? client).post({
|
|
2079
|
+
security: [
|
|
2080
|
+
{
|
|
2081
|
+
name: "x-api-token",
|
|
2082
|
+
type: "apiKey"
|
|
2083
|
+
}
|
|
2084
|
+
],
|
|
2085
|
+
responseTransformer: webhooksControllerRegenerateSecret0V1ResponseTransformer,
|
|
2086
|
+
url: "/v1/org/{org_id}/webhooks/{id}/regenerate-secret",
|
|
2087
|
+
...options,
|
|
2088
|
+
headers: {
|
|
2089
|
+
"Content-Type": "application/json",
|
|
2090
|
+
...options.headers
|
|
2091
|
+
}
|
|
2092
|
+
});
|
|
2093
|
+
}, "webhooksControllerRegenerateSecret0V1");
|
|
2094
|
+
var webhooksControllerRegenerateSecret1 = /* @__PURE__ */ __name((options) => {
|
|
2095
|
+
return (options.client ?? client).post({
|
|
2096
|
+
security: [
|
|
2097
|
+
{
|
|
2098
|
+
name: "x-api-token",
|
|
2099
|
+
type: "apiKey"
|
|
2100
|
+
}
|
|
2101
|
+
],
|
|
2102
|
+
responseTransformer: webhooksControllerRegenerateSecret1ResponseTransformer,
|
|
2103
|
+
url: "/org/{org_id}/webhooks/{id}/regenerate-secret",
|
|
2104
|
+
...options,
|
|
2105
|
+
headers: {
|
|
2106
|
+
"Content-Type": "application/json",
|
|
2107
|
+
...options.headers
|
|
2108
|
+
}
|
|
2109
|
+
});
|
|
2110
|
+
}, "webhooksControllerRegenerateSecret1");
|
|
2111
|
+
var webhooksControllerTest0V1 = /* @__PURE__ */ __name((options) => {
|
|
2112
|
+
return (options.client ?? client).post({
|
|
2113
|
+
security: [
|
|
2114
|
+
{
|
|
2115
|
+
name: "x-api-token",
|
|
2116
|
+
type: "apiKey"
|
|
2117
|
+
}
|
|
2118
|
+
],
|
|
2119
|
+
url: "/v1/org/{org_id}/webhooks/{id}/test",
|
|
2120
|
+
...options
|
|
2121
|
+
});
|
|
2122
|
+
}, "webhooksControllerTest0V1");
|
|
2123
|
+
var webhooksControllerTest1 = /* @__PURE__ */ __name((options) => {
|
|
2124
|
+
return (options.client ?? client).post({
|
|
2125
|
+
security: [
|
|
2126
|
+
{
|
|
2127
|
+
name: "x-api-token",
|
|
2128
|
+
type: "apiKey"
|
|
2129
|
+
}
|
|
2130
|
+
],
|
|
2131
|
+
url: "/org/{org_id}/webhooks/{id}/test",
|
|
2132
|
+
...options
|
|
2133
|
+
});
|
|
2134
|
+
}, "webhooksControllerTest1");
|
|
2135
|
+
var webhooksControllerGetStatus0V1 = /* @__PURE__ */ __name((options) => {
|
|
2136
|
+
return (options.client ?? client).get({
|
|
2137
|
+
security: [
|
|
2138
|
+
{
|
|
2139
|
+
name: "x-api-token",
|
|
2140
|
+
type: "apiKey"
|
|
2141
|
+
}
|
|
2142
|
+
],
|
|
2143
|
+
url: "/v1/org/{org_id}/webhooks/{id}/status",
|
|
2144
|
+
...options
|
|
2145
|
+
});
|
|
2146
|
+
}, "webhooksControllerGetStatus0V1");
|
|
2147
|
+
var webhooksControllerGetStatus1 = /* @__PURE__ */ __name((options) => {
|
|
2148
|
+
return (options.client ?? client).get({
|
|
2149
|
+
security: [
|
|
2150
|
+
{
|
|
2151
|
+
name: "x-api-token",
|
|
2152
|
+
type: "apiKey"
|
|
2153
|
+
}
|
|
2154
|
+
],
|
|
2155
|
+
url: "/org/{org_id}/webhooks/{id}/status",
|
|
2156
|
+
...options
|
|
2157
|
+
});
|
|
2158
|
+
}, "webhooksControllerGetStatus1");
|
|
2159
|
+
var zonesControllerCreateZone0V1 = /* @__PURE__ */ __name((options) => {
|
|
2160
|
+
return (options.client ?? client).post({
|
|
2161
|
+
security: [
|
|
2162
|
+
{
|
|
2163
|
+
name: "x-api-token",
|
|
2164
|
+
type: "apiKey"
|
|
2165
|
+
}
|
|
2166
|
+
],
|
|
2167
|
+
responseTransformer: zonesControllerCreateZone0V1ResponseTransformer,
|
|
2168
|
+
url: "/v1/zones",
|
|
2169
|
+
...options,
|
|
2170
|
+
headers: {
|
|
2171
|
+
"Content-Type": "application/json",
|
|
2172
|
+
...options.headers
|
|
2173
|
+
}
|
|
2174
|
+
});
|
|
2175
|
+
}, "zonesControllerCreateZone0V1");
|
|
2176
|
+
var zonesControllerCreateZone1 = /* @__PURE__ */ __name((options) => {
|
|
2177
|
+
return (options.client ?? client).post({
|
|
2178
|
+
security: [
|
|
2179
|
+
{
|
|
2180
|
+
name: "x-api-token",
|
|
2181
|
+
type: "apiKey"
|
|
2182
|
+
}
|
|
2183
|
+
],
|
|
2184
|
+
responseTransformer: zonesControllerCreateZone1ResponseTransformer,
|
|
2185
|
+
url: "/zones",
|
|
2186
|
+
...options,
|
|
2187
|
+
headers: {
|
|
2188
|
+
"Content-Type": "application/json",
|
|
2189
|
+
...options.headers
|
|
2190
|
+
}
|
|
2191
|
+
});
|
|
2192
|
+
}, "zonesControllerCreateZone1");
|
|
2193
|
+
var zonesControllerDeleteZone0V1 = /* @__PURE__ */ __name((options) => {
|
|
2194
|
+
return (options.client ?? client).delete({
|
|
2195
|
+
security: [
|
|
2196
|
+
{
|
|
2197
|
+
name: "x-api-token",
|
|
2198
|
+
type: "apiKey"
|
|
2199
|
+
}
|
|
2200
|
+
],
|
|
2201
|
+
url: "/v1/zones/{id}",
|
|
2202
|
+
...options
|
|
2203
|
+
});
|
|
2204
|
+
}, "zonesControllerDeleteZone0V1");
|
|
2205
|
+
var zonesControllerUpdateZone0V1 = /* @__PURE__ */ __name((options) => {
|
|
2206
|
+
return (options.client ?? client).put({
|
|
2207
|
+
security: [
|
|
2208
|
+
{
|
|
2209
|
+
name: "x-api-token",
|
|
2210
|
+
type: "apiKey"
|
|
2211
|
+
}
|
|
2212
|
+
],
|
|
2213
|
+
responseTransformer: zonesControllerUpdateZone0V1ResponseTransformer,
|
|
2214
|
+
url: "/v1/zones/{id}",
|
|
2215
|
+
...options,
|
|
2216
|
+
headers: {
|
|
2217
|
+
"Content-Type": "application/json",
|
|
2218
|
+
...options.headers
|
|
2219
|
+
}
|
|
2220
|
+
});
|
|
2221
|
+
}, "zonesControllerUpdateZone0V1");
|
|
2222
|
+
var zonesControllerDeleteZone1 = /* @__PURE__ */ __name((options) => {
|
|
2223
|
+
return (options.client ?? client).delete({
|
|
1515
2224
|
security: [
|
|
1516
2225
|
{
|
|
1517
2226
|
name: "x-api-token",
|
|
1518
2227
|
type: "apiKey"
|
|
1519
2228
|
}
|
|
1520
2229
|
],
|
|
1521
|
-
responseTransformer: zonesControllerUpdateZoneResponseTransformer,
|
|
1522
2230
|
url: "/zones/{id}",
|
|
2231
|
+
...options
|
|
2232
|
+
});
|
|
2233
|
+
}, "zonesControllerDeleteZone1");
|
|
2234
|
+
var zonesControllerUpdateZone1 = /* @__PURE__ */ __name((options) => {
|
|
2235
|
+
return (options.client ?? client).put({
|
|
2236
|
+
security: [
|
|
2237
|
+
{
|
|
2238
|
+
name: "x-api-token",
|
|
2239
|
+
type: "apiKey"
|
|
2240
|
+
}
|
|
2241
|
+
],
|
|
2242
|
+
responseTransformer: zonesControllerUpdateZone1ResponseTransformer,
|
|
2243
|
+
url: "/zones/{id}",
|
|
2244
|
+
...options,
|
|
2245
|
+
headers: {
|
|
2246
|
+
"Content-Type": "application/json",
|
|
2247
|
+
...options.headers
|
|
2248
|
+
}
|
|
2249
|
+
});
|
|
2250
|
+
}, "zonesControllerUpdateZone1");
|
|
2251
|
+
var eventProcessorMissionsSyncControllerResyncMissions0V1 = /* @__PURE__ */ __name((options) => {
|
|
2252
|
+
return (options.client ?? client).put({
|
|
2253
|
+
security: [
|
|
2254
|
+
{
|
|
2255
|
+
name: "x-api-token",
|
|
2256
|
+
type: "apiKey"
|
|
2257
|
+
}
|
|
2258
|
+
],
|
|
2259
|
+
url: "/v1/event-processor/missions/sync",
|
|
1523
2260
|
...options,
|
|
1524
2261
|
headers: {
|
|
1525
2262
|
"Content-Type": "application/json",
|
|
1526
2263
|
...options.headers
|
|
1527
2264
|
}
|
|
1528
2265
|
});
|
|
1529
|
-
}, "
|
|
1530
|
-
var
|
|
2266
|
+
}, "eventProcessorMissionsSyncControllerResyncMissions0V1");
|
|
2267
|
+
var eventProcessorMissionsSyncControllerResyncMissions1 = /* @__PURE__ */ __name((options) => {
|
|
1531
2268
|
return (options.client ?? client).put({
|
|
1532
2269
|
security: [
|
|
1533
2270
|
{
|
|
@@ -1542,8 +2279,24 @@ var eventProcessorMissionsSyncControllerResyncMissions = /* @__PURE__ */ __name(
|
|
|
1542
2279
|
...options.headers
|
|
1543
2280
|
}
|
|
1544
2281
|
});
|
|
1545
|
-
}, "
|
|
1546
|
-
var
|
|
2282
|
+
}, "eventProcessorMissionsSyncControllerResyncMissions1");
|
|
2283
|
+
var eventProcessorFlightReviewsSyncControllerResyncFlightReviews0V1 = /* @__PURE__ */ __name((options) => {
|
|
2284
|
+
return (options.client ?? client).put({
|
|
2285
|
+
security: [
|
|
2286
|
+
{
|
|
2287
|
+
name: "x-api-token",
|
|
2288
|
+
type: "apiKey"
|
|
2289
|
+
}
|
|
2290
|
+
],
|
|
2291
|
+
url: "/v1/event-processor/flightreviews",
|
|
2292
|
+
...options,
|
|
2293
|
+
headers: {
|
|
2294
|
+
"Content-Type": "application/json",
|
|
2295
|
+
...options.headers
|
|
2296
|
+
}
|
|
2297
|
+
});
|
|
2298
|
+
}, "eventProcessorFlightReviewsSyncControllerResyncFlightReviews0V1");
|
|
2299
|
+
var eventProcessorFlightReviewsSyncControllerResyncFlightReviews1 = /* @__PURE__ */ __name((options) => {
|
|
1547
2300
|
return (options.client ?? client).put({
|
|
1548
2301
|
security: [
|
|
1549
2302
|
{
|
|
@@ -1558,8 +2311,18 @@ var eventProcessorFlightReviewsSyncControllerResyncFlightReviews = /* @__PURE__
|
|
|
1558
2311
|
...options.headers
|
|
1559
2312
|
}
|
|
1560
2313
|
});
|
|
1561
|
-
}, "
|
|
1562
|
-
var
|
|
2314
|
+
}, "eventProcessorFlightReviewsSyncControllerResyncFlightReviews1");
|
|
2315
|
+
var alchemyControllerHandleWebhook0V1 = /* @__PURE__ */ __name((options) => {
|
|
2316
|
+
return (options.client ?? client).post({
|
|
2317
|
+
url: "/v1/webhooks/inbound/alchemy",
|
|
2318
|
+
...options,
|
|
2319
|
+
headers: {
|
|
2320
|
+
"Content-Type": "application/json",
|
|
2321
|
+
...options.headers
|
|
2322
|
+
}
|
|
2323
|
+
});
|
|
2324
|
+
}, "alchemyControllerHandleWebhook0V1");
|
|
2325
|
+
var alchemyControllerHandleWebhook1 = /* @__PURE__ */ __name((options) => {
|
|
1563
2326
|
return (options.client ?? client).post({
|
|
1564
2327
|
url: "/webhooks/inbound/alchemy",
|
|
1565
2328
|
...options,
|
|
@@ -1568,8 +2331,38 @@ var alchemyControllerHandleWebhook = /* @__PURE__ */ __name((options) => {
|
|
|
1568
2331
|
...options.headers
|
|
1569
2332
|
}
|
|
1570
2333
|
});
|
|
1571
|
-
}, "
|
|
1572
|
-
var
|
|
2334
|
+
}, "alchemyControllerHandleWebhook1");
|
|
2335
|
+
var inboundWebhookConfigsControllerGetMany0V1 = /* @__PURE__ */ __name((options) => {
|
|
2336
|
+
return (options?.client ?? client).get({
|
|
2337
|
+
security: [
|
|
2338
|
+
{
|
|
2339
|
+
name: "x-api-token",
|
|
2340
|
+
type: "apiKey"
|
|
2341
|
+
}
|
|
2342
|
+
],
|
|
2343
|
+
responseTransformer: inboundWebhookConfigsControllerGetMany0V1ResponseTransformer,
|
|
2344
|
+
url: "/v1/webhooks/inbound/configs",
|
|
2345
|
+
...options
|
|
2346
|
+
});
|
|
2347
|
+
}, "inboundWebhookConfigsControllerGetMany0V1");
|
|
2348
|
+
var inboundWebhookConfigsControllerCreate0V1 = /* @__PURE__ */ __name((options) => {
|
|
2349
|
+
return (options.client ?? client).post({
|
|
2350
|
+
security: [
|
|
2351
|
+
{
|
|
2352
|
+
name: "x-api-token",
|
|
2353
|
+
type: "apiKey"
|
|
2354
|
+
}
|
|
2355
|
+
],
|
|
2356
|
+
responseTransformer: inboundWebhookConfigsControllerCreate0V1ResponseTransformer,
|
|
2357
|
+
url: "/v1/webhooks/inbound/configs",
|
|
2358
|
+
...options,
|
|
2359
|
+
headers: {
|
|
2360
|
+
"Content-Type": "application/json",
|
|
2361
|
+
...options.headers
|
|
2362
|
+
}
|
|
2363
|
+
});
|
|
2364
|
+
}, "inboundWebhookConfigsControllerCreate0V1");
|
|
2365
|
+
var inboundWebhookConfigsControllerGetMany1 = /* @__PURE__ */ __name((options) => {
|
|
1573
2366
|
return (options?.client ?? client).get({
|
|
1574
2367
|
security: [
|
|
1575
2368
|
{
|
|
@@ -1577,12 +2370,12 @@ var inboundWebhookConfigsControllerGetMany = /* @__PURE__ */ __name((options) =>
|
|
|
1577
2370
|
type: "apiKey"
|
|
1578
2371
|
}
|
|
1579
2372
|
],
|
|
1580
|
-
responseTransformer:
|
|
2373
|
+
responseTransformer: inboundWebhookConfigsControllerGetMany1ResponseTransformer,
|
|
1581
2374
|
url: "/webhooks/inbound/configs",
|
|
1582
2375
|
...options
|
|
1583
2376
|
});
|
|
1584
|
-
}, "
|
|
1585
|
-
var
|
|
2377
|
+
}, "inboundWebhookConfigsControllerGetMany1");
|
|
2378
|
+
var inboundWebhookConfigsControllerCreate1 = /* @__PURE__ */ __name((options) => {
|
|
1586
2379
|
return (options.client ?? client).post({
|
|
1587
2380
|
security: [
|
|
1588
2381
|
{
|
|
@@ -1590,7 +2383,7 @@ var inboundWebhookConfigsControllerCreate = /* @__PURE__ */ __name((options) =>
|
|
|
1590
2383
|
type: "apiKey"
|
|
1591
2384
|
}
|
|
1592
2385
|
],
|
|
1593
|
-
responseTransformer:
|
|
2386
|
+
responseTransformer: inboundWebhookConfigsControllerCreate1ResponseTransformer,
|
|
1594
2387
|
url: "/webhooks/inbound/configs",
|
|
1595
2388
|
...options,
|
|
1596
2389
|
headers: {
|
|
@@ -1598,8 +2391,50 @@ var inboundWebhookConfigsControllerCreate = /* @__PURE__ */ __name((options) =>
|
|
|
1598
2391
|
...options.headers
|
|
1599
2392
|
}
|
|
1600
2393
|
});
|
|
1601
|
-
}, "
|
|
1602
|
-
var
|
|
2394
|
+
}, "inboundWebhookConfigsControllerCreate1");
|
|
2395
|
+
var inboundWebhookConfigsControllerDelete0V1 = /* @__PURE__ */ __name((options) => {
|
|
2396
|
+
return (options.client ?? client).delete({
|
|
2397
|
+
security: [
|
|
2398
|
+
{
|
|
2399
|
+
name: "x-api-token",
|
|
2400
|
+
type: "apiKey"
|
|
2401
|
+
}
|
|
2402
|
+
],
|
|
2403
|
+
url: "/v1/webhooks/inbound/configs/{id}",
|
|
2404
|
+
...options
|
|
2405
|
+
});
|
|
2406
|
+
}, "inboundWebhookConfigsControllerDelete0V1");
|
|
2407
|
+
var inboundWebhookConfigsControllerGet0V1 = /* @__PURE__ */ __name((options) => {
|
|
2408
|
+
return (options.client ?? client).get({
|
|
2409
|
+
security: [
|
|
2410
|
+
{
|
|
2411
|
+
name: "x-api-token",
|
|
2412
|
+
type: "apiKey"
|
|
2413
|
+
}
|
|
2414
|
+
],
|
|
2415
|
+
responseTransformer: inboundWebhookConfigsControllerGet0V1ResponseTransformer,
|
|
2416
|
+
url: "/v1/webhooks/inbound/configs/{id}",
|
|
2417
|
+
...options
|
|
2418
|
+
});
|
|
2419
|
+
}, "inboundWebhookConfigsControllerGet0V1");
|
|
2420
|
+
var inboundWebhookConfigsControllerUpdate0V1 = /* @__PURE__ */ __name((options) => {
|
|
2421
|
+
return (options.client ?? client).put({
|
|
2422
|
+
security: [
|
|
2423
|
+
{
|
|
2424
|
+
name: "x-api-token",
|
|
2425
|
+
type: "apiKey"
|
|
2426
|
+
}
|
|
2427
|
+
],
|
|
2428
|
+
responseTransformer: inboundWebhookConfigsControllerUpdate0V1ResponseTransformer,
|
|
2429
|
+
url: "/v1/webhooks/inbound/configs/{id}",
|
|
2430
|
+
...options,
|
|
2431
|
+
headers: {
|
|
2432
|
+
"Content-Type": "application/json",
|
|
2433
|
+
...options.headers
|
|
2434
|
+
}
|
|
2435
|
+
});
|
|
2436
|
+
}, "inboundWebhookConfigsControllerUpdate0V1");
|
|
2437
|
+
var inboundWebhookConfigsControllerDelete1 = /* @__PURE__ */ __name((options) => {
|
|
1603
2438
|
return (options.client ?? client).delete({
|
|
1604
2439
|
security: [
|
|
1605
2440
|
{
|
|
@@ -1610,8 +2445,8 @@ var inboundWebhookConfigsControllerDelete = /* @__PURE__ */ __name((options) =>
|
|
|
1610
2445
|
url: "/webhooks/inbound/configs/{id}",
|
|
1611
2446
|
...options
|
|
1612
2447
|
});
|
|
1613
|
-
}, "
|
|
1614
|
-
var
|
|
2448
|
+
}, "inboundWebhookConfigsControllerDelete1");
|
|
2449
|
+
var inboundWebhookConfigsControllerGet1 = /* @__PURE__ */ __name((options) => {
|
|
1615
2450
|
return (options.client ?? client).get({
|
|
1616
2451
|
security: [
|
|
1617
2452
|
{
|
|
@@ -1619,12 +2454,12 @@ var inboundWebhookConfigsControllerGet = /* @__PURE__ */ __name((options) => {
|
|
|
1619
2454
|
type: "apiKey"
|
|
1620
2455
|
}
|
|
1621
2456
|
],
|
|
1622
|
-
responseTransformer:
|
|
2457
|
+
responseTransformer: inboundWebhookConfigsControllerGet1ResponseTransformer,
|
|
1623
2458
|
url: "/webhooks/inbound/configs/{id}",
|
|
1624
2459
|
...options
|
|
1625
2460
|
});
|
|
1626
|
-
}, "
|
|
1627
|
-
var
|
|
2461
|
+
}, "inboundWebhookConfigsControllerGet1");
|
|
2462
|
+
var inboundWebhookConfigsControllerUpdate1 = /* @__PURE__ */ __name((options) => {
|
|
1628
2463
|
return (options.client ?? client).put({
|
|
1629
2464
|
security: [
|
|
1630
2465
|
{
|
|
@@ -1632,7 +2467,7 @@ var inboundWebhookConfigsControllerUpdate = /* @__PURE__ */ __name((options) =>
|
|
|
1632
2467
|
type: "apiKey"
|
|
1633
2468
|
}
|
|
1634
2469
|
],
|
|
1635
|
-
responseTransformer:
|
|
2470
|
+
responseTransformer: inboundWebhookConfigsControllerUpdate1ResponseTransformer,
|
|
1636
2471
|
url: "/webhooks/inbound/configs/{id}",
|
|
1637
2472
|
...options,
|
|
1638
2473
|
headers: {
|
|
@@ -1640,7 +2475,7 @@ var inboundWebhookConfigsControllerUpdate = /* @__PURE__ */ __name((options) =>
|
|
|
1640
2475
|
...options.headers
|
|
1641
2476
|
}
|
|
1642
2477
|
});
|
|
1643
|
-
}, "
|
|
2478
|
+
}, "inboundWebhookConfigsControllerUpdate1");
|
|
1644
2479
|
|
|
1645
2480
|
// src/event/types.gen.ts
|
|
1646
2481
|
import { z } from "zod";
|
|
@@ -1817,64 +2652,118 @@ export {
|
|
|
1817
2652
|
WEBHOOK_PREVIOUS_SECRET_EXPIRES_AT_HEADER,
|
|
1818
2653
|
WEBHOOK_PREVIOUS_SECRET_HEADER,
|
|
1819
2654
|
WEBHOOK_SECRET_HEADER,
|
|
1820
|
-
|
|
1821
|
-
|
|
1822
|
-
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
|
|
2655
|
+
alchemyControllerHandleWebhook0V1,
|
|
2656
|
+
alchemyControllerHandleWebhook1,
|
|
2657
|
+
apiControllerGetError0V1,
|
|
2658
|
+
apiControllerGetError1,
|
|
2659
|
+
apiControllerGetHello0V1,
|
|
2660
|
+
apiControllerGetHello1,
|
|
2661
|
+
apiTokenControllerCreateToken0V1,
|
|
2662
|
+
apiTokenControllerCreateToken1,
|
|
2663
|
+
apiTokenControllerDeleteToken0V1,
|
|
2664
|
+
apiTokenControllerDeleteToken1,
|
|
2665
|
+
apiTokenControllerGetToken0V1,
|
|
2666
|
+
apiTokenControllerGetToken1,
|
|
2667
|
+
apiTokenControllerUpdateToken0V1,
|
|
2668
|
+
apiTokenControllerUpdateToken1,
|
|
1827
2669
|
buildClientParams,
|
|
1828
|
-
|
|
1829
|
-
|
|
1830
|
-
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
|
|
2670
|
+
conditionsControllerGetSunAltitudeTimeLimits0V1,
|
|
2671
|
+
conditionsControllerGetSunAltitudeTimeLimits1,
|
|
2672
|
+
contractsControllerCreateContract0V1,
|
|
2673
|
+
contractsControllerCreateContract1,
|
|
2674
|
+
contractsControllerDeleteContract0V1,
|
|
2675
|
+
contractsControllerDeleteContract1,
|
|
2676
|
+
contractsControllerGetAllContracts0V1,
|
|
2677
|
+
contractsControllerGetAllContracts1,
|
|
2678
|
+
contractsControllerGetContract0V1,
|
|
2679
|
+
contractsControllerGetContract1,
|
|
2680
|
+
contractsControllerUpdateContract0V1,
|
|
2681
|
+
contractsControllerUpdateContract1,
|
|
1834
2682
|
createClient,
|
|
1835
2683
|
createConfig,
|
|
1836
|
-
|
|
1837
|
-
|
|
1838
|
-
|
|
1839
|
-
|
|
1840
|
-
|
|
1841
|
-
|
|
1842
|
-
|
|
1843
|
-
|
|
1844
|
-
|
|
1845
|
-
|
|
1846
|
-
|
|
1847
|
-
|
|
2684
|
+
dlqRedriverControllerRedriveDlq0V1,
|
|
2685
|
+
dlqRedriverControllerRedriveDlq1,
|
|
2686
|
+
eventProcessorFlightReviewsSyncControllerResyncFlightReviews0V1,
|
|
2687
|
+
eventProcessorFlightReviewsSyncControllerResyncFlightReviews1,
|
|
2688
|
+
eventProcessorMissionsSyncControllerResyncMissions0V1,
|
|
2689
|
+
eventProcessorMissionsSyncControllerResyncMissions1,
|
|
2690
|
+
flightPlansControllerCreate0V1,
|
|
2691
|
+
flightPlansControllerCreate1,
|
|
2692
|
+
flightPlansControllerGet0V1,
|
|
2693
|
+
flightPlansControllerGet1,
|
|
2694
|
+
flightPlansControllerGetMany0V1,
|
|
2695
|
+
flightPlansControllerGetMany1,
|
|
2696
|
+
flightReviewsControllerGetFlightReview0V1,
|
|
2697
|
+
flightReviewsControllerGetFlightReview1,
|
|
2698
|
+
flightReviewsControllerGetFlightReviews0V1,
|
|
2699
|
+
flightReviewsControllerGetFlightReviews1,
|
|
2700
|
+
flightsControllerCreatePresignedUrls0V1,
|
|
2701
|
+
flightsControllerCreatePresignedUrls1,
|
|
2702
|
+
flightsControllerGenerateStorageKey0V1,
|
|
2703
|
+
flightsControllerGenerateStorageKey1,
|
|
2704
|
+
flightsControllerGetFlight0V1,
|
|
2705
|
+
flightsControllerGetFlight1,
|
|
2706
|
+
flightsControllerValidateFlight0V1,
|
|
2707
|
+
flightsControllerValidateFlight1,
|
|
1848
2708
|
formDataBodySerializer,
|
|
1849
|
-
|
|
1850
|
-
|
|
1851
|
-
|
|
1852
|
-
|
|
1853
|
-
|
|
2709
|
+
inboundWebhookConfigsControllerCreate0V1,
|
|
2710
|
+
inboundWebhookConfigsControllerCreate1,
|
|
2711
|
+
inboundWebhookConfigsControllerDelete0V1,
|
|
2712
|
+
inboundWebhookConfigsControllerDelete1,
|
|
2713
|
+
inboundWebhookConfigsControllerGet0V1,
|
|
2714
|
+
inboundWebhookConfigsControllerGet1,
|
|
2715
|
+
inboundWebhookConfigsControllerGetMany0V1,
|
|
2716
|
+
inboundWebhookConfigsControllerGetMany1,
|
|
2717
|
+
inboundWebhookConfigsControllerUpdate0V1,
|
|
2718
|
+
inboundWebhookConfigsControllerUpdate1,
|
|
1854
2719
|
jsonBodySerializer,
|
|
1855
|
-
|
|
2720
|
+
keysControllerGetProvenanceCryptoKey0V1,
|
|
2721
|
+
keysControllerGetProvenanceCryptoKey1,
|
|
1856
2722
|
mergeHeaders,
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
-
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
2723
|
+
missionsControllerCreateMissions0V1,
|
|
2724
|
+
missionsControllerCreateMissions1,
|
|
2725
|
+
missionsControllerGetMission0V1,
|
|
2726
|
+
missionsControllerGetMission1,
|
|
2727
|
+
missionsControllerGetMissions0V1,
|
|
2728
|
+
missionsControllerGetMissions1,
|
|
2729
|
+
missionsControllerRepriceMissions0V1,
|
|
2730
|
+
missionsControllerRepriceMissions1,
|
|
2731
|
+
missionsControllerUpdateMissions0V1,
|
|
2732
|
+
missionsControllerUpdateMissions1,
|
|
1863
2733
|
parseWebhookEvent,
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
|
|
2734
|
+
protocolTriggersApiControllerTriggerMissionClose0V1,
|
|
2735
|
+
protocolTriggersApiControllerTriggerMissionClose1,
|
|
2736
|
+
protocolTriggersApiControllerTriggerPayout0V1,
|
|
2737
|
+
protocolTriggersApiControllerTriggerPayout1,
|
|
2738
|
+
quotesControllerCreateQuote0V1,
|
|
2739
|
+
quotesControllerCreateQuote1,
|
|
2740
|
+
quotesControllerGetQuote0V1,
|
|
2741
|
+
quotesControllerGetQuote1,
|
|
2742
|
+
schemaControllerGetEventSchema0V1,
|
|
2743
|
+
schemaControllerGetEventSchema1,
|
|
1867
2744
|
urlSearchParamsBodySerializer,
|
|
1868
|
-
|
|
1869
|
-
|
|
1870
|
-
|
|
1871
|
-
|
|
1872
|
-
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
|
|
1878
|
-
|
|
1879
|
-
|
|
2745
|
+
vaultsControllerCreateVaults0V1,
|
|
2746
|
+
vaultsControllerCreateVaults1,
|
|
2747
|
+
webhooksControllerCreate0V1,
|
|
2748
|
+
webhooksControllerCreate1,
|
|
2749
|
+
webhooksControllerDelete0V1,
|
|
2750
|
+
webhooksControllerDelete1,
|
|
2751
|
+
webhooksControllerGet0V1,
|
|
2752
|
+
webhooksControllerGet1,
|
|
2753
|
+
webhooksControllerGetMany0V1,
|
|
2754
|
+
webhooksControllerGetMany1,
|
|
2755
|
+
webhooksControllerGetStatus0V1,
|
|
2756
|
+
webhooksControllerGetStatus1,
|
|
2757
|
+
webhooksControllerRegenerateSecret0V1,
|
|
2758
|
+
webhooksControllerRegenerateSecret1,
|
|
2759
|
+
webhooksControllerTest0V1,
|
|
2760
|
+
webhooksControllerTest1,
|
|
2761
|
+
webhooksControllerUpdate0V1,
|
|
2762
|
+
webhooksControllerUpdate1,
|
|
2763
|
+
zonesControllerCreateZone0V1,
|
|
2764
|
+
zonesControllerCreateZone1,
|
|
2765
|
+
zonesControllerDeleteZone0V1,
|
|
2766
|
+
zonesControllerDeleteZone1,
|
|
2767
|
+
zonesControllerUpdateZone0V1,
|
|
2768
|
+
zonesControllerUpdateZone1
|
|
1880
2769
|
};
|