Skip to content

Commit

Permalink
Merge branch 'feat/custom-user-agent-ui/main' into feat/custom-user-a…
Browse files Browse the repository at this point in the history
…gent-ui/storage-integ
  • Loading branch information
erinleigh90 authored Jul 27, 2023
2 parents 6c64eea + 8faeaa9 commit d687d4c
Show file tree
Hide file tree
Showing 31 changed files with 961 additions and 564 deletions.
1 change: 1 addition & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1649,6 +1649,7 @@ releasable_branches: &releasable_branches
- release
- main
- next
- feat/custom-user-agent-ui/main

# List of test browsers that are always used in every E2E test. Tests that aren't expected to interact with browser APIs
# should use `minimal_browser_list` to keep test execution time low.
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
"publish:next": "lerna publish --canary --force-publish \"*\" --yes --dist-tag=next --preid=next${PREID_HASH_SUFFIX} --exact --no-verify-access",
"publish:release": "lerna publish --conventional-commits --yes --message 'chore(release): Publish [ci skip]' --no-verify-access",
"publish:verdaccio": "lerna publish --no-push --canary minor --dist-tag=unstable --preid=unstable --exact --force-publish --yes --no-verify-access",
"publish:feat/custom-user-agent-ui/main": "lerna publish --canary --force-publish \"*\" --yes --dist-tag=v5-user-agent-for-ui --preid=v5-user-agent-for-ui${PREID_HASH_SUFFIX} --exact --no-verify-access",
"ts-coverage": "lerna run ts-coverage"
},
"husky": {
Expand Down
4 changes: 2 additions & 2 deletions packages/analytics/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,13 @@
"name": "Analytics (Pinpoint)",
"path": "./lib-esm/index.js",
"import": "{ Amplify, Analytics, AWSPinpointProvider }",
"limit": "31.1 kB"
"limit": "31.5 kB"
},
{
"name": "Analytics (Kinesis)",
"path": "./lib-esm/index.js",
"import": "{ Amplify, Analytics, AWSKinesisProvider }",
"limit": "60.4 kB"
"limit": "60.5 kB"
}
],
"jest": {
Expand Down
2 changes: 1 addition & 1 deletion packages/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
"name": "API (top-level class)",
"path": "./lib-esm/index.js",
"import": "{ Amplify, API }",
"limit": "89 kB"
"limit": "89.1 kB"
}
],
"jest": {
Expand Down
2 changes: 1 addition & 1 deletion packages/auth/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"name": "Auth (top-level class)",
"path": "./lib-esm/index.js",
"import": "{ Amplify, Auth }",
"limit": "55.1 kB"
"limit": "55.18 kB"
}
],
"jest": {
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
"name": "Core (Credentials)",
"path": "./lib-esm/index.js",
"import": "{ Credentials }",
"limit": "13.33 kB"
"limit": "13.45 kB"
},
{
"name": "Core (Signer)",
Expand Down
11 changes: 10 additions & 1 deletion packages/core/src/Platform/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,19 @@ export enum DataStoreAction {
GraphQl = '2',
}
export enum GeoAction {
None = '0',
SearchByText = '1',
SearchForSuggestions = '2',
SearchByPlaceId = '3',
SearchByCoordinates = '4',
SaveGeofences = '5',
GetGeofence = '6',
ListGeofences = '7',
DeleteGeofences = '8',
}
export enum InAppMessagingAction {
None = '0',
SyncMessages = '1',
IdentifyUser = '2',
}
export enum InteractionsAction {
None = '0',
Expand Down
2 changes: 1 addition & 1 deletion packages/datastore/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
"name": "DataStore (top-level class)",
"path": "./lib-esm/index.js",
"import": "{ Amplify, DataStore }",
"limit": "137 kB"
"limit": "137.1 kB"
}
],
"jest": {
Expand Down
8 changes: 8 additions & 0 deletions packages/geo/internals/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"name": "@aws-amplify/geo/internals",
"types": "../lib-esm/internals/index.d.ts",
"main": "../lib/internals/index.js",
"module": "../lib-esm/internals/index.js",
"react-native": "../lib-esm/internals/index.js",
"sideEffects": false
}
5 changes: 3 additions & 2 deletions packages/geo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@
"files": [
"lib",
"lib-esm",
"src"
"src",
"internals"
],
"dependencies": {
"@aws-amplify/core": "5.7.0",
Expand All @@ -57,7 +58,7 @@
"name": "Geo (top-level class)",
"path": "./lib-esm/index.js",
"import": "{ Amplify, Geo }",
"limit": "51.75 kB"
"limit": "52.1 kB"
}
],
"jest": {
Expand Down
Loading

0 comments on commit d687d4c

Please sign in to comment.