@aws-amplify/interactions 4.0.49-next.20 → 4.0.49-next.36

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.
Files changed (40) hide show
  1. package/CHANGELOG.md +32 -0
  2. package/lib/.tsbuildinfo +3 -0
  3. package/lib/Providers/AWSLexProvider.js +1 -1
  4. package/lib/Providers/InteractionsProvider.js +1 -1
  5. package/lib/Providers/index.d.ts +3 -3
  6. package/lib/Providers/index.js +7 -5
  7. package/lib/Providers/index.js.map +1 -1
  8. package/lib/index.d.ts +4 -9
  9. package/lib/index.js +8 -10
  10. package/lib/index.js.map +1 -1
  11. package/lib/types/Response.js +1 -1
  12. package/lib-esm/.tsbuildinfo +3 -0
  13. package/lib-esm/Providers/AWSLexProvider.js +1 -1
  14. package/lib-esm/Providers/InteractionsProvider.js +1 -1
  15. package/lib-esm/Providers/index.d.ts +3 -3
  16. package/lib-esm/Providers/index.js +4 -4
  17. package/lib-esm/Providers/index.js.map +1 -1
  18. package/lib-esm/index.d.ts +4 -9
  19. package/lib-esm/index.js +5 -10
  20. package/lib-esm/index.js.map +1 -1
  21. package/lib-esm/types/Response.js +1 -1
  22. package/package.json +12 -6
  23. package/src/Interactions.ts +1 -1
  24. package/src/Providers/AWSLexProvider.ts +1 -1
  25. package/src/Providers/InteractionsProvider.ts +1 -1
  26. package/src/Providers/index.ts +4 -4
  27. package/src/index.ts +5 -12
  28. package/src/types/Interactions.ts +1 -1
  29. package/src/types/Provider.ts +1 -1
  30. package/src/types/Providers/AWSLexProvider.ts +1 -1
  31. package/src/types/Providers/AWSLexV2Provider.ts +1 -1
  32. package/src/types/Response.ts +1 -1
  33. package/src/types/index.ts +1 -1
  34. package/build.js +0 -5
  35. package/dist/aws-amplify-interactions.js +0 -33613
  36. package/dist/aws-amplify-interactions.js.map +0 -1
  37. package/dist/aws-amplify-interactions.min.js +0 -187
  38. package/dist/aws-amplify-interactions.min.js.map +0 -1
  39. package/index.js +0 -7
  40. package/webpack.config.dev.js +0 -6
package/CHANGELOG.md CHANGED
@@ -3,6 +3,38 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [4.1.7](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/interactions@4.1.6...@aws-amplify/interactions@4.1.7) (2022-10-26)
7
+
8
+ **Note:** Version bump only for package @aws-amplify/interactions
9
+
10
+
11
+
12
+
13
+
14
+ ## [4.1.6](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/interactions@4.1.5...@aws-amplify/interactions@4.1.6) (2022-10-25)
15
+
16
+ **Note:** Version bump only for package @aws-amplify/interactions
17
+
18
+
19
+
20
+
21
+
22
+ ## [4.1.5](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/interactions@4.1.4...@aws-amplify/interactions@4.1.5) (2022-10-14)
23
+
24
+ **Note:** Version bump only for package @aws-amplify/interactions
25
+
26
+
27
+
28
+
29
+
30
+ ## [4.1.4](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/interactions@4.1.3...@aws-amplify/interactions@4.1.4) (2022-10-14)
31
+
32
+ **Note:** Version bump only for package @aws-amplify/interactions
33
+
34
+
35
+
36
+
37
+
6
38
  ## [4.1.3](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/interactions@4.1.1...@aws-amplify/interactions@4.1.3) (2022-09-30)
7
39
 
8
40
 
@@ -0,0 +1,3 @@
1
+ {
2
+ "version": "3.8.3"
3
+ }
@@ -2,7 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  var tslib_1 = require("tslib");
4
4
  /*
5
- * Copyright 2017-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
5
+ * Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
6
6
  *
7
7
  * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
8
8
  * the License. A copy of the License is located at
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  /*
3
- * Copyright 2017-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
3
+ * Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
4
4
  *
5
5
  * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
6
6
  * the License. A copy of the License is located at
@@ -1,3 +1,3 @@
1
- export * from './AWSLexProvider';
2
- export * from './AWSLexV2Provider';
3
- export * from './InteractionsProvider';
1
+ export { AWSLexProvider } from './AWSLexProvider';
2
+ export { AWSLexV2Provider } from './AWSLexV2Provider';
3
+ export { AbstractInteractionsProvider } from './InteractionsProvider';
@@ -1,8 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- var tslib_1 = require("tslib");
4
3
  /*
5
- * Copyright 2017-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
4
+ * Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
6
5
  *
7
6
  * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
8
7
  * the License. A copy of the License is located at
@@ -13,7 +12,10 @@ var tslib_1 = require("tslib");
13
12
  * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
14
13
  * and limitations under the License.
15
14
  */
