graphql-transformer-common
Advanced tools
Comparing version 1.1.0-alpha.0c569abc to 1.1.0-alpha.0d6f0394
@@ -6,2 +6,74 @@ # Change Log | ||
<a name="1.0.33"></a> | ||
## [1.0.33](https://github.com/aws-amplify/amplify-cli/compare/graphql-transformer-common@1.0.33-beta.0...graphql-transformer-common@1.0.33) (2018-11-09) | ||
**Note:** Version bump only for package graphql-transformer-common | ||
<a name="1.0.33-beta.0"></a> | ||
## [1.0.33-beta.0](https://github.com/aws-amplify/amplify-cli/compare/graphql-transformer-common@1.0.12...graphql-transformer-common@1.0.33-beta.0) (2018-11-09) | ||
**Note:** Version bump only for package graphql-transformer-common | ||
<a name="1.0.32"></a> | ||
## [1.0.32](https://github.com/aws-amplify/amplify-cli/compare/graphql-transformer-common@1.0.32-beta.0...graphql-transformer-common@1.0.32) (2018-11-05) | ||
**Note:** Version bump only for package graphql-transformer-common | ||
<a name="1.0.32-beta.0"></a> | ||
## [1.0.32-beta.0](https://github.com/aws-amplify/amplify-cli/compare/graphql-transformer-common@1.0.12...graphql-transformer-common@1.0.32-beta.0) (2018-11-05) | ||
**Note:** Version bump only for package graphql-transformer-common | ||
<a name="1.0.31"></a> | ||
## [1.0.31](https://github.com/aws-amplify/amplify-cli/compare/graphql-transformer-common@1.0.12...graphql-transformer-common@1.0.31) (2018-11-02) | ||
**Note:** Version bump only for package graphql-transformer-common | ||
<a name="1.0.30"></a> | ||
## [1.0.30](https://github.com/aws-amplify/amplify-cli/compare/graphql-transformer-common@1.0.30-beta.0...graphql-transformer-common@1.0.30) (2018-11-02) | ||
**Note:** Version bump only for package graphql-transformer-common | ||
<a name="1.0.30-beta.0"></a> | ||
## [1.0.30-beta.0](https://github.com/aws-amplify/amplify-cli/compare/graphql-transformer-common@1.0.12...graphql-transformer-common@1.0.30-beta.0) (2018-11-02) | ||
**Note:** Version bump only for package graphql-transformer-common | ||
<a name="1.0.29"></a> | ||
## [1.0.29](https://github.com/aws-amplify/amplify-cli/compare/graphql-transformer-common@1.0.29-beta.0...graphql-transformer-common@1.0.29) (2018-10-23) | ||
**Note:** Version bump only for package graphql-transformer-common | ||
<a name="1.0.29-beta.0"></a> | ||
## [1.0.29-beta.0](https://github.com/aws-amplify/amplify-cli/compare/graphql-transformer-common@1.0.12...graphql-transformer-common@1.0.29-beta.0) (2018-10-23) | ||
**Note:** Version bump only for package graphql-transformer-common | ||
<a name="1.0.28"></a> | ||
@@ -8,0 +80,0 @@ ## [1.0.28](https://github.com/aws-amplify/amplify-cli/compare/graphql-transformer-common@1.0.28-beta.0...graphql-transformer-common@1.0.28) (2018-10-18) |
@@ -18,2 +18,3 @@ export declare class ResourceConstants { | ||
AppSyncApiName: string; | ||
APIKeyExpirationEpoch: string; | ||
DynamoDBModelTableReadIOPS: string; | ||
@@ -41,2 +42,5 @@ DynamoDBModelTableWriteIOPS: string; | ||
static CONDITIONS: { | ||
APIKeyExpirationEpochIsZero: string; | ||
APIKeyExpirationEpochIsNotNegOne: string; | ||
APIKeyExpirationEpochIsPositive: string; | ||
AuthShouldCreateUserPool: string; | ||
@@ -43,0 +47,0 @@ }; |
@@ -26,2 +26,3 @@ "use strict"; | ||
AppSyncApiName: 'AppSyncApiName', | ||
APIKeyExpirationEpoch: 'APIKeyExpirationEpoch', | ||
// DynamoDB | ||
@@ -52,2 +53,6 @@ DynamoDBModelTableReadIOPS: 'DynamoDBModelTableReadIOPS', | ||
ResourceConstants.CONDITIONS = { | ||
// General | ||
APIKeyExpirationEpochIsZero: 'APIKeyExpirationEpochIsZero', | ||
APIKeyExpirationEpochIsNotNegOne: 'APIKeyExpirationEpochIsNotNegOne', | ||
APIKeyExpirationEpochIsPositive: 'APIKeyExpirationEpochIsPositive', | ||
// Auth | ||
@@ -54,0 +59,0 @@ AuthShouldCreateUserPool: 'AuthShouldCreateUserPool' |
@@ -5,1 +5,2 @@ export declare function plurality(val: string): string; | ||
export declare function toCamelCase(words: string[]): string; | ||
export declare const NONE_VALUE = "___xamznone____"; |
@@ -27,2 +27,3 @@ "use strict"; | ||
exports.toCamelCase = toCamelCase; | ||
exports.NONE_VALUE = '___xamznone____'; | ||
//# sourceMappingURL=util.js.map |
{ | ||
"name": "graphql-transformer-common", | ||
"version": "1.1.0-alpha.0c569abc", | ||
"version": "1.1.0-alpha.0d6f0394", | ||
"description": "Common code and constants for AppSync Transformers", | ||
@@ -8,2 +8,3 @@ "main": "lib/index.js", | ||
"test": "jest", | ||
"test-ci": "jest --ci -i", | ||
"build": "tsc", | ||
@@ -22,4 +23,4 @@ "clean": "rm -rf ./lib" | ||
"graphql": "^0.13.2", | ||
"graphql-mapping-template": "^1.1.0-alpha.0c569abc", | ||
"graphql-transformer-core": "^1.1.0-alpha.0c569abc" | ||
"graphql-mapping-template": "^1.1.0-alpha.0d6f0394", | ||
"graphql-transformer-core": "^1.1.0-alpha.0d6f0394" | ||
}, | ||
@@ -26,0 +27,0 @@ "devDependencies": { |
@@ -26,2 +26,3 @@ export class ResourceConstants { | ||
AppSyncApiName: 'AppSyncApiName', | ||
APIKeyExpirationEpoch: 'APIKeyExpirationEpoch', | ||
@@ -55,2 +56,7 @@ // DynamoDB | ||
public static CONDITIONS = { | ||
// General | ||
APIKeyExpirationEpochIsZero: 'APIKeyExpirationEpochIsZero', | ||
APIKeyExpirationEpochIsNotNegOne: 'APIKeyExpirationEpochIsNotNegOne', | ||
APIKeyExpirationEpochIsPositive: 'APIKeyExpirationEpochIsPositive', | ||
// Auth | ||
@@ -57,0 +63,0 @@ AuthShouldCreateUserPool: 'AuthShouldCreateUserPool' |
@@ -20,1 +20,3 @@ export function plurality(val: string): string { | ||
} | ||
export const NONE_VALUE = '___xamznone____' |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
67122
1280