@xapp/stentor-lex-lib 1.43.35 → 1.43.38

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.
@@ -3,9 +3,9 @@ import { Translator } from "@xapp/patterns";
3
3
  import { Entity, Handler, Intent } from "stentor-models";
4
4
  import { LexImportExportResource, LexImportExportBot } from "../models";
5
5
  import { BotApp } from "./types";
6
- export declare type IDlessHandler = Omit<Handler, "appId" | "organizationId">;
7
- export declare type IDlessIntent = Omit<Intent, "appId" | "organizationId">;
8
- export declare type IDlessEntity = Omit<Entity, "appId" | "entityId">;
6
+ export type IDlessHandler = Omit<Handler, "appId" | "organizationId">;
7
+ export type IDlessIntent = Omit<Intent, "appId" | "organizationId">;
8
+ export type IDlessEntity = Omit<Entity, "appId" | "entityId">;
9
9
  export interface TranslatedBot {
10
10
  app: BotApp;
11
11
  intents: IDlessIntent[];
@@ -1,3 +1,3 @@
1
1
  /*! Copyright (c) 2020, XAPPmedia */
2
2
  import { App } from "stentor-models";
3
- export declare type BotApp = Pick<App, "name">;
3
+ export type BotApp = Pick<App, "name">;
package/lib/types.d.ts CHANGED
@@ -1,2 +1,2 @@
1
1
  /*! Copyright (c) 2019, XAPPmedia */
2
- export declare type LexConnectPlatform = "lex-connect";
2
+ export type LexConnectPlatform = "lex-connect";
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
- "version": "1.43.35",
7
+ "version": "1.43.38",
8
8
  "description": "Shared AWS LEX Library for :mega: stentor",
9
9
  "types": "lib/index",
10
10
  "main": "lib/index",
@@ -22,16 +22,16 @@
22
22
  "chai": "4.3.7",
23
23
  "mocha": "10.2.0",
24
24
  "sinon": "14.0.2",
25
- "stentor-interaction-model": "1.57.20",
26
- "stentor-locales": "1.57.20",
27
- "stentor-models": "1.57.19",
28
- "stentor-request": "1.57.20",
29
- "stentor-utils": "1.57.20",
25
+ "stentor-interaction-model": "1.57.39",
26
+ "stentor-locales": "1.57.39",
27
+ "stentor-models": "1.57.39",
28
+ "stentor-request": "1.57.39",
29
+ "stentor-utils": "1.57.39",
30
30
  "ts-node": "10.9.1",
31
- "typescript": "4.8.4"
31
+ "typescript": "4.9.4"
32
32
  },
33
33
  "dependencies": {
34
- "@xapp/stentor-alexa-lib": "1.43.34",
34
+ "@xapp/stentor-alexa-lib": "1.43.38",
35
35
  "lodash.merge": "4.6.2"
36
36
  },
37
37
  "peerDependencies": {
@@ -46,5 +46,5 @@
46
46
  "clean": "rm -rf ./lib/*",
47
47
  "test": "mocha --recursive -r ts-node/register \"./src/**/*.test.ts\""
48
48
  },
49
- "gitHead": "a0f0364b5790de99489e0d3b7d6521c1e2acf904"
49
+ "gitHead": "20cf1f5889cc4a3ac7531b91178bc1ba63e1decd"
50
50
  }