@mittwald/api-client 4.448.0 → 4.448.2
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.js +6 -0
- package/dist/esm/generated/v2/descriptors.js +18 -0
- package/dist/esm/generated/v3-next/client.js +6 -0
- package/dist/esm/generated/v3-next/descriptors.js +18 -0
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +3 -1
- package/dist/types/generated/v2/client.d.ts +141 -2
- package/dist/types/generated/v2/descriptors.d.ts +6 -0
- package/dist/types/generated/v2/types.d.ts +167 -1
- package/dist/types/generated/v3-next/client-react.d.ts +3 -1
- package/dist/types/generated/v3-next/client.d.ts +141 -2
- package/dist/types/generated/v3-next/descriptors.d.ts +6 -0
- package/dist/types/generated/v3-next/types.d.ts +167 -1
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -83,6 +83,12 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
83
83
|
unlinkDatabase: this.requestFunctionFactory(descriptors.appUnlinkDatabase),
|
|
84
84
|
/** Get the installed `SystemSoftware' for a specific `AppInstallation`. */
|
|
85
85
|
getAppInstallationSystemSoftware: this.requestFunctionFactory(descriptors.appGetAppInstallationSystemSoftware),
|
|
86
|
+
/** Detach a staging AppInstallation from its source. */
|
|
87
|
+
detachAppinstallationStaging: this.requestFunctionFactory(descriptors.appDetachAppinstallationStaging),
|
|
88
|
+
/** Promote a staging AppInstallation. */
|
|
89
|
+
promoteAppinstallationStaging: this.requestFunctionFactory(descriptors.appPromoteAppinstallationStaging),
|
|
90
|
+
/** Request a staging for an AppInstallation. */
|
|
91
|
+
requestAppinstallationStaging: this.requestFunctionFactory(descriptors.appRequestAppinstallationStaging),
|
|
86
92
|
};
|
|
87
93
|
/** The article API allows you to read article information. */
|
|
88
94
|
article = {
|
|
@@ -2800,3 +2800,21 @@ export const appGetAppInstallationSystemSoftware = {
|
|
|
2800
2800
|
method: "GET",
|
|
2801
2801
|
operationId: "app-get-app-installation-system-software",
|
|
2802
2802
|
};
|
|
2803
|
+
/** Detach a staging AppInstallation from its source. */
|
|
2804
|
+
export const appDetachAppinstallationStaging = {
|
|
2805
|
+
path: "/v2/app-installations/{appInstallationId}/actions/detach-staging",
|
|
2806
|
+
method: "POST",
|
|
2807
|
+
operationId: "app-detach-appinstallation-staging",
|
|
2808
|
+
};
|
|
2809
|
+
/** Promote a staging AppInstallation. */
|
|
2810
|
+
export const appPromoteAppinstallationStaging = {
|
|
2811
|
+
path: "/v2/app-installations/{appInstallationId}/actions/promote-staging",
|
|
2812
|
+
method: "POST",
|
|
2813
|
+
operationId: "app-promote-appinstallation-staging",
|
|
2814
|
+
};
|
|
2815
|
+
/** Request a staging for an AppInstallation. */
|
|
2816
|
+
export const appRequestAppinstallationStaging = {
|
|
2817
|
+
path: "/v2/app-installations/{appInstallationId}/actions/staging",
|
|
2818
|
+
method: "POST",
|
|
2819
|
+
operationId: "app-request-appinstallation-staging",
|
|
2820
|
+
};
|
|
@@ -83,6 +83,12 @@ export class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
83
83
|
unlinkDatabase: this.requestFunctionFactory(descriptors.appUnlinkDatabase),
|
|
84
84
|
/** Get the installed `SystemSoftware' for a specific `AppInstallation`. */
|
|
85
85
|
getAppInstallationSystemSoftware: this.requestFunctionFactory(descriptors.appGetAppInstallationSystemSoftware),
|
|
86
|
+
/** Detach a staging AppInstallation from its source. */
|
|
87
|
+
detachAppinstallationStaging: this.requestFunctionFactory(descriptors.appDetachAppinstallationStaging),
|
|
88
|
+
/** Promote a staging AppInstallation. */
|
|
89
|
+
promoteAppinstallationStaging: this.requestFunctionFactory(descriptors.appPromoteAppinstallationStaging),
|
|
90
|
+
/** Request a staging for an AppInstallation. */
|
|
91
|
+
requestAppinstallationStaging: this.requestFunctionFactory(descriptors.appRequestAppinstallationStaging),
|
|
86
92
|
};
|
|
87
93
|
/** The article API allows you to read article information. */
|
|
88
94
|
article = {
|
|
@@ -2800,3 +2800,21 @@ export const appGetAppInstallationSystemSoftware = {
|
|
|
2800
2800
|
method: "GET",
|
|
2801
2801
|
operationId: "app-get-app-installation-system-software",
|
|
2802
2802
|
};
|
|
2803
|
+
/** Detach a staging AppInstallation from its source. */
|
|
2804
|
+
export const appDetachAppinstallationStaging = {
|
|
2805
|
+
path: "/v3-next/app-installations/{appInstallationId}/actions/detach-staging",
|
|
2806
|
+
method: "POST",
|
|
2807
|
+
operationId: "app-detach-appinstallation-staging",
|
|
2808
|
+
};
|
|
2809
|
+
/** Promote a staging AppInstallation. */
|
|
2810
|
+
export const appPromoteAppinstallationStaging = {
|
|
2811
|
+
path: "/v3-next/app-installations/{appInstallationId}/actions/promote-staging",
|
|
2812
|
+
method: "POST",
|
|
2813
|
+
operationId: "app-promote-appinstallation-staging",
|
|
2814
|
+
};
|
|
2815
|
+
/** Request a staging for an AppInstallation. */
|
|
2816
|
+
export const appRequestAppinstallationStaging = {
|
|
2817
|
+
path: "/v3-next/app-installations/{appInstallationId}/actions/staging",
|
|
2818
|
+
method: "POST",
|
|
2819
|
+
operationId: "app-request-appinstallation-staging",
|
|
2820
|
+
};
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.448.1';
|
|
@@ -160,6 +160,8 @@ declare const buildAppApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
160
160
|
screenshotId?: string | undefined;
|
|
161
161
|
screenshotRef?: string | undefined;
|
|
162
162
|
shortId: string;
|
|
163
|
+
sourceAppInstallationId?: string | undefined;
|
|
164
|
+
staging?: boolean | undefined;
|
|
163
165
|
systemSoftware: import("./types.js").MittwaldAPIV2.Components.Schemas.AppInstalledSystemSoftware[];
|
|
164
166
|
updateAvailable: boolean;
|
|
165
167
|
updatePolicy: import("./types.js").MittwaldAPIV2.Components.Schemas.AppAppUpdatePolicy;
|
|
@@ -1985,7 +1987,7 @@ declare const buildCustomerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1985
1987
|
creationDate: string;
|
|
1986
1988
|
customerId: string;
|
|
1987
1989
|
customerNumber: string;
|
|
1988
|
-
deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor")[] | undefined;
|
|
1990
|
+
deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor" | "hasOrdersInProgress")[] | undefined;
|
|
1989
1991
|
executingUserRoles?: import("./types.js").MittwaldAPIV2.Components.Schemas.CustomerRole[] | undefined;
|
|
1990
1992
|
flags?: import("./types.js").MittwaldAPIV2.Components.Schemas.CustomerCustomerFlag[] | undefined;
|
|
1991
1993
|
isAllowedToPlaceOrders?: boolean | undefined;
|
|
@@ -1100,6 +1100,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1100
1100
|
screenshotId?: string | undefined;
|
|
1101
1101
|
screenshotRef?: string | undefined;
|
|
1102
1102
|
shortId: string;
|
|
1103
|
+
sourceAppInstallationId?: string | undefined;
|
|
1104
|
+
staging?: boolean | undefined;
|
|
1103
1105
|
systemSoftware: import("./types.js").MittwaldAPIV2.Components.Schemas.AppInstalledSystemSoftware[];
|
|
1104
1106
|
updateAvailable: boolean;
|
|
1105
1107
|
updatePolicy: import("./types.js").MittwaldAPIV2.Components.Schemas.AppAppUpdatePolicy;
|
|
@@ -1150,6 +1152,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1150
1152
|
screenshotId?: string | undefined;
|
|
1151
1153
|
screenshotRef?: string | undefined;
|
|
1152
1154
|
shortId: string;
|
|
1155
|
+
sourceAppInstallationId?: string | undefined;
|
|
1156
|
+
staging?: boolean | undefined;
|
|
1153
1157
|
systemSoftware: import("./types.js").MittwaldAPIV2.Components.Schemas.AppInstalledSystemSoftware[];
|
|
1154
1158
|
updateAvailable: boolean;
|
|
1155
1159
|
updatePolicy: import("./types.js").MittwaldAPIV2.Components.Schemas.AppAppUpdatePolicy;
|
|
@@ -2238,6 +2242,139 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2238
2242
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2239
2243
|
[x: string]: unknown;
|
|
2240
2244
|
}, 429, "application/json">>>;
|
|
2245
|
+
/** Detach a staging AppInstallation from its source. */
|
|
2246
|
+
detachAppinstallationStaging: (request: {
|
|
2247
|
+
data: {
|
|
2248
|
+
description: string;
|
|
2249
|
+
};
|
|
2250
|
+
appInstallationId: string;
|
|
2251
|
+
headers?: {
|
|
2252
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2253
|
+
} | undefined;
|
|
2254
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
2255
|
+
data: {
|
|
2256
|
+
description: string;
|
|
2257
|
+
};
|
|
2258
|
+
} & {
|
|
2259
|
+
pathParameters: {
|
|
2260
|
+
appInstallationId: string;
|
|
2261
|
+
};
|
|
2262
|
+
} & {
|
|
2263
|
+
headers?: Partial<{
|
|
2264
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2265
|
+
}>;
|
|
2266
|
+
}, import("@mittwald/api-client-commons").Response<{}, 200, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
2267
|
+
[x: string]: unknown;
|
|
2268
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2269
|
+
[x: string]: unknown;
|
|
2270
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2271
|
+
[x: string]: unknown;
|
|
2272
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
2273
|
+
data: {
|
|
2274
|
+
description: string;
|
|
2275
|
+
};
|
|
2276
|
+
} & {
|
|
2277
|
+
pathParameters: {
|
|
2278
|
+
appInstallationId: string;
|
|
2279
|
+
};
|
|
2280
|
+
} & {
|
|
2281
|
+
headers?: Partial<{
|
|
2282
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2283
|
+
}>;
|
|
2284
|
+
}, import("@mittwald/api-client-commons").Response<{}, 200, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
2285
|
+
[x: string]: unknown;
|
|
2286
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2287
|
+
[x: string]: unknown;
|
|
2288
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2289
|
+
[x: string]: unknown;
|
|
2290
|
+
}, 429, "application/json">>>;
|
|
2291
|
+
/** Promote a staging AppInstallation. */
|
|
2292
|
+
promoteAppinstallationStaging: (request: {
|
|
2293
|
+
appInstallationId: string;
|
|
2294
|
+
headers?: {
|
|
2295
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2296
|
+
} | undefined;
|
|
2297
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
2298
|
+
headers?: Partial<{
|
|
2299
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2300
|
+
}>;
|
|
2301
|
+
} & {
|
|
2302
|
+
pathParameters: {
|
|
2303
|
+
appInstallationId: string;
|
|
2304
|
+
};
|
|
2305
|
+
}, import("@mittwald/api-client-commons").Response<{}, 200, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
2306
|
+
[x: string]: unknown;
|
|
2307
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2308
|
+
[x: string]: unknown;
|
|
2309
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2310
|
+
[x: string]: unknown;
|
|
2311
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
2312
|
+
headers?: Partial<{
|
|
2313
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2314
|
+
}>;
|
|
2315
|
+
} & {
|
|
2316
|
+
pathParameters: {
|
|
2317
|
+
appInstallationId: string;
|
|
2318
|
+
};
|
|
2319
|
+
}, import("@mittwald/api-client-commons").Response<{}, 200, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
2320
|
+
[x: string]: unknown;
|
|
2321
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2322
|
+
[x: string]: unknown;
|
|
2323
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2324
|
+
[x: string]: unknown;
|
|
2325
|
+
}, 429, "application/json">>>;
|
|
2326
|
+
/** Request a staging for an AppInstallation. */
|
|
2327
|
+
requestAppinstallationStaging: (request: {
|
|
2328
|
+
data: {
|
|
2329
|
+
description: string;
|
|
2330
|
+
domain: string;
|
|
2331
|
+
installationPath?: string | undefined;
|
|
2332
|
+
};
|
|
2333
|
+
appInstallationId: string;
|
|
2334
|
+
headers?: {
|
|
2335
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2336
|
+
} | undefined;
|
|
2337
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
2338
|
+
data: {
|
|
2339
|
+
description: string;
|
|
2340
|
+
domain: string;
|
|
2341
|
+
installationPath?: string | undefined;
|
|
2342
|
+
};
|
|
2343
|
+
} & {
|
|
2344
|
+
pathParameters: {
|
|
2345
|
+
appInstallationId: string;
|
|
2346
|
+
};
|
|
2347
|
+
} & {
|
|
2348
|
+
headers?: Partial<{
|
|
2349
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2350
|
+
}>;
|
|
2351
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
2352
|
+
id: string;
|
|
2353
|
+
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2354
|
+
[x: string]: unknown;
|
|
2355
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2356
|
+
[x: string]: unknown;
|
|
2357
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
2358
|
+
data: {
|
|
2359
|
+
description: string;
|
|
2360
|
+
domain: string;
|
|
2361
|
+
installationPath?: string | undefined;
|
|
2362
|
+
};
|
|
2363
|
+
} & {
|
|
2364
|
+
pathParameters: {
|
|
2365
|
+
appInstallationId: string;
|
|
2366
|
+
};
|
|
2367
|
+
} & {
|
|
2368
|
+
headers?: Partial<{
|
|
2369
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2370
|
+
}>;
|
|
2371
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
2372
|
+
id: string;
|
|
2373
|
+
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2374
|
+
[x: string]: unknown;
|
|
2375
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2376
|
+
[x: string]: unknown;
|
|
2377
|
+
}, 429, "application/json">>>;
|
|
2241
2378
|
};
|
|
2242
2379
|
/** The article API allows you to read article information. */
|
|
2243
2380
|
readonly article: {
|
|
@@ -7357,7 +7494,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
7357
7494
|
emailAddress?: string | undefined;
|
|
7358
7495
|
firstName?: string | undefined;
|
|
7359
7496
|
lastName?: string | undefined;
|
|
7497
|
+
leitwegId?: string | undefined;
|
|
7360
7498
|
phoneNumbers?: string[] | undefined;
|
|
7499
|
+
purchaseOrderReference?: string | undefined;
|
|
7361
7500
|
title?: string | undefined;
|
|
7362
7501
|
useFormalTerm?: boolean | undefined;
|
|
7363
7502
|
} | undefined;
|
|
@@ -15210,7 +15349,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
15210
15349
|
creationDate: string;
|
|
15211
15350
|
customerId: string;
|
|
15212
15351
|
customerNumber: string;
|
|
15213
|
-
deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor")[] | undefined;
|
|
15352
|
+
deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor" | "hasOrdersInProgress")[] | undefined;
|
|
15214
15353
|
executingUserRoles?: import("./types.js").MittwaldAPIV2.Components.Schemas.CustomerRole[] | undefined;
|
|
15215
15354
|
flags?: import("./types.js").MittwaldAPIV2.Components.Schemas.CustomerCustomerFlag[] | undefined;
|
|
15216
15355
|
isAllowedToPlaceOrders?: boolean | undefined;
|
|
@@ -15255,7 +15394,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
15255
15394
|
creationDate: string;
|
|
15256
15395
|
customerId: string;
|
|
15257
15396
|
customerNumber: string;
|
|
15258
|
-
deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor")[] | undefined;
|
|
15397
|
+
deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor" | "hasOrdersInProgress")[] | undefined;
|
|
15259
15398
|
executingUserRoles?: import("./types.js").MittwaldAPIV2.Components.Schemas.CustomerRole[] | undefined;
|
|
15260
15399
|
flags?: import("./types.js").MittwaldAPIV2.Components.Schemas.CustomerCustomerFlag[] | undefined;
|
|
15261
15400
|
isAllowedToPlaceOrders?: boolean | undefined;
|
|
@@ -937,3 +937,9 @@ export declare const verificationVerifyAddress: OpenAPIOperation<RequestType<Sim
|
|
|
937
937
|
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.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
938
938
|
/** Get the installed `SystemSoftware' for a specific `AppInstallation`. */
|
|
939
939
|
export declare const appGetAppInstallationSystemSoftware: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdSystemSoftware.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdSystemSoftware.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdSystemSoftware.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdSystemSoftware.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdSystemSoftware.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdSystemSoftware.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdSystemSoftware.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
940
|
+
/** Detach a staging AppInstallation from its source. */
|
|
941
|
+
export declare const appDetachAppinstallationStaging: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdActionsDetachStaging.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdActionsDetachStaging.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdActionsDetachStaging.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdActionsDetachStaging.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdActionsDetachStaging.Post.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdActionsDetachStaging.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdActionsDetachStaging.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdActionsDetachStaging.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdActionsDetachStaging.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
942
|
+
/** Promote a staging AppInstallation. */
|
|
943
|
+
export declare const appPromoteAppinstallationStaging: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdActionsPromoteStaging.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdActionsPromoteStaging.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdActionsPromoteStaging.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdActionsPromoteStaging.Post.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdActionsPromoteStaging.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdActionsPromoteStaging.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdActionsPromoteStaging.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdActionsPromoteStaging.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
944
|
+
/** Request a staging for an AppInstallation. */
|
|
945
|
+
export declare const appRequestAppinstallationStaging: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdActionsStaging.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdActionsStaging.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdActionsStaging.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdActionsStaging.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdActionsStaging.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdActionsStaging.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdActionsStaging.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdActionsStaging.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
@@ -1870,6 +1870,18 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1870
1870
|
type RequestData = InferredRequestData<typeof descriptors.appGetAppInstallationSystemSoftware>;
|
|
1871
1871
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.appGetAppInstallationSystemSoftware, TStatus>;
|
|
1872
1872
|
}
|
|
1873
|
+
namespace AppDetachAppinstallationStaging {
|
|
1874
|
+
type RequestData = InferredRequestData<typeof descriptors.appDetachAppinstallationStaging>;
|
|
1875
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.appDetachAppinstallationStaging, TStatus>;
|
|
1876
|
+
}
|
|
1877
|
+
namespace AppPromoteAppinstallationStaging {
|
|
1878
|
+
type RequestData = InferredRequestData<typeof descriptors.appPromoteAppinstallationStaging>;
|
|
1879
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.appPromoteAppinstallationStaging, TStatus>;
|
|
1880
|
+
}
|
|
1881
|
+
namespace AppRequestAppinstallationStaging {
|
|
1882
|
+
type RequestData = InferredRequestData<typeof descriptors.appRequestAppinstallationStaging>;
|
|
1883
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.appRequestAppinstallationStaging, TStatus>;
|
|
1884
|
+
}
|
|
1873
1885
|
}
|
|
1874
1886
|
namespace Components {
|
|
1875
1887
|
namespace Schemas {
|
|
@@ -2088,6 +2100,11 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2088
2100
|
screenshotId?: string;
|
|
2089
2101
|
screenshotRef?: string;
|
|
2090
2102
|
shortId: string;
|
|
2103
|
+
/**
|
|
2104
|
+
* The source AppInstallation ID for a staging AppInstallation.
|
|
2105
|
+
*/
|
|
2106
|
+
sourceAppInstallationId?: string;
|
|
2107
|
+
staging?: boolean;
|
|
2091
2108
|
systemSoftware: MittwaldAPIV2.Components.Schemas.AppInstalledSystemSoftware[];
|
|
2092
2109
|
updateAvailable: boolean;
|
|
2093
2110
|
updatePolicy: MittwaldAPIV2.Components.Schemas.AppAppUpdatePolicy;
|
|
@@ -3547,7 +3564,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3547
3564
|
creationDate: string;
|
|
3548
3565
|
customerId: string;
|
|
3549
3566
|
customerNumber: string;
|
|
3550
|
-
deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor")[];
|
|
3567
|
+
deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor" | "hasOrdersInProgress")[];
|
|
3551
3568
|
executingUserRoles?: MittwaldAPIV2.Components.Schemas.CustomerRole[];
|
|
3552
3569
|
flags?: MittwaldAPIV2.Components.Schemas.CustomerCustomerFlag[];
|
|
3553
3570
|
isAllowedToPlaceOrders?: boolean;
|
|
@@ -4929,7 +4946,15 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4929
4946
|
emailAddress?: string;
|
|
4930
4947
|
firstName?: string;
|
|
4931
4948
|
lastName?: string;
|
|
4949
|
+
/**
|
|
4950
|
+
* German electronic invoicing routing ID (XRechnung). Only allowed for public authorities and requires a company.
|
|
4951
|
+
*/
|
|
4952
|
+
leitwegId?: string;
|
|
4932
4953
|
phoneNumbers?: string[];
|
|
4954
|
+
/**
|
|
4955
|
+
* Purchase order reference printed on the invoice. Not allowed together with a leitwegId.
|
|
4956
|
+
*/
|
|
4957
|
+
purchaseOrderReference?: string;
|
|
4933
4958
|
salutation: MittwaldAPIV2.Components.Schemas.CommonsSalutation;
|
|
4934
4959
|
title?: string;
|
|
4935
4960
|
useFormalTerm?: boolean;
|
|
@@ -31406,5 +31431,146 @@ export declare namespace MittwaldAPIV2 {
|
|
|
31406
31431
|
}
|
|
31407
31432
|
}
|
|
31408
31433
|
}
|
|
31434
|
+
namespace V2AppInstallationsAppInstallationIdActionsDetachStaging {
|
|
31435
|
+
namespace Post {
|
|
31436
|
+
namespace Parameters {
|
|
31437
|
+
type Path = {
|
|
31438
|
+
appInstallationId: string;
|
|
31439
|
+
};
|
|
31440
|
+
interface RequestBody {
|
|
31441
|
+
description: string;
|
|
31442
|
+
}
|
|
31443
|
+
type Header = {};
|
|
31444
|
+
type Query = {};
|
|
31445
|
+
}
|
|
31446
|
+
namespace Responses {
|
|
31447
|
+
namespace $200 {
|
|
31448
|
+
namespace Content {
|
|
31449
|
+
type Empty = unknown;
|
|
31450
|
+
}
|
|
31451
|
+
}
|
|
31452
|
+
namespace $404 {
|
|
31453
|
+
namespace Content {
|
|
31454
|
+
interface ApplicationJson {
|
|
31455
|
+
[k: string]: unknown;
|
|
31456
|
+
}
|
|
31457
|
+
}
|
|
31458
|
+
}
|
|
31459
|
+
namespace $412 {
|
|
31460
|
+
namespace Content {
|
|
31461
|
+
interface ApplicationJson {
|
|
31462
|
+
[k: string]: unknown;
|
|
31463
|
+
}
|
|
31464
|
+
}
|
|
31465
|
+
}
|
|
31466
|
+
namespace $429 {
|
|
31467
|
+
namespace Content {
|
|
31468
|
+
interface ApplicationJson {
|
|
31469
|
+
[k: string]: unknown;
|
|
31470
|
+
}
|
|
31471
|
+
}
|
|
31472
|
+
}
|
|
31473
|
+
namespace Default {
|
|
31474
|
+
namespace Content {
|
|
31475
|
+
interface ApplicationJson {
|
|
31476
|
+
[k: string]: unknown;
|
|
31477
|
+
}
|
|
31478
|
+
}
|
|
31479
|
+
}
|
|
31480
|
+
}
|
|
31481
|
+
}
|
|
31482
|
+
}
|
|
31483
|
+
namespace V2AppInstallationsAppInstallationIdActionsPromoteStaging {
|
|
31484
|
+
namespace Post {
|
|
31485
|
+
namespace Parameters {
|
|
31486
|
+
type Path = {
|
|
31487
|
+
appInstallationId: string;
|
|
31488
|
+
};
|
|
31489
|
+
type Header = {};
|
|
31490
|
+
type Query = {};
|
|
31491
|
+
}
|
|
31492
|
+
namespace Responses {
|
|
31493
|
+
namespace $200 {
|
|
31494
|
+
namespace Content {
|
|
31495
|
+
type Empty = unknown;
|
|
31496
|
+
}
|
|
31497
|
+
}
|
|
31498
|
+
namespace $404 {
|
|
31499
|
+
namespace Content {
|
|
31500
|
+
interface ApplicationJson {
|
|
31501
|
+
[k: string]: unknown;
|
|
31502
|
+
}
|
|
31503
|
+
}
|
|
31504
|
+
}
|
|
31505
|
+
namespace $412 {
|
|
31506
|
+
namespace Content {
|
|
31507
|
+
interface ApplicationJson {
|
|
31508
|
+
[k: string]: unknown;
|
|
31509
|
+
}
|
|
31510
|
+
}
|
|
31511
|
+
}
|
|
31512
|
+
namespace $429 {
|
|
31513
|
+
namespace Content {
|
|
31514
|
+
interface ApplicationJson {
|
|
31515
|
+
[k: string]: unknown;
|
|
31516
|
+
}
|
|
31517
|
+
}
|
|
31518
|
+
}
|
|
31519
|
+
namespace Default {
|
|
31520
|
+
namespace Content {
|
|
31521
|
+
interface ApplicationJson {
|
|
31522
|
+
[k: string]: unknown;
|
|
31523
|
+
}
|
|
31524
|
+
}
|
|
31525
|
+
}
|
|
31526
|
+
}
|
|
31527
|
+
}
|
|
31528
|
+
}
|
|
31529
|
+
namespace V2AppInstallationsAppInstallationIdActionsStaging {
|
|
31530
|
+
namespace Post {
|
|
31531
|
+
namespace Parameters {
|
|
31532
|
+
type Path = {
|
|
31533
|
+
appInstallationId: string;
|
|
31534
|
+
};
|
|
31535
|
+
interface RequestBody {
|
|
31536
|
+
description: string;
|
|
31537
|
+
domain: string;
|
|
31538
|
+
installationPath?: string;
|
|
31539
|
+
}
|
|
31540
|
+
type Header = {};
|
|
31541
|
+
type Query = {};
|
|
31542
|
+
}
|
|
31543
|
+
namespace Responses {
|
|
31544
|
+
namespace $201 {
|
|
31545
|
+
namespace Content {
|
|
31546
|
+
interface ApplicationJson {
|
|
31547
|
+
id: string;
|
|
31548
|
+
}
|
|
31549
|
+
}
|
|
31550
|
+
}
|
|
31551
|
+
namespace $404 {
|
|
31552
|
+
namespace Content {
|
|
31553
|
+
interface ApplicationJson {
|
|
31554
|
+
[k: string]: unknown;
|
|
31555
|
+
}
|
|
31556
|
+
}
|
|
31557
|
+
}
|
|
31558
|
+
namespace $429 {
|
|
31559
|
+
namespace Content {
|
|
31560
|
+
interface ApplicationJson {
|
|
31561
|
+
[k: string]: unknown;
|
|
31562
|
+
}
|
|
31563
|
+
}
|
|
31564
|
+
}
|
|
31565
|
+
namespace Default {
|
|
31566
|
+
namespace Content {
|
|
31567
|
+
interface ApplicationJson {
|
|
31568
|
+
[k: string]: unknown;
|
|
31569
|
+
}
|
|
31570
|
+
}
|
|
31571
|
+
}
|
|
31572
|
+
}
|
|
31573
|
+
}
|
|
31574
|
+
}
|
|
31409
31575
|
}
|
|
31410
31576
|
}
|
|
@@ -160,6 +160,8 @@ declare const buildAppApi: (baseClient: MittwaldAPIV3NextClient) => {
|
|
|
160
160
|
screenshotId?: string | undefined;
|
|
161
161
|
screenshotRef?: string | undefined;
|
|
162
162
|
shortId: string;
|
|
163
|
+
sourceAppInstallationId?: string | undefined;
|
|
164
|
+
staging?: boolean | undefined;
|
|
163
165
|
systemSoftware: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldAppInstalledSystemSoftware[];
|
|
164
166
|
updateAvailable: boolean;
|
|
165
167
|
updatePolicy: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldAppAppUpdatePolicy;
|
|
@@ -1985,7 +1987,7 @@ declare const buildCustomerApi: (baseClient: MittwaldAPIV3NextClient) => {
|
|
|
1985
1987
|
creationDate: string;
|
|
1986
1988
|
customerId: string;
|
|
1987
1989
|
customerNumber: string;
|
|
1988
|
-
deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor")[] | undefined;
|
|
1990
|
+
deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor" | "hasOrdersInProgress")[] | undefined;
|
|
1989
1991
|
executingUserRoles?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldCustomerRole[] | undefined;
|
|
1990
1992
|
flags?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldCustomerCustomerFlag[] | undefined;
|
|
1991
1993
|
isAllowedToPlaceOrders?: boolean | undefined;
|
|
@@ -1100,6 +1100,8 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
1100
1100
|
screenshotId?: string | undefined;
|
|
1101
1101
|
screenshotRef?: string | undefined;
|
|
1102
1102
|
shortId: string;
|
|
1103
|
+
sourceAppInstallationId?: string | undefined;
|
|
1104
|
+
staging?: boolean | undefined;
|
|
1103
1105
|
systemSoftware: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldAppInstalledSystemSoftware[];
|
|
1104
1106
|
updateAvailable: boolean;
|
|
1105
1107
|
updatePolicy: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldAppAppUpdatePolicy;
|
|
@@ -1150,6 +1152,8 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
1150
1152
|
screenshotId?: string | undefined;
|
|
1151
1153
|
screenshotRef?: string | undefined;
|
|
1152
1154
|
shortId: string;
|
|
1155
|
+
sourceAppInstallationId?: string | undefined;
|
|
1156
|
+
staging?: boolean | undefined;
|
|
1153
1157
|
systemSoftware: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldAppInstalledSystemSoftware[];
|
|
1154
1158
|
updateAvailable: boolean;
|
|
1155
1159
|
updatePolicy: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldAppAppUpdatePolicy;
|
|
@@ -2238,6 +2242,139 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
2238
2242
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2239
2243
|
[x: string]: unknown;
|
|
2240
2244
|
}, 429, "application/json">>>;
|
|
2245
|
+
/** Detach a staging AppInstallation from its source. */
|
|
2246
|
+
detachAppinstallationStaging: (request: {
|
|
2247
|
+
data: {
|
|
2248
|
+
description: string;
|
|
2249
|
+
};
|
|
2250
|
+
appInstallationId: string;
|
|
2251
|
+
headers?: {
|
|
2252
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2253
|
+
} | undefined;
|
|
2254
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
2255
|
+
data: {
|
|
2256
|
+
description: string;
|
|
2257
|
+
};
|
|
2258
|
+
} & {
|
|
2259
|
+
pathParameters: {
|
|
2260
|
+
appInstallationId: string;
|
|
2261
|
+
};
|
|
2262
|
+
} & {
|
|
2263
|
+
headers?: Partial<{
|
|
2264
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2265
|
+
}>;
|
|
2266
|
+
}, import("@mittwald/api-client-commons").Response<{}, 200, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
2267
|
+
[x: string]: unknown;
|
|
2268
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2269
|
+
[x: string]: unknown;
|
|
2270
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2271
|
+
[x: string]: unknown;
|
|
2272
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
2273
|
+
data: {
|
|
2274
|
+
description: string;
|
|
2275
|
+
};
|
|
2276
|
+
} & {
|
|
2277
|
+
pathParameters: {
|
|
2278
|
+
appInstallationId: string;
|
|
2279
|
+
};
|
|
2280
|
+
} & {
|
|
2281
|
+
headers?: Partial<{
|
|
2282
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2283
|
+
}>;
|
|
2284
|
+
}, import("@mittwald/api-client-commons").Response<{}, 200, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
2285
|
+
[x: string]: unknown;
|
|
2286
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2287
|
+
[x: string]: unknown;
|
|
2288
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2289
|
+
[x: string]: unknown;
|
|
2290
|
+
}, 429, "application/json">>>;
|
|
2291
|
+
/** Promote a staging AppInstallation. */
|
|
2292
|
+
promoteAppinstallationStaging: (request: {
|
|
2293
|
+
appInstallationId: string;
|
|
2294
|
+
headers?: {
|
|
2295
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2296
|
+
} | undefined;
|
|
2297
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
2298
|
+
headers?: Partial<{
|
|
2299
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2300
|
+
}>;
|
|
2301
|
+
} & {
|
|
2302
|
+
pathParameters: {
|
|
2303
|
+
appInstallationId: string;
|
|
2304
|
+
};
|
|
2305
|
+
}, import("@mittwald/api-client-commons").Response<{}, 200, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
2306
|
+
[x: string]: unknown;
|
|
2307
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2308
|
+
[x: string]: unknown;
|
|
2309
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2310
|
+
[x: string]: unknown;
|
|
2311
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
2312
|
+
headers?: Partial<{
|
|
2313
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2314
|
+
}>;
|
|
2315
|
+
} & {
|
|
2316
|
+
pathParameters: {
|
|
2317
|
+
appInstallationId: string;
|
|
2318
|
+
};
|
|
2319
|
+
}, import("@mittwald/api-client-commons").Response<{}, 200, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
2320
|
+
[x: string]: unknown;
|
|
2321
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2322
|
+
[x: string]: unknown;
|
|
2323
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2324
|
+
[x: string]: unknown;
|
|
2325
|
+
}, 429, "application/json">>>;
|
|
2326
|
+
/** Request a staging for an AppInstallation. */
|
|
2327
|
+
requestAppinstallationStaging: (request: {
|
|
2328
|
+
data: {
|
|
2329
|
+
description: string;
|
|
2330
|
+
domain: string;
|
|
2331
|
+
installationPath?: string | undefined;
|
|
2332
|
+
};
|
|
2333
|
+
appInstallationId: string;
|
|
2334
|
+
headers?: {
|
|
2335
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2336
|
+
} | undefined;
|
|
2337
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
2338
|
+
data: {
|
|
2339
|
+
description: string;
|
|
2340
|
+
domain: string;
|
|
2341
|
+
installationPath?: string | undefined;
|
|
2342
|
+
};
|
|
2343
|
+
} & {
|
|
2344
|
+
pathParameters: {
|
|
2345
|
+
appInstallationId: string;
|
|
2346
|
+
};
|
|
2347
|
+
} & {
|
|
2348
|
+
headers?: Partial<{
|
|
2349
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2350
|
+
}>;
|
|
2351
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
2352
|
+
id: string;
|
|
2353
|
+
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2354
|
+
[x: string]: unknown;
|
|
2355
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2356
|
+
[x: string]: unknown;
|
|
2357
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
2358
|
+
data: {
|
|
2359
|
+
description: string;
|
|
2360
|
+
domain: string;
|
|
2361
|
+
installationPath?: string | undefined;
|
|
2362
|
+
};
|
|
2363
|
+
} & {
|
|
2364
|
+
pathParameters: {
|
|
2365
|
+
appInstallationId: string;
|
|
2366
|
+
};
|
|
2367
|
+
} & {
|
|
2368
|
+
headers?: Partial<{
|
|
2369
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2370
|
+
}>;
|
|
2371
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
2372
|
+
id: string;
|
|
2373
|
+
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2374
|
+
[x: string]: unknown;
|
|
2375
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2376
|
+
[x: string]: unknown;
|
|
2377
|
+
}, 429, "application/json">>>;
|
|
2241
2378
|
};
|
|
2242
2379
|
/** The article API allows you to read article information. */
|
|
2243
2380
|
readonly article: {
|
|
@@ -7357,7 +7494,9 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
7357
7494
|
emailAddress?: string | undefined;
|
|
7358
7495
|
firstName?: string | undefined;
|
|
7359
7496
|
lastName?: string | undefined;
|
|
7497
|
+
leitwegId?: string | undefined;
|
|
7360
7498
|
phoneNumbers?: string[] | undefined;
|
|
7499
|
+
purchaseOrderReference?: string | undefined;
|
|
7361
7500
|
title?: string | undefined;
|
|
7362
7501
|
useFormalTerm?: boolean | undefined;
|
|
7363
7502
|
} | undefined;
|
|
@@ -15210,7 +15349,7 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
15210
15349
|
creationDate: string;
|
|
15211
15350
|
customerId: string;
|
|
15212
15351
|
customerNumber: string;
|
|
15213
|
-
deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor")[] | undefined;
|
|
15352
|
+
deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor" | "hasOrdersInProgress")[] | undefined;
|
|
15214
15353
|
executingUserRoles?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldCustomerRole[] | undefined;
|
|
15215
15354
|
flags?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldCustomerCustomerFlag[] | undefined;
|
|
15216
15355
|
isAllowedToPlaceOrders?: boolean | undefined;
|
|
@@ -15255,7 +15394,7 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
15255
15394
|
creationDate: string;
|
|
15256
15395
|
customerId: string;
|
|
15257
15396
|
customerNumber: string;
|
|
15258
|
-
deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor")[] | undefined;
|
|
15397
|
+
deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor" | "hasOrdersInProgress")[] | undefined;
|
|
15259
15398
|
executingUserRoles?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldCustomerRole[] | undefined;
|
|
15260
15399
|
flags?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldCustomerCustomerFlag[] | undefined;
|
|
15261
15400
|
isAllowedToPlaceOrders?: boolean | undefined;
|
|
@@ -937,3 +937,9 @@ export declare const verificationVerifyAddress: OpenAPIOperation<RequestType<Sim
|
|
|
937
937
|
export declare const verificationVerifyCompany: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV3Next.Paths.V3NextActionsVerifyCompany.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV3Next.Paths.V3NextActionsVerifyCompany.Post.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextActionsVerifyCompany.Post.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextActionsVerifyCompany.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextActionsVerifyCompany.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextActionsVerifyCompany.Post.Responses.$412.Content.Empty>, 412, "empty"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextActionsVerifyCompany.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextActionsVerifyCompany.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
938
938
|
/** Get the installed `SystemSoftware' for a specific `AppInstallation`. */
|
|
939
939
|
export declare const appGetAppInstallationSystemSoftware: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdSystemSoftware.Get.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdSystemSoftware.Get.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdSystemSoftware.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdSystemSoftware.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdSystemSoftware.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdSystemSoftware.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdSystemSoftware.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
940
|
+
/** Detach a staging AppInstallation from its source. */
|
|
941
|
+
export declare const appDetachAppinstallationStaging: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdActionsDetachStaging.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdActionsDetachStaging.Post.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdActionsDetachStaging.Post.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdActionsDetachStaging.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdActionsDetachStaging.Post.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdActionsDetachStaging.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdActionsDetachStaging.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdActionsDetachStaging.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdActionsDetachStaging.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
942
|
+
/** Promote a staging AppInstallation. */
|
|
943
|
+
export declare const appPromoteAppinstallationStaging: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdActionsPromoteStaging.Post.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdActionsPromoteStaging.Post.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdActionsPromoteStaging.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdActionsPromoteStaging.Post.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdActionsPromoteStaging.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdActionsPromoteStaging.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdActionsPromoteStaging.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdActionsPromoteStaging.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
944
|
+
/** Request a staging for an AppInstallation. */
|
|
945
|
+
export declare const appRequestAppinstallationStaging: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdActionsStaging.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdActionsStaging.Post.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdActionsStaging.Post.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdActionsStaging.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdActionsStaging.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdActionsStaging.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdActionsStaging.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextAppInstallationsAppInstallationIdActionsStaging.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
@@ -1870,6 +1870,18 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
1870
1870
|
type RequestData = InferredRequestData<typeof descriptors.appGetAppInstallationSystemSoftware>;
|
|
1871
1871
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.appGetAppInstallationSystemSoftware, TStatus>;
|
|
1872
1872
|
}
|
|
1873
|
+
namespace AppDetachAppinstallationStaging {
|
|
1874
|
+
type RequestData = InferredRequestData<typeof descriptors.appDetachAppinstallationStaging>;
|
|
1875
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.appDetachAppinstallationStaging, TStatus>;
|
|
1876
|
+
}
|
|
1877
|
+
namespace AppPromoteAppinstallationStaging {
|
|
1878
|
+
type RequestData = InferredRequestData<typeof descriptors.appPromoteAppinstallationStaging>;
|
|
1879
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.appPromoteAppinstallationStaging, TStatus>;
|
|
1880
|
+
}
|
|
1881
|
+
namespace AppRequestAppinstallationStaging {
|
|
1882
|
+
type RequestData = InferredRequestData<typeof descriptors.appRequestAppinstallationStaging>;
|
|
1883
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.appRequestAppinstallationStaging, TStatus>;
|
|
1884
|
+
}
|
|
1873
1885
|
}
|
|
1874
1886
|
namespace Components {
|
|
1875
1887
|
namespace Schemas {
|
|
@@ -2088,6 +2100,11 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
2088
2100
|
screenshotId?: string;
|
|
2089
2101
|
screenshotRef?: string;
|
|
2090
2102
|
shortId: string;
|
|
2103
|
+
/**
|
|
2104
|
+
* The source AppInstallation ID for a staging AppInstallation.
|
|
2105
|
+
*/
|
|
2106
|
+
sourceAppInstallationId?: string;
|
|
2107
|
+
staging?: boolean;
|
|
2091
2108
|
systemSoftware: MittwaldAPIV3Next.Components.Schemas.DeMittwaldAppInstalledSystemSoftware[];
|
|
2092
2109
|
updateAvailable: boolean;
|
|
2093
2110
|
updatePolicy: MittwaldAPIV3Next.Components.Schemas.DeMittwaldAppAppUpdatePolicy;
|
|
@@ -3547,7 +3564,7 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
3547
3564
|
creationDate: string;
|
|
3548
3565
|
customerId: string;
|
|
3549
3566
|
customerNumber: string;
|
|
3550
|
-
deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor")[];
|
|
3567
|
+
deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor" | "hasOrdersInProgress")[];
|
|
3551
3568
|
executingUserRoles?: MittwaldAPIV3Next.Components.Schemas.DeMittwaldCustomerRole[];
|
|
3552
3569
|
flags?: MittwaldAPIV3Next.Components.Schemas.DeMittwaldCustomerCustomerFlag[];
|
|
3553
3570
|
isAllowedToPlaceOrders?: boolean;
|
|
@@ -4933,7 +4950,15 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
4933
4950
|
emailAddress?: string;
|
|
4934
4951
|
firstName?: string;
|
|
4935
4952
|
lastName?: string;
|
|
4953
|
+
/**
|
|
4954
|
+
* German electronic invoicing routing ID (XRechnung). Only allowed for public authorities and requires a company.
|
|
4955
|
+
*/
|
|
4956
|
+
leitwegId?: string;
|
|
4936
4957
|
phoneNumbers?: string[];
|
|
4958
|
+
/**
|
|
4959
|
+
* Purchase order reference printed on the invoice. Not allowed together with a leitwegId.
|
|
4960
|
+
*/
|
|
4961
|
+
purchaseOrderReference?: string;
|
|
4937
4962
|
salutation: MittwaldAPIV3Next.Components.Schemas.DeMittwaldCommonsSalutation;
|
|
4938
4963
|
title?: string;
|
|
4939
4964
|
useFormalTerm?: boolean;
|
|
@@ -31330,5 +31355,146 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
31330
31355
|
}
|
|
31331
31356
|
}
|
|
31332
31357
|
}
|
|
31358
|
+
namespace V3NextAppInstallationsAppInstallationIdActionsDetachStaging {
|
|
31359
|
+
namespace Post {
|
|
31360
|
+
namespace Parameters {
|
|
31361
|
+
type Path = {
|
|
31362
|
+
appInstallationId: string;
|
|
31363
|
+
};
|
|
31364
|
+
interface RequestBody {
|
|
31365
|
+
description: string;
|
|
31366
|
+
}
|
|
31367
|
+
type Header = {};
|
|
31368
|
+
type Query = {};
|
|
31369
|
+
}
|
|
31370
|
+
namespace Responses {
|
|
31371
|
+
namespace $200 {
|
|
31372
|
+
namespace Content {
|
|
31373
|
+
type Empty = unknown;
|
|
31374
|
+
}
|
|
31375
|
+
}
|
|
31376
|
+
namespace $404 {
|
|
31377
|
+
namespace Content {
|
|
31378
|
+
interface ApplicationJson {
|
|
31379
|
+
[k: string]: unknown;
|
|
31380
|
+
}
|
|
31381
|
+
}
|
|
31382
|
+
}
|
|
31383
|
+
namespace $412 {
|
|
31384
|
+
namespace Content {
|
|
31385
|
+
interface ApplicationJson {
|
|
31386
|
+
[k: string]: unknown;
|
|
31387
|
+
}
|
|
31388
|
+
}
|
|
31389
|
+
}
|
|
31390
|
+
namespace $429 {
|
|
31391
|
+
namespace Content {
|
|
31392
|
+
interface ApplicationJson {
|
|
31393
|
+
[k: string]: unknown;
|
|
31394
|
+
}
|
|
31395
|
+
}
|
|
31396
|
+
}
|
|
31397
|
+
namespace Default {
|
|
31398
|
+
namespace Content {
|
|
31399
|
+
interface ApplicationJson {
|
|
31400
|
+
[k: string]: unknown;
|
|
31401
|
+
}
|
|
31402
|
+
}
|
|
31403
|
+
}
|
|
31404
|
+
}
|
|
31405
|
+
}
|
|
31406
|
+
}
|
|
31407
|
+
namespace V3NextAppInstallationsAppInstallationIdActionsPromoteStaging {
|
|
31408
|
+
namespace Post {
|
|
31409
|
+
namespace Parameters {
|
|
31410
|
+
type Path = {
|
|
31411
|
+
appInstallationId: string;
|
|
31412
|
+
};
|
|
31413
|
+
type Header = {};
|
|
31414
|
+
type Query = {};
|
|
31415
|
+
}
|
|
31416
|
+
namespace Responses {
|
|
31417
|
+
namespace $200 {
|
|
31418
|
+
namespace Content {
|
|
31419
|
+
type Empty = unknown;
|
|
31420
|
+
}
|
|
31421
|
+
}
|
|
31422
|
+
namespace $404 {
|
|
31423
|
+
namespace Content {
|
|
31424
|
+
interface ApplicationJson {
|
|
31425
|
+
[k: string]: unknown;
|
|
31426
|
+
}
|
|
31427
|
+
}
|
|
31428
|
+
}
|
|
31429
|
+
namespace $412 {
|
|
31430
|
+
namespace Content {
|
|
31431
|
+
interface ApplicationJson {
|
|
31432
|
+
[k: string]: unknown;
|
|
31433
|
+
}
|
|
31434
|
+
}
|
|
31435
|
+
}
|
|
31436
|
+
namespace $429 {
|
|
31437
|
+
namespace Content {
|
|
31438
|
+
interface ApplicationJson {
|
|
31439
|
+
[k: string]: unknown;
|
|
31440
|
+
}
|
|
31441
|
+
}
|
|
31442
|
+
}
|
|
31443
|
+
namespace Default {
|
|
31444
|
+
namespace Content {
|
|
31445
|
+
interface ApplicationJson {
|
|
31446
|
+
[k: string]: unknown;
|
|
31447
|
+
}
|
|
31448
|
+
}
|
|
31449
|
+
}
|
|
31450
|
+
}
|
|
31451
|
+
}
|
|
31452
|
+
}
|
|
31453
|
+
namespace V3NextAppInstallationsAppInstallationIdActionsStaging {
|
|
31454
|
+
namespace Post {
|
|
31455
|
+
namespace Parameters {
|
|
31456
|
+
type Path = {
|
|
31457
|
+
appInstallationId: string;
|
|
31458
|
+
};
|
|
31459
|
+
interface RequestBody {
|
|
31460
|
+
description: string;
|
|
31461
|
+
domain: string;
|
|
31462
|
+
installationPath?: string;
|
|
31463
|
+
}
|
|
31464
|
+
type Header = {};
|
|
31465
|
+
type Query = {};
|
|
31466
|
+
}
|
|
31467
|
+
namespace Responses {
|
|
31468
|
+
namespace $201 {
|
|
31469
|
+
namespace Content {
|
|
31470
|
+
interface ApplicationJson {
|
|
31471
|
+
id: string;
|
|
31472
|
+
}
|
|
31473
|
+
}
|
|
31474
|
+
}
|
|
31475
|
+
namespace $404 {
|
|
31476
|
+
namespace Content {
|
|
31477
|
+
interface ApplicationJson {
|
|
31478
|
+
[k: string]: unknown;
|
|
31479
|
+
}
|
|
31480
|
+
}
|
|
31481
|
+
}
|
|
31482
|
+
namespace $429 {
|
|
31483
|
+
namespace Content {
|
|
31484
|
+
interface ApplicationJson {
|
|
31485
|
+
[k: string]: unknown;
|
|
31486
|
+
}
|
|
31487
|
+
}
|
|
31488
|
+
}
|
|
31489
|
+
namespace Default {
|
|
31490
|
+
namespace Content {
|
|
31491
|
+
interface ApplicationJson {
|
|
31492
|
+
[k: string]: unknown;
|
|
31493
|
+
}
|
|
31494
|
+
}
|
|
31495
|
+
}
|
|
31496
|
+
}
|
|
31497
|
+
}
|
|
31498
|
+
}
|
|
31333
31499
|
}
|
|
31334
31500
|
}
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.448.1';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.448.
|
|
3
|
+
"version": "4.448.2",
|
|
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",
|
|
@@ -72,11 +72,11 @@
|
|
|
72
72
|
"test:compile": "run tsc --noEmit"
|
|
73
73
|
},
|
|
74
74
|
"dependencies": {
|
|
75
|
-
"@mittwald/api-client-commons": "^4.448.
|
|
75
|
+
"@mittwald/api-client-commons": "^4.448.2",
|
|
76
76
|
"browser-or-node": "^3.0.0"
|
|
77
77
|
},
|
|
78
78
|
"devDependencies": {
|
|
79
|
-
"@mittwald/api-code-generator": "^4.448.
|
|
79
|
+
"@mittwald/api-code-generator": "^4.448.2",
|
|
80
80
|
"@mittwald/react-use-promise": "^2.6.2",
|
|
81
81
|
"@types/node": "^22.18.11",
|
|
82
82
|
"@types/react": "^18.3.26",
|
|
@@ -106,5 +106,5 @@
|
|
|
106
106
|
"optional": true
|
|
107
107
|
}
|
|
108
108
|
},
|
|
109
|
-
"gitHead": "
|
|
109
|
+
"gitHead": "3c465d1201cd677f2f8132c9f3f1de1c795646ef"
|
|
110
110
|
}
|