@fy-stack/app-construct 0.0.127 → 0.0.128
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/dist/lib/next-app-router-construct.d.ts +3 -5
- package/dist/lib/next-app-router-construct.d.ts.map +1 -1
- package/dist/lib/next-app-router-construct.js +12 -2
- package/dist/lib/next-pages-export-construct.d.ts +16 -0
- package/dist/lib/next-pages-export-construct.d.ts.map +1 -0
- package/dist/lib/next-pages-export-construct.js +70 -0
- package/dist/lib/node-app-construct.d.ts.map +1 -1
- package/dist/lib/node-app-construct.js +4 -1
- package/dist/lib/types.d.ts +1 -1
- package/dist/lib/types.d.ts.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export { ImageAppConstruct } from './lib/image-app-construct';
|
|
2
2
|
export { NextAppRouterConstruct } from './lib/next-app-router-construct';
|
|
3
|
+
export { NextPagesExportConstruct } from './lib/next-pages-export-construct';
|
|
3
4
|
export { NodeApiConstruct } from './lib/node-api-construct';
|
|
4
5
|
export { NodeAppConstruct } from './lib/node-app-construct';
|
|
5
6
|
export type { AppConstruct, AppProperties } from "./lib/types";
|
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,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AAC9D,OAAO,EAAE,sBAAsB,EAAE,MAAM,iCAAiC,CAAC;AACzE,OAAO,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AAC5D,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"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AAC9D,OAAO,EAAE,sBAAsB,EAAE,MAAM,iCAAiC,CAAC;AACzE,OAAO,EAAE,wBAAwB,EAAE,MAAM,mCAAmC,CAAC;AAC7E,OAAO,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AAC5D,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,10 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.lambdaGrant = exports.lambdaAttach = exports.NodeAppConstruct = exports.NodeApiConstruct = exports.NextAppRouterConstruct = exports.ImageAppConstruct = void 0;
|
|
3
|
+
exports.lambdaGrant = exports.lambdaAttach = exports.NodeAppConstruct = exports.NodeApiConstruct = exports.NextPagesExportConstruct = exports.NextAppRouterConstruct = exports.ImageAppConstruct = void 0;
|
|
4
4
|
var image_app_construct_1 = require("./lib/image-app-construct");
|
|
5
5
|
Object.defineProperty(exports, "ImageAppConstruct", { enumerable: true, get: function () { return image_app_construct_1.ImageAppConstruct; } });
|
|
6
6
|
var next_app_router_construct_1 = require("./lib/next-app-router-construct");
|
|
7
7
|
Object.defineProperty(exports, "NextAppRouterConstruct", { enumerable: true, get: function () { return next_app_router_construct_1.NextAppRouterConstruct; } });
|
|
8
|
+
var next_pages_export_construct_1 = require("./lib/next-pages-export-construct");
|
|
9
|
+
Object.defineProperty(exports, "NextPagesExportConstruct", { enumerable: true, get: function () { return next_pages_export_construct_1.NextPagesExportConstruct; } });
|
|
8
10
|
var node_api_construct_1 = require("./lib/node-api-construct");
|
|
9
11
|
Object.defineProperty(exports, "NodeApiConstruct", { enumerable: true, get: function () { return node_api_construct_1.NodeApiConstruct; } });
|
|
10
12
|
var node_app_construct_1 = require("./lib/node-app-construct");
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Attachable, Grantable } from '@fy-stack/types';
|
|
2
|
-
import * as cdk from 'aws-cdk-lib';
|
|
3
2
|
import type { HttpRouteIntegration } from 'aws-cdk-lib/aws-apigatewayv2';
|
|
3
|
+
import * as cloudfront from 'aws-cdk-lib/aws-cloudfront';
|
|
4
4
|
import * as lambda from 'aws-cdk-lib/aws-lambda';
|
|
5
5
|
import { ITopicSubscription } from 'aws-cdk-lib/aws-sns';
|
|
6
6
|
import * as sqs from 'aws-cdk-lib/aws-sqs';
|
|
@@ -11,10 +11,8 @@ export declare class NextAppRouterConstruct extends Construct implements AppCons
|
|
|
11
11
|
queue: sqs.Queue | undefined;
|
|
12
12
|
private readonly static;
|
|
13
13
|
constructor(scope: Construct, id: string, props: AppProperties);
|
|
14
|
-
cloudfront(path: string):
|
|
15
|
-
|
|
16
|
-
};
|
|
17
|
-
api(path: string): Record<string, HttpRouteIntegration>;
|
|
14
|
+
cloudfront(path: string): Record<string, cloudfront.BehaviorOptions>;
|
|
15
|
+
api(): Record<string, HttpRouteIntegration>;
|
|
18
16
|
attach(attachable: Record<string, Attachable>): void;
|
|
19
17
|
grant(...grants: Grantable[]): void;
|
|
20
18
|
subscription(): ITopicSubscription;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"next-app-router-construct.d.ts","sourceRoot":"","sources":["../../src/lib/next-app-router-construct.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,UAAU,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;
|
|
1
|
+
{"version":3,"file":"next-app-router-construct.d.ts","sourceRoot":"","sources":["../../src/lib/next-app-router-construct.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,UAAU,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAExD,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,8BAA8B,CAAC;AACzE,OAAO,KAAK,UAAU,MAAM,4BAA4B,CAAC;AAEzD,OAAO,KAAK,MAAM,MAAM,wBAAwB,CAAC;AAIjD,OAAO,EAAE,kBAAkB,EAAE,MAAM,qBAAqB,CAAC;AACzD,OAAO,KAAK,GAAG,MAAM,qBAAqB,CAAC;AAC3C,OAAO,EAAE,SAAS,EAAE,MAAM,YAAY,CAAC;AAEvC,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,MAAM,SAAS,CAAC;AAItD,qBAAa,sBAAuB,SAAQ,SAAU,YAAW,YAAY;IACpE,QAAQ,EAAE,MAAM,CAAC,QAAQ,CAAC;IAC1B,KAAK,EAAE,GAAG,CAAC,KAAK,GAAG,SAAS,CAAC;IAEpC,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAY;gBAEvB,KAAK,EAAE,SAAS,EAAE,EAAE,EAAE,MAAM,EAAE,KAAK,EAAE,aAAa;IAiE9D,UAAU,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC,MAAM,EAAE,UAAU,CAAC,eAAe,CAAC;IAoDpE,GAAG,IAAI,MAAM,CAAC,MAAM,EAAE,oBAAoB,CAAC;IAI3C,MAAM,CAAC,UAAU,EAAE,MAAM,CAAC,MAAM,EAAE,UAAU,CAAC;IAI7C,KAAK,CAAC,GAAG,MAAM,EAAE,SAAS,EAAE;IAI5B,YAAY,IAAI,kBAAkB;CAGnC"}
|
|
@@ -84,6 +84,12 @@ class NextAppRouterConstruct extends constructs_1.Construct {
|
|
|
84
84
|
compress: true,
|
|
85
85
|
viewerProtocolPolicy: cloudfront.ViewerProtocolPolicy.REDIRECT_TO_HTTPS,
|
|
86
86
|
};
|
|
87
|
+
const appCachePolicy = new cloudfront.CachePolicy(this, "ImagePolicy", {
|
|
88
|
+
queryStringBehavior: cloudfront.CacheQueryStringBehavior.all(),
|
|
89
|
+
maxTtl: cdk.Duration.days(365),
|
|
90
|
+
enableAcceptEncodingGzip: true,
|
|
91
|
+
enableAcceptEncodingBrotli: true
|
|
92
|
+
});
|
|
87
93
|
const appBehaviour = {
|
|
88
94
|
origin: serverOrigin,
|
|
89
95
|
cachePolicy: cloudfront.CachePolicy.CACHING_DISABLED,
|
|
@@ -96,12 +102,16 @@ class NextAppRouterConstruct extends constructs_1.Construct {
|
|
|
96
102
|
};
|
|
97
103
|
return {
|
|
98
104
|
[`${path}/*`]: appBehaviour,
|
|
99
|
-
[`${path}/_next/image
|
|
105
|
+
[`${path}/_next/image`]: {
|
|
106
|
+
...appBehaviour,
|
|
107
|
+
cachePolicy: appCachePolicy,
|
|
108
|
+
allowedMethods: cloudfront.AllowedMethods.ALLOW_GET_HEAD,
|
|
109
|
+
},
|
|
100
110
|
[`${path}/_next/*`]: staticBehavior,
|
|
101
111
|
[`${path}/*.ico`]: staticBehavior,
|
|
102
112
|
};
|
|
103
113
|
}
|
|
104
|
-
api(
|
|
114
|
+
api() {
|
|
105
115
|
throw new Error('api not supported for this construct');
|
|
106
116
|
}
|
|
107
117
|
attach(attachable) {
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Attachable, Grantable } from '@fy-stack/types';
|
|
2
|
+
import type { HttpRouteIntegration } from 'aws-cdk-lib/aws-apigatewayv2';
|
|
3
|
+
import * as cloudfront from 'aws-cdk-lib/aws-cloudfront';
|
|
4
|
+
import { ITopicSubscription } from 'aws-cdk-lib/aws-sns';
|
|
5
|
+
import { Construct } from 'constructs';
|
|
6
|
+
import { AppConstruct, AppProperties } from './types';
|
|
7
|
+
export declare class NextPagesExportConstruct extends Construct implements AppConstruct {
|
|
8
|
+
private readonly static;
|
|
9
|
+
constructor(scope: Construct, id: string, props: AppProperties);
|
|
10
|
+
cloudfront(path: string): Record<string, cloudfront.BehaviorOptions>;
|
|
11
|
+
api(): Record<string, HttpRouteIntegration>;
|
|
12
|
+
attach(attachable: Record<string, Attachable>): void;
|
|
13
|
+
grant(...grants: Grantable[]): void;
|
|
14
|
+
subscription(): ITopicSubscription;
|
|
15
|
+
}
|
|
16
|
+
//# sourceMappingURL=next-pages-export-construct.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"next-pages-export-construct.d.ts","sourceRoot":"","sources":["../../src/lib/next-pages-export-construct.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,UAAU,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAExD,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,8BAA8B,CAAC;AACzE,OAAO,KAAK,UAAU,MAAM,4BAA4B,CAAC;AAIzD,OAAO,EAAE,kBAAkB,EAAE,MAAM,qBAAqB,CAAC;AACzD,OAAO,EAAE,SAAS,EAAE,MAAM,YAAY,CAAC;AAEvC,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,MAAM,SAAS,CAAC;AAEtD,qBAAa,wBAAyB,SAAQ,SAAU,YAAW,YAAY;IAC7E,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAY;gBAEvB,KAAK,EAAE,SAAS,EAAE,EAAE,EAAE,MAAM,EAAE,KAAK,EAAE,aAAa;IAiC9D,UAAU,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC,MAAM,EAAE,UAAU,CAAC,eAAe,CAAC;IAmBpE,GAAG,IAAI,MAAM,CAAC,MAAM,EAAE,oBAAoB,CAAC;IAI3C,MAAM,CAAC,UAAU,EAAE,MAAM,CAAC,MAAM,EAAE,UAAU,CAAC;IAI7C,KAAK,CAAC,GAAG,MAAM,EAAE,SAAS,EAAE;IAI5B,YAAY,IAAI,kBAAkB;CAGnC"}
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.NextPagesExportConstruct = void 0;
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
5
|
+
const path = tslib_1.__importStar(require("node:path"));
|
|
6
|
+
const cdk = tslib_1.__importStar(require("aws-cdk-lib"));
|
|
7
|
+
const cloudfront = tslib_1.__importStar(require("aws-cdk-lib/aws-cloudfront"));
|
|
8
|
+
const cloudfrontOrigin = tslib_1.__importStar(require("aws-cdk-lib/aws-cloudfront-origins"));
|
|
9
|
+
const s3 = tslib_1.__importStar(require("aws-cdk-lib/aws-s3"));
|
|
10
|
+
const s3Deploy = tslib_1.__importStar(require("aws-cdk-lib/aws-s3-deployment"));
|
|
11
|
+
const constructs_1 = require("constructs");
|
|
12
|
+
class NextPagesExportConstruct extends constructs_1.Construct {
|
|
13
|
+
static;
|
|
14
|
+
constructor(scope, id, props) {
|
|
15
|
+
super(scope, id);
|
|
16
|
+
this.static = new s3.Bucket(this, `StaticBucket`, {
|
|
17
|
+
removalPolicy: cdk.RemovalPolicy.DESTROY,
|
|
18
|
+
autoDeleteObjects: true,
|
|
19
|
+
blockPublicAccess: s3.BlockPublicAccess.BLOCK_ACLS,
|
|
20
|
+
publicReadAccess: true,
|
|
21
|
+
websiteIndexDocument: 'index.html',
|
|
22
|
+
websiteErrorDocument: 'index.html',
|
|
23
|
+
cors: [
|
|
24
|
+
{
|
|
25
|
+
allowedHeaders: ['*'],
|
|
26
|
+
allowedOrigins: ['*'],
|
|
27
|
+
allowedMethods: [s3.HttpMethods.GET, s3.HttpMethods.HEAD],
|
|
28
|
+
},
|
|
29
|
+
],
|
|
30
|
+
});
|
|
31
|
+
new s3Deploy.BucketDeployment(this, `StaticDeployment`, {
|
|
32
|
+
destinationBucket: this.static,
|
|
33
|
+
sources: [s3Deploy.Source.asset(path.join(props.output, "/.next")),],
|
|
34
|
+
retainOnDelete: false,
|
|
35
|
+
});
|
|
36
|
+
new s3Deploy.BucketDeployment(this, `PublicDeployment`, {
|
|
37
|
+
destinationBucket: this.static,
|
|
38
|
+
sources: [s3Deploy.Source.asset(path.join(props.output, "/public"))],
|
|
39
|
+
destinationKeyPrefix: "public",
|
|
40
|
+
retainOnDelete: false,
|
|
41
|
+
});
|
|
42
|
+
}
|
|
43
|
+
cloudfront(path) {
|
|
44
|
+
const staticOrigin = new cloudfrontOrigin.S3StaticWebsiteOrigin(this.static);
|
|
45
|
+
const staticBehavior = {
|
|
46
|
+
origin: staticOrigin,
|
|
47
|
+
cachePolicy: cloudfront.CachePolicy.CACHING_OPTIMIZED,
|
|
48
|
+
allowedMethods: cloudfront.AllowedMethods.ALLOW_GET_HEAD,
|
|
49
|
+
cachedMethods: cloudfront.CachedMethods.CACHE_GET_HEAD,
|
|
50
|
+
compress: true,
|
|
51
|
+
viewerProtocolPolicy: cloudfront.ViewerProtocolPolicy.REDIRECT_TO_HTTPS,
|
|
52
|
+
};
|
|
53
|
+
return {
|
|
54
|
+
[`${path}/*`]: staticBehavior,
|
|
55
|
+
};
|
|
56
|
+
}
|
|
57
|
+
api() {
|
|
58
|
+
throw new Error('api not supported for this construct');
|
|
59
|
+
}
|
|
60
|
+
attach(attachable) {
|
|
61
|
+
throw new Error('attach not supported for this construct');
|
|
62
|
+
}
|
|
63
|
+
grant(...grants) {
|
|
64
|
+
throw new Error('grant not supported for this construct');
|
|
65
|
+
}
|
|
66
|
+
subscription() {
|
|
67
|
+
throw new Error(`subscription not supported for ${this}`);
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
exports.NextPagesExportConstruct = NextPagesExportConstruct;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"node-app-construct.d.ts","sourceRoot":"","sources":["../../src/lib/node-app-construct.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAExD,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,8BAA8B,CAAC;AACzE,OAAO,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAC;AAC7D,OAAO,KAAK,MAAM,MAAM,wBAAwB,CAAC;AAGjD,OAAO,EAAE,kBAAkB,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAE5E,OAAO,KAAK,GAAG,MAAM,qBAAqB,CAAC;AAC3C,OAAO,EAAE,SAAS,EAAE,MAAM,YAAY,CAAC;AAEvC,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,MAAM,SAAS,CAAC;
|
|
1
|
+
{"version":3,"file":"node-app-construct.d.ts","sourceRoot":"","sources":["../../src/lib/node-app-construct.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAExD,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,8BAA8B,CAAC;AACzE,OAAO,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAC;AAC7D,OAAO,KAAK,MAAM,MAAM,wBAAwB,CAAC;AAGjD,OAAO,EAAE,kBAAkB,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAE5E,OAAO,KAAK,GAAG,MAAM,qBAAqB,CAAC;AAC3C,OAAO,EAAE,SAAS,EAAE,MAAM,YAAY,CAAC;AAEvC,OAAO,EAAE,YAAY,EAAE,aAAa,EAAE,MAAM,SAAS,CAAC;AAKtD,qBAAa,gBAAiB,SAAQ,SAAU,YAAW,YAAY;IAC9D,QAAQ,EAAE,MAAM,CAAC,QAAQ,CAAC;IAC1B,KAAK,EAAE,GAAG,CAAC,KAAK,GAAG,SAAS,CAAC;gBAExB,KAAK,EAAE,SAAS,EAAE,EAAE,EAAE,MAAM,EAAE,KAAK,EAAE,aAAa;IA8B9D,MAAM,CAAC,UAAU,EAAE,MAAM,CAAC,MAAM,EAAE,UAAU,CAAC;IAI7C,KAAK,CAAC,GAAG,MAAM,EAAE,SAAS,EAAE;IAI5B,YAAY,CAAC,KAAK,EAAE,iBAAiB,GAAG,kBAAkB;IAO1D,UAAU,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC,MAAM,EAAE,eAAe,CAAC;IAIzD,GAAG,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC,MAAM,EAAE,oBAAoB,CAAC;CAUxD"}
|
|
@@ -11,6 +11,7 @@ const sqs = tslib_1.__importStar(require("aws-cdk-lib/aws-sqs"));
|
|
|
11
11
|
const constructs_1 = require("constructs");
|
|
12
12
|
const lambda_attach_1 = require("./utils/lambda-attach");
|
|
13
13
|
const lambda_grant_1 = require("./utils/lambda-grant");
|
|
14
|
+
const aws_apigatewayv2_integrations_1 = require("aws-cdk-lib/aws-apigatewayv2-integrations");
|
|
14
15
|
class NodeAppConstruct extends constructs_1.Construct {
|
|
15
16
|
function;
|
|
16
17
|
queue;
|
|
@@ -51,7 +52,9 @@ class NodeAppConstruct extends constructs_1.Construct {
|
|
|
51
52
|
throw new Error(`cloudfront not supported for ${this}`);
|
|
52
53
|
}
|
|
53
54
|
api(path) {
|
|
54
|
-
|
|
55
|
+
this.function.addEnvironment('BASE_PATH', path);
|
|
56
|
+
const integration = new aws_apigatewayv2_integrations_1.HttpLambdaIntegration('AppIntegration', this.function);
|
|
57
|
+
return { [`${path}/*`]: integration };
|
|
55
58
|
}
|
|
56
59
|
}
|
|
57
60
|
exports.NodeAppConstruct = NodeAppConstruct;
|
package/dist/lib/types.d.ts
CHANGED
package/dist/lib/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/lib/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,EAAE,WAAW,EAAE,KAAK,EAAE,KAAK,EAAE,MAAM,iBAAiB,CAAC;AACjF,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,wBAAwB,CAAC;AACvD,OAAO,EAAE,KAAK,EAAE,MAAM,qBAAqB,CAAC;AAE5C,MAAM,MAAM,aAAa,GAAG;IAC1B,KAAK,CAAC,EAAE;QAAE,SAAS,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IAC/B,GAAG,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAC7B,WAAW,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACrC,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,MAAM,WAAW,YAAa,SAAQ,MAAM,EAAE,KAAK,EAAE,WAAW,EAAE,KAAK,EAAE,WAAW;IAClF,QAAQ,EAAE,QAAQ,CAAC;
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/lib/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,EAAE,WAAW,EAAE,KAAK,EAAE,KAAK,EAAE,MAAM,iBAAiB,CAAC;AACjF,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,wBAAwB,CAAC;AACvD,OAAO,EAAE,KAAK,EAAE,MAAM,qBAAqB,CAAC;AAE5C,MAAM,MAAM,aAAa,GAAG;IAC1B,KAAK,CAAC,EAAE;QAAE,SAAS,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IAC/B,GAAG,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAC7B,WAAW,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACrC,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,MAAM,WAAW,YAAa,SAAQ,MAAM,EAAE,KAAK,EAAE,WAAW,EAAE,KAAK,EAAE,WAAW;IAClF,QAAQ,CAAC,EAAE,QAAQ,CAAC;IACpB,KAAK,CAAC,EAAE,KAAK,CAAA;CACd"}
|
package/package.json
CHANGED