@mittwald/api-client 4.235.0 → 4.237.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.
@@ -70,6 +70,8 @@ const buildContainerApi = (baseClient) => ({
70
70
  listStacks: new ApiCallAsyncResourceFactory(descriptors.containerListStacks, baseClient.container.listStacks).getApiResource,
71
71
  /** List Volumes belonging to a Project. */
72
72
  listVolumes: new ApiCallAsyncResourceFactory(descriptors.containerListVolumes, baseClient.container.listVolumes).getApiResource,
73
+ /** List Volumes belonging to a Stack. */
74
+ listStackVolumes: new ApiCallAsyncResourceFactory(descriptors.containerListStackVolumes, baseClient.container.listStackVolumes).getApiResource,
73
75
  });
74
76
  const buildContractApi = (baseClient) => ({
75
77
  /** Return the BaseItem of the Contract with the given ID. */
@@ -137,6 +137,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
137
137
  validateContainerRegistryUri: this.requestFunctionFactory(descriptors.containerValidateContainerRegistryUri),
138
138
  /** Validate a Registries' credentials. */
139
139
  validateRegistryCredentials: this.requestFunctionFactory(descriptors.containerValidateRegistryCredentials),
140
+ /** List Volumes belonging to a Stack. */
141
+ listStackVolumes: this.requestFunctionFactory(descriptors.containerListStackVolumes),
140
142
  };
141
143
  /** The contract API allows you to manage your contracts and orders */
142
144
  contract = {
@@ -229,6 +231,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
229
231
  contributorResetContributorAvatar: this.requestFunctionFactory(descriptors.contributorResetContributorAvatar),
230
232
  /** Start the verification process of a contributor. */
231
233
  contributorRequestVerification: this.requestFunctionFactory(descriptors.contributorRequestVerification),
234
+ /** Cancel the verification-process of a contributor. */
235
+ contributorCancelVerification: this.requestFunctionFactory(descriptors.contributorCancelVerification),
232
236
  /** Rotate the secret for an extension instance. */
233
237
  contributorRotateSecretForExtensionInstance: this.requestFunctionFactory(descriptors.contributorRotateSecretForExtensionInstance),
234
238
  /** Authenticate your external application using the extensionInstanceSecret. */
@@ -544,6 +544,12 @@ export const contributorRequestVerification = {
544
544
  method: "POST",
545
545
  operationId: "contributor-request-verification",
546
546
  };
547
+ /** Cancel the verification-process of a contributor. */
548
+ export const contributorCancelVerification = {
549
+ path: "/v2/contributors/{contributorId}/verification-process",
550
+ method: "DELETE",
551
+ operationId: "contributor-cancel-verification",
552
+ };
547
553
  /** Rotate the secret for an extension instance. */
548
554
  export const contributorRotateSecretForExtensionInstance = {
549
555
  path: "/v2/contributors/{contributorId}/extensions/{extensionId}/extension-instances/{extensionInstanceId}/secret",
@@ -2560,3 +2566,9 @@ export const leadfyndrCreateLeadsExport = {
2560
2566
  method: "POST",
2561
2567
  operationId: "leadfyndr-create-leads-export",
2562
2568
  };
2569
+ /** List Volumes belonging to a Stack. */
2570
+ export const containerListStackVolumes = {
2571
+ path: "/v2/stacks/{stackId}/volumes",
2572
+ method: "GET",
2573
+ operationId: "container-list-stack-volumes",
2574
+ };
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.234.0';
1
+ export const MittwaldAPIClientVersion = '4.236.0';
@@ -26,6 +26,7 @@ declare const buildAppApi: (baseClient: MittwaldAPIV2Client) => {
26
26
  appVersion: import("./types.js").MittwaldAPIV2.Components.Schemas.AppVersionStatus;
27
27
  createdAt: string;
28
28
  customDocumentRoot?: string | undefined;
29
+ deletionRequested?: boolean | undefined;
29
30
  description: string;
30
31
  disabled: boolean;
31
32
  id: string;
@@ -521,6 +522,22 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
521
522
  page?: number | undefined;
522
523
  } | undefined;
523
524
  }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[]>;
525
+ /** List Volumes belonging to a Stack. */
526
+ listStackVolumes: (conf: {
527
+ stackId: string;
528
+ headers?: {
529
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
530
+ "x-access-token"?: string | undefined;
531
+ } | undefined;
532
+ queryParameters?: {
533
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
534
+ searchTerm?: string | undefined;
535
+ sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeSortOrder | undefined;
536
+ limit?: number | undefined;
537
+ skip?: number | undefined;
538
+ page?: number | undefined;
539
+ } | undefined;
540
+ }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[]>;
524
541
  };
525
542
  declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
526
543
  /** Return the BaseItem of the Contract with the given ID. */
@@ -797,12 +814,12 @@ declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
797
814
  } | undefined;
798
815
  queryParameters?: {
799
816
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
800
- limit?: number | undefined;
801
- skip?: number | undefined;
802
- page?: number | undefined;
803
817
  includesStatus?: import("./types.js").MittwaldAPIV2.Components.Schemas.OrderOrderStatus[] | undefined;
804
818
  excludesStatus?: import("./types.js").MittwaldAPIV2.Components.Schemas.OrderOrderStatus[] | undefined;
805
819
  templateNames?: string[] | undefined;
820
+ limit?: number | undefined;
821
+ skip?: number | undefined;
822
+ page?: number | undefined;
806
823
  } | undefined;
807
824
  } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.OrderCustomerOrder[]>;
