@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.
- package/dist/cjs/generated/v2/client.d.ts +813 -2
- package/dist/cjs/generated/v2/descriptors.d.ts +293 -293
- package/dist/cjs/generated/v2/types.d.ts +11 -1
- package/dist/esm/generated/v2/client.d.ts +813 -2
- package/dist/esm/generated/v2/descriptors.d.ts +293 -293
- package/dist/esm/generated/v2/types.d.ts +11 -1
- package/package.json +1 -1
|
@@ -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
|
|
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;
|