@onereach/types-hitl-api 0.0.45 → 0.0.46-rc.1
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/types/interfaces/api/agents.d.ts +1 -0
- package/dist/types/interfaces/api/contact-rule-groups.d.ts +6 -0
- package/dist/types/interfaces/api/contact-rule-groups.js +3 -0
- package/dist/types/interfaces/api/contact-rule-groups.js.map +1 -0
- package/dist/types/interfaces/api/index.d.ts +1 -0
- package/dist/types/interfaces/api/index.js +2 -1
- package/dist/types/interfaces/api/index.js.map +1 -1
- package/dist/types/interfaces/api/sessions.d.ts +1 -0
- package/package.json +1 -1
|
@@ -7,6 +7,7 @@ export interface IAgent {
|
|
|
7
7
|
readonly role: USER_ROLE;
|
|
8
8
|
readonly email: string;
|
|
9
9
|
readonly ruleGroupIds: string[];
|
|
10
|
+
readonly contactRuleGroupIds: string[];
|
|
10
11
|
readonly statusData: Omit<IAgentStatus, 'agentId'>;
|
|
11
12
|
readonly meta: object;
|
|
12
13
|
/** Data is available when merged with response from Users SDK */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"contact-rule-groups.js","sourceRoot":"","sources":["../../../../src/interfaces/api/contact-rule-groups.ts"],"names":[],"mappings":""}
|
|
@@ -26,7 +26,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
26
26
|
return result;
|
|
27
27
|
};
|
|
28
28
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
-
exports.Versions = exports.ContactsMeta = exports.Helpers = exports.Commands = exports.ReadEvents = exports.SessionEvents = exports.Sessions = exports.Listeners = exports.CannedMessages = exports.Filters = exports.Conferences = exports.EventTemplates = exports.RuleGroups = exports.Agents = exports.Migrations = exports.Settings = void 0;
|
|
29
|
+
exports.ContactRuleGroups = exports.Versions = exports.ContactsMeta = exports.Helpers = exports.Commands = exports.ReadEvents = exports.SessionEvents = exports.Sessions = exports.Listeners = exports.CannedMessages = exports.Filters = exports.Conferences = exports.EventTemplates = exports.RuleGroups = exports.Agents = exports.Migrations = exports.Settings = void 0;
|
|
30
30
|
__exportStar(require("./common"), exports);
|
|
31
31
|
exports.Settings = __importStar(require("./settings"));
|
|
32
32
|
exports.Migrations = __importStar(require("./migrations"));
|
|
@@ -44,4 +44,5 @@ exports.Commands = __importStar(require("./commands"));
|
|
|
44
44
|
exports.Helpers = __importStar(require("./helpers"));
|
|
45
45
|
exports.ContactsMeta = __importStar(require("./contacts-meta"));
|
|
46
46
|
exports.Versions = __importStar(require("./versions"));
|
|
47
|
+
exports.ContactRuleGroups = __importStar(require("./contact-rule-groups"));
|
|
47
48
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/interfaces/api/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,2CAAyB;AACzB,uDAAuC;AACvC,2DAA2C;AAC3C,mDAAmC;AACnC,4DAA4C;AAC5C,oEAAoD;AACpD,6DAA6C;AAC7C,qDAAqC;AACrC,oEAAoD;AACpD,yDAAyC;AACzC,uDAAuC;AACvC,kEAAkD;AAClD,4DAA4C;AAC5C,uDAAuC;AACvC,qDAAqC;AACrC,gEAAgD;AAChD,uDAAuC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/interfaces/api/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,2CAAyB;AACzB,uDAAuC;AACvC,2DAA2C;AAC3C,mDAAmC;AACnC,4DAA4C;AAC5C,oEAAoD;AACpD,6DAA6C;AAC7C,qDAAqC;AACrC,oEAAoD;AACpD,yDAAyC;AACzC,uDAAuC;AACvC,kEAAkD;AAClD,4DAA4C;AAC5C,uDAAuC;AACvC,qDAAqC;AACrC,gEAAgD;AAChD,uDAAuC;AACvC,2EAA2D"}
|
|
@@ -103,6 +103,7 @@ export interface ISearchSessionsOptions {
|
|
|
103
103
|
readonly searchPhrase?: string;
|
|
104
104
|
readonly type?: string;
|
|
105
105
|
readonly meta?: Record<string, string>;
|
|
106
|
+
readonly contactIds?: string[];
|
|
106
107
|
readonly sessionsSearchOptions?: ISessionSearchOptions;
|
|
107
108
|
readonly ignoreRuleTags: boolean;
|
|
108
109
|
}
|