@mittwald/api-client 4.139.0 → 4.141.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 +1 -1
- package/dist/types/generated/v2/client-react.d.ts +16 -0
- package/dist/types/generated/v2/client.d.ts +46 -0
- package/dist/types/generated/v2/descriptors.d.ts +1 -1
- package/dist/types/generated/v2/types.d.ts +29 -0
- package/dist/types/version.d.ts +1 -1
- package/package.json +2 -2
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.140.0';
|
|
@@ -1173,6 +1173,8 @@ declare const buildCustomerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1173
1173
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1174
1174
|
limit?: number | undefined;
|
|
1175
1175
|
skip?: number | undefined;
|
|
1176
|
+
hasExpiry?: boolean | undefined;
|
|
1177
|
+
role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles | undefined;
|
|
1176
1178
|
} | undefined;
|
|
1177
1179
|
} | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerMembership[]>;
|
|
1178
1180
|
/** List Memberships belonging to a Customer. */
|
|
@@ -1186,6 +1188,8 @@ declare const buildCustomerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1186
1188
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1187
1189
|
limit?: number | undefined;
|
|
1188
1190
|
skip?: number | undefined;
|
|
1191
|
+
hasExpiry?: boolean | undefined;
|
|
1192
|
+
role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles | undefined;
|
|
1189
1193
|
} | undefined;
|
|
1190
1194
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerMembership[]>;
|
|
1191
1195
|
};
|
|
@@ -2324,11 +2328,14 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2324
2328
|
"x-access-token"?: string | undefined;
|
|
2325
2329
|
} | undefined;
|
|
2326
2330
|
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
2331
|
+
avatarRef?: string | undefined;
|
|
2327
2332
|
email: string;
|
|
2328
2333
|
expiresAt?: string | undefined;
|
|
2334
|
+
firstName: string;
|
|
2329
2335
|
id: string;
|
|
2330
2336
|
inherited: boolean;
|
|
2331
2337
|
inviteId?: string | undefined;
|
|
2338
|
+
lastName: string;
|
|
2332
2339
|
memberSince?: string | undefined;
|
|
2333
2340
|
mfa: boolean;
|
|
2334
2341
|
projectId: string;
|
|
@@ -2398,11 +2405,14 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2398
2405
|
"x-access-token"?: string | undefined;
|
|
2399
2406
|
} | undefined;
|
|
2400
2407
|
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
2408
|
+
avatarRef?: string | undefined;
|
|
2401
2409
|
email: string;
|
|
2402
2410
|
expiresAt?: string | undefined;
|
|
2411
|
+
firstName: string;
|
|
2403
2412
|
id: string;
|
|
2404
2413
|
inherited: boolean;
|
|
2405
2414
|
inviteId?: string | undefined;
|
|
2415
|
+
lastName: string;
|
|
2406
2416
|
memberSince?: string | undefined;
|
|
2407
2417
|
mfa: boolean;
|
|
2408
2418
|
projectId: string;
|
|
@@ -2443,6 +2453,9 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2443
2453
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2444
2454
|
limit?: number | undefined;
|
|
2445
2455
|
skip?: number | undefined;
|
|
2456
|
+
hasExpiry?: boolean | undefined;
|
|
2457
|
+
isInherited?: boolean | undefined;
|
|
2458
|
+
role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles | undefined;
|
|
2446
2459
|
} | undefined;
|
|
2447
2460
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectMembership[]>;
|
|
2448
2461
|
/** List ProjectInvites belonging to the executing user. */
|
|
@@ -2467,6 +2480,9 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2467
2480
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2468
2481
|
limit?: number | undefined;
|
|
2469
2482
|
skip?: number | undefined;
|
|
2483
|
+
hasExpiry?: boolean | undefined;
|
|
2484
|
+
isInherited?: boolean | undefined;
|
|
2485
|
+
role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles | undefined;
|
|
2470
2486
|
} | undefined;
|
|
2471
2487
|
} | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectMembership[]>;
|
|
2472
2488
|
/** List Projects belonging to the executing user. */
|
|
@@ -3146,6 +3146,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3146
3146
|
[x: string]: unknown;
|
|
3147
3147
|
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3148
3148
|
[x: string]: unknown;
|
|
3149
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3150
|
+
[x: string]: unknown;
|
|
3149
3151
|
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3150
3152
|
[x: string]: unknown;
|
|
3151
3153
|
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -3187,6 +3189,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3187
3189
|
[x: string]: unknown;
|
|
3188
3190
|
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3189
3191
|
[x: string]: unknown;
|
|
3192
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3193
|
+
[x: string]: unknown;
|
|
3190
3194
|
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3191
3195
|
[x: string]: unknown;
|
|
3192
3196
|
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -11002,6 +11006,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
11002
11006
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
11003
11007
|
limit?: number | undefined;
|
|
11004
11008
|
skip?: number | undefined;
|
|
11009
|
+
hasExpiry?: boolean | undefined;
|
|
11010
|
+
role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles | undefined;
|
|
11005
11011
|
} | undefined;
|
|
11006
11012
|
} | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
11007
11013
|
headers?: Partial<{
|
|
@@ -11011,6 +11017,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
11011
11017
|
queryParameters: {
|
|
11012
11018
|
limit?: number | undefined;
|
|
11013
11019
|
skip?: number | undefined;
|
|
11020
|
+
hasExpiry?: boolean | undefined;
|
|
11021
|
+
role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles | undefined;
|
|
11014
11022
|
} & Partial<{
|
|
11015
11023
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
11016
11024
|
}>;
|
|
@@ -11034,6 +11042,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
11034
11042
|
queryParameters: {
|
|
11035
11043
|
limit?: number | undefined;
|
|
11036
11044
|
skip?: number | undefined;
|
|
11045
|
+
hasExpiry?: boolean | undefined;
|
|
11046
|
+
role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles | undefined;
|
|
11037
11047
|
} & Partial<{
|
|
11038
11048
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
11039
11049
|
}>;
|
|
@@ -11061,6 +11071,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
11061
11071
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
11062
11072
|
limit?: number | undefined;
|
|
11063
11073
|
skip?: number | undefined;
|
|
11074
|
+
hasExpiry?: boolean | undefined;
|
|
11075
|
+
role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles | undefined;
|
|
11064
11076
|
} | undefined;
|
|
11065
11077
|
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
11066
11078
|
headers?: Partial<{
|
|
@@ -11074,6 +11086,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
11074
11086
|
queryParameters: {
|
|
11075
11087
|
limit?: number | undefined;
|
|
11076
11088
|
skip?: number | undefined;
|
|
11089
|
+
hasExpiry?: boolean | undefined;
|
|
11090
|
+
role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles | undefined;
|
|
11077
11091
|
} & Partial<{
|
|
11078
11092
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
11079
11093
|
}>;
|
|
@@ -11099,6 +11113,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
11099
11113
|
queryParameters: {
|
|
11100
11114
|
limit?: number | undefined;
|
|
11101
11115
|
skip?: number | undefined;
|
|
11116
|
+
hasExpiry?: boolean | undefined;
|
|
11117
|
+
role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles | undefined;
|
|
11102
11118
|
} & Partial<{
|
|
11103
11119
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
11104
11120
|
}>;
|
|
@@ -21299,11 +21315,14 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
21299
21315
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
21300
21316
|
}>;
|
|
21301
21317
|
}, import("@mittwald/api-client-commons").Response<{
|
|
21318
|
+
avatarRef?: string | undefined;
|
|
21302
21319
|
email: string;
|
|
21303
21320
|
expiresAt?: string | undefined;
|
|
21321
|
+
firstName: string;
|
|
21304
21322
|
id: string;
|
|
21305
21323
|
inherited: boolean;
|
|
21306
21324
|
inviteId?: string | undefined;
|
|
21325
|
+
lastName: string;
|
|
21307
21326
|
memberSince?: string | undefined;
|
|
21308
21327
|
mfa: boolean;
|
|
21309
21328
|
projectId: string;
|
|
@@ -21328,11 +21347,14 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
21328
21347
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
21329
21348
|
}>;
|
|
21330
21349
|
}, import("@mittwald/api-client-commons").Response<{
|
|
21350
|
+
avatarRef?: string | undefined;
|
|
21331
21351
|
email: string;
|
|
21332
21352
|
expiresAt?: string | undefined;
|
|
21353
|
+
firstName: string;
|
|
21333
21354
|
id: string;
|
|
21334
21355
|
inherited: boolean;
|
|
21335
21356
|
inviteId?: string | undefined;
|
|
21357
|
+
lastName: string;
|
|
21336
21358
|
memberSince?: string | undefined;
|
|
21337
21359
|
mfa: boolean;
|
|
21338
21360
|
projectId: string;
|
|
@@ -21777,11 +21799,14 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
21777
21799
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
21778
21800
|
}>;
|
|
21779
21801
|
}, import("@mittwald/api-client-commons").Response<{
|
|
21802
|
+
avatarRef?: string | undefined;
|
|
21780
21803
|
email: string;
|
|
21781
21804
|
expiresAt?: string | undefined;
|
|
21805
|
+
firstName: string;
|
|
21782
21806
|
id: string;
|
|
21783
21807
|
inherited: boolean;
|
|
21784
21808
|
inviteId?: string | undefined;
|
|
21809
|
+
lastName: string;
|
|
21785
21810
|
memberSince?: string | undefined;
|
|
21786
21811
|
mfa: boolean;
|
|
21787
21812
|
projectId: string;
|
|
@@ -21808,11 +21833,14 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
21808
21833
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
21809
21834
|
}>;
|
|
21810
21835
|
}, import("@mittwald/api-client-commons").Response<{
|
|
21836
|
+
avatarRef?: string | undefined;
|
|
21811
21837
|
email: string;
|
|
21812
21838
|
expiresAt?: string | undefined;
|
|
21839
|
+
firstName: string;
|
|
21813
21840
|
id: string;
|
|
21814
21841
|
inherited: boolean;
|
|
21815
21842
|
inviteId?: string | undefined;
|
|
21843
|
+
lastName: string;
|
|
21816
21844
|
memberSince?: string | undefined;
|
|
21817
21845
|
mfa: boolean;
|
|
21818
21846
|
projectId: string;
|
|
@@ -21914,6 +21942,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
21914
21942
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
21915
21943
|
limit?: number | undefined;
|
|
21916
21944
|
skip?: number | undefined;
|
|
21945
|
+
hasExpiry?: boolean | undefined;
|
|
21946
|
+
isInherited?: boolean | undefined;
|
|
21947
|
+
role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles | undefined;
|
|
21917
21948
|
} | undefined;
|
|
21918
21949
|
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
21919
21950
|
headers?: Partial<{
|
|
@@ -21927,6 +21958,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
21927
21958
|
queryParameters: {
|
|
21928
21959
|
limit?: number | undefined;
|
|
21929
21960
|
skip?: number | undefined;
|
|
21961
|
+
hasExpiry?: boolean | undefined;
|
|
21962
|
+
isInherited?: boolean | undefined;
|
|
21963
|
+
role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles | undefined;
|
|
21930
21964
|
} & Partial<{
|
|
21931
21965
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
21932
21966
|
}>;
|
|
@@ -21952,6 +21986,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
21952
21986
|
queryParameters: {
|
|
21953
21987
|
limit?: number | undefined;
|
|
21954
21988
|
skip?: number | undefined;
|
|
21989
|
+
hasExpiry?: boolean | undefined;
|
|
21990
|
+
isInherited?: boolean | undefined;
|
|
21991
|
+
role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles | undefined;
|
|
21955
21992
|
} & Partial<{
|
|
21956
21993
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
21957
21994
|
}>;
|
|
@@ -22034,6 +22071,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
22034
22071
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
22035
22072
|
limit?: number | undefined;
|
|
22036
22073
|
skip?: number | undefined;
|
|
22074
|
+
hasExpiry?: boolean | undefined;
|
|
22075
|
+
isInherited?: boolean | undefined;
|
|
22076
|
+
role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles | undefined;
|
|
22037
22077
|
} | undefined;
|
|
22038
22078
|
} | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
22039
22079
|
headers?: Partial<{
|
|
@@ -22043,6 +22083,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
22043
22083
|
queryParameters: {
|
|
22044
22084
|
limit?: number | undefined;
|
|
22045
22085
|
skip?: number | undefined;
|
|
22086
|
+
hasExpiry?: boolean | undefined;
|
|
22087
|
+
isInherited?: boolean | undefined;
|
|
22088
|
+
role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles | undefined;
|
|
22046
22089
|
} & Partial<{
|
|
22047
22090
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
22048
22091
|
}>;
|
|
@@ -22066,6 +22109,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
22066
22109
|
queryParameters: {
|
|
22067
22110
|
limit?: number | undefined;
|
|
22068
22111
|
skip?: number | undefined;
|
|
22112
|
+
hasExpiry?: boolean | undefined;
|
|
22113
|
+
isInherited?: boolean | undefined;
|
|
22114
|
+
role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles | undefined;
|
|
22069
22115
|
} & Partial<{
|
|
22070
22116
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
22071
22117
|
}>;
|
|
@@ -100,7 +100,7 @@ export declare const containerGetVolume: OpenAPIOperation<RequestType<Simplify<n
|
|
|
100
100
|
/** Delete a Volume belonging to a Stack. */
|
|
101
101
|
export declare const containerDeleteVolume: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdVolumesVolumeId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdVolumesVolumeId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdVolumesVolumeId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdVolumesVolumeId.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdVolumesVolumeId.Delete.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdVolumesVolumeId.Delete.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdVolumesVolumeId.Delete.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdVolumesVolumeId.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdVolumesVolumeId.Delete.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdVolumesVolumeId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
102
102
|
/** Get a ContainerImageConfig. */
|
|
103
|
-
export declare const containerGetContainerImageConfig: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContainerImageConfig.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContainerImageConfig.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContainerImageConfig.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContainerImageConfig.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerImageConfig.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerImageConfig.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerImageConfig.Get.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerImageConfig.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerImageConfig.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerImageConfig.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
103
|
+
export declare const containerGetContainerImageConfig: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContainerImageConfig.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContainerImageConfig.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContainerImageConfig.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContainerImageConfig.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerImageConfig.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerImageConfig.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerImageConfig.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerImageConfig.Get.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerImageConfig.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerImageConfig.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerImageConfig.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
104
104
|
/** Get logs belonging to a Service. */
|
|
105
105
|
export declare const containerGetServiceLogs: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdLogs.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdLogs.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdLogs.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdLogs.Get.Responses.$200.Content.TextPlain>, 200, "text/plain"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdLogs.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdLogs.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdLogs.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdLogs.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdLogs.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdLogs.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
106
106
|
/** Get a Service belonging to a Stack. */
|
|
@@ -3816,6 +3816,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3816
3816
|
role: MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
|
|
3817
3817
|
}
|
|
3818
3818
|
interface MembershipProjectMembership {
|
|
3819
|
+
/**
|
|
3820
|
+
* Avatar file reference id of the user.
|
|
3821
|
+
*/
|
|
3822
|
+
avatarRef?: string;
|
|
3819
3823
|
/**
|
|
3820
3824
|
* Email used by the invited user.
|
|
3821
3825
|
*/
|
|
@@ -3824,6 +3828,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3824
3828
|
* Time the ProjectMembership should expire at.
|
|
3825
3829
|
*/
|
|
3826
3830
|
expiresAt?: string;
|
|
3831
|
+
/**
|
|
3832
|
+
* First name of the user.
|
|
3833
|
+
*/
|
|
3834
|
+
firstName: string;
|
|
3827
3835
|
/**
|
|
3828
3836
|
* ID of the ProjectMembership.
|
|
3829
3837
|
*/
|
|
@@ -3836,6 +3844,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3836
3844
|
* ID of the ProjectInvite the membership was created from.
|
|
3837
3845
|
*/
|
|
3838
3846
|
inviteId?: string;
|
|
3847
|
+
/**
|
|
3848
|
+
* Last name of the user.
|
|
3849
|
+
*/
|
|
3850
|
+
lastName: string;
|
|
3839
3851
|
/**
|
|
3840
3852
|
* Date the projectMembership was created at.
|
|
3841
3853
|
*/
|
|
@@ -7212,6 +7224,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
7212
7224
|
}
|
|
7213
7225
|
}
|
|
7214
7226
|
}
|
|
7227
|
+
namespace $404 {
|
|
7228
|
+
namespace Content {
|
|
7229
|
+
interface ApplicationJson {
|
|
7230
|
+
[k: string]: unknown;
|
|
7231
|
+
}
|
|
7232
|
+
}
|
|
7233
|
+
}
|
|
7215
7234
|
namespace $412 {
|
|
7216
7235
|
namespace Content {
|
|
7217
7236
|
interface ApplicationJson {
|
|
@@ -10994,6 +11013,8 @@ export declare namespace MittwaldAPIV2 {
|
|
|
10994
11013
|
type Query = {
|
|
10995
11014
|
limit?: number;
|
|
10996
11015
|
skip?: number;
|
|
11016
|
+
hasExpiry?: boolean;
|
|
11017
|
+
role?: MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles;
|
|
10997
11018
|
};
|
|
10998
11019
|
}
|
|
10999
11020
|
namespace Responses {
|
|
@@ -11043,6 +11064,8 @@ export declare namespace MittwaldAPIV2 {
|
|
|
11043
11064
|
type Query = {
|
|
11044
11065
|
limit?: number;
|
|
11045
11066
|
skip?: number;
|
|
11067
|
+
hasExpiry?: boolean;
|
|
11068
|
+
role?: MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles;
|
|
11046
11069
|
};
|
|
11047
11070
|
}
|
|
11048
11071
|
namespace Responses {
|
|
@@ -19398,6 +19421,9 @@ export declare namespace MittwaldAPIV2 {
|
|
|
19398
19421
|
type Query = {
|
|
19399
19422
|
limit?: number;
|
|
19400
19423
|
skip?: number;
|
|
19424
|
+
hasExpiry?: boolean;
|
|
19425
|
+
isInherited?: boolean;
|
|
19426
|
+
role?: MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
|
|
19401
19427
|
};
|
|
19402
19428
|
}
|
|
19403
19429
|
namespace Responses {
|
|
@@ -19485,6 +19511,9 @@ export declare namespace MittwaldAPIV2 {
|
|
|
19485
19511
|
type Query = {
|
|
19486
19512
|
limit?: number;
|
|
19487
19513
|
skip?: number;
|
|
19514
|
+
hasExpiry?: boolean;
|
|
19515
|
+
isInherited?: boolean;
|
|
19516
|
+
role?: MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
|
|
19488
19517
|
};
|
|
19489
19518
|
}
|
|
19490
19519
|
namespace Responses {
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.140.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.141.0",
|
|
4
4
|
"author": "Mittwald CM Service GmbH & Co. KG <opensource@mittwald.de>",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Auto-generated client for the mittwald API",
|
|
@@ -80,5 +80,5 @@
|
|
|
80
80
|
"optional": true
|
|
81
81
|
}
|
|
82
82
|
},
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "8cce7edd13daf2a994ed606eb042baeb63d62542"
|
|
84
84
|
}
|