@mittwald/api-client 0.0.0-development-e096ee7-20240924 → 0.0.0-development-84e90b6-20250514

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.
@@ -24,6 +24,7 @@ declare const buildAppApi: (baseClient: MittwaldAPIV2Client) => {
24
24
  }) => import("@mittwald/react-use-promise").AsyncResource<{
25
25
  appId: string;
26
26
  appVersion: import("./types.js").MittwaldAPIV2.Components.Schemas.AppVersionStatus;
27
+ createdAt: string;
27
28
  customDocumentRoot?: string | undefined;
28
29
  description: string;
29
30
  disabled: boolean;
@@ -129,9 +130,11 @@ declare const buildAppApi: (baseClient: MittwaldAPIV2Client) => {
129
130
  } | undefined;
130
131
  queryParameters?: {
131
132
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
133
+ appIds?: string[] | undefined;
134
+ searchTerm?: string | undefined;
132
135
  limit?: number | undefined;
133
- page?: number | undefined;
134
136
  skip?: number | undefined;
137
+ page?: number | undefined;
135
138
  } | undefined;
136
139
  } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.AppAppInstallation[]>;
137
140
  /** List AppInstallations belonging to a Project. */
@@ -143,22 +146,23 @@ declare const buildAppApi: (baseClient: MittwaldAPIV2Client) => {
143
146
  } | undefined;
144
147
  queryParameters?: {
145
148
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
149
+ appIds?: string[] | undefined;
150
+ searchTerm?: string | undefined;
146
151
  limit?: number | undefined;
147
- page?: number | undefined;
148
152
  skip?: number | undefined;
153
+ page?: number | undefined;
149
154
  } | undefined;
150
155
  }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.AppAppInstallation[]>;
151
156
  /** List Apps. */
152
157
  listApps: (conf?: {
153
158
  headers?: {
154
159
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
155
- "x-access-token"?: string | undefined;
156
160
  } | undefined;
157
161
  queryParameters?: {
158
162
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
159
163
  limit?: number | undefined;
160
- page?: number | undefined;
161
164
  skip?: number | undefined;
165
+ page?: number | undefined;
162
166
  } | undefined;
163
167
  } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.AppApp[]>;
164
168
  /** List AppVersions belonging to an App. */
@@ -182,8 +186,8 @@ declare const buildAppApi: (baseClient: MittwaldAPIV2Client) => {
182
186
  queryParameters?: {
183
187
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
184
188
  limit?: number | undefined;
185
- page?: number | undefined;
186
189
  skip?: number | undefined;
190
+ page?: number | undefined;
187
191
  } | undefined;
188
192
  } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.AppSystemSoftware[]>;
189
193
  /** List SystemSoftwareVersions belonging to a SystemSoftware. */
@@ -263,14 +267,14 @@ declare const buildArticleApi: (baseClient: MittwaldAPIV2Client) => {
263
267
  queryParameters?: {
264
268
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
265
269
  customerId?: string | undefined;
266
- limit?: number | undefined;
267
- skip?: number | undefined;
268
- page?: number | undefined;
269
270
  tags?: string[] | undefined;
270
271
  templateNames?: string[] | undefined;
271
272
  articleIds?: string[] | undefined;
272
273
  orderable?: ("forbidden" | "internal" | "beta_testing" | "full" | "deprecated")[] | undefined;
273
274
  name?: string | undefined;
275
+ limit?: number | undefined;
276
+ skip?: number | undefined;
277
+ page?: number | undefined;
274
278
  } | undefined;
275
279
  } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ArticleReadableArticle[]>;
276
280
  };
@@ -290,6 +294,15 @@ declare const buildBackupApi: (baseClient: MittwaldAPIV2Client) => {
290
294
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
291
295
  "x-access-token"?: string | undefined;
292
296
  } | undefined;
297
+ queryParameters?: {
298
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
299
+ searchTerm?: string | undefined;
300
+ withExportsOnly?: boolean | undefined;
301
+ sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupBackupSortOrder | undefined;
302
+ limit?: number | undefined;
303
+ skip?: number | undefined;
304
+ page?: number | undefined;
305
+ } | undefined;
293
306
  }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackup[]>;
294
307
  /** Get a ProjectBackupSchedule. */
295
308
  getProjectBackupSchedule: (conf: {
@@ -324,6 +337,7 @@ declare const buildBackupApi: (baseClient: MittwaldAPIV2Client) => {
324
337
  id: string;
325
338
  parentId?: string | undefined;
326
339
  projectId: string;
340
+ requestedAt: string;
327
341
  status: string;
328
342
  }>;
329
343
  };
@@ -385,6 +399,8 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
385
399
  name: string;
386
400
  orphaned: boolean;
387
401
  stackId: string;
402
+ storageUsageInBytes: number;
403
+ storageUsageInBytesSetAt: string;
388
404
  }>;
389
405
  /** Get a ContainerImageConfig. */
390
406
  getContainerImageConfig: (conf: {
@@ -405,9 +421,11 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
405
421
  env?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerContainerImageConfigEnv[] | undefined;
406
422
  exposedPorts?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerContainerImageConfigExposedPort[] | undefined;
407
423
  hasAiGeneratedData: boolean;
424
+ isAiAvailable: boolean;
408
425
  isUserRoot: boolean;
409
426
  overwritingUser?: number | undefined;
410
427
  user: string;
428
+ userId: number;
411
429
  volumes?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerContainerImageConfigVolume[] | undefined;
412
430
  }>;
413
431
  /** Get logs belonging to a Service. */
@@ -431,9 +449,11 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
431
449
  deployedState: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceState;
432
450
  description: string;
433
451
  id: string;
452
+ message?: string | undefined;
434
453
  pendingState: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceState;
435
454
  projectId: string;
436
455
  serviceName: string;
456
+ shortId: string;
437
457
  stackId: string;
438
458
  status: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceStatus;
439
459
  }>;
@@ -784,7 +804,318 @@ declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
784
804
  excludesStatus?: import("./types.js").MittwaldAPIV2.Components.Schemas.OrderOrderStatus[] | undefined;
785
805
  templateNames?: string[] | undefined;
786
806
  } | undefined;
