@mittwald/api-client 4.104.0 → 4.105.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.103.0';
1
+ export const MittwaldAPIClientVersion = '4.104.1';
@@ -1408,6 +1408,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
1408
1408
  name: string;
1409
1409
  phone?: string | undefined;
1410
1410
  state: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributorState;
1411
+ supportInformation: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta;
1411
1412
  url?: string | undefined;
1412
1413
  }>;
1413
1414
  /** Get the ExtensionInstance of a specific customer and extension, if existing. */
@@ -1478,6 +1479,7 @@ declare const buildMarketplaceApi: (baseClient: MittwaldAPIV2Client) => {
1478
1479
  published: boolean;
1479
1480
  scopes: string[];
1480
1481
  state: "enabled" | "blocked" | "disabled";
1482
+ statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
1481
1483
  subTitle: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle;
1482
1484
  support: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta;
1483
1485
  tags: string[];
@@ -4886,6 +4886,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4886
4886
  name: string;
4887
4887
  phone?: string | undefined;
4888
4888
  state: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributorState;
4889
+ supportInformation: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta;
4889
4890
  url?: string | undefined;
4890
4891
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
4891
4892
  [x: string]: unknown;
@@ -4908,6 +4909,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4908
4909
  name: string;
4909
4910
  phone?: string | undefined;
4910
4911
  state: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceContributorState;
4912
+ supportInformation: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta;
4911
4913
  url?: string | undefined;
4912
4914
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
4913
4915
  [x: string]: unknown;
@@ -5092,6 +5094,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5092
5094
  published: boolean;
5093
5095
  scopes: string[];
5094
5096
  state: "enabled" | "blocked" | "disabled";
5097
+ statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
5095
5098
  subTitle: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle;
5096
5099
  support: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta;
5097
5100
  tags: string[];
@@ -5125,6 +5128,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5125
5128
  published: boolean;
5126
5129
  scopes: string[];
5127
5130
  state: "enabled" | "blocked" | "disabled";
5131
+ statistics: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
5128
5132
  subTitle: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle;
5129
5133
  support: import("./types.js").MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta;
5130
5134
  tags: string[];
@@ -2392,12 +2392,19 @@ export declare namespace MittwaldAPIV2 {
2392
2392
  interface MarketplaceContributor {
2393
2393
  customerId: string;
2394
2394
  description?: string;
2395
+ /**
2396
+ * @deprecated
2397
+ */
2395
2398
  email?: string;
2396
2399
  id: string;
2397
2400
  logoRefId?: string;
2398
2401
  name: string;
2402
+ /**
2403
+ * @deprecated
2404
+ */
2399
2405
  phone?: string;
2400
2406
  state: MittwaldAPIV2.Components.Schemas.MarketplaceContributorState;
2407
+ supportInformation: MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta;
2401
2408
  url?: string;
2402
2409
  }
2403
2410
  type MarketplaceContributorState = "enabled" | "disabled";
@@ -2435,6 +2442,7 @@ export declare namespace MittwaldAPIV2 {
2435
2442
  * deprecated
2436
2443
  */
2437
2444
  state: "enabled" | "blocked" | "disabled";
2445
+ statistics: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
2438
2446
  subTitle: MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle;
2439
2447
  support: MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta;
2440
2448
  /**
@@ -2511,6 +2519,9 @@ export declare namespace MittwaldAPIV2 {
2511
2519
  removalIsPending: boolean;
2512
2520
  webhooksAreHalted: boolean;
2513
2521
  }
2522
+ interface MarketplaceExtensionStatistics {
2523
+ amountOfInstances: number;
2524
+ }
2514
2525
  interface MarketplaceExternalComponent {
2515
2526
  name: string;
2516
2527
  url: string;
@@ -2536,19 +2547,33 @@ export declare namespace MittwaldAPIV2 {
2536
2547
  frontendFragments?: {
2537
2548
  [k: string]: MittwaldAPIV2.Components.Schemas.MarketplaceFrontendFragment;
2538
2549
  };
2550
+ functional: boolean;
2539
2551
  id: string;
2552
+ /**
2553
+ * This is the FileId of the Logo. Retrieve the file with this id on `/v2/files/{logoRefId}`.
2554
+ */
2555
+ logoRefId?: string;
2540
2556
  name: string;
2557
+ published: boolean;
2558
+ requestedChanges?: {
2559
+ context?: MittwaldAPIV2.Components.Schemas.MarketplaceContext;
2560
+ scopes?: string[];
2561
+ webhookUrls?: MittwaldAPIV2.Components.Schemas.MarketplaceBackendComponents;
2562
+ };
2541
2563
  scopes?: string[];
2542
2564
  /**
2543
2565
  * deprecated
2544
2566
  */
2545
2567
  state?: "enabled" | "blocked" | "disabled";
2568
+ statistics: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionStatistics;
2546
2569
  subTitle?: MittwaldAPIV2.Components.Schemas.MarketplaceSubTitle;
2547
2570
  support?: MittwaldAPIV2.Components.Schemas.MarketplaceSupportMeta;
2548
2571
  /**
2549
2572
  * @minItems 0
2550
2573
  */
2551
2574
  tags?: string[];
2575
+ verificationRequested: boolean;
2576
+ verified: boolean;
2552
2577
  }
2553
2578
  interface MarketplacePublicKey {
2554
2579
  algorithm: string;
@@ -2558,6 +2583,13 @@ export declare namespace MittwaldAPIV2 {
2558
2583
  key: string;
2559
2584
  serial: string;
2560
2585
  }
2586
+ /**
2587
+ * A few words to promote your Extension.
2588
+ */
2589
+ interface MarketplaceSubTitle {
2590
+ de: string;
2591
+ en?: string;
2592
+ }
2561
2593
  interface MarketplaceSupportMeta {
2562
2594
  email?: string;
2563
2595
  phone?: string;
@@ -2720,6 +2752,10 @@ export declare namespace MittwaldAPIV2 {
2720
2752
  };
2721
2753
  }
2722
2754
  interface IngressTargetDirectory {
2755
+ /**
2756
+ * @deprecated
2757
+ * This property is deprecated. It will only be supported until the end of march. Please use installationId instead.
2758
+ */
2723
2759
  directory: string;
2724
2760
  }
2725
2761
  interface IngressTargetInstallation {
@@ -3608,7 +3644,32 @@ export declare namespace MittwaldAPIV2 {
3608
3644
  webStorageUsageInBytes: number;
3609
3645
  webStorageUsageInBytesSetAt: string;
3610
3646
  }
3647
+ interface ProjectScaling {
3648
+ maximum: number;
3649
+ minimum: number;
3650
+ }
3611
3651
  type ProjectServerDisableReason = "suspended";
3652
+ interface ProjectServerInternal {
3653
+ clusterName: string;
3654
+ createdAt: string;
3655
+ customerId: string;
3656
+ description: string;
3657
+ disabledReason?: MittwaldAPIV2.Components.Schemas.ProjectServerDisableReason;
3658
+ id: string;
3659
+ imageRefId?: string;
3660
+ /**
3661
+ * @deprecated
3662
+ * deprecated by property status
3663
+ */
3664
+ isReady: boolean;
3665
+ machineType: MittwaldAPIV2.Components.Schemas.ProjectMachineType;
3666
+ readiness: MittwaldAPIV2.Components.Schemas.ProjectDeprecatedServerReadinessStatus;
3667
+ scaling?: MittwaldAPIV2.Components.Schemas.ProjectScaling;
3668
+ shortId: string;
3669
+ statisticsBaseDomain?: string;
3670
+ status: MittwaldAPIV2.Components.Schemas.ProjectServerStatus;
3671
+ storage: string;
3672
+ }
3612
3673
  type ProjectServerStatus = "pending" | "ready" | "unready";
3613
3674
  interface ProjectServer {
3614
3675
  clusterName: string;
@@ -4065,38 +4126,6 @@ export declare namespace MittwaldAPIV2 {
4065
4126
  name: string;
4066
4127
  value: string;
4067
4128
  }
4068
- /**
4069
- * A brief subtitle for the extension.
4070
- */
4071
- interface MarketplaceSubTitle {
4072
- de: string;
4073
- en?: string;
4074
- }
4075
- interface ProjectScaling {
4076
- maximum: number;
4077
- minimum: number;
4078
- }
4079
- interface ProjectServerInternal {
4080
- clusterName: string;
4081
- createdAt: string;
4082
- customerId: string;
4083
- description: string;
4084
- disabledReason?: MittwaldAPIV2.Components.Schemas.ProjectServerDisableReason;
4085
- id: string;
4086
- imageRefId?: string;
4087
- /**
4088
- * @deprecated
4089
- * deprecated by property status
4090
- */
4091
- isReady: boolean;
4092
- machineType: MittwaldAPIV2.Components.Schemas.ProjectMachineType;
4093
- readiness: MittwaldAPIV2.Components.Schemas.ProjectDeprecatedServerReadinessStatus;
4094
- scaling?: MittwaldAPIV2.Components.Schemas.ProjectScaling;
4095
- shortId: string;
4096
- statisticsBaseDomain?: string;
4097
- status: MittwaldAPIV2.Components.Schemas.ProjectServerStatus;
4098
- storage: string;
4099
- }
4100
4129
  interface CommonsAddress {
4101
4130
  street: string;
4102
4131
  houseNumber: string;
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.103.0';
1
+ export declare const MittwaldAPIClientVersion = '4.104.1';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "4.104.0",
3
+ "version": "4.105.0",
4
4
  "author": "Mittwald CM Service GmbH & Co. KG <opensource@mittwald.de>",
5
5
  "type": "module",
6
6
  "description": "Auto-generated client for the mittwald API",
@@ -46,7 +46,7 @@
46
46
  "test:compile": "run tsc --noEmit"
47
47
  },
48
48
  "dependencies": {
49
- "@mittwald/api-client-commons": "^4.81.1",
49
+ "@mittwald/api-client-commons": "^4.104.1",
50
50
  "browser-or-node": "^3.0.0"
51
51
  },
52
52
  "devDependencies": {
@@ -80,5 +80,5 @@
80
80
  "optional": true
81
81
  }
82
82
  },
83
- "gitHead": "7aead1ca800fc80106e27b386fd558079f8bc7a1"
83
+ "gitHead": "3362f81d2a624da637bd9d811eb7b8170743cbd8"
84
84
  }