@mittwald/api-client 4.84.0 → 4.86.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 -45
- package/dist/types/generated/v2/client.d.ts +146 -159
- package/dist/types/generated/v2/descriptors.d.ts +4 -4
- package/dist/types/generated/v2/types.d.ts +93 -112
- 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.85.0';
|
|
@@ -152,7 +152,6 @@ declare const buildAppApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
152
152
|
listApps: (conf?: {
|
|
153
153
|
headers?: {
|
|
154
154
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
155
|
-
"x-access-token"?: string | undefined;
|
|
156
155
|
} | undefined;
|
|
157
156
|
queryParameters?: {
|
|
158
157
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
@@ -1403,6 +1402,50 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1403
1402
|
state: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributorState;
|
|
1404
1403
|
url?: string | undefined;
|
|
1405
1404
|
}>;
|
|
1405
|
+
/** Get the ExtensionInstance of a specific customer and extension, if existing. */
|
|
1406
|
+
extensionGetExtensionInstanceForCustomer: (conf: {
|
|
1407
|
+
customerId: string;
|
|
1408
|
+
extensionId: string;
|
|
1409
|
+
headers?: {
|
|
1410
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1411
|
+
"x-access-token"?: string | undefined;
|
|
1412
|
+
} | undefined;
|
|
1413
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
1414
|
+
aggregateReference: {
|
|
1415
|
+
aggregate: string;
|
|
1416
|
+
domain: string;
|
|
1417
|
+
id: string;
|
|
1418
|
+
};
|
|
1419
|
+
consentedScopes: string[];
|
|
1420
|
+
createdAt?: string | undefined;
|
|
1421
|
+
disabled: boolean;
|
|
1422
|
+
extensionId: string;
|
|
1423
|
+
id: string;
|
|
1424
|
+
pendingInstallation: boolean;
|
|
1425
|
+
pendingRemoval: boolean;
|
|
1426
|
+
}>;
|
|
1427
|
+
/** Get the ExtensionInstance of a specific project and extension, if existing. */
|
|
1428
|
+
extensionGetExtensionInstanceForProject: (conf: {
|
|
1429
|
+
projectId: string;
|
|
1430
|
+
extensionId: string;
|
|
1431
|
+
headers?: {
|
|
1432
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1433
|
+
"x-access-token"?: string | undefined;
|
|
1434
|
+
} | undefined;
|
|
1435
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
1436
|
+
aggregateReference: {
|
|
1437
|
+
aggregate: string;
|
|
1438
|
+
domain: string;
|
|
1439
|
+
id: string;
|
|
1440
|
+
};
|
|
1441
|
+
consentedScopes: string[];
|
|
1442
|
+
createdAt?: string | undefined;
|
|
1443
|
+
disabled: boolean;
|
|
1444
|
+
extensionId: string;
|
|
1445
|
+
id: string;
|
|
1446
|
+
pendingInstallation: boolean;
|
|
1447
|
+
pendingRemoval: boolean;
|
|
1448
|
+
}>;
|
|
1406
1449
|
/** Get an Extension. */
|
|
1407
1450
|
extensionGetExtension: (conf: {
|
|
1408
1451
|
extensionId: string;
|
|
@@ -1468,50 +1511,6 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1468
1511
|
page?: number | undefined;
|
|
1469
1512
|
} | undefined;
|
|
1470
1513
|
} | 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
1514
|
};
|
|
1516
1515
|
declare const buildFileApi: (baseClient: MittwaldAPIV2Client) => {
|
|
1517
1516
|
/** Get a File's meta. */
|
|
@@ -855,7 +855,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
855
855
|
listApps: (request?: {
|
|
856
856
|
headers?: {
|
|
857
857
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
858
|
-
"x-access-token"?: string | undefined;
|
|
859
858
|
} | undefined;
|
|
860
859
|
queryParameters?: {
|
|
861
860
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
@@ -875,12 +874,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
875
874
|
} & Partial<{
|
|
876
875
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
877
876
|
}>;
|
|
878
|
-
} & {
|
|
879
|
-
headers: {
|
|
880
|
-
"x-access-token"?: string | undefined;
|
|
881
|
-
} & Partial<{
|
|
882
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
883
|
-
}>;
|
|
884
877
|
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.AppApp[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
885
878
|
[x: string]: unknown;
|
|
886
879
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
@@ -895,12 +888,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
895
888
|
} & Partial<{
|
|
896
889
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
897
890
|
}>;
|
|
898
|
-
} & {
|
|
899
|
-
headers: {
|
|
900
|
-
"x-access-token"?: string | undefined;
|
|
901
|
-
} & Partial<{
|
|
902
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
903
|
-
}>;
|
|
904
891
|
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.AppApp[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
905
892
|
[x: string]: unknown;
|
|
906
893
|
}, 429, "application/json">>>;
|
|
@@ -4925,6 +4912,152 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4925
4912
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4926
4913
|
[x: string]: unknown;
|
|
4927
4914
|
}, 429, "application/json">>>;
|
|
4915
|
+
/** Get the ExtensionInstance of a specific customer and extension, if existing. */
|
|
4916
|
+
extensionGetExtensionInstanceForCustomer: (request: {
|
|
4917
|
+
customerId: string;
|
|
4918
|
+
extensionId: string;
|
|
4919
|
+
headers?: {
|
|
4920
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
4921
|
+
"x-access-token"?: string | undefined;
|
|
4922
|
+
} | undefined;
|
|
4923
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
4924
|
+
headers?: Partial<{
|
|
4925
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
4926
|
+
}>;
|
|
4927
|
+
} & {
|
|
4928
|
+
pathParameters: {
|
|
4929
|
+
customerId: string;
|
|
4930
|
+
extensionId: string;
|
|
4931
|
+
};
|
|
4932
|
+
} & {
|
|
4933
|
+
headers: {
|
|
4934
|
+
"x-access-token"?: string | undefined;
|
|
4935
|
+
} & Partial<{
|
|
4936
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
4937
|
+
}>;
|
|
4938
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
4939
|
+
aggregateReference: {
|
|
4940
|
+
aggregate: string;
|
|
4941
|
+
domain: string;
|
|
4942
|
+
id: string;
|
|
4943
|
+
};
|
|
4944
|
+
consentedScopes: string[];
|
|
4945
|
+
createdAt?: string | undefined;
|
|
4946
|
+
disabled: boolean;
|
|
4947
|
+
extensionId: string;
|
|
4948
|
+
id: string;
|
|
4949
|
+
pendingInstallation: boolean;
|
|
4950
|
+
pendingRemoval: boolean;
|
|
4951
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4952
|
+
[x: string]: unknown;
|
|
4953
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4954
|
+
[x: string]: unknown;
|
|
4955
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
4956
|
+
headers?: Partial<{
|
|
4957
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
4958
|
+
}>;
|
|
4959
|
+
} & {
|
|
4960
|
+
pathParameters: {
|
|
4961
|
+
customerId: string;
|
|
4962
|
+
extensionId: string;
|
|
4963
|
+
};
|
|
4964
|
+
} & {
|
|
4965
|
+
headers: {
|
|
4966
|
+
"x-access-token"?: string | undefined;
|
|
4967
|
+
} & Partial<{
|
|
4968
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
4969
|
+
}>;
|
|
4970
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
4971
|
+
aggregateReference: {
|
|
4972
|
+
aggregate: string;
|
|
4973
|
+
domain: string;
|
|
4974
|
+
id: string;
|
|
4975
|
+
};
|
|
4976
|
+
consentedScopes: string[];
|
|
4977
|
+
createdAt?: string | undefined;
|
|
4978
|
+
disabled: boolean;
|
|
4979
|
+
extensionId: string;
|
|
4980
|
+
id: string;
|
|
4981
|
+
pendingInstallation: boolean;
|
|
4982
|
+
pendingRemoval: boolean;
|
|
4983
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4984
|
+
[x: string]: unknown;
|
|
4985
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4986
|
+
[x: string]: unknown;
|
|
4987
|
+
}, 429, "application/json">>>;
|
|
4988
|
+
/** Get the ExtensionInstance of a specific project and extension, if existing. */
|
|
4989
|
+
extensionGetExtensionInstanceForProject: (request: {
|
|
4990
|
+
projectId: string;
|
|
4991
|
+
extensionId: string;
|
|
4992
|
+
headers?: {
|
|
4993
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
4994
|
+
"x-access-token"?: string | undefined;
|
|
4995
|
+
} | undefined;
|
|
4996
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
4997
|
+
headers?: Partial<{
|
|
4998
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
4999
|
+
}>;
|
|
5000
|
+
} & {
|
|
5001
|
+
pathParameters: {
|
|
5002
|
+
projectId: string;
|
|
5003
|
+
extensionId: string;
|
|
5004
|
+
};
|
|
5005
|
+
} & {
|
|
5006
|
+
headers: {
|
|
5007
|
+
"x-access-token"?: string | undefined;
|
|
5008
|
+
} & Partial<{
|
|
5009
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5010
|
+
}>;
|
|
5011
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
5012
|
+
aggregateReference: {
|
|
5013
|
+
aggregate: string;
|
|
5014
|
+
domain: string;
|
|
5015
|
+
id: string;
|
|
5016
|
+
};
|
|
5017
|
+
consentedScopes: string[];
|
|
5018
|
+
createdAt?: string | undefined;
|
|
5019
|
+
disabled: boolean;
|
|
5020
|
+
extensionId: string;
|
|
5021
|
+
id: string;
|
|
5022
|
+
pendingInstallation: boolean;
|
|
5023
|
+
pendingRemoval: boolean;
|
|
5024
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5025
|
+
[x: string]: unknown;
|
|
5026
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5027
|
+
[x: string]: unknown;
|
|
5028
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
5029
|
+
headers?: Partial<{
|
|
5030
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5031
|
+
}>;
|
|
5032
|
+
} & {
|
|
5033
|
+
pathParameters: {
|
|
5034
|
+
projectId: string;
|
|
5035
|
+
extensionId: string;
|
|
5036
|
+
};
|
|
5037
|
+
} & {
|
|
5038
|
+
headers: {
|
|
5039
|
+
"x-access-token"?: string | undefined;
|
|
5040
|
+
} & Partial<{
|
|
5041
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5042
|
+
}>;
|
|
5043
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
5044
|
+
aggregateReference: {
|
|
5045
|
+
aggregate: string;
|
|
5046
|
+
domain: string;
|
|
5047
|
+
id: string;
|
|
5048
|
+
};
|
|
5049
|
+
consentedScopes: string[];
|
|
5050
|
+
createdAt?: string | undefined;
|
|
5051
|
+
disabled: boolean;
|
|
5052
|
+
extensionId: string;
|
|
5053
|
+
id: string;
|
|
5054
|
+
pendingInstallation: boolean;
|
|
5055
|
+
pendingRemoval: boolean;
|
|
5056
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5057
|
+
[x: string]: unknown;
|
|
5058
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5059
|
+
[x: string]: unknown;
|
|
5060
|
+
}, 429, "application/json">>>;
|
|
4928
5061
|
/** Get an Extension. */
|
|
4929
5062
|
extensionGetExtension: (request: {
|
|
4930
5063
|
extensionId: string;
|
|
@@ -5122,152 +5255,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5122
5255
|
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtension[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5123
5256
|
[x: string]: unknown;
|
|
5124
5257
|
}, 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
5258
|
};
|
|
5272
5259
|
/** The conversation API allows you to manage your support conversations. */
|
|
5273
5260
|
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 {
|
|
@@ -1422,29 +1422,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1422
1422
|
updatePolicy?: MittwaldAPIV2.Components.Schemas.AppAppUpdatePolicy;
|
|
1423
1423
|
userInputs?: MittwaldAPIV2.Components.Schemas.AppSavedUserInput[];
|
|
1424
1424
|
}
|
|
1425
|
-
/**
|
|
1426
|
-
* An AppInstallation is a concrete manifestation of an App in a specific AppVersion.
|
|
1427
|
-
*/
|
|
1428
|
-
interface AppAppInstallationInternal {
|
|
1429
|
-
appId: string;
|
|
1430
|
-
appVersion: MittwaldAPIV2.Components.Schemas.AppVersionStatus;
|
|
1431
|
-
customDocumentRoot?: string;
|
|
1432
|
-
description: string;
|
|
1433
|
-
disabled: boolean;
|
|
1434
|
-
id: string;
|
|
1435
|
-
installationPath: string;
|
|
1436
|
-
linkedDatabases?: MittwaldAPIV2.Components.Schemas.AppLinkedDatabase[];
|
|
1437
|
-
processRunningSince?: string;
|
|
1438
|
-
processes?: string[];
|
|
1439
|
-
projectEnvironment?: string;
|
|
1440
|
-
projectId?: string;
|
|
1441
|
-
screenshotId?: string;
|
|
1442
|
-
screenshotRef?: string;
|
|
1443
|
-
shortId: string;
|
|
1444
|
-
systemSoftware?: MittwaldAPIV2.Components.Schemas.AppInstalledSystemSoftware[];
|
|
1445
|
-
updatePolicy?: MittwaldAPIV2.Components.Schemas.AppAppUpdatePolicy;
|
|
1446
|
-
userInputs?: MittwaldAPIV2.Components.Schemas.AppSavedUserInput[];
|
|
1447
|
-
}
|
|
1448
1425
|
/**
|
|
1449
1426
|
* The AppInstallationLifecycle can be used to express a specific point in the AppInstallation Lifecycle, e.g. while installing a new AppInstallation.
|
|
1450
1427
|
*/
|
|
@@ -1745,6 +1722,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1745
1722
|
targetDate: string;
|
|
1746
1723
|
}
|
|
1747
1724
|
interface ContractTermination {
|
|
1725
|
+
/**
|
|
1726
|
+
* Indicates whether the User is allowed to cancel the Termination.
|
|
1727
|
+
*/
|
|
1728
|
+
cancellationForbidden?: boolean;
|
|
1748
1729
|
reason?: string;
|
|
1749
1730
|
scheduledAtDate: string;
|
|
1750
1731
|
scheduledByUserId?: string;
|
|
@@ -4800,7 +4781,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4800
4781
|
namespace Get {
|
|
4801
4782
|
namespace Parameters {
|
|
4802
4783
|
type Path = {};
|
|
4803
|
-
type Header = {}
|
|
4784
|
+
type Header = {};
|
|
4804
4785
|
type Query = {
|
|
4805
4786
|
limit?: number;
|
|
4806
4787
|
skip?: number;
|
|
@@ -11740,6 +11721,86 @@ export declare namespace MittwaldAPIV2 {
|
|
|
11740
11721
|
}
|
|
11741
11722
|
}
|
|
11742
11723
|
}
|
|
11724
|
+
namespace V2CustomersCustomerIdExtensionsExtensionId {
|
|
11725
|
+
namespace Get {
|
|
11726
|
+
namespace Parameters {
|
|
11727
|
+
type Path = {
|
|
11728
|
+
customerId: string;
|
|
11729
|
+
extensionId: string;
|
|
11730
|
+
};
|
|
11731
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
11732
|
+
type Query = {};
|
|
11733
|
+
}
|
|
11734
|
+
namespace Responses {
|
|
11735
|
+
namespace $200 {
|
|
11736
|
+
namespace Content {
|
|
11737
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstance;
|
|
11738
|
+
}
|
|
11739
|
+
}
|
|
11740
|
+
namespace $404 {
|
|
11741
|
+
namespace Content {
|
|
11742
|
+
interface ApplicationJson {
|
|
11743
|
+
[k: string]: unknown;
|
|
11744
|
+
}
|
|
11745
|
+
}
|
|
11746
|
+
}
|
|
11747
|
+
namespace $429 {
|
|
11748
|
+
namespace Content {
|
|
11749
|
+
interface ApplicationJson {
|
|
11750
|
+
[k: string]: unknown;
|
|
11751
|
+
}
|
|
11752
|
+
}
|
|
11753
|
+
}
|
|
11754
|
+
namespace Default {
|
|
11755
|
+
namespace Content {
|
|
11756
|
+
interface ApplicationJson {
|
|
11757
|
+
[k: string]: unknown;
|
|
11758
|
+
}
|
|
11759
|
+
}
|
|
11760
|
+
}
|
|
11761
|
+
}
|
|
11762
|
+
}
|
|
11763
|
+
}
|
|
11764
|
+
namespace V2ProjectsProjectIdExtensionsExtensionId {
|
|
11765
|
+
namespace Get {
|
|
11766
|
+
namespace Parameters {
|
|
11767
|
+
type Path = {
|
|
11768
|
+
projectId: string;
|
|
11769
|
+
extensionId: string;
|
|
11770
|
+
};
|
|
11771
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
11772
|
+
type Query = {};
|
|
11773
|
+
}
|
|
11774
|
+
namespace Responses {
|
|
11775
|
+
namespace $200 {
|
|
11776
|
+
namespace Content {
|
|
11777
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstance;
|
|
11778
|
+
}
|
|
11779
|
+
}
|
|
11780
|
+
namespace $404 {
|
|
11781
|
+
namespace Content {
|
|
11782
|
+
interface ApplicationJson {
|
|
11783
|
+
[k: string]: unknown;
|
|
11784
|
+
}
|
|
11785
|
+
}
|
|
11786
|
+
}
|
|
11787
|
+
namespace $429 {
|
|
11788
|
+
namespace Content {
|
|
11789
|
+
interface ApplicationJson {
|
|
11790
|
+
[k: string]: unknown;
|
|
11791
|
+
}
|
|
11792
|
+
}
|
|
11793
|
+
}
|
|
11794
|
+
namespace Default {
|
|
11795
|
+
namespace Content {
|
|
11796
|
+
interface ApplicationJson {
|
|
11797
|
+
[k: string]: unknown;
|
|
11798
|
+
}
|
|
11799
|
+
}
|
|
11800
|
+
}
|
|
11801
|
+
}
|
|
11802
|
+
}
|
|
11803
|
+
}
|
|
11743
11804
|
namespace V2ExtensionsExtensionId {
|
|
11744
11805
|
namespace Get {
|
|
11745
11806
|
namespace Parameters {
|
|
@@ -20523,85 +20584,5 @@ export declare namespace MittwaldAPIV2 {
|
|
|
20523
20584
|
}
|
|
20524
20585
|
}
|
|
20525
20586
|
}
|
|
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
20587
|
}
|
|
20607
20588
|
}
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.85.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.86.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": "02386c647939a8a2d8f6219074a3f27d9635a3bf"
|
|
84
84
|
}
|