@mittwald/api-client 4.207.0 → 4.209.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 +64 -62
- package/dist/esm/generated/v2/descriptors.js +210 -204
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +167 -155
- package/dist/types/generated/v2/client.d.ts +1540 -1401
- package/dist/types/generated/v2/descriptors.d.ts +71 -69
- package/dist/types/generated/v2/types.d.ts +6644 -6564
- package/dist/types/version.d.ts +1 -1
- package/package.json +2 -2
|
@@ -437,6 +437,10 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
437
437
|
getServiceLogs: (conf: {
|
|
438
438
|
stackId: string;
|
|
439
439
|
serviceId: string;
|
|
440
|
+
queryParameters?: {
|
|
441
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
442
|
+
tail?: number | undefined;
|
|
443
|
+
} | undefined;
|
|
440
444
|
headers?: {
|
|
441
445
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
442
446
|
"x-access-token"?: string | undefined;
|
|
@@ -886,26 +890,21 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
886
890
|
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
887
891
|
url?: string | undefined;
|
|
888
892
|
}>;
|
|
889
|
-
/** List
|
|
890
|
-
|
|
893
|
+
/** List incoming Invoices of a Contributor. */
|
|
894
|
+
contributorListIncomingInvoices: (conf: {
|
|
891
895
|
contributorId: string;
|
|
892
896
|
queryParameters?: {
|
|
893
897
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
894
|
-
|
|
895
|
-
|
|
898
|
+
limit?: number | undefined;
|
|
899
|
+
skip?: number | undefined;
|
|
900
|
+
page?: number | undefined;
|
|
901
|
+
sort?: "invoiceNumber"[] | undefined;
|
|
902
|
+
order?: ("asc" | "desc")[] | undefined;
|
|
896
903
|
} | undefined;
|
|
897
904
|
headers?: {
|
|
898
905
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
899
906
|
"x-access-token"?: string | undefined;
|
|
900
907
|
} | 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
|
-
headers?: {
|
|
906
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
907
|
-
"x-access-token"?: string | undefined;
|
|
908
|
-
} | undefined;
|
|
909
908
|
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
910
909
|
currency: string;
|
|
911
910
|
customerId: string;
|
|
@@ -947,28 +946,86 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
947
946
|
accessToken: string;
|
|
948
947
|
expiresAt: string;
|
|
949
948
|
}>;
|
|
950
|
-
/**
|
|
951
|
-
|
|
949
|
+
/** Get all open extension orders for given customer */
|
|
950
|
+
extensionGetCustomerExtensionInstanceOrders: (conf: {
|
|
951
|
+
customerId: string;
|
|
952
|
+
headers?: {
|
|
953
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
954
|
+
"x-access-token"?: string | undefined;
|
|
955
|
+
} | undefined;
|
|
956
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
957
|
+
extensionId?: string;
|
|
958
|
+
}[]>;
|
|
959
|
+
/** Get the Contract Strategy of an Extension Instance */
|
|
960
|
+
extensionGetExtensionInstanceContract: (conf: {
|
|
961
|
+
extensionInstanceId: string;
|
|
952
962
|
headers?: {
|
|
953
963
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
954
964
|
"x-access-token"?: string | undefined;
|
|
955
965
|
} | undefined;
|
|
966
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
967
|
+
currentPrice?: number | undefined;
|
|
968
|
+
interactionDeadline?: string | undefined;
|
|
969
|
+
interactionRequired: boolean;
|
|
970
|
+
status: "notStarted" | "pending" | "active" | "terminationPending";
|
|
971
|
+
terminationTargetDate?: string | undefined;
|
|
972
|
+
}>;
|
|
973
|
+
/** Get all open extension orders for given project */
|
|
974
|
+
extensionGetProjectExtensionInstanceOrders: (conf: {
|
|
975
|
+
projectId: string;
|
|
976
|
+
headers?: {
|
|
977
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
978
|
+
"x-access-token"?: string | undefined;
|
|
979
|
+
} | undefined;
|
|
980
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
981
|
+
extensionId?: string;
|
|
982
|
+
}[]>;
|
|
983
|
+
/** Get payment method details */
|
|
984
|
+
customerGetPaymentMethod: (conf: {
|
|
985
|
+
customerId: string;
|
|
986
|
+
headers?: {
|
|
987
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
988
|
+
"x-access-token"?: string | undefined;
|
|
989
|
+
} | undefined;
|
|
990
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
991
|
+
cardDetails?: {
|
|
992
|
+
brand: string;
|
|
993
|
+
last4: string;
|
|
994
|
+
} | undefined;
|
|
995
|
+
}>;
|
|
996
|
+
/** List ContractPartners of the contributor. */
|
|
997
|
+
contributorListContractPartnersOfContributor: (conf: {
|
|
998
|
+
contributorId: string;
|
|
956
999
|
queryParameters?: {
|
|
957
1000
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
958
|
-
context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
|
|
959
|
-
contextId?: string | undefined;
|
|
960
1001
|
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;
|
|
1002
|
+
extensionInstanceId?: string | undefined;
|
|
967
1003
|
} | undefined;
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
1004
|
+
headers?: {
|
|
1005
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1006
|
+
"x-access-token"?: string | undefined;
|
|
1007
|
+
} | undefined;
|
|
1008
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContractPartner[]>;
|
|
1009
|
+
/** Get the public key to verify the webhook signature. */
|
|
1010
|
+
extensionGetPublicKey: (conf: {
|
|
1011
|
+
serial: string;
|
|
1012
|
+
queryParameters?: {
|
|
1013
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1014
|
+
purpose?: "webhook" | "session_token" | undefined;
|
|
1015
|
+
format?: "raw" | "spki" | undefined;
|
|
1016
|
+
} | undefined;
|
|
1017
|
+
headers?: {
|
|
1018
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1019
|
+
} | undefined;
|
|
1020
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
1021
|
+
algorithm: string;
|
|
1022
|
+
key: string;
|
|
1023
|
+
serial: string;
|
|
1024
|
+
}>;
|
|
1025
|
+
/** Get the ExtensionInstance of a specific customer and extension, if existing. */
|
|
1026
|
+
extensionGetExtensionInstanceForCustomer: (conf: {
|
|
1027
|
+
customerId: string;
|
|
1028
|
+
extensionId: string;
|
|
972
1029
|
headers?: {
|
|
973
1030
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
974
1031
|
"x-access-token"?: string | undefined;
|
|
@@ -992,53 +1049,18 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
992
1049
|
pendingInstallation: boolean;
|
|
993
1050
|
pendingRemoval: boolean;
|
|
994
1051
|
}>;
|
|
995
|
-
/**
|
|
996
|
-
|
|
997
|
-
contributorId: string;
|
|
998
|
-
extensionId: string;
|
|
1052
|
+
/** List Contributors. */
|
|
1053
|
+
extensionListContributors: (conf?: {
|
|
999
1054
|
headers?: {
|
|
1000
1055
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1001
|
-
"x-access-token"?: string | undefined;
|
|
1002
|
-
} | undefined;
|
|
1003
|
-
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
1004
|
-
assets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset[];
|
|
1005
|
-
backendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponents | undefined;
|
|
1006
|
-
blocked?: boolean | undefined;
|
|
1007
|
-
context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
|
|
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
1056
|
} | undefined;
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
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 | {};
|
|
1057
|
+
queryParameters?: {
|
|
1058
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1059
|
+
limit?: number | undefined;
|
|
1060
|
+
skip?: number | undefined;
|
|
1061
|
+
page?: number | undefined;
|
|
1028
1062
|
} | 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
|
-
}>;
|
|
1063
|
+
} | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributor[]>;
|
|
1042
1064
|
/** Get a Contributor. */
|
|
1043
1065
|
extensionGetContributor: (conf: {
|
|
1044
1066
|
contributorId: string;
|
|
@@ -1046,33 +1068,24 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1046
1068
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1047
1069
|
} | undefined;
|
|
1048
1070
|
}) => 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;
|
|
1071
|
+
/** List Scopes. */
|
|
1072
|
+
extensionListScopes: (conf?: {
|
|
1052
1073
|
headers?: {
|
|
1053
1074
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1054
|
-
"x-access-token"?: string | undefined;
|
|
1055
1075
|
} | undefined;
|
|
1056
|
-
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
1057
|
-
|
|
1076
|
+
} | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
1077
|
+
name: string;
|
|
1058
1078
|
}[]>;
|
|
1059
|
-
/** Get
|
|
1060
|
-
|
|
1061
|
-
|
|
1079
|
+
/** Get an Extension. */
|
|
1080
|
+
extensionGetExtension: (conf: {
|
|
1081
|
+
extensionId: string;
|
|
1062
1082
|
headers?: {
|
|
1063
1083
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1064
|
-
"x-access-token"?: string | undefined;
|
|
1065
1084
|
} | 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;
|
|
1085
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<import("@mittwald/api-client-commons").Simplify<import("./types.js").MittwaldAPIV2.Paths.V2ExtensionsExtensionId.Get.Responses.$200.Content.ApplicationJson>>;
|
|
1086
|
+
/** Get the ExtensionInstance of a specific project and extension, if existing. */
|
|
1087
|
+
extensionGetExtensionInstanceForProject: (conf: {
|
|
1088
|
+
projectId: string;
|
|
1076
1089
|
extensionId: string;
|
|
1077
1090
|
headers?: {
|
|
1078
1091
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
@@ -1097,10 +1110,9 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1097
1110
|
pendingInstallation: boolean;
|
|
1098
1111
|
pendingRemoval: boolean;
|
|
1099
1112
|
}>;
|
|
1100
|
-
/** Get
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
extensionId: string;
|
|
1113
|
+
/** Get an ExtensionInstance. */
|
|
1114
|
+
extensionGetExtensionInstance: (conf: {
|
|
1115
|
+
extensionInstanceId: string;
|
|
1104
1116
|
headers?: {
|
|
1105
1117
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1106
1118
|
"x-access-token"?: string | undefined;
|
|
@@ -1124,51 +1136,86 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1124
1136
|
pendingInstallation: boolean;
|
|
1125
1137
|
pendingRemoval: boolean;
|
|
1126
1138
|
}>;
|
|
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;
|
|
1139
|
+
/** List ExtensionInstances. */
|
|
1140
|
+
extensionListExtensionInstances: (conf?: {
|
|
1137
1141
|
headers?: {
|
|
1138
1142
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1139
1143
|
"x-access-token"?: string | undefined;
|
|
1140
1144
|
} | 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
1145
|
queryParameters?: {
|
|
1148
1146
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1149
|
-
|
|
1150
|
-
|
|
1147
|
+
context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
|
|
1148
|
+
contextId?: string | undefined;
|
|
1149
|
+
extensionId?: string | undefined;
|
|
1150
|
+
searchTerm?: string | undefined;
|
|
1151
|
+
limit?: number | undefined;
|
|
1152
|
+
skip?: number | undefined;
|
|
1153
|
+
page?: number | undefined;
|
|
1154
|
+
sort?: ("createdAt" | "extensionId" | "extensionName")[] | undefined;
|
|
1155
|
+
order?: ("asc" | "desc")[] | undefined;
|
|
1151
1156
|
} | undefined;
|
|
1157
|
+
} | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstance[]>;
|
|
1158
|
+
/** Get Extension of own contributor. */
|
|
1159
|
+
extensionGetOwnExtension: (conf: {
|
|
1160
|
+
contributorId: string;
|
|
1161
|
+
extensionId: string;
|
|
1152
1162
|
headers?: {
|
|
1153
1163
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1164
|
+
"x-access-token"?: string | undefined;
|
|
1154
1165
|
} | undefined;
|
|
1155
1166
|
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1167
|
+
assets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset[];
|
|
1168
|
+
backendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponents | undefined;
|
|
1169
|
+
blocked?: boolean | undefined;
|
|
1170
|
+
context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
|
|
1171
|
+
contributorId: string;
|
|
1172
|
+
deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
|
|
1173
|
+
description?: string | undefined;
|
|
1174
|
+
detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
|
|
1175
|
+
disabled?: boolean | undefined;
|
|
1176
|
+
externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
|
|
1177
|
+
frontendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
|
|
1178
|
+
frontendFragments?: {
|
|
1179
|
+
[k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
|
|
1180
|
+
} | undefined;
|
|
1181
|
+
functional: boolean;
|
|
1182
|
+
id: string;
|
|
1183
|
+
logoRefId?: string | undefined;
|
|
1184
|
+
name: string;
|
|
1185
|
+
pricing?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricingStrategy | import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricePlanStrategy) | undefined;
|
|
1186
|
+
published: boolean;
|
|
1187
|
+
requestedChanges?: {
|
|
1188
|
+
context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
|
|
1189
|
+
scopes?: string[];
|
|
1190
|
+
webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | {};
|
|
1164
1191
|
} | undefined;
|
|
1192
|
+
scopes?: string[] | undefined;
|
|
1193
|
+
secrets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionSecret[];
|
|
1194
|
+
state?: "enabled" | "blocked" | "disabled" | undefined;
|
|
1195
|
+
statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
|
|
1196
|
+
subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
|
|
1197
|
+
support?: (import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta & {
|
|
1198
|
+
inherited: boolean;
|
|
1199
|
+
}) | undefined;
|
|
1200
|
+
tags?: string[] | undefined;
|
|
1201
|
+
verificationRequested: boolean;
|
|
1202
|
+
verified: boolean;
|
|
1203
|
+
webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
|
|
1204
|
+
}>;
|
|
1205
|
+
/** List Extensions of own contributor. */
|
|
1206
|
+
extensionListOwnExtensions: (conf: {
|
|
1207
|
+
contributorId: string;
|
|
1165
1208
|
queryParameters?: {
|
|
1166
1209
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1167
1210
|
limit?: number | undefined;
|
|
1168
1211
|
skip?: number | undefined;
|
|
1169
1212
|
page?: number | undefined;
|
|
1170
1213
|
} | undefined;
|
|
1171
|
-
|
|
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<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceOwnExtension[]>;
|
|
1172
1219
|
/** List Extensions. */
|
|
1173
1220
|
extensionListExtensions: (conf?: {
|
|
1174
1221
|
headers?: {
|
|
@@ -1186,41 +1233,6 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1186
1233
|
order?: "asc" | "desc" | undefined;
|
|
1187
1234
|
} | undefined;
|
|
1188
1235
|
} | 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
1236
|
};
|
|
1225
1237
|
declare const buildConversationApi: (baseClient: MittwaldAPIV2Client) => {
|
|
1226
1238
|
/** Get all conversation the authenticated user has created or has access to. */
|