16
- tslib_1.__exportStar(require("./AWSLexProvider"), exports);
17
- tslib_1.__exportStar(require("./AWSLexV2Provider"), exports);
18
- tslib_1.__exportStar(require("./InteractionsProvider"), exports);
15
+ var AWSLexProvider_1 = require("./AWSLexProvider");
16
+ exports.AWSLexProvider = AWSLexProvider_1.AWSLexProvider;
17
+ var AWSLexV2Provider_1 = require("./AWSLexV2Provider");
18
+ exports.AWSLexV2Provider = AWSLexV2Provider_1.AWSLexV2Provider;
19
+ var InteractionsProvider_1 = require("./InteractionsProvider");
20
+ exports.AbstractInteractionsProvider = InteractionsProvider_1.AbstractInteractionsProvider;
19
21
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/Providers/index.ts"],"names":[],"mappings":";;;AAAA;;;;;;;;;;;GAWG;AACH,2DAAiC;AACjC,6DAAmC;AACnC,iEAAuC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/Providers/index.ts"],"names":[],"mappings":";;AAAA;;;;;;;;;;;GAWG;AACH,mDAAkD;AAAzC,0CAAA,cAAc,CAAA;AACvB,uDAAsD;AAA7C,8CAAA,gBAAgB,CAAA;AACzB,+DAAsE;AAA7D,8DAAA,4BAA4B,CAAA"}
package/lib/index.d.ts CHANGED
@@ -1,10 +1,5 @@
1
- import { Interactions } from './Interactions';
2
- /**
3
- * @deprecated use named import
4
- */
5
- export default Interactions;
1
+ export { Interactions } from './Interactions';
6
2
  export * from './types';
7
- export * from './Providers/InteractionsProvider';
8
- export * from './Providers/AWSLexProvider';
9
- export * from './Providers/AWSLexV2Provider';
10
- export { Interactions };
3
+ export { AbstractInteractionsProvider } from './Providers/InteractionsProvider';
4
+ export { AWSLexProvider } from './Providers/AWSLexProvider';
5
+ export { AWSLexV2Provider } from './Providers/AWSLexV2Provider';
package/lib/index.js CHANGED
@@ -1,8 +1,6 @@
1
1
  "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- var tslib_1 = require("tslib");
4
2
  /*
5
- * Copyright 2017-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
3
+ * Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
6
4
  *
7
5
  * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
8
6
  * the License. A copy of the License is located at
@@ -13,13 +11,13 @@ var tslib_1 = require("tslib");
13
11
  * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
14
12
  * and limitations under the License.
15
13
  */
14
+ Object.defineProperty(exports, "__esModule", { value: true });
16
15
  var Interactions_1 = require("./Interactions");
17
16
  exports.Interactions = Interactions_1.Interactions;
18
- /**
19
- * @deprecated use named import
20
- */
21
- exports.default = Interactions_1.Interactions;
22
- tslib_1.__exportStar(require("./Providers/InteractionsProvider"), exports);
23
- tslib_1.__exportStar(require("./Providers/AWSLexProvider"), exports);
24
- tslib_1.__exportStar(require("./Providers/AWSLexV2Provider"), exports);
17
+ var InteractionsProvider_1 = require("./Providers/InteractionsProvider");
18
+ exports.AbstractInteractionsProvider = InteractionsProvider_1.AbstractInteractionsProvider;
19
+ var AWSLexProvider_1 = require("./Providers/AWSLexProvider");
20
+ exports.AWSLexProvider = AWSLexProvider_1.AWSLexProvider;
21
+ var AWSLexV2Provider_1 = require("./Providers/AWSLexV2Provider");
22
+ exports.AWSLexV2Provider = AWSLexV2Provider_1.AWSLexV2Provider;
25
23
  //# sourceMappingURL=index.js.map
