@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 +1 -1
- package/src/sdks/drozchat.d.ts +2 -0
- package/src/sdks/drozchat.js +2 -0
- package/src/sdks/nucleus.d.ts +1 -1
package/package.json
CHANGED
package/src/sdks/drozchat.d.ts
CHANGED
|
@@ -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",
|
package/src/sdks/drozchat.js
CHANGED
|
@@ -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";
|
package/src/sdks/nucleus.d.ts
CHANGED
|
@@ -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
|
|
147
|
+
status?: Maybe<AgentStatus>;
|
|
148
148
|
systemAgent?: Maybe<Scalars['Boolean']['output']>;
|
|
149
149
|
updatedAt: Scalars['DateTime']['output'];
|
|
150
150
|
};
|