@glasskube/distr-sdk 1.9.1 → 1.11.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.
@@ -16,3 +16,10 @@ export interface ApplicationVersion {
16
16
  chartUrl?: string;
17
17
  chartVersion?: string;
18
18
  }
19
+ export interface PatchApplicationRequest {
20
+ name?: string;
21
+ versions?: {
22
+ id: string;
23
+ archivedAt?: string;
24
+ }[];
25
+ }
@@ -3,6 +3,7 @@ export interface Deployment extends BaseModel {
3
3
  deploymentTargetId: string;
4
4
  releaseName?: string;
5
5
  dockerType?: DockerType;
6
+ logsEnabled: boolean;
6
7
  }
7
8
  export interface DeploymentRequest {
8
9
  deploymentTargetId: string;
@@ -14,6 +15,9 @@ export interface DeploymentRequest {
14
15
  valuesYaml?: string;
15
16
  envFileData?: string;
16
17
  }
18
+ export interface PatchDeploymentRequest {
19
+ logsEnabled?: boolean;
20
+ }
17
21
  export interface DeploymentWithLatestRevision extends Deployment {
18
22
  applicationId: string;
19
23
  applicationName: string;
@@ -7,4 +7,5 @@ export interface UserAccount extends BaseModel {
7
7
  }
8
8
  export interface UserAccountWithRole extends UserAccount {
9
9
  userRole: UserRole;
10
+ joinedOrgAt: string;
10
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glasskube/distr-sdk",
3
- "version": "1.9.1",
3
+ "version": "1.11.0",
4
4
  "type": "module",
5
5
  "license": "Apache-2.0",
6
6
  "description": "Distr SDK",