@awsless/awsless 0.0.32 → 0.0.33

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +7 -3
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -2483,10 +2483,14 @@ declare const getCacheProps: (name: string, stack?: "stack") => {
2483
2483
  };
2484
2484
 
2485
2485
  declare const getFunctionName: <S extends string, N extends string>(stack: S, name: N) => `app--${S}--${N}`;
2486
- declare const Function: {};
2486
+ interface FunctionResources {
2487
+ }
2488
+ declare const Function: FunctionResources;
2487
2489
 
2488
2490
  declare const getTableName: <N extends string, S extends string = "stack">(name: N, stack?: S) => `app--${S}--${N}`;
2489
- declare const Table: {};
2491
+ interface TableResources {
2492
+ }
2493
+ declare const Table: TableResources;
2490
2494
 
2491
2495
  type AppConfig = CombinedDefaultPluginsConfigInput;
2492
2496
  type StackConfig = CombinedDefaultPluginsConfigInput['stacks'][number];
@@ -2706,4 +2710,4 @@ declare const defineStackConfig: (config: StackConfig) => StackConfig$1 | (Stack
2706
2710
  });
2707
2711
  declare const defineAppConfig: (config: AppConfig | AppConfigFactory<AppConfig>) => CombinedDefaultPluginsConfigInput | AppConfigFactory<CombinedDefaultPluginsConfigInput>;
2708
2712
 
2709
- export { AppConfig, Function, Plugin, StackConfig, Table, defineAppConfig, definePlugin, defineStackConfig, getCacheProps, getFunctionName, getGlobalResourceName, getLocalResourceName, getQueueName, getSearchName, getSecretName, getStoreName, getTableName, getTopicName };
2713
+ export { AppConfig, Function, FunctionResources, Plugin, StackConfig, Table, defineAppConfig, definePlugin, defineStackConfig, getCacheProps, getFunctionName, getGlobalResourceName, getLocalResourceName, getQueueName, getSearchName, getSecretName, getStoreName, getTableName, getTopicName };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awsless/awsless",
3
- "version": "0.0.32",
3
+ "version": "0.0.33",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "repository": {