@fy-stack/app-construct 0.0.122 → 0.0.123
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 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export { NestApiConstruct } from './lib/nest-api-construct';
|
|
2
2
|
export { NestConstruct } from './lib/nest-construct';
|
|
3
3
|
export { NextAppRouterConstruct } from './lib/next-app-router-construct';
|
|
4
|
+
export { DenoApiConstruct } from './lib/deno-api-construct';
|
|
4
5
|
export type { AppConstruct, AppProperties } from "./lib/types";
|
|
5
6
|
export { lambdaAttach } from "./lib/utils/lambda-attach";
|
|
6
7
|
export { lambdaGrant } from "./lib/utils/lambda-grant";
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AAC5D,OAAO,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AACrD,OAAO,EAAE,sBAAsB,EAAE,MAAM,iCAAiC,CAAC;AACzE,YAAY,EAAE,YAAY,EAAE,aAAa,EAAE,MAAM,aAAa,CAAA;AAC9D,OAAO,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAA;AACxD,OAAO,EAAE,WAAW,EAAE,MAAM,0BAA0B,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AAC5D,OAAO,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AACrD,OAAO,EAAE,sBAAsB,EAAE,MAAM,iCAAiC,CAAC;AACzE,OAAO,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AAC5D,YAAY,EAAE,YAAY,EAAE,aAAa,EAAE,MAAM,aAAa,CAAA;AAC9D,OAAO,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAA;AACxD,OAAO,EAAE,WAAW,EAAE,MAAM,0BAA0B,CAAA"}
|
package/dist/index.js
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.lambdaGrant = exports.lambdaAttach = exports.NextAppRouterConstruct = exports.NestConstruct = exports.NestApiConstruct = void 0;
|
|
3
|
+
exports.lambdaGrant = exports.lambdaAttach = exports.DenoApiConstruct = exports.NextAppRouterConstruct = exports.NestConstruct = exports.NestApiConstruct = void 0;
|
|
4
4
|
var nest_api_construct_1 = require("./lib/nest-api-construct");
|
|
5
5
|
Object.defineProperty(exports, "NestApiConstruct", { enumerable: true, get: function () { return nest_api_construct_1.NestApiConstruct; } });
|
|
6
6
|
var nest_construct_1 = require("./lib/nest-construct");
|
|
7
7
|
Object.defineProperty(exports, "NestConstruct", { enumerable: true, get: function () { return nest_construct_1.NestConstruct; } });
|
|
8
8
|
var next_app_router_construct_1 = require("./lib/next-app-router-construct");
|
|
9
9
|
Object.defineProperty(exports, "NextAppRouterConstruct", { enumerable: true, get: function () { return next_app_router_construct_1.NextAppRouterConstruct; } });
|
|
10
|
+
var deno_api_construct_1 = require("./lib/deno-api-construct");
|
|
11
|
+
Object.defineProperty(exports, "DenoApiConstruct", { enumerable: true, get: function () { return deno_api_construct_1.DenoApiConstruct; } });
|
|
10
12
|
var lambda_attach_1 = require("./lib/utils/lambda-attach");
|
|
11
13
|
Object.defineProperty(exports, "lambdaAttach", { enumerable: true, get: function () { return lambda_attach_1.lambdaAttach; } });
|
|
12
14
|
var lambda_grant_1 = require("./lib/utils/lambda-grant");
|