@mittwald/api-client 4.177.0 → 4.178.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 +0 -2
- package/dist/esm/generated/v2/client.js +0 -2
- package/dist/esm/generated/v2/descriptors.js +0 -6
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +3 -12
- package/dist/types/generated/v2/client.d.ts +14 -57
- package/dist/types/generated/v2/descriptors.d.ts +2 -4
- package/dist/types/generated/v2/types.d.ts +26 -54
- package/dist/types/version.d.ts +1 -1
- package/package.json +2 -2
|
@@ -88,8 +88,6 @@ const buildContractApi = (baseClient) => ({
|
|
|
88
88
|
getDetailOfContractItem: new ApiCallAsyncResourceFactory(descriptors.contractGetDetailOfContractItem, baseClient.contract.getDetailOfContractItem).getApiResource,
|
|
89
89
|
/** Returns the Contract with the given ID. */
|
|
90
90
|
getDetailOfContract: new ApiCallAsyncResourceFactory(descriptors.contractGetDetailOfContract, baseClient.contract.getDetailOfContract).getApiResource,
|
|
91
|
-
/** Return the next TerminationDate for the ContractItem with the given ID. */
|
|
92
|
-
getNextTerminationDateForItem: new ApiCallAsyncResourceFactory(descriptors.contractGetNextTerminationDateForItem, baseClient.contract.getNextTerminationDateForItem).getApiResource,
|
|
93
91
|
/** Return a list of Contracts for the given Customer. */
|
|
94
92
|
listContracts: new ApiCallAsyncResourceFactory(descriptors.contractListContracts, baseClient.contract.listContracts).getApiResource,
|
|
95
93
|
/** Get details of an Invoice. */
|
|
@@ -166,8 +166,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
166
166
|
getDetailOfContractItem: this.requestFunctionFactory(descriptors.contractGetDetailOfContractItem),
|
|
167
167
|
/** Returns the Contract with the given ID. */
|
|
168
168
|
getDetailOfContract: this.requestFunctionFactory(descriptors.contractGetDetailOfContract),
|
|
169
|
-
/** Return the next TerminationDate for the ContractItem with the given ID. */
|
|
170
|
-
getNextTerminationDateForItem: this.requestFunctionFactory(descriptors.contractGetNextTerminationDateForItem),
|
|
171
169
|
/** Return a list of Contracts for the given Customer. */
|
|
172
170
|
listContracts: this.requestFunctionFactory(descriptors.contractListContracts),
|
|
173
171
|
/** Get details of an Invoice. */
|
|
@@ -442,12 +442,6 @@ export const contractGetDetailOfContract = {
|
|
|
442
442
|
method: "GET",
|
|
443
443
|
operationId: "contract-get-detail-of-contract",
|
|
444
444
|
};
|
|
445
|
-
/** Return the next TerminationDate for the ContractItem with the given ID. */
|
|
446
|
-
export const contractGetNextTerminationDateForItem = {
|
|
447
|
-
path: "/v2/contracts/{contractId}/items/{contractItemId}/next-termination-dates",
|
|
448
|
-
method: "GET",
|
|
449
|
-
operationId: "contract-get-next-termination-date-for-item",
|
|
450
|
-
};
|
|
451
445
|
/** Return a list of Contracts for the given Customer. */
|
|
452
446
|
export const contractListContracts = {
|
|
453
447
|
path: "/v2/customers/{customerId}/contracts",
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.177.0';
|
|
@@ -31,6 +31,9 @@ declare const buildAppApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
31
31
|
id: string;
|
|
32
32
|
installationPath: string;
|
|
33
33
|
linkedDatabases?: import("./types.js").MittwaldAPIV2.Components.Schemas.AppLinkedDatabase[] | undefined;
|
|
34
|
+
lockedBy?: {
|
|
35
|
+
[k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.AppLockPurpose;
|
|
36
|
+
} | undefined;
|
|
34
37
|
processes?: string[] | undefined;
|
|
35
38
|
projectId?: string | undefined;
|
|
36
39
|
screenshotId?: string | undefined;
|
|
@@ -662,18 +665,6 @@ declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
662
665
|
customerId: string;
|
|
663
666
|
termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
|
|
664
667
|
}>;
|
|
665
|
-
/** Return the next TerminationDate for the ContractItem with the given ID. */
|
|
666
|
-
getNextTerminationDateForItem: (conf: {
|
|
667
|
-
contractId: string;
|
|
668
|
-
contractItemId: string;
|
|
669
|
-
headers?: {
|
|
670
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
671
|
-
"x-access-token"?: string | undefined;
|
|
672
|
-
} | undefined;
|
|
673
|
-
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
674
|
-
contractItemId: string;
|
|
675
|
-
nextTerminationDate: string;
|
|
676
|
-
}>;
|
|
677
668
|
/** Return a list of Contracts for the given Customer. */
|
|
678
669
|
listContracts: (conf: {
|
|
679
670
|
customerId: string;
|
|
@@ -121,6 +121,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
121
121
|
id: string;
|
|
122
122
|
installationPath: string;
|
|
123
123
|
linkedDatabases?: import("./types.js").MittwaldAPIV2.Components.Schemas.AppLinkedDatabase[] | undefined;
|
|
124
|
+
lockedBy?: {
|
|
125
|
+
[k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.AppLockPurpose;
|
|
126
|
+
} | undefined;
|
|
124
127
|
processes?: string[] | undefined;
|
|
125
128
|
projectId?: string | undefined;
|
|
126
129
|
screenshotId?: string | undefined;
|
|
@@ -157,6 +160,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
157
160
|
id: string;
|
|
158
161
|
installationPath: string;
|
|
159
162
|
linkedDatabases?: import("./types.js").MittwaldAPIV2.Components.Schemas.AppLinkedDatabase[] | undefined;
|
|
163
|
+
lockedBy?: {
|
|
164
|
+
[k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.AppLockPurpose;
|
|
165
|
+
} | undefined;
|
|
160
166
|
processes?: string[] | undefined;
|
|
161
167
|
projectId?: string | undefined;
|
|
162
168
|
screenshotId?: string | undefined;
|
|
@@ -195,6 +201,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
195
201
|
[x: string]: unknown;
|
|
196
202
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
197
203
|
[x: string]: unknown;
|
|
204
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
205
|
+
[x: string]: unknown;
|
|
198
206
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
199
207
|
headers?: Partial<{
|
|
200
208
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
@@ -213,6 +221,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
213
221
|
[x: string]: unknown;
|
|
214
222
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
215
223
|
[x: string]: unknown;
|
|
224
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
225
|
+
[x: string]: unknown;
|
|
216
226
|
}, 429, "application/json">>>;
|
|
217
227
|
/** Update properties belonging to an AppInstallation. */
|
|
218
228
|
patchAppinstallation: (request: {
|
|
@@ -4922,63 +4932,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4922
4932
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4923
4933
|
[x: string]: unknown;
|
|
4924
4934
|
}, 429, "application/json">>>;
|
|
4925
|
-
/** Return the next TerminationDate for the ContractItem with the given ID. */
|
|
4926
|
-
getNextTerminationDateForItem: (request: {
|
|
4927
|
-
contractId: string;
|
|
4928
|
-
contractItemId: string;
|
|
4929
|
-
headers?: {
|
|
4930
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
4931
|
-
"x-access-token"?: string | undefined;
|
|
4932
|
-
} | undefined;
|
|
4933
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
4934
|
-
headers?: Partial<{
|
|
4935
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
4936
|
-
}>;
|
|
4937
|
-
} & {
|
|
4938
|
-
pathParameters: {
|
|
4939
|
-
contractId: string;
|
|
4940
|
-
contractItemId: string;
|
|
4941
|
-
};
|
|
4942
|
-
} & {
|
|
4943
|
-
headers: {
|
|
4944
|
-
"x-access-token"?: string | undefined;
|
|
4945
|
-
} & Partial<{
|
|
4946
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
4947
|
-
}>;
|
|
4948
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
4949
|
-
contractItemId: string;
|
|
4950
|
-
nextTerminationDate: string;
|
|
4951
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4952
|
-
[x: string]: unknown;
|
|
4953
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4954
|
-
[x: string]: unknown;
|
|
4955
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4956
|
-
[x: string]: unknown;
|
|
4957
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
4958
|
-
headers?: Partial<{
|
|
4959
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
4960
|
-
}>;
|
|
4961
|
-
} & {
|
|
4962
|
-
pathParameters: {
|
|
4963
|
-
contractId: string;
|
|
4964
|
-
contractItemId: string;
|
|
4965
|
-
};
|
|
4966
|
-
} & {
|
|
4967
|
-
headers: {
|
|
4968
|
-
"x-access-token"?: string | undefined;
|
|
4969
|
-
} & Partial<{
|
|
4970
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
4971
|
-
}>;
|
|
4972
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
4973
|
-
contractItemId: string;
|
|
4974
|
-
nextTerminationDate: string;
|
|
4975
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4976
|
-
[x: string]: unknown;
|
|
4977
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4978
|
-
[x: string]: unknown;
|
|
4979
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4980
|
-
[x: string]: unknown;
|
|
4981
|
-
}, 429, "application/json">>>;
|
|
4982
4935
|
/** Return a list of Contracts for the given Customer. */
|
|
4983
4936
|
listContracts: (request: {
|
|
4984
4937
|
customerId: string;
|
|
@@ -9345,6 +9298,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9345
9298
|
[x: string]: unknown;
|
|
9346
9299
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9347
9300
|
[x: string]: unknown;
|
|
9301
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9302
|
+
[x: string]: unknown;
|
|
9348
9303
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
9349
9304
|
data: {
|
|
9350
9305
|
priceInCents?: number | undefined;
|
|
@@ -9372,6 +9327,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9372
9327
|
[x: string]: unknown;
|
|
9373
9328
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9374
9329
|
[x: string]: unknown;
|
|
9330
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
9331
|
+
[x: string]: unknown;
|
|
9375
9332
|
}, 429, "application/json">>>;
|
|
9376
9333
|
/** Get payment method details */
|
|
9377
9334
|
customerGetPaymentMethod: (request: {
|
|
@@ -10,7 +10,7 @@ export declare const appGetApp: OpenAPIOperation<RequestType<Simplify<null>, Sim
|
|
|
10
10
|
/** Get an AppInstallation. */
|
|
11
11
|
export declare const appGetAppinstallation: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
12
12
|
/** Trigger an uninstallation process for an AppInstallation. */
|
|
13
|
-
export declare const appUninstallAppinstallation: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationId.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationId.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationId.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
13
|
+
export declare const appUninstallAppinstallation: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationId.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationId.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationId.Delete.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationId.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
14
14
|
/** Update properties belonging to an AppInstallation. */
|
|
15
15
|
export declare const appPatchAppinstallation: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationId.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationId.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationId.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationId.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationId.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationId.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationId.Patch.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationId.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
16
16
|
/** Get an AppVersion. */
|
|
@@ -151,8 +151,6 @@ export declare const contractGetDetailOfContractByServer: OpenAPIOperation<Reque
|
|
|
151
151
|
export declare const contractGetDetailOfContractItem: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdItemsContractItemId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdItemsContractItemId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdItemsContractItemId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdItemsContractItemId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdItemsContractItemId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdItemsContractItemId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdItemsContractItemId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdItemsContractItemId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
152
152
|
/** Returns the Contract with the given ID. */
|
|
153
153
|
export declare const contractGetDetailOfContract: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContractsContractId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContractsContractId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContractsContractId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContractsContractId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContractsContractId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContractsContractId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContractsContractId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContractsContractId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
154
|
-
/** Return the next TerminationDate for the ContractItem with the given ID. */
|
|
155
|
-
export declare const contractGetNextTerminationDateForItem: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdItemsContractItemIdNextTerminationDates.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdItemsContractItemIdNextTerminationDates.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdItemsContractItemIdNextTerminationDates.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdItemsContractItemIdNextTerminationDates.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdItemsContractItemIdNextTerminationDates.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdItemsContractItemIdNextTerminationDates.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdItemsContractItemIdNextTerminationDates.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContractsContractIdItemsContractItemIdNextTerminationDates.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
156
154
|
/** Return a list of Contracts for the given Customer. */
|
|
157
155
|
export declare const contractListContracts: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdContracts.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdContracts.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdContracts.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdContracts.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdContracts.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdContracts.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdContracts.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdContracts.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
158
156
|
/** Get Contributor Billing Information. */
|
|
@@ -462,7 +460,7 @@ export declare const extensionSetExtensionPublishedState: OpenAPIOperation<Reque
|
|
|
462
460
|
/** Start a checkout process for an extension. */
|
|
463
461
|
export declare const extensionStartExtensionCheckout: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionIdCheckout.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionIdCheckout.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionIdCheckout.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionIdCheckout.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionIdCheckout.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionIdCheckout.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionIdCheckout.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionIdCheckout.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ExtensionsExtensionIdCheckout.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
464
462
|
/** Creates or Updates Pricing for an Extension. */
|
|
465
|
-
export declare const extensionUpdateExtensionPricing: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
463
|
+
export declare const extensionUpdateExtensionPricing: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
466
464
|
/** Create a File. */
|
|
467
465
|
export declare const fileCreateFile: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2Files.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Files.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2Files.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$401.Content.ApplicationJson>, 401, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$406.Content.ApplicationJson>, 406, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$422.Content.ApplicationJson>, 422, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
468
466
|
/** Get a File's meta. */
|
|
@@ -298,10 +298,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
298
298
|
type RequestData = InferredRequestData<typeof descriptors.contractGetDetailOfContract>;
|
|
299
299
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contractGetDetailOfContract, TStatus>;
|
|
300
300
|
}
|
|
301
|
-
namespace ContractGetNextTerminationDateForItem {
|
|
302
|
-
type RequestData = InferredRequestData<typeof descriptors.contractGetNextTerminationDateForItem>;
|
|
303
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contractGetNextTerminationDateForItem, TStatus>;
|
|
304
|
-
}
|
|
305
301
|
namespace ContractListContracts {
|
|
306
302
|
type RequestData = InferredRequestData<typeof descriptors.contractListContracts>;
|
|
307
303
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contractListContracts, TStatus>;
|
|
@@ -1702,6 +1698,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1702
1698
|
id: string;
|
|
1703
1699
|
installationPath: string;
|
|
1704
1700
|
linkedDatabases?: MittwaldAPIV2.Components.Schemas.AppLinkedDatabase[];
|
|
1701
|
+
lockedBy?: {
|
|
1702
|
+
[k: string]: MittwaldAPIV2.Components.Schemas.AppLockPurpose;
|
|
1703
|
+
};
|
|
1704
|
+
/**
|
|
1705
|
+
* @deprecated
|
|
1706
|
+
* Unused, will be removed in the future.
|
|
1707
|
+
*/
|
|
1705
1708
|
processes?: string[];
|
|
1706
1709
|
projectId?: string;
|
|
1707
1710
|
screenshotId?: string;
|
|
@@ -5061,6 +5064,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5061
5064
|
name: string;
|
|
5062
5065
|
value: string;
|
|
5063
5066
|
}
|
|
5067
|
+
/**
|
|
5068
|
+
* LockPurpose describes why a given AppInstallation is locked from deletion.
|
|
5069
|
+
*/
|
|
5070
|
+
type AppLockPurpose = "unspecified" | "copy";
|
|
5064
5071
|
interface CommonsAddress {
|
|
5065
5072
|
street: string;
|
|
5066
5073
|
houseNumber: string;
|
|
@@ -5391,6 +5398,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5391
5398
|
}
|
|
5392
5399
|
}
|
|
5393
5400
|
}
|
|
5401
|
+
namespace $412 {
|
|
5402
|
+
namespace Content {
|
|
5403
|
+
interface ApplicationJson {
|
|
5404
|
+
[k: string]: unknown;
|
|
5405
|
+
}
|
|
5406
|
+
}
|
|
5407
|
+
}
|
|
5394
5408
|
namespace $429 {
|
|
5395
5409
|
namespace Content {
|
|
5396
5410
|
interface ApplicationJson {
|
|
@@ -9061,56 +9075,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
9061
9075
|
}
|
|
9062
9076
|
}
|
|
9063
9077
|
}
|
|
9064
|
-
namespace V2ContractsContractIdItemsContractItemIdNextTerminationDates {
|
|
9065
|
-
namespace Get {
|
|
9066
|
-
namespace Parameters {
|
|
9067
|
-
type Path = {
|
|
9068
|
-
contractId: string;
|
|
9069
|
-
contractItemId: string;
|
|
9070
|
-
};
|
|
9071
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
9072
|
-
type Query = {};
|
|
9073
|
-
}
|
|
9074
|
-
namespace Responses {
|
|
9075
|
-
namespace $200 {
|
|
9076
|
-
namespace Content {
|
|
9077
|
-
interface ApplicationJson {
|
|
9078
|
-
contractItemId: string;
|
|
9079
|
-
nextTerminationDate: string;
|
|
9080
|
-
}
|
|
9081
|
-
}
|
|
9082
|
-
}
|
|
9083
|
-
namespace $400 {
|
|
9084
|
-
namespace Content {
|
|
9085
|
-
interface ApplicationJson {
|
|
9086
|
-
[k: string]: unknown;
|
|
9087
|
-
}
|
|
9088
|
-
}
|
|
9089
|
-
}
|
|
9090
|
-
namespace $404 {
|
|
9091
|
-
namespace Content {
|
|
9092
|
-
interface ApplicationJson {
|
|
9093
|
-
[k: string]: unknown;
|
|
9094
|
-
}
|
|
9095
|
-
}
|
|
9096
|
-
}
|
|
9097
|
-
namespace $429 {
|
|
9098
|
-
namespace Content {
|
|
9099
|
-
interface ApplicationJson {
|
|
9100
|
-
[k: string]: unknown;
|
|
9101
|
-
}
|
|
9102
|
-
}
|
|
9103
|
-
}
|
|
9104
|
-
namespace Default {
|
|
9105
|
-
namespace Content {
|
|
9106
|
-
interface ApplicationJson {
|
|
9107
|
-
[k: string]: unknown;
|
|
9108
|
-
}
|
|
9109
|
-
}
|
|
9110
|
-
}
|
|
9111
|
-
}
|
|
9112
|
-
}
|
|
9113
|
-
}
|
|
9114
9078
|
namespace V2CustomersCustomerIdContracts {
|
|
9115
9079
|
namespace Get {
|
|
9116
9080
|
namespace Parameters {
|
|
@@ -16710,6 +16674,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
16710
16674
|
}
|
|
16711
16675
|
}
|
|
16712
16676
|
}
|
|
16677
|
+
namespace $412 {
|
|
16678
|
+
namespace Content {
|
|
16679
|
+
interface ApplicationJson {
|
|
16680
|
+
[k: string]: unknown;
|
|
16681
|
+
}
|
|
16682
|
+
}
|
|
16683
|
+
}
|
|
16713
16684
|
namespace $429 {
|
|
16714
16685
|
namespace Content {
|
|
16715
16686
|
interface ApplicationJson {
|
|
@@ -25967,5 +25938,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
25967
25938
|
}
|
|
25968
25939
|
}
|
|
25969
25940
|
}
|
|
25941
|
+
namespace V2ContractsContractIdItemsContractItemIdNextTerminationDates { }
|
|
25970
25942
|
}
|
|
25971
25943
|
}
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.177.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.178.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": "39583964292700178eae55489bddf3e9465df248"
|
|
84
84
|
}
|