graphql-transformer-common
Advanced tools
Comparing version 1.1.0-alpha.0fe7fa01 to 1.1.0-alpha.114e0b6e
@@ -6,2 +6,42 @@ # Change Log | ||
<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 +48,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) |
@@ -56,3 +56,8 @@ export declare class ResourceConstants { | ||
VersionedCondition: string; | ||
IsDynamicGroupAuthorizedVariable: string; | ||
IsLocalDynamicGroupAuthorizedVariable: string; | ||
IsStaticGroupAuthorizedVariable: string; | ||
IsOwnerAuthorizedVariable: string; | ||
IsLocalOwnerAuthorizedVariable: string; | ||
}; | ||
} |
@@ -70,3 +70,8 @@ "use strict"; | ||
AuthCondition: "authCondition", | ||
VersionedCondition: "versionedCondition" | ||
VersionedCondition: "versionedCondition", | ||
IsDynamicGroupAuthorizedVariable: "isDynamicGroupAuthorized", | ||
IsLocalDynamicGroupAuthorizedVariable: "isLocalDynamicGroupAuthorized", | ||
IsStaticGroupAuthorizedVariable: "isStaticGroupAuthorized", | ||
IsOwnerAuthorizedVariable: "isOwnerAuthorized", | ||
IsLocalOwnerAuthorizedVariable: "isLocalOwnerAuthorized" | ||
}; | ||
@@ -73,0 +78,0 @@ return ResourceConstants; |
@@ -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.0fe7fa01", | ||
"version": "1.1.0-alpha.114e0b6e", | ||
"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.0fe7fa01", | ||
"graphql-transformer-core": "^1.1.0-alpha.0fe7fa01" | ||
"graphql-mapping-template": "^1.1.0-alpha.114e0b6e", | ||
"graphql-transformer-core": "^1.1.0-alpha.114e0b6e" | ||
}, | ||
@@ -26,0 +27,0 @@ "devDependencies": { |
@@ -77,4 +77,9 @@ export class ResourceConstants { | ||
AuthCondition: "authCondition", | ||
VersionedCondition: "versionedCondition" | ||
VersionedCondition: "versionedCondition", | ||
IsDynamicGroupAuthorizedVariable: "isDynamicGroupAuthorized", | ||
IsLocalDynamicGroupAuthorizedVariable: "isLocalDynamicGroupAuthorized", | ||
IsStaticGroupAuthorizedVariable: "isStaticGroupAuthorized", | ||
IsOwnerAuthorizedVariable: "isOwnerAuthorized", | ||
IsLocalOwnerAuthorizedVariable: "isLocalOwnerAuthorized" | ||
} | ||
} |
@@ -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
65214
168400
1266