@droz-js/sdk 0.9.101 → 0.9.102

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.9.101",
4
+ "version": "0.9.102",
5
5
  "private": false,
6
6
  "exports": {
7
7
  ".": "./src/index.js",
@@ -956,10 +956,12 @@ export declare enum TriggerActionType {
956
956
  TransferToChannel = "TRANSFER_TO_CHANNEL"
957
957
  }
958
958
  export declare enum TriggerEventType {
959
+ Closed = "CLOSED",
959
960
  Created = "CREATED",
960
961
  Updated = "UPDATED"
961
962
  }
962
963
  export declare enum Typenames {
964
+ AgentAssignmentLock = "AgentAssignmentLock",
963
965
  AgentLoadBalancer = "AgentLoadBalancer",
964
966
  Any = "Any",
965
967
  Channels = "Channels",
@@ -98,11 +98,13 @@ var TriggerActionType;
98
98
  })(TriggerActionType || (exports.TriggerActionType = TriggerActionType = {}));
99
99
  var TriggerEventType;
100
100
  (function (TriggerEventType) {
101
+ TriggerEventType["Closed"] = "CLOSED";
101
102
  TriggerEventType["Created"] = "CREATED";
102
103
  TriggerEventType["Updated"] = "UPDATED";
103
104
  })(TriggerEventType || (exports.TriggerEventType = TriggerEventType = {}));
104
105
  var Typenames;
105
106
  (function (Typenames) {
107
+ Typenames["AgentAssignmentLock"] = "AgentAssignmentLock";
106
108
  Typenames["AgentLoadBalancer"] = "AgentLoadBalancer";
107
109
  Typenames["Any"] = "Any";
108
110
  Typenames["Channels"] = "Channels";
@@ -144,7 +144,7 @@ export type Agent = {
144
144
  picture?: Maybe<Scalars['String']['output']>;
145
145
  removed?: Maybe<Scalars['Boolean']['output']>;
146
146
  roles?: Maybe<Scalars['Set']['output']>;
147
- status: AgentStatus;
147
+ status?: Maybe<AgentStatus>;
148
148
  systemAgent?: Maybe<Scalars['Boolean']['output']>;
149
149
  updatedAt: Scalars['DateTime']['output'];
150
150
  };