Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/amplify-data-construct/.jsii
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
]
},
"bundled": {
"@aws-amplify/ai-constructs": "^1.2.4",
"@aws-amplify/ai-constructs": "^1.5.3",
"@aws-amplify/backend-output-schemas": "^1.0.0",
"@aws-amplify/backend-output-storage": "^1.0.0",
"@aws-amplify/graphql-auth-transformer": "4.2.3",
Expand Down Expand Up @@ -4122,5 +4122,5 @@
},
"types": {},
"version": "1.16.1",
"fingerprint": "/ibLSIPW39LJ28MtSyskiOwCoijSx8eBTWO+BhuVXwE="
"fingerprint": "OuvqXjsCW35ZIYVFFnyK5qGSezz23bufN1/EmytUUmQ="
}
2 changes: 1 addition & 1 deletion packages/amplify-data-construct/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@
"zod"
],
"dependencies": {
"@aws-amplify/ai-constructs": "^1.2.4",
"@aws-amplify/ai-constructs": "^1.5.3",
"@aws-amplify/backend-output-schemas": "^1.0.0",
"@aws-amplify/backend-output-storage": "^1.0.0",
"@aws-amplify/graphql-api-construct": "1.20.1",
Expand Down
4 changes: 2 additions & 2 deletions packages/amplify-graphql-api-construct/.jsii
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
]
},
"bundled": {
"@aws-amplify/ai-constructs": "^1.2.4",
"@aws-amplify/ai-constructs": "^1.5.3",
"@aws-amplify/backend-output-schemas": "^1.0.0",
"@aws-amplify/backend-output-storage": "^1.0.0",
"@aws-amplify/graphql-auth-transformer": "4.2.3",
Expand Down Expand Up @@ -9526,5 +9526,5 @@
}
},
"version": "1.20.1",
"fingerprint": "oNtoWovWTY04XL/toJV/tRugU0fwH6LEnKJEbslPXlM="
"fingerprint": "wOrSaWO5G2MVZ/8ZpZ4yMGOvp2Gy2G2QPOpkqZGp2cs="
}
2 changes: 1 addition & 1 deletion packages/amplify-graphql-api-construct/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@
"zod"
],
"dependencies": {
"@aws-amplify/ai-constructs": "^1.2.4",
"@aws-amplify/ai-constructs": "^1.5.3",
"@aws-amplify/backend-output-schemas": "^1.0.0",
"@aws-amplify/backend-output-storage": "^1.0.0",
"@aws-amplify/graphql-auth-transformer": "4.2.3",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"extract-api": "ts-node ../../scripts/extract-api.ts"
},
"dependencies": {
"@aws-amplify/ai-constructs": "^1.2.4",
"@aws-amplify/ai-constructs": "^1.5.3",
"@aws-amplify/graphql-directives": "2.7.1",
"@aws-amplify/graphql-index-transformer": "3.0.18",
"@aws-amplify/graphql-model-transformer": "3.3.0",
Expand Down
7 changes: 6 additions & 1 deletion scripts/verify-construct-dependencies.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,12 @@ const CONSTRUCT_PACKAGE_CONFIGURATIONS: ConstructPackageConfiguration[] = [
},
];

const EXCLUSION_PATHS: string[][] = [['@aws-amplify/graphql-conversation-transformer', '@aws-amplify/ai-constructs', 'json-schema-to-ts']];
const EXCLUSION_PATHS: string[][] = [
// Dependencies of ai-constructs below are only used for typings (compile time).
// They are not active at runtime. Therefore, can be skipped at bundling.
['@aws-amplify/ai-constructs', '@aws-amplify/plugin-types', '@aws-cdk/toolkit-lib'],
['@aws-amplify/graphql-conversation-transformer', '@aws-amplify/ai-constructs', 'json-schema-to-ts'],
];

const PACKAGES_DIR = 'packages';
const NON_JSII_DEPENDENCIES_FILENAME = 'nonJsiiDependencies.json';
Expand Down
Loading
Loading