stentor-models 1.57.56 → 1.57.60

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.
@@ -17,6 +17,8 @@ export type AppStatusRequiresAttention = "Requires Attention";
17
17
  export declare const APP_STATUS_REQUIRES_ATTENTION: AppStatusRequiresAttention;
18
18
  export type AppStatusArchived = "Archived";
19
19
  export declare const APP_STATUS_ARCHIVED: AppStatusArchived;
20
+ export type AppStatusCancelled = "Cancelled";
21
+ export declare const APP_STATUS_CANCELLED: AppStatusCancelled;
20
22
  export type AppStatusLiveRequiresCert = "Live: Requires Cert";
21
23
  export declare const APP_STATUS_LIVE_AND_REQUIRES_CERT: AppStatusLiveRequiresCert;
22
24
  export type AppStatusLiveInCert = "Live: In Certification";
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.APP_STATUS_LIVE_AND_REQUIRES_ATTENTION = exports.APP_STATUS_LIVE_AND_REQUIRES_PUBLISH = exports.APP_STATUS_LIVE_AND_IN_CERT = exports.APP_STATUS_LIVE_AND_REQUIRES_CERT = exports.APP_STATUS_ARCHIVED = exports.APP_STATUS_REQUIRES_ATTENTION = exports.APP_STATUS_LIVE = exports.APP_STATUS_REQUIRES_PUBLISH = exports.APP_STATUS_IN_CERTIFICATION = exports.APP_STATUS_UNDER_REVIEW = exports.APP_STATUS_SUBMITTED_FOR_REVIEW = exports.APP_STATUS_INCOMPLETE = exports.APP_STATUS_UNKNOWN = void 0;
3
+ exports.APP_STATUS_LIVE_AND_REQUIRES_ATTENTION = exports.APP_STATUS_LIVE_AND_REQUIRES_PUBLISH = exports.APP_STATUS_LIVE_AND_IN_CERT = exports.APP_STATUS_LIVE_AND_REQUIRES_CERT = exports.APP_STATUS_CANCELLED = exports.APP_STATUS_ARCHIVED = exports.APP_STATUS_REQUIRES_ATTENTION = exports.APP_STATUS_LIVE = exports.APP_STATUS_REQUIRES_PUBLISH = exports.APP_STATUS_IN_CERTIFICATION = exports.APP_STATUS_UNDER_REVIEW = exports.APP_STATUS_SUBMITTED_FOR_REVIEW = exports.APP_STATUS_INCOMPLETE = exports.APP_STATUS_UNKNOWN = void 0;
4
4
  exports.APP_STATUS_UNKNOWN = "Unknown";
5
5
  exports.APP_STATUS_INCOMPLETE = "Incomplete";
6
6
  exports.APP_STATUS_SUBMITTED_FOR_REVIEW = "Submitted For Review";
@@ -10,6 +10,7 @@ exports.APP_STATUS_REQUIRES_PUBLISH = "Needs publish";
10
10
  exports.APP_STATUS_LIVE = "Live";
11
11
  exports.APP_STATUS_REQUIRES_ATTENTION = "Requires Attention";
12
12
  exports.APP_STATUS_ARCHIVED = "Archived";
13
+ exports.APP_STATUS_CANCELLED = "Cancelled";
13
14
  exports.APP_STATUS_LIVE_AND_REQUIRES_CERT = "Live: Requires Cert";
14
15
  exports.APP_STATUS_LIVE_AND_IN_CERT = "Live: In Certification";
15
16
  exports.APP_STATUS_LIVE_AND_REQUIRES_PUBLISH = "Live: Requires Publish";
@@ -1 +1 @@
1
- {"version":3,"file":"AppStatus.js","sourceRoot":"","sources":["../../src/App/AppStatus.ts"],"names":[],"mappings":";;;AAGa,QAAA,kBAAkB,GAAqB,SAAS,CAAC;AAGjD,QAAA,qBAAqB,GAAwB,YAAY,CAAC;AAG1D,QAAA,+BAA+B,GAAgC,sBAAsB,CAAC;AAGtF,QAAA,uBAAuB,GAAyB,cAAc,CAAC;AAG/D,QAAA,2BAA2B,GAA6B,kBAAkB,CAAC;AAG3E,QAAA,2BAA2B,GAA6B,eAAe,CAAC;AAGxE,QAAA,eAAe,GAAkB,MAAM,CAAC;AAGxC,QAAA,6BAA6B,GAA+B,oBAAoB,CAAC;AAGjF,QAAA,mBAAmB,GAAsB,UAAU,CAAC;AAGpD,QAAA,iCAAiC,GAA8B,qBAAqB,CAAC;AAGrF,QAAA,2BAA2B,GAAwB,wBAAwB,CAAC;AAG5E,QAAA,oCAAoC,GAAoC,wBAAwB,CAAC;AAGjG,QAAA,sCAAsC,GAAsC,0BAA0B,CAAC"}
1
+ {"version":3,"file":"AppStatus.js","sourceRoot":"","sources":["../../src/App/AppStatus.ts"],"names":[],"mappings":";;;AAGa,QAAA,kBAAkB,GAAqB,SAAS,CAAC;AAGjD,QAAA,qBAAqB,GAAwB,YAAY,CAAC;AAG1D,QAAA,+BAA+B,GAAgC,sBAAsB,CAAC;AAGtF,QAAA,uBAAuB,GAAyB,cAAc,CAAC;AAG/D,QAAA,2BAA2B,GAA6B,kBAAkB,CAAC;AAG3E,QAAA,2BAA2B,GAA6B,eAAe,CAAC;AAGxE,QAAA,eAAe,GAAkB,MAAM,CAAC;AAGxC,QAAA,6BAA6B,GAA+B,oBAAoB,CAAC;AAGjF,QAAA,mBAAmB,GAAsB,UAAU,CAAC;AAGpD,QAAA,oBAAoB,GAAuB,WAAW,CAAC;AAGvD,QAAA,iCAAiC,GAA8B,qBAAqB,CAAC;AAGrF,QAAA,2BAA2B,GAAwB,wBAAwB,CAAC;AAG5E,QAAA,oCAAoC,GAAoC,wBAAwB,CAAC;AAGjG,QAAA,sCAAsC,GAAsC,0BAA0B,CAAC"}
@@ -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,4 @@
1
+ "use strict";
2
+ /*! Copyright (c) 2023, XAPP AI */
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ //# sourceMappingURL=BaseService.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BaseService.js","sourceRoot":"","sources":["../../src/Services/BaseService.ts"],"names":[],"mappings":";AAAA,kCAAkC"}
@@ -1,5 +1,6 @@
1
1
  /*! Copyright (c) 2019, XAPPmedia */
2
2
  export * from "./AppService";
3
+ export * from "./BaseService";
3
4
  export * from "./CrmService";
4
5
  export * from "./ErrorService";
5
6
  export * from "./HandlerService";
@@ -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.56",
7
+ "version": "1.57.60",
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.0",
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
24
  "tslib": "2.4.1",
25
- "typescript": "4.9.4"
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": "877c89b3636725a8c725f0c3ab6dc9ae4cf8e4ae"
36
+ "gitHead": "bd7eda43d7631aec6fc1e31fd46b1e4043ba6e6f"
37
37
  }