@mittwald/api-client 2.0.5 → 2.0.7

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.
@@ -27,6 +27,15 @@ export declare module MittwaldAPIV2 {
27
27
  state: "running" | "stopped" | "exited";
28
28
  uptimeSeconds?: number;
29
29
  }
30
+ interface AppAppJobImage {
31
+ imageTemplate: string;
32
+ }
33
+ interface AppAppJobImages {
34
+ reconfigureImage: MittwaldAPIV2.Components.Schemas.AppAppJobImage;
35
+ setupImage: MittwaldAPIV2.Components.Schemas.AppAppJobImage;
36
+ uninstallImage: MittwaldAPIV2.Components.Schemas.AppAppJobImage;
37
+ upgradeImage: MittwaldAPIV2.Components.Schemas.AppAppJobImage;
38
+ }
30
39
  /**
31
40
  * `AppUpdatePolicy` describes which updates should be applied automatically by our systems
32
41
  */
@@ -561,7 +570,7 @@ export declare module MittwaldAPIV2 {
561
570
  type CustomerRole = "owner" | "member" | "accountant";
562
571
  interface CustomerCustomer {
563
572
  activeSuspension?: {
564
- createdAt?: string;
573
+ createdAt: string;
565
574
  };
566
575
  avatarRefId?: string;
567
576
  categoryId?: string;
@@ -569,6 +578,7 @@ export declare module MittwaldAPIV2 {
569
578
  customerId: string;
570
579
  customerNumber: string;
571
580
  executingUserRoles?: MittwaldAPIV2.Components.Schemas.CustomerRole[];
581
+ isBanned?: boolean;
572
582
  isInDefaultOfPayment?: boolean;
573
583
  memberCount: number;
574
584
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "2.0.5",
3
+ "version": "2.0.7",
4
4
  "description": "Auto-generated client for the mittwald API",
5
5
  "license": "MIT",
6
6
  "repository": "github:mittwald/api-client-js",