@mittwald/api-client 4.388.0 → 4.390.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-react.js +2 -0
- package/dist/esm/generated/v2/client.js +2 -0
- package/dist/esm/generated/v2/descriptors.js +6 -0
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +24 -33
- package/dist/types/generated/v2/client.d.ts +111 -84
- package/dist/types/generated/v2/descriptors.d.ts +2 -0
- package/dist/types/generated/v2/types.d.ts +193 -142
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -448,6 +448,8 @@ const buildProjectApi = (baseClient) => ({
|
|
|
448
448
|
storagespaceGetServerStatistics: new ApiCallAsyncResourceFactory(descriptors.storagespaceGetServerStatistics, baseClient.project.storagespaceGetServerStatistics).getApiResource,
|
|
449
449
|
/** Get the activities of a project. */
|
|
450
450
|
listProjectActivities: new ApiCallAsyncResourceFactory(descriptors.projectListProjectActivities, baseClient.project.listProjectActivities).getApiResource,
|
|
451
|
+
/** List Projects belonging to a Customer. */
|
|
452
|
+
listCustomerProjects: new ApiCallAsyncResourceFactory(descriptors.projectListCustomerProjects, baseClient.project.listCustomerProjects).getApiResource,
|
|
451
453
|
});
|
|
452
454
|
const buildProjectFileSystemApi = (baseClient) => ({
|
|
453
455
|
/** List directories belonging to a Project. */
|
|
@@ -964,6 +964,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
964
964
|
storagespaceReplaceServerNotificationThreshold: this.requestFunctionFactory(descriptors.storagespaceReplaceServerNotificationThreshold),
|
|
965
965
|
/** Get the activities of a project. */
|
|
966
966
|
listProjectActivities: this.requestFunctionFactory(descriptors.projectListProjectActivities),
|
|
967
|
+
/** List Projects belonging to a Customer. */
|
|
968
|
+
listCustomerProjects: this.requestFunctionFactory(descriptors.projectListCustomerProjects),
|
|
967
969
|
};
|
|
968
970
|
/** The filesystem API allows you to directly access the filesystem of your project. */
|
|
969
971
|
projectFileSystem = {
|
|
@@ -2794,3 +2794,9 @@ export const projectListProjectActivities = {
|
|
|
2794
2794
|
method: "GET",
|
|
2795
2795
|
operationId: "project-list-project-activities",
|
|
2796
2796
|
};
|
|
2797
|
+
/** List Projects belonging to a Customer. */
|
|
2798
|
+
export const projectListCustomerProjects = {
|
|
2799
|
+
path: "/v2/customers/{customerId}/projects",
|
|
2800
|
+
method: "GET",
|
|
2801
|
+
operationId: "project-list-customer-projects",
|
|
2802
|
+
};
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.389.0';
|
|
@@ -1628,13 +1628,7 @@ declare const buildConversationApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1628
1628
|
category?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationCategory | undefined;
|
|
1629
1629
|
conversationId: string;
|
|
1630
1630
|
createdAt: string;
|
|
1631
|
-
createdBy?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationUser | undefined;
|
|
1632
|
-
lastMessage?: {
|
|
1633
|
-
createdAt: string;
|
|
1634
|
-
createdBy?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationUser;
|
|
1635
|
-
} | undefined;
|
|
1636
1631
|
lastMessageAt?: string | undefined;
|
|
1637
|
-
lastMessageBy?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationUser | undefined;
|
|
1638
1632
|
mainUser: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationUser;
|
|
1639
1633
|
notificationRoles?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationNotificationRole[] | undefined;
|
|
1640
1634
|
relatedTo?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationRelatedAggregateReference | undefined;
|
|
@@ -1644,6 +1638,12 @@ declare const buildConversationApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1644
1638
|
status: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationStatus;
|
|
1645
1639
|
title: string;
|
|
1646
1640
|
visibility: "shared" | "private";
|
|
1641
|
+
createdBy?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationUser | undefined;
|
|
1642
|
+
lastMessage?: {
|
|
1643
|
+
createdAt: string;
|
|
1644
|
+
createdBy?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationUser;
|
|
1645
|
+
} | undefined;
|
|
1646
|
+
lastMessageBy?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationUser | undefined;
|
|
1647
1647
|
}>;
|
|
1648
1648
|
/** Request an access token for the File belonging to the Conversation. */
|
|
1649
1649
|
getFileAccessToken: (conf: {
|
|
@@ -3404,33 +3404,7 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
3404
3404
|
sort?: "createdAt" | "description" | undefined;
|
|
3405
3405
|
order?: "asc" | "desc" | undefined;
|
|
3406
3406
|
} | undefined;
|
|
3407
|
-
} | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<
|
|
3408
|
-
backupStorageUsageInBytes: number;
|
|
3409
|
-
backupStorageUsageInBytesSetAt: string;
|
|
3410
|
-
createdAt: string;
|
|
3411
|
-
customerId: string;
|
|
3412
|
-
customerMeta: {
|
|
3413
|
-
id: string;
|
|
3414
|
-
};
|
|
3415
|
-
description: string;
|
|
3416
|
-
disableReason?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectDisableReason;
|
|
3417
|
-
disabledAt?: string;
|
|
3418
|
-
enabled: boolean;
|
|
3419
|
-
features?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
|
|
3420
|
-
id: string;
|
|
3421
|
-
imageRefId?: string;
|
|
3422
|
-
isReady: boolean;
|
|
3423
|
-
projectHostingId?: string;
|
|
3424
|
-
readiness: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectDeprecatedProjectReadinessStatus;
|
|
3425
|
-
serverGroupId: string;
|
|
3426
|
-
serverId?: string;
|
|
3427
|
-
shortId: string;
|
|
3428
|
-
status: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectStatus;
|
|
3429
|
-
statusSetAt: string;
|
|
3430
|
-
supportedFeatures: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
|
|
3431
|
-
webStorageUsageInBytes: number;
|
|
3432
|
-
webStorageUsageInBytesSetAt: string;
|
|
3433
|
-
}[]>;
|
|
3407
|
+
} | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectListItem[]>;
|
|
3434
3408
|
/** List Servers belonging to the executing user. */
|
|
3435
3409
|
listServers: (conf?: {
|
|
3436
3410
|
headers?: {
|
|
@@ -3503,6 +3477,23 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
3503
3477
|
order?: "asc" | "desc" | undefined;
|
|
3504
3478
|
} | undefined;
|
|
3505
3479
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ActivitylogLogEntry[]>;
|
|
3480
|
+
/** List Projects belonging to a Customer. */
|
|
3481
|
+
listCustomerProjects: (conf: {
|
|
3482
|
+
customerId: string;
|
|
3483
|
+
headers?: {
|
|
3484
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3485
|
+
"x-access-token"?: string | undefined;
|
|
3486
|
+
} | undefined;
|
|
3487
|
+
queryParameters?: {
|
|
3488
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3489
|
+
searchTerm?: string | undefined;
|
|
3490
|
+
limit?: number | undefined;
|
|
3491
|
+
skip?: number | undefined;
|
|
3492
|
+
page?: number | undefined;
|
|
3493
|
+
sort?: "createdAt" | "description" | undefined;
|
|
3494
|
+
order?: "asc" | "desc" | undefined;
|
|
3495
|
+
} | undefined;
|
|
3496
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectListItem[]>;
|
|
3506
3497
|
};
|
|
3507
3498
|
declare const buildProjectFileSystemApi: (baseClient: MittwaldAPIV2Client) => {
|
|
3508
3499
|
/** List directories belonging to a Project. */
|
|
@@ -12855,16 +12855,18 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
12855
12855
|
conversationId: string;
|
|
12856
12856
|
};
|
|
12857
12857
|
}, import("@mittwald/api-client-commons").Response<{
|
|
12858
|
+
[x: string]: unknown;
|
|
12859
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
12860
|
+
[x: string]: unknown;
|
|
12861
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
12862
|
+
[x: string]: unknown;
|
|
12863
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
12864
|
+
[x: string]: unknown;
|
|
12865
|
+
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
12858
12866
|
category?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationCategory | undefined;
|
|
12859
12867
|
conversationId: string;
|
|
12860
12868
|
createdAt: string;
|
|
12861
|
-
createdBy?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationUser | undefined;
|
|
12862
|
-
lastMessage?: {
|
|
12863
|
-
createdAt: string;
|
|
12864
|
-
createdBy?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationUser;
|
|
12865
|
-
} | undefined;
|
|
12866
12869
|
lastMessageAt?: string | undefined;
|
|
12867
|
-
lastMessageBy?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationUser | undefined;
|
|
12868
12870
|
mainUser: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationUser;
|
|
12869
12871
|
notificationRoles?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationNotificationRole[] | undefined;
|
|
12870
12872
|
relatedTo?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationRelatedAggregateReference | undefined;
|
|
@@ -12874,15 +12876,13 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
12874
12876
|
status: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationStatus;
|
|
12875
12877
|
title: string;
|
|
12876
12878
|
visibility: "shared" | "private";
|
|
12877
|
-
|
|
12878
|
-
|
|
12879
|
-
|
|
12880
|
-
|
|
12881
|
-
|
|
12882
|
-
|
|
12883
|
-
},
|
|
12884
|
-
[x: string]: unknown;
|
|
12885
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
12879
|
+
createdBy?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationUser | undefined;
|
|
12880
|
+
lastMessage?: {
|
|
12881
|
+
createdAt: string;
|
|
12882
|
+
createdBy?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationUser;
|
|
12883
|
+
} | undefined;
|
|
12884
|
+
lastMessageBy?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationUser | undefined;
|
|
12885
|
+
}, 200, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
12886
12886
|
headers?: Partial<{
|
|
12887
12887
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
12888
12888
|
}>;
|
|
@@ -12891,16 +12891,18 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
12891
12891
|
conversationId: string;
|
|
12892
12892
|
};
|
|
12893
12893
|
}, import("@mittwald/api-client-commons").Response<{
|
|
12894
|
+
[x: string]: unknown;
|
|
12895
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
12896
|
+
[x: string]: unknown;
|
|
12897
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
12898
|
+
[x: string]: unknown;
|
|
12899
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
12900
|
+
[x: string]: unknown;
|
|
12901
|
+
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
12894
12902
|
category?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationCategory | undefined;
|
|
12895
12903
|
conversationId: string;
|
|
12896
12904
|
createdAt: string;
|
|
12897
|
-
createdBy?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationUser | undefined;
|
|
12898
|
-
lastMessage?: {
|
|
12899
|
-
createdAt: string;
|
|
12900
|
-
createdBy?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationUser;
|
|
12901
|
-
} | undefined;
|
|
12902
12905
|
lastMessageAt?: string | undefined;
|
|
12903
|
-
lastMessageBy?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationUser | undefined;
|
|
12904
12906
|
mainUser: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationUser;
|
|
12905
12907
|
notificationRoles?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationNotificationRole[] | undefined;
|
|
12906
12908
|
relatedTo?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationRelatedAggregateReference | undefined;
|
|
@@ -12910,15 +12912,13 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
12910
12912
|
status: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationStatus;
|
|
12911
12913
|
title: string;
|
|
12912
12914
|
visibility: "shared" | "private";
|
|
12913
|
-
|
|
12914
|
-
|
|
12915
|
-
|
|
12916
|
-
|
|
12917
|
-
|
|
12918
|
-
|
|
12919
|
-
},
|
|
12920
|
-
[x: string]: unknown;
|
|
12921
|
-
}, 429, "application/json">>>;
|
|
12915
|
+
createdBy?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationUser | undefined;
|
|
12916
|
+
lastMessage?: {
|
|
12917
|
+
createdAt: string;
|
|
12918
|
+
createdBy?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationUser;
|
|
12919
|
+
} | undefined;
|
|
12920
|
+
lastMessageBy?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationUser | undefined;
|
|
12921
|
+
}, 200, "application/json">>>;
|
|
12922
12922
|
/** Update the basic properties of the conversation. */
|
|
12923
12923
|
updateConversation: (request: {
|
|
12924
12924
|
conversationId: string;
|
|
@@ -28817,33 +28817,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
28817
28817
|
} & Partial<{
|
|
28818
28818
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
28819
28819
|
}>;
|
|
28820
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
28821
|
-
backupStorageUsageInBytes: number;
|
|
28822
|
-
backupStorageUsageInBytesSetAt: string;
|
|
28823
|
-
createdAt: string;
|
|
28824
|
-
customerId: string;
|
|
28825
|
-
customerMeta: {
|
|
28826
|
-
id: string;
|
|
28827
|
-
};
|
|
28828
|
-
description: string;
|
|
28829
|
-
disableReason?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectDisableReason;
|
|
28830
|
-
disabledAt?: string;
|
|
28831
|
-
enabled: boolean;
|
|
28832
|
-
features?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
|
|
28833
|
-
id: string;
|
|
28834
|
-
imageRefId?: string;
|
|
28835
|
-
isReady: boolean;
|
|
28836
|
-
projectHostingId?: string;
|
|
28837
|
-
readiness: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectDeprecatedProjectReadinessStatus;
|
|
28838
|
-
serverGroupId: string;
|
|
28839
|
-
serverId?: string;
|
|
28840
|
-
shortId: string;
|
|
28841
|
-
status: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectStatus;
|
|
28842
|
-
statusSetAt: string;
|
|
28843
|
-
supportedFeatures: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
|
|
28844
|
-
webStorageUsageInBytes: number;
|
|
28845
|
-
webStorageUsageInBytesSetAt: string;
|
|
28846
|
-
}[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
28820
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectListItem[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
28847
28821
|
[x: string]: unknown;
|
|
28848
28822
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
28849
28823
|
[x: string]: unknown;
|
|
@@ -28872,33 +28846,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
28872
28846
|
} & Partial<{
|
|
28873
28847
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
28874
28848
|
}>;
|
|
28875
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
28876
|
-
backupStorageUsageInBytes: number;
|
|
28877
|
-
backupStorageUsageInBytesSetAt: string;
|
|
28878
|
-
createdAt: string;
|
|
28879
|
-
customerId: string;
|
|
28880
|
-
customerMeta: {
|
|
28881
|
-
id: string;
|
|
28882
|
-
};
|
|
28883
|
-
description: string;
|
|
28884
|
-
disableReason?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectDisableReason;
|
|
28885
|
-
disabledAt?: string;
|
|
28886
|
-
enabled: boolean;
|
|
28887
|
-
features?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
|
|
28888
|
-
id: string;
|
|
28889
|
-
imageRefId?: string;
|
|
28890
|
-
isReady: boolean;
|
|
28891
|
-
projectHostingId?: string;
|
|
28892
|
-
readiness: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectDeprecatedProjectReadinessStatus;
|
|
28893
|
-
serverGroupId: string;
|
|
28894
|
-
serverId?: string;
|
|
28895
|
-
shortId: string;
|
|
28896
|
-
status: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectStatus;
|
|
28897
|
-
statusSetAt: string;
|
|
28898
|
-
supportedFeatures: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
|
|
28899
|
-
webStorageUsageInBytes: number;
|
|
28900
|
-
webStorageUsageInBytesSetAt: string;
|
|
28901
|
-
}[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
28849
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectListItem[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
28902
28850
|
[x: string]: unknown;
|
|
28903
28851
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
28904
28852
|
[x: string]: unknown;
|
|
@@ -29487,6 +29435,85 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
29487
29435
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29488
29436
|
[x: string]: unknown;
|
|
29489
29437
|
}, 429, "application/json">>>;
|
|
29438
|
+
/** List Projects belonging to a Customer. */
|
|
29439
|
+
listCustomerProjects: (request: {
|
|
29440
|
+
customerId: string;
|
|
29441
|
+
headers?: {
|
|
29442
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
29443
|
+
"x-access-token"?: string | undefined;
|
|
29444
|
+
} | undefined;
|
|
29445
|
+
queryParameters?: {
|
|
29446
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
29447
|
+
searchTerm?: string | undefined;
|
|
29448
|
+
limit?: number | undefined;
|
|
29449
|
+
skip?: number | undefined;
|
|
29450
|
+
page?: number | undefined;
|
|
29451
|
+
sort?: "createdAt" | "description" | undefined;
|
|
29452
|
+
order?: "asc" | "desc" | undefined;
|
|
29453
|
+
} | undefined;
|
|
29454
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
29455
|
+
headers?: Partial<{
|
|
29456
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
29457
|
+
}>;
|
|
29458
|
+
} & {
|
|
29459
|
+
pathParameters: {
|
|
29460
|
+
customerId: string;
|
|
29461
|
+
};
|
|
29462
|
+
} & {
|
|
29463
|
+
queryParameters: {
|
|
29464
|
+
searchTerm?: string | undefined;
|
|
29465
|
+
limit?: number | undefined;
|
|
29466
|
+
skip?: number | undefined;
|
|
29467
|
+
page?: number | undefined;
|
|
29468
|
+
sort?: "createdAt" | "description" | undefined;
|
|
29469
|
+
order?: "asc" | "desc" | undefined;
|
|
29470
|
+
} & Partial<{
|
|
29471
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
29472
|
+
}>;
|
|
29473
|
+
} & {
|
|
29474
|
+
headers: {
|
|
29475
|
+
"x-access-token"?: string | undefined;
|
|
29476
|
+
} & Partial<{
|
|
29477
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
29478
|
+
}>;
|
|
29479
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectListItem[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29480
|
+
[x: string]: unknown;
|
|
29481
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29482
|
+
[x: string]: unknown;
|
|
29483
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29484
|
+
[x: string]: unknown;
|
|
29485
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
29486
|
+
headers?: Partial<{
|
|
29487
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
29488
|
+
}>;
|
|
29489
|
+
} & {
|
|
29490
|
+
pathParameters: {
|
|
29491
|
+
customerId: string;
|
|
29492
|
+
};
|
|
29493
|
+
} & {
|
|
29494
|
+
queryParameters: {
|
|
29495
|
+
searchTerm?: string | undefined;
|
|
29496
|
+
limit?: number | undefined;
|
|
29497
|
+
skip?: number | undefined;
|
|
29498
|
+
page?: number | undefined;
|
|
29499
|
+
sort?: "createdAt" | "description" | undefined;
|
|
29500
|
+
order?: "asc" | "desc" | undefined;
|
|
29501
|
+
} & Partial<{
|
|
29502
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
29503
|
+
}>;
|
|
29504
|
+
} & {
|
|
29505
|
+
headers: {
|
|
29506
|
+
"x-access-token"?: string | undefined;
|
|
29507
|
+
} & Partial<{
|
|
29508
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
29509
|
+
}>;
|
|
29510
|
+
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectListItem[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29511
|
+
[x: string]: unknown;
|
|
29512
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29513
|
+
[x: string]: unknown;
|
|
29514
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29515
|
+
[x: string]: unknown;
|
|
29516
|
+
}, 429, "application/json">>>;
|
|
29490
29517
|
};
|
|
29491
29518
|
/** The filesystem API allows you to directly access the filesystem of your project. */
|
|
29492
29519
|
readonly projectFileSystem: {
|
|
@@ -935,3 +935,5 @@ export declare const verificationVerifyAddress: OpenAPIOperation<RequestType<Sim
|
|
|
935
935
|
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">>;
|
|
936
936
|
/** Get the activities of a project. */
|
|
937
937
|
export declare const projectListProjectActivities: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActivities.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActivities.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActivities.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActivities.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActivities.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActivities.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActivities.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActivities.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActivities.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
938
|
+
/** List Projects belonging to a Customer. */
|
|
939
|
+
export declare const projectListCustomerProjects: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdProjects.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdProjects.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdProjects.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdProjects.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdProjects.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdProjects.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdProjects.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdProjects.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
@@ -1866,6 +1866,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1866
1866
|
type RequestData = InferredRequestData<typeof descriptors.projectListProjectActivities>;
|
|
1867
1867
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectListProjectActivities, TStatus>;
|
|
1868
1868
|
}
|
|
1869
|
+
namespace ProjectListCustomerProjects {
|
|
1870
|
+
type RequestData = InferredRequestData<typeof descriptors.projectListCustomerProjects>;
|
|
1871
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectListCustomerProjects, TStatus>;
|
|
1872
|
+
}
|
|
1869
1873
|
}
|
|
1870
1874
|
namespace Components {
|
|
1871
1875
|
namespace Schemas {
|
|
@@ -2988,32 +2992,18 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2988
2992
|
fallback?: string;
|
|
2989
2993
|
};
|
|
2990
2994
|
}
|
|
2991
|
-
|
|
2992
|
-
category?: MittwaldAPIV2.Components.Schemas.ConversationCategory;
|
|
2993
|
-
conversationId: string;
|
|
2994
|
-
createdAt: string;
|
|
2995
|
+
type ConversationConversation = MittwaldAPIV2.Components.Schemas.ConversationBasicConversation & {
|
|
2995
2996
|
createdBy?: MittwaldAPIV2.Components.Schemas.ConversationUser;
|
|
2996
2997
|
lastMessage?: {
|
|
2997
2998
|
createdAt: string;
|
|
2998
2999
|
createdBy?: MittwaldAPIV2.Components.Schemas.ConversationUser;
|
|
2999
3000
|
};
|
|
3000
|
-
lastMessageAt?: string;
|
|
3001
3001
|
lastMessageBy?: MittwaldAPIV2.Components.Schemas.ConversationUser;
|
|
3002
|
-
|
|
3003
|
-
notificationRoles?: MittwaldAPIV2.Components.Schemas.ConversationNotificationRole[];
|
|
3004
|
-
relatedTo?: MittwaldAPIV2.Components.Schemas.ConversationRelatedAggregateReference;
|
|
3005
|
-
relations?: MittwaldAPIV2.Components.Schemas.ConversationAggregateReference[];
|
|
3006
|
-
sharedWith?: MittwaldAPIV2.Components.Schemas.ConversationShareableAggregateReference;
|
|
3007
|
-
shortId: string;
|
|
3008
|
-
status: MittwaldAPIV2.Components.Schemas.ConversationStatus;
|
|
3009
|
-
title: string;
|
|
3010
|
-
visibility: "shared" | "private";
|
|
3011
|
-
}
|
|
3002
|
+
};
|
|
3012
3003
|
interface ConversationGetConversationIdResponse {
|
|
3013
3004
|
conversationId: string;
|
|
3014
3005
|
shortId: string;
|
|
3015
3006
|
}
|
|
3016
|
-
type ConversationDepartment = "development" | "mail" | "accounting" | "cloudHosting" | "customerService" | "productManagement" | "generic";
|
|
3017
3007
|
interface ConversationError {
|
|
3018
3008
|
message: string;
|
|
3019
3009
|
type: string;
|
|
@@ -3046,12 +3036,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3046
3036
|
};
|
|
3047
3037
|
type: "STATUS_UPDATE";
|
|
3048
3038
|
}
|
|
3049
|
-
interface ConversationGroup {
|
|
3050
|
-
acronym?: string;
|
|
3051
|
-
id: string;
|
|
3052
|
-
isDefaultGroup?: boolean;
|
|
3053
|
-
name: string;
|
|
3054
|
-
}
|
|
3055
3039
|
interface ConversationMessage {
|
|
3056
3040
|
conversationId: string;
|
|
3057
3041
|
createdAt: string;
|
|
@@ -3189,11 +3173,9 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3189
3173
|
type ConversationStatusUpdate = MittwaldAPIV2.Components.Schemas.ConversationResubmissionStatusUpdate | MittwaldAPIV2.Components.Schemas.ConversationGenericStatusUpdate;
|
|
3190
3174
|
interface ConversationUser {
|
|
3191
3175
|
active?: boolean;
|
|
3192
|
-
atlasGroup?: MittwaldAPIV2.Components.Schemas.ConversationGroup;
|
|
3193
3176
|
avatarRefId?: string;
|
|
3194
3177
|
clearName?: string;
|
|
3195
|
-
|
|
3196
|
-
group?: MittwaldAPIV2.Components.Schemas.ConversationGroup;
|
|
3178
|
+
isEmployee?: boolean;
|
|
3197
3179
|
userId: string;
|
|
3198
3180
|
}
|
|
3199
3181
|
interface StraceData {
|
|
@@ -6337,42 +6319,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
6337
6319
|
}
|
|
6338
6320
|
type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
|
|
6339
6321
|
type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
|
|
6340
|
-
interface ActivitylogParameterProperty {
|
|
6341
|
-
aggregate?: MittwaldAPIV2.Components.Schemas.ActivitylogAggregateReference;
|
|
6342
|
-
name: string;
|
|
6343
|
-
}
|
|
6344
|
-
interface ActivitylogAppInstallationDesiredSystemSoftwareSet {
|
|
6345
|
-
changes: {
|
|
6346
|
-
after?: {
|
|
6347
|
-
software: string;
|
|
6348
|
-
softwareVersion: string;
|
|
6349
|
-
updatePolicy: "UPDATE_POLICY_UNSPECIFIED" | "UPDATE_POLICY_NONE" | "UPDATE_POLICY_INHERITED_FROM_APP" | "UPDATE_POLICY_PATCH_LEVEL" | "UPDATE_POLICY_ALL";
|
|
6350
|
-
};
|
|
6351
|
-
before?: {
|
|
6352
|
-
software?: string;
|
|
6353
|
-
softwareVersion?: string;
|
|
6354
|
-
updatePolicy?: "UPDATE_POLICY_UNSPECIFIED" | "UPDATE_POLICY_NONE" | "UPDATE_POLICY_INHERITED_FROM_APP" | "UPDATE_POLICY_PATCH_LEVEL" | "UPDATE_POLICY_ALL";
|
|
6355
|
-
};
|
|
6356
|
-
};
|
|
6357
|
-
name: "app.systemsoftware-set" | "app.systemsoftware-deleted";
|
|
6358
|
-
parameters?: {
|
|
6359
|
-
software: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6360
|
-
version: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6361
|
-
};
|
|
6362
|
-
}
|
|
6363
|
-
interface ActivitylogAppInstallationCopyRequested {
|
|
6364
|
-
changes: {
|
|
6365
|
-
after?: {
|
|
6366
|
-
appId: string;
|
|
6367
|
-
sourceAppInstallationId: string;
|
|
6368
|
-
};
|
|
6369
|
-
before?: {
|
|
6370
|
-
appId?: string | null;
|
|
6371
|
-
sourceAppInstallationId?: string | null;
|
|
6372
|
-
};
|
|
6373
|
-
};
|
|
6374
|
-
name: "app.copy-requested";
|
|
6375
|
-
}
|
|
6376
6322
|
interface ActivitylogDnsCnameRecordSet {
|
|
6377
6323
|
changes: {
|
|
6378
6324
|
after?: {
|
|
@@ -6447,6 +6393,42 @@ export declare namespace MittwaldAPIV2 {
|
|
|
6447
6393
|
name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6448
6394
|
};
|
|
6449
6395
|
}
|
|
6396
|
+
interface ActivitylogParameterProperty {
|
|
6397
|
+
aggregate?: MittwaldAPIV2.Components.Schemas.ActivitylogAggregateReference;
|
|
6398
|
+
name: string;
|
|
6399
|
+
}
|
|
6400
|
+
interface ActivitylogAppInstallationDesiredSystemSoftwareSet {
|
|
6401
|
+
changes: {
|
|
6402
|
+
after?: {
|
|
6403
|
+
software: string;
|
|
6404
|
+
softwareVersion: string;
|
|
6405
|
+
updatePolicy: "UPDATE_POLICY_UNSPECIFIED" | "UPDATE_POLICY_NONE" | "UPDATE_POLICY_INHERITED_FROM_APP" | "UPDATE_POLICY_PATCH_LEVEL" | "UPDATE_POLICY_ALL";
|
|
6406
|
+
};
|
|
6407
|
+
before?: {
|
|
6408
|
+
software?: string;
|
|
6409
|
+
softwareVersion?: string;
|
|
6410
|
+
updatePolicy?: "UPDATE_POLICY_UNSPECIFIED" | "UPDATE_POLICY_NONE" | "UPDATE_POLICY_INHERITED_FROM_APP" | "UPDATE_POLICY_PATCH_LEVEL" | "UPDATE_POLICY_ALL";
|
|
6411
|
+
};
|
|
6412
|
+
};
|
|
6413
|
+
name: "app.systemsoftware-set" | "app.systemsoftware-deleted";
|
|
6414
|
+
parameters?: {
|
|
6415
|
+
software: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6416
|
+
version: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6417
|
+
};
|
|
6418
|
+
}
|
|
6419
|
+
interface ActivitylogAppInstallationCopyRequested {
|
|
6420
|
+
changes: {
|
|
6421
|
+
after?: {
|
|
6422
|
+
appId: string;
|
|
6423
|
+
sourceAppInstallationId: string;
|
|
6424
|
+
};
|
|
6425
|
+
before?: {
|
|
6426
|
+
appId?: string | null;
|
|
6427
|
+
sourceAppInstallationId?: string | null;
|
|
6428
|
+
};
|
|
6429
|
+
};
|
|
6430
|
+
name: "app.copy-requested";
|
|
6431
|
+
}
|
|
6450
6432
|
interface ActivitylogDatabaseCreated {
|
|
6451
6433
|
changes: {
|
|
6452
6434
|
after?: {
|
|
@@ -6492,6 +6474,34 @@ export declare namespace MittwaldAPIV2 {
|
|
|
6492
6474
|
domain: string;
|
|
6493
6475
|
id: string;
|
|
6494
6476
|
}
|
|
6477
|
+
interface ActivitylogDnsSrvRecordSet {
|
|
6478
|
+
changes: {
|
|
6479
|
+
after?: {
|
|
6480
|
+
srv: {}[];
|
|
6481
|
+
};
|
|
6482
|
+
before?: {
|
|
6483
|
+
srv: {}[];
|
|
6484
|
+
};
|
|
6485
|
+
};
|
|
6486
|
+
name: "dns.srv-record-set";
|
|
6487
|
+
parameters: {
|
|
6488
|
+
domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6489
|
+
};
|
|
6490
|
+
}
|
|
6491
|
+
interface ActivitylogDnsMxRecordSet {
|
|
6492
|
+
changes: {
|
|
6493
|
+
after?: {
|
|
6494
|
+
mx: {}[];
|
|
6495
|
+
};
|
|
6496
|
+
before?: {
|
|
6497
|
+
mx: {}[];
|
|
6498
|
+
};
|
|
6499
|
+
};
|
|
6500
|
+
name: "dns.mx-record-set";
|
|
6501
|
+
parameters: {
|
|
6502
|
+
domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6503
|
+
};
|
|
6504
|
+
}
|
|
6495
6505
|
interface ActivitylogDnsTxtRecordSet {
|
|
6496
6506
|
changes: {
|
|
6497
6507
|
after?: {
|
|
@@ -6520,18 +6530,18 @@ export declare namespace MittwaldAPIV2 {
|
|
|
6520
6530
|
domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6521
6531
|
};
|
|
6522
6532
|
}
|
|
6523
|
-
interface
|
|
6533
|
+
interface ActivitylogDatabaseMysqlNameSet {
|
|
6524
6534
|
changes: {
|
|
6525
6535
|
after?: {
|
|
6526
|
-
|
|
6536
|
+
name: string;
|
|
6527
6537
|
};
|
|
6528
6538
|
before?: {
|
|
6529
|
-
|
|
6539
|
+
name: string | null;
|
|
6530
6540
|
};
|
|
6531
6541
|
};
|
|
6532
|
-
name: "
|
|
6542
|
+
name: "database.mysql-name-set";
|
|
6533
6543
|
parameters: {
|
|
6534
|
-
|
|
6544
|
+
name: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
|
|
6535
6545
|
};
|
|
6536
6546
|
}
|
|
6537
6547
|
interface ActivitylogDnsARecordSet {
|
|
@@ -6550,32 +6560,31 @@ export declare namespace MittwaldAPIV2 {
|
|
|
6550
6560
|
domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6551
6561
|
};
|
|
6552
6562
|
}
|
|
6553
|
-
interface
|
|
6563
|
+
interface ActivitylogDatabaseMysqlUserUpdated {
|
|
6554
6564
|
changes: {
|
|
6555
6565
|
after?: {
|
|
6556
|
-
|
|
6566
|
+
description: string;
|
|
6567
|
+
externalAccess: boolean;
|
|
6568
|
+
permissions: {};
|
|
6557
6569
|
};
|
|
6558
6570
|
before?: {
|
|
6559
|
-
|
|
6571
|
+
description: string | null;
|
|
6572
|
+
externalAccess: boolean | null;
|
|
6573
|
+
permissions: {};
|
|
6560
6574
|
};
|
|
6561
6575
|
};
|
|
6562
|
-
name: "database.mysql-
|
|
6576
|
+
name: "database.mysql-user-updated";
|
|
6563
6577
|
parameters: {
|
|
6564
|
-
|
|
6578
|
+
databaseName: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
|
|
6579
|
+
name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6565
6580
|
};
|
|
6566
6581
|
}
|
|
6567
|
-
interface
|
|
6568
|
-
changes: {
|
|
6569
|
-
|
|
6570
|
-
srv: {}[];
|
|
6571
|
-
};
|
|
6572
|
-
before?: {
|
|
6573
|
-
srv: {}[];
|
|
6574
|
-
};
|
|
6575
|
-
};
|
|
6576
|
-
name: "dns.srv-record-set";
|
|
6582
|
+
interface ActivitylogDatabaseMysqlUserDeleted {
|
|
6583
|
+
changes: {};
|
|
6584
|
+
name: "database.mysql-user-deleted";
|
|
6577
6585
|
parameters: {
|
|
6578
|
-
|
|
6586
|
+
databaseName: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
|
|
6587
|
+
name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6579
6588
|
};
|
|
6580
6589
|
}
|
|
6581
6590
|
interface ActivitylogLogEntry {
|
|
@@ -6591,14 +6600,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
6591
6600
|
type: "user" | "extension";
|
|
6592
6601
|
};
|
|
6593
6602
|
}
|
|
6594
|
-
interface ActivitylogDatabaseMysqlUserDeleted {
|
|
6595
|
-
changes: {};
|
|
6596
|
-
name: "database.mysql-user-deleted";
|
|
6597
|
-
parameters: {
|
|
6598
|
-
databaseName: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
|
|
6599
|
-
name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6600
|
-
};
|
|
6601
|
-
}
|
|
6602
6603
|
interface ActivitylogDnsCaaRecordSet {
|
|
6603
6604
|
changes: {
|
|
6604
6605
|
after?: {
|
|
@@ -6632,24 +6633,55 @@ export declare namespace MittwaldAPIV2 {
|
|
|
6632
6633
|
[k: string]: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6633
6634
|
};
|
|
6634
6635
|
}
|
|
6635
|
-
interface
|
|
6636
|
-
|
|
6637
|
-
|
|
6638
|
-
|
|
6639
|
-
|
|
6640
|
-
|
|
6641
|
-
|
|
6642
|
-
before?: {
|
|
6643
|
-
description: string | null;
|
|
6644
|
-
externalAccess: boolean | null;
|
|
6645
|
-
permissions: {};
|
|
6646
|
-
};
|
|
6647
|
-
};
|
|
6648
|
-
name: "database.mysql-user-updated";
|
|
6649
|
-
parameters: {
|
|
6650
|
-
databaseName: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
|
|
6651
|
-
name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6636
|
+
interface ProjectProjectListItem {
|
|
6637
|
+
backupStorageUsageInBytes: number;
|
|
6638
|
+
backupStorageUsageInBytesSetAt: string;
|
|
6639
|
+
createdAt: string;
|
|
6640
|
+
customerId: string;
|
|
6641
|
+
customerMeta: {
|
|
6642
|
+
id: string;
|
|
6652
6643
|
};
|
|
6644
|
+
description: string;
|
|
6645
|
+
disableReason?: MittwaldAPIV2.Components.Schemas.ProjectDisableReason;
|
|
6646
|
+
disabledAt?: string;
|
|
6647
|
+
enabled: boolean;
|
|
6648
|
+
/**
|
|
6649
|
+
* @deprecated
|
|
6650
|
+
* Deprecated by 'supportedFeatures'.
|
|
6651
|
+
*/
|
|
6652
|
+
features?: MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
|
|
6653
|
+
id: string;
|
|
6654
|
+
imageRefId?: string;
|
|
6655
|
+
/**
|
|
6656
|
+
* @deprecated
|
|
6657
|
+
* deprecated
|
|
6658
|
+
*/
|
|
6659
|
+
isReady: boolean;
|
|
6660
|
+
projectHostingId?: string;
|
|
6661
|
+
readiness: MittwaldAPIV2.Components.Schemas.ProjectDeprecatedProjectReadinessStatus;
|
|
6662
|
+
serverGroupId: string;
|
|
6663
|
+
serverId?: string;
|
|
6664
|
+
shortId: string;
|
|
6665
|
+
status: MittwaldAPIV2.Components.Schemas.ProjectProjectStatus;
|
|
6666
|
+
statusSetAt: string;
|
|
6667
|
+
supportedFeatures: MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
|
|
6668
|
+
webStorageUsageInBytes: number;
|
|
6669
|
+
webStorageUsageInBytesSetAt: string;
|
|
6670
|
+
}
|
|
6671
|
+
interface ConversationBasicConversation {
|
|
6672
|
+
category?: MittwaldAPIV2.Components.Schemas.ConversationCategory;
|
|
6673
|
+
conversationId: string;
|
|
6674
|
+
createdAt: string;
|
|
6675
|
+
lastMessageAt?: string;
|
|
6676
|
+
mainUser: MittwaldAPIV2.Components.Schemas.ConversationUser;
|
|
6677
|
+
notificationRoles?: MittwaldAPIV2.Components.Schemas.ConversationNotificationRole[];
|
|
6678
|
+
relatedTo?: MittwaldAPIV2.Components.Schemas.ConversationRelatedAggregateReference;
|
|
6679
|
+
relations?: MittwaldAPIV2.Components.Schemas.ConversationAggregateReference[];
|
|
6680
|
+
sharedWith?: MittwaldAPIV2.Components.Schemas.ConversationShareableAggregateReference;
|
|
6681
|
+
shortId: string;
|
|
6682
|
+
status: MittwaldAPIV2.Components.Schemas.ConversationStatus;
|
|
6683
|
+
title: string;
|
|
6684
|
+
visibility: "shared" | "private";
|
|
6653
6685
|
}
|
|
6654
6686
|
interface CommonsAddress {
|
|
6655
6687
|
street: string;
|
|
@@ -26704,41 +26736,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
26704
26736
|
namespace Responses {
|
|
26705
26737
|
namespace $200 {
|
|
26706
26738
|
namespace Content {
|
|
26707
|
-
type ApplicationJson =
|
|
26708
|
-
backupStorageUsageInBytes: number;
|
|
26709
|
-
backupStorageUsageInBytesSetAt: string;
|
|
26710
|
-
createdAt: string;
|
|
26711
|
-
customerId: string;
|
|
26712
|
-
customerMeta: {
|
|
26713
|
-
id: string;
|
|
26714
|
-
};
|
|
26715
|
-
description: string;
|
|
26716
|
-
disableReason?: MittwaldAPIV2.Components.Schemas.ProjectDisableReason;
|
|
26717
|
-
disabledAt?: string;
|
|
26718
|
-
enabled: boolean;
|
|
26719
|
-
/**
|
|
26720
|
-
* @deprecated
|
|
26721
|
-
* Deprecated by 'supportedFeatures'.
|
|
26722
|
-
*/
|
|
26723
|
-
features?: MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
|
|
26724
|
-
id: string;
|
|
26725
|
-
imageRefId?: string;
|
|
26726
|
-
/**
|
|
26727
|
-
* @deprecated
|
|
26728
|
-
* deprecated
|
|
26729
|
-
*/
|
|
26730
|
-
isReady: boolean;
|
|
26731
|
-
projectHostingId?: string;
|
|
26732
|
-
readiness: MittwaldAPIV2.Components.Schemas.ProjectDeprecatedProjectReadinessStatus;
|
|
26733
|
-
serverGroupId: string;
|
|
26734
|
-
serverId?: string;
|
|
26735
|
-
shortId: string;
|
|
26736
|
-
status: MittwaldAPIV2.Components.Schemas.ProjectProjectStatus;
|
|
26737
|
-
statusSetAt: string;
|
|
26738
|
-
supportedFeatures: MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
|
|
26739
|
-
webStorageUsageInBytes: number;
|
|
26740
|
-
webStorageUsageInBytesSetAt: string;
|
|
26741
|
-
}[];
|
|
26739
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.ProjectProjectListItem[];
|
|
26742
26740
|
}
|
|
26743
26741
|
}
|
|
26744
26742
|
namespace $400 {
|
|
@@ -30823,5 +30821,58 @@ export declare namespace MittwaldAPIV2 {
|
|
|
30823
30821
|
}
|
|
30824
30822
|
}
|
|
30825
30823
|
}
|
|
30824
|
+
namespace V2CustomersCustomerIdProjects {
|
|
30825
|
+
namespace Get {
|
|
30826
|
+
namespace Parameters {
|
|
30827
|
+
type Path = {
|
|
30828
|
+
customerId: string;
|
|
30829
|
+
};
|
|
30830
|
+
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
30831
|
+
type Query = {
|
|
30832
|
+
searchTerm?: string;
|
|
30833
|
+
limit?: number;
|
|
30834
|
+
skip?: number;
|
|
30835
|
+
page?: number;
|
|
30836
|
+
sort?: "createdAt" | "description";
|
|
30837
|
+
order?: "asc" | "desc";
|
|
30838
|
+
};
|
|
30839
|
+
}
|
|
30840
|
+
namespace Responses {
|
|
30841
|
+
namespace $200 {
|
|
30842
|
+
namespace Content {
|
|
30843
|
+
type ApplicationJson = MittwaldAPIV2.Components.Schemas.ProjectProjectListItem[];
|
|
30844
|
+
}
|
|
30845
|
+
}
|
|
30846
|
+
namespace $400 {
|
|
30847
|
+
namespace Content {
|
|
30848
|
+
interface ApplicationJson {
|
|
30849
|
+
[k: string]: unknown;
|
|
30850
|
+
}
|
|
30851
|
+
}
|
|
30852
|
+
}
|
|
30853
|
+
namespace $403 {
|
|
30854
|
+
namespace Content {
|
|
30855
|
+
interface ApplicationJson {
|
|
30856
|
+
[k: string]: unknown;
|
|
30857
|
+
}
|
|
30858
|
+
}
|
|
30859
|
+
}
|
|
30860
|
+
namespace $429 {
|
|
30861
|
+
namespace Content {
|
|
30862
|
+
interface ApplicationJson {
|
|
30863
|
+
[k: string]: unknown;
|
|
30864
|
+
}
|
|
30865
|
+
}
|
|
30866
|
+
}
|
|
30867
|
+
namespace Default {
|
|
30868
|
+
namespace Content {
|
|
30869
|
+
interface ApplicationJson {
|
|
30870
|
+
[k: string]: unknown;
|
|
30871
|
+
}
|
|
30872
|
+
}
|
|
30873
|
+
}
|
|
30874
|
+
}
|
|
30875
|
+
}
|
|
30876
|
+
}
|
|
30826
30877
|
}
|
|
30827
30878
|
}
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.389.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.390.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.390.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.390.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": "a2a140681a71d1bae81ae5af81c1ff9d6e37e7b4"
|
|
84
84
|
}
|