diff --git a/examples/serverless/package.json b/examples/serverless/package.json index 4818bfb..7dc735e 100644 --- a/examples/serverless/package.json +++ b/examples/serverless/package.json @@ -6,20 +6,22 @@ "author": "Alexander P. Cerutti ", "license": "ISC", "main": "src/index.js", + "type": "module", "scripts": { "clear:deps": "rm -rf node_modules", - "example": "pnpm serverless@3 offline --host 0.0.0.0; :'specifying host due to WSL limits'" + "example": "pnpm serverless offline --host 0.0.0.0; :'specifying host due to WSL limits'" }, "dependencies": { - "aws-sdk": "^2.1691.0", - "tslib": "^2.7.0", + "aws-sdk": "^2.1692.0", + "tslib": "^2.8.1", "passkit-generator": "workspace:*" }, "devDependencies": { - "@types/aws-lambda": "^8.10.145", + "@types/aws-lambda": "^8.10.147", "serverless-offline": "^8.8.1", "serverless-plugin-typescript": "^2.1.5", "serverless-s3-local": "^0.8.5", - "typescript": "^5.7.3" + "typescript": "^5.7.3", + "@types/node": "^18" } } diff --git a/examples/serverless/src/functions/barcodes.ts b/examples/serverless/src/functions/barcodes.ts index 8a5d423..3a1397c 100644 --- a/examples/serverless/src/functions/barcodes.ts +++ b/examples/serverless/src/functions/barcodes.ts @@ -1,9 +1,9 @@ import { ALBEvent, ALBResult } from "aws-lambda"; -import { PKPass } from "../../../../lib"; +import { PKPass } from "passkit-generator"; import { throwClientErrorWithoutModelName, createPassGenerator, -} from "../shared"; +} from "../shared.js"; /** * Lambda for barcodes example diff --git a/examples/serverless/src/functions/expirationDate.ts b/examples/serverless/src/functions/expirationDate.ts index 2a62c2d..1d954fa 100644 --- a/examples/serverless/src/functions/expirationDate.ts +++ b/examples/serverless/src/functions/expirationDate.ts @@ -3,7 +3,7 @@ import { PKPass } from "passkit-generator"; import { throwClientErrorWithoutModelName, createPassGenerator, -} from "../shared"; +} from "../shared.js"; /** * Lambda for expirationDate example diff --git a/examples/serverless/src/functions/fields.ts b/examples/serverless/src/functions/fields.ts index 5d9a6c9..e9b5c24 100644 --- a/examples/serverless/src/functions/fields.ts +++ b/examples/serverless/src/functions/fields.ts @@ -1,6 +1,6 @@ import { ALBEvent, ALBResult } from "aws-lambda"; import { PKPass } from "passkit-generator"; -import { createPassGenerator } from "../shared"; +import { createPassGenerator } from "../shared.js"; /** * Lambda for fields example diff --git a/examples/serverless/src/functions/index.ts b/examples/serverless/src/functions/index.ts index 308665e..3de1825 100644 --- a/examples/serverless/src/functions/index.ts +++ b/examples/serverless/src/functions/index.ts @@ -1,6 +1,6 @@ -export * from "./barcodes"; -export * from "./expirationDate"; -export * from "./fields"; -export * from "./localize"; -export * from "./pkpasses"; -export * from "./scratch"; +export * from "./barcodes.js"; +export * from "./expirationDate.js"; +export * from "./fields.js"; +export * from "./localize.js"; +export * from "./pkpasses.js"; +export * from "./scratch.js"; diff --git a/examples/serverless/src/functions/localize.ts b/examples/serverless/src/functions/localize.ts index a8ba895..92bce2e 100644 --- a/examples/serverless/src/functions/localize.ts +++ b/examples/serverless/src/functions/localize.ts @@ -1,7 +1,7 @@ import { throwClientErrorWithoutModelName, createPassGenerator, -} from "../shared"; +} from "../shared.js"; import type { ALBEvent, ALBResult } from "aws-lambda"; import type { PKPass } from "passkit-generator"; diff --git a/examples/serverless/src/functions/pkpasses.ts b/examples/serverless/src/functions/pkpasses.ts index e2824f9..e7f462f 100644 --- a/examples/serverless/src/functions/pkpasses.ts +++ b/examples/serverless/src/functions/pkpasses.ts @@ -37,7 +37,7 @@ import { getS3Instance, getRandomColorPart, throwClientErrorWithoutModelName, -} from "../shared"; +} from "../shared.js"; import config from "../../config.json"; /** diff --git a/examples/serverless/src/functions/scratch.ts b/examples/serverless/src/functions/scratch.ts index 329fcda..300ea12 100644 --- a/examples/serverless/src/functions/scratch.ts +++ b/examples/serverless/src/functions/scratch.ts @@ -4,7 +4,7 @@ import { createPassGenerator, getRandomColorPart, getSpecificFileInModel, -} from "../shared"; +} from "../shared.js"; /** * Lambda for scratch example diff --git a/examples/serverless/src/index.ts b/examples/serverless/src/index.ts index 5f286ff..96322e2 100644 --- a/examples/serverless/src/index.ts +++ b/examples/serverless/src/index.ts @@ -1 +1 @@ -export * from "./functions"; +export * from "./functions/index.js"; diff --git a/examples/serverless/tsconfig.json b/examples/serverless/tsconfig.json index ab69fed..6adcee0 100644 --- a/examples/serverless/tsconfig.json +++ b/examples/serverless/tsconfig.json @@ -2,9 +2,7 @@ "extends": "../../tsconfig.json", "compilerOptions": { "target": "ESNext", - "module": "CommonJS", "outDir": "build", - "moduleResolution": "node", "resolveJsonModule": true }, "exclude": ["node_modules"] diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 1889d1a..9a07d92 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -124,18 +124,21 @@ importers: examples/serverless: dependencies: aws-sdk: - specifier: ^2.1691.0 + specifier: ^2.1692.0 version: 2.1692.0 passkit-generator: specifier: workspace:* version: link:../.. tslib: - specifier: ^2.7.0 - version: 2.7.0 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/aws-lambda': - specifier: ^8.10.145 + specifier: ^8.10.147 version: 8.10.147 + '@types/node': + specifier: ^18 + version: 18.19.70 serverless-offline: specifier: ^8.8.1 version: 8.8.1(encoding@0.1.13)(serverless@3.40.0(encoding@0.1.13)) @@ -1709,6 +1712,9 @@ packages: '@types/node@16.11.26': resolution: {integrity: sha512-GZ7bu5A6+4DtG7q9GsoHXy3ALcgeIHP4NnL0Vv2wu0uUB/yQex26v0tf6/na1mm0+bS9Uw+0DFex7aaKr2qawQ==} + '@types/node@18.19.70': + resolution: {integrity: sha512-RE+K0+KZoEpDUbGGctnGdkrLFwi1eYKTlIHNl2Um98mUkGsm1u2Ff6Ltd0e8DktTtC98uy7rSj+hO8t/QuLoVQ==} + '@types/qs@6.9.17': resolution: {integrity: sha512-rX4/bPcfmvxHDv0XjfJELTTr+iB+tn032nPILqHm5wbthUUUuVtNGGqzhya9XUxjTP8Fpr0qYgSZZKxGY++svQ==} @@ -5760,6 +5766,9 @@ packages: tslib@2.7.0: resolution: {integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==} + tslib@2.8.1: + resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} + tsscmp@1.0.6: resolution: {integrity: sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==} engines: {node: '>=0.6.x'} @@ -5859,6 +5868,9 @@ packages: underscore@1.13.7: resolution: {integrity: sha512-GMXzWtsc57XAtguZgaQViUOzs0KTkk8ojr3/xAxXLITqf/3EMwxC0inyETfDFjH/Krbhuep0HNbbjI9i/q3F3g==} + undici-types@5.26.5: + resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} + undici@5.28.4: resolution: {integrity: sha512-72RFADWFqKmUb2hmmvNODKL3p9hcB6Gt2DOQMis1SEBaV6a4MH8soBvzg+95CYhCKPFedut2JY9bMfrDl9D23g==} engines: {node: '>=14.0'} @@ -6211,13 +6223,13 @@ snapshots: dependencies: '@aws-crypto/util': 5.2.0 '@aws-sdk/types': 3.723.0 - tslib: 2.7.0 + tslib: 2.8.1 '@aws-crypto/crc32c@5.2.0': dependencies: '@aws-crypto/util': 5.2.0 '@aws-sdk/types': 3.723.0 - tslib: 2.7.0 + tslib: 2.8.1 '@aws-crypto/sha1-browser@5.2.0': dependencies: @@ -6226,7 +6238,7 @@ snapshots: '@aws-sdk/types': 3.723.0 '@aws-sdk/util-locate-window': 3.723.0 '@smithy/util-utf8': 2.3.0 - tslib: 2.7.0 + tslib: 2.8.1 '@aws-crypto/sha256-browser@5.2.0': dependencies: @@ -6236,23 +6248,23 @@ snapshots: '@aws-sdk/types': 3.723.0 '@aws-sdk/util-locate-window': 3.723.0 '@smithy/util-utf8': 2.3.0 - tslib: 2.7.0 + tslib: 2.8.1 '@aws-crypto/sha256-js@5.2.0': dependencies: '@aws-crypto/util': 5.2.0 '@aws-sdk/types': 3.723.0 - tslib: 2.7.0 + tslib: 2.8.1 '@aws-crypto/supports-web-crypto@5.2.0': dependencies: - tslib: 2.7.0 + tslib: 2.8.1 '@aws-crypto/util@5.2.0': dependencies: '@aws-sdk/types': 3.723.0 '@smithy/util-utf8': 2.3.0 - tslib: 2.7.0 + tslib: 2.8.1 '@aws-sdk/client-api-gateway@3.726.1': dependencies: @@ -6298,7 +6310,7 @@ snapshots: '@smithy/util-retry': 4.0.1 '@smithy/util-stream': 4.0.1 '@smithy/util-utf8': 4.0.0 - tslib: 2.7.0 + tslib: 2.8.1 transitivePeerDependencies: - aws-crt @@ -6346,7 +6358,7 @@ snapshots: '@smithy/util-utf8': 4.0.0 '@smithy/util-waiter': 4.0.2 '@types/uuid': 9.0.8 - tslib: 2.7.0 + tslib: 2.8.1 uuid: 9.0.1 transitivePeerDependencies: - aws-crt @@ -6393,7 +6405,7 @@ snapshots: '@smithy/util-middleware': 4.0.1 '@smithy/util-retry': 4.0.1 '@smithy/util-utf8': 4.0.0 - tslib: 2.7.0 + tslib: 2.8.1 transitivePeerDependencies: - aws-crt @@ -6440,7 +6452,7 @@ snapshots: '@smithy/util-middleware': 4.0.1 '@smithy/util-retry': 4.0.1 '@smithy/util-utf8': 4.0.0 - tslib: 2.7.0 + tslib: 2.8.1 transitivePeerDependencies: - aws-crt @@ -6487,7 +6499,7 @@ snapshots: '@smithy/util-retry': 4.0.1 '@smithy/util-utf8': 4.0.0 '@smithy/util-waiter': 4.0.2 - tslib: 2.7.0 + tslib: 2.8.1 transitivePeerDependencies: - aws-crt @@ -6538,7 +6550,7 @@ snapshots: '@smithy/util-stream': 4.0.1 '@smithy/util-utf8': 4.0.0 '@smithy/util-waiter': 4.0.2 - tslib: 2.7.0 + tslib: 2.8.1 transitivePeerDependencies: - aws-crt @@ -6601,7 +6613,7 @@ snapshots: '@smithy/util-stream': 4.0.1 '@smithy/util-utf8': 4.0.0 '@smithy/util-waiter': 4.0.2 - tslib: 2.7.0 + tslib: 2.8.1 transitivePeerDependencies: - aws-crt @@ -6646,7 +6658,7 @@ snapshots: '@smithy/util-middleware': 4.0.1 '@smithy/util-retry': 4.0.1 '@smithy/util-utf8': 4.0.0 - tslib: 2.7.0 + tslib: 2.8.1 transitivePeerDependencies: - aws-crt @@ -6689,7 +6701,7 @@ snapshots: '@smithy/util-middleware': 4.0.1 '@smithy/util-retry': 4.0.1 '@smithy/util-utf8': 4.0.0 - tslib: 2.7.0 + tslib: 2.8.1 transitivePeerDependencies: - aws-crt @@ -6734,7 +6746,7 @@ snapshots: '@smithy/util-middleware': 4.0.1 '@smithy/util-retry': 4.0.1 '@smithy/util-utf8': 4.0.0 - tslib: 2.7.0 + tslib: 2.8.1 transitivePeerDependencies: - aws-crt @@ -6750,7 +6762,7 @@ snapshots: '@smithy/types': 4.1.0 '@smithy/util-middleware': 4.0.1 fast-xml-parser: 4.4.1 - tslib: 2.7.0 + tslib: 2.8.1 '@aws-sdk/credential-provider-env@3.723.0': dependencies: @@ -6758,7 +6770,7 @@ snapshots: '@aws-sdk/types': 3.723.0 '@smithy/property-provider': 4.0.1 '@smithy/types': 4.1.0 - tslib: 2.7.0 + tslib: 2.8.1 '@aws-sdk/credential-provider-http@3.723.0': dependencies: @@ -6771,7 +6783,7 @@ snapshots: '@smithy/smithy-client': 4.1.0 '@smithy/types': 4.1.0 '@smithy/util-stream': 4.0.1 - tslib: 2.7.0 + tslib: 2.8.1 '@aws-sdk/credential-provider-ini@3.726.0(@aws-sdk/client-sso-oidc@3.726.0(@aws-sdk/client-sts@3.726.1))(@aws-sdk/client-sts@3.726.1)': dependencies: @@ -6787,7 +6799,7 @@ snapshots: '@smithy/property-provider': 4.0.1 '@smithy/shared-ini-file-loader': 4.0.1 '@smithy/types': 4.1.0 - tslib: 2.7.0 + tslib: 2.8.1 transitivePeerDependencies: - '@aws-sdk/client-sso-oidc' - aws-crt @@ -6805,7 +6817,7 @@ snapshots: '@smithy/property-provider': 4.0.1 '@smithy/shared-ini-file-loader': 4.0.1 '@smithy/types': 4.1.0 - tslib: 2.7.0 + tslib: 2.8.1 transitivePeerDependencies: - '@aws-sdk/client-sso-oidc' - '@aws-sdk/client-sts' @@ -6818,7 +6830,7 @@ snapshots: '@smithy/property-provider': 4.0.1 '@smithy/shared-ini-file-loader': 4.0.1 '@smithy/types': 4.1.0 - tslib: 2.7.0 + tslib: 2.8.1 '@aws-sdk/credential-provider-sso@3.726.0(@aws-sdk/client-sso-oidc@3.726.0(@aws-sdk/client-sts@3.726.1))': dependencies: @@ -6829,7 +6841,7 @@ snapshots: '@smithy/property-provider': 4.0.1 '@smithy/shared-ini-file-loader': 4.0.1 '@smithy/types': 4.1.0 - tslib: 2.7.0 + tslib: 2.8.1 transitivePeerDependencies: - '@aws-sdk/client-sso-oidc' - aws-crt @@ -6841,7 +6853,7 @@ snapshots: '@aws-sdk/types': 3.723.0 '@smithy/property-provider': 4.0.1 '@smithy/types': 4.1.0 - tslib: 2.7.0 + tslib: 2.8.1 '@aws-sdk/middleware-bucket-endpoint@3.726.0': dependencies: @@ -6851,14 +6863,14 @@ snapshots: '@smithy/protocol-http': 5.0.1 '@smithy/types': 4.1.0 '@smithy/util-config-provider': 4.0.0 - tslib: 2.7.0 + tslib: 2.8.1 '@aws-sdk/middleware-expect-continue@3.723.0': dependencies: '@aws-sdk/types': 3.723.0 '@smithy/protocol-http': 5.0.1 '@smithy/types': 4.1.0 - tslib: 2.7.0 + tslib: 2.8.1 '@aws-sdk/middleware-flexible-checksums@3.723.0': dependencies: @@ -6874,40 +6886,40 @@ snapshots: '@smithy/util-middleware': 4.0.1 '@smithy/util-stream': 4.0.1 '@smithy/util-utf8': 4.0.0 - tslib: 2.7.0 + tslib: 2.8.1 '@aws-sdk/middleware-host-header@3.723.0': dependencies: '@aws-sdk/types': 3.723.0 '@smithy/protocol-http': 5.0.1 '@smithy/types': 4.1.0 - tslib: 2.7.0 + tslib: 2.8.1 '@aws-sdk/middleware-location-constraint@3.723.0': dependencies: '@aws-sdk/types': 3.723.0 '@smithy/types': 4.1.0 - tslib: 2.7.0 + tslib: 2.8.1 '@aws-sdk/middleware-logger@3.723.0': dependencies: '@aws-sdk/types': 3.723.0 '@smithy/types': 4.1.0 - tslib: 2.7.0 + tslib: 2.8.1 '@aws-sdk/middleware-recursion-detection@3.723.0': dependencies: '@aws-sdk/types': 3.723.0 '@smithy/protocol-http': 5.0.1 '@smithy/types': 4.1.0 - tslib: 2.7.0 + tslib: 2.8.1 '@aws-sdk/middleware-sdk-api-gateway@3.723.0': dependencies: '@aws-sdk/types': 3.723.0 '@smithy/protocol-http': 5.0.1 '@smithy/types': 4.1.0 - tslib: 2.7.0 + tslib: 2.8.1 '@aws-sdk/middleware-sdk-s3@3.723.0': dependencies: @@ -6924,13 +6936,13 @@ snapshots: '@smithy/util-middleware': 4.0.1 '@smithy/util-stream': 4.0.1 '@smithy/util-utf8': 4.0.0 - tslib: 2.7.0 + tslib: 2.8.1 '@aws-sdk/middleware-ssec@3.723.0': dependencies: '@aws-sdk/types': 3.723.0 '@smithy/types': 4.1.0 - tslib: 2.7.0 + tslib: 2.8.1 '@aws-sdk/middleware-user-agent@3.726.0': dependencies: @@ -6940,7 +6952,7 @@ snapshots: '@smithy/core': 3.1.0 '@smithy/protocol-http': 5.0.1 '@smithy/types': 4.1.0 - tslib: 2.7.0 + tslib: 2.8.1 '@aws-sdk/region-config-resolver@3.723.0': dependencies: @@ -6949,7 +6961,7 @@ snapshots: '@smithy/types': 4.1.0 '@smithy/util-config-provider': 4.0.0 '@smithy/util-middleware': 4.0.1 - tslib: 2.7.0 + tslib: 2.8.1 '@aws-sdk/signature-v4-multi-region@3.723.0': dependencies: @@ -6958,7 +6970,7 @@ snapshots: '@smithy/protocol-http': 5.0.1 '@smithy/signature-v4': 5.0.1 '@smithy/types': 4.1.0 - tslib: 2.7.0 + tslib: 2.8.1 '@aws-sdk/token-providers@3.723.0(@aws-sdk/client-sso-oidc@3.726.0(@aws-sdk/client-sts@3.726.1))': dependencies: @@ -6967,34 +6979,34 @@ snapshots: '@smithy/property-provider': 4.0.1 '@smithy/shared-ini-file-loader': 4.0.1 '@smithy/types': 4.1.0 - tslib: 2.7.0 + tslib: 2.8.1 '@aws-sdk/types@3.723.0': dependencies: '@smithy/types': 4.1.0 - tslib: 2.7.0 + tslib: 2.8.1 '@aws-sdk/util-arn-parser@3.723.0': dependencies: - tslib: 2.7.0 + tslib: 2.8.1 '@aws-sdk/util-endpoints@3.726.0': dependencies: '@aws-sdk/types': 3.723.0 '@smithy/types': 4.1.0 '@smithy/util-endpoints': 3.0.1 - tslib: 2.7.0 + tslib: 2.8.1 '@aws-sdk/util-locate-window@3.723.0': dependencies: - tslib: 2.7.0 + tslib: 2.8.1 '@aws-sdk/util-user-agent-browser@3.723.0': dependencies: '@aws-sdk/types': 3.723.0 '@smithy/types': 4.1.0 bowser: 2.11.0 - tslib: 2.7.0 + tslib: 2.8.1 '@aws-sdk/util-user-agent-node@3.726.0': dependencies: @@ -7002,12 +7014,12 @@ snapshots: '@aws-sdk/types': 3.723.0 '@smithy/node-config-provider': 4.0.1 '@smithy/types': 4.1.0 - tslib: 2.7.0 + tslib: 2.8.1 '@aws-sdk/xml-builder@3.723.0': dependencies: '@smithy/types': 4.1.0 - tslib: 2.7.0 + tslib: 2.8.1 '@babel/code-frame@7.25.7': dependencies: @@ -7407,7 +7419,7 @@ snapshots: '@firebase/component@0.6.4': dependencies: '@firebase/util': 1.9.3 - tslib: 2.7.0 + tslib: 2.8.1 '@firebase/database-compat@0.3.4': dependencies: @@ -7416,7 +7428,7 @@ snapshots: '@firebase/database-types': 0.10.4 '@firebase/logger': 0.4.0 '@firebase/util': 1.9.3 - tslib: 2.7.0 + tslib: 2.8.1 '@firebase/database-types@0.10.4': dependencies: @@ -7430,15 +7442,15 @@ snapshots: '@firebase/logger': 0.4.0 '@firebase/util': 1.9.3 faye-websocket: 0.11.4 - tslib: 2.7.0 + tslib: 2.8.1 '@firebase/logger@0.4.0': dependencies: - tslib: 2.7.0 + tslib: 2.8.1 '@firebase/util@1.9.3': dependencies: - tslib: 2.7.0 + tslib: 2.8.1 '@google-cloud/firestore@6.8.0(encoding@0.1.13)': dependencies: @@ -8297,16 +8309,16 @@ snapshots: '@smithy/abort-controller@4.0.1': dependencies: '@smithy/types': 4.1.0 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/chunked-blob-reader-native@4.0.0': dependencies: '@smithy/util-base64': 4.0.0 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/chunked-blob-reader@5.0.0': dependencies: - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/config-resolver@4.0.1': dependencies: @@ -8314,7 +8326,7 @@ snapshots: '@smithy/types': 4.1.0 '@smithy/util-config-provider': 4.0.0 '@smithy/util-middleware': 4.0.1 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/core@3.1.0': dependencies: @@ -8325,7 +8337,7 @@ snapshots: '@smithy/util-middleware': 4.0.1 '@smithy/util-stream': 4.0.1 '@smithy/util-utf8': 4.0.0 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/credential-provider-imds@4.0.1': dependencies: @@ -8333,37 +8345,37 @@ snapshots: '@smithy/property-provider': 4.0.1 '@smithy/types': 4.1.0 '@smithy/url-parser': 4.0.1 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/eventstream-codec@4.0.1': dependencies: '@aws-crypto/crc32': 5.2.0 '@smithy/types': 4.1.0 '@smithy/util-hex-encoding': 4.0.0 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/eventstream-serde-browser@4.0.1': dependencies: '@smithy/eventstream-serde-universal': 4.0.1 '@smithy/types': 4.1.0 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/eventstream-serde-config-resolver@4.0.1': dependencies: '@smithy/types': 4.1.0 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/eventstream-serde-node@4.0.1': dependencies: '@smithy/eventstream-serde-universal': 4.0.1 '@smithy/types': 4.1.0 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/eventstream-serde-universal@4.0.1': dependencies: '@smithy/eventstream-codec': 4.0.1 '@smithy/types': 4.1.0 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/fetch-http-handler@5.0.1': dependencies: @@ -8371,52 +8383,52 @@ snapshots: '@smithy/querystring-builder': 4.0.1 '@smithy/types': 4.1.0 '@smithy/util-base64': 4.0.0 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/hash-blob-browser@4.0.1': dependencies: '@smithy/chunked-blob-reader': 5.0.0 '@smithy/chunked-blob-reader-native': 4.0.0 '@smithy/types': 4.1.0 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/hash-node@4.0.1': dependencies: '@smithy/types': 4.1.0 '@smithy/util-buffer-from': 4.0.0 '@smithy/util-utf8': 4.0.0 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/hash-stream-node@4.0.1': dependencies: '@smithy/types': 4.1.0 '@smithy/util-utf8': 4.0.0 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/invalid-dependency@4.0.1': dependencies: '@smithy/types': 4.1.0 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/is-array-buffer@2.2.0': dependencies: - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/is-array-buffer@4.0.0': dependencies: - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/md5-js@4.0.1': dependencies: '@smithy/types': 4.1.0 '@smithy/util-utf8': 4.0.0 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/middleware-content-length@4.0.1': dependencies: '@smithy/protocol-http': 5.0.1 '@smithy/types': 4.1.0 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/middleware-endpoint@4.0.1': dependencies: @@ -8427,7 +8439,7 @@ snapshots: '@smithy/types': 4.1.0 '@smithy/url-parser': 4.0.1 '@smithy/util-middleware': 4.0.1 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/middleware-retry@4.0.1': dependencies: @@ -8438,25 +8450,25 @@ snapshots: '@smithy/types': 4.1.0 '@smithy/util-middleware': 4.0.1 '@smithy/util-retry': 4.0.1 - tslib: 2.7.0 + tslib: 2.8.1 uuid: 9.0.1 '@smithy/middleware-serde@4.0.1': dependencies: '@smithy/types': 4.1.0 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/middleware-stack@4.0.1': dependencies: '@smithy/types': 4.1.0 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/node-config-provider@4.0.1': dependencies: '@smithy/property-provider': 4.0.1 '@smithy/shared-ini-file-loader': 4.0.1 '@smithy/types': 4.1.0 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/node-http-handler@4.0.1': dependencies: @@ -8464,28 +8476,28 @@ snapshots: '@smithy/protocol-http': 5.0.1 '@smithy/querystring-builder': 4.0.1 '@smithy/types': 4.1.0 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/property-provider@4.0.1': dependencies: '@smithy/types': 4.1.0 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/protocol-http@5.0.1': dependencies: '@smithy/types': 4.1.0 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/querystring-builder@4.0.1': dependencies: '@smithy/types': 4.1.0 '@smithy/util-uri-escape': 4.0.0 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/querystring-parser@4.0.1': dependencies: '@smithy/types': 4.1.0 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/service-error-classification@4.0.1': dependencies: @@ -8494,7 +8506,7 @@ snapshots: '@smithy/shared-ini-file-loader@4.0.1': dependencies: '@smithy/types': 4.1.0 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/signature-v4@5.0.1': dependencies: @@ -8505,7 +8517,7 @@ snapshots: '@smithy/util-middleware': 4.0.1 '@smithy/util-uri-escape': 4.0.0 '@smithy/util-utf8': 4.0.0 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/smithy-client@4.1.0': dependencies: @@ -8515,45 +8527,45 @@ snapshots: '@smithy/protocol-http': 5.0.1 '@smithy/types': 4.1.0 '@smithy/util-stream': 4.0.1 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/types@4.1.0': dependencies: - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/url-parser@4.0.1': dependencies: '@smithy/querystring-parser': 4.0.1 '@smithy/types': 4.1.0 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/util-base64@4.0.0': dependencies: '@smithy/util-buffer-from': 4.0.0 '@smithy/util-utf8': 4.0.0 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/util-body-length-browser@4.0.0': dependencies: - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/util-body-length-node@4.0.0': dependencies: - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/util-buffer-from@2.2.0': dependencies: '@smithy/is-array-buffer': 2.2.0 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/util-buffer-from@4.0.0': dependencies: '@smithy/is-array-buffer': 4.0.0 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/util-config-provider@4.0.0': dependencies: - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/util-defaults-mode-browser@4.0.1': dependencies: @@ -8561,7 +8573,7 @@ snapshots: '@smithy/smithy-client': 4.1.0 '@smithy/types': 4.1.0 bowser: 2.11.0 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/util-defaults-mode-node@4.0.1': dependencies: @@ -8571,28 +8583,28 @@ snapshots: '@smithy/property-provider': 4.0.1 '@smithy/smithy-client': 4.1.0 '@smithy/types': 4.1.0 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/util-endpoints@3.0.1': dependencies: '@smithy/node-config-provider': 4.0.1 '@smithy/types': 4.1.0 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/util-hex-encoding@4.0.0': dependencies: - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/util-middleware@4.0.1': dependencies: '@smithy/types': 4.1.0 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/util-retry@4.0.1': dependencies: '@smithy/service-error-classification': 4.0.1 '@smithy/types': 4.1.0 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/util-stream@4.0.1': dependencies: @@ -8603,27 +8615,27 @@ snapshots: '@smithy/util-buffer-from': 4.0.0 '@smithy/util-hex-encoding': 4.0.0 '@smithy/util-utf8': 4.0.0 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/util-uri-escape@4.0.0': dependencies: - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/util-utf8@2.3.0': dependencies: '@smithy/util-buffer-from': 2.2.0 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/util-utf8@4.0.0': dependencies: '@smithy/util-buffer-from': 4.0.0 - tslib: 2.7.0 + tslib: 2.8.1 '@smithy/util-waiter@4.0.2': dependencies: '@smithy/abort-controller': 4.0.1 '@smithy/types': 4.1.0 - tslib: 2.7.0 + tslib: 2.8.1 '@szmarczak/http-timer@4.0.6': dependencies: @@ -8736,7 +8748,7 @@ snapshots: '@types/glob@7.2.0': dependencies: '@types/minimatch': 5.1.2 - '@types/node': 16.11.26 + '@types/node': 18.19.70 '@types/graceful-fs@4.1.9': dependencies: @@ -8789,6 +8801,10 @@ snapshots: '@types/node@16.11.26': {} + '@types/node@18.19.70': + dependencies: + undici-types: 5.26.5 + '@types/qs@6.9.17': {} '@types/range-parser@1.2.7': {} @@ -9011,7 +9027,7 @@ snapshots: ast-types@0.13.4: dependencies: - tslib: 2.7.0 + tslib: 2.8.1 async-lock@1.3.2: {} @@ -9249,7 +9265,7 @@ snapshots: buffer@4.9.2: dependencies: base64-js: 1.5.1 - ieee754: 1.1.13 + ieee754: 1.2.1 isarray: 1.0.0 buffer@5.7.1: @@ -9334,7 +9350,7 @@ snapshots: capnp-ts@0.7.0: dependencies: debug: 4.3.7(supports-color@8.1.1) - tslib: 2.7.0 + tslib: 2.8.1 transitivePeerDependencies: - supports-color @@ -9717,10 +9733,6 @@ snapshots: dependencies: ms: 2.1.2 - debug@4.3.7: - dependencies: - ms: 2.1.3 - debug@4.3.7(supports-color@8.1.1): dependencies: ms: 2.1.3 @@ -10357,7 +10369,7 @@ snapshots: fast-url-parser@1.1.3: dependencies: - punycode: 1.3.2 + punycode: 1.4.1 fast-xml-parser@3.21.1: dependencies: @@ -12907,8 +12919,7 @@ snapshots: punycode@1.3.2: {} - punycode@1.4.1: - optional: true + punycode@1.4.1: {} punycode@2.3.1: {} @@ -13162,7 +13173,7 @@ snapshots: rxjs@7.8.1: dependencies: - tslib: 2.7.0 + tslib: 2.8.1 s3rver@3.7.1: dependencies: @@ -13248,7 +13259,7 @@ snapshots: send@1.1.0: dependencies: - debug: 4.3.7 + debug: 4.3.7(supports-color@8.1.1) destroy: 1.2.0 encodeurl: 2.0.0 escape-html: 1.0.3 @@ -13923,6 +13934,8 @@ snapshots: tslib@2.7.0: {} + tslib@2.8.1: {} + tsscmp@1.0.6: {} tsx@4.19.2: @@ -14035,6 +14048,8 @@ snapshots: underscore@1.13.7: {} + undici-types@5.26.5: {} + undici@5.28.4: dependencies: '@fastify/busboy': 2.1.1