@droz-js/sdk 0.14.7 → 0.14.8

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@droz-js/sdk",
3
3
  "description": "Droz SDK",
4
- "version": "0.14.7",
4
+ "version": "0.14.8",
5
5
  "private": false,
6
6
  "repository": {
7
7
  "type": "git",
@@ -132,10 +132,6 @@ export type AdminAgent = {
132
132
  name: Scalars['String']['output'];
133
133
  picture?: Maybe<Scalars['String']['output']>;
134
134
  };
135
- export type Agent = {
136
- id: Scalars['ID']['output'];
137
- name?: Maybe<Scalars['String']['output']>;
138
- };
139
135
  export type AgentInfo = {
140
136
  id: Scalars['ID']['output'];
141
137
  name: Scalars['String']['output'];
@@ -192,7 +188,7 @@ export type DeployInput = {
192
188
  tenantId: Scalars['ID']['input'];
193
189
  };
194
190
  export type Deployment = {
195
- agent?: Maybe<Agent>;
191
+ agent?: Maybe<DeploymentActor>;
196
192
  branch: Scalars['String']['output'];
197
193
  command: DeploymentCommands;
198
194
  createdAt: Scalars['DateTime']['output'];
@@ -205,6 +201,10 @@ export type Deployment = {
205
201
  tenantId: Scalars['ID']['output'];
206
202
  updatedAt: Scalars['DateTime']['output'];
207
203
  };
204
+ export type DeploymentActor = {
205
+ id: Scalars['ID']['output'];
206
+ name?: Maybe<Scalars['String']['output']>;
207
+ };
208
208
  export declare enum DeploymentCommands {
209
209
  Deploy = "DEPLOY",
210
210
  Destroy = "DESTROY"
@@ -657,7 +657,7 @@ export type GetAuthInfoQuery = {
657
657
  })>;
658
658
  };
659
659
  export type DeploymentFragment = (Pick<Deployment, 'id' | 'tenantId' | 'command' | 'gitRepository' | 'branch' | 'status' | 'message' | 'services' | 'deployedVersion' | 'createdAt' | 'updatedAt'> & {
660
- agent?: Maybe<Pick<Agent, 'id' | 'name'>>;
660
+ agent?: Maybe<Pick<DeploymentActor, 'id' | 'name'>>;
661
661
  });
662
662
  export type GitRepositoryFragment = (Pick<GitRepository, 'id' | 'name'> & {
663
663
  branches: Array<GitBranchFragment>;