@mittwald/api-client 0.0.0-development-559bf74-20260622 → 0.0.0-development-8335166-20260625
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 +6 -6
- package/dist/esm/generated/v2/client.js +8 -10
- package/dist/esm/generated/v2/descriptors.js +24 -30
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +73 -72
- package/dist/types/generated/v2/client.d.ts +390 -455
- package/dist/types/generated/v2/descriptors.d.ts +8 -10
- package/dist/types/generated/v2/types.d.ts +1723 -1762
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -86,6 +86,8 @@ const buildContainerApi = (baseClient) => ({
|
|
|
86
86
|
getRegistry: new ApiCallAsyncResourceFactory(descriptors.containerGetRegistry, baseClient.container.getRegistry).getApiResource,
|
|
87
87
|
/** Get a Volume belonging to a Stack. */
|
|
88
88
|
getVolume: new ApiCallAsyncResourceFactory(descriptors.containerGetVolume, baseClient.container.getVolume).getApiResource,
|
|
89
|
+
/** Get a ContainerImageConfig. */
|
|
90
|
+
getContainerImageConfig: new ApiCallAsyncResourceFactory(descriptors.containerGetContainerImageConfig, baseClient.container.getContainerImageConfig).getApiResource,
|
|
89
91
|
/** Get logs belonging to a Service. */
|
|
90
92
|
getServiceLogs: new ApiCallAsyncResourceFactory(descriptors.containerGetServiceLogs, baseClient.container.getServiceLogs).getApiResource,
|
|
91
93
|
/** Get a Service belonging to a Stack. */
|
|
@@ -102,8 +104,6 @@ const buildContainerApi = (baseClient) => ({
|
|
|
102
104
|
listTemplates: new ApiCallAsyncResourceFactory(descriptors.containerListTemplates, baseClient.container.listTemplates).getApiResource,
|
|
103
105
|
/** List Volumes belonging to a Project. */
|
|
104
106
|
listVolumes: new ApiCallAsyncResourceFactory(descriptors.containerListVolumes, baseClient.container.listVolumes).getApiResource,
|
|
105
|
-
/** Get a ContainerImageConfig. */
|
|
106
|
-
getContainerImageConfig: new ApiCallAsyncResourceFactory(descriptors.containerGetContainerImageConfig, baseClient.container.getContainerImageConfig).getApiResource,
|
|
107
107
|
});
|
|
108
108
|
const buildContractApi = (baseClient) => ({
|
|
109
109
|
/** Return the BaseItem of the Contract with the given ID. */
|
|
@@ -448,8 +448,12 @@ const buildProjectApi = (baseClient) => ({
|
|
|
448
448
|
getSelfMembershipForProject: new ApiCallAsyncResourceFactory(descriptors.projectGetSelfMembershipForProject, baseClient.project.getSelfMembershipForProject).getApiResource,
|
|
449
449
|
/** Get a Server. */
|
|
450
450
|
getServer: new ApiCallAsyncResourceFactory(descriptors.projectGetServer, baseClient.project.getServer).getApiResource,
|
|
451
|
+
/** List Projects belonging to a Customer. */
|
|
452
|
+
listCustomerProjects: new ApiCallAsyncResourceFactory(descriptors.projectListCustomerProjects, baseClient.project.listCustomerProjects).getApiResource,
|
|
451
453
|
/** List Memberships belonging to a Project. */
|
|
452
454
|
listMembershipsForProject: new ApiCallAsyncResourceFactory(descriptors.projectListMembershipsForProject, baseClient.project.listMembershipsForProject).getApiResource,
|
|
455
|
+
/** Get the activities of a project. */
|
|
456
|
+
listProjectActivities: new ApiCallAsyncResourceFactory(descriptors.projectListProjectActivities, baseClient.project.listProjectActivities).getApiResource,
|
|
453
457
|
/** List ProjectInvites belonging to the executing user. */
|
|
454
458
|
listProjectInvites: new ApiCallAsyncResourceFactory(descriptors.projectListProjectInvites, baseClient.project.listProjectInvites).getApiResource,
|
|
455
459
|
/** List ProjectMemberships belonging to the executing user. */
|
|
@@ -462,10 +466,6 @@ const buildProjectApi = (baseClient) => ({
|
|
|
462
466
|
storagespaceGetProjectStatistics: new ApiCallAsyncResourceFactory(descriptors.storagespaceGetProjectStatistics, baseClient.project.storagespaceGetProjectStatistics).getApiResource,
|
|
463
467
|
/** Get storage space Statistics belonging to a Server. */
|
|
464
468
|
storagespaceGetServerStatistics: new ApiCallAsyncResourceFactory(descriptors.storagespaceGetServerStatistics, baseClient.project.storagespaceGetServerStatistics).getApiResource,
|
|
465
|
-
/** Get the activities of a project. */
|
|
466
|
-
listProjectActivities: new ApiCallAsyncResourceFactory(descriptors.projectListProjectActivities, baseClient.project.listProjectActivities).getApiResource,
|
|
467
|
-
/** List Projects belonging to a Customer. */
|
|
468
|
-
listCustomerProjects: new ApiCallAsyncResourceFactory(descriptors.projectListCustomerProjects, baseClient.project.listCustomerProjects).getApiResource,
|
|
469
469
|
});
|
|
470
470
|
const buildProjectFileSystemApi = (baseClient) => ({
|
|
471
471
|
/** List directories belonging to a Project. */
|
|
@@ -162,6 +162,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
162
162
|
getVolume: this.requestFunctionFactory(descriptors.containerGetVolume),
|
|
163
163
|
/** Delete a Volume belonging to a Stack. */
|
|
164
164
|
deleteVolume: this.requestFunctionFactory(descriptors.containerDeleteVolume),
|
|
165
|
+
/** Get a ContainerImageConfig. */
|
|
166
|
+
getContainerImageConfig: this.requestFunctionFactory(descriptors.containerGetContainerImageConfig),
|
|
165
167
|
/** Get logs belonging to a Service. */
|
|
166
168
|
getServiceLogs: this.requestFunctionFactory(descriptors.containerGetServiceLogs),
|
|
167
169
|
/** Get a Service belonging to a Stack. */
|
|
@@ -186,16 +188,12 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
186
188
|
restartService: this.requestFunctionFactory(descriptors.containerRestartService),
|
|
187
189
|
/** Create or rotate pull-image webhook token */
|
|
188
190
|
rotatePullImageWebhookForService: this.requestFunctionFactory(descriptors.containerRotatePullImageWebhookForService),
|
|
189
|
-
/** Replace the description of a Stack. */
|
|
190
|
-
setStackDescription: this.requestFunctionFactory(descriptors.containerSetStackDescription),
|
|
191
191
|
/** Set an update schedule for a Stack. */
|
|
192
192
|
setStackUpdateSchedule: this.requestFunctionFactory(descriptors.containerSetStackUpdateSchedule),
|
|
193
193
|
/** Start a stopped Service. */
|
|
194
194
|
startService: this.requestFunctionFactory(descriptors.containerStartService),
|
|
195
195
|
/** Stop a started Service. */
|
|
196
196
|
stopService: this.requestFunctionFactory(descriptors.containerStopService),
|
|
197
|
-
/** Get a ContainerImageConfig. */
|
|
198
|
-
getContainerImageConfig: this.requestFunctionFactory(descriptors.containerGetContainerImageConfig),
|
|
199
197
|
};
|
|
200
198
|
/** The contract API allows you to manage your contracts and orders */
|
|
201
199
|
contract = {
|
|
@@ -714,6 +712,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
714
712
|
migrationRequestMailMigration: this.requestFunctionFactory(descriptors.mailMigrationRequestMailMigration),
|
|
715
713
|
/** Recover emails for a MailAddress from a backup. */
|
|
716
714
|
recoverMailAddressEmails: this.requestFunctionFactory(descriptors.mailRecoverMailAddressEmails),
|
|
715
|
+
/** Request a rate limit change for a MailAddress. */
|
|
716
|
+
requestMailAddressRateLimitChange: this.requestFunctionFactory(descriptors.mailRequestMailAddressRateLimitChange),
|
|
717
717
|
/** Update the description of a DeliveryBox. */
|
|
718
718
|
updateDeliveryBoxDescription: this.requestFunctionFactory(descriptors.mailUpdateDeliveryBoxDescription),
|
|
719
719
|
/** Update the password of a DeliveryBox. */
|
|
@@ -722,8 +722,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
722
722
|
updateMailAddressAddress: this.requestFunctionFactory(descriptors.mailUpdateMailAddressAddress),
|
|
723
723
|
/** Update the catch-all of a MailAddress. */
|
|
724
724
|
updateMailAddressCatchAll: this.requestFunctionFactory(descriptors.mailUpdateMailAddressCatchAll),
|
|
725
|
-
/** Request a rate limit change for a MailAddress. */
|
|
726
|
-
requestMailAddressRateLimitChange: this.requestFunctionFactory(descriptors.mailRequestMailAddressRateLimitChange),
|
|
727
725
|
};
|
|
728
726
|
/** The notification API allows you to manage your notifications. */
|
|
729
727
|
notification = {
|
|
@@ -972,8 +970,12 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
972
970
|
getSelfMembershipForProject: this.requestFunctionFactory(descriptors.projectGetSelfMembershipForProject),
|
|
973
971
|
/** Get a Server. */
|
|
974
972
|
getServer: this.requestFunctionFactory(descriptors.projectGetServer),
|
|
973
|
+
/** List Projects belonging to a Customer. */
|
|
974
|
+
listCustomerProjects: this.requestFunctionFactory(descriptors.projectListCustomerProjects),
|
|
975
975
|
/** List Memberships belonging to a Project. */
|
|
976
976
|
listMembershipsForProject: this.requestFunctionFactory(descriptors.projectListMembershipsForProject),
|
|
977
|
+
/** Get the activities of a project. */
|
|
978
|
+
listProjectActivities: this.requestFunctionFactory(descriptors.projectListProjectActivities),
|
|
977
979
|
/** List ProjectInvites belonging to the executing user. */
|
|
978
980
|
listProjectInvites: this.requestFunctionFactory(descriptors.projectListProjectInvites),
|
|
979
981
|
/** List ProjectMemberships belonging to the executing user. */
|
|
@@ -996,10 +998,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
996
998
|
storagespaceReplaceProjectNotificationThreshold: this.requestFunctionFactory(descriptors.storagespaceReplaceProjectNotificationThreshold),
|
|
997
999
|
/** Update a Server's storage space notification threshold. */
|
|
998
1000
|
storagespaceReplaceServerNotificationThreshold: this.requestFunctionFactory(descriptors.storagespaceReplaceServerNotificationThreshold),
|
|
999
|
-
/** Get the activities of a project. */
|
|
1000
|
-
listProjectActivities: this.requestFunctionFactory(descriptors.projectListProjectActivities),
|
|
1001
|
-
/** List Projects belonging to a Customer. */
|
|
1002
|
-
listCustomerProjects: this.requestFunctionFactory(descriptors.projectListCustomerProjects),
|
|
1003
1001
|
};
|
|
1004
1002
|
/** The filesystem API allows you to directly access the filesystem of your project. */
|
|
1005
1003
|
projectFileSystem = {
|
|
@@ -430,6 +430,12 @@ export const containerDeleteVolume = {
|
|
|
430
430
|
method: "DELETE",
|
|
431
431
|
operationId: "container-delete-volume",
|
|
432
432
|
};
|
|
433
|
+
/** Get a ContainerImageConfig. */
|
|
434
|
+
export const containerGetContainerImageConfig = {
|
|
435
|
+
path: "/v2/container-image-config",
|
|
436
|
+
method: "GET",
|
|
437
|
+
operationId: "container-get-container-image-config",
|
|
438
|
+
};
|
|
433
439
|
/** Get logs belonging to a Service. */
|
|
434
440
|
export const containerGetServiceLogs = {
|
|
435
441
|
path: "/v2/stacks/{stackId}/services/{serviceId}/logs",
|
|
@@ -502,12 +508,6 @@ export const containerRotatePullImageWebhookForService = {
|
|
|
502
508
|
method: "POST",
|
|
503
509
|
operationId: "container-rotate-pull-image-webhook-for-service",
|
|
504
510
|
};
|
|
505
|
-
/** Replace the description of a Stack. */
|
|
506
|
-
export const containerSetStackDescription = {
|
|
507
|
-
path: "/v2/stacks/{stackId}/description",
|
|
508
|
-
method: "PUT",
|
|
509
|
-
operationId: "container-set-stack-description",
|
|
510
|
-
};
|
|
511
511
|
/** Set an update schedule for a Stack. */
|
|
512
512
|
export const containerSetStackUpdateSchedule = {
|
|
513
513
|
path: "/v2/stacks/{stackId}/update-schedule",
|
|
@@ -2044,6 +2044,12 @@ export const mailRecoverMailAddressEmails = {
|
|
|
2044
2044
|
method: "POST",
|
|
2045
2045
|
operationId: "mail-recover-mail-address-emails",
|
|
2046
2046
|
};
|
|
2047
|
+
/** Request a rate limit change for a MailAddress. */
|
|
2048
|
+
export const mailRequestMailAddressRateLimitChange = {
|
|
2049
|
+
path: "/v2/mail-addresses/{mailAddressId}/request-rate-limit-change",
|
|
2050
|
+
method: "POST",
|
|
2051
|
+
operationId: "mail-request-mail-address-rate-limit-change",
|
|
2052
|
+
};
|
|
2047
2053
|
/** Update the description of a DeliveryBox. */
|
|
2048
2054
|
export const mailUpdateDeliveryBoxDescription = {
|
|
2049
2055
|
path: "/v2/delivery-boxes/{deliveryBoxId}/description",
|
|
@@ -2344,12 +2350,24 @@ export const projectGetServer = {
|
|
|
2344
2350
|
method: "GET",
|
|
2345
2351
|
operationId: "project-get-server",
|
|
2346
2352
|
};
|
|
2353
|
+
/** List Projects belonging to a Customer. */
|
|
2354
|
+
export const projectListCustomerProjects = {
|
|
2355
|
+
path: "/v2/customers/{customerId}/projects",
|
|
2356
|
+
method: "GET",
|
|
2357
|
+
operationId: "project-list-customer-projects",
|
|
2358
|
+
};
|
|
2347
2359
|
/** List Memberships belonging to a Project. */
|
|
2348
2360
|
export const projectListMembershipsForProject = {
|
|
2349
2361
|
path: "/v2/projects/{projectId}/memberships",
|
|
2350
2362
|
method: "GET",
|
|
2351
2363
|
operationId: "project-list-memberships-for-project",
|
|
2352
2364
|
};
|
|
2365
|
+
/** Get the activities of a project. */
|
|
2366
|
+
export const projectListProjectActivities = {
|
|
2367
|
+
path: "/v2/projects/{projectId}/activities",
|
|
2368
|
+
method: "GET",
|
|
2369
|
+
operationId: "project-list-project-activities",
|
|
2370
|
+
};
|
|
2353
2371
|
/** List ProjectInvites belonging to the executing user. */
|
|
2354
2372
|
export const projectListProjectInvites = {
|
|
2355
2373
|
path: "/v2/project-invites",
|
|
@@ -2878,27 +2896,3 @@ export const verificationVerifyCompany = {
|
|
|
2878
2896
|
method: "POST",
|
|
2879
2897
|
operationId: "verification-verify-company",
|
|
2880
2898
|
};
|
|
2881
|
-
/** Get a ContainerImageConfig. */
|
|
2882
|
-
export const containerGetContainerImageConfig = {
|
|
2883
|
-
path: "/v2/container-image-config",
|
|
2884
|
-
method: "GET",
|
|
2885
|
-
operationId: "container-get-container-image-config",
|
|
2886
|
-
};
|
|
2887
|
-
/** Request a rate limit change for a MailAddress. */
|
|
2888
|
-
export const mailRequestMailAddressRateLimitChange = {
|
|
2889
|
-
path: "/v2/mail-addresses/{mailAddressId}/request-rate-limit-change",
|
|
2890
|
-
method: "POST",
|
|
2891
|
-
operationId: "mail-request-mail-address-rate-limit-change",
|
|
2892
|
-
};
|
|
2893
|
-
/** Get the activities of a project. */
|
|
2894
|
-
export const projectListProjectActivities = {
|
|
2895
|
-
path: "/v2/projects/{projectId}/activities",
|
|
2896
|
-
method: "GET",
|
|
2897
|
-
operationId: "project-list-project-activities",
|
|
2898
|
-
};
|
|
2899
|
-
/** List Projects belonging to a Customer. */
|
|
2900
|
-
export const projectListCustomerProjects = {
|
|
2901
|
-
path: "/v2/customers/{customerId}/projects",
|
|
2902
|
-
method: "GET",
|
|
2903
|
-
operationId: "project-list-customer-projects",
|
|
2904
|
-
};
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.397.0';
|
|
@@ -604,6 +604,34 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
604
604
|
storageUsageInBytes: number;
|
|
605
605
|
storageUsageInBytesSetAt: string;
|
|
606
606
|
}>;
|
|
607
|
+
/** Get a ContainerImageConfig. */
|
|
608
|
+
getContainerImageConfig: (conf: {
|
|
609
|
+
queryParameters: {
|
|
610
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
611
|
+
imageReference: string;
|
|
612
|
+
useCredentialsForProjectId?: string | undefined;
|
|
613
|
+
useCredentialsForRegistryId?: string | undefined;
|
|
614
|
+
generateAiData?: boolean | undefined;
|
|
615
|
+
};
|
|
616
|
+
headers?: {
|
|
617
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
618
|
+
"Accept-Language"?: "de" | "en" | undefined;
|
|
619
|
+
"x-access-token"?: string | undefined;
|
|
620
|
+
} | undefined;
|
|
621
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
622
|
+
command?: string[] | undefined;
|
|
623
|
+
digest: string;
|
|
624
|
+
entrypoint?: string[] | undefined;
|
|
625
|
+
env?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerContainerImageConfigEnv[] | undefined;
|
|
626
|
+
exposedPorts?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerContainerImageConfigExposedPort[] | undefined;
|
|
627
|
+
hasAiGeneratedData: boolean;
|
|
628
|
+
isAiAvailable: boolean;
|
|
629
|
+
isUserRoot: boolean;
|
|
630
|
+
overwritingUser?: number | undefined;
|
|
631
|
+
user: string;
|
|
632
|
+
userId: number;
|
|
633
|
+
volumes?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerContainerImageConfigVolume[] | undefined;
|
|
634
|
+
}>;
|
|
607
635
|
/** Get logs belonging to a Service. */
|
|
608
636
|
getServiceLogs: (conf: {
|
|
609
637
|
stackId: string;
|
|
@@ -759,34 +787,6 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
759
787
|
page?: number | undefined;
|
|
760
788
|
} | undefined;
|
|
761
789
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[]>;
|
|
762
|
-
/** Get a ContainerImageConfig. */
|
|
763
|
-
getContainerImageConfig: (conf: {
|
|
764
|
-
queryParameters: {
|
|
765
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
766
|
-
imageReference: string;
|
|
767
|
-
useCredentialsForProjectId?: string | undefined;
|
|
768
|
-
useCredentialsForRegistryId?: string | undefined;
|
|
769
|
-
generateAiData?: boolean | undefined;
|
|
770
|
-
};
|
|
771
|
-
headers?: {
|
|
772
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
773
|
-
"Accept-Language"?: "de" | "en" | undefined;
|
|
774
|
-
"x-access-token"?: string | undefined;
|
|
775
|
-
} | undefined;
|
|
776
|
-
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
777
|
-
command?: string[] | undefined;
|
|
778
|
-
digest: string;
|
|
779
|
-
entrypoint?: string[] | undefined;
|
|
780
|
-
env?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerContainerImageConfigEnv[] | undefined;
|
|
781
|
-
exposedPorts?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerContainerImageConfigExposedPort[] | undefined;
|
|
782
|
-
hasAiGeneratedData: boolean;
|
|
783
|
-
isAiAvailable: boolean;
|
|
784
|
-
isUserRoot: boolean;
|
|
785
|
-
overwritingUser?: number | undefined;
|
|
786
|
-
user: string;
|
|
787
|
-
userId: number;
|
|
788
|
-
volumes?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerContainerImageConfigVolume[] | undefined;
|
|
789
|
-
}>;
|
|
790
790
|
};
|
|
791
791
|
declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
|
|
792
792
|
/** Return the BaseItem of the Contract with the given ID. */
|
|
@@ -1536,6 +1536,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1536
1536
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1537
1537
|
extensionId?: string | undefined;
|
|
1538
1538
|
extensionInstanceId?: string | undefined;
|
|
1539
|
+
state?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceWebhookExecutionState[] | undefined;
|
|
1539
1540
|
limit?: number | undefined;
|
|
1540
1541
|
skip?: number | undefined;
|
|
1541
1542
|
page?: number | undefined;
|
|
@@ -1681,13 +1682,7 @@ declare const buildConversationApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1681
1682
|
category?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationCategory | undefined;
|
|
1682
1683
|
conversationId: string;
|
|
1683
1684
|
createdAt: string;
|
|
1684
|
-
createdBy?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationUser | undefined;
|
|
1685
|
-
lastMessage?: {
|
|
1686
|
-
createdAt: string;
|
|
1687
|
-
createdBy?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationUser;
|
|
1688
|
-
} | undefined;
|
|
1689
1685
|
lastMessageAt?: string | undefined;
|
|
1690
|
-
lastMessageBy?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationUser | undefined;
|
|
1691
1686
|
mainUser: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationUser;
|
|
1692
1687
|
notificationRoles?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationNotificationRole[] | undefined;
|
|
1693
1688
|
relatedTo?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationRelatedAggregateReference | undefined;
|
|
@@ -1697,6 +1692,12 @@ declare const buildConversationApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1697
1692
|
status: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationStatus;
|
|
1698
1693
|
title: string;
|
|
1699
1694
|
visibility: "shared" | "private";
|
|
1695
|
+
createdBy?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationUser | undefined;
|
|
1696
|
+
lastMessage?: {
|
|
1697
|
+
createdAt: string;
|
|
1698
|
+
createdBy?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationUser;
|
|
1699
|
+
} | undefined;
|
|
1700
|
+
lastMessageBy?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationUser | undefined;
|
|
1700
1701
|
}>;
|
|
1701
1702
|
/** Request an access token for the File belonging to the Conversation. */
|
|
1702
1703
|
getFileAccessToken: (conf: {
|
|
@@ -3459,6 +3460,23 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
3459
3460
|
status: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectServerStatus;
|
|
3460
3461
|
storage: string;
|
|
3461
3462
|
}>;
|
|
3463
|
+
/** List Projects belonging to a Customer. */
|
|
3464
|
+
listCustomerProjects: (conf: {
|
|
3465
|
+
customerId: string;
|
|
3466
|
+
headers?: {
|
|
3467
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3468
|
+
"x-access-token"?: string | undefined;
|
|
3469
|
+
} | undefined;
|
|
3470
|
+
queryParameters?: {
|
|
3471
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3472
|
+
searchTerm?: string | undefined;
|
|
3473
|
+
limit?: number | undefined;
|
|
3474
|
+
skip?: number | undefined;
|
|
3475
|
+
page?: number | undefined;
|
|
3476
|
+
sort?: "createdAt" | "description" | undefined;
|
|
3477
|
+
order?: "asc" | "desc" | undefined;
|
|
3478
|
+
} | undefined;
|
|
3479
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectListItem[]>;
|
|
3462
3480
|
/** List Memberships belonging to a Project. */
|
|
3463
3481
|
listMembershipsForProject: (conf: {
|
|
3464
3482
|
projectId: string;
|
|
@@ -3477,6 +3495,27 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
3477
3495
|
searchTerm?: string | undefined;
|
|
3478
3496
|
} | undefined;
|
|
3479
3497
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectMembership[]>;
|
|
3498
|
+
/** Get the activities of a project. */
|
|
3499
|
+
listProjectActivities: (conf: {
|
|
3500
|
+
projectId: string;
|
|
3501
|
+
headers?: {
|
|
3502
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3503
|
+
} | undefined;
|
|
3504
|
+
queryParameters?: {
|
|
3505
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3506
|
+
aggregateName?: string | undefined;
|
|
3507
|
+
aggregateDomain?: string | undefined;
|
|
3508
|
+
aggregateId?: string | undefined;
|
|
3509
|
+
startTime?: string | undefined;
|
|
3510
|
+
endTime?: string | undefined;
|
|
3511
|
+
fulltextSearch?: string | undefined;
|
|
3512
|
+
limit?: number | undefined;
|
|
3513
|
+
skip?: number | undefined;
|
|
3514
|
+
page?: number | undefined;
|
|
3515
|
+
sort?: "dateTime" | undefined;
|
|
3516
|
+
order?: "asc" | "desc" | undefined;
|
|
3517
|
+
} | undefined;
|
|
3518
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ActivitylogLogEntry[]>;
|
|
3480
3519
|
/** List ProjectInvites belonging to the executing user. */
|
|
3481
3520
|
listProjectInvites: (conf?: {
|
|
3482
3521
|
headers?: {
|
|
@@ -3575,44 +3614,6 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
3575
3614
|
notificationThresholdInBytes?: number | undefined;
|
|
3576
3615
|
statisticCategories?: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsCategory[] | undefined;
|
|
3577
3616
|
}>;
|
|
3578
|
-
/** Get the activities of a project. */
|
|
3579
|
-
listProjectActivities: (conf: {
|
|
3580
|
-
projectId: string;
|
|
3581
|
-
headers?: {
|
|
3582
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3583
|
-
} | undefined;
|
|
3584
|
-
queryParameters?: {
|
|
3585
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3586
|
-
aggregateName?: string | undefined;
|
|
3587
|
-
aggregateDomain?: string | undefined;
|
|
3588
|
-
aggregateId?: string | undefined;
|
|
3589
|
-
startTime?: string | undefined;
|
|
3590
|
-
endTime?: string | undefined;
|
|
3591
|
-
fulltextSearch?: string | undefined;
|
|
3592
|
-
limit?: number | undefined;
|
|
3593
|
-
skip?: number | undefined;
|
|
3594
|
-
page?: number | undefined;
|
|
3595
|
-
sort?: "dateTime" | undefined;
|
|
3596
|
-
order?: "asc" | "desc" | undefined;
|
|
3597
|
-
} | undefined;
|
|
3598
|
-
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ActivitylogLogEntry[]>;
|
|
3599
|
-
/** List Projects belonging to a Customer. */
|
|
3600
|
-
listCustomerProjects: (conf: {
|
|
3601
|
-
customerId: string;
|
|
3602
|
-
headers?: {
|
|
3603
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3604
|
-
"x-access-token"?: string | undefined;
|
|
3605
|
-
} | undefined;
|
|
3606
|
-
queryParameters?: {
|
|
3607
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3608
|
-
searchTerm?: string | undefined;
|
|
3609
|
-
limit?: number | undefined;
|
|
3610
|
-
skip?: number | undefined;
|
|
3611
|
-
page?: number | undefined;
|
|
3612
|
-
sort?: "createdAt" | "description" | undefined;
|
|
3613
|
-
order?: "asc" | "desc" | undefined;
|
|
3614
|
-
} | undefined;
|
|
3615
|
-
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectListItem[]>;
|
|
3616
3617
|
};
|
|
3617
3618
|
declare const buildProjectFileSystemApi: (baseClient: MittwaldAPIV2Client) => {
|
|
3618
3619
|
/** List directories belonging to a Project. */
|