808
825
  /** Get Order for Customer. */
@@ -116,6 +116,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
116
116
  appVersion: import("./types.js").MittwaldAPIV2.Components.Schemas.AppVersionStatus;
117
117
  createdAt: string;
118
118
  customDocumentRoot?: string | undefined;
119
+ deletionRequested?: boolean | undefined;
119
120
  description: string;
120
121
  disabled: boolean;
121
122
  id: string;
@@ -155,6 +156,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
155
156
  appVersion: import("./types.js").MittwaldAPIV2.Components.Schemas.AppVersionStatus;
156
157
  createdAt: string;
157
158
  customDocumentRoot?: string | undefined;
159
+ deletionRequested?: boolean | undefined;
158
160
  description: string;
159
161
  disabled: boolean;
160
162
  id: string;
@@ -4114,6 +4116,86 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4114
4116
  }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
4115
4117
  [x: string]: unknown;
4116
4118
  }, 500, "application/json">>>;
4119
+ /** List Volumes belonging to a Stack. */
4120
+ listStackVolumes: (request: {
4121
+ stackId: string;
4122
+ headers?: {
4123
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
4124
+ "x-access-token"?: string | undefined;
4125
+ } | undefined;
4126
+ queryParameters?: {
4127
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
4128
+ searchTerm?: string | undefined;
4129
+ sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeSortOrder | undefined;
4130
+ limit?: number | undefined;
4131
+ skip?: number | undefined;
4132
+ page?: number | undefined;
4133
+ } | undefined;
4134
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
4135
+ headers?: Partial<{
4136
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4137
+ }>;
4138
+ } & {
4139
+ pathParameters: {
4140
+ stackId: string;
4141
+ };
4142
+ } & {
4143
+ queryParameters: {
4144
+ searchTerm?: string | undefined;
4145
+ sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeSortOrder | undefined;
4146
+ limit?: number | undefined;
4147
+ skip?: number | undefined;
4148
+ page?: number | undefined;
4149
+ } & Partial<{
4150
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4151
+ }>;
4152
+ } & {
4153
+ headers: {
4154
+ "x-access-token"?: string | undefined;
4155
+ } & Partial<{
4156
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4157
+ }>;
4158
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
4159
+ [x: string]: unknown;
4160
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
4161
+ [x: string]: unknown;
4162
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
4163
+ [x: string]: unknown;
4164
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
4165
+ [x: string]: unknown;
4166
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
4167
+ headers?: Partial<{
4168
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4169
+ }>;
4170
+ } & {
4171
+ pathParameters: {
4172
+ stackId: string;
4173
+ };
4174
+ } & {
4175
+ queryParameters: {
4176
+ searchTerm?: string | undefined;
4177
+ sortOrder?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeSortOrder | undefined;
4178
+ limit?: number | undefined;
4179
+ skip?: number | undefined;
4180
+ page?: number | undefined;
4181
+ } & Partial<{
4182
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4183
+ }>;
4184
+ } & {
4185
+ headers: {
4186
+ "x-access-token"?: string | undefined;
4187
+ } & Partial<{
4188
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4189
+ }>;
4190
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
4191
+ [x: string]: unknown;
4192
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
4193
+ [x: string]: unknown;
4194
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
4195
+ [x: string]: unknown;
4196
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
4197
+ [x: string]: unknown;
4198
+ }, 500, "application/json">>>;
4117
4199
  };
