@@ -150,6 +150,7 @@ declare global {
150
150
const createLocalTunnel : typeof import ( '../.stacks/core/tunnel/src/index' ) [ 'createLocalTunnel' ]
151
151
const createMigration : typeof import ( '../.stacks/core/actions/src/index' ) [ 'createMigration' ]
152
152
const createModel : typeof import ( '../.stacks/core/actions/src/index' ) [ 'createModel' ]
153
+ const createModelCustomizationJob : typeof import ( '../.stacks/core/ai/src/utils/client-bedrock' ) [ 'createModelCustomizationJob' ]
153
154
const createMysqlPool : typeof import ( '../.stacks/core/query-builder/src/kysely' ) [ 'createMysqlPool' ]
154
155
const createNotification : typeof import ( '../.stacks/core/actions/src/index' ) [ 'createNotification' ]
155
156
const createPage : typeof import ( '../.stacks/core/actions/src/index' ) [ 'createPage' ]
@@ -306,6 +307,7 @@ declare global {
306
307
const getExportsSize : typeof import ( '../.stacks/core/utils/src/export-size' ) [ 'getExportsSize' ]
307
308
const getFiles : typeof import ( '../.stacks/core/storage/src/files' ) [ 'getFiles' ]
308
309
const getFolders : typeof import ( '../.stacks/core/storage/src/folders' ) [ 'getFolders' ]
310
+ const getModelCustomizationJob : typeof import ( '../.stacks/core/ai/src/utils/client-bedrock' ) [ 'getModelCustomizationJob' ]
309
311
const getNameservers : typeof import ( '../.stacks/core/dns/src/drivers/aws' ) [ 'getNameservers' ]
310
312
const getSSRHandler : typeof import ( '../.stacks/core/utils/src/vendors' ) [ 'getSSRHandler' ]
311
313
const getTypeName : typeof import ( '../.stacks/core/types/src/helpers' ) [ 'getTypeName' ]
@@ -349,6 +351,8 @@ declare global {
349
351
const injectLocal : typeof import ( '../.stacks/core/utils/src/vendors' ) [ 'injectLocal' ]
350
352
const installIfVersionMismatch : typeof import ( '../.stacks/core/utils/src/helpers' ) [ 'installIfVersionMismatch' ]
351
353
const invoke : typeof import ( '../.stacks/core/actions/src/generate/index' ) [ 'invoke' ]
354
+ const invokeModel : typeof import ( '../.stacks/core/ai/src/utils/client-bedrock-runtime' ) [ 'invokeModel' ]
355
+ const invokeModelWithResponseStream : typeof import ( '../.stacks/core/ai/src/utils/client-bedrock-runtime' ) [ 'invokeModelWithResponseStream' ]
352
356
const isAbsolute : typeof import ( '../.stacks/core/path/src/index' ) [ 'isAbsolute' ]
353
357
const isAppKeySet : typeof import ( '../.stacks/core/utils/src/helpers' ) [ 'isAppKeySet' ]
354
358
const isArray : typeof import ( '../.stacks/core/validation/src/is' ) [ 'isArray' ]
@@ -410,6 +414,7 @@ declare global {
410
414
const libsEntriesPath : typeof import ( '../.stacks/core/path/src/index' ) [ 'libsEntriesPath' ]
411
415
const libsPath : typeof import ( '../.stacks/core/path/src/index' ) [ 'libsPath' ]
412
416
const lintPath : typeof import ( '../.stacks/core/path/src/index' ) [ 'lintPath' ]
417
+ const listFoundationModels : typeof import ( '../.stacks/core/ai/src/utils/client-bedrock' ) [ 'listFoundationModels' ]
413
418
const listen : typeof import ( '../.stacks/core/events/src/index' ) [ 'listen' ]
414
419
const loadYaml : typeof import ( '../.stacks/core/utils/src/helpers' ) [ 'loadYaml' ]
415
420
const log : typeof import ( '../.stacks/core/logging/src/index' ) [ 'log' ]
@@ -1048,6 +1053,7 @@ declare module 'vue' {
1048
1053
readonly createLocalTunnel : UnwrapRef < typeof import ( '../.stacks/core/tunnel/src/index' ) [ 'createLocalTunnel' ] >
1049
1054
readonly createMigration : UnwrapRef < typeof import ( '../.stacks/core/actions/src/index' ) [ 'createMigration' ] >
1050
1055
readonly createModel : UnwrapRef < typeof import ( '../.stacks/core/actions/src/index' ) [ 'createModel' ] >
1056
+ readonly createModelCustomizationJob : UnwrapRef < typeof import ( '../.stacks/core/ai/src/utils/client-bedrock' ) [ 'createModelCustomizationJob' ] >
1051
1057
readonly createMysqlPool : UnwrapRef < typeof import ( '../.stacks/core/query-builder/src/kysely' ) [ 'createMysqlPool' ] >
1052
1058
readonly createNotification : UnwrapRef < typeof import ( '../.stacks/core/actions/src/index' ) [ 'createNotification' ] >
1053
1059
readonly createPage : UnwrapRef < typeof import ( '../.stacks/core/actions/src/index' ) [ 'createPage' ] >
@@ -1204,6 +1210,7 @@ declare module 'vue' {
1204
1210
readonly getExportsSize : UnwrapRef < typeof import ( '../.stacks/core/utils/src/export-size' ) [ 'getExportsSize' ] >
1205
1211
readonly getFiles : UnwrapRef < typeof import ( '../.stacks/core/storage/src/files' ) [ 'getFiles' ] >
1206
1212
readonly getFolders : UnwrapRef < typeof import ( '../.stacks/core/storage/src/folders' ) [ 'getFolders' ] >
1213
+ readonly getModelCustomizationJob : UnwrapRef < typeof import ( '../.stacks/core/ai/src/utils/client-bedrock' ) [ 'getModelCustomizationJob' ] >
1207
1214
readonly getNameservers : UnwrapRef < typeof import ( '../.stacks/core/dns/src/drivers/aws' ) [ 'getNameservers' ] >
1208
1215
readonly getSSRHandler : UnwrapRef < typeof import ( '../.stacks/core/utils/src/vendors' ) [ 'getSSRHandler' ] >
1209
1216
readonly getTypeName : UnwrapRef < typeof import ( '../.stacks/core/types/src/helpers' ) [ 'getTypeName' ] >
@@ -1247,6 +1254,8 @@ declare module 'vue' {
1247
1254
readonly injectLocal : UnwrapRef < typeof import ( '../.stacks/core/utils/src/vendors' ) [ 'injectLocal' ] >
1248
1255
readonly installIfVersionMismatch : UnwrapRef < typeof import ( '../.stacks/core/utils/src/helpers' ) [ 'installIfVersionMismatch' ] >
1249
1256
readonly invoke : UnwrapRef < typeof import ( '../.stacks/core/actions/src/generate/index' ) [ 'invoke' ] >
1257
+ readonly invokeModel : UnwrapRef < typeof import ( '../.stacks/core/ai/src/utils/client-bedrock-runtime' ) [ 'invokeModel' ] >
1258
+ readonly invokeModelWithResponseStream : UnwrapRef < typeof import ( '../.stacks/core/ai/src/utils/client-bedrock-runtime' ) [ 'invokeModelWithResponseStream' ] >
1250
1259
readonly isAbsolute : UnwrapRef < typeof import ( '../.stacks/core/path/src/index' ) [ 'isAbsolute' ] >
1251
1260
readonly isAppKeySet : UnwrapRef < typeof import ( '../.stacks/core/utils/src/helpers' ) [ 'isAppKeySet' ] >
1252
1261
readonly isArray : UnwrapRef < typeof import ( '../.stacks/core/validation/src/is' ) [ 'isArray' ] >
@@ -1308,6 +1317,7 @@ declare module 'vue' {
1308
1317
readonly libsEntriesPath : UnwrapRef < typeof import ( '../.stacks/core/path/src/index' ) [ 'libsEntriesPath' ] >
1309
1318
readonly libsPath : UnwrapRef < typeof import ( '../.stacks/core/path/src/index' ) [ 'libsPath' ] >
1310
1319
readonly lintPath : UnwrapRef < typeof import ( '../.stacks/core/path/src/index' ) [ 'lintPath' ] >
1320
+ readonly listFoundationModels : UnwrapRef < typeof import ( '../.stacks/core/ai/src/utils/client-bedrock' ) [ 'listFoundationModels' ] >
1311
1321
readonly listen : UnwrapRef < typeof import ( '../.stacks/core/events/src/index' ) [ 'listen' ] >
1312
1322
readonly loadYaml : UnwrapRef < typeof import ( '../.stacks/core/utils/src/helpers' ) [ 'loadYaml' ] >
1313
1323
readonly log : UnwrapRef < typeof import ( '../.stacks/core/logging/src/index' ) [ 'log' ] >
@@ -1931,6 +1941,7 @@ declare module '@vue/runtime-core' {
1931
1941
readonly createLocalTunnel : UnwrapRef < typeof import ( '../.stacks/core/tunnel/src/index' ) [ 'createLocalTunnel' ] >
1932
1942
readonly createMigration : UnwrapRef < typeof import ( '../.stacks/core/actions/src/index' ) [ 'createMigration' ] >
1933
1943
readonly createModel : UnwrapRef < typeof import ( '../.stacks/core/actions/src/index' ) [ 'createModel' ] >
1944
+ readonly createModelCustomizationJob : UnwrapRef < typeof import ( '../.stacks/core/ai/src/utils/client-bedrock' ) [ 'createModelCustomizationJob' ] >
1934
1945
readonly createMysqlPool : UnwrapRef < typeof import ( '../.stacks/core/query-builder/src/kysely' ) [ 'createMysqlPool' ] >
1935
1946
readonly createNotification : UnwrapRef < typeof import ( '../.stacks/core/actions/src/index' ) [ 'createNotification' ] >
1936
1947
readonly createPage : UnwrapRef < typeof import ( '../.stacks/core/actions/src/index' ) [ 'createPage' ] >
@@ -2087,6 +2098,7 @@ declare module '@vue/runtime-core' {
2087
2098
readonly getExportsSize : UnwrapRef < typeof import ( '../.stacks/core/utils/src/export-size' ) [ 'getExportsSize' ] >
2088
2099
readonly getFiles : UnwrapRef < typeof import ( '../.stacks/core/storage/src/files' ) [ 'getFiles' ] >
2089
2100
readonly getFolders : UnwrapRef < typeof import ( '../.stacks/core/storage/src/folders' ) [ 'getFolders' ] >
2101
+ readonly getModelCustomizationJob : UnwrapRef < typeof import ( '../.stacks/core/ai/src/utils/client-bedrock' ) [ 'getModelCustomizationJob' ] >
2090
2102
readonly getNameservers : UnwrapRef < typeof import ( '../.stacks/core/dns/src/drivers/aws' ) [ 'getNameservers' ] >
2091
2103
readonly getSSRHandler : UnwrapRef < typeof import ( '../.stacks/core/utils/src/vendors' ) [ 'getSSRHandler' ] >
2092
2104
readonly getTypeName : UnwrapRef < typeof import ( '../.stacks/core/types/src/helpers' ) [ 'getTypeName' ] >
@@ -2130,6 +2142,8 @@ declare module '@vue/runtime-core' {
2130
2142
readonly injectLocal : UnwrapRef < typeof import ( '../.stacks/core/utils/src/vendors' ) [ 'injectLocal' ] >
2131
2143
readonly installIfVersionMismatch : UnwrapRef < typeof import ( '../.stacks/core/utils/src/helpers' ) [ 'installIfVersionMismatch' ] >
2132
2144
readonly invoke : UnwrapRef < typeof import ( '../.stacks/core/actions/src/generate/index' ) [ 'invoke' ] >
2145
+ readonly invokeModel : UnwrapRef < typeof import ( '../.stacks/core/ai/src/utils/client-bedrock-runtime' ) [ 'invokeModel' ] >
2146
+ readonly invokeModelWithResponseStream : UnwrapRef < typeof import ( '../.stacks/core/ai/src/utils/client-bedrock-runtime' ) [ 'invokeModelWithResponseStream' ] >
2133
2147
readonly isAbsolute : UnwrapRef < typeof import ( '../.stacks/core/path/src/index' ) [ 'isAbsolute' ] >
2134
2148
readonly isAppKeySet : UnwrapRef < typeof import ( '../.stacks/core/utils/src/helpers' ) [ 'isAppKeySet' ] >
2135
2149
readonly isArray : UnwrapRef < typeof import ( '../.stacks/core/validation/src/is' ) [ 'isArray' ] >
@@ -2191,6 +2205,7 @@ declare module '@vue/runtime-core' {
2191
2205
readonly libsEntriesPath : UnwrapRef < typeof import ( '../.stacks/core/path/src/index' ) [ 'libsEntriesPath' ] >
2192
2206
readonly libsPath : UnwrapRef < typeof import ( '../.stacks/core/path/src/index' ) [ 'libsPath' ] >
2193
2207
readonly lintPath : UnwrapRef < typeof import ( '../.stacks/core/path/src/index' ) [ 'lintPath' ] >
2208
+ readonly listFoundationModels : UnwrapRef < typeof import ( '../.stacks/core/ai/src/utils/client-bedrock' ) [ 'listFoundationModels' ] >
2194
2209
readonly listen : UnwrapRef < typeof import ( '../.stacks/core/events/src/index' ) [ 'listen' ] >
2195
2210
readonly loadYaml : UnwrapRef < typeof import ( '../.stacks/core/utils/src/helpers' ) [ 'loadYaml' ] >
2196
2211
readonly log : UnwrapRef < typeof import ( '../.stacks/core/logging/src/index' ) [ 'log' ] >
0 commit comments