@gradientedge/cdk-utils 4.6.2 → 4.6.6
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/app/api-destined-function/layers/nodejs/node_modules/.yarn-integrity +109 -0
- package/app/api-destined-function/layers/nodejs/node_modules/@types/uuid/LICENSE +21 -0
- package/app/api-destined-function/layers/nodejs/node_modules/@types/uuid/README.md +16 -0
- package/app/api-destined-function/layers/nodejs/node_modules/@types/uuid/index.d.mts +10 -0
- package/app/api-destined-function/layers/nodejs/node_modules/@types/uuid/index.d.ts +80 -0
- package/app/api-destined-function/layers/nodejs/node_modules/@types/uuid/package.json +54 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/LICENSE.md +9 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/README.md +505 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/bin/uuid +2 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-browser/index.js +9 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-browser/md5.js +215 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-browser/nil.js +1 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-browser/parse.js +35 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-browser/regex.js +1 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-browser/rng.js +19 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-browser/sha1.js +96 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-browser/stringify.js +30 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-browser/v1.js +95 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-browser/v3.js +4 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-browser/v35.js +64 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-browser/v4.js +24 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-browser/v5.js +4 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-browser/validate.js +7 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-browser/version.js +11 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-node/index.js +9 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-node/md5.js +13 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-node/nil.js +1 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-node/parse.js +35 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-node/regex.js +1 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-node/rng.js +12 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-node/sha1.js +13 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-node/stringify.js +29 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-node/v1.js +95 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-node/v3.js +4 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-node/v35.js +64 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-node/v4.js +24 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-node/v5.js +4 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-node/validate.js +7 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/esm-node/version.js +11 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/index.js +79 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/md5-browser.js +223 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/md5.js +23 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/nil.js +8 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/parse.js +45 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/regex.js +8 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/rng-browser.js +26 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/rng.js +24 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/sha1-browser.js +104 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/sha1.js +23 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/stringify.js +39 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/umd/uuid.min.js +1 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/umd/uuidNIL.min.js +1 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/umd/uuidParse.min.js +1 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/umd/uuidStringify.min.js +1 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/umd/uuidValidate.min.js +1 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/umd/uuidVersion.min.js +1 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/umd/uuidv1.min.js +1 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/umd/uuidv3.min.js +1 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/umd/uuidv4.min.js +1 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/umd/uuidv5.min.js +1 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/uuid-bin.js +85 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/v1.js +107 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/v3.js +16 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/v35.js +78 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/v4.js +37 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/v5.js +16 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/validate.js +17 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/dist/version.js +21 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/package.json +135 -0
- package/app/api-destined-function/layers/nodejs/node_modules/uuid/wrapper.mjs +10 -0
- package/app/api-destined-function/layers/nodejs/package.json +29 -0
- package/dist/app/api-destined-function/src/lib/lambda.d.ts +0 -1
- package/dist/app/api-destined-function/src/lib/lambda.js +0 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.js +0 -1
- package/dist/src/lib/common/construct.d.ts +0 -1
- package/dist/src/lib/common/construct.js +0 -1
- package/dist/src/lib/common/index.d.ts +0 -1
- package/dist/src/lib/common/index.js +0 -1
- package/dist/src/lib/common/stack.d.ts +0 -1
- package/dist/src/lib/common/stack.js +0 -1
- package/dist/src/lib/construct/api-to-eventbridge-target/api-destination-event.d.ts +0 -1
- package/dist/src/lib/construct/api-to-eventbridge-target/api-destination-event.js +0 -1
- package/dist/src/lib/construct/api-to-eventbridge-target/api-destined-lambda.d.ts +0 -1
- package/dist/src/lib/construct/api-to-eventbridge-target/api-destined-lambda.js +0 -1
- package/dist/src/lib/construct/api-to-eventbridge-target/api-destined-rest-api.d.ts +0 -1
- package/dist/src/lib/construct/api-to-eventbridge-target/api-destined-rest-api.js +0 -1
- package/dist/src/lib/construct/api-to-eventbridge-target/index.d.ts +0 -1
- package/dist/src/lib/construct/api-to-eventbridge-target/index.js +0 -1
- package/dist/src/lib/construct/api-to-eventbridge-target/main.d.ts +0 -1
- package/dist/src/lib/construct/api-to-eventbridge-target/main.js +51 -12
- package/dist/src/lib/construct/graphql-api-lambda/index.d.ts +0 -1
- package/dist/src/lib/construct/graphql-api-lambda/index.js +0 -1
- package/dist/src/lib/construct/graphql-api-lambda/main.d.ts +0 -1
- package/dist/src/lib/construct/graphql-api-lambda/main.js +0 -1
- package/dist/src/lib/construct/graphql-api-lambda-with-cache/index.d.ts +0 -1
- package/dist/src/lib/construct/graphql-api-lambda-with-cache/index.js +0 -1
- package/dist/src/lib/construct/graphql-api-lambda-with-cache/main.d.ts +0 -1
- package/dist/src/lib/construct/graphql-api-lambda-with-cache/main.js +0 -1
- package/dist/src/lib/construct/index.d.ts +0 -1
- package/dist/src/lib/construct/index.js +0 -1
- package/dist/src/lib/construct/site-with-ecs-backend/index.d.ts +0 -1
- package/dist/src/lib/construct/site-with-ecs-backend/index.js +0 -1
- package/dist/src/lib/construct/site-with-ecs-backend/main.d.ts +0 -1
- package/dist/src/lib/construct/site-with-ecs-backend/main.js +0 -1
- package/dist/src/lib/construct/static-site/index.d.ts +0 -1
- package/dist/src/lib/construct/static-site/index.js +0 -1
- package/dist/src/lib/construct/static-site/main.d.ts +0 -1
- package/dist/src/lib/construct/static-site/main.js +0 -1
- package/dist/src/lib/manager/aws/acm-manager.d.ts +0 -1
- package/dist/src/lib/manager/aws/acm-manager.js +0 -1
- package/dist/src/lib/manager/aws/api-manager.d.ts +0 -1
- package/dist/src/lib/manager/aws/api-manager.js +0 -1
- package/dist/src/lib/manager/aws/app-config-manager.d.ts +0 -1
- package/dist/src/lib/manager/aws/app-config-manager.js +0 -1
- package/dist/src/lib/manager/aws/cloudfront-manager.d.ts +0 -1
- package/dist/src/lib/manager/aws/cloudfront-manager.js +0 -1
- package/dist/src/lib/manager/aws/cloudtrail-manager.d.ts +0 -1
- package/dist/src/lib/manager/aws/cloudtrail-manager.js +0 -1
- package/dist/src/lib/manager/aws/cloudwatch-manager.d.ts +0 -1
- package/dist/src/lib/manager/aws/cloudwatch-manager.js +0 -1
- package/dist/src/lib/manager/aws/codebuild-manager.d.ts +0 -1
- package/dist/src/lib/manager/aws/codebuild-manager.js +0 -1
- package/dist/src/lib/manager/aws/dynamodb-manager.d.ts +0 -1
- package/dist/src/lib/manager/aws/dynamodb-manager.js +0 -1
- package/dist/src/lib/manager/aws/ecr-manager.d.ts +0 -1
- package/dist/src/lib/manager/aws/ecr-manager.js +0 -1
- package/dist/src/lib/manager/aws/ecs-manager.d.ts +0 -1
- package/dist/src/lib/manager/aws/ecs-manager.js +0 -1
- package/dist/src/lib/manager/aws/eks-manager.d.ts +0 -1
- package/dist/src/lib/manager/aws/eks-manager.js +0 -1
- package/dist/src/lib/manager/aws/elasticache-manager.d.ts +0 -1
- package/dist/src/lib/manager/aws/elasticache-manager.js +0 -1
- package/dist/src/lib/manager/aws/event-manager.d.ts +0 -1
- package/dist/src/lib/manager/aws/event-manager.js +0 -1
- package/dist/src/lib/manager/aws/iam-manager.d.ts +0 -1
- package/dist/src/lib/manager/aws/iam-manager.js +0 -1
- package/dist/src/lib/manager/aws/index.d.ts +0 -1
- package/dist/src/lib/manager/aws/index.js +0 -1
- package/dist/src/lib/manager/aws/lambda-manager.d.ts +0 -1
- package/dist/src/lib/manager/aws/lambda-manager.js +0 -1
- package/dist/src/lib/manager/aws/log-manager.d.ts +0 -1
- package/dist/src/lib/manager/aws/log-manager.js +0 -1
- package/dist/src/lib/manager/aws/route53-manager.d.ts +0 -1
- package/dist/src/lib/manager/aws/route53-manager.js +0 -1
- package/dist/src/lib/manager/aws/s3-manager.d.ts +0 -1
- package/dist/src/lib/manager/aws/s3-manager.js +0 -1
- package/dist/src/lib/manager/aws/secrets-manager.d.ts +0 -1
- package/dist/src/lib/manager/aws/secrets-manager.js +0 -1
- package/dist/src/lib/manager/aws/sns-manager.d.ts +0 -1
- package/dist/src/lib/manager/aws/sns-manager.js +0 -1
- package/dist/src/lib/manager/aws/ssm-manager.d.ts +0 -1
- package/dist/src/lib/manager/aws/ssm-manager.js +0 -1
- package/dist/src/lib/manager/aws/vpc-manager.d.ts +0 -1
- package/dist/src/lib/manager/aws/vpc-manager.js +0 -1
- package/dist/src/lib/manager/aws/waf-manager.d.ts +0 -1
- package/dist/src/lib/manager/aws/waf-manager.js +0 -1
- package/dist/src/lib/manager/index.d.ts +0 -1
- package/dist/src/lib/manager/index.js +0 -1
- package/dist/src/lib/types/aws/index.d.ts +4 -4
- package/dist/src/lib/types/aws/index.js +0 -1
- package/dist/src/lib/types/index.d.ts +0 -1
- package/dist/src/lib/types/index.js +0 -1
- package/dist/src/lib/utils/aws/index.d.ts +0 -1
- package/dist/src/lib/utils/aws/index.js +0 -1
- package/dist/src/lib/utils/index.d.ts +0 -1
- package/dist/src/lib/utils/index.js +0 -1
- package/package.json +2 -1
- package/src/lib/construct/api-to-eventbridge-target/main.ts +57 -27
- package/src/lib/types/aws/index.ts +4 -3
- package/tsconfig.prd.json +8 -0
- package/dist/app/api-destined-function/src/lib/lambda.d.ts.map +0 -1
- package/dist/app/api-destined-function/src/lib/lambda.js.map +0 -1
- package/dist/index.d.ts.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/src/lib/common/construct.d.ts.map +0 -1
- package/dist/src/lib/common/construct.js.map +0 -1
- package/dist/src/lib/common/index.d.ts.map +0 -1
- package/dist/src/lib/common/index.js.map +0 -1
- package/dist/src/lib/common/stack.d.ts.map +0 -1
- package/dist/src/lib/common/stack.js.map +0 -1
- package/dist/src/lib/construct/api-to-eventbridge-target/api-destination-event.d.ts.map +0 -1
- package/dist/src/lib/construct/api-to-eventbridge-target/api-destination-event.js.map +0 -1
- package/dist/src/lib/construct/api-to-eventbridge-target/api-destined-lambda.d.ts.map +0 -1
- package/dist/src/lib/construct/api-to-eventbridge-target/api-destined-lambda.js.map +0 -1
- package/dist/src/lib/construct/api-to-eventbridge-target/api-destined-rest-api.d.ts.map +0 -1
- package/dist/src/lib/construct/api-to-eventbridge-target/api-destined-rest-api.js.map +0 -1
- package/dist/src/lib/construct/api-to-eventbridge-target/index.d.ts.map +0 -1
- package/dist/src/lib/construct/api-to-eventbridge-target/index.js.map +0 -1
- package/dist/src/lib/construct/api-to-eventbridge-target/main.d.ts.map +0 -1
- package/dist/src/lib/construct/api-to-eventbridge-target/main.js.map +0 -1
- package/dist/src/lib/construct/graphql-api-lambda/index.d.ts.map +0 -1
- package/dist/src/lib/construct/graphql-api-lambda/index.js.map +0 -1
- package/dist/src/lib/construct/graphql-api-lambda/main.d.ts.map +0 -1
- package/dist/src/lib/construct/graphql-api-lambda/main.js.map +0 -1
- package/dist/src/lib/construct/graphql-api-lambda-with-cache/index.d.ts.map +0 -1
- package/dist/src/lib/construct/graphql-api-lambda-with-cache/index.js.map +0 -1
- package/dist/src/lib/construct/graphql-api-lambda-with-cache/main.d.ts.map +0 -1
- package/dist/src/lib/construct/graphql-api-lambda-with-cache/main.js.map +0 -1
- package/dist/src/lib/construct/index.d.ts.map +0 -1
- package/dist/src/lib/construct/index.js.map +0 -1
- package/dist/src/lib/construct/site-with-ecs-backend/index.d.ts.map +0 -1
- package/dist/src/lib/construct/site-with-ecs-backend/index.js.map +0 -1
- package/dist/src/lib/construct/site-with-ecs-backend/main.d.ts.map +0 -1
- package/dist/src/lib/construct/site-with-ecs-backend/main.js.map +0 -1
- package/dist/src/lib/construct/static-site/index.d.ts.map +0 -1
- package/dist/src/lib/construct/static-site/index.js.map +0 -1
- package/dist/src/lib/construct/static-site/main.d.ts.map +0 -1
- package/dist/src/lib/construct/static-site/main.js.map +0 -1
- package/dist/src/lib/manager/aws/acm-manager.d.ts.map +0 -1
- package/dist/src/lib/manager/aws/acm-manager.js.map +0 -1
- package/dist/src/lib/manager/aws/api-manager.d.ts.map +0 -1
- package/dist/src/lib/manager/aws/api-manager.js.map +0 -1
- package/dist/src/lib/manager/aws/app-config-manager.d.ts.map +0 -1
- package/dist/src/lib/manager/aws/app-config-manager.js.map +0 -1
- package/dist/src/lib/manager/aws/cloudfront-manager.d.ts.map +0 -1
- package/dist/src/lib/manager/aws/cloudfront-manager.js.map +0 -1
- package/dist/src/lib/manager/aws/cloudtrail-manager.d.ts.map +0 -1
- package/dist/src/lib/manager/aws/cloudtrail-manager.js.map +0 -1
- package/dist/src/lib/manager/aws/cloudwatch-manager.d.ts.map +0 -1
- package/dist/src/lib/manager/aws/cloudwatch-manager.js.map +0 -1
- package/dist/src/lib/manager/aws/codebuild-manager.d.ts.map +0 -1
- package/dist/src/lib/manager/aws/codebuild-manager.js.map +0 -1
- package/dist/src/lib/manager/aws/dynamodb-manager.d.ts.map +0 -1
- package/dist/src/lib/manager/aws/dynamodb-manager.js.map +0 -1
- package/dist/src/lib/manager/aws/ecr-manager.d.ts.map +0 -1
- package/dist/src/lib/manager/aws/ecr-manager.js.map +0 -1
- package/dist/src/lib/manager/aws/ecs-manager.d.ts.map +0 -1
- package/dist/src/lib/manager/aws/ecs-manager.js.map +0 -1
- package/dist/src/lib/manager/aws/eks-manager.d.ts.map +0 -1
- package/dist/src/lib/manager/aws/eks-manager.js.map +0 -1
- package/dist/src/lib/manager/aws/elasticache-manager.d.ts.map +0 -1
- package/dist/src/lib/manager/aws/elasticache-manager.js.map +0 -1
- package/dist/src/lib/manager/aws/event-manager.d.ts.map +0 -1
- package/dist/src/lib/manager/aws/event-manager.js.map +0 -1
- package/dist/src/lib/manager/aws/iam-manager.d.ts.map +0 -1
- package/dist/src/lib/manager/aws/iam-manager.js.map +0 -1
- package/dist/src/lib/manager/aws/index.d.ts.map +0 -1
- package/dist/src/lib/manager/aws/index.js.map +0 -1
- package/dist/src/lib/manager/aws/lambda-manager.d.ts.map +0 -1
- package/dist/src/lib/manager/aws/lambda-manager.js.map +0 -1
- package/dist/src/lib/manager/aws/log-manager.d.ts.map +0 -1
- package/dist/src/lib/manager/aws/log-manager.js.map +0 -1
- package/dist/src/lib/manager/aws/route53-manager.d.ts.map +0 -1
- package/dist/src/lib/manager/aws/route53-manager.js.map +0 -1
- package/dist/src/lib/manager/aws/s3-manager.d.ts.map +0 -1
- package/dist/src/lib/manager/aws/s3-manager.js.map +0 -1
- package/dist/src/lib/manager/aws/secrets-manager.d.ts.map +0 -1
- package/dist/src/lib/manager/aws/secrets-manager.js.map +0 -1
- package/dist/src/lib/manager/aws/sns-manager.d.ts.map +0 -1
- package/dist/src/lib/manager/aws/sns-manager.js.map +0 -1
- package/dist/src/lib/manager/aws/ssm-manager.d.ts.map +0 -1
- package/dist/src/lib/manager/aws/ssm-manager.js.map +0 -1
- package/dist/src/lib/manager/aws/vpc-manager.d.ts.map +0 -1
- package/dist/src/lib/manager/aws/vpc-manager.js.map +0 -1
- package/dist/src/lib/manager/aws/waf-manager.d.ts.map +0 -1
- package/dist/src/lib/manager/aws/waf-manager.js.map +0 -1
- package/dist/src/lib/manager/index.d.ts.map +0 -1
- package/dist/src/lib/manager/index.js.map +0 -1
- package/dist/src/lib/types/aws/index.d.ts.map +0 -1
- package/dist/src/lib/types/aws/index.js.map +0 -1
- package/dist/src/lib/types/index.d.ts.map +0 -1
- package/dist/src/lib/types/index.js.map +0 -1
- package/dist/src/lib/utils/aws/index.d.ts.map +0 -1
- package/dist/src/lib/utils/aws/index.js.map +0 -1
- package/dist/src/lib/utils/index.d.ts.map +0 -1
- package/dist/src/lib/utils/index.js.map +0 -1
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
{
|
|
2
|
+
"systemParams": "linux-x64-83",
|
|
3
|
+
"modulesFolders": [
|
|
4
|
+
"node_modules"
|
|
5
|
+
],
|
|
6
|
+
"flags": [
|
|
7
|
+
"checkFiles",
|
|
8
|
+
"production"
|
|
9
|
+
],
|
|
10
|
+
"linkedModules": [],
|
|
11
|
+
"topLevelPatterns": [
|
|
12
|
+
"@types/uuid@^8.3.4",
|
|
13
|
+
"mkdirp@^1.0.4",
|
|
14
|
+
"rimraf@^3.0.2",
|
|
15
|
+
"uuid@^8.3.2"
|
|
16
|
+
],
|
|
17
|
+
"lockfileEntries": {
|
|
18
|
+
"@types/uuid@^8.3.4": "https://registry.yarnpkg.com/@types/uuid/-/uuid-8.3.4.tgz#bd86a43617df0594787d38b735f55c805becf1bc",
|
|
19
|
+
"balanced-match@^1.0.0": "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee",
|
|
20
|
+
"brace-expansion@^1.1.7": "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd",
|
|
21
|
+
"concat-map@0.0.1": "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b",
|
|
22
|
+
"fs.realpath@^1.0.0": "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f",
|
|
23
|
+
"glob@^7.1.3": "https://registry.yarnpkg.com/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023",
|
|
24
|
+
"inflight@^1.0.4": "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9",
|
|
25
|
+
"inherits@2": "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c",
|
|
26
|
+
"minimatch@^3.0.4": "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.1.tgz#879ad447200773912898b46cd516a7abbb5e50b0",
|
|
27
|
+
"mkdirp@^1.0.4": "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e",
|
|
28
|
+
"once@^1.3.0": "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1",
|
|
29
|
+
"path-is-absolute@^1.0.0": "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f",
|
|
30
|
+
"rimraf@^3.0.2": "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a",
|
|
31
|
+
"uuid@^8.3.2": "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2",
|
|
32
|
+
"wrappy@1": "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
|
|
33
|
+
},
|
|
34
|
+
"files": [
|
|
35
|
+
".bin/uuid",
|
|
36
|
+
"@types/uuid/LICENSE",
|
|
37
|
+
"@types/uuid/README.md",
|
|
38
|
+
"@types/uuid/index.d.mts",
|
|
39
|
+
"@types/uuid/index.d.ts",
|
|
40
|
+
"@types/uuid/package.json",
|
|
41
|
+
"uuid/CHANGELOG.md",
|
|
42
|
+
"uuid/CONTRIBUTING.md",
|
|
43
|
+
"uuid/LICENSE.md",
|
|
44
|
+
"uuid/README.md",
|
|
45
|
+
"uuid/dist/bin/uuid",
|
|
46
|
+
"uuid/dist/esm-browser/index.js",
|
|
47
|
+
"uuid/dist/esm-browser/md5.js",
|
|
48
|
+
"uuid/dist/esm-browser/nil.js",
|
|
49
|
+
"uuid/dist/esm-browser/parse.js",
|
|
50
|
+
"uuid/dist/esm-browser/regex.js",
|
|
51
|
+
"uuid/dist/esm-browser/rng.js",
|
|
52
|
+
"uuid/dist/esm-browser/sha1.js",
|
|
53
|
+
"uuid/dist/esm-browser/stringify.js",
|
|
54
|
+
"uuid/dist/esm-browser/v1.js",
|
|
55
|
+
"uuid/dist/esm-browser/v3.js",
|
|
56
|
+
"uuid/dist/esm-browser/v35.js",
|
|
57
|
+
"uuid/dist/esm-browser/v4.js",
|
|
58
|
+
"uuid/dist/esm-browser/v5.js",
|
|
59
|
+
"uuid/dist/esm-browser/validate.js",
|
|
60
|
+
"uuid/dist/esm-browser/version.js",
|
|
61
|
+
"uuid/dist/esm-node/index.js",
|
|
62
|
+
"uuid/dist/esm-node/md5.js",
|
|
63
|
+
"uuid/dist/esm-node/nil.js",
|
|
64
|
+
"uuid/dist/esm-node/parse.js",
|
|
65
|
+
"uuid/dist/esm-node/regex.js",
|
|
66
|
+
"uuid/dist/esm-node/rng.js",
|
|
67
|
+
"uuid/dist/esm-node/sha1.js",
|
|
68
|
+
"uuid/dist/esm-node/stringify.js",
|
|
69
|
+
"uuid/dist/esm-node/v1.js",
|
|
70
|
+
"uuid/dist/esm-node/v3.js",
|
|
71
|
+
"uuid/dist/esm-node/v35.js",
|
|
72
|
+
"uuid/dist/esm-node/v4.js",
|
|
73
|
+
"uuid/dist/esm-node/v5.js",
|
|
74
|
+
"uuid/dist/esm-node/validate.js",
|
|
75
|
+
"uuid/dist/esm-node/version.js",
|
|
76
|
+
"uuid/dist/index.js",
|
|
77
|
+
"uuid/dist/md5-browser.js",
|
|
78
|
+
"uuid/dist/md5.js",
|
|
79
|
+
"uuid/dist/nil.js",
|
|
80
|
+
"uuid/dist/parse.js",
|
|
81
|
+
"uuid/dist/regex.js",
|
|
82
|
+
"uuid/dist/rng-browser.js",
|
|
83
|
+
"uuid/dist/rng.js",
|
|
84
|
+
"uuid/dist/sha1-browser.js",
|
|
85
|
+
"uuid/dist/sha1.js",
|
|
86
|
+
"uuid/dist/stringify.js",
|
|
87
|
+
"uuid/dist/umd/uuid.min.js",
|
|
88
|
+
"uuid/dist/umd/uuidNIL.min.js",
|
|
89
|
+
"uuid/dist/umd/uuidParse.min.js",
|
|
90
|
+
"uuid/dist/umd/uuidStringify.min.js",
|
|
91
|
+
"uuid/dist/umd/uuidValidate.min.js",
|
|
92
|
+
"uuid/dist/umd/uuidVersion.min.js",
|
|
93
|
+
"uuid/dist/umd/uuidv1.min.js",
|
|
94
|
+
"uuid/dist/umd/uuidv3.min.js",
|
|
95
|
+
"uuid/dist/umd/uuidv4.min.js",
|
|
96
|
+
"uuid/dist/umd/uuidv5.min.js",
|
|
97
|
+
"uuid/dist/uuid-bin.js",
|
|
98
|
+
"uuid/dist/v1.js",
|
|
99
|
+
"uuid/dist/v3.js",
|
|
100
|
+
"uuid/dist/v35.js",
|
|
101
|
+
"uuid/dist/v4.js",
|
|
102
|
+
"uuid/dist/v5.js",
|
|
103
|
+
"uuid/dist/validate.js",
|
|
104
|
+
"uuid/dist/version.js",
|
|
105
|
+
"uuid/package.json",
|
|
106
|
+
"uuid/wrapper.mjs"
|
|
107
|
+
],
|
|
108
|
+
"artifacts": {}
|
|
109
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) Microsoft Corporation.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# Installation
|
|
2
|
+
> `npm install --save @types/uuid`
|
|
3
|
+
|
|
4
|
+
# Summary
|
|
5
|
+
This package contains type definitions for uuid (https://github.com/uuidjs/uuid).
|
|
6
|
+
|
|
7
|
+
# Details
|
|
8
|
+
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/uuid.
|
|
9
|
+
|
|
10
|
+
### Additional Details
|
|
11
|
+
* Last updated: Thu, 06 Jan 2022 07:31:27 GMT
|
|
12
|
+
* Dependencies: none
|
|
13
|
+
* Global values: none
|
|
14
|
+
|
|
15
|
+
# Credits
|
|
16
|
+
These definitions were written by [Oliver Hoffmann](https://github.com/iamolivinius), [Felipe Ochoa](https://github.com/felipeochoa), [Chris Barth](https://github.com/cjbarth), [Linus Unnebäck](https://github.com/LinusU), and [Christoph Tavan](https://github.com/ctavan).
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import uuid from './index.js';
|
|
2
|
+
export import v1 = uuid.v1;
|
|
3
|
+
export import v3 = uuid.v3;
|
|
4
|
+
export import v4 = uuid.v4;
|
|
5
|
+
export import v5 = uuid.v5;
|
|
6
|
+
export import NIL = uuid.NIL;
|
|
7
|
+
export import version = uuid.version;
|
|
8
|
+
export import validate = uuid.validate;
|
|
9
|
+
export import stringify = uuid.stringify;
|
|
10
|
+
export import parse = uuid.parse;
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
// Type definitions for uuid 8.3
|
|
2
|
+
// Project: https://github.com/uuidjs/uuid
|
|
3
|
+
// Definitions by: Oliver Hoffmann <https://github.com/iamolivinius>
|
|
4
|
+
// Felipe Ochoa <https://github.com/felipeochoa>
|
|
5
|
+
// Chris Barth <https://github.com/cjbarth>
|
|
6
|
+
// Linus Unnebäck <https://github.com/LinusU>
|
|
7
|
+
// Christoph Tavan <https://github.com/ctavan>
|
|
8
|
+
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
9
|
+
// TypeScript Version: 2.8
|
|
10
|
+
|
|
11
|
+
// disable automatic export
|
|
12
|
+
export {};
|
|
13
|
+
|
|
14
|
+
// Uses ArrayLike to admit Unit8 and co.
|
|
15
|
+
type OutputBuffer = ArrayLike<number>;
|
|
16
|
+
type InputBuffer = ArrayLike<number>;
|
|
17
|
+
|
|
18
|
+
interface RandomOptions {
|
|
19
|
+
random?: InputBuffer | undefined;
|
|
20
|
+
}
|
|
21
|
+
interface RngOptions {
|
|
22
|
+
rng?: (() => InputBuffer) | undefined;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
interface V1BaseOptions {
|
|
26
|
+
node?: InputBuffer | undefined;
|
|
27
|
+
clockseq?: number | undefined;
|
|
28
|
+
msecs?: number | Date | undefined;
|
|
29
|
+
nsecs?: number | undefined;
|
|
30
|
+
}
|
|
31
|
+
interface V1RandomOptions extends V1BaseOptions, RandomOptions {}
|
|
32
|
+
interface V1RngOptions extends V1BaseOptions, RngOptions {}
|
|
33
|
+
|
|
34
|
+
export type V1Options = V1RandomOptions | V1RngOptions;
|
|
35
|
+
export type V4Options = RandomOptions | RngOptions;
|
|
36
|
+
|
|
37
|
+
type v1String = (options?: V1Options) => string;
|
|
38
|
+
type v1Buffer = <T extends OutputBuffer>(options: V1Options | null | undefined, buffer: T, offset?: number) => T;
|
|
39
|
+
type v1 = v1Buffer & v1String;
|
|
40
|
+
|
|
41
|
+
type v4String = (options?: V4Options) => string;
|
|
42
|
+
type v4Buffer = <T extends OutputBuffer>(options: V4Options | null | undefined, buffer: T, offset?: number) => T;
|
|
43
|
+
type v4 = v4Buffer & v4String;
|
|
44
|
+
|
|
45
|
+
type v3String = (name: string | InputBuffer, namespace: string | InputBuffer) => string;
|
|
46
|
+
type v3Buffer = <T extends OutputBuffer>(name: string | InputBuffer, namespace: string | InputBuffer, buffer: T, offset?: number) => T;
|
|
47
|
+
interface v3Static {
|
|
48
|
+
// https://github.com/uuidjs/uuid/blob/master/src/v35.js#L22
|
|
49
|
+
DNS: string;
|
|
50
|
+
// https://github.com/uuidjs/uuid/blob/master/src/v35.js#L23
|
|
51
|
+
URL: string;
|
|
52
|
+
}
|
|
53
|
+
type v3 = v3Buffer & v3String & v3Static;
|
|
54
|
+
|
|
55
|
+
type v5String = (name: string | InputBuffer, namespace: string | InputBuffer) => string;
|
|
56
|
+
type v5Buffer = <T extends OutputBuffer>(name: string | InputBuffer, namespace: string | InputBuffer, buffer: T, offset?: number) => T;
|
|
57
|
+
interface v5Static {
|
|
58
|
+
// https://github.com/uuidjs/uuid/blob/master/src/v35.js#L22
|
|
59
|
+
DNS: string;
|
|
60
|
+
// https://github.com/uuidjs/uuid/blob/master/src/v35.js#L23
|
|
61
|
+
URL: string;
|
|
62
|
+
}
|
|
63
|
+
type v5 = v5Buffer & v5String & v5Static;
|
|
64
|
+
|
|
65
|
+
type NIL = string;
|
|
66
|
+
|
|
67
|
+
type parse = (uuid: string) => OutputBuffer;
|
|
68
|
+
type stringify = (buffer: InputBuffer, offset?: number) => string;
|
|
69
|
+
type validate = (uuid: string) => boolean;
|
|
70
|
+
type version = (uuid: string) => number;
|
|
71
|
+
|
|
72
|
+
export const NIL: NIL;
|
|
73
|
+
export const parse: parse;
|
|
74
|
+
export const stringify: stringify;
|
|
75
|
+
export const v1: v1;
|
|
76
|
+
export const v3: v3;
|
|
77
|
+
export const v4: v4;
|
|
78
|
+
export const v5: v5;
|
|
79
|
+
export const validate: validate;
|
|
80
|
+
export const version: version;
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@types/uuid",
|
|
3
|
+
"version": "8.3.4",
|
|
4
|
+
"description": "TypeScript definitions for uuid",
|
|
5
|
+
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/uuid",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"contributors": [
|
|
8
|
+
{
|
|
9
|
+
"name": "Oliver Hoffmann",
|
|
10
|
+
"url": "https://github.com/iamolivinius",
|
|
11
|
+
"githubUsername": "iamolivinius"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"name": "Felipe Ochoa",
|
|
15
|
+
"url": "https://github.com/felipeochoa",
|
|
16
|
+
"githubUsername": "felipeochoa"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"name": "Chris Barth",
|
|
20
|
+
"url": "https://github.com/cjbarth",
|
|
21
|
+
"githubUsername": "cjbarth"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"name": "Linus Unnebäck",
|
|
25
|
+
"url": "https://github.com/LinusU",
|
|
26
|
+
"githubUsername": "LinusU"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"name": "Christoph Tavan",
|
|
30
|
+
"url": "https://github.com/ctavan",
|
|
31
|
+
"githubUsername": "ctavan"
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
"main": "",
|
|
35
|
+
"types": "index.d.ts",
|
|
36
|
+
"repository": {
|
|
37
|
+
"type": "git",
|
|
38
|
+
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
|
|
39
|
+
"directory": "types/uuid"
|
|
40
|
+
},
|
|
41
|
+
"scripts": {},
|
|
42
|
+
"dependencies": {},
|
|
43
|
+
"typesPublisherContentHash": "7bd9cd358e9e4357393eb0163c44f44dc265ab936b456743af6ed3d0d0ac644f",
|
|
44
|
+
"typeScriptVersion": "3.8",
|
|
45
|
+
"exports": {
|
|
46
|
+
"./package.json": "./package.json",
|
|
47
|
+
".": {
|
|
48
|
+
"types": {
|
|
49
|
+
"import": "./index.d.mts",
|
|
50
|
+
"default": "./index.d.ts"
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2010-2020 Robert Kieffer and other contributors
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
6
|
+
|
|
7
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8
|
+
|
|
9
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|