787
- }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.OrderCustomerOrder[]>;
807
+ }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.OrderCustomerOrder[]>;
808
+ };
809
+ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
810
+ /** Get Contributor Billing Information. */
811
+ contributorGetBillingInformation: (conf: {
812
+ contributorId: string;
813
+ headers?: {
814
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
815
+ "x-access-token"?: string | undefined;
816
+ } | undefined;
817
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
818
+ contributorId?: string | undefined;
819
+ onboardingStatus?: "NOT_STARTED" | "STARTED" | "SUCCESSFUL" | undefined;
820
+ }>;
821
+ /** Get the Stripe Billing Portal Link for a Customer */
822
+ contributorGetCustomerBillingPortalLink: (conf: {
823
+ customerId: string;
824
+ headers?: {
825
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
826
+ "x-access-token"?: string | undefined;
827
+ } | undefined;
828
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
829
+ url?: string | undefined;
830
+ }>;
831
+ /** Get the Stripe Dashboard Link for a Contributor. */
832
+ contributorGetLoginLink: (conf: {
833
+ contributorId: string;
834
+ headers?: {
835
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
836
+ "x-access-token"?: string | undefined;
837
+ } | undefined;
838
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
839
+ url?: string | undefined;
840
+ }>;
841
+ /** List incoming Invoices of a Contributor. */
842
+ contributorListIncomingInvoices: (conf: {
843
+ contributorId: string;
844
+ headers?: {
845
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
846
+ "x-access-token"?: string | undefined;
847
+ } | undefined;
848
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
849
+ currency: string;
850
+ customerId: string;
851
+ customerName: string;
852
+ customerNumber: string;
853
+ date: string;
854
+ id: string;
855
+ invoiceNumber: string;
856
+ pdfId: string;
857
+ recipient: import("./types.js").MittwaldAPIV2.Components.Schemas.InvoiceRecipient;
858
+ totalGross: number;
859
+ totalNet: number;
860
+ }[]>;
861
+ /** List all invoices on behalf of a contributor. */
862
+ contributorListOnbehalfInvoices: (conf: {
863
+ contributorId: string;
864
+ headers?: {
865
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
866
+ "x-access-token"?: string | undefined;
867
+ } | undefined;
868
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
869
+ invoiceDate: string;
870
+ invoiceId: string;
871
+ invoiceNumber: string;
872
+ pdfLink: string;
873
+ totalGross: number;
874
+ totalNet: number;
875
+ webLink: string;
876
+ }[]>;
877
+ /** Request an Access Token for the Incoming Invoice file. */
878
+ contributorReceiptGetFileAccessToken: (conf: {
879
+ contributorId: string;
880
+ contributorReceiptId: string;
881
+ headers?: {
882
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
883
+ "x-access-token"?: string | undefined;
884
+ } | undefined;
885
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
886
+ accessToken: string;
887
+ expiresAt: string;
888
+ }>;
889
+ /** List ExtensionInstances. */
890
+ extensionListExtensionInstances: (conf: {
891
+ queryParameters: {
892
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
893
+ context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
894
+ contextId: string;
895
+ limit?: number | undefined;
896
+ skip?: number | undefined;
897
+ page?: number | undefined;
898
+ };
899
+ headers?: {
900
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
901
+ "x-access-token"?: string | undefined;
902
+ } | undefined;
903
+ }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstance[]>;
904
+ /** Get an ExtensionInstance. */
905
+ extensionGetExtensionInstance: (conf: {
906
+ extensionInstanceId: string;
907
+ headers?: {
908
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
909
+ "x-access-token"?: string | undefined;
910
+ } | undefined;
911
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
912
+ aggregateReference: {
913
+ aggregate: string;
914
+ domain: string;
915
+ id: string;
916
+ };
917
+ chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
918
+ consentedScopes: string[];
919
+ createdAt?: string | undefined;
920
+ disabled: boolean;
921
+ extensionId: string;
922
+ id: string;
923
+ pendingInstallation: boolean;
924
+ pendingRemoval: boolean;
925
+ }>;
926
+ /** Get Extension of own contributor. */
927
+ extensionGetOwnExtension: (conf: {
928
+ contributorId: string;
929
+ extensionId: string;
930
+ headers?: {
931
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
932
+ "x-access-token"?: string | undefined;
933
+ } | undefined;
934
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
935
+ assets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionAsset[];
936
+ backendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponents | undefined;
937
+ blocked?: boolean | undefined;
938
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
939
+ contributorId: string;
940
+ deprecation?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionDeprecation | undefined;
941
+ description?: string | undefined;
942
+ detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
943
+ disabled?: boolean | undefined;
944
+ externalFrontends?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
945
+ frontendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
946
+ frontendFragments?: {
947
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
948
+ } | undefined;
949
+ functional: boolean;
950
+ id: string;
951
+ logoRefId?: string | undefined;
952
+ name: string;
953
+ pricing?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceMonthlyPricingStrategy | undefined;
954
+ published: boolean;
955
+ requestedChanges?: {
956
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
957
+ scopes?: string[];
958
+ webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | {};
959
+ } | undefined;
960
+ scopes?: string[] | undefined;
961
+ secrets: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionSecret[];
962
+ state?: "enabled" | "blocked" | "disabled" | undefined;
963
+ statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
964
+ subTitle?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle | undefined;
965
+ support?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta | undefined;
966
+ tags?: string[] | undefined;
967
+ verificationRequested: boolean;
968
+ verified: boolean;
969
+ webhookUrls?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls | undefined;
970
+ }>;
971
+ /** Get a Contributor. */
972
+ extensionGetContributor: (conf: {
973
+ contributorId: string;
974
+ headers?: {
975
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
976
+ } | undefined;
977
+ }) => import("@mittwald/react-use-promise").AsyncResource<import("@mittwald/api-client-commons").Simplify<import("./types.js").MittwaldAPIV2.Paths.V2ContributorsContributorId.Get.Responses.$200.Content.ApplicationJson>>;
978
+ /** Get the Contract Strategy of an Extension Instance */
979
+ extensionGetExtensionInstanceContract: (conf: {
980
+ extensionInstanceId: string;
981
+ headers?: {
982
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
983
+ "x-access-token"?: string | undefined;
984
+ } | undefined;
985
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
986
+ interactionDeadline?: string | undefined;
987
+ interactionRequired: boolean;
988
+ status: "notStarted" | "active" | "terminationPending";
989
+ terminationTargetDate?: string | undefined;
990
+ }>;
991
+ /** Get the ExtensionInstance of a specific customer and extension, if existing. */
992
+ extensionGetExtensionInstanceForCustomer: (conf: {
993
+ customerId: string;
994
+ extensionId: string;
995
+ headers?: {
996
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
997
+ "x-access-token"?: string | undefined;
998
+ } | undefined;
999
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
1000
+ aggregateReference: {
1001
+ aggregate: string;
1002
+ domain: string;
1003
+ id: string;
1004
+ };
1005
+ chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
1006
+ consentedScopes: string[];
1007
+ createdAt?: string | undefined;
1008
+ disabled: boolean;
1009
+ extensionId: string;
1010
+ id: string;
1011
+ pendingInstallation: boolean;
1012
+ pendingRemoval: boolean;
1013
+ }>;
1014
+ /** Get the ExtensionInstance of a specific project and extension, if existing. */
1015
+ extensionGetExtensionInstanceForProject: (conf: {
1016
+ projectId: string;
1017
+ extensionId: string;
1018
+ headers?: {
1019
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1020
+ "x-access-token"?: string | undefined;
1021
+ } | undefined;
1022
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
1023
+ aggregateReference: {
1024
+ aggregate: string;
1025
+ domain: string;
1026
+ id: string;
1027
+ };
1028
+ chargeability?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceChargeability | undefined;
1029
+ consentedScopes: string[];
1030
+ createdAt?: string | undefined;
1031
+ disabled: boolean;
1032
+ extensionId: string;
1033
+ id: string;
1034
+ pendingInstallation: boolean;
1035
+ pendingRemoval: boolean;
1036
+ }>;
1037
+ /** Get an Extension. */
1038
+ extensionGetExtension: (conf: {
1039
+ extensionId: string;
1040
+ headers?: {
1041
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1042
+ } | undefined;
1043
+ }) => import("@mittwald/react-use-promise").AsyncResource<import("@mittwald/api-client-commons").Simplify<import("./types.js").MittwaldAPIV2.Paths.V2ExtensionsExtensionId.Get.Responses.$200.Content.ApplicationJson>>;
1044
+ /** Get the public key to verify the webhook signature. */
1045
+ extensionGetPublicKey: (conf: {
1046
+ serial: string;
1047
+ headers?: {
1048
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1049
+ } | undefined;
1050
+ queryParameters?: {
1051
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1052
+ purpose?: "webhook" | "session_token" | undefined;
1053
+ format?: "raw" | "spki" | undefined;
1054
+ } | undefined;
1055
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
1056
+ algorithm: string;
1057
+ key: string;
1058
+ serial: string;
1059
+ }>;
1060
+ /** List Contributors. */
1061
+ extensionListContributors: (conf?: {
1062
+ headers?: {
1063
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1064
+ } | undefined;
1065
+ queryParameters?: {
1066
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1067
+ limit?: number | undefined;
1068
+ skip?: number | undefined;
1069
+ page?: number | undefined;
1070
+ } | undefined;
1071
+ } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributor[]>;
1072
+ /** List Extensions. */
1073
+ extensionListExtensions: (conf?: {
1074
+ headers?: {
1075
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1076
+ } | undefined;
1077
+ queryParameters?: {
1078
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1079
+ context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
1080
+ limit?: number | undefined;
1081
+ skip?: number | undefined;
1082
+ page?: number | undefined;
1083
+ } | undefined;
1084
+ } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtension[]>;
1085
+ /** List Extensions of own contributor. */
1086
+ extensionListOwnExtensions: (conf: {
1087
+ contributorId: string;
1088
+ headers?: {
1089
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1090
+ "x-access-token"?: string | undefined;
1091
+ } | undefined;
1092
+ queryParameters?: {
1093
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1094
+ limit?: number | undefined;
1095
+ skip?: number | undefined;
1096
+ page?: number | undefined;
1097
+ } | undefined;
1098
+ }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceOwnExtension[]>;
1099
+ /** List Scopes. */
1100
+ extensionListScopes: (conf?: {
1101
+ headers?: {
1102
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1103
+ "x-access-token"?: string | undefined;
1104
+ } | undefined;
1105
+ } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<string[]>;
1106
+ /** Get payment method details */
1107
+ customerGetPaymentMethod: (conf: {
1108
+ customerId: string;
1109
+ headers?: {
1110
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1111
+ "x-access-token"?: string | undefined;
1112
+ } | undefined;
1113
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
1114
+ cardDetails?: {
1115
+ brand: string;
1116
+ last4: string;
1117
+ } | undefined;
1118
+ }>;
788
1119
  };
789
1120
  declare const buildConversationApi: (baseClient: MittwaldAPIV2Client) => {
790
1121
  /** Get all conversation the authenticated user has created or has access to. */
@@ -792,6 +1123,11 @@ declare const buildConversationApi: (baseClient: MittwaldAPIV2Client) => {
792
1123
  headers?: {
793
1124
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
794
1125
  } | undefined;
1126
+ queryParameters?: {
1127
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1128
+ sort?: ("createdAt" | "lastMessage.createdAt" | "title" | "priority" | "shortId" | "conversationId")[] | undefined;
1129
+ order?: ("asc" | "desc")[] | undefined;
1130
+ } | undefined;
795
1131
  } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationConversation[]>;
796
1132
  /** Get all message of the conversation. */
797
1133
  listMessagesByConversation: (conf: {
@@ -799,7 +1135,7 @@ declare const buildConversationApi: (baseClient: MittwaldAPIV2Client) => {
799
1135
  headers?: {
800
1136
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
801
1137
  } | undefined;
802
- }) => import("@mittwald/react-use-promise").AsyncResource<(import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationMessage | import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationStatusUpdate)[]>;
1138
+ }) => import("@mittwald/react-use-promise").AsyncResource<(import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationMessage | import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationStatusUpdate | import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationServiceRequest)[]>;
803
1139
  /** Get a specific conversation category. */
804
1140
  getCategory: (conf: {
805
1141
  categoryId: string;
@@ -853,9 +1189,10 @@ declare const buildConversationApi: (baseClient: MittwaldAPIV2Client) => {
853
1189
  lastMessageAt?: string | undefined;
854
1190
  lastMessageBy?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationUser | undefined;
855
1191
  mainUser: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationUser;
856
- relatedTo?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationAggregateReference | undefined;
1192
+ notificationRoles?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationNotificationRole[] | undefined;
1193
+ relatedTo?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationRelatedAggregateReference | undefined;
857
1194
  relations?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationAggregateReference[] | undefined;
858
- sharedWith?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationAggregateReference | undefined;
1195
+ sharedWith?: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationShareableAggregateReference | undefined;
859
1196
  shortId: string;
860
1197
  status: import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationStatus;
861
1198
  title: string;
@@ -909,6 +1246,8 @@ declare const buildCronjobApi: (baseClient: MittwaldAPIV2Client) => {
909
1246
  since?: string | undefined;
910
1247
  until?: string | undefined;
911
1248
  status?: string | undefined;
1249
+ triggeredByUser?: boolean | undefined;
1250
+ sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobExecutionSortOrder | undefined;
912
1251
  } | undefined;
913
1252
  }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobExecution[]>;
914
1253
  /** Get a Cronjob. */
@@ -946,6 +1285,7 @@ declare const buildCronjobApi: (baseClient: MittwaldAPIV2Client) => {
946
1285
  abortedBy?: {
947
1286
  id?: string;
948
1287
  } | undefined;
1288
+ cronjobId: string;
949
1289
  durationInMilliseconds?: number | undefined;
950
1290
  end?: string | undefined;
951
1291
  executionEnd?: string | undefined;
@@ -961,6 +1301,19 @@ declare const buildCronjobApi: (baseClient: MittwaldAPIV2Client) => {
961
1301
  }>;
962
1302
  };
963
1303
  declare const buildCustomerApi: (baseClient: MittwaldAPIV2Client) => {
1304
+ /** List Invites belonging to a Customer. */
1305
+ listInvitesForCustomer: (conf: {
1306
+ customerId: string;
1307
+ headers?: {
1308
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1309
+ "x-access-token"?: string | undefined;
1310
+ } | undefined;
1311
+ queryParameters?: {
1312
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1313
+ limit?: number | undefined;
1314
+ skip?: number | undefined;
1315
+ } | undefined;
1316
+ }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerInvite[]>;
964
1317
  /** Get all customer profiles the authenticated user has access to. */
965
1318
  listCustomers: (conf?: {
966
1319
  headers?: {
@@ -976,6 +1329,19 @@ declare const buildCustomerApi: (baseClient: MittwaldAPIV2Client) => {
976
1329
  page?: number | undefined;
977
1330
  } | undefined;
978
1331
  } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.CustomerCustomer[]>;
1332
+ /** Gets the Wallet of the Customer. */
1333
+ getWallet: (conf: {
1334
+ customerId: string;
1335
+ headers?: {
1336
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1337
+ "x-access-token"?: string | undefined;
1338
+ } | undefined;
1339
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
1340
+ customerId: string;
1341
+ points: number;
1342
+ recommendationCode?: string | undefined;
1343
+ walletId: string;
1344
+ }>;
979
1345
  /** Get a CustomerInvite. */
980
1346
  getCustomerInvite: (conf: {
981
1347
  customerInviteId: string;
@@ -1029,14 +1395,17 @@ declare const buildCustomerApi: (baseClient: MittwaldAPIV2Client) => {
1029
1395
  customerId: string;
1030
1396
  customerNumber: string;
1031
1397
  executingUserRoles?: import("./types.js").MittwaldAPIV2.Components.Schemas.CustomerRole[] | undefined;
1398
+ flags?: import("./types.js").MittwaldAPIV2.Components.Schemas.CustomerCustomerFlag[] | undefined;
1399
+ isAllowedToPlaceOrders?: boolean | undefined;
1032
1400
  isBanned?: boolean | undefined;
1033
1401
  isInDefaultOfPayment?: boolean | undefined;
1402
+ levelOfUndeliverableDunningNotice?: "first" | "second" | undefined;
1034
1403
  memberCount: number;
1035
1404
  name: string;
1036
1405
  owner?: import("./types.js").MittwaldAPIV2.Components.Schemas.CustomerContact | undefined;
1037
1406
  projectCount: number;
1038
1407
  vatId?: string | undefined;
1039
- vatIdValidationState?: ("valid" | "invalid" | "pending" | "unspecified") | undefined;
1408
+ vatIdValidationState?: "valid" | "invalid" | "pending" | "unspecified" | undefined;
1040
1409
  }>;
1041
1410
  /** Get a CustomerInvite by token. */
1042
1411
  getCustomerTokenInvite: (conf: {
@@ -1056,6 +1425,33 @@ declare const buildCustomerApi: (baseClient: MittwaldAPIV2Client) => {
1056
1425
  message?: string | undefined;
1057
1426
  role: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles;
1058
1427
  }>;
1428
+ /** Get your LeadFyndr request. */
1429
+ getLeadFyndrProfileRequest: (conf: {
1430
+ customerId: string;
1431
+ headers?: {
1432
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1433
+ } | undefined;
1434
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
1435
+ createdOn: string;
1436
+ customerId: string;
1437
+ domain: string;
1438
+ profileId: string;
1439
+ requestedBy: import("./types.js").MittwaldAPIV2.Components.Schemas.LeadFinderUser;
1440
+ resultOn?: string | undefined;
1441
+ status: "AUTOTEST_INIT" | "MANUAL_VERIFICATION" | "REJECTED" | "APPROVED";
1442
+ }>;
1443
+ /** Get your LeadFyndr profile. */
1444
+ getLeadFyndrProfile: (conf: {
1445
+ customerId: string;
1446
+ headers?: {
1447
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1448
+ } | undefined;
1449
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
1450
+ approvedOn: string;
1451
+ customerId: string;
1452
+ disabledOn?: string | undefined;
1453
+ domain: string;
1454
+ }>;
1059
1455
  /** Check if the customer profile has a valid contract partner configured. */
1060
1456
  isCustomerLegallyCompetent: (conf: {
1061
1457
  customerId: string;
@@ -1088,21 +1484,10 @@ declare const buildCustomerApi: (baseClient: MittwaldAPIV2Client) => {
1088
1484
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1089
1485
  limit?: number | undefined;
1090
1486
  skip?: number | undefined;
1487
+ hasExpiry?: boolean | undefined;
1488
+ role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles | undefined;
1091
1489
  } | undefined;
1092
1490
  } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerMembership[]>;
1093
- /** List Invites belonging to a Customer. */
1094
- listInvitesForCustomer: (conf: {
1095
- customerId: string;
1096
- headers?: {
1097
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1098
- "x-access-token"?: string | undefined;
1099
- } | undefined;
1100
- queryParameters?: {
1101
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1102
- limit?: number | undefined;
1103
- skip?: number | undefined;
1104
- } | undefined;
1105
- }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerInvite[]>;
1106
1491
  /** List Memberships belonging to a Customer. */
1107
1492
  listMembershipsForCustomer: (conf: {
1108
1493
  customerId: string;
@@ -1114,6 +1499,8 @@ declare const buildCustomerApi: (baseClient: MittwaldAPIV2Client) => {
1114
1499
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1115
1500
  limit?: number | undefined;
1116
1501
  skip?: number | undefined;
1502
+ hasExpiry?: boolean | undefined;
1503
+ role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerRoles | undefined;
1117
1504
  } | undefined;
1118
1505
  }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipCustomerMembership[]>;
1119
1506
  };
@@ -1153,11 +1540,13 @@ declare const buildDatabaseApi: (baseClient: MittwaldAPIV2Client) => {
1153
1540
  characterSettings: import("./types.js").MittwaldAPIV2.Components.Schemas.DatabaseCharacterSettings;
1154
1541
  createdAt: string;
1155
1542
  description: string;
1543
+ externalHostname: string;
1156
1544
  finalizers?: string[] | undefined;
1157
1545
  hostname: string;
1158
1546
  id: string;
1159
1547
  isReady: boolean;
1160
1548
  isShared: boolean;
1549
+ mainUser?: import("./types.js").MittwaldAPIV2.Components.Schemas.DatabaseMySqlUser | undefined;
1161
1550
  name: string;
1162
1551
  projectId: string;
1163
1552
  status: import("./types.js").MittwaldAPIV2.Components.Schemas.DatabaseDatabaseStatus;
@@ -1186,6 +1575,8 @@ declare const buildDatabaseApi: (baseClient: MittwaldAPIV2Client) => {
1186
1575
  mainUser: boolean;
1187
1576
  name: string;
1188
1577
  passwordUpdatedAt: string;
1578
+ status: import("./types.js").MittwaldAPIV2.Components.Schemas.DatabaseDatabaseUserStatus;
1579
+ statusSetAt: string;
1189
1580
  updatedAt: string;
1190
1581
  }>;
1191
1582
  /** Get a RedisDatabase. */
@@ -1226,7 +1617,6 @@ declare const buildDatabaseApi: (baseClient: MittwaldAPIV2Client) => {
1226
1617
  listMysqlCharsets: (conf?: {
1227
1618
  headers?: {
1228
1619
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1229
- "x-access-token"?: string | undefined;
1230
1620
  } | undefined;
1231
1621
  queryParameters?: {
1232
1622
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -1257,6 +1647,21 @@ declare const buildDatabaseApi: (baseClient: MittwaldAPIV2Client) => {
1257
1647
  } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.DatabaseRedisVersion[]>;
1258
1648
  };
1259
1649
  declare const buildDomainApi: (baseClient: MittwaldAPIV2Client) => {
1650
+ /** List Domains */
1651
+ listDomains: (conf?: {
1652
+ headers?: {
1653
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1654
+ "x-access-token"?: string | undefined;
1655
+ } | undefined;
1656
+ queryParameters?: {
1657
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1658
+ projectId?: string | undefined;
1659
+ page?: number | undefined;
1660
+ limit?: number | undefined;
1661
+ domainSearchName?: string | undefined;
1662
+ contactHash?: string | undefined;
1663
+ } | undefined;
1664
+ } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.DomainDomain[]>;
1260
1665
  /** Get a DNSZone. */
1261
1666
  dnsGetDnsZone: (conf: {
1262
1667
  dnsZoneId: string;
@@ -1268,6 +1673,7 @@ declare const buildDomainApi: (baseClient: MittwaldAPIV2Client) => {
1268
1673
  domain: string;
1269
1674
  id: string;
1270
1675
  recordSet: {
1676
+ caa: import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordCAA;
1271
1677
  cname: import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordCNAME;
1272
1678
  combinedARecords: import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordCombinedA;
1273
1679
  mx: import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordMX;
@@ -1283,21 +1689,6 @@ declare const buildDomainApi: (baseClient: MittwaldAPIV2Client) => {
1283
1689
  "x-access-token"?: string | undefined;
1284
1690
  } | undefined;
1285
1691
  }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.DnsZone[]>;
1286
- /** List Domains */
1287
- listDomains: (conf?: {
1288
- headers?: {
1289
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1290
- "x-access-token"?: string | undefined;
1291
- } | undefined;
1292
- queryParameters?: {
1293
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1294
- projectId?: string | undefined;
1295
- page?: number | undefined;
1296
- limit?: number | undefined;
1297
- domainSearchName?: string | undefined;
1298
- contactHash?: string | undefined;
1299
- } | undefined;
1300
- } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.DomainDomain[]>;
1301
1692
  /** Get a Domain. */
1302
1693
  getDomain: (conf: {
1303
1694
  domainId: string;
@@ -1475,125 +1866,6 @@ declare const buildDomainApi: (baseClient: MittwaldAPIV2Client) => {
1475
1866
  } | undefined;
1476
1867
  } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.SslCertificate[]>;
1477
1868
  };
1478
- declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
1479
- /** List ExtensionInstances. */
1480
- extensionListExtensionInstances: (conf: {
1481
- queryParameters: {
1482
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1483
- context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
1484
- contextId: string;
1485
- limit?: number | undefined;
1486
- skip?: number | undefined;
1487
- page?: number | undefined;
1488
- };
1489
- headers?: {
1490
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1491
- "x-access-token"?: string | undefined;
1492
- } | undefined;
1493
- }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstance[]>;
1494
- /** Get an ExtensionInstance. */
1495
- extensionGetExtensionInstance: (conf: {
1496
- extensionInstanceId: string;
1497
- headers?: {
1498
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1499
- "x-access-token"?: string | undefined;
1500
- } | undefined;
1501
- }) => import("@mittwald/react-use-promise").AsyncResource<{
1502
- aggregateReference: {
1503
- aggregate: string;
1504
- domain: string;
1505
- id: string;
1506
- };
1507
- consentedScopes: string[];
1508
- createdAt?: string | undefined;
1509
- disabled: boolean;
1510
- extensionId: string;
1511
- id: string;
1512
- pendingInstallation: boolean;
1513
- pendingRemoval: boolean;
1514
- }>;
1515
- /** Get a Contributor. */
1516
- extensionGetContributor: (conf: {
1517
- contributorId: string;
1518
- headers?: {
1519
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1520
- "x-access-token"?: string | undefined;
1521
- } | undefined;
1522
- }) => import("@mittwald/react-use-promise").AsyncResource<{
1523
- customerId: string;
1524
- email?: string | undefined;
1525
- id: string;
1526
- logoRefId?: string | undefined;
1527
- name: string;
1528
- phone?: string | undefined;
1529
- state: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributorState;
1530
- url?: string | undefined;
1531
- }>;
1532
- /** Get an Extension. */
1533
- extensionGetExtension: (conf: {
1534
- extensionId: string;
1535
- headers?: {
1536
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1537
- "x-access-token"?: string | undefined;
1538
- } | undefined;
1539
- }) => import("@mittwald/react-use-promise").AsyncResource<{
1540
- blocked: boolean;
1541
- context: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext;
1542
- contributorId: string;
1543
- description: string;
1544
- detailedDescriptions?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceDetailedDescriptions | undefined;
1545
- disabled: boolean;
1546
- frontendComponents?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExternalComponent[] | undefined;
1547
- frontendFragments?: {
1548
- [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
1549
- } | undefined;
1550
- id: string;
1551
- name: string;
1552
- scopes: string[];
1553
- state: "enabled" | "blocked" | "disabled";
1554
- support: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta;
1555
- tags: string[];
1556
- }>;
1557
- /** Get the public key to verify the webhook signature. */
1558
- extensionGetPublicKey: (conf: {
1559
- serial: string;
1560
- headers?: {
1561
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1562
- "x-access-token"?: string | undefined;
1563
- } | undefined;
1564
- }) => import("@mittwald/react-use-promise").AsyncResource<{
1565
- algorithm: string;
1566
- key: string;
1567
- serial: string;
1568
- }>;
1569
- /** List Contributors. */
1570
- extensionListContributors: (conf?: {
1571
- headers?: {
1572
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1573
- "x-access-token"?: string | undefined;
1574
- } | undefined;
1575
- queryParameters?: {
1576
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1577
- limit?: number | undefined;
1578
- skip?: number | undefined;
1579
- page?: number | undefined;
1580
- } | undefined;
1581
- } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributor[]>;
1582
- /** List Extensions. */
1583
- extensionListExtensions: (conf?: {
1584
- headers?: {
1585
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1586
- "x-access-token"?: string | undefined;
1587
- } | undefined;
1588
- queryParameters?: {
1589
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1590
- context?: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContext | undefined;
1591
- limit?: number | undefined;
1592
- skip?: number | undefined;
1593
- page?: number | undefined;
1594
- } | undefined;
1595
- } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtension[]>;
1596
- };
1597
1869
  declare const buildFileApi: (baseClient: MittwaldAPIV2Client) => {
1598
1870
  /** Get a File's meta. */
1599
1871
  getFileMeta: (conf: {
@@ -1624,6 +1896,7 @@ declare const buildFileApi: (baseClient: MittwaldAPIV2Client) => {
1624
1896
  }) => import("@mittwald/react-use-promise").AsyncResource<{
1625
1897
  extensions: string[];
1626
1898
  fileTypes: import("./types.js").MittwaldAPIV2.Components.Schemas.FileFileType[];
1899
+ maxNameLength: number;
1627
1900
  maxSizeInBytes: number;
1628
1901
  maxSizeInKB: number;
1629
1902
  maxSizeInKb: number;
@@ -1643,13 +1916,14 @@ declare const buildFileApi: (baseClient: MittwaldAPIV2Client) => {
1643
1916
  }>;
1644
1917
  /** Get a FileUploadType's rules. */
1645
1918
  getFileUploadTypeRules: (conf: {
1646
- fileUploadType: "avatar" | "conversation";
1919
+ fileUploadType: "avatar" | "extensionAssetImage" | "extensionAssetVideo" | "conversation";
1647
1920
  headers?: {
1648
1921
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1649
1922
  } | undefined;
1650
1923
  }) => import("@mittwald/react-use-promise").AsyncResource<{
1651
1924
  extensions: string[];
1652
1925
  fileTypes: import("./types.js").MittwaldAPIV2.Components.Schemas.FileFileType[];
1926
+ maxNameLength: number;
1653
1927
  maxSizeInBytes: number;
1654
1928
  maxSizeInKB: number;
1655
1929
  maxSizeInKb: number;
@@ -1672,12 +1946,14 @@ declare const buildFileApi: (baseClient: MittwaldAPIV2Client) => {
1672
1946
  fileId: string;
1673
1947
  headers?: {
1674
1948
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1675
- Accept?: ("application/octet-stream" | "text/plain;base64") | undefined;
1676
- "Content-Disposition"?: ("inline" | "attachment") | undefined;
1949
+ Accept?: "application/octet-stream" | "text/plain;base64" | undefined;
1950
+ "Content-Disposition"?: "inline" | "attachment" | undefined;
1677
1951
  Token?: string | undefined;
1678
1952
  } | undefined;
1679
1953
  queryParameters?: {
1680
1954
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1955
+ accept?: "application/octet-stream" | "text/plain;base64" | undefined;
1956
+ "content-disposition"?: "inline" | "attachment" | undefined;
1681
1957
  token?: string | undefined;
1682
1958
  } | undefined;
1683
1959
  }) => import("@mittwald/react-use-promise").AsyncResource<string>;
@@ -1687,12 +1963,14 @@ declare const buildFileApi: (baseClient: MittwaldAPIV2Client) => {
1687
1963
  fileName: string;
1688
1964
  headers?: {
1689
1965
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1690
- Accept?: ("application/octet-stream" | "text/plain;base64") | undefined;
1691
- "Content-Disposition"?: ("inline" | "attachment") | undefined;
1966
+ Accept?: "application/octet-stream" | "text/plain;base64" | undefined;
1967
+ "Content-Disposition"?: "inline" | "attachment" | undefined;
1692
1968
  Token?: string | undefined;
1693
1969
  } | undefined;
1694
1970
  queryParameters?: {
1695
1971
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1972
+ accept?: "application/octet-stream" | "text/plain;base64" | undefined;
1973
+ "content-disposition"?: "inline" | "attachment" | undefined;
1696
1974
  token?: string | undefined;
1697
1975
  } | undefined;
1698
1976
  }) => import("@mittwald/react-use-promise").AsyncResource<string>;
@@ -1723,9 +2001,14 @@ declare const buildMailApi: (baseClient: MittwaldAPIV2Client) => {
1723
2001
  queryParameters?: {
1724
2002
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1725
2003
  search?: string | undefined;
2004
+ forwardAddress?: boolean | undefined;
2005
+ catchAll?: boolean | undefined;
2006
+ autoResponder?: boolean | undefined;
1726
2007
  limit?: number | undefined;
1727
2008
  skip?: number | undefined;
1728
2009
  page?: number | undefined;
2010
+ sort?: ("address.domain" | "address.local" | "updatedAt" | "projectId" | "mailbox.quota" | "mailbox.name")[] | undefined;
2011
+ order?: ("asc" | "desc")[] | undefined;
1729
2012
  } | undefined;
1730
2013
  }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MailMailAddress[]>;
1731
2014
  /** Get a DeliveryBox. */
@@ -1760,9 +2043,11 @@ declare const buildMailApi: (baseClient: MittwaldAPIV2Client) => {
1760
2043
  message?: string;
1761
2044
  startsAt?: string;
1762
2045
  };
2046
+ availableBackups?: import("./types.js").MittwaldAPIV2.Components.Schemas.MailMailAddressBackup[] | undefined;
1763
2047
  forwardAddresses: string[];
1764
2048
  id: string;
1765
2049
  isArchived: boolean;
2050
+ isBackupInProgress?: boolean | undefined;
1766
2051
  isCatchAll: boolean;
1767
2052
  mailbox?: {
1768
2053
  name: string;
@@ -1862,7 +2147,7 @@ declare const buildNotificationApi: (baseClient: MittwaldAPIV2Client) => {
1862
2147
  } | undefined;
1863
2148
  queryParameters?: {
1864
2149
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1865
- status?: ("unread" | "read") | undefined;
2150
+ status?: "unread" | "read" | undefined;
1866
2151
  limit?: number | undefined;
1867
2152
  skip?: number | undefined;
1868
2153
  page?: number | undefined;
@@ -1973,11 +2258,14 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
1973
2258
  "x-access-token"?: string | undefined;
1974
2259
  } | undefined;
1975
2260
  }) => import("@mittwald/react-use-promise").AsyncResource<{
2261
+ avatarRef?: string | undefined;
1976
2262
  email: string;
1977
2263
  expiresAt?: string | undefined;
2264
+ firstName: string;
1978
2265
  id: string;
1979
2266
  inherited: boolean;
1980
2267
  inviteId?: string | undefined;
2268
+ lastName: string;
1981
2269
  memberSince?: string | undefined;
1982
2270
  mfa: boolean;
1983
2271
  projectId: string;
@@ -1992,6 +2280,8 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
1992
2280
  "x-access-token"?: string | undefined;
1993
2281
  } | undefined;
1994
2282
  }) => import("@mittwald/react-use-promise").AsyncResource<{
2283
+ backupStorageUsageInBytes: number;
2284
+ backupStorageUsageInBytesSetAt: string;
1995
2285
  clusterDomain?: string | undefined;
1996
2286
  clusterID?: string | undefined;
1997
2287
  clusterId?: string | undefined;
@@ -2045,11 +2335,14 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
2045
2335
  "x-access-token"?: string | undefined;
2046
2336
  } | undefined;
2047
2337
  }) => import("@mittwald/react-use-promise").AsyncResource<{
2338
+ avatarRef?: string | undefined;
2048
2339
  email: string;
2049
2340
  expiresAt?: string | undefined;
2341
+ firstName: string;
2050
2342
  id: string;
2051
2343
  inherited: boolean;
2052
2344
  inviteId?: string | undefined;
2345
+ lastName: string;
2053
2346
  memberSince?: string | undefined;
2054
2347
  mfa: boolean;
2055
2348
  projectId: string;
@@ -2090,6 +2383,10 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
2090
2383
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2091
2384
  limit?: number | undefined;
2092
2385
  skip?: number | undefined;
2386
+ hasExpiry?: boolean | undefined;
2387
+ isInherited?: boolean | undefined;
2388
+ role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles | undefined;
2389
+ hasMfa?: boolean | undefined;
2093
2390
  } | undefined;
2094
2391
  }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectMembership[]>;
2095
2392
  /** List ProjectInvites belonging to the executing user. */
@@ -2114,6 +2411,9 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
2114
2411
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2115
2412
  limit?: number | undefined;
2116
2413
  skip?: number | undefined;
2414
+ hasExpiry?: boolean | undefined;
2415
+ isInherited?: boolean | undefined;
2416
+ role?: import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectRoles | undefined;
2117
2417
  } | undefined;
2118
2418
  } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectMembership[]>;
2119
2419
  /** List Projects belonging to the executing user. */
@@ -2131,6 +2431,8 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
2131
2431
  page?: number | undefined;
2132
2432
  } | undefined;
2133
2433
  } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<{
2434
+ backupStorageUsageInBytes: number;
2435
+ backupStorageUsageInBytesSetAt: string;
2134
2436
  createdAt: string;
2135
2437
  customerId: string;
2136
2438
  customerMeta: {
@@ -2166,6 +2468,40 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
2166
2468
  skip?: number | undefined;
2167
2469
  } | undefined;
2168
2470
  } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectServer[]>;
2471
+ /** Get storage space Statistics belonging to a Project. */
2472
+ storagespaceGetProjectStatistics: (conf: {
2473
+ projectId: string;
2474
+ headers?: {
2475
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2476
+ "x-access-token"?: string | undefined;
2477
+ } | undefined;
2478
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
2479
+ childStatistics?: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatistics[] | undefined;
2480
+ description?: string | undefined;
2481
+ id: string;
2482
+ kind: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsKind;
2483
+ meta: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsMeta;
2484
+ name: string;
2485
+ notificationThresholdInBytes?: number | undefined;
2486
+ statisticCategories?: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsCategory[] | undefined;
2487
+ }>;
2488
+ /** Get storage space Statistics belonging to a Server. */
2489
+ storagespaceGetServerStatistics: (conf: {
2490
+ serverId: string;
2491
+ headers?: {
2492
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2493
+ "x-access-token"?: string | undefined;
2494
+ } | undefined;
2495
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
2496
+ childStatistics?: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatistics[] | undefined;
2497
+ description?: string | undefined;
2498
+ id: string;
2499
+ kind: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsKind;
2500
+ meta: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsMeta;
2501
+ name: string;
2502
+ notificationThresholdInBytes?: number | undefined;
2503
+ statisticCategories?: import("./types.js").MittwaldAPIV2.Components.Schemas.StoragespaceStatisticsCategory[] | undefined;
2504
+ }>;
2169
2505
  };
2170
2506
  declare const buildProjectFileSystemApi: (baseClient: MittwaldAPIV2Client) => {
2171
2507
  /** List directories belonging to a Project. */
@@ -2353,6 +2689,12 @@ declare const buildUserApi: (baseClient: MittwaldAPIV2Client) => {
2353
2689
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2354
2690
  "x-access-token"?: string | undefined;
2355
2691
  } | undefined;
2692
+ queryParameters?: {
2693
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2694
+ limit?: number | undefined;
2695
+ skip?: number | undefined;
2696
+ page?: number | undefined;
2697
+ } | undefined;
2356
2698
  } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.SignupApiToken[]>;
2357
2699
  /** Get your stored ssh-keys. */
2358
2700
  listSshKeys: (conf?: {
@@ -2360,6 +2702,12 @@ declare const buildUserApi: (baseClient: MittwaldAPIV2Client) => {
2360
2702
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2361
2703
  "x-access-token"?: string | undefined;
2362
2704
  } | undefined;
2705
+ queryParameters?: {
2706
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2707
+ limit?: number | undefined;
2708
+ skip?: number | undefined;
2709
+ page?: number | undefined;
2710
+ } | undefined;
2363
2711
  } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<{
2364
2712
  sshKeys?: import("./types.js").MittwaldAPIV2.Components.Schemas.SignupSshKey[] | undefined;
2365
2713
  }>;
@@ -2387,22 +2735,6 @@ declare const buildUserApi: (baseClient: MittwaldAPIV2Client) => {
2387
2735
  }) => import("@mittwald/react-use-promise").AsyncResource<{
2388
2736
  sshKey: import("./types.js").MittwaldAPIV2.Components.Schemas.SignupSshKey;
2389
2737
  }>;
2390
- /** Get your account information. */
2391
- getOwnAccount: (conf?: {
2392
- headers?: {
2393
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2394
- "x-access-token"?: string | undefined;
2395
- } | undefined;
2396
- } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<{
2397
- email?: string | undefined;
2398
- mfaDetails?: {
2399
- mfaConfirmed?: boolean;
2400
- mfaInitialized?: boolean;
2401
- } | undefined;
2402
- passwordUpdatedAt?: string | undefined;
2403
- person?: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsPerson | undefined;
2404
- userId?: string | undefined;
2405
- }>;
2406
2738
  /** The timestamp of your latest password change. */
2407
2739
  getPasswordUpdatedAt: (conf?: {
2408
2740
  headers?: {
@@ -2459,6 +2791,9 @@ declare const buildUserApi: (baseClient: MittwaldAPIV2Client) => {
2459
2791
  } | undefined;
2460
2792
  }) => import("@mittwald/react-use-promise").AsyncResource<{
2461
2793
  avatarRef?: string | undefined;
2794
+ customerMemberships?: {
2795
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.UserCustomerMembership;
2796
+ } | undefined;
2462
2797
  email?: string | undefined;
2463
2798
  employeeInformation?: {
2464
2799
  department: string;
@@ -2471,6 +2806,9 @@ declare const buildUserApi: (baseClient: MittwaldAPIV2Client) => {
2471
2806
  passwordUpdatedAt?: string | undefined;
2472
2807
  person: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsPerson;
2473
2808
  phoneNumber?: string | undefined;
2809
+ projectMemberships?: {
2810
+ [k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.UserProjectMembership;
2811
+ } | undefined;
2474
2812
  registeredAt?: string | undefined;
2475
2813
  userId: string;
2476
2814
  }>;
@@ -2492,6 +2830,12 @@ declare const buildUserApi: (baseClient: MittwaldAPIV2Client) => {
2492
2830
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2493
2831
  "x-access-token"?: string | undefined;
2494
2832
  } | undefined;
2833
+ queryParameters?: {
2834
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2835
+ limit?: number | undefined;
2836
+ skip?: number | undefined;
2837
+ page?: number | undefined;
2838
+ } | undefined;
2495
2839
  } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.SignupUserSession[]>;
2496
2840
  /** Obtain authorization from the resource owner. */
2497
2841
  oauthGetAuthorization: (conf: {
@@ -2537,6 +2881,8 @@ export declare class MittwaldAPIV2ClientReact {
2537
2881
  readonly container: ReturnType<typeof buildContainerApi>;
2538
2882
  /** The contract API allows you to manage your contracts and orders */
2539
2883
  readonly contract: ReturnType<typeof buildContractApi>;
2884
+ /** The marketplace API allows you to manage extensions and more information regaring the marketplace. */
2885
+ readonly marketplace: ReturnType<typeof buildMarketplaceApi>;
2540
2886
  /** The conversation API allows you to manage your support conversations. */
2541
2887
  readonly conversation: ReturnType<typeof buildConversationApi>;
2542
2888
  /** The cronjob API allows you to manage cronjobs within a project. */
@@ -2547,8 +2893,6 @@ export declare class MittwaldAPIV2ClientReact {
2547
2893
  readonly database: ReturnType<typeof buildDatabaseApi>;
2548
2894
  /** The domain API allows you to manage your domains, DNS records, SSL certificates and ingress resources. */
2549
2895
  readonly domain: ReturnType<typeof buildDomainApi>;
2550
- /** The marketplace API allows you to manage extensions and more information regaring the marketplace. */
2551
- readonly marketplace: ReturnType<typeof buildMarketplaceApi>;
2552
2896
  /** The file API allows you to manage your files, for example for conversations attachments and avatar uploads. */
2553
2897
  readonly file: ReturnType<typeof buildFileApi>;
2554
2898
  /** The mail API allows you to manage your mail accounts. */