@awsless/awsless 0.0.30 → 0.0.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2468,7 +2468,7 @@ declare const definePlugin: <S extends AnyZodObject | undefined = undefined>(plu
|
|
|
2468
2468
|
|
|
2469
2469
|
declare const getLocalResourceName: <N extends string, S extends string = "stack">(name: N, stack?: S) => `app-${S}-${N}`;
|
|
2470
2470
|
declare const getGlobalResourceName: <N extends string>(name: N) => `app-${N}`;
|
|
2471
|
-
declare const getFunctionName: (stack:
|
|
2471
|
+
declare const getFunctionName: <S extends string, N extends string>(stack: S, name: N) => `app-${S}-${N}`;
|
|
2472
2472
|
declare const getSearchName: <N extends string, S extends string = "stack">(name: N, stack?: S) => `app-${S}-${N}`;
|
|
2473
2473
|
declare const getTableName: <N extends string, S extends string = "stack">(name: N, stack?: S) => `app-${S}-${N}`;
|
|
2474
2474
|
declare const getStoreName: <N extends string, S extends string = "stack">(name: N, stack?: S) => `app-${S}-${N}`;
|