@mittwald/api-client 4.84.0 → 4.85.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 +4 -4
- package/dist/esm/generated/v2/client.js +4 -4
- package/dist/esm/generated/v2/descriptors.js +12 -12
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +44 -44
- package/dist/types/generated/v2/client.d.ts +146 -146
- package/dist/types/generated/v2/descriptors.d.ts +4 -4
- package/dist/types/generated/v2/types.d.ts +88 -88
- package/dist/types/version.d.ts +1 -1
- package/package.json +2 -2
|
@@ -196,6 +196,10 @@ const buildMarketplaceApi = (baseClient) => ({
|
|
|
196
196
|
extensionGetExtensionInstance: new ApiCallAsyncResourceFactory(descriptors.extensionGetExtensionInstance, baseClient.marketplace.extensionGetExtensionInstance).getApiResource,
|
|
197
197
|
/** Get a Contributor. */
|
|
198
198
|
extensionGetContributor: new ApiCallAsyncResourceFactory(descriptors.extensionGetContributor, baseClient.marketplace.extensionGetContributor).getApiResource,
|
|
199
|
+
/** Get the ExtensionInstance of a specific customer and extension, if existing. */
|
|
200
|
+
extensionGetExtensionInstanceForCustomer: new ApiCallAsyncResourceFactory(descriptors.extensionGetExtensionInstanceForCustomer, baseClient.marketplace.extensionGetExtensionInstanceForCustomer).getApiResource,
|
|
201
|
+
/** Get the ExtensionInstance of a specific project and extension, if existing. */
|
|
202
|
+
extensionGetExtensionInstanceForProject: new ApiCallAsyncResourceFactory(descriptors.extensionGetExtensionInstanceForProject, baseClient.marketplace.extensionGetExtensionInstanceForProject).getApiResource,
|
|
199
203
|
/** Get an Extension. */
|
|
200
204
|
extensionGetExtension: new ApiCallAsyncResourceFactory(descriptors.extensionGetExtension, baseClient.marketplace.extensionGetExtension).getApiResource,
|
|
201
205
|
/** Get the public key to verify the webhook signature. */
|
|
@@ -204,10 +208,6 @@ const buildMarketplaceApi = (baseClient) => ({
|
|
|
204
208
|
extensionListContributors: new ApiCallAsyncResourceFactory(descriptors.extensionListContributors, baseClient.marketplace.extensionListContributors).getApiResource,
|
|
205
209
|
/** List Extensions. */
|
|
206
210
|
extensionListExtensions: new ApiCallAsyncResourceFactory(descriptors.extensionListExtensions, baseClient.marketplace.extensionListExtensions).getApiResource,
|
|
207
|
-
/** Get the ExtensionInstance of a specific customer and extension, if existing. */
|
|
208
|
-
extensionGetExtensionInstanceForCustomer: new ApiCallAsyncResourceFactory(descriptors.extensionGetExtensionInstanceForCustomer, baseClient.marketplace.extensionGetExtensionInstanceForCustomer).getApiResource,
|
|
209
|
-
/** Get the ExtensionInstance of a specific project and extension, if existing. */
|
|
210
|
-
extensionGetExtensionInstanceForProject: new ApiCallAsyncResourceFactory(descriptors.extensionGetExtensionInstanceForProject, baseClient.marketplace.extensionGetExtensionInstanceForProject).getApiResource,
|
|
211
211
|
});
|
|
212
212
|
const buildFileApi = (baseClient) => ({
|
|
213
213
|
/** Get a File's meta. */
|
|
@@ -172,6 +172,10 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
172
172
|
extensionEnableExtensionInstance: this.requestFunctionFactory(descriptors.extensionEnableExtensionInstance),
|
|
173
173
|
/** Get a Contributor. */
|
|
174
174
|
extensionGetContributor: this.requestFunctionFactory(descriptors.extensionGetContributor),
|
|
175
|
+
/** Get the ExtensionInstance of a specific customer and extension, if existing. */
|
|
176
|
+
extensionGetExtensionInstanceForCustomer: this.requestFunctionFactory(descriptors.extensionGetExtensionInstanceForCustomer),
|
|
177
|
+
/** Get the ExtensionInstance of a specific project and extension, if existing. */
|
|
178
|
+
extensionGetExtensionInstanceForProject: this.requestFunctionFactory(descriptors.extensionGetExtensionInstanceForProject),
|
|
175
179
|
/** Get an Extension. */
|
|
176
180
|
extensionGetExtension: this.requestFunctionFactory(descriptors.extensionGetExtension),
|
|
177
181
|
/** Get the public key to verify the webhook signature. */
|
|
@@ -180,10 +184,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
180
184
|
extensionListContributors: this.requestFunctionFactory(descriptors.extensionListContributors),
|
|
181
185
|
/** List Extensions. */
|
|
182
186
|
extensionListExtensions: this.requestFunctionFactory(descriptors.extensionListExtensions),
|
|
183
|
-
/** Get the ExtensionInstance of a specific customer and extension, if existing. */
|
|
184
|
-
extensionGetExtensionInstanceForCustomer: this.requestFunctionFactory(descriptors.extensionGetExtensionInstanceForCustomer),
|
|
185
|
-
/** Get the ExtensionInstance of a specific project and extension, if existing. */
|
|
186
|
-
extensionGetExtensionInstanceForProject: this.requestFunctionFactory(descriptors.extensionGetExtensionInstanceForProject),
|
|
187
187
|
};
|
|
188
188
|
/** The conversation API allows you to manage your support conversations. */
|
|
189
189
|
conversation = {
|
|
@@ -964,6 +964,18 @@ export const extensionGetContributor = {
|
|
|
964
964
|
method: "GET",
|
|
965
965
|
operationId: "extension-get-contributor",
|
|
966
966
|
};
|
|
967
|
+
/** Get the ExtensionInstance of a specific customer and extension, if existing. */
|
|
968
|
+
export const extensionGetExtensionInstanceForCustomer = {
|
|
969
|
+
path: "/v2/customers/{customerId}/extensions/{extensionId}",
|
|
970
|
+
method: "GET",
|
|
971
|
+
operationId: "extension-get-extension-instance-for-customer",
|
|
972
|
+
};
|
|
973
|
+
/** Get the ExtensionInstance of a specific project and extension, if existing. */
|
|
974
|
+
export const extensionGetExtensionInstanceForProject = {
|
|
975
|
+
path: "/v2/projects/{projectId}/extensions/{extensionId}",
|
|
976
|
+
method: "GET",
|
|
977
|
+
operationId: "extension-get-extension-instance-for-project",
|
|
978
|
+
};
|
|
967
979
|
/** Get an Extension. */
|
|
968
980
|
export const extensionGetExtension = {
|
|
969
981
|
path: "/v2/extensions/{extensionId}",
|
|
@@ -2026,15 +2038,3 @@ export const verificationVerifyCompany = {
|
|
|
2026
2038
|
method: "POST",
|
|
2027
2039
|
operationId: "verification-verify-company",
|
|
2028
2040
|
};
|
|
2029
|
-
/** Get the ExtensionInstance of a specific customer and extension, if existing. */
|
|
2030
|
-
export const extensionGetExtensionInstanceForCustomer = {
|
|
2031
|
-
path: "/v2/customers/{customerId}/extensions/{extensionId}",
|
|
2032
|
-
method: "GET",
|
|
2033
|
-
operationId: "extension-get-extension-instance-for-customer",
|
|
2034
|
-
};
|
|
2035
|
-
/** Get the ExtensionInstance of a specific project and extension, if existing. */
|
|
2036
|
-
export const extensionGetExtensionInstanceForProject = {
|
|
2037
|
-
path: "/v2/projects/{projectId}/extensions/{extensionId}",
|
|
2038
|
-
method: "GET",
|
|
2039
|
-
operationId: "extension-get-extension-instance-for-project",
|
|
2040
|
-
};
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.84.0';
|
|
@@ -1403,6 +1403,50 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1403
1403
|
state: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributorState;
|
|
1404
1404
|
url?: string | undefined;
|
|
1405
1405
|
}>;
|
|
1406
|
+
/** Get the ExtensionInstance of a specific customer and extension, if existing. */
|
|
1407
|
+
extensionGetExtensionInstanceForCustomer: (conf: {
|
|
1408
|
+
customerId: string;
|
|
1409
|
+
extensionId: string;
|
|
1410
|
+
headers?: {
|
|
1411
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1412
|
+
"x-access-token"?: string | undefined;
|
|
1413
|
+
} | undefined;
|
|
1414
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
1415
|
+
aggregateReference: {
|
|
1416
|
+
aggregate: string;
|
|
1417
|
+
domain: string;
|
|
1418
|
+
id: string;
|
|
1419
|
+
};
|
|
1420
|
+
consentedScopes: string[];
|
|
1421
|
+
createdAt?: string | undefined;
|
|
1422
|
+
disabled: boolean;
|
|
1423
|
+
extensionId: string;
|
|
1424
|
+
id: string;
|
|
1425
|
+
pendingInstallation: boolean;
|
|
1426
|
+
pendingRemoval: boolean;
|
|
1427
|
+
}>;
|
|
1428
|
+
/** Get the ExtensionInstance of a specific project and extension, if existing. */
|
|
1429
|
+
extensionGetExtensionInstanceForProject: (conf: {
|
|
1430
|
+
projectId: string;
|
|
1431
|
+
extensionId: string;
|
|
1432
|
+
headers?: {
|
|
1433
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1434
|
+
"x-access-token"?: string | undefined;
|
|
1435
|
+
} | undefined;
|
|
1436
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
1437
|
+
aggregateReference: {
|
|
1438
|
+
aggregate: string;
|
|
1439
|
+
domain: string;
|
|
1440
|
+
id: string;
|
|
1441
|
+
};
|
|
1442
|
+
consentedScopes: string[];
|
|
1443
|
+
createdAt?: string | undefined;
|
|
1444
|
+
disabled: boolean;
|
|
1445
|
+
extensionId: string;
|
|
1446
|
+
id: string;
|
|
1447
|
+
pendingInstallation: boolean;
|
|
1448
|
+
pendingRemoval: boolean;
|
|
1449
|
+
}>;
|
|
1406
1450
|
/** Get an Extension. */
|
|
1407
1451
|
extensionGetExtension: (conf: {
|
|
1408
1452
|
extensionId: string;
|
|
@@ -1468,50 +1512,6 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1468
1512
|
page?: number | undefined;
|
|
1469
1513
|
} | undefined;
|
|
1470
1514
|
} | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtension[]>;
|
|
1471
|
-
/** Get the ExtensionInstance of a specific customer and extension, if existing. */
|
|
1472
|
-
extensionGetExtensionInstanceForCustomer: (conf: {
|
|
1473
|
-
customerId: string;
|
|
1474
|
-
extensionId: string;
|
|
1475
|
-
headers?: {
|
|
1476
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1477
|
-
"x-access-token"?: string | undefined;
|
|
1478
|
-
} | undefined;
|
|
1479
|
-
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
1480
|
-
aggregateReference: {
|
|
1481
|
-
aggregate: string;
|
|
1482
|
-
domain: string;
|
|
1483
|
-
id: string;
|
|
1484
|
-
};
|
|
1485
|
-
consentedScopes: string[];
|
|
1486
|
-
createdAt?: string | undefined;
|
|
1487
|
-
disabled: boolean;
|
|
1488
|
-
extensionId: string;
|
|
1489
|
-
id: string;
|
|
1490
|
-
pendingInstallation: boolean;
|
|
1491
|
-
pendingRemoval: boolean;
|
|
1492
|
-
}>;
|
|
1493
|
-
/** Get the ExtensionInstance of a specific project and extension, if existing. */
|
|
1494
|
-
extensionGetExtensionInstanceForProject: (conf: {
|
|
1495
|
-
projectId: string;
|
|
1496
|
-
extensionId: string;
|
|
1497
|
-
headers?: {
|
|
1498
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1499
|
-
"x-access-token"?: string | undefined;
|
|
1500
|
-
} | undefined;
|
|
1501
|
-
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
1502
|
-
aggregateReference: {
|
|
1503
|
-
aggregate: string;
|
|
1504
|
-
domain: string;
|
|
1505
|
-
id: string;
|
|
1506
|
-
};
|
|
1507
|
-
consentedScopes: string[];
|
|
1508
|
-
createdAt?: string | undefined;
|
|
1509
|
-
disabled: boolean;
|
|
1510
|
-
extensionId: string;
|
|
1511
|
-
id: string;
|
|
1512
|
-
pendingInstallation: boolean;
|
|
1513
|
-
pendingRemoval: boolean;
|
|
1514
|
-
}>;
|
|
1515
1515
|
};
|
|
1516
1516
|
declare const buildFileApi: (baseClient: MittwaldAPIV2Client) => {
|
|
1517
1517
|
/** Get a File's meta. */
|
|
@@ -4925,6 +4925,152 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4925
4925
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4926
4926
|
[x: string]: unknown;
|
|
4927
4927
|
}, 429, "application/json">>>;
|
|
4928
|
+
/** Get the ExtensionInstance of a specific customer and extension, if existing. */
|
|
4929
|
+
extensionGetExtensionInstanceForCustomer: (request: {
|
|
4930
|
+
customerId: string;
|
|
4931
|
+
extensionId: string;
|
|
4932
|
+
headers?: {
|
|
4933
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
4934
|
+
"x-access-token"?: string | undefined;
|
|
4935
|
+
} | undefined;
|
|
4936
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
4937
|
+
headers?: Partial<{
|
|
4938
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
4939
|
+
}>;
|
|
4940
|
+
} & {
|
|
4941
|
+
pathParameters: {
|
|
4942
|
+
customerId: string;
|
|
4943
|
+
extensionId: string;
|
|
4944
|
+
};
|
|
4945
|
+
} & {
|
|
4946
|
+
headers: {
|
|
4947
|
+
"x-access-token"?: string | undefined;
|
|
4948
|
+
} & Partial<{
|
|
4949
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
4950
|
+
}>;
|
|
4951
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
4952
|
+
aggregateReference: {
|
|
4953
|
+
aggregate: string;
|
|
4954
|
+
domain: string;
|
|
4955
|
+
id: string;
|
|
4956
|
+
};
|
|
4957
|
+
consentedScopes: string[];
|
|
4958
|
+
createdAt?: string | undefined;
|
|
4959
|
+
disabled: boolean;
|
|
4960
|
+
extensionId: string;
|
|
4961
|
+
id: string;
|
|
4962
|
+
pendingInstallation: boolean;
|
|
4963
|
+
pendingRemoval: boolean;
|
|
4964
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4965
|
+
[x: string]: unknown;
|
|
4966
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4967
|
+
[x: string]: unknown;
|
|
4968
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
4969
|
+
headers?: Partial<{
|
|
4970
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
4971
|
+
}>;
|
|
4972
|
+
} & {
|
|
4973
|
+
pathParameters: {
|
|
4974
|
+
customerId: string;
|
|
4975
|
+
extensionId: string;
|
|
4976
|
+
};
|
|
4977
|
+
} & {
|
|
4978
|
+
headers: {
|
|
4979
|
+
"x-access-token"?: string | undefined;
|
|
4980
|
+
} & Partial<{
|
|
4981
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
4982
|
+
}>;
|
|
4983
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
4984
|
+
aggregateReference: {
|
|
4985
|
+
aggregate: string;
|
|
4986
|
+
domain: string;
|
|
4987
|
+
id: string;
|
|
4988
|
+
};
|
|
4989
|
+
consentedScopes: string[];
|
|
4990
|
+
createdAt?: string | undefined;
|
|
4991
|
+
disabled: boolean;
|
|
4992
|
+
extensionId: string;
|
|
4993
|
+
id: string;
|
|
4994
|
+
pendingInstallation: boolean;
|
|
4995
|
+
pendingRemoval: boolean;
|
|
4996
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4997
|
+
[x: string]: unknown;
|
|
4998
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4999
|
+
[x: string]: unknown;
|
|
5000
|
+
}, 429, "application/json">>>;
|
|
5001
|
+
/** Get the ExtensionInstance of a specific project and extension, if existing. */
|
|
5002
|
+
extensionGetExtensionInstanceForProject: (request: {
|
|
5003
|
+
projectId: string;
|
|
5004
|
+
extensionId: string;
|
|
5005
|
+
headers?: {
|
|
5006
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
5007
|
+
"x-access-token"?: string | undefined;
|
|
5008
|
+
} | undefined;
|
|
5009
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
5010
|
+
headers?: Partial<{
|
|
5011
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5012
|
+
}>;
|
|
5013
|
+
} & {
|
|
5014
|
+
pathParameters: {
|
|
5015
|
+
projectId: string;
|
|
5016
|
+
extensionId: string;
|
|
5017
|
+
};
|
|
5018
|
+
} & {
|
|
5019
|
+
headers: {
|
|
5020
|
+
"x-access-token"?: string | undefined;
|
|
5021
|
+
} & Partial<{
|
|
5022
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5023
|
+
}>;
|
|
5024
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
5025
|
+
aggregateReference: {
|
|
5026
|
+
aggregate: string;
|
|
5027
|
+
domain: string;
|
|
5028
|
+
id: string;
|
|
5029
|
+
};
|
|
5030
|
+
consentedScopes: string[];
|
|
5031
|
+
createdAt?: string | undefined;
|
|
5032
|
+
disabled: boolean;
|
|
5033
|
+
extensionId: string;
|
|
5034
|
+
id: string;
|
|
5035
|
+
pendingInstallation: boolean;
|
|
5036
|
+
pendingRemoval: boolean;
|
|
5037
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5038
|
+
[x: string]: unknown;
|
|
5039
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5040
|
+
[x: string]: unknown;
|
|
5041
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
5042
|
+
headers?: Partial<{
|
|
5043
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5044
|
+
}>;
|
|
5045
|
+
} & {
|
|
5046
|
+
pathParameters: {
|
|
5047
|
+
projectId: string;
|
|
5048
|
+
extensionId: string;
|
|
5049
|
+
};
|
|
5050
|
+
} & {
|
|
5051
|
+
headers: {
|
|
5052
|
+
"x-access-token"?: string | undefined;
|
|
5053
|
+
} & Partial<{
|
|
5054
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5055
|
+
}>;
|
|
5056
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
5057
|
+
aggregateReference: {
|
|
5058
|
+
aggregate: string;
|
|
5059
|
+
domain: string;
|
|
5060
|
+
id: string;
|
|
5061
|
+
};
|
|
5062
|
+
consentedScopes: string[];
|
|
5063
|
+
createdAt?: string | undefined;
|
|
5064
|
+
disabled: boolean;
|
|
5065
|
+
extensionId: string;
|
|
5066
|
+
id: string;
|
|
5067
|
+
pendingInstallation: boolean;
|
|
5068
|
+
pendingRemoval: boolean;
|
|
5069
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5070
|
+
[x: string]: unknown;
|
|
5071
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5072
|
+
[x: string]: unknown;
|
|
5073
|
+
}, 429, "application/json">>>;
|
|
4928
5074
|
/** Get an Extension. */
|
|
4929
5075
|
extensionGetExtension: (request: {
|
|
4930
5076
|
extensionId: string;
|
|
@@ -5122,152 +5268,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5122
5268
|
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtension[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5123
5269
|
[x: string]: unknown;
|
|
5124
5270
|
}, 429, "application/json">>>;
|
|
5125
|
-
/** Get the ExtensionInstance of a specific customer and extension, if existing. */
|
|
5126
|
-
extensionGetExtensionInstanceForCustomer: (request: {
|
|
5127
|
-
customerId: string;
|
|
5128
|
-
extensionId: string;
|
|
5129
|
-
headers?: {
|
|
5130
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
5131
|
-
"x-access-token"?: string | undefined;
|
|
5132
|
-
} | undefined;
|
|
5133
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
5134
|
-
headers?: Partial<{
|
|
5135
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5136
|
-
}>;
|
|
5137
|
-
} & {
|
|
5138
|
-
pathParameters: {
|
|
5139
|
-
customerId: string;
|
|
5140
|
-
extensionId: string;
|
|
5141
|
-
};
|
|
5142
|
-
} & {
|
|
5143
|
-
headers: {
|
|
5144
|
-
"x-access-token"?: string | undefined;
|
|
5145
|
-
} & Partial<{
|
|
5146
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5147
|
-
}>;
|
|
5148
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
5149
|
-
aggregateReference: {
|
|
5150
|
-
aggregate: string;
|
|
5151
|
-
domain: string;
|
|
5152
|
-
id: string;
|
|
5153
|
-
};
|
|
5154
|
-
consentedScopes: string[];
|
|
5155
|
-
createdAt?: string | undefined;
|
|
5156
|
-
disabled: boolean;
|
|
5157
|
-
extensionId: string;
|
|
5158
|
-
id: string;
|
|
5159
|
-
pendingInstallation: boolean;
|
|
5160
|
-
pendingRemoval: boolean;
|
|
5161
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5162
|
-
[x: string]: unknown;
|
|
5163
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5164
|
-
[x: string]: unknown;
|
|
5165
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
5166
|
-
headers?: Partial<{
|
|
5167
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5168
|
-
}>;
|
|
5169
|
-
} & {
|
|
5170
|
-
pathParameters: {
|
|
5171
|
-
customerId: string;
|
|
5172
|
-
extensionId: string;
|
|
5173
|
-
};
|
|
5174
|
-
} & {
|
|
5175
|
-
headers: {
|
|
5176
|
-
"x-access-token"?: string | undefined;
|
|
5177
|
-
} & Partial<{
|
|
5178
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5179
|
-
}>;
|
|
5180
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
5181
|
-
aggregateReference: {
|
|
5182
|
-
aggregate: string;
|
|
5183
|
-
domain: string;
|
|
5184
|
-
id: string;
|
|
5185
|
-
};
|
|
5186
|
-
consentedScopes: string[];
|
|
5187
|
-
createdAt?: string | undefined;
|
|
5188
|
-
disabled: boolean;
|
|
5189
|
-
extensionId: string;
|
|
5190
|
-
id: string;
|
|
5191
|
-
pendingInstallation: boolean;
|
|
5192
|
-
pendingRemoval: boolean;
|
|
5193
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5194
|
-
[x: string]: unknown;
|
|
5195
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5196
|
-
[x: string]: unknown;
|
|
5197
|
-
}, 429, "application/json">>>;
|
|
5198
|
-
/** Get the ExtensionInstance of a specific project and extension, if existing. */
|
|
5199
|
-
extensionGetExtensionInstanceForProject: (request: {
|
|
5200
|
-
projectId: string;
|
|
5201
|
-
extensionId: string;
|
|
5202
|
-
headers?: {
|
|
5203
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
5204
|
-
"x-access-token"?: string | undefined;
|
|
5205
|
-
} | undefined;
|
|
5206
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
5207
|
-
headers?: Partial<{
|
|
5208
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5209
|
-
}>;
|
|
5210
|
-
} & {
|
|
5211
|
-
pathParameters: {
|
|
5212
|
-
projectId: string;
|
|
5213
|
-
extensionId: string;
|
|
5214
|
-
};
|
|
5215
|
-
} & {
|
|
5216
|
-
headers: {
|
|
5217
|
-
"x-access-token"?: string | undefined;
|
|
5218
|
-
} & Partial<{
|
|
5219
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5220
|
-
}>;
|
|
5221
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
5222
|
-
aggregateReference: {
|
|
5223
|
-
aggregate: string;
|
|
5224
|
-
domain: string;
|
|
5225
|
-
id: string;
|
|
5226
|
-
};
|
|
5227
|
-
consentedScopes: string[];
|
|
5228
|
-
createdAt?: string | undefined;
|
|
5229
|
-
disabled: boolean;
|
|
5230
|
-
extensionId: string;
|
|
5231
|
-
id: string;
|
|
5232
|
-
pendingInstallation: boolean;
|
|
5233
|
-
pendingRemoval: boolean;
|
|
5234
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5235
|
-
[x: string]: unknown;
|
|
5236
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5237
|
-
[x: string]: unknown;
|
|
5238
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
5239
|
-
headers?: Partial<{
|
|
5240
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5241
|
-
}>;
|
|
5242
|
-
} & {
|
|
5243
|
-
pathParameters: {
|
|
5244
|
-
projectId: string;
|
|
5245
|
-
extensionId: string;
|
|
5246
|
-
};
|
|
5247
|
-
} & {
|
|
5248
|
-
headers: {
|
|
5249
|
-
"x-access-token"?: string | undefined;
|
|
5250
|
-
} & Partial<{
|
|
5251
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5252
|
-
}>;
|
|
5253
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
5254
|
-
aggregateReference: {
|
|
5255
|
-
aggregate: string;
|
|
5256
|
-
domain: string;
|
|
5257
|
-
id: string;
|
|
5258
|
-
};
|
|
5259
|
-
consentedScopes: string[];
|
|
5260
|
-
createdAt?: string | undefined;
|
|
5261
|
-
disabled: boolean;
|
|
5262
|
-
extensionId: string;
|
|
5263
|
-
id: string;
|
|
5264
|
-
pendingInstallation: boolean;
|
|
5265
|
-
pendingRemoval: boolean;
|
|
5266
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5267
|
-
[x: string]: unknown;
|
|
5268
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5269
|
-
[x: string]: unknown;
|
|
5270
|
-
}, 429, "application/json">>>;
|
|
5271
5271
|
};
|
|
5272
5272
|
/** The conversation API allows you to manage your support conversations. */
|
|
5273
5273
|
readonly conversation: {
|
|
@@ -325,6 +325,10 @@ export declare const extensionDryRunWebhook: OpenAPIOperation<RequestType<Simpli
|
|
|
325
325
|
export declare const extensionEnableExtensionInstance: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdActionsEnable.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdActionsEnable.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdActionsEnable.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdActionsEnable.Post.Responses.$204.Content.ApplicationJson>, 204, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdActionsEnable.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdActionsEnable.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionInstancesExtensionInstanceIdActionsEnable.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
326
326
|
/** Get a Contributor. */
|
|
327
327
|
export declare const extensionGetContributor: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
328
|
+
/** Get the ExtensionInstance of a specific customer and extension, if existing. */
|
|
329
|
+
export declare const extensionGetExtensionInstanceForCustomer: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdExtensionsExtensionId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdExtensionsExtensionId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdExtensionsExtensionId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdExtensionsExtensionId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdExtensionsExtensionId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdExtensionsExtensionId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdExtensionsExtensionId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
330
|
+
/** Get the ExtensionInstance of a specific project and extension, if existing. */
|
|
331
|
+
export declare const extensionGetExtensionInstanceForProject: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdExtensionsExtensionId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdExtensionsExtensionId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdExtensionsExtensionId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdExtensionsExtensionId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdExtensionsExtensionId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdExtensionsExtensionId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdExtensionsExtensionId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
328
332
|
/** Get an Extension. */
|
|
329
333
|
export declare const extensionGetExtension: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
330
334
|
/** Get the public key to verify the webhook signature. */
|
|
@@ -679,7 +683,3 @@ export declare const userVerifyRegistration: OpenAPIOperation<RequestType<Simpli
|
|
|
679
683
|
export declare const verificationVerifyAddress: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$500.Content.Empty>, 500, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
680
684
|
/** Check if a company exists. */
|
|
681
685
|
export declare const verificationVerifyCompany: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$412.Content.Empty>, 412, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$500.Content.Empty>, 500, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
682
|
-
/** Get the ExtensionInstance of a specific customer and extension, if existing. */
|
|
683
|
-
export declare const extensionGetExtensionInstanceForCustomer: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdExtensionsExtensionId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdExtensionsExtensionId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdExtensionsExtensionId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdExtensionsExtensionId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdExtensionsExtensionId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdExtensionsExtensionId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdExtensionsExtensionId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
684
|
-
/** Get the ExtensionInstance of a specific project and extension, if existing. */
|
|
685
|
-
export declare const extensionGetExtensionInstanceForProject: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdExtensionsExtensionId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdExtensionsExtensionId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdExtensionsExtensionId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdExtensionsExtensionId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdExtensionsExtensionId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdExtensionsExtensionId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdExtensionsExtensionId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
@@ -646,6 +646,14 @@ export declare namespace MittwaldAPIV2 {
|
|
|
646
646
|
type RequestData = InferredRequestData<typeof descriptors.extensionGetContributor>;
|
|
647
647
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionGetContributor, TStatus>;
|
|
648
648
|
}
|
|
649
|
+
namespace ExtensionGetExtensionInstanceForCustomer {
|
|
650
|
+
type RequestData = InferredRequestData<typeof descriptors.extensionGetExtensionInstanceForCustomer>;
|
|
651
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionGetExtensionInstanceForCustomer, TStatus>;
|
|
652
|
+
}
|
|
653
|
+
namespace ExtensionGetExtensionInstanceForProject {
|
|
654
|
+
type RequestData = InferredRequestData<typeof descriptors.extensionGetExtensionInstanceForProject>;
|
|
655
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionGetExtensionInstanceForProject, TStatus>;
|
|
656
|
+
}
|
|
649
657
|
namespace ExtensionGetExtension {
|
|
650
658
|
type RequestData = InferredRequestData<typeof descriptors.extensionGetExtension>;
|
|
651
659
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionGetExtension, TStatus>;
|
|
@@ -1354,14 +1362,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1354
1362
|
type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
|
|
1355
1363
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
|
|
1356
1364
|
}
|
|
1357
|
-
namespace ExtensionGetExtensionInstanceForCustomer {
|
|
1358
|
-
type RequestData = InferredRequestData<typeof descriptors.extensionGetExtensionInstanceForCustomer>;
|
|
1359
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionGetExtensionInstanceForCustomer, TStatus>;
|
|
1360
|
-
}
|
|
1361
|
-
namespace ExtensionGetExtensionInstanceForProject {
|
|
1362
|
-
type RequestData = InferredRequestData<typeof descriptors.extensionGetExtensionInstanceForProject>;
|
|
1363
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.extensionGetExtensionInstanceForProject, TStatus>;
|
|
1364
|
-
}
|
|
1365
1365
|
}
|
|
1366
1366
|
namespace Components {
|
|
1367
1367
|
namespace Schemas {
|
|
@@ -11740,6 +11740,86 @@ export declare namespace MittwaldAPIV2 {
|
|
|
11740
11740
|
}
|
|
11741
11741
|
}
|
|
11742
11742
|
}
|
|
11743
|
+
namespace V2CustomersCustomerIdExtensionsExtensionId {
|
|
11744
|
+
namespace Get {
|
|
11745
|
+
namespace Parameters {
|
|
11746
|
+
type Path = {
|
|
11747
|
+
customerId: string;
|
|
11748
|
+
extensionId: string;
|
|
11749
|
+
};
|
|
11750
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
11751
|
+
type Query = {};
|
|
11752
|
+
}
|
|
11753
|
+
namespace Responses {
|
|
11754
|
+
namespace $200 {
|
|
11755
|
+
namespace Content {
|
|
11756
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstance;
|
|
11757
|
+
}
|
|
11758
|
+
}
|
|
11759
|
+
namespace $404 {
|
|
11760
|
+
namespace Content {
|
|
11761
|
+
interface ApplicationJson {
|
|
11762
|
+
[k: string]: unknown;
|
|
11763
|
+
}
|
|
11764
|
+
}
|
|
11765
|
+
}
|
|
11766
|
+
namespace $429 {
|
|
11767
|
+
namespace Content {
|
|
11768
|
+
interface ApplicationJson {
|
|
11769
|
+
[k: string]: unknown;
|
|
11770
|
+
}
|
|
11771
|
+
}
|
|
11772
|
+
}
|
|
11773
|
+
namespace Default {
|
|
11774
|
+
namespace Content {
|
|
11775
|
+
interface ApplicationJson {
|
|
11776
|
+
[k: string]: unknown;
|
|
11777
|
+
}
|
|
11778
|
+
}
|
|
11779
|
+
}
|
|
11780
|
+
}
|
|
11781
|
+
}
|
|
11782
|
+
}
|
|
11783
|
+
namespace V2ProjectsProjectIdExtensionsExtensionId {
|
|
11784
|
+
namespace Get {
|
|
11785
|
+
namespace Parameters {
|
|
11786
|
+
type Path = {
|
|
11787
|
+
projectId: string;
|
|
11788
|
+
extensionId: string;
|
|
11789
|
+
};
|
|
11790
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
11791
|
+
type Query = {};
|
|
11792
|
+
}
|
|
11793
|
+
namespace Responses {
|
|
11794
|
+
namespace $200 {
|
|
11795
|
+
namespace Content {
|
|
11796
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstance;
|
|
11797
|
+
}
|
|
11798
|
+
}
|
|
11799
|
+
namespace $404 {
|
|
11800
|
+
namespace Content {
|
|
11801
|
+
interface ApplicationJson {
|
|
11802
|
+
[k: string]: unknown;
|
|
11803
|
+
}
|
|
11804
|
+
}
|
|
11805
|
+
}
|
|
11806
|
+
namespace $429 {
|
|
11807
|
+
namespace Content {
|
|
11808
|
+
interface ApplicationJson {
|
|
11809
|
+
[k: string]: unknown;
|
|
11810
|
+
}
|
|
11811
|
+
}
|
|
11812
|
+
}
|
|
11813
|
+
namespace Default {
|
|
11814
|
+
namespace Content {
|
|
11815
|
+
interface ApplicationJson {
|
|
11816
|
+
[k: string]: unknown;
|
|
11817
|
+
}
|
|
11818
|
+
}
|
|
11819
|
+
}
|
|
11820
|
+
}
|
|
11821
|
+
}
|
|
11822
|
+
}
|
|
11743
11823
|
namespace V2ExtensionsExtensionId {
|
|
11744
11824
|
namespace Get {
|
|
11745
11825
|
namespace Parameters {
|
|
@@ -20523,85 +20603,5 @@ export declare namespace MittwaldAPIV2 {
|
|
|
20523
20603
|
}
|
|
20524
20604
|
}
|
|
20525
20605
|
}
|
|
20526
|
-
namespace V2CustomersCustomerIdExtensionsExtensionId {
|
|
20527
|
-
namespace Get {
|
|
20528
|
-
namespace Parameters {
|
|
20529
|
-
type Path = {
|
|
20530
|
-
customerId: string;
|
|
20531
|
-
extensionId: string;
|
|
20532
|
-
};
|
|
20533
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
20534
|
-
type Query = {};
|
|
20535
|
-
}
|
|
20536
|
-
namespace Responses {
|
|
20537
|
-
namespace $200 {
|
|
20538
|
-
namespace Content {
|
|
20539
|
-
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstance;
|
|
20540
|
-
}
|
|
20541
|
-
}
|
|
20542
|
-
namespace $404 {
|
|
20543
|
-
namespace Content {
|
|
20544
|
-
interface ApplicationJson {
|
|
20545
|
-
[k: string]: unknown;
|
|
20546
|
-
}
|
|
20547
|
-
}
|
|
20548
|
-
}
|
|
20549
|
-
namespace $429 {
|
|
20550
|
-
namespace Content {
|
|
20551
|
-
interface ApplicationJson {
|
|
20552
|
-
[k: string]: unknown;
|
|
20553
|
-
}
|
|
20554
|
-
}
|
|
20555
|
-
}
|
|
20556
|
-
namespace Default {
|
|
20557
|
-
namespace Content {
|
|
20558
|
-
interface ApplicationJson {
|
|
20559
|
-
[k: string]: unknown;
|
|
20560
|
-
}
|
|
20561
|
-
}
|
|
20562
|
-
}
|
|
20563
|
-
}
|
|
20564
|
-
}
|
|
20565
|
-
}
|
|
20566
|
-
namespace V2ProjectsProjectIdExtensionsExtensionId {
|
|
20567
|
-
namespace Get {
|
|
20568
|
-
namespace Parameters {
|
|
20569
|
-
type Path = {
|
|
20570
|
-
projectId: string;
|
|
20571
|
-
extensionId: string;
|
|
20572
|
-
};
|
|
20573
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
20574
|
-
type Query = {};
|
|
20575
|
-
}
|
|
20576
|
-
namespace Responses {
|
|
20577
|
-
namespace $200 {
|
|
20578
|
-
namespace Content {
|
|
20579
|
-
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstance;
|
|
20580
|
-
}
|
|
20581
|
-
}
|
|
20582
|
-
namespace $404 {
|
|
20583
|
-
namespace Content {
|
|
20584
|
-
interface ApplicationJson {
|
|
20585
|
-
[k: string]: unknown;
|
|
20586
|
-
}
|
|
20587
|
-
}
|
|
20588
|
-
}
|
|
20589
|
-
namespace $429 {
|
|
20590
|
-
namespace Content {
|
|
20591
|
-
interface ApplicationJson {
|
|
20592
|
-
[k: string]: unknown;
|
|
20593
|
-
}
|
|
20594
|
-
}
|
|
20595
|
-
}
|
|
20596
|
-
namespace Default {
|
|
20597
|
-
namespace Content {
|
|
20598
|
-
interface ApplicationJson {
|
|
20599
|
-
[k: string]: unknown;
|
|
20600
|
-
}
|
|
20601
|
-
}
|
|
20602
|
-
}
|
|
20603
|
-
}
|
|
20604
|
-
}
|
|
20605
|
-
}
|
|
20606
20606
|
}
|
|
20607
20607
|
}
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.84.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.85.0",
|
|
4
4
|
"author": "Mittwald CM Service GmbH & Co. KG <opensource@mittwald.de>",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Auto-generated client for the mittwald API",
|
|
@@ -80,5 +80,5 @@
|
|
|
80
80
|
"optional": true
|
|
81
81
|
}
|
|
82
82
|
},
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "cf256917a5eda5dfe3897f1aa8bd86eba01a926f"
|
|
84
84
|
}
|