diff --git a/packages/analytics/package.json b/packages/analytics/package.json index 72f0aba58c8..7f9d13839fa 100644 --- a/packages/analytics/package.json +++ b/packages/analytics/package.json @@ -39,11 +39,11 @@ "dependencies": { "@aws-amplify/cache": "^3.1.25", "@aws-amplify/core": "^3.5.0", - "@aws-sdk/client-firehose": "1.0.0-gamma.4", - "@aws-sdk/client-kinesis": "1.0.0-gamma.4", - "@aws-sdk/client-personalize-events": "1.0.0-gamma.4", - "@aws-sdk/client-pinpoint": "1.0.0-gamma.4", - "@aws-sdk/util-utf8-browser": "1.0.0-gamma.3", + "@aws-sdk/client-firehose": "1.0.0-gamma.8", + "@aws-sdk/client-kinesis": "1.0.0-gamma.8", + "@aws-sdk/client-personalize-events": "1.0.0-gamma.8", + "@aws-sdk/client-pinpoint": "1.0.0-gamma.8", + "@aws-sdk/util-utf8-browser": "1.0.0-gamma.6", "lodash": "^4.17.20", "uuid": "^3.2.1" }, diff --git a/packages/core/package.json b/packages/core/package.json index 0d5511bbe66..e5439adc275 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -46,12 +46,12 @@ }, "dependencies": { "@aws-crypto/sha256-js": "1.0.0-alpha.0", - "@aws-sdk/client-cognito-identity": "1.0.0-gamma.4", - "@aws-sdk/credential-provider-cognito-identity": "1.0.0-gamma.4", - "@aws-sdk/node-http-handler": "1.0.0-gamma.3", - "@aws-sdk/types": "1.0.0-gamma.3", - "@aws-sdk/util-hex-encoding": "1.0.0-gamma.3", - "@aws-sdk/util-user-agent-browser": "1.0.0-gamma.3", + "@aws-sdk/client-cognito-identity": "1.0.0-gamma.8", + "@aws-sdk/credential-provider-cognito-identity": "1.0.0-gamma.8", + "@aws-sdk/node-http-handler": "1.0.0-gamma.7", + "@aws-sdk/types": "1.0.0-gamma.6", + "@aws-sdk/util-hex-encoding": "1.0.0-gamma.6", + "@aws-sdk/util-user-agent-browser": "1.0.0-gamma.7", "universal-cookie": "^4.0.3", "url": "^0.11.0", "zen-observable-ts": "0.8.19" diff --git a/packages/interactions/package.json b/packages/interactions/package.json index 0db2e6350a7..5d9fb34f2a1 100644 --- a/packages/interactions/package.json +++ b/packages/interactions/package.json @@ -36,7 +36,7 @@ "homepage": "https://aws-amplify.github.io/", "dependencies": { "@aws-amplify/core": "^3.5.0", - "@aws-sdk/client-lex-runtime-service": "1.0.0-gamma.4" + "@aws-sdk/client-lex-runtime-service": "1.0.0-gamma.8" }, "jest": { "globals": { diff --git a/packages/predictions/__tests__/Providers/AWSAIIdentifyPredictionsProvider-unit-test.ts b/packages/predictions/__tests__/Providers/AWSAIIdentifyPredictionsProvider-unit-test.ts index 6c0142f3bf5..30ac1b80ef2 100644 --- a/packages/predictions/__tests__/Providers/AWSAIIdentifyPredictionsProvider-unit-test.ts +++ b/packages/predictions/__tests__/Providers/AWSAIIdentifyPredictionsProvider-unit-test.ts @@ -246,6 +246,13 @@ const options = { maxEntities: 50, }, }, + identifyText: { + proxy: false, + region: 'us-west-2', + defaults: { + format: 'PLAIN', + }, + }, identifyLabels: { proxy: false, region: 'us-west-2', diff --git a/packages/predictions/package.json b/packages/predictions/package.json index e47041e9469..4e2c477abed 100644 --- a/packages/predictions/package.json +++ b/packages/predictions/package.json @@ -36,13 +36,13 @@ "dependencies": { "@aws-amplify/core": "^3.5.0", "@aws-amplify/storage": "^3.3.0", - "@aws-sdk/client-comprehend": "1.0.0-gamma.4", - "@aws-sdk/client-polly": "1.0.0-gamma.4", - "@aws-sdk/client-rekognition": "1.0.0-gamma.4", - "@aws-sdk/client-textract": "1.0.0-gamma.4", - "@aws-sdk/client-translate": "1.0.0-gamma.4", - "@aws-sdk/eventstream-marshaller": "1.0.0-gamma.3", - "@aws-sdk/util-utf8-node": "1.0.0-gamma.3", + "@aws-sdk/client-comprehend": "1.0.0-gamma.8", + "@aws-sdk/client-polly": "1.0.0-gamma.8", + "@aws-sdk/client-rekognition": "1.0.0-gamma.8", + "@aws-sdk/client-textract": "1.0.0-gamma.8", + "@aws-sdk/client-translate": "1.0.0-gamma.8", + "@aws-sdk/eventstream-marshaller": "1.0.0-gamma.7", + "@aws-sdk/util-utf8-node": "1.0.0-gamma.6", "uuid": "^3.2.1" }, "jest": { diff --git a/packages/storage/package.json b/packages/storage/package.json index 34ac74b05a0..cd85cbfbdf6 100644 --- a/packages/storage/package.json +++ b/packages/storage/package.json @@ -1,91 +1,91 @@ { - "name": "@aws-amplify/storage", - "version": "3.3.0", - "description": "Storage category of aws-amplify", - "main": "./lib/index.js", - "module": "./lib-esm/index.js", - "typings": "./lib-esm/index.d.ts", - "react-native": { - "./lib/index": "./lib-esm/index.js" - }, - "sideEffects": false, - "publishConfig": { - "access": "public" - }, - "scripts": { - "test": "tslint 'src/**/*.ts' && jest -w 1 --coverage", - "build-with-test": "npm test && npm run build", - "build:cjs": "node ./build es5 && webpack && webpack --config ./webpack.config.dev.js", - "build:esm": "node ./build es6", - "build:cjs:watch": "node ./build es5 --watch", - "build:esm:watch": "node ./build es6 --watch", - "build": "npm run clean && npm run build:esm && npm run build:cjs", - "clean": "rimraf lib-esm lib dist", - "format": "echo \"Not implemented\"", - "lint": "tslint 'src/**/*.ts'" - }, - "repository": { - "type": "git", - "url": "https://github.com/aws-amplify/amplify-js.git" - }, - "author": "Amazon Web Services", - "license": "Apache-2.0", - "bugs": { - "url": "https://github.com/aws/aws-amplify/issues" - }, - "homepage": "https://aws-amplify.github.io/", - "dependencies": { - "@aws-amplify/core": "^3.5.0", - "@aws-sdk/client-s3": "1.0.0-gamma.4", - "@aws-sdk/s3-request-presigner": "1.0.0-gamma.3", - "@aws-sdk/util-create-request": "1.0.0-gamma.3", - "@aws-sdk/util-format-url": "1.0.0-gamma.3", - "axios": "0.19.0", - "events": "^3.1.0", - "sinon": "^7.5.0" - }, - "jest": { - "globals": { - "ts-jest": { - "diagnostics": false, - "tsConfig": { - "lib": [ - "es5", - "es2015", - "dom", - "esnext.asynciterable", - "es2017.object" - ], - "allowJs": true - } - } - }, - "transform": { - "^.+\\.(js|jsx|ts|tsx)$": "ts-jest" - }, - "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$", - "moduleFileExtensions": [ - "ts", - "tsx", - "js", - "json", - "jsx" - ], - "testEnvironment": "jsdom", - "testURL": "http://localhost/", - "coverageThreshold": { - "global": { - "branches": 0, - "functions": 0, - "lines": 0, - "statements": 0 - } - }, - "coveragePathIgnorePatterns": [ - "/node_modules/" - ] - }, - "devDependencies": { - "@types/sinon": "^7.5.1" - } + "name": "@aws-amplify/storage", + "version": "3.3.0", + "description": "Storage category of aws-amplify", + "main": "./lib/index.js", + "module": "./lib-esm/index.js", + "typings": "./lib-esm/index.d.ts", + "react-native": { + "./lib/index": "./lib-esm/index.js" + }, + "sideEffects": false, + "publishConfig": { + "access": "public" + }, + "scripts": { + "test": "tslint 'src/**/*.ts' && jest -w 1 --coverage", + "build-with-test": "npm test && npm run build", + "build:cjs": "node ./build es5 && webpack && webpack --config ./webpack.config.dev.js", + "build:esm": "node ./build es6", + "build:cjs:watch": "node ./build es5 --watch", + "build:esm:watch": "node ./build es6 --watch", + "build": "npm run clean && npm run build:esm && npm run build:cjs", + "clean": "rimraf lib-esm lib dist", + "format": "echo \"Not implemented\"", + "lint": "tslint 'src/**/*.ts'" + }, + "repository": { + "type": "git", + "url": "https://github.com/aws-amplify/amplify-js.git" + }, + "author": "Amazon Web Services", + "license": "Apache-2.0", + "bugs": { + "url": "https://github.com/aws/aws-amplify/issues" + }, + "homepage": "https://aws-amplify.github.io/", + "dependencies": { + "@aws-amplify/core": "^3.5.0", + "@aws-sdk/client-s3": "1.0.0-gamma.8", + "@aws-sdk/s3-request-presigner": "1.0.0-gamma.7", + "@aws-sdk/util-create-request": "1.0.0-gamma.7", + "@aws-sdk/util-format-url": "1.0.0-gamma.7", + "axios": "0.19.0", + "events": "^3.1.0", + "sinon": "^7.5.0" + }, + "jest": { + "globals": { + "ts-jest": { + "diagnostics": false, + "tsConfig": { + "lib": [ + "es5", + "es2015", + "dom", + "esnext.asynciterable", + "es2017.object" + ], + "allowJs": true + } + } + }, + "transform": { + "^.+\\.(js|jsx|ts|tsx)$": "ts-jest" + }, + "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$", + "moduleFileExtensions": [ + "ts", + "tsx", + "js", + "json", + "jsx" + ], + "testEnvironment": "jsdom", + "testURL": "http://localhost/", + "coverageThreshold": { + "global": { + "branches": 0, + "functions": 0, + "lines": 0, + "statements": 0 + } + }, + "coveragePathIgnorePatterns": [ + "/node_modules/" + ] + }, + "devDependencies": { + "@types/sinon": "^7.5.1" + } }