@mittwald/api-client 4.203.0 → 4.205.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.
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.202.0';
1
+ export const MittwaldAPIClientVersion = '4.204.0';
@@ -2778,6 +2778,11 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
2778
2778
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2779
2779
  } | undefined;
2780
2780
  }) => import("@mittwald/react-use-promise").AsyncResource<{
2781
+ blocked?: {
2782
+ executingUserId?: string;
2783
+ reason: string;
2784
+ timestamp: string;
2785
+ } | undefined;
2781
2786
  containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
2782
2787
  customerId?: string | undefined;
2783
2788
  licenceId: string;
@@ -23389,6 +23389,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
23389
23389
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
23390
23390
  }>;
23391
23391
  }, import("@mittwald/api-client-commons").Response<{
23392
+ blocked?: {
23393
+ executingUserId?: string;
23394
+ reason: string;
23395
+ timestamp: string;
23396
+ } | undefined;
23392
23397
  containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
23393
23398
  customerId?: string | undefined;
23394
23399
  licenceId: string;
@@ -23423,6 +23428,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
23423
23428
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
23424
23429
  }>;
23425
23430
  }, import("@mittwald/api-client-commons").Response<{
23431
+ blocked?: {
23432
+ executingUserId?: string;
23433
+ reason: string;
23434
+ timestamp: string;
23435
+ } | undefined;
23426
23436
  containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
23427
23437
  customerId?: string | undefined;
23428
23438
  licenceId: string;
@@ -24355,6 +24365,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
24355
24365
  licenceId: string;
24356
24366
  };
24357
24367
  }, import("@mittwald/api-client-commons").Response<{
24368
+ blocked?: {
24369
+ executingUserId?: string;
24370
+ reason: string;
24371
+ timestamp: string;
24372
+ } | undefined;
24358
24373
  containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
24359
24374
  customerId?: string | undefined;
24360
24375
  licenceId: string;
@@ -24381,6 +24396,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
24381
24396
  licenceId: string;
24382
24397
  };
24383
24398
  }, import("@mittwald/api-client-commons").Response<{
24399
+ blocked?: {
24400
+ executingUserId?: string;
24401
+ reason: string;
24402
+ timestamp: string;
24403
+ } | undefined;
24384
24404
  containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
24385
24405
  customerId?: string | undefined;
24386
24406
  licenceId: string;
@@ -24424,6 +24444,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
24424
24444
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
24425
24445
  }>;
24426
24446
  }, import("@mittwald/api-client-commons").Response<{
24447
+ blocked?: {
24448
+ executingUserId?: string;
24449
+ reason: string;
24450
+ timestamp: string;
24451
+ } | undefined;
24427
24452
  containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
24428
24453
  customerId?: string | undefined;
24429
24454
  licenceId: string;
@@ -24459,6 +24484,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
24459
24484
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
24460
24485
  }>;
24461
24486
  }, import("@mittwald/api-client-commons").Response<{
24487
+ blocked?: {
24488
+ executingUserId?: string;
24489
+ reason: string;
24490
+ timestamp: string;
24491
+ } | undefined;
24462
24492
  containerMeta?: import("./types.js").MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta | undefined;
24463
24493
  customerId?: string | undefined;
24464
24494
  licenceId: string;
@@ -3308,6 +3308,18 @@ export declare namespace MittwaldAPIV2 {
3308
3308
  verified: boolean;
3309
3309
  webhookUrls?: MittwaldAPIV2.Components.Schemas.MarketplaceWebhookUrls;
3310
3310
  }
3311
+ /**
3312
+ * A price plan with (multiple) variants, including different prices for different included service descriptions
3313
+ */
3314
+ type MarketplaceMonthlyPricePlanStrategy = {
3315
+ description?: string;
3316
+ key: string;
3317
+ name?: string;
3318
+ /**
3319
+ * The monthly price in Euro Cents before tax.
3320
+ */
3321
+ priceInCents: number;
3322
+ }[];
3311
3323
  /**
3312
3324
  * A strategy for pricing that occurs monthly.
3313
3325
  */
@@ -4610,11 +4622,17 @@ export declare namespace MittwaldAPIV2 {
4610
4622
  }
4611
4623
  interface LlmlocksmithContainerMeta {
4612
4624
  containerId?: string;
4625
+ errorMessage?: string;
4613
4626
  ingressId?: string;
4614
4627
  stackId?: string;
4615
- status: "created" | "requested";
4628
+ status: "created" | "requested" | "failed";
4616
4629
  }
4617
4630
  interface LlmlocksmithLicence {
4631
+ blocked?: {
4632
+ executingUserId?: string;
4633
+ reason: string;
4634
+ timestamp: string;
4635
+ };
4618
4636
  containerMeta?: MittwaldAPIV2.Components.Schemas.LlmlocksmithContainerMeta;
4619
4637
  customerId?: string;
4620
4638
  licenceId: string;
@@ -5162,18 +5180,6 @@ export declare namespace MittwaldAPIV2 {
5162
5180
  }
5163
5181
  type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
5164
5182
  type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
5165
- /**
5166
- * A price plan with (multiple) variants, including different prices for different included service descriptions
5167
- */
5168
- type MarketplaceMonthlyPricePlanStrategy = {
5169
- description?: string;
5170
- key: string;
5171
- name?: string;
5172
- /**
5173
- * The monthly price in Euro Cents before tax.
5174
- */
5175
- priceInCents: number;
5176
- }[];
5177
5183
  interface CommonsAddress {
5178
5184
  street: string;
5179
5185
  houseNumber: string;
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.202.0';
1
+ export declare const MittwaldAPIClientVersion = '4.204.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "4.203.0",
3
+ "version": "4.205.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": "da118392bfbb7af2c0098d7c9c5458640762f7ec"
83
+ "gitHead": "de6fb394f236ca5e0553f5cd02ed5ab8f82f7077"
84
84
  }