4118
4200
  /** The contract API allows you to manage your contracts and orders */
4119
4201
  readonly contract: {
@@ -5580,12 +5662,12 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5580
5662
  } | undefined;
5581
5663
  queryParameters?: {
5582
5664
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5583
- limit?: number | undefined;
5584
- skip?: number | undefined;
5585
- page?: number | undefined;
5586
5665
  includesStatus?: import("./types.js").MittwaldAPIV2.Components.Schemas.OrderOrderStatus[] | undefined;
5587
5666
  excludesStatus?: import("./types.js").MittwaldAPIV2.Components.Schemas.OrderOrderStatus[] | undefined;
5588
5667
  templateNames?: string[] | undefined;
5668
+ limit?: number | undefined;
5669
+ skip?: number | undefined;
5670
+ page?: number | undefined;
5589
5671
  } | undefined;
5590
5672
  } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
5591
5673
  headers?: Partial<{
@@ -5593,12 +5675,12 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5593
5675
  }>;
5594
5676
  } & {
5595
5677
  queryParameters: {
5596
- limit?: number | undefined;
5597
- skip?: number | undefined;
5598
- page?: number | undefined;
5599
5678
  includesStatus?: import("./types.js").MittwaldAPIV2.Components.Schemas.OrderOrderStatus[] | undefined;
5600
5679
  excludesStatus?: import("./types.js").MittwaldAPIV2.Components.Schemas.OrderOrderStatus[] | undefined;
5601
5680
  templateNames?: string[] | undefined;
5681
+ limit?: number | undefined;
5682
+ skip?: number | undefined;
5683
+ page?: number | undefined;
5602
5684
  } & Partial<{
5603
5685
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5604
5686
  }>;
@@ -5616,12 +5698,12 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5616
5698
  }>;
5617
5699
  } & {
5618
5700
  queryParameters: {
5619
- limit?: number | undefined;
5620
- skip?: number | undefined;
5621
- page?: number | undefined;
5622
5701
  includesStatus?: import("./types.js").MittwaldAPIV2.Components.Schemas.OrderOrderStatus[] | undefined;
5623
5702
  excludesStatus?: import("./types.js").MittwaldAPIV2.Components.Schemas.OrderOrderStatus[] | undefined;
5624
5703
  templateNames?: string[] | undefined;
5704
+ limit?: number | undefined;
5705
+ skip?: number | undefined;
5706
+ page?: number | undefined;
5625
5707
  } & Partial<{
5626
5708
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5627
5709
  }>;
@@ -7170,6 +7252,50 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
7170
7252
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7171
7253
  [x: string]: unknown;
7172
7254
  }, 429, "application/json">>>;
7255
+ /** Cancel the verification-process of a contributor. */
7256
+ contributorCancelVerification: (request: {
7257
+ contributorId: string;
7258
+ headers?: {
7259
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
7260
+ "x-access-token"?: string | undefined;
7261
+ } | undefined;
7262
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
7263
+ headers?: Partial<{
7264
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7265
+ }>;
7266
+ } & {
7267
+ pathParameters: {
7268
+ contributorId: string;
7269
+ };
7270
+ } & {
7271
+ headers: {
7272
+ "x-access-token"?: string | undefined;
7273
+ } & Partial<{
7274
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7275
+ }>;
7276
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
7277
+ [x: string]: unknown;
7278
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7279
+ [x: string]: unknown;
7280
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
7281
+ headers?: Partial<{
7282
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7283
+ }>;
7284
+ } & {
7285
+ pathParameters: {
7286
+ contributorId: string;
7287
+ };
7288
+ } & {
7289
+ headers: {
7290
+ "x-access-token"?: string | undefined;
7291
+ } & Partial<{
7292
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
7293
+ }>;
7294
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
7295
+ [x: string]: unknown;
7296
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
7297
+ [x: string]: unknown;
7298
+ }, 429, "application/json">>>;
7173
7299
  /** Rotate the secret for an extension instance. */
7174
7300
  contributorRotateSecretForExtensionInstance: (request: {
7175
7301
  contributorId: string;
@@ -185,6 +185,8 @@ export declare const contributorRequestDeviatingContributorAvatarUpload: OpenAPI
185
185
  export declare const contributorResetContributorAvatar: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdAvatar.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdAvatar.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdAvatar.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdAvatar.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdAvatar.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdAvatar.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdAvatar.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
186
186
  /** Start the verification process of a contributor. */
187
187
  export declare const contributorRequestVerification: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
188
+ /** Cancel the verification-process of a contributor. */
189
+ export declare const contributorCancelVerification: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Delete.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdVerificationProcess.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
188
190
  /** Rotate the secret for an extension instance. */
189
191
  export declare const contributorRotateSecretForExtensionInstance: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdSecret.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdSecret.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdSecret.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdSecret.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdSecret.Put.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdSecret.Put.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdSecret.Put.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdSecret.Put.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdSecret.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
190
192
  /** Get all conversation the authenticated user has created or has access to. */
@@ -857,3 +859,5 @@ export declare const verificationVerifyCompany: OpenAPIOperation<RequestType<Sim
857
859
  export declare const leadfyndrGetLeadsExportHistory: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsExports.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsExports.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsExports.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsExports.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsExports.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsExports.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsExports.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsExports.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsExports.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
858
860
  /** Create an export of unlocked leads for the given customerId. */
859
861
  export declare const leadfyndrCreateLeadsExport: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsExport.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsExport.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsExport.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsExport.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsExport.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsExport.Post.Responses.$200.Content.TextCsv>, 200, "text/csv"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsExport.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsExport.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsExport.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsExport.Post.Responses.$409.Content.ApplicationJson>, 409, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsExport.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdUnlockedLeadsExport.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
862
+ /** List Volumes belonging to a Stack. */
863
+ export declare const containerListStackVolumes: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdVolumes.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdVolumes.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdVolumes.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdVolumes.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdVolumes.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdVolumes.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdVolumes.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdVolumes.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdVolumes.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
@@ -366,6 +366,10 @@ export declare namespace MittwaldAPIV2 {
366
366
  type RequestData = InferredRequestData<typeof descriptors.contributorRequestVerification>;
367
367
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contributorRequestVerification, TStatus>;
368
368
  }
369
+ namespace ContributorCancelVerification {
370
+ type RequestData = InferredRequestData<typeof descriptors.contributorCancelVerification>;
371
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contributorCancelVerification, TStatus>;
372
+ }
369
373
  namespace ContributorRotateSecretForExtensionInstance {
370
374
  type RequestData = InferredRequestData<typeof descriptors.contributorRotateSecretForExtensionInstance>;
371
375
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.contributorRotateSecretForExtensionInstance, TStatus>;
@@ -1710,6 +1714,10 @@ export declare namespace MittwaldAPIV2 {
1710
1714
  type RequestData = InferredRequestData<typeof descriptors.leadfyndrCreateLeadsExport>;
1711
1715
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.leadfyndrCreateLeadsExport, TStatus>;
1712
1716
  }
1717
+ namespace ContainerListStackVolumes {
1718
+ type RequestData = InferredRequestData<typeof descriptors.containerListStackVolumes>;
1719
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerListStackVolumes, TStatus>;
1720
+ }
1713
1721
  }
1714
1722
  namespace Components {
1715
1723
  namespace Schemas {
@@ -1776,6 +1784,7 @@ export declare namespace MittwaldAPIV2 {
1776
1784
  appVersion: MittwaldAPIV2.Components.Schemas.AppVersionStatus;
1777
1785
  createdAt: string;
1778
1786
  customDocumentRoot?: string;
1787
+ deletionRequested?: boolean;
1779
1788
  description: string;
1780
1789
  disabled: boolean;
1781
1790
  id: string;
@@ -3423,6 +3432,7 @@ export declare namespace MittwaldAPIV2 {
3423
3432
  */
3424
3433
  type MarketplaceMonthlyPricePlanStrategy = {
3425
3434
  description?: string;
3435
+ isBookingStopped: boolean;
3426
3436
  key: string;
3427
3437
  name?: string;
3428
3438
  /**
@@ -10201,6 +10211,43 @@ export declare namespace MittwaldAPIV2 {
10201
10211
  }
10202
10212
  }
10203
10213
  }
10214
+ namespace Delete {
10215
+ namespace Parameters {
10216
+ type Path = {
10217
+ contributorId: string;
10218
+ };
10219
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
10220
+ type Query = {};
10221
+ }
10222
+ namespace Responses {
10223
+ namespace $204 {
10224
+ namespace Content {
10225
+ type Empty = unknown;
10226
+ }
10227
+ }
10228
+ namespace $400 {
10229
+ namespace Content {
10230
+ interface ApplicationJson {
10231
+ [k: string]: unknown;
10232
+ }
10233
+ }
10234
+ }
10235
+ namespace $429 {
10236
+ namespace Content {
10237
+ interface ApplicationJson {
10238
+ [k: string]: unknown;
10239
+ }
10240
+ }
10241
+ }
10242
+ namespace Default {
10243
+ namespace Content {
10244
+ interface ApplicationJson {
10245
+ [k: string]: unknown;
10246
+ }
10247
+ }
10248
+ }
10249
+ }
10250
+ }
10204
10251
  }
10205
10252
  namespace V2ContributorsContributorIdExtensionsExtensionIdExtensionInstancesExtensionInstanceIdSecret {
10206
10253
  namespace Put {
@@ -20788,12 +20835,12 @@ export declare namespace MittwaldAPIV2 {
20788
20835
  type Path = {};
20789
20836
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
20790
20837
  type Query = {
20791
- limit?: number;
20792
- skip?: number;
20793
- page?: number;
20794
20838
  includesStatus?: MittwaldAPIV2.Components.Schemas.OrderOrderStatus[];
20795
20839
  excludesStatus?: MittwaldAPIV2.Components.Schemas.OrderOrderStatus[];
20796
20840
  templateNames?: string[];
20841
+ limit?: number;
20842
+ skip?: number;
20843
+ page?: number;
20797
20844
  };
20798
20845
  }
20799
20846
  namespace Responses {
@@ -27151,5 +27198,64 @@ export declare namespace MittwaldAPIV2 {
27151
27198
  }
27152
27199
  }
27153
27200
  }
27201
+ namespace V2StacksStackIdVolumes {
27202
+ namespace Get {
27203
+ namespace Parameters {
27204
+ type Path = {
27205
+ stackId: string;
27206
+ };
27207
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
27208
+ type Query = {
27209
+ searchTerm?: string;
27210
+ sortOrder?: MittwaldAPIV2.Components.Schemas.ContainerVolumeSortOrder;
27211
+ limit?: number;
27212
+ skip?: number;
27213
+ page?: number;
27214
+ };
27215
+ }
27216
+ namespace Responses {
27217
+ namespace $200 {
27218
+ namespace Content {
27219
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[];
27220
+ }
27221
+ }
27222
+ namespace $400 {
27223
+ namespace Content {
27224
+ interface ApplicationJson {
27225
+ [k: string]: unknown;
27226
+ }
27227
+ }
27228
+ }
27229
+ namespace $403 {
27230
+ namespace Content {
27231
+ interface ApplicationJson {
27232
+ [k: string]: unknown;
27233
+ }
27234
+ }
27235
+ }
27236
+ namespace $429 {
27237
+ namespace Content {
27238
+ interface ApplicationJson {
27239
+ [k: string]: unknown;
27240
+ }
27241
+ }
27242
+ }
27243
+ namespace $500 {
27244
+ namespace Content {
27245
+ interface ApplicationJson {
27246
+ [k: string]: unknown;
27247
+ }
27248
+ }
27249
+ }
27250
+ namespace Default {
27251
+ namespace Content {
27252
+ interface ApplicationJson {
27253
+ [k: string]: unknown;
27254
+ }
27255
+ }
27256
+ }
27257
+ }
27258
+ }
27259
+ }
27154
27260
  }
27155
27261
  }
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.234.0';
1
+ export declare const MittwaldAPIClientVersion = '4.236.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "4.235.0",
3
+ "version": "4.237.0",
4
4
  "author": "Mittwald CM Service GmbH & Co. KG <opensource@mittwald.de>",
5
5
  "type": "module",
6
6
  "description": "Auto-generated client for the mittwald API",
@@ -80,5 +80,5 @@
80
80
  "optional": true
81
81
  }
82
82
  },
83
- "gitHead": "eadd93adc5353e7b754b400916fcc593bf60c92d"
83
+ "gitHead": "9584ac15ebf21dcf30c0c648c707c10a827dc623"
84
84
  }