@mittwald/api-client 4.245.0 → 4.247.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.246.0';
|
|
@@ -459,6 +459,7 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
459
459
|
"x-access-token"?: string | undefined;
|
|
460
460
|
} | undefined;
|
|
461
461
|
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
462
|
+
deploy?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerDeploy | undefined;
|
|
462
463
|
deployedState: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceState;
|
|
463
464
|
description: string;
|
|
464
465
|
id: string;
|
|
@@ -2264,7 +2265,7 @@ declare const buildLeadFyndrApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2264
2265
|
employeeCountMax?: number | undefined;
|
|
2265
2266
|
salesVolumeMin?: number | undefined;
|
|
2266
2267
|
salesVolumeMax?: number | undefined;
|
|
2267
|
-
technologies?: string[] | undefined;
|
|
2268
|
+
technologies?: (string | "none")[] | undefined;
|
|
2268
2269
|
businessFields?: string[] | undefined;
|
|
2269
2270
|
locationCity?: string | undefined;
|
|
2270
2271
|
locationPostCode?: string | undefined;
|
|
@@ -2301,7 +2302,7 @@ declare const buildLeadFyndrApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2301
2302
|
employeeCountMax?: number | undefined;
|
|
2302
2303
|
salesVolumeMin?: number | undefined;
|
|
2303
2304
|
salesVolumeMax?: number | undefined;
|
|
2304
|
-
technologies?: string[] | undefined;
|
|
2305
|
+
technologies?: (string | "none")[] | undefined;
|
|
2305
2306
|
businessFields?: string[] | undefined;
|
|
2306
2307
|
locationCity?: string | undefined;
|
|
2307
2308
|
locationPostCode?: string | undefined;
|
|
@@ -2573,6 +2573,14 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2573
2573
|
[x: string]: {
|
|
2574
2574
|
image: string;
|
|
2575
2575
|
command?: string[] | undefined;
|
|
2576
|
+
deploy?: {
|
|
2577
|
+
resources?: {
|
|
2578
|
+
limits?: {
|
|
2579
|
+
cpus?: string | undefined;
|
|
2580
|
+
memory?: string | undefined;
|
|
2581
|
+
} | undefined;
|
|
2582
|
+
} | undefined;
|
|
2583
|
+
} | undefined;
|
|
2576
2584
|
description?: string | undefined;
|
|
2577
2585
|
entrypoint?: string[] | undefined;
|
|
2578
2586
|
environment?: {
|
|
@@ -2685,6 +2693,14 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2685
2693
|
services?: {
|
|
2686
2694
|
[x: string]: {
|
|
2687
2695
|
command?: string[] | undefined;
|
|
2696
|
+
deploy?: {
|
|
2697
|
+
resources?: {
|
|
2698
|
+
limits?: {
|
|
2699
|
+
cpus?: string | undefined;
|
|
2700
|
+
memory?: string | undefined;
|
|
2701
|
+
} | undefined;
|
|
2702
|
+
} | undefined;
|
|
2703
|
+
} | undefined;
|
|
2688
2704
|
description?: string | undefined;
|
|
2689
2705
|
entrypoint?: string[] | undefined;
|
|
2690
2706
|
environment?: {
|
|
@@ -3338,6 +3354,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3338
3354
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
3339
3355
|
}>;
|
|
3340
3356
|
}, import("@mittwald/api-client-commons").Response<{
|
|
3357
|
+
deploy?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerDeploy | undefined;
|
|
3341
3358
|
deployedState: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceState;
|
|
3342
3359
|
description: string;
|
|
3343
3360
|
id: string;
|
|
@@ -3378,6 +3395,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3378
3395
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
3379
3396
|
}>;
|
|
3380
3397
|
}, import("@mittwald/api-client-commons").Response<{
|
|
3398
|
+
deploy?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerDeploy | undefined;
|
|
3381
3399
|
deployedState: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceState;
|
|
3382
3400
|
description: string;
|
|
3383
3401
|
id: string;
|
|
@@ -23693,7 +23711,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
23693
23711
|
employeeCountMax?: number | undefined;
|
|
23694
23712
|
salesVolumeMin?: number | undefined;
|
|
23695
23713
|
salesVolumeMax?: number | undefined;
|
|
23696
|
-
technologies?: string[] | undefined;
|
|
23714
|
+
technologies?: (string | "none")[] | undefined;
|
|
23697
23715
|
businessFields?: string[] | undefined;
|
|
23698
23716
|
locationCity?: string | undefined;
|
|
23699
23717
|
locationPostCode?: string | undefined;
|
|
@@ -23726,7 +23744,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
23726
23744
|
employeeCountMax?: number | undefined;
|
|
23727
23745
|
salesVolumeMin?: number | undefined;
|
|
23728
23746
|
salesVolumeMax?: number | undefined;
|
|
23729
|
-
technologies?: string[] | undefined;
|
|
23747
|
+
technologies?: (string | "none")[] | undefined;
|
|
23730
23748
|
businessFields?: string[] | undefined;
|
|
23731
23749
|
locationCity?: string | undefined;
|
|
23732
23750
|
locationPostCode?: string | undefined;
|
|
@@ -23768,7 +23786,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
23768
23786
|
employeeCountMax?: number | undefined;
|
|
23769
23787
|
salesVolumeMin?: number | undefined;
|
|
23770
23788
|
salesVolumeMax?: number | undefined;
|
|
23771
|
-
technologies?: string[] | undefined;
|
|
23789
|
+
technologies?: (string | "none")[] | undefined;
|
|
23772
23790
|
businessFields?: string[] | undefined;
|
|
23773
23791
|
locationCity?: string | undefined;
|
|
23774
23792
|
locationPostCode?: string | undefined;
|
|
@@ -23809,7 +23827,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
23809
23827
|
employeeCountMax?: number | undefined;
|
|
23810
23828
|
salesVolumeMin?: number | undefined;
|
|
23811
23829
|
salesVolumeMax?: number | undefined;
|
|
23812
|
-
technologies?: string[] | undefined;
|
|
23830
|
+
technologies?: (string | "none")[] | undefined;
|
|
23813
23831
|
businessFields?: string[] | undefined;
|
|
23814
23832
|
locationCity?: string | undefined;
|
|
23815
23833
|
locationPostCode?: string | undefined;
|
|
@@ -23843,7 +23861,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
23843
23861
|
employeeCountMax?: number | undefined;
|
|
23844
23862
|
salesVolumeMin?: number | undefined;
|
|
23845
23863
|
salesVolumeMax?: number | undefined;
|
|
23846
|
-
technologies?: string[] | undefined;
|
|
23864
|
+
technologies?: (string | "none")[] | undefined;
|
|
23847
23865
|
businessFields?: string[] | undefined;
|
|
23848
23866
|
locationCity?: string | undefined;
|
|
23849
23867
|
locationPostCode?: string | undefined;
|
|
@@ -23890,7 +23908,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
23890
23908
|
employeeCountMax?: number | undefined;
|
|
23891
23909
|
salesVolumeMin?: number | undefined;
|
|
23892
23910
|
salesVolumeMax?: number | undefined;
|
|
23893
|
-
technologies?: string[] | undefined;
|
|
23911
|
+
technologies?: (string | "none")[] | undefined;
|
|
23894
23912
|
businessFields?: string[] | undefined;
|
|
23895
23913
|
locationCity?: string | undefined;
|
|
23896
23914
|
locationPostCode?: string | undefined;
|
|
@@ -2225,6 +2225,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2225
2225
|
* Defaults to image config on empty
|
|
2226
2226
|
*/
|
|
2227
2227
|
command?: string[];
|
|
2228
|
+
deploy?: MittwaldAPIV2.Components.Schemas.ContainerDeploy;
|
|
2228
2229
|
description?: string;
|
|
2229
2230
|
/**
|
|
2230
2231
|
* Defaults to image config on empty
|
|
@@ -2249,6 +2250,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2249
2250
|
* Defaults to image config on empty
|
|
2250
2251
|
*/
|
|
2251
2252
|
command?: string[];
|
|
2253
|
+
deploy?: MittwaldAPIV2.Components.Schemas.ContainerDeploy;
|
|
2252
2254
|
description?: string;
|
|
2253
2255
|
/**
|
|
2254
2256
|
* Defaults to image config on empty
|
|
@@ -2269,6 +2271,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2269
2271
|
volumes?: string[];
|
|
2270
2272
|
}
|
|
2271
2273
|
interface ContainerServiceResponse {
|
|
2274
|
+
deploy?: MittwaldAPIV2.Components.Schemas.ContainerDeploy;
|
|
2272
2275
|
deployedState: MittwaldAPIV2.Components.Schemas.ContainerServiceState;
|
|
2273
2276
|
description: string;
|
|
2274
2277
|
id: string;
|
|
@@ -5418,6 +5421,16 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5418
5421
|
interface MailmigrationCheckMigrationIsPossibleErrorActiveMailArchiveForAddress {
|
|
5419
5422
|
address: string;
|
|
5420
5423
|
}
|
|
5424
|
+
interface ContainerDeploy {
|
|
5425
|
+
resources?: MittwaldAPIV2.Components.Schemas.ContainerResources;
|
|
5426
|
+
}
|
|
5427
|
+
interface ContainerResourceSpec {
|
|
5428
|
+
cpus?: string;
|
|
5429
|
+
memory?: string;
|
|
5430
|
+
}
|
|
5431
|
+
interface ContainerResources {
|
|
5432
|
+
limits?: MittwaldAPIV2.Components.Schemas.ContainerResourceSpec;
|
|
5433
|
+
}
|
|
5421
5434
|
interface CommonsAddress {
|
|
5422
5435
|
street: string;
|
|
5423
5436
|
houseNumber: string;
|
|
@@ -19443,7 +19456,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
19443
19456
|
employeeCountMax?: number;
|
|
19444
19457
|
salesVolumeMin?: number;
|
|
19445
19458
|
salesVolumeMax?: number;
|
|
19446
|
-
technologies?: string[];
|
|
19459
|
+
technologies?: (string | "none")[];
|
|
19447
19460
|
/**
|
|
19448
19461
|
* @maxItems 15
|
|
19449
19462
|
*/
|
|
@@ -19508,7 +19521,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
19508
19521
|
employeeCountMax?: number;
|
|
19509
19522
|
salesVolumeMin?: number;
|
|
19510
19523
|
salesVolumeMax?: number;
|
|
19511
|
-
technologies?: string[];
|
|
19524
|
+
technologies?: (string | "none")[];
|
|
19512
19525
|
/**
|
|
19513
19526
|
* @maxItems 15
|
|
19514
19527
|
*/
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.246.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.247.0",
|
|
4
4
|
"author": "Mittwald CM Service GmbH & Co. KG <opensource@mittwald.de>",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Auto-generated client for the mittwald API",
|
|
@@ -46,11 +46,11 @@
|
|
|
46
46
|
"test:compile": "run tsc --noEmit"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@mittwald/api-client-commons": "^4.
|
|
49
|
+
"@mittwald/api-client-commons": "^4.247.0",
|
|
50
50
|
"browser-or-node": "^3.0.0"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@mittwald/api-code-generator": "^4.
|
|
53
|
+
"@mittwald/api-code-generator": "^4.247.0",
|
|
54
54
|
"@mittwald/react-use-promise": "^2.6.2",
|
|
55
55
|
"@types/node": "^22.18.11",
|
|
56
56
|
"@types/react": "^18.3.26",
|
|
@@ -80,5 +80,5 @@
|
|
|
80
80
|
"optional": true
|
|
81
81
|
}
|
|
82
82
|
},
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "fce4b22676b57159348b13403013511c6d22a3cb"
|
|
84
84
|
}
|