stentor-models 1.57.59 → 1.57.61
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.
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/*! Copyright (c) 2023, XAPP AI */
|
|
2
|
+
export interface BaseService {
|
|
3
|
+
/**
|
|
4
|
+
* Service name
|
|
5
|
+
*/
|
|
6
|
+
name?: string;
|
|
7
|
+
/**
|
|
8
|
+
* Timeout
|
|
9
|
+
*/
|
|
10
|
+
timeout?: number;
|
|
11
|
+
/**
|
|
12
|
+
* How many attempts to make on the API
|
|
13
|
+
*/
|
|
14
|
+
retryAttempts?: number;
|
|
15
|
+
/**
|
|
16
|
+
* Log information from the service
|
|
17
|
+
*/
|
|
18
|
+
logs?: boolean;
|
|
19
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BaseService.js","sourceRoot":"","sources":["../../src/Services/BaseService.ts"],"names":[],"mappings":";AAAA,kCAAkC"}
|
package/lib/Services/index.d.ts
CHANGED
package/lib/Services/index.js
CHANGED
|
@@ -16,6 +16,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
/*! Copyright (c) 2019, XAPPmedia */
|
|
18
18
|
__exportStar(require("./AppService"), exports);
|
|
19
|
+
__exportStar(require("./BaseService"), exports);
|
|
19
20
|
__exportStar(require("./CrmService"), exports);
|
|
20
21
|
__exportStar(require("./ErrorService"), exports);
|
|
21
22
|
__exportStar(require("./HandlerService"), exports);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/Services/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,oCAAoC;AACpC,+CAA6B;AAC7B,+CAA6B;AAC7B,iDAA+B;AAC/B,mDAAiC;AACjC,yDAAuC;AACvC,+CAA6B;AAC7B,yDAAuC;AACvC,+CAA6B;AAC7B,uDAAqC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/Services/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,oCAAoC;AACpC,+CAA6B;AAC7B,gDAA8B;AAC9B,+CAA6B;AAC7B,iDAA+B;AAC/B,mDAAiC;AACjC,yDAAuC;AACvC,+CAA6B;AAC7B,yDAAuC;AACvC,+CAA6B;AAC7B,uDAAqC"}
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
|
-
"version": "1.57.
|
|
7
|
+
"version": "1.57.61",
|
|
8
8
|
"description": "Models for 📣 stentor",
|
|
9
9
|
"types": "lib/index",
|
|
10
10
|
"typings": "lib/index",
|
|
@@ -17,12 +17,12 @@
|
|
|
17
17
|
"node": "^12 || ^14 || ^16 || ^18"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@microsoft/api-extractor": "7.34.
|
|
20
|
+
"@microsoft/api-extractor": "7.34.1",
|
|
21
21
|
"@rollup/plugin-typescript": "11.0.0",
|
|
22
22
|
"@xapp/config": "0.2.3",
|
|
23
23
|
"rollup": "3.12.0",
|
|
24
|
-
"tslib": "2.
|
|
25
|
-
"typescript": "4.9.
|
|
24
|
+
"tslib": "2.5.0",
|
|
25
|
+
"typescript": "4.9.5"
|
|
26
26
|
},
|
|
27
27
|
"scripts": {
|
|
28
28
|
"api": "api-extractor run --local",
|
|
@@ -33,5 +33,5 @@
|
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@xapp/patterns": "2.0.1"
|
|
35
35
|
},
|
|
36
|
-
"gitHead": "
|
|
36
|
+
"gitHead": "5cc9592601a5d5bcd6755ac66895ffb4598edc1f"
|
|
37
37
|
}
|