amplify-headless-interface
Advanced tools
Comparing version 1.17.7-gfix.0 to 1.17.7-rc.923d253255234ca.0
@@ -6,28 +6,26 @@ # Change Log | ||
## [1.17.7-gfix.0](https://github.com/aws-amplify/amplify-cli/compare/amplify-headless-interface@1.17.1...amplify-headless-interface@1.17.7-gfix.0) (2023-04-03) | ||
## [1.17.7-rc.923d253255234ca.0](https://github.com/aws-amplify/amplify-cli/compare/amplify-headless-interface@1.17.6...amplify-headless-interface@1.17.7-rc.923d253255234ca.0) (2024-05-02) | ||
**Note:** Version bump only for package amplify-headless-interface | ||
### Bug Fixes | ||
* **amplify-headless-interface:** added lambda auth type to headless api payloads ([#13729](https://github.com/aws-amplify/amplify-cli/issues/13729)) ([450eaf1](https://github.com/aws-amplify/amplify-cli/commit/450eaf18af24f3cc15117a55fc565b68b5a63768)) | ||
## [1.17.6](https://github.com/edwardfoyle/amplify-cli/compare/amplify-headless-interface@1.17.1...amplify-headless-interface@1.17.6) (2023-04-03) | ||
**Note:** Version bump only for package amplify-headless-interface | ||
## [1.17.6](https://github.com/aws-amplify/amplify-cli/compare/amplify-headless-interface@1.17.4...amplify-headless-interface@1.17.6) (2023-11-08) | ||
### Bug Fixes | ||
* bump versions after unsuccessful release ([#13395](https://github.com/aws-amplify/amplify-cli/issues/13395)) ([7f43363](https://github.com/aws-amplify/amplify-cli/commit/7f433637b052d6dd33fcbf87f390a6b85e9de5b7)) | ||
## [1.17.5](https://github.com/edwardfoyle/amplify-cli/compare/amplify-headless-interface@1.17.1...amplify-headless-interface@1.17.5) (2023-04-03) | ||
**Note:** Version bump only for package amplify-headless-interface | ||
## [1.17.5](https://github.com/aws-amplify/amplify-cli/compare/amplify-headless-interface@1.17.4...amplify-headless-interface@1.17.5) (2023-11-08) | ||
## [1.17.4](https://github.com/edwardfoyle/amplify-cli/compare/amplify-headless-interface@1.17.1...amplify-headless-interface@1.17.4) (2023-04-01) | ||
**Note:** Version bump only for package amplify-headless-interface | ||
@@ -39,3 +37,3 @@ | ||
## [1.17.3](https://github.com/edwardfoyle/amplify-cli/compare/amplify-headless-interface@1.17.1...amplify-headless-interface@1.17.3) (2023-03-31) | ||
## [1.17.4](https://github.com/aws-amplify/amplify-cli/compare/amplify-headless-interface@1.17.3...amplify-headless-interface@1.17.4) (2023-06-13) | ||
@@ -48,3 +46,3 @@ **Note:** Version bump only for package amplify-headless-interface | ||
## [1.17.2](https://github.com/edwardfoyle/amplify-cli/compare/amplify-headless-interface@1.17.1...amplify-headless-interface@1.17.2) (2023-03-31) | ||
## [1.17.3](https://github.com/aws-amplify/amplify-cli/compare/amplify-headless-interface@1.17.1...amplify-headless-interface@1.17.3) (2023-04-14) | ||
@@ -51,0 +49,0 @@ **Note:** Version bump only for package amplify-headless-interface |
{ | ||
"name": "amplify-headless-interface", | ||
"version": "1.17.7-gfix.0", | ||
"version": "1.17.7-rc.923d253255234ca.0", | ||
"description": "interfaces for amplify headless mode payloads", | ||
@@ -20,6 +20,11 @@ "main": "lib/index.js", | ||
"rimraf": "^3.0.2", | ||
"ts-node": "^8.10.2", | ||
"ts-node": "^10.4.0", | ||
"typescript-json-schema": "~0.52.0" | ||
}, | ||
"gitHead": "2e830bc87196b5e7bf89d2ebdd8638631e2838fd" | ||
"berry": { | ||
"plugins": [ | ||
"@yarn/plugin-typescript" | ||
] | ||
}, | ||
"gitHead": "2eb0b36f61c9471b227699a91bb51acc824f9ac4" | ||
} |
@@ -48,2 +48,5 @@ { | ||
"$ref": "#/definitions/AppSyncOpenIDConnectAuthType" | ||
}, | ||
{ | ||
"$ref": "#/definitions/AppSyncLambdaAuthType" | ||
} | ||
@@ -68,2 +71,5 @@ ] | ||
"$ref": "#/definitions/AppSyncOpenIDConnectAuthType" | ||
}, | ||
{ | ||
"$ref": "#/definitions/AppSyncLambdaAuthType" | ||
} | ||
@@ -149,2 +155,19 @@ ] | ||
}, | ||
"AppSyncLambdaAuthType": { | ||
"description": "Specifies that the AppSync API should be secured using a Lambda Function.", | ||
"type": "object", | ||
"properties": { | ||
"mode": { | ||
"type": "string", | ||
"enum": ["AWS_LAMBDA"] | ||
}, | ||
"lambdaFunction": { | ||
"type": "string" | ||
}, | ||
"ttlSeconds": { | ||
"type": "string" | ||
} | ||
}, | ||
"required": ["mode", "lambdaFunction"] | ||
}, | ||
"ConflictResolution": { | ||
@@ -151,0 +174,0 @@ "description": "Defines a strategy for resolving API write conflicts.", |
@@ -55,2 +55,5 @@ { | ||
"$ref": "#/definitions/AppSyncOpenIDConnectAuthType" | ||
}, | ||
{ | ||
"$ref": "#/definitions/AppSyncLambdaAuthType" | ||
} | ||
@@ -75,2 +78,5 @@ ] | ||
"$ref": "#/definitions/AppSyncOpenIDConnectAuthType" | ||
}, | ||
{ | ||
"$ref": "#/definitions/AppSyncLambdaAuthType" | ||
} | ||
@@ -155,2 +161,19 @@ ] | ||
}, | ||
"AppSyncLambdaAuthType": { | ||
"description": "Specifies that the AppSync API should be secured using a Lambda Function.", | ||
"type": "object", | ||
"properties": { | ||
"mode": { | ||
"type": "string", | ||
"enum": ["AWS_LAMBDA"] | ||
}, | ||
"lambdaFunction": { | ||
"type": "string" | ||
}, | ||
"ttlSeconds": { | ||
"type": "string" | ||
} | ||
}, | ||
"required": ["mode", "lambdaFunction"] | ||
}, | ||
"ConflictResolution": { | ||
@@ -157,0 +180,0 @@ "description": "Defines a strategy for resolving API write conflicts.", |
168135
3377