@mittwald/api-client 4.207.0 → 4.208.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/generated/v2/client-react.js +22 -22
- package/dist/esm/generated/v2/client.js +62 -62
- package/dist/esm/generated/v2/descriptors.js +204 -204
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +163 -155
- package/dist/types/generated/v2/client.d.ts +1420 -1392
- package/dist/types/generated/v2/descriptors.d.ts +68 -68
- package/dist/types/generated/v2/types.d.ts +5310 -5287
- package/dist/types/version.d.ts +1 -1
- package/package.json +2 -2
|
@@ -886,22 +886,17 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
886
886
|
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
887
887
|
url?: string | undefined;
|
|
888
888
|
}>;
|
|
889
|
-
/** List
|
|
890
|
-
|
|
889
|
+
/** List incoming Invoices of a Contributor. */
|
|
890
|
+
contributorListIncomingInvoices: (conf: {
|
|
891
891
|
contributorId: string;
|
|
892
892
|
queryParameters?: {
|
|
893
893
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
"x-access-token"?: string | undefined;
|
|
894
|
+
limit?: number | undefined;
|
|
895
|
+
skip?: number | undefined;
|
|
896
|
+
page?: number | undefined;
|
|
897
|
+
sort?: "invoiceNumber"[] | undefined;
|
|
898
|
+
order?: ("asc" | "desc")[] | undefined;
|
|
900
899
|
} | undefined;
|
|
901
|
-
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContractPartner[]>;
|
|
902
|
-
/** List incoming Invoices of a Contributor. */
|
|
903
|
-
contributorListIncomingInvoices: (conf: {
|
|
904
|
-
contributorId: string;
|
|
905
900
|
headers?: {
|
|
906
901
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
907
902
|
"x-access-token"?: string | undefined;
|
|
@@ -947,28 +942,86 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
947
942
|
accessToken: string;
|
|
948
943
|
expiresAt: string;
|
|
949
944
|
}>;
|
|
950
|
-
/**
|
|
951
|
-
|
|
945
|
+
/** Get all open extension orders for given customer */
|
|
946
|
+
extensionGetCustomerExtensionInstanceOrders: (conf: {
|
|
947
|
+
customerId: string;
|
|
948
|
+
headers?: {
|
|
949
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
950
|
+
"x-access-token"?: string | undefined;
|
|
951
|
+
} | undefined;
|
|
952
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
953
|
+
extensionId?: string;
|
|
954
|
+
}[]>;
|
|
955
|
+
/** Get the Contract Strategy of an Extension Instance */
|
|
956
|
+
extensionGetExtensionInstanceContract: (conf: {
|
|
957
|
+
extensionInstanceId: string;
|
|
958
|
+
headers?: {
|
|
959
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
960
|
+
"x-access-token"?: string | undefined;
|
|
961
|
+
} | undefined;
|
|
962
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
963
|
+
currentPrice?: number | undefined;
|
|
964
|
+
interactionDeadline?: string | undefined;
|
|
965
|
+
interactionRequired: boolean;
|
|
966
|
+
status: "notStarted" | "pending" | "active" | "terminationPending";
|
|
967
|
+
terminationTargetDate?: string | undefined;
|
|
968
|
+
}>;
|
|
969
|
+
/** Get all open extension orders for given project */
|
|
970
|
+
extensionGetProjectExtensionInstanceOrders: (conf: {
|
|
971
|
+
projectId: string;
|
|
972
|
+
headers?: {
|
|
973
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
974
|
+
"x-access-token"?: string | undefined;
|
|
975
|
+
} | undefined;
|
|
976
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
977
|
+
extensionId?: string;
|
|
978
|
+
}[]>;
|
|
979
|
+
/** Get payment method details */
|
|
980
|
+
customerGetPaymentMethod: (conf: {
|
|
981
|
+
customerId: string;
|
|
952
982
|
headers?: {
|
|
953
983
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
954
984
|
"x-access-token"?: string | undefined;
|
|
955
985
|
} | undefined;
|
|
986
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
987
|
+
cardDetails?: {
|
|
988
|
+
brand: string;
|
|
989
|
+
last4: string;
|
|
990
|
+
} | undefined;
|
|
991
|
+
}>;
|
|
992
|
+
/** List ContractPartners of the contributor. */
|
|
993
|
+
contributorListContractPartnersOfContributor: (conf: {
|
|
994
|
+
contributorId: string;
|
|
956
995
|
queryParameters?: {
|
|
957
996
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
958
|
-
context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
|
|
959
|
-
contextId?: string | undefined;
|
|
960
997
|
extensionId?: string | undefined;
|
|
961
|
-
|
|
962
|
-
limit?: number | undefined;
|
|
963
|
-
skip?: number | undefined;
|
|
964
|
-
page?: number | undefined;
|
|
965
|
-
sort?: ("createdAt" | "extensionId" | "extensionName")[] | undefined;
|
|
966
|
-
order?: ("asc" | "desc")[] | undefined;
|
|
998
|
+
extensionInstanceId?: string | undefined;
|
|
967
999
|
} | undefined;
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
1000
|
+
headers?: {
|
|
1001
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1002
|
+
"x-access-token"?: string | undefined;
|
|
1003
|
+
} | undefined;
|
|
1004
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContractPartner[]>;
|
|
1005
|
+
/** Get the public key to verify the webhook signature. */
|
|
1006
|
+
extensionGetPublicKey: (conf: {
|
|
1007
|
+
serial: string;
|
|
1008
|
+
queryParameters?: {
|
|
1009
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1010
|
+
purpose?: "webhook" | "session_token" | undefined;
|
|
1011
|
+
format?: "raw" | "spki" | undefined;
|
|
1012
|
+
} | undefined;
|
|
1013
|
+
headers?: {
|
|
1014
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1015
|
+
} | undefined;
|
|
1016
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
1017
|
+
algorithm: string;
|
|
1018
|
+
key: string;
|
|
1019
|
+
serial: string;
|
|
1020
|
+
}>;
|
|
1021
|
+
/** Get the ExtensionInstance of a specific customer and extension, if existing. */
|
|
1022
|
+
extensionGetExtensionInstanceForCustomer: (conf: {
|
|
1023
|
+
customerId: string;
|
|
1024
|
+
extensionId: string;
|
|
972
1025
|
headers?: {
|
|
973
1026
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
974
1027
|
"x-access-token"?: string | undefined;
|
|
@@ -992,53 +1045,18 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
992
1045
|
pendingInstallation: boolean;
|
|
993
1046
|
pendingRemoval: boolean;
|
|
994
1047
|
}>;
|
|
995
|
-
/**
|
|
996
|
-
|
|
997
|
-
contributorId: string;
|
|
998
|
-
extensionId: string;
|
|
1048
|
+
/** List Contributors. */
|
|
1049
|
+
extensionListContributors: (conf?: {
|
|
999
1050
|
headers?: {
|
|
1000
1051
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1001
|
-
"x-access-token"?: string | undefined;
|
|
1002
1052
|
} | undefined;
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
contributorId: string;
|
|
1009
|
-
deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
|
|
1010
|
-
description?: string | undefined;
|
|
1011
|
-
detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
|
|
1012
|
-
disabled?: boolean | undefined;
|
|
1013
|
-
externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
|
|
1014
|
-
frontendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
|
|
1015
|
-
frontendFragments?: {
|
|
1016
|
-
[k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
|
|
1017
|
-
} | undefined;
|
|
1018
|
-
functional: boolean;
|
|
1019
|
-
id: string;
|
|
1020
|
-
logoRefId?: string | undefined;
|
|
1021
|
-
name: string;
|
|
1022
|
-
pricing?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricingStrategy | import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy) | undefined;
|
|
1023
|
-
published: boolean;
|
|
1024
|
-
requestedChanges?: {
|
|
1025
|
-
context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
|
|
1026
|
-
scopes?: string[];
|
|
1027
|
-
webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | {};
|
|
1053
|
+
queryParameters?: {
|
|
1054
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1055
|
+
limit?: number | undefined;
|
|
1056
|
+
skip?: number | undefined;
|
|
1057
|
+
page?: number | undefined;
|
|
1028
1058
|
} | undefined;
|
|
1029
|
-
|
|
1030
|
-
secrets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionSecret[];
|
|
1031
|
-
state?: "enabled" | "blocked" | "disabled" | undefined;
|
|
1032
|
-
statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
|
|
1033
|
-
subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
|
|
1034
|
-
support?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta & {
|
|
1035
|
-
inherited: boolean;
|
|
1036
|
-
}) | undefined;
|
|
1037
|
-
tags?: string[] | undefined;
|
|
1038
|
-
verificationRequested: boolean;
|
|
1039
|
-
verified: boolean;
|
|
1040
|
-
webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
|
|
1041
|
-
}>;
|
|
1059
|
+
} | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributor[]>;
|
|
1042
1060
|
/** Get a Contributor. */
|
|
1043
1061
|
extensionGetContributor: (conf: {
|
|
1044
1062
|
contributorId: string;
|
|
@@ -1046,33 +1064,24 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1046
1064
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1047
1065
|
} | undefined;
|
|
1048
1066
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("@mittwald/api-client-commons").Simplify<import("./types.js").MittwaldAPIV2.Paths.V2ContributorsContributorId.Get.Responses.$200.Content.ApplicationJson>>;
|
|
1049
|
-
/**
|
|
1050
|
-
|
|
1051
|
-
customerId: string;
|
|
1067
|
+
/** List Scopes. */
|
|
1068
|
+
extensionListScopes: (conf?: {
|
|
1052
1069
|
headers?: {
|
|
1053
1070
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1054
|
-
"x-access-token"?: string | undefined;
|
|
1055
1071
|
} | undefined;
|
|
1056
|
-
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
1057
|
-
|
|
1072
|
+
} | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
1073
|
+
name: string;
|
|
1058
1074
|
}[]>;
|
|
1059
|
-
/** Get
|
|
1060
|
-
|
|
1061
|
-
|
|
1075
|
+
/** Get an Extension. */
|
|
1076
|
+
extensionGetExtension: (conf: {
|
|
1077
|
+
extensionId: string;
|
|
1062
1078
|
headers?: {
|
|
1063
1079
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1064
|
-
"x-access-token"?: string | undefined;
|
|
1065
1080
|
} | undefined;
|
|
1066
|
-
}) => import("@mittwald/react-use-promise").AsyncResource<
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
status: "notStarted" | "pending" | "active" | "terminationPending";
|
|
1071
|
-
terminationTargetDate?: string | undefined;
|
|
1072
|
-
}>;
|
|
1073
|
-
/** Get the ExtensionInstance of a specific customer and extension, if existing. */
|
|
1074
|
-
extensionGetExtensionInstanceForCustomer: (conf: {
|
|
1075
|
-
customerId: string;
|
|
1081
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<import("@mittwald/api-client-commons").Simplify<import("./types.js").MittwaldAPIV2.Paths.V2ExtensionsExtensionId.Get.Responses.$200.Content.ApplicationJson>>;
|
|
1082
|
+
/** Get the ExtensionInstance of a specific project and extension, if existing. */
|
|
1083
|
+
extensionGetExtensionInstanceForProject: (conf: {
|
|
1084
|
+
projectId: string;
|
|
1076
1085
|
extensionId: string;
|
|
1077
1086
|
headers?: {
|
|
1078
1087
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
@@ -1097,10 +1106,9 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1097
1106
|
pendingInstallation: boolean;
|
|
1098
1107
|
pendingRemoval: boolean;
|
|
1099
1108
|
}>;
|
|
1100
|
-
/** Get
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
extensionId: string;
|
|
1109
|
+
/** Get an ExtensionInstance. */
|
|
1110
|
+
extensionGetExtensionInstance: (conf: {
|
|
1111
|
+
extensionInstanceId: string;
|
|
1104
1112
|
headers?: {
|
|
1105
1113
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1106
1114
|
"x-access-token"?: string | undefined;
|
|
@@ -1124,51 +1132,86 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1124
1132
|
pendingInstallation: boolean;
|
|
1125
1133
|
pendingRemoval: boolean;
|
|
1126
1134
|
}>;
|
|
1127
|
-
/**
|
|
1128
|
-
|
|
1129
|
-
extensionId: string;
|
|
1130
|
-
headers?: {
|
|
1131
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1132
|
-
} | undefined;
|
|
1133
|
-
}) => import("@mittwald/react-use-promise").AsyncResource<import("@mittwald/api-client-commons").Simplify<import("./types.js").MittwaldAPIV2.Paths.V2ExtensionsExtensionId.Get.Responses.$200.Content.ApplicationJson>>;
|
|
1134
|
-
/** Get all open extension orders for given project */
|
|
1135
|
-
extensionGetProjectExtensionInstanceOrders: (conf: {
|
|
1136
|
-
projectId: string;
|
|
1135
|
+
/** List ExtensionInstances. */
|
|
1136
|
+
extensionListExtensionInstances: (conf?: {
|
|
1137
1137
|
headers?: {
|
|
1138
1138
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1139
1139
|
"x-access-token"?: string | undefined;
|
|
1140
1140
|
} | undefined;
|
|
1141
|
-
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
1142
|
-
extensionId?: string;
|
|
1143
|
-
}[]>;
|
|
1144
|
-
/** Get the public key to verify the webhook signature. */
|
|
1145
|
-
extensionGetPublicKey: (conf: {
|
|
1146
|
-
serial: string;
|
|
1147
1141
|
queryParameters?: {
|
|
1148
1142
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1149
|
-
|
|
1150
|
-
|
|
1143
|
+
context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
|
|
1144
|
+
contextId?: string | undefined;
|
|
1145
|
+
extensionId?: string | undefined;
|
|
1146
|
+
searchTerm?: string | undefined;
|
|
1147
|
+
limit?: number | undefined;
|
|
1148
|
+
skip?: number | undefined;
|
|
1149
|
+
page?: number | undefined;
|
|
1150
|
+
sort?: ("createdAt" | "extensionId" | "extensionName")[] | undefined;
|
|
1151
|
+
order?: ("asc" | "desc")[] | undefined;
|
|
1151
1152
|
} | undefined;
|
|
1153
|
+
} | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstance[]>;
|
|
1154
|
+
/** Get Extension of own contributor. */
|
|
1155
|
+
extensionGetOwnExtension: (conf: {
|
|
1156
|
+
contributorId: string;
|
|
1157
|
+
extensionId: string;
|
|
1152
1158
|
headers?: {
|
|
1153
1159
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1160
|
+
"x-access-token"?: string | undefined;
|
|
1154
1161
|
} | undefined;
|
|
1155
1162
|
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1163
|
+
assets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset[];
|
|
1164
|
+
backendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponents | undefined;
|
|
1165
|
+
blocked?: boolean | undefined;
|
|
1166
|
+
context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
|
|
1167
|
+
contributorId: string;
|
|
1168
|
+
deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
|
|
1169
|
+
description?: string | undefined;
|
|
1170
|
+
detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
|
|
1171
|
+
disabled?: boolean | undefined;
|
|
1172
|
+
externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
|
|
1173
|
+
frontendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
|
|
1174
|
+
frontendFragments?: {
|
|
1175
|
+
[k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
|
|
1176
|
+
} | undefined;
|
|
1177
|
+
functional: boolean;
|
|
1178
|
+
id: string;
|
|
1179
|
+
logoRefId?: string | undefined;
|
|
1180
|
+
name: string;
|
|
1181
|
+
pricing?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricingStrategy | import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy) | undefined;
|
|
1182
|
+
published: boolean;
|
|
1183
|
+
requestedChanges?: {
|
|
1184
|
+
context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
|
|
1185
|
+
scopes?: string[];
|
|
1186
|
+
webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | {};
|
|
1164
1187
|
} | undefined;
|
|
1188
|
+
scopes?: string[] | undefined;
|
|
1189
|
+
secrets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionSecret[];
|
|
1190
|
+
state?: "enabled" | "blocked" | "disabled" | undefined;
|
|
1191
|
+
statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
|
|
1192
|
+
subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
|
|
1193
|
+
support?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta & {
|
|
1194
|
+
inherited: boolean;
|
|
1195
|
+
}) | undefined;
|
|
1196
|
+
tags?: string[] | undefined;
|
|
1197
|
+
verificationRequested: boolean;
|
|
1198
|
+
verified: boolean;
|
|
1199
|
+
webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
|
|
1200
|
+
}>;
|
|
1201
|
+
/** List Extensions of own contributor. */
|
|
1202
|
+
extensionListOwnExtensions: (conf: {
|
|
1203
|
+
contributorId: string;
|
|
1165
1204
|
queryParameters?: {
|
|
1166
1205
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1167
1206
|
limit?: number | undefined;
|
|
1168
1207
|
skip?: number | undefined;
|
|
1169
1208
|
page?: number | undefined;
|
|
1170
1209
|
} | undefined;
|
|
1171
|
-
|
|
1210
|
+
headers?: {
|
|
1211
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1212
|
+
"x-access-token"?: string | undefined;
|
|
1213
|
+
} | undefined;
|
|
1214
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceOwnExtension[]>;
|
|
1172
1215
|
/** List Extensions. */
|
|
1173
1216
|
extensionListExtensions: (conf?: {
|
|
1174
1217
|
headers?: {
|
|
@@ -1186,41 +1229,6 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1186
1229
|
order?: "asc" | "desc" | undefined;
|
|
1187
1230
|
} | undefined;
|
|
1188
1231
|
} | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtension[]>;
|
|
1189
|
-
/** List Extensions of own contributor. */
|
|
1190
|
-
extensionListOwnExtensions: (conf: {
|
|
1191
|
-
contributorId: string;
|
|
1192
|
-
queryParameters?: {
|
|
1193
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1194
|
-
limit?: number | undefined;
|
|
1195
|
-
skip?: number | undefined;
|
|
1196
|
-
page?: number | undefined;
|
|
1197
|
-
} | undefined;
|
|
1198
|
-
headers?: {
|
|
1199
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1200
|
-
"x-access-token"?: string | undefined;
|
|
1201
|
-
} | undefined;
|
|
1202
|
-
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceOwnExtension[]>;
|
|
1203
|
-
/** List Scopes. */
|
|
1204
|
-
extensionListScopes: (conf?: {
|
|
1205
|
-
headers?: {
|
|
1206
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1207
|
-
} | undefined;
|
|
1208
|
-
} | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
1209
|
-
name: string;
|
|
1210
|
-
}[]>;
|
|
1211
|
-
/** Get payment method details */
|
|
1212
|
-
customerGetPaymentMethod: (conf: {
|
|
1213
|
-
customerId: string;
|
|
1214
|
-
headers?: {
|
|
1215
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1216
|
-
"x-access-token"?: string | undefined;
|
|
1217
|
-
} | undefined;
|
|
1218
|
-
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
1219
|
-
cardDetails?: {
|
|
1220
|
-
brand: string;
|
|
1221
|
-
last4: string;
|
|
1222
|
-
} | undefined;
|
|
1223
|
-
}>;
|
|
1224
1232
|
};
|
|
1225
1233
|
declare const buildConversationApi: (baseClient: MittwaldAPIV2Client) => {
|
|
1226
1234
|
/** Get all conversation the authenticated user has created or has access to. */
|