@mittwald/api-client 4.447.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 +7 -1
- package/dist/types/generated/v2/client.d.ts +152 -2
- package/dist/types/generated/v2/descriptors.d.ts +6 -0
- package/dist/types/generated/v2/types.d.ts +175 -1
- package/dist/types/generated/v3-next/client-react.d.ts +7 -1
- package/dist/types/generated/v3-next/client.d.ts +152 -2
- package/dist/types/generated/v3-next/descriptors.d.ts +6 -0
- package/dist/types/generated/v3-next/types.d.ts +175 -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;
|
|
@@ -1355,6 +1357,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1355
1357
|
searchTerm?: string | undefined;
|
|
1356
1358
|
anchor?: string | undefined;
|
|
1357
1359
|
hasAcceptedAllScopes?: boolean | undefined;
|
|
1360
|
+
parentCustomerId?: string | undefined;
|
|
1358
1361
|
limit?: number | undefined;
|
|
1359
1362
|
skip?: number | undefined;
|
|
1360
1363
|
page?: number | undefined;
|
|
@@ -1390,6 +1393,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1390
1393
|
} | undefined;
|
|
1391
1394
|
id: string;
|
|
1392
1395
|
nextScheduledWebhookExecution?: string | undefined;
|
|
1396
|
+
parentCustomerId: string;
|
|
1393
1397
|
pendingInstallation: boolean;
|
|
1394
1398
|
pendingRemoval: boolean;
|
|
1395
1399
|
scopeChangeAcceptanceDeadline?: string | undefined;
|
|
@@ -1511,6 +1515,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1511
1515
|
} | undefined;
|
|
1512
1516
|
id: string;
|
|
1513
1517
|
nextScheduledWebhookExecution?: string | undefined;
|
|
1518
|
+
parentCustomerId: string;
|
|
1514
1519
|
pendingInstallation: boolean;
|
|
1515
1520
|
pendingRemoval: boolean;
|
|
1516
1521
|
scopeChangeAcceptanceDeadline?: string | undefined;
|
|
@@ -1546,6 +1551,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1546
1551
|
} | undefined;
|
|
1547
1552
|
id: string;
|
|
1548
1553
|
nextScheduledWebhookExecution?: string | undefined;
|
|
1554
|
+
parentCustomerId: string;
|
|
1549
1555
|
pendingInstallation: boolean;
|
|
1550
1556
|
pendingRemoval: boolean;
|
|
1551
1557
|
scopeChangeAcceptanceDeadline?: string | undefined;
|
|
@@ -1981,7 +1987,7 @@ declare const buildCustomerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1981
1987
|
creationDate: string;
|
|
1982
1988
|
customerId: string;
|
|
1983
1989
|
customerNumber: string;
|
|
1984
|
-
deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor")[] | undefined;
|
|
1990
|
+
deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor" | "hasOrdersInProgress")[] | undefined;
|
|
1985
1991
|
executingUserRoles?: import("./types.js").MittwaldAPIV2.Components.Schemas.CustomerRole[] | undefined;
|
|
1986
1992
|
flags?: import("./types.js").MittwaldAPIV2.Components.Schemas.CustomerCustomerFlag[] | undefined;
|
|
1987
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;
|
|
@@ -9968,6 +10107,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9968
10107
|
searchTerm?: string | undefined;
|
|
9969
10108
|
anchor?: string | undefined;
|
|
9970
10109
|
hasAcceptedAllScopes?: boolean | undefined;
|
|
10110
|
+
parentCustomerId?: string | undefined;
|
|
9971
10111
|
limit?: number | undefined;
|
|
9972
10112
|
skip?: number | undefined;
|
|
9973
10113
|
page?: number | undefined;
|
|
@@ -9986,6 +10126,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
9986
10126
|
searchTerm?: string | undefined;
|
|
9987
10127
|
anchor?: string | undefined;
|
|
9988
10128
|
hasAcceptedAllScopes?: boolean | undefined;
|
|
10129
|
+
parentCustomerId?: string | undefined;
|
|
9989
10130
|
limit?: number | undefined;
|
|
9990
10131
|
skip?: number | undefined;
|
|
9991
10132
|
page?: number | undefined;
|
|
@@ -10016,6 +10157,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
10016
10157
|
searchTerm?: string | undefined;
|
|
10017
10158
|
anchor?: string | undefined;
|
|
10018
10159
|
hasAcceptedAllScopes?: boolean | undefined;
|
|
10160
|
+
parentCustomerId?: string | undefined;
|
|
10019
10161
|
limit?: number | undefined;
|
|
10020
10162
|
skip?: number | undefined;
|
|
10021
10163
|
page?: number | undefined;
|
|
@@ -10203,6 +10345,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
10203
10345
|
} | undefined;
|
|
10204
10346
|
id: string;
|
|
10205
10347
|
nextScheduledWebhookExecution?: string | undefined;
|
|
10348
|
+
parentCustomerId: string;
|
|
10206
10349
|
pendingInstallation: boolean;
|
|
10207
10350
|
pendingRemoval: boolean;
|
|
10208
10351
|
scopeChangeAcceptanceDeadline?: string | undefined;
|
|
@@ -10249,6 +10392,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
10249
10392
|
} | undefined;
|
|
10250
10393
|
id: string;
|
|
10251
10394
|
nextScheduledWebhookExecution?: string | undefined;
|
|
10395
|
+
parentCustomerId: string;
|
|
10252
10396
|
pendingInstallation: boolean;
|
|
10253
10397
|
pendingRemoval: boolean;
|
|
10254
10398
|
scopeChangeAcceptanceDeadline?: string | undefined;
|
|
@@ -11274,6 +11418,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
11274
11418
|
} | undefined;
|
|
11275
11419
|
id: string;
|
|
11276
11420
|
nextScheduledWebhookExecution?: string | undefined;
|
|
11421
|
+
parentCustomerId: string;
|
|
11277
11422
|
pendingInstallation: boolean;
|
|
11278
11423
|
pendingRemoval: boolean;
|
|
11279
11424
|
scopeChangeAcceptanceDeadline?: string | undefined;
|
|
@@ -11319,6 +11464,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
11319
11464
|
} | undefined;
|
|
11320
11465
|
id: string;
|
|
11321
11466
|
nextScheduledWebhookExecution?: string | undefined;
|
|
11467
|
+
parentCustomerId: string;
|
|
11322
11468
|
pendingInstallation: boolean;
|
|
11323
11469
|
pendingRemoval: boolean;
|
|
11324
11470
|
scopeChangeAcceptanceDeadline?: string | undefined;
|
|
@@ -11373,6 +11519,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
11373
11519
|
} | undefined;
|
|
11374
11520
|
id: string;
|
|
11375
11521
|
nextScheduledWebhookExecution?: string | undefined;
|
|
11522
|
+
parentCustomerId: string;
|
|
11376
11523
|
pendingInstallation: boolean;
|
|
11377
11524
|
pendingRemoval: boolean;
|
|
11378
11525
|
scopeChangeAcceptanceDeadline?: string | undefined;
|
|
@@ -11418,6 +11565,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
11418
11565
|
} | undefined;
|
|
11419
11566
|
id: string;
|
|
11420
11567
|
nextScheduledWebhookExecution?: string | undefined;
|
|
11568
|
+
parentCustomerId: string;
|
|
11421
11569
|
pendingInstallation: boolean;
|
|
11422
11570
|
pendingRemoval: boolean;
|
|
11423
11571
|
scopeChangeAcceptanceDeadline?: string | undefined;
|
|
@@ -14607,6 +14755,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
14607
14755
|
lastName?: string | undefined;
|
|
14608
14756
|
leitwegId?: string | undefined;
|
|
14609
14757
|
phoneNumbers?: string[] | undefined;
|
|
14758
|
+
purchaseOrderReference?: string | undefined;
|
|
14610
14759
|
title?: string | undefined;
|
|
14611
14760
|
useFormalTerm?: boolean | undefined;
|
|
14612
14761
|
} | undefined;
|
|
@@ -15200,7 +15349,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
15200
15349
|
creationDate: string;
|
|
15201
15350
|
customerId: string;
|
|
15202
15351
|
customerNumber: string;
|
|
15203
|
-
deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor")[] | undefined;
|
|
15352
|
+
deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor" | "hasOrdersInProgress")[] | undefined;
|
|
15204
15353
|
executingUserRoles?: import("./types.js").MittwaldAPIV2.Components.Schemas.CustomerRole[] | undefined;
|
|
15205
15354
|
flags?: import("./types.js").MittwaldAPIV2.Components.Schemas.CustomerCustomerFlag[] | undefined;
|
|
15206
15355
|
isAllowedToPlaceOrders?: boolean | undefined;
|
|
@@ -15245,7 +15394,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
15245
15394
|
creationDate: string;
|
|
15246
15395
|
customerId: string;
|
|
15247
15396
|
customerNumber: string;
|
|
15248
|
-
deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor")[] | undefined;
|
|
15397
|
+
deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor" | "hasOrdersInProgress")[] | undefined;
|
|
15249
15398
|
executingUserRoles?: import("./types.js").MittwaldAPIV2.Components.Schemas.CustomerRole[] | undefined;
|
|
15250
15399
|
flags?: import("./types.js").MittwaldAPIV2.Components.Schemas.CustomerCustomerFlag[] | undefined;
|
|
15251
15400
|
isAllowedToPlaceOrders?: boolean | undefined;
|
|
@@ -15289,6 +15438,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
15289
15438
|
lastName?: string | undefined;
|
|
15290
15439
|
leitwegId?: string | undefined;
|
|
15291
15440
|
phoneNumbers?: string[] | undefined;
|
|
15441
|
+
purchaseOrderReference?: string | undefined;
|
|
15292
15442
|
title?: string | undefined;
|
|
15293
15443
|
useFormalTerm?: boolean | undefined;
|
|
15294
15444
|
} | 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;
|
|
@@ -3520,6 +3537,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3520
3537
|
*/
|
|
3521
3538
|
leitwegId?: string;
|
|
3522
3539
|
phoneNumbers?: string[];
|
|
3540
|
+
/**
|
|
3541
|
+
* Purchase order reference used on invoices for this customer. Not allowed together with a leitwegId.
|
|
3542
|
+
*/
|
|
3543
|
+
purchaseOrderReference?: string;
|
|
3523
3544
|
salutation: MittwaldAPIV2.Components.Schemas.CommonsSalutation;
|
|
3524
3545
|
title?: string;
|
|
3525
3546
|
useFormalTerm?: boolean;
|
|
@@ -3543,7 +3564,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3543
3564
|
creationDate: string;
|
|
3544
3565
|
customerId: string;
|
|
3545
3566
|
customerNumber: string;
|
|
3546
|
-
deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor")[];
|
|
3567
|
+
deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor" | "hasOrdersInProgress")[];
|
|
3547
3568
|
executingUserRoles?: MittwaldAPIV2.Components.Schemas.CustomerRole[];
|
|
3548
3569
|
flags?: MittwaldAPIV2.Components.Schemas.CustomerCustomerFlag[];
|
|
3549
3570
|
isAllowedToPlaceOrders?: boolean;
|
|
@@ -4316,6 +4337,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4316
4337
|
};
|
|
4317
4338
|
id: string;
|
|
4318
4339
|
nextScheduledWebhookExecution?: string;
|
|
4340
|
+
parentCustomerId: string;
|
|
4319
4341
|
pendingInstallation: boolean;
|
|
4320
4342
|
pendingRemoval: boolean;
|
|
4321
4343
|
scopeChangeAcceptanceDeadline?: string;
|
|
@@ -4924,7 +4946,15 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4924
4946
|
emailAddress?: string;
|
|
4925
4947
|
firstName?: string;
|
|
4926
4948
|
lastName?: string;
|
|
4949
|
+
/**
|
|
4950
|
+
* German electronic invoicing routing ID (XRechnung). Only allowed for public authorities and requires a company.
|
|
4951
|
+
*/
|
|
4952
|
+
leitwegId?: string;
|
|
4927
4953
|
phoneNumbers?: string[];
|
|
4954
|
+
/**
|
|
4955
|
+
* Purchase order reference printed on the invoice. Not allowed together with a leitwegId.
|
|
4956
|
+
*/
|
|
4957
|
+
purchaseOrderReference?: string;
|
|
4928
4958
|
salutation: MittwaldAPIV2.Components.Schemas.CommonsSalutation;
|
|
4929
4959
|
title?: string;
|
|
4930
4960
|
useFormalTerm?: boolean;
|
|
@@ -6079,6 +6109,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
6079
6109
|
};
|
|
6080
6110
|
name: "app.systemsoftware-deleted";
|
|
6081
6111
|
parameters: {
|
|
6112
|
+
appInstallation: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6082
6113
|
software: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6083
6114
|
version: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6084
6115
|
};
|
|
@@ -6094,6 +6125,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
6094
6125
|
};
|
|
6095
6126
|
name: "app.systemsoftware-set";
|
|
6096
6127
|
parameters: {
|
|
6128
|
+
appInstallation: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6097
6129
|
software: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6098
6130
|
version: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6099
6131
|
};
|
|
@@ -19676,6 +19708,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
19676
19708
|
searchTerm?: string;
|
|
19677
19709
|
anchor?: string;
|
|
19678
19710
|
hasAcceptedAllScopes?: boolean;
|
|
19711
|
+
parentCustomerId?: string;
|
|
19679
19712
|
limit?: number;
|
|
19680
19713
|
skip?: number;
|
|
19681
19714
|
page?: number;
|
|
@@ -31398,5 +31431,146 @@ export declare namespace MittwaldAPIV2 {
|
|
|
31398
31431
|
}
|
|
31399
31432
|
}
|
|
31400
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
|
+
}
|
|
31401
31575
|
}
|
|
31402
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;
|
|
@@ -1355,6 +1357,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV3NextClient) => {
|
|
|
1355
1357
|
searchTerm?: string | undefined;
|
|
1356
1358
|
anchor?: string | undefined;
|
|
1357
1359
|
hasAcceptedAllScopes?: boolean | undefined;
|
|
1360
|
+
parentCustomerId?: string | undefined;
|
|
1358
1361
|
limit?: number | undefined;
|
|
1359
1362
|
skip?: number | undefined;
|
|
1360
1363
|
page?: number | undefined;
|
|
@@ -1390,6 +1393,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV3NextClient) => {
|
|
|
1390
1393
|
} | undefined;
|
|
1391
1394
|
id: string;
|
|
1392
1395
|
nextScheduledWebhookExecution?: string | undefined;
|
|
1396
|
+
parentCustomerId: string;
|
|
1393
1397
|
pendingInstallation: boolean;
|
|
1394
1398
|
pendingRemoval: boolean;
|
|
1395
1399
|
scopeChangeAcceptanceDeadline?: string | undefined;
|
|
@@ -1511,6 +1515,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV3NextClient) => {
|
|
|
1511
1515
|
} | undefined;
|
|
1512
1516
|
id: string;
|
|
1513
1517
|
nextScheduledWebhookExecution?: string | undefined;
|
|
1518
|
+
parentCustomerId: string;
|
|
1514
1519
|
pendingInstallation: boolean;
|
|
1515
1520
|
pendingRemoval: boolean;
|
|
1516
1521
|
scopeChangeAcceptanceDeadline?: string | undefined;
|
|
@@ -1546,6 +1551,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV3NextClient) => {
|
|
|
1546
1551
|
} | undefined;
|
|
1547
1552
|
id: string;
|
|
1548
1553
|
nextScheduledWebhookExecution?: string | undefined;
|
|
1554
|
+
parentCustomerId: string;
|
|
1549
1555
|
pendingInstallation: boolean;
|
|
1550
1556
|
pendingRemoval: boolean;
|
|
1551
1557
|
scopeChangeAcceptanceDeadline?: string | undefined;
|
|
@@ -1981,7 +1987,7 @@ declare const buildCustomerApi: (baseClient: MittwaldAPIV3NextClient) => {
|
|
|
1981
1987
|
creationDate: string;
|
|
1982
1988
|
customerId: string;
|
|
1983
1989
|
customerNumber: string;
|
|
1984
|
-
deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor")[] | undefined;
|
|
1990
|
+
deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor" | "hasOrdersInProgress")[] | undefined;
|
|
1985
1991
|
executingUserRoles?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldCustomerRole[] | undefined;
|
|
1986
1992
|
flags?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldCustomerCustomerFlag[] | undefined;
|
|
1987
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;
|
|
@@ -9968,6 +10107,7 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
9968
10107
|
searchTerm?: string | undefined;
|
|
9969
10108
|
anchor?: string | undefined;
|
|
9970
10109
|
hasAcceptedAllScopes?: boolean | undefined;
|
|
10110
|
+
parentCustomerId?: string | undefined;
|
|
9971
10111
|
limit?: number | undefined;
|
|
9972
10112
|
skip?: number | undefined;
|
|
9973
10113
|
page?: number | undefined;
|
|
@@ -9986,6 +10126,7 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
9986
10126
|
searchTerm?: string | undefined;
|
|
9987
10127
|
anchor?: string | undefined;
|
|
9988
10128
|
hasAcceptedAllScopes?: boolean | undefined;
|
|
10129
|
+
parentCustomerId?: string | undefined;
|
|
9989
10130
|
limit?: number | undefined;
|
|
9990
10131
|
skip?: number | undefined;
|
|
9991
10132
|
page?: number | undefined;
|
|
@@ -10016,6 +10157,7 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
10016
10157
|
searchTerm?: string | undefined;
|
|
10017
10158
|
anchor?: string | undefined;
|
|
10018
10159
|
hasAcceptedAllScopes?: boolean | undefined;
|
|
10160
|
+
parentCustomerId?: string | undefined;
|
|
10019
10161
|
limit?: number | undefined;
|
|
10020
10162
|
skip?: number | undefined;
|
|
10021
10163
|
page?: number | undefined;
|
|
@@ -10203,6 +10345,7 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
10203
10345
|
} | undefined;
|
|
10204
10346
|
id: string;
|
|
10205
10347
|
nextScheduledWebhookExecution?: string | undefined;
|
|
10348
|
+
parentCustomerId: string;
|
|
10206
10349
|
pendingInstallation: boolean;
|
|
10207
10350
|
pendingRemoval: boolean;
|
|
10208
10351
|
scopeChangeAcceptanceDeadline?: string | undefined;
|
|
@@ -10249,6 +10392,7 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
10249
10392
|
} | undefined;
|
|
10250
10393
|
id: string;
|
|
10251
10394
|
nextScheduledWebhookExecution?: string | undefined;
|
|
10395
|
+
parentCustomerId: string;
|
|
10252
10396
|
pendingInstallation: boolean;
|
|
10253
10397
|
pendingRemoval: boolean;
|
|
10254
10398
|
scopeChangeAcceptanceDeadline?: string | undefined;
|
|
@@ -11274,6 +11418,7 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
11274
11418
|
} | undefined;
|
|
11275
11419
|
id: string;
|
|
11276
11420
|
nextScheduledWebhookExecution?: string | undefined;
|
|
11421
|
+
parentCustomerId: string;
|
|
11277
11422
|
pendingInstallation: boolean;
|
|
11278
11423
|
pendingRemoval: boolean;
|
|
11279
11424
|
scopeChangeAcceptanceDeadline?: string | undefined;
|
|
@@ -11319,6 +11464,7 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
11319
11464
|
} | undefined;
|
|
11320
11465
|
id: string;
|
|
11321
11466
|
nextScheduledWebhookExecution?: string | undefined;
|
|
11467
|
+
parentCustomerId: string;
|
|
11322
11468
|
pendingInstallation: boolean;
|
|
11323
11469
|
pendingRemoval: boolean;
|
|
11324
11470
|
scopeChangeAcceptanceDeadline?: string | undefined;
|
|
@@ -11373,6 +11519,7 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
11373
11519
|
} | undefined;
|
|
11374
11520
|
id: string;
|
|
11375
11521
|
nextScheduledWebhookExecution?: string | undefined;
|
|
11522
|
+
parentCustomerId: string;
|
|
11376
11523
|
pendingInstallation: boolean;
|
|
11377
11524
|
pendingRemoval: boolean;
|
|
11378
11525
|
scopeChangeAcceptanceDeadline?: string | undefined;
|
|
@@ -11418,6 +11565,7 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
11418
11565
|
} | undefined;
|
|
11419
11566
|
id: string;
|
|
11420
11567
|
nextScheduledWebhookExecution?: string | undefined;
|
|
11568
|
+
parentCustomerId: string;
|
|
11421
11569
|
pendingInstallation: boolean;
|
|
11422
11570
|
pendingRemoval: boolean;
|
|
11423
11571
|
scopeChangeAcceptanceDeadline?: string | undefined;
|
|
@@ -14607,6 +14755,7 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
14607
14755
|
lastName?: string | undefined;
|
|
14608
14756
|
leitwegId?: string | undefined;
|
|
14609
14757
|
phoneNumbers?: string[] | undefined;
|
|
14758
|
+
purchaseOrderReference?: string | undefined;
|
|
14610
14759
|
title?: string | undefined;
|
|
14611
14760
|
useFormalTerm?: boolean | undefined;
|
|
14612
14761
|
} | undefined;
|
|
@@ -15200,7 +15349,7 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
15200
15349
|
creationDate: string;
|
|
15201
15350
|
customerId: string;
|
|
15202
15351
|
customerNumber: string;
|
|
15203
|
-
deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor")[] | undefined;
|
|
15352
|
+
deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor" | "hasOrdersInProgress")[] | undefined;
|
|
15204
15353
|
executingUserRoles?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldCustomerRole[] | undefined;
|
|
15205
15354
|
flags?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldCustomerCustomerFlag[] | undefined;
|
|
15206
15355
|
isAllowedToPlaceOrders?: boolean | undefined;
|
|
@@ -15245,7 +15394,7 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
15245
15394
|
creationDate: string;
|
|
15246
15395
|
customerId: string;
|
|
15247
15396
|
customerNumber: string;
|
|
15248
|
-
deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor")[] | undefined;
|
|
15397
|
+
deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor" | "hasOrdersInProgress")[] | undefined;
|
|
15249
15398
|
executingUserRoles?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldCustomerRole[] | undefined;
|
|
15250
15399
|
flags?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldCustomerCustomerFlag[] | undefined;
|
|
15251
15400
|
isAllowedToPlaceOrders?: boolean | undefined;
|
|
@@ -15289,6 +15438,7 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
15289
15438
|
lastName?: string | undefined;
|
|
15290
15439
|
leitwegId?: string | undefined;
|
|
15291
15440
|
phoneNumbers?: string[] | undefined;
|
|
15441
|
+
purchaseOrderReference?: string | undefined;
|
|
15292
15442
|
title?: string | undefined;
|
|
15293
15443
|
useFormalTerm?: boolean | undefined;
|
|
15294
15444
|
} | 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;
|
|
@@ -3520,6 +3537,10 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
3520
3537
|
*/
|
|
3521
3538
|
leitwegId?: string;
|
|
3522
3539
|
phoneNumbers?: string[];
|
|
3540
|
+
/**
|
|
3541
|
+
* Purchase order reference used on invoices for this customer. Not allowed together with a leitwegId.
|
|
3542
|
+
*/
|
|
3543
|
+
purchaseOrderReference?: string;
|
|
3523
3544
|
salutation: MittwaldAPIV3Next.Components.Schemas.DeMittwaldCommonsSalutation;
|
|
3524
3545
|
title?: string;
|
|
3525
3546
|
useFormalTerm?: boolean;
|
|
@@ -3543,7 +3564,7 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
3543
3564
|
creationDate: string;
|
|
3544
3565
|
customerId: string;
|
|
3545
3566
|
customerNumber: string;
|
|
3546
|
-
deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor")[];
|
|
3567
|
+
deletionProhibitedBy?: ("hasOpenInvoices" | "hasActiveContracts" | "hasActiveExtensionSubscriptions" | "isActiveContributor" | "hasOrdersInProgress")[];
|
|
3547
3568
|
executingUserRoles?: MittwaldAPIV3Next.Components.Schemas.DeMittwaldCustomerRole[];
|
|
3548
3569
|
flags?: MittwaldAPIV3Next.Components.Schemas.DeMittwaldCustomerCustomerFlag[];
|
|
3549
3570
|
isAllowedToPlaceOrders?: boolean;
|
|
@@ -4318,6 +4339,7 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
4318
4339
|
};
|
|
4319
4340
|
id: string;
|
|
4320
4341
|
nextScheduledWebhookExecution?: string;
|
|
4342
|
+
parentCustomerId: string;
|
|
4321
4343
|
pendingInstallation: boolean;
|
|
4322
4344
|
pendingRemoval: boolean;
|
|
4323
4345
|
scopeChangeAcceptanceDeadline?: string;
|
|
@@ -4928,7 +4950,15 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
4928
4950
|
emailAddress?: string;
|
|
4929
4951
|
firstName?: string;
|
|
4930
4952
|
lastName?: string;
|
|
4953
|
+
/**
|
|
4954
|
+
* German electronic invoicing routing ID (XRechnung). Only allowed for public authorities and requires a company.
|
|
4955
|
+
*/
|
|
4956
|
+
leitwegId?: string;
|
|
4931
4957
|
phoneNumbers?: string[];
|
|
4958
|
+
/**
|
|
4959
|
+
* Purchase order reference printed on the invoice. Not allowed together with a leitwegId.
|
|
4960
|
+
*/
|
|
4961
|
+
purchaseOrderReference?: string;
|
|
4932
4962
|
salutation: MittwaldAPIV3Next.Components.Schemas.DeMittwaldCommonsSalutation;
|
|
4933
4963
|
title?: string;
|
|
4934
4964
|
useFormalTerm?: boolean;
|
|
@@ -6083,6 +6113,7 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
6083
6113
|
};
|
|
6084
6114
|
name: "app.systemsoftware-deleted";
|
|
6085
6115
|
parameters: {
|
|
6116
|
+
appInstallation: MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogParameterProperty;
|
|
6086
6117
|
software: MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogParameterProperty;
|
|
6087
6118
|
version: MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogParameterProperty;
|
|
6088
6119
|
};
|
|
@@ -6098,6 +6129,7 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
6098
6129
|
};
|
|
6099
6130
|
name: "app.systemsoftware-set";
|
|
6100
6131
|
parameters: {
|
|
6132
|
+
appInstallation: MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogParameterProperty;
|
|
6101
6133
|
software: MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogParameterProperty;
|
|
6102
6134
|
version: MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogParameterProperty;
|
|
6103
6135
|
};
|
|
@@ -19650,6 +19682,7 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
19650
19682
|
searchTerm?: string;
|
|
19651
19683
|
anchor?: string;
|
|
19652
19684
|
hasAcceptedAllScopes?: boolean;
|
|
19685
|
+
parentCustomerId?: string;
|
|
19653
19686
|
limit?: number;
|
|
19654
19687
|
skip?: number;
|
|
19655
19688
|
page?: number;
|
|
@@ -31322,5 +31355,146 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
31322
31355
|
}
|
|
31323
31356
|
}
|
|
31324
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
|
+
}
|
|
31325
31499
|
}
|
|
31326
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.
|
|
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.
|
|
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.
|
|
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
|
}
|