package/lib/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAA;;;;;;;;;;;GAWG;AACH,+CAA8C;AAYrC,uBAZA,2BAAY,CAYA;AAVrB;;GAEG;AACH,kBAAe,2BAAY,CAAC;AAG5B,2EAAiD;AACjD,qEAA2C;AAC3C,uEAA6C"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;AAEH,+CAA8C;AAArC,sCAAA,YAAY,CAAA;AAErB,yEAAgF;AAAvE,8DAAA,4BAA4B,CAAA;AACrC,6DAA4D;AAAnD,0CAAA,cAAc,CAAA;AACvB,iEAAgE;AAAvD,8CAAA,gBAAgB,CAAA"}
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  /*
3
- * Copyright 2017-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
3
+ * Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
4
4
  *
5
5
  * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
6
6
  * the License. A copy of the License is located at
@@ -0,0 +1,3 @@
1
+ {
2
+ "version": "3.8.3"
3
+ }
@@ -1,6 +1,6 @@
1
1
  import { __assign, __awaiter, __extends, __generator } from "tslib";
2
2
  /*
3
- * Copyright 2017-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
3
+ * Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
4
4
  *
5
5
  * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
6
6
  * the License. A copy of the License is located at
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Copyright 2017-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
+ * Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
3
3
  *
4
4
  * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
5
5
  * the License. A copy of the License is located at
@@ -1,3 +1,3 @@
1
- export * from './AWSLexProvider';
2
- export * from './AWSLexV2Provider';
3
- export * from './InteractionsProvider';
1
+ export { AWSLexProvider } from './AWSLexProvider';
2
+ export { AWSLexV2Provider } from './AWSLexV2Provider';
3
+ export { AbstractInteractionsProvider } from './InteractionsProvider';
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Copyright 2017-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
+ * Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
3
3
  *
4
4
  * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
5
5
  * the License. A copy of the License is located at
@@ -10,7 +10,7 @@
10
10
  * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
11
11
  * and limitations under the License.
12
12
  */
13
- export * from './AWSLexProvider';
14
- export * from './AWSLexV2Provider';
15
- export * from './InteractionsProvider';
13
+ export { AWSLexProvider } from './AWSLexProvider';
14
+ export { AWSLexV2Provider } from './AWSLexV2Provider';
15
+ export { AbstractInteractionsProvider } from './InteractionsProvider';
16
16
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/Providers/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AACH,cAAc,kBAAkB,CAAC;AACjC,cAAc,oBAAoB,CAAC;AACnC,cAAc,wBAAwB,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/Providers/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AACH,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,EAAE,4BAA4B,EAAE,MAAM,wBAAwB,CAAC"}
@@ -1,10 +1,5 @@
1
- import { Interactions } from './Interactions';
2
- /**
3
- * @deprecated use named import
4
- */
5
- export default Interactions;
1
+ export { Interactions } from './Interactions';
6
2
  export * from './types';
7
- export * from './Providers/InteractionsProvider';
8
- export * from './Providers/AWSLexProvider';
9
- export * from './Providers/AWSLexV2Provider';
10
- export { Interactions };
3
+ export { AbstractInteractionsProvider } from './Providers/InteractionsProvider';
4
+ export { AWSLexProvider } from './Providers/AWSLexProvider';
5
+ export { AWSLexV2Provider } from './Providers/AWSLexV2Provider';
package/lib-esm/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Copyright 2017-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
+ * Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
3
3
  *
4
4
  * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
5
5
  * the License. A copy of the License is located at
@@ -10,13 +10,8 @@
10
10
  * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
11
11
  * and limitations under the License.
12
12
  */
13
- import { Interactions } from './Interactions';
14
- /**
15
- * @deprecated use named import
16
- */
17
- export default Interactions;
18
- export * from './Providers/InteractionsProvider';
19
- export * from './Providers/AWSLexProvider';
20
- export * from './Providers/AWSLexV2Provider';
21
- export { Interactions };
13
+ export { Interactions } from './Interactions';
14
+ export { AbstractInteractionsProvider } from './Providers/InteractionsProvider';
15
+ export { AWSLexProvider } from './Providers/AWSLexProvider';
16
+ export { AWSLexV2Provider } from './Providers/AWSLexV2Provider';
22
17
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AACH,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAE9C;;GAEG;AACH,eAAe,YAAY,CAAC;AAG5B,cAAc,kCAAkC,CAAC;AACjD,cAAc,4BAA4B,CAAC;AAC3C,cAAc,8BAA8B,CAAC;AAE7C,OAAO,EAAE,YAAY,EAAE,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAEH,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAE9C,OAAO,EAAE,4BAA4B,EAAE,MAAM,kCAAkC,CAAC;AAChF,OAAO,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAC;AAC5D,OAAO,EAAE,gBAAgB,EAAE,MAAM,8BAA8B,CAAC"}
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Copyright 2017-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
+ * Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
3
3
  *
4
4
  * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
5
5
  * the License. A copy of the License is located at
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-amplify/interactions",
3
- "version": "4.0.49-next.20+072846a9f",
3
+ "version": "4.0.49-next.36+580cda186",
4
4
  "description": "Interactions category of aws-amplify",
5
5
  "main": "./lib/index.js",
6
6
  "module": "./lib-esm/index.js",
@@ -28,7 +28,8 @@
28
28
  "build": "npm run clean && npm run build:esm && npm run build:cjs",
29
29
  "clean": "rimraf lib-esm lib dist",
30
30
  "format": "echo \"Not implemented\"",
31
- "lint": "tslint 'src/**/*.ts'"
31
+ "lint": "tslint 'src/**/*.ts' && npm run ts-coverage",
32
+ "ts-coverage": "typescript-coverage-report -p ./tsconfig.build.json -t 88.6"
32
33
  },
33
34
  "repository": {
34
35
  "type": "git",
@@ -40,10 +41,15 @@
40
41
  "url": "https://github.com/aws/aws-amplify/issues"
41
42
  },
42
43
  "homepage": "https://aws-amplify.github.io/",
44
+ "files": [
45
+ "lib",
46
+ "lib-esm",
47
+ "src"
48
+ ],
43
49
  "dependencies": {
44
- "@aws-amplify/core": "4.6.2-next.20+072846a9f",
45
- "@aws-sdk/client-lex-runtime-service": "3.6.1",
46
- "@aws-sdk/client-lex-runtime-v2": "3.171.0",
50
+ "@aws-amplify/core": "4.6.2-next.36+580cda186",
51
+ "@aws-sdk/client-lex-runtime-service": "3.186.0",
52
+ "@aws-sdk/client-lex-runtime-v2": "3.186.0",
47
53
  "base-64": "1.0.0",
48
54
  "fflate": "0.7.3",
49
55
  "pako": "2.0.4",
@@ -93,5 +99,5 @@
93
99
  "lib-esm"
94
100
  ]
95
101
  },
96
- "gitHead": "072846a9f0bd91f145e58aca2fca91a6478286b0"
102
+ "gitHead": "580cda186f10ead3bb99acb7a4825c435c657d33"
97
103
  }
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Copyright 2017-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
+ * Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
3
3
  *
4
4
  * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
5
5
  * the License. A copy of the License is located at
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Copyright 2017-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
+ * Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
3
3
  *
4
4
  * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
5
5
  * the License. A copy of the License is located at
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Copyright 2017-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
+ * Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
3
3
  *
4
4
  * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
5
5
  * the License. A copy of the License is located at
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Copyright 2017-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
+ * Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
3
3
  *
4
4
  * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
5
5
  * the License. A copy of the License is located at
@@ -10,6 +10,6 @@
10
10
  * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
11
11
  * and limitations under the License.
12
12
  */
13
- export * from './AWSLexProvider';
14
- export * from './AWSLexV2Provider';
15
- export * from './InteractionsProvider';
13
+ export { AWSLexProvider } from './AWSLexProvider';
14
+ export { AWSLexV2Provider } from './AWSLexV2Provider';
15
+ export { AbstractInteractionsProvider } from './InteractionsProvider';
package/src/index.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Copyright 2017-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
+ * Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
3
3
  *
4
4
  * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
5
5
  * the License. A copy of the License is located at
@@ -10,16 +10,9 @@
10
10
  * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
11
11
  * and limitations under the License.
12
12
  */
13
- import { Interactions } from './Interactions';
14
-
15
- /**
16
- * @deprecated use named import
17
- */
18
- export default Interactions;
19
13
 
14
+ export { Interactions } from './Interactions';
20
15
  export * from './types';
21
- export * from './Providers/InteractionsProvider';
22
- export * from './Providers/AWSLexProvider';
23
- export * from './Providers/AWSLexV2Provider';
24
-
25
- export { Interactions };
16
+ export { AbstractInteractionsProvider } from './Providers/InteractionsProvider';
17
+ export { AWSLexProvider } from './Providers/AWSLexProvider';
18
+ export { AWSLexV2Provider } from './Providers/AWSLexV2Provider';
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Copyright 2017-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
+ * Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
3
3
  *
4
4
  * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
5
5
  * the License. A copy of the License is located at
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Copyright 2017-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
+ * Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
3
3
  *
4
4
  * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
5
5
  * the License. A copy of the License is located at
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Copyright 2017-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
+ * Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
3
3
  *
4
4
  * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
5
5
  * the License. A copy of the License is located at
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Copyright 2017-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
+ * Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
3
3
  *
4
4
  * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
5
5
  * the License. A copy of the License is located at
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Copyright 2017-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
+ * Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
3
3
  *
4
4
  * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
5
5
  * the License. A copy of the License is located at
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Copyright 2017-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
+ * Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
3
3
  *
4
4
  * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
5
5
  * the License. A copy of the License is located at
package/build.js DELETED
@@ -1,5 +0,0 @@
1
- 'use strict';
2
-
3
- const build = require('../../scripts/build');
4
-
5
- build(process.argv[2], process.argv[3]);