@mittwald/api-client 4.138.0 → 4.140.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/generated/v2/client.js +1 -1
- package/dist/esm/generated/v2/descriptors.js +1 -1
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +21 -0
- package/dist/types/generated/v2/client.d.ts +58 -1
- package/dist/types/generated/v2/descriptors.d.ts +1 -1
- package/dist/types/generated/v2/types.d.ts +27 -0
- package/dist/types/version.d.ts +1 -1
- package/package.json +2 -2
|
@@ -543,7 +543,7 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
543
543
|
updateDeliveryBoxPassword: this.requestFunctionFactory(descriptors.mailUpdateDeliveryBoxPassword),
|
|
544
544
|
/** Update a MailAddress. */
|
|
545
545
|
updateMailAddressAddress: this.requestFunctionFactory(descriptors.mailUpdateMailAddressAddress),
|
|
546
|
-
/** Update the
|
|
546
|
+
/** Update the catch-all of a MailAddress. */
|
|
547
547
|
updateMailAddressCatchAll: this.requestFunctionFactory(descriptors.mailUpdateMailAddressCatchAll),
|
|
548
548
|
/** Update a mail setting of a Project. */
|
|
549
549
|
updateProjectMailSetting: this.requestFunctionFactory(descriptors.mailUpdateProjectMailSetting),
|
|
@@ -1456,7 +1456,7 @@ export const mailUpdateMailAddressAddress = {
|
|
|
1456
1456
|
method: "PATCH",
|
|
1457
1457
|
operationId: "mail-update-mail-address-address",
|
|
1458
1458
|
};
|
|
1459
|
-
/** Update the
|
|
1459
|
+
/** Update the catch-all of a MailAddress. */
|
|
1460
1460
|
export const mailUpdateMailAddressCatchAll = {
|
|
1461
1461
|
path: "/v2/mail-addresses/{mailAddressId}/catch-all",
|
|
1462
1462
|
method: "PATCH",
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.139.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
|
};
|
|
@@ -1885,9 +1889,14 @@ declare const buildMailApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1885
1889
|
queryParameters?: {
|
|
1886
1890
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1887
1891
|
search?: string | undefined;
|
|
1892
|
+
forwardAddress?: boolean | undefined;
|
|
1893
|
+
catchAll?: boolean | undefined;
|
|
1894
|
+
autoResponder?: boolean | undefined;
|
|
1888
1895
|
limit?: number | undefined;
|
|
1889
1896
|
skip?: number | undefined;
|
|
1890
1897
|
page?: number | undefined;
|
|
1898
|
+
sort?: ("address.domain" | "address.local" | "updatedAt" | "projectId" | "mailbox.quota" | "mailbox.name")[] | undefined;
|
|
1899
|
+
order?: ("asc" | "desc")[] | undefined;
|
|
1891
1900
|
} | undefined;
|
|
1892
1901
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MailMailAddress[]>;
|
|
1893
1902
|
/** Get a DeliveryBox. */
|
|
@@ -2319,11 +2328,14 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2319
2328
|
"x-access-token"?: string | undefined;
|
|
2320
2329
|
} | undefined;
|
|
2321
2330
|
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
2331
|
+
avatarRef?: string | undefined;
|
|
2322
2332
|
email: string;
|
|
2323
2333
|
expiresAt?: string | undefined;
|
|
2334
|
+
firstName: string;
|
|
2324
2335
|
id: string;
|
|
2325
2336
|
inherited: boolean;
|
|
2326
2337
|
inviteId?: string | undefined;
|
|
2338
|
+
lastName: string;
|
|
2327
2339
|
memberSince?: string | undefined;
|
|
2328
2340
|
mfa: boolean;
|
|
2329
2341
|
projectId: string;
|
|
@@ -2393,11 +2405,14 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2393
2405
|
"x-access-token"?: string | undefined;
|
|
2394
2406
|
} | undefined;
|
|
2395
2407
|
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
2408
|
+
avatarRef?: string | undefined;
|
|
2396
2409
|
email: string;
|
|
2397
2410
|
expiresAt?: string | undefined;
|
|
2411
|
+
firstName: string;
|
|
2398
2412
|
id: string;
|
|
2399
2413
|
inherited: boolean;
|
|
2400
2414
|
inviteId?: string | undefined;
|
|
2415
|
+
lastName: string;
|
|
2401
2416
|
memberSince?: string | undefined;
|
|
2402
2417
|
mfa: boolean;
|
|
2403
2418
|
projectId: string;
|
|
@@ -2438,6 +2453,9 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2438
2453
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2439
2454
|
limit?: number | undefined;
|
|
2440
2455
|
skip?: number | undefined;
|
|
2456
|
+
hasExpiry?: boolean | undefined;
|
|
2457
|
+
isInherited?: boolean | undefined;
|
|
2458
|
+
role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles | undefined;
|
|
2441
2459
|
} | undefined;
|
|
2442
2460
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectMembership[]>;
|
|
2443
2461
|
/** List ProjectInvites belonging to the executing user. */
|
|
@@ -2462,6 +2480,9 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2462
2480
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2463
2481
|
limit?: number | undefined;
|
|
2464
2482
|
skip?: number | undefined;
|
|
2483
|
+
hasExpiry?: boolean | undefined;
|
|
2484
|
+
isInherited?: boolean | undefined;
|
|
2485
|
+
role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles | undefined;
|
|
2465
2486
|
} | undefined;
|
|
2466
2487
|
} | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectMembership[]>;
|
|
2467
2488
|
/** List Projects belonging to the executing user. */
|
|
@@ -11002,6 +11002,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
11002
11002
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
11003
11003
|
limit?: number | undefined;
|
|
11004
11004
|
skip?: number | undefined;
|
|
11005
|
+
hasExpiry?: boolean | undefined;
|
|
11006
|
+
role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles | undefined;
|
|
11005
11007
|
} | undefined;
|
|
11006
11008
|
} | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
11007
11009
|
headers?: Partial<{
|
|
@@ -11011,6 +11013,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
11011
11013
|
queryParameters: {
|
|
11012
11014
|
limit?: number | undefined;
|
|
11013
11015
|
skip?: number | undefined;
|
|
11016
|
+
hasExpiry?: boolean | undefined;
|
|
11017
|
+
role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles | undefined;
|
|
11014
11018
|
} & Partial<{
|
|
11015
11019
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
11016
11020
|
}>;
|
|
@@ -11034,6 +11038,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
11034
11038
|
queryParameters: {
|
|
11035
11039
|
limit?: number | undefined;
|
|
11036
11040
|
skip?: number | undefined;
|
|
11041
|
+
hasExpiry?: boolean | undefined;
|
|
11042
|
+
role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles | undefined;
|
|
11037
11043
|
} & Partial<{
|
|
11038
11044
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
11039
11045
|
}>;
|
|
@@ -11061,6 +11067,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
11061
11067
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
11062
11068
|
limit?: number | undefined;
|
|
11063
11069
|
skip?: number | undefined;
|
|
11070
|
+
hasExpiry?: boolean | undefined;
|
|
11071
|
+
role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles | undefined;
|
|
11064
11072
|
} | undefined;
|
|
11065
11073
|
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
11066
11074
|
headers?: Partial<{
|
|
@@ -11074,6 +11082,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
11074
11082
|
queryParameters: {
|
|
11075
11083
|
limit?: number | undefined;
|
|
11076
11084
|
skip?: number | undefined;
|
|
11085
|
+
hasExpiry?: boolean | undefined;
|
|
11086
|
+
role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles | undefined;
|
|
11077
11087
|
} & Partial<{
|
|
11078
11088
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
11079
11089
|
}>;
|
|
@@ -11099,6 +11109,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
11099
11109
|
queryParameters: {
|
|
11100
11110
|
limit?: number | undefined;
|
|
11101
11111
|
skip?: number | undefined;
|
|
11112
|
+
hasExpiry?: boolean | undefined;
|
|
11113
|
+
role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles | undefined;
|
|
11102
11114
|
} & Partial<{
|
|
11103
11115
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
11104
11116
|
}>;
|
|
@@ -15797,9 +15809,14 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
15797
15809
|
queryParameters?: {
|
|
15798
15810
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
15799
15811
|
search?: string | undefined;
|
|
15812
|
+
forwardAddress?: boolean | undefined;
|
|
15813
|
+
catchAll?: boolean | undefined;
|
|
15814
|
+
autoResponder?: boolean | undefined;
|
|
15800
15815
|
limit?: number | undefined;
|
|
15801
15816
|
skip?: number | undefined;
|
|
15802
15817
|
page?: number | undefined;
|
|
15818
|
+
sort?: ("address.domain" | "address.local" | "updatedAt" | "projectId" | "mailbox.quota" | "mailbox.name")[] | undefined;
|
|
15819
|
+
order?: ("asc" | "desc")[] | undefined;
|
|
15803
15820
|
} | undefined;
|
|
15804
15821
|
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
15805
15822
|
headers?: Partial<{
|
|
@@ -15812,9 +15829,14 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
15812
15829
|
} & {
|
|
15813
15830
|
queryParameters: {
|
|
15814
15831
|
search?: string | undefined;
|
|
15832
|
+
forwardAddress?: boolean | undefined;
|
|
15833
|
+
catchAll?: boolean | undefined;
|
|
15834
|
+
autoResponder?: boolean | undefined;
|
|
15815
15835
|
limit?: number | undefined;
|
|
15816
15836
|
skip?: number | undefined;
|
|
15817
15837
|
page?: number | undefined;
|
|
15838
|
+
sort?: ("address.domain" | "address.local" | "updatedAt" | "projectId" | "mailbox.quota" | "mailbox.name")[] | undefined;
|
|
15839
|
+
order?: ("asc" | "desc")[] | undefined;
|
|
15818
15840
|
} & Partial<{
|
|
15819
15841
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
15820
15842
|
}>;
|
|
@@ -15847,9 +15869,14 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
15847
15869
|
} & {
|
|
15848
15870
|
queryParameters: {
|
|
15849
15871
|
search?: string | undefined;
|
|
15872
|
+
forwardAddress?: boolean | undefined;
|
|
15873
|
+
catchAll?: boolean | undefined;
|
|
15874
|
+
autoResponder?: boolean | undefined;
|
|
15850
15875
|
limit?: number | undefined;
|
|
15851
15876
|
skip?: number | undefined;
|
|
15852
15877
|
page?: number | undefined;
|
|
15878
|
+
sort?: ("address.domain" | "address.local" | "updatedAt" | "projectId" | "mailbox.quota" | "mailbox.name")[] | undefined;
|
|
15879
|
+
order?: ("asc" | "desc")[] | undefined;
|
|
15853
15880
|
} & Partial<{
|
|
15854
15881
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
15855
15882
|
}>;
|
|
@@ -16590,7 +16617,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
16590
16617
|
}, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
16591
16618
|
[x: string]: unknown;
|
|
16592
16619
|
}, 503, "application/json">>>;
|
|
16593
|
-
/** Update the
|
|
16620
|
+
/** Update the catch-all of a MailAddress. */
|
|
16594
16621
|
updateMailAddressCatchAll: (request: {
|
|
16595
16622
|
data: {
|
|
16596
16623
|
active: boolean;
|
|
@@ -21284,11 +21311,14 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
21284
21311
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
21285
21312
|
}>;
|
|
21286
21313
|
}, import("@mittwald/api-client-commons").Response<{
|
|
21314
|
+
avatarRef?: string | undefined;
|
|
21287
21315
|
email: string;
|
|
21288
21316
|
expiresAt?: string | undefined;
|
|
21317
|
+
firstName: string;
|
|
21289
21318
|
id: string;
|
|
21290
21319
|
inherited: boolean;
|
|
21291
21320
|
inviteId?: string | undefined;
|
|
21321
|
+
lastName: string;
|
|
21292
21322
|
memberSince?: string | undefined;
|
|
21293
21323
|
mfa: boolean;
|
|
21294
21324
|
projectId: string;
|
|
@@ -21313,11 +21343,14 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
21313
21343
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
21314
21344
|
}>;
|
|
21315
21345
|
}, import("@mittwald/api-client-commons").Response<{
|
|
21346
|
+
avatarRef?: string | undefined;
|
|
21316
21347
|
email: string;
|
|
21317
21348
|
expiresAt?: string | undefined;
|
|
21349
|
+
firstName: string;
|
|
21318
21350
|
id: string;
|
|
21319
21351
|
inherited: boolean;
|
|
21320
21352
|
inviteId?: string | undefined;
|
|
21353
|
+
lastName: string;
|
|
21321
21354
|
memberSince?: string | undefined;
|
|
21322
21355
|
mfa: boolean;
|
|
21323
21356
|
projectId: string;
|
|
@@ -21762,11 +21795,14 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
21762
21795
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
21763
21796
|
}>;
|
|
21764
21797
|
}, import("@mittwald/api-client-commons").Response<{
|
|
21798
|
+
avatarRef?: string | undefined;
|
|
21765
21799
|
email: string;
|
|
21766
21800
|
expiresAt?: string | undefined;
|
|
21801
|
+
firstName: string;
|
|
21767
21802
|
id: string;
|
|
21768
21803
|
inherited: boolean;
|
|
21769
21804
|
inviteId?: string | undefined;
|
|
21805
|
+
lastName: string;
|
|
21770
21806
|
memberSince?: string | undefined;
|
|
21771
21807
|
mfa: boolean;
|
|
21772
21808
|
projectId: string;
|
|
@@ -21793,11 +21829,14 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
21793
21829
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
21794
21830
|
}>;
|
|
21795
21831
|
}, import("@mittwald/api-client-commons").Response<{
|
|
21832
|
+
avatarRef?: string | undefined;
|
|
21796
21833
|
email: string;
|
|
21797
21834
|
expiresAt?: string | undefined;
|
|
21835
|
+
firstName: string;
|
|
21798
21836
|
id: string;
|
|
21799
21837
|
inherited: boolean;
|
|
21800
21838
|
inviteId?: string | undefined;
|
|
21839
|
+
lastName: string;
|
|
21801
21840
|
memberSince?: string | undefined;
|
|
21802
21841
|
mfa: boolean;
|
|
21803
21842
|
projectId: string;
|
|
@@ -21899,6 +21938,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
21899
21938
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
21900
21939
|
limit?: number | undefined;
|
|
21901
21940
|
skip?: number | undefined;
|
|
21941
|
+
hasExpiry?: boolean | undefined;
|
|
21942
|
+
isInherited?: boolean | undefined;
|
|
21943
|
+
role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles | undefined;
|
|
21902
21944
|
} | undefined;
|
|
21903
21945
|
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
21904
21946
|
headers?: Partial<{
|
|
@@ -21912,6 +21954,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
21912
21954
|
queryParameters: {
|
|
21913
21955
|
limit?: number | undefined;
|
|
21914
21956
|
skip?: number | undefined;
|
|
21957
|
+
hasExpiry?: boolean | undefined;
|
|
21958
|
+
isInherited?: boolean | undefined;
|
|
21959
|
+
role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles | undefined;
|
|
21915
21960
|
} & Partial<{
|
|
21916
21961
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
21917
21962
|
}>;
|
|
@@ -21937,6 +21982,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
21937
21982
|
queryParameters: {
|
|
21938
21983
|
limit?: number | undefined;
|
|
21939
21984
|
skip?: number | undefined;
|
|
21985
|
+
hasExpiry?: boolean | undefined;
|
|
21986
|
+
isInherited?: boolean | undefined;
|
|
21987
|
+
role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles | undefined;
|
|
21940
21988
|
} & Partial<{
|
|
21941
21989
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
21942
21990
|
}>;
|
|
@@ -22019,6 +22067,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
22019
22067
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
22020
22068
|
limit?: number | undefined;
|
|
22021
22069
|
skip?: number | undefined;
|
|
22070
|
+
hasExpiry?: boolean | undefined;
|
|
22071
|
+
isInherited?: boolean | undefined;
|
|
22072
|
+
role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles | undefined;
|
|
22022
22073
|
} | undefined;
|
|
22023
22074
|
} | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
22024
22075
|
headers?: Partial<{
|
|
@@ -22028,6 +22079,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
22028
22079
|
queryParameters: {
|
|
22029
22080
|
limit?: number | undefined;
|
|
22030
22081
|
skip?: number | undefined;
|
|
22082
|
+
hasExpiry?: boolean | undefined;
|
|
22083
|
+
isInherited?: boolean | undefined;
|
|
22084
|
+
role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles | undefined;
|
|
22031
22085
|
} & Partial<{
|
|
22032
22086
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
22033
22087
|
}>;
|
|
@@ -22051,6 +22105,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
22051
22105
|
queryParameters: {
|
|
22052
22106
|
limit?: number | undefined;
|
|
22053
22107
|
skip?: number | undefined;
|
|
22108
|
+
hasExpiry?: boolean | undefined;
|
|
22109
|
+
isInherited?: boolean | undefined;
|
|
22110
|
+
role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles | undefined;
|
|
22054
22111
|
} & Partial<{
|
|
22055
22112
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
22056
22113
|
}>;
|
|
@@ -489,7 +489,7 @@ export declare const mailUpdateDeliveryBoxDescription: OpenAPIOperation<RequestT
|
|
|
489
489
|
export declare const mailUpdateDeliveryBoxPassword: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2DeliveryBoxesDeliveryBoxIdPassword.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DeliveryBoxesDeliveryBoxIdPassword.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DeliveryBoxesDeliveryBoxIdPassword.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DeliveryBoxesDeliveryBoxIdPassword.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DeliveryBoxesDeliveryBoxIdPassword.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2DeliveryBoxesDeliveryBoxIdPassword.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DeliveryBoxesDeliveryBoxIdPassword.Patch.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DeliveryBoxesDeliveryBoxIdPassword.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DeliveryBoxesDeliveryBoxIdPassword.Patch.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DeliveryBoxesDeliveryBoxIdPassword.Patch.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DeliveryBoxesDeliveryBoxIdPassword.Patch.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DeliveryBoxesDeliveryBoxIdPassword.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
490
490
|
/** Update a MailAddress. */
|
|
491
491
|
export declare const mailUpdateMailAddressAddress: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAddress.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAddress.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAddress.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAddress.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAddress.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAddress.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAddress.Patch.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAddress.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAddress.Patch.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAddress.Patch.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAddress.Patch.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAddress.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
492
|
-
/** Update the
|
|
492
|
+
/** Update the catch-all of a MailAddress. */
|
|
493
493
|
export declare const mailUpdateMailAddressCatchAll: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdCatchAll.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdCatchAll.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdCatchAll.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdCatchAll.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdCatchAll.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdCatchAll.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdCatchAll.Patch.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdCatchAll.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdCatchAll.Patch.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdCatchAll.Patch.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdCatchAll.Patch.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdCatchAll.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
494
494
|
/** Update a mail setting of a Project. */
|
|
495
495
|
export declare const mailUpdateProjectMailSetting: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsMailSetting.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsMailSetting.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsMailSetting.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsMailSetting.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsMailSetting.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsMailSetting.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsMailSetting.Patch.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsMailSetting.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsMailSetting.Patch.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsMailSetting.Patch.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsMailSetting.Patch.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsMailSetting.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
@@ -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
|
*/
|
|
@@ -10994,6 +11006,8 @@ export declare namespace MittwaldAPIV2 {
|
|
|
10994
11006
|
type Query = {
|
|
10995
11007
|
limit?: number;
|
|
10996
11008
|
skip?: number;
|
|
11009
|
+
hasExpiry?: boolean;
|
|
11010
|
+
role?: MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles;
|
|
10997
11011
|
};
|
|
10998
11012
|
}
|
|
10999
11013
|
namespace Responses {
|
|
@@ -11043,6 +11057,8 @@ export declare namespace MittwaldAPIV2 {
|
|
|
11043
11057
|
type Query = {
|
|
11044
11058
|
limit?: number;
|
|
11045
11059
|
skip?: number;
|
|
11060
|
+
hasExpiry?: boolean;
|
|
11061
|
+
role?: MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles;
|
|
11046
11062
|
};
|
|
11047
11063
|
}
|
|
11048
11064
|
namespace Responses {
|
|
@@ -16619,9 +16635,14 @@ export declare namespace MittwaldAPIV2 {
|
|
|
16619
16635
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
16620
16636
|
type Query = {
|
|
16621
16637
|
search?: string;
|
|
16638
|
+
forwardAddress?: boolean;
|
|
16639
|
+
catchAll?: boolean;
|
|
16640
|
+
autoResponder?: boolean;
|
|
16622
16641
|
limit?: number;
|
|
16623
16642
|
skip?: number;
|
|
16624
16643
|
page?: number;
|
|
16644
|
+
sort?: ("address.domain" | "address.local" | "updatedAt" | "projectId" | "mailbox.quota" | "mailbox.name")[];
|
|
16645
|
+
order?: ("asc" | "desc")[];
|
|
16625
16646
|
};
|
|
16626
16647
|
}
|
|
16627
16648
|
namespace Responses {
|
|
@@ -19393,6 +19414,9 @@ export declare namespace MittwaldAPIV2 {
|
|
|
19393
19414
|
type Query = {
|
|
19394
19415
|
limit?: number;
|
|
19395
19416
|
skip?: number;
|
|
19417
|
+
hasExpiry?: boolean;
|
|
19418
|
+
isInherited?: boolean;
|
|
19419
|
+
role?: MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
|
|
19396
19420
|
};
|
|
19397
19421
|
}
|
|
19398
19422
|
namespace Responses {
|
|
@@ -19480,6 +19504,9 @@ export declare namespace MittwaldAPIV2 {
|
|
|
19480
19504
|
type Query = {
|
|
19481
19505
|
limit?: number;
|
|
19482
19506
|
skip?: number;
|
|
19507
|
+
hasExpiry?: boolean;
|
|
19508
|
+
isInherited?: boolean;
|
|
19509
|
+
role?: MittwaldAPIV2.Components.Schemas.MembershipProjectRoles;
|
|
19483
19510
|
};
|
|
19484
19511
|
}
|
|
19485
19512
|
namespace Responses {
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.139.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.140.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": "1eeb7b862d50b697b93fa9bd57b59e319d0ec862"
|
|
84
84
|
}
|