@onereach/types-hitl-api 0.0.30 → 0.0.31
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/index.types.d.ts +1 -0
- package/dist/types/interfaces/index.types.js +2 -1
- package/dist/types/interfaces/index.types.js.map +1 -1
- package/dist/types/interfaces/sessions.d.ts +18 -0
- package/dist/types/interfaces/sessions.js +3 -0
- package/dist/types/interfaces/sessions.js.map +1 -0
- package/package.json +1 -1
|
@@ -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.CannedMessages = exports.Filters = exports.Conferences = exports.EventTemplates = exports.RuleGroups = exports.Agents = exports.Migrations = exports.Settings = void 0;
|
|
29
|
+
exports.Sessions = exports.CannedMessages = exports.Filters = exports.Conferences = exports.EventTemplates = exports.RuleGroups = exports.Agents = exports.Migrations = exports.Settings = void 0;
|
|
30
30
|
/**
|
|
31
31
|
* TODO: Right now only includes types for available features.
|
|
32
32
|
* Should be removed later, when all features are enabled.
|
|
@@ -40,4 +40,5 @@ exports.EventTemplates = __importStar(require("./event-templates"));
|
|
|
40
40
|
exports.Conferences = __importStar(require("./conferences"));
|
|
41
41
|
exports.Filters = __importStar(require("./filters"));
|
|
42
42
|
exports.CannedMessages = __importStar(require("./canned-messages"));
|
|
43
|
+
exports.Sessions = __importStar(require("./sessions"));
|
|
43
44
|
//# sourceMappingURL=index.types.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.types.js","sourceRoot":"","sources":["../../../src/interfaces/index.types.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;;;GAGG;AACH,2CAAyB;AACzB,uDAAuC;AACvC,2DAA2C;AAC3C,mDAAmC;AACnC,4DAA4C;AAC5C,oEAAoD;AACpD,6DAA6C;AAC7C,qDAAqC;AACrC,oEAAoD"}
|
|
1
|
+
{"version":3,"file":"index.types.js","sourceRoot":"","sources":["../../../src/interfaces/index.types.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;;;GAGG;AACH,2CAAyB;AACzB,uDAAuC;AACvC,2DAA2C;AAC3C,mDAAmC;AACnC,4DAA4C;AAC5C,oEAAoD;AACpD,6DAA6C;AAC7C,qDAAqC;AACrC,oEAAoD;AACpD,uDAAuC"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { ITriggersResponse } from '@onereach/sdk';
|
|
2
|
+
export interface IGetSessionsListQuery {
|
|
3
|
+
readonly status?: string[];
|
|
4
|
+
readonly contactId?: string;
|
|
5
|
+
readonly offset?: number;
|
|
6
|
+
readonly limit?: number;
|
|
7
|
+
readonly orderBy?: string;
|
|
8
|
+
readonly order?: string;
|
|
9
|
+
readonly projection?: string[];
|
|
10
|
+
readonly agentId?: string;
|
|
11
|
+
readonly accountId?: string;
|
|
12
|
+
}
|
|
13
|
+
export interface IGetSessionQuery {
|
|
14
|
+
readonly projection?: string[];
|
|
15
|
+
readonly agentId?: string;
|
|
16
|
+
readonly accountId?: string;
|
|
17
|
+
}
|
|
18
|
+
export declare type IGetInitTriggersResponse = ITriggersResponse[];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"sessions.js","sourceRoot":"","sources":["../../../src/interfaces/sessions.ts"],"names":[],"mappings":""}
|