whereto-bike 0.0.1 → 0.0.3
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/aws/video-agent/AGENTS.md +93 -0
- package/aws/video-agent/function.zip +0 -0
- package/aws/video-agent/handler.mjs +483 -0
- package/aws/video-agent/handler.test.mjs +248 -0
- package/aws/video-agent/node_modules/.package-lock.json +1267 -0
- package/aws/video-agent/node_modules/@aws/lambda-invoke-store/LICENSE +175 -0
- package/aws/video-agent/node_modules/@aws/lambda-invoke-store/README.md +198 -0
- package/aws/video-agent/node_modules/@aws/lambda-invoke-store/dist-cjs/invoke-store.js +119 -0
- package/aws/video-agent/node_modules/@aws/lambda-invoke-store/dist-es/invoke-store.js +117 -0
- package/aws/video-agent/node_modules/@aws/lambda-invoke-store/dist-types/invoke-store.benchmark.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws/lambda-invoke-store/dist-types/invoke-store.d.ts +49 -0
- package/aws/video-agent/node_modules/@aws/lambda-invoke-store/package.json +55 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/CHANGELOG.md +118 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/LICENSE +202 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/README.md +31 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/build/main/constants.d.ts +10 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/build/main/constants.js +43 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/build/main/constants.js.map +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/build/main/crossPlatformSha256.d.ts +8 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/build/main/crossPlatformSha256.js +30 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/build/main/crossPlatformSha256.js.map +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/build/main/index.d.ts +2 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/build/main/index.js +8 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/build/main/index.js.map +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/build/main/isEmptyData.d.ts +2 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/build/main/isEmptyData.js +11 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/build/main/isEmptyData.js.map +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/build/main/webCryptoSha256.d.ts +10 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/build/main/webCryptoSha256.js +56 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/build/main/webCryptoSha256.js.map +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/build/module/constants.d.ts +10 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/build/module/constants.js +40 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/build/module/constants.js.map +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/build/module/crossPlatformSha256.d.ts +8 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/build/module/crossPlatformSha256.js +27 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/build/module/crossPlatformSha256.js.map +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/build/module/index.d.ts +2 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/build/module/index.js +3 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/build/module/index.js.map +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/build/module/isEmptyData.d.ts +2 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/build/module/isEmptyData.js +7 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/build/module/isEmptyData.js.map +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/build/module/webCryptoSha256.d.ts +10 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/build/module/webCryptoSha256.js +53 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/build/module/webCryptoSha256.js.map +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/LICENSE +201 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/README.md +10 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/dist-cjs/index.js +32 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/dist-es/index.js +2 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/dist-types/index.d.ts +4 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/dist-types/ts3.4/index.d.ts +4 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/package.json +60 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/LICENSE +201 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/README.md +10 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/dist-cjs/index.js +47 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/dist-es/index.js +14 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/dist-types/index.d.ts +13 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/dist-types/ts3.4/index.d.ts +13 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/package.json +61 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/LICENSE +201 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/README.md +4 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.browser.js +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.js +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-cjs/index.js +65 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-cjs/toUint8Array.js +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.browser.js +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.js +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es/fromUtf8.browser.js +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es/fromUtf8.js +5 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es/index.js +3 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es/toUint8Array.js +10 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es/toUtf8.browser.js +9 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es/toUtf8.js +10 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/fromUtf8.browser.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/fromUtf8.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/index.d.ts +3 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/toUint8Array.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/toUtf8.browser.d.ts +7 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/toUtf8.d.ts +7 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.browser.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/index.d.ts +3 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUint8Array.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.browser.d.ts +7 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.d.ts +7 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/package.json +66 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/package.json +33 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/src/constants.ts +41 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/src/crossPlatformSha256.ts +30 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/src/index.ts +2 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/src/isEmptyData.ts +9 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/src/webCryptoSha256.ts +71 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/tsconfig.json +10 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-browser/tsconfig.module.json +7 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-js/CHANGELOG.md +106 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-js/LICENSE +201 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-js/README.md +29 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-js/build/main/RawSha256.d.ts +17 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-js/build/main/RawSha256.js +124 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-js/build/main/RawSha256.js.map +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-js/build/main/constants.d.ts +20 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-js/build/main/constants.js +98 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-js/build/main/constants.js.map +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-js/build/main/index.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-js/build/main/index.js +5 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-js/build/main/index.js.map +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-js/build/main/jsSha256.d.ts +12 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-js/build/main/jsSha256.js +85 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-js/build/main/jsSha256.js.map +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-js/build/main/knownHashes.fixture.d.ts +5 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-js/build/main/knownHashes.fixture.js +322 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-js/build/main/knownHashes.fixture.js.map +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-js/build/module/RawSha256.d.ts +17 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-js/build/module/RawSha256.js +121 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-js/build/module/RawSha256.js.map +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-js/build/module/constants.d.ts +20 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-js/build/module/constants.js +95 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-js/build/module/constants.js.map +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-js/build/module/index.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-js/build/module/index.js +2 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-js/build/module/index.js.map +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-js/build/module/jsSha256.d.ts +12 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-js/build/module/jsSha256.js +82 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-js/build/module/jsSha256.js.map +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-js/build/module/knownHashes.fixture.d.ts +5 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-js/build/module/knownHashes.fixture.js +319 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-js/build/module/knownHashes.fixture.js.map +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-js/package.json +32 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-js/src/RawSha256.ts +164 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-js/src/constants.ts +98 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-js/src/index.ts +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-js/src/jsSha256.ts +94 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-js/src/knownHashes.fixture.ts +401 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-js/tsconfig.json +10 -0
- package/aws/video-agent/node_modules/@aws-crypto/sha256-js/tsconfig.module.json +7 -0
- package/aws/video-agent/node_modules/@aws-crypto/supports-web-crypto/CHANGELOG.md +66 -0
- package/aws/video-agent/node_modules/@aws-crypto/supports-web-crypto/LICENSE +202 -0
- package/aws/video-agent/node_modules/@aws-crypto/supports-web-crypto/README.md +32 -0
- package/aws/video-agent/node_modules/@aws-crypto/supports-web-crypto/build/main/index.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/supports-web-crypto/build/main/index.js +5 -0
- package/aws/video-agent/node_modules/@aws-crypto/supports-web-crypto/build/main/index.js.map +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/supports-web-crypto/build/main/supportsWebCrypto.d.ts +4 -0
- package/aws/video-agent/node_modules/@aws-crypto/supports-web-crypto/build/main/supportsWebCrypto.js +69 -0
- package/aws/video-agent/node_modules/@aws-crypto/supports-web-crypto/build/main/supportsWebCrypto.js.map +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/supports-web-crypto/build/module/index.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/supports-web-crypto/build/module/index.js +2 -0
- package/aws/video-agent/node_modules/@aws-crypto/supports-web-crypto/build/module/index.js.map +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/supports-web-crypto/build/module/supportsWebCrypto.d.ts +4 -0
- package/aws/video-agent/node_modules/@aws-crypto/supports-web-crypto/build/module/supportsWebCrypto.js +62 -0
- package/aws/video-agent/node_modules/@aws-crypto/supports-web-crypto/build/module/supportsWebCrypto.js.map +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/supports-web-crypto/package.json +28 -0
- package/aws/video-agent/node_modules/@aws-crypto/supports-web-crypto/src/index.ts +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/supports-web-crypto/src/supportsWebCrypto.ts +76 -0
- package/aws/video-agent/node_modules/@aws-crypto/supports-web-crypto/tsconfig.json +10 -0
- package/aws/video-agent/node_modules/@aws-crypto/supports-web-crypto/tsconfig.module.json +7 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/CHANGELOG.md +71 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/LICENSE +201 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/README.md +16 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/build/main/convertToBuffer.d.ts +2 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/build/main/convertToBuffer.js +24 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/build/main/convertToBuffer.js.map +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/build/main/index.d.ts +4 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/build/main/index.js +14 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/build/main/index.js.map +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/build/main/isEmptyData.d.ts +2 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/build/main/isEmptyData.js +13 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/build/main/isEmptyData.js.map +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/build/main/numToUint8.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/build/main/numToUint8.js +15 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/build/main/numToUint8.js.map +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/build/main/uint32ArrayFrom.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/build/main/uint32ArrayFrom.js +20 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/build/main/uint32ArrayFrom.js.map +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/build/module/convertToBuffer.d.ts +2 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/build/module/convertToBuffer.js +20 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/build/module/convertToBuffer.js.map +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/build/module/index.d.ts +4 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/build/module/index.js +7 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/build/module/index.js.map +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/build/module/isEmptyData.d.ts +2 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/build/module/isEmptyData.js +9 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/build/module/isEmptyData.js.map +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/build/module/numToUint8.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/build/module/numToUint8.js +11 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/build/module/numToUint8.js.map +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/build/module/uint32ArrayFrom.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/build/module/uint32ArrayFrom.js +16 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/build/module/uint32ArrayFrom.js.map +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/LICENSE +201 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/README.md +10 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/dist-cjs/index.js +32 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/dist-es/index.js +2 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/dist-types/index.d.ts +4 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/dist-types/ts3.4/index.d.ts +4 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/package.json +60 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/LICENSE +201 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/README.md +10 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/dist-cjs/index.js +47 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/dist-es/index.js +14 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/dist-types/index.d.ts +13 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/dist-types/ts3.4/index.d.ts +13 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/package.json +61 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/LICENSE +201 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/README.md +4 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.browser.js +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.js +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/index.js +65 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/toUint8Array.js +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.browser.js +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.js +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/fromUtf8.browser.js +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/fromUtf8.js +5 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/index.js +3 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/toUint8Array.js +10 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/toUtf8.browser.js +9 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/toUtf8.js +10 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/fromUtf8.browser.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/fromUtf8.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/index.d.ts +3 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/toUint8Array.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/toUtf8.browser.d.ts +7 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/toUtf8.d.ts +7 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.browser.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/index.d.ts +3 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUint8Array.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.browser.d.ts +7 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.d.ts +7 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/package.json +66 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/package.json +32 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/src/convertToBuffer.ts +30 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/src/index.ts +7 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/src/isEmptyData.ts +12 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/src/numToUint8.ts +11 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/src/uint32ArrayFrom.ts +16 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/tsconfig.json +9 -0
- package/aws/video-agent/node_modules/@aws-crypto/util/tsconfig.module.json +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/LICENSE +201 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/README.md +419 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-cjs/auth/httpAuthSchemeProvider.js +46 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-cjs/endpoint/endpointResolver.js +18 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-cjs/endpoint/ruleset.js +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-cjs/index.js +3746 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-cjs/models/MediaConvertServiceException.js +12 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-cjs/models/errors.js +109 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-cjs/runtimeConfig.browser.js +38 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-cjs/runtimeConfig.js +53 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-cjs/runtimeConfig.native.js +15 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-cjs/runtimeConfig.shared.js +43 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-cjs/schemas/schemas_0.js +3539 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/MediaConvert.js +91 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/MediaConvertClient.js +50 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/auth/httpAuthSchemeProvider.js +40 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/commands/AssociateCertificateCommand.js +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/commands/CancelJobCommand.js +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/commands/CreateJobCommand.js +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/commands/CreateJobTemplateCommand.js +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/commands/CreatePresetCommand.js +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/commands/CreateQueueCommand.js +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/commands/CreateResourceShareCommand.js +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/commands/DeleteJobTemplateCommand.js +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/commands/DeletePolicyCommand.js +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/commands/DeletePresetCommand.js +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/commands/DeleteQueueCommand.js +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/commands/DescribeEndpointsCommand.js +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/commands/DisassociateCertificateCommand.js +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/commands/GetJobCommand.js +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/commands/GetJobTemplateCommand.js +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/commands/GetJobsQueryResultsCommand.js +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/commands/GetPolicyCommand.js +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/commands/GetPresetCommand.js +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/commands/GetQueueCommand.js +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/commands/ListJobTemplatesCommand.js +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/commands/ListJobsCommand.js +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/commands/ListPresetsCommand.js +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/commands/ListQueuesCommand.js +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/commands/ListTagsForResourceCommand.js +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/commands/ListVersionsCommand.js +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/commands/ProbeCommand.js +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/commands/PutPolicyCommand.js +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/commands/SearchJobsCommand.js +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/commands/StartJobsQueryCommand.js +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/commands/TagResourceCommand.js +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/commands/UntagResourceCommand.js +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/commands/UpdateJobTemplateCommand.js +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/commands/UpdatePresetCommand.js +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/commands/UpdateQueueCommand.js +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/commands/index.js +34 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/endpoint/EndpointParameters.js +13 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/endpoint/endpointResolver.js +14 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/endpoint/ruleset.js +4 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/extensionConfiguration.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/index.js +9 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/models/MediaConvertServiceException.js +8 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/models/enums.js +2626 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/models/errors.js +99 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/models/models_0.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/pagination/DescribeEndpointsPaginator.js +4 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/pagination/Interfaces.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/pagination/ListJobTemplatesPaginator.js +4 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/pagination/ListJobsPaginator.js +4 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/pagination/ListPresetsPaginator.js +4 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/pagination/ListQueuesPaginator.js +4 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/pagination/ListVersionsPaginator.js +4 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/pagination/SearchJobsPaginator.js +4 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/pagination/index.js +8 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/runtimeConfig.browser.js +33 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/runtimeConfig.js +48 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/runtimeConfig.native.js +11 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/runtimeConfig.shared.js +39 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/runtimeExtensions.js +9 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-es/schemas/schemas_0.js +3530 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/MediaConvert.d.ts +308 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/MediaConvertClient.d.ts +221 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/commands/AssociateCertificateCommand.d.ts +93 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/commands/CancelJobCommand.d.ts +93 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/commands/CreateJobCommand.d.ts +3434 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/commands/CreateJobTemplateCommand.d.ts +3322 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/commands/CreatePresetCommand.d.ts +1874 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/commands/CreateQueueCommand.d.ts +135 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/commands/CreateResourceShareCommand.d.ts +94 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/commands/DeleteJobTemplateCommand.d.ts +93 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/commands/DeletePolicyCommand.d.ts +91 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/commands/DeletePresetCommand.d.ts +93 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/commands/DeleteQueueCommand.d.ts +93 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/commands/DescribeEndpointsCommand.d.ts +104 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/commands/DisassociateCertificateCommand.d.ts +93 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/commands/GetJobCommand.d.ts +1790 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/commands/GetJobTemplateCommand.d.ts +1710 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/commands/GetJobsQueryResultsCommand.d.ts +1794 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/commands/GetPolicyCommand.d.ts +97 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/commands/GetPresetCommand.d.ts +986 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/commands/GetQueueCommand.d.ts +123 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/commands/ListJobTemplatesCommand.d.ts +1717 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/commands/ListJobsCommand.d.ts +1797 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/commands/ListPresetsCommand.d.ts +993 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/commands/ListQueuesCommand.d.ts +131 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/commands/ListTagsForResourceCommand.d.ts +100 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/commands/ListVersionsCommand.d.ts +102 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/commands/ProbeCommand.d.ts +176 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/commands/PutPolicyCommand.d.ts +103 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/commands/SearchJobsCommand.d.ts +1798 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/commands/StartJobsQueryCommand.d.ts +105 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/commands/TagResourceCommand.d.ts +96 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/commands/UntagResourceCommand.d.ts +96 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/commands/UpdateJobTemplateCommand.d.ts +3319 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/commands/UpdatePresetCommand.d.ts +1871 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/commands/UpdateQueueCommand.d.ts +131 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/commands/index.d.ts +34 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/endpoint/EndpointParameters.d.ts +50 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/endpoint/endpointResolver.d.ts +8 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/endpoint/ruleset.d.ts +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/extensionConfiguration.d.ts +9 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/index.d.ts +17 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/models/MediaConvertServiceException.d.ts +14 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/models/enums.d.ts +6362 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/models/errors.d.ts +93 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/models/models_0.d.ts +9211 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/pagination/DescribeEndpointsPaginator.d.ts +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/pagination/Interfaces.d.ts +8 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/pagination/ListJobTemplatesPaginator.d.ts +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/pagination/ListJobsPaginator.d.ts +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/pagination/ListPresetsPaginator.d.ts +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/pagination/ListQueuesPaginator.d.ts +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/pagination/ListVersionsPaginator.d.ts +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/pagination/SearchJobsPaginator.d.ts +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/pagination/index.d.ts +8 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/runtimeConfig.browser.d.ts +55 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/runtimeConfig.d.ts +55 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/runtimeConfig.native.d.ts +54 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/runtimeConfig.shared.d.ts +27 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/runtimeExtensions.d.ts +17 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/schemas/schemas_0.d.ts +323 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/MediaConvert.d.ts +646 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/MediaConvertClient.d.ts +321 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/commands/AssociateCertificateCommand.d.ts +51 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/commands/CancelJobCommand.d.ts +47 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/commands/CreateJobCommand.d.ts +47 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/commands/CreateJobTemplateCommand.d.ts +51 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/commands/CreatePresetCommand.d.ts +47 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/commands/CreateQueueCommand.d.ts +47 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/commands/CreateResourceShareCommand.d.ts +51 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/commands/DeleteJobTemplateCommand.d.ts +51 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/commands/DeletePolicyCommand.d.ts +47 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/commands/DeletePresetCommand.d.ts +47 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/commands/DeleteQueueCommand.d.ts +47 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/commands/DescribeEndpointsCommand.d.ts +51 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/commands/DisassociateCertificateCommand.d.ts +51 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/commands/GetJobCommand.d.ts +41 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/commands/GetJobTemplateCommand.d.ts +50 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/commands/GetJobsQueryResultsCommand.d.ts +51 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +47 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/commands/GetPresetCommand.d.ts +47 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/commands/GetQueueCommand.d.ts +47 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/commands/ListJobTemplatesCommand.d.ts +50 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/commands/ListJobsCommand.d.ts +47 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/commands/ListPresetsCommand.d.ts +47 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/commands/ListQueuesCommand.d.ts +47 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/commands/ListVersionsCommand.d.ts +47 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/commands/ProbeCommand.d.ts +43 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/commands/PutPolicyCommand.d.ts +47 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/commands/SearchJobsCommand.d.ts +47 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/commands/StartJobsQueryCommand.d.ts +50 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/commands/UpdateJobTemplateCommand.d.ts +51 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/commands/UpdatePresetCommand.d.ts +47 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/commands/UpdateQueueCommand.d.ts +47 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/commands/index.d.ts +34 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/index.d.ts +12 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/models/MediaConvertServiceException.d.ts +9 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/models/enums.d.ts +3485 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/models/errors.d.ts +52 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/models/models_0.d.ts +2561 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/pagination/DescribeEndpointsPaginator.d.ts +11 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/pagination/ListJobTemplatesPaginator.d.ts +11 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/pagination/ListJobsPaginator.d.ts +11 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/pagination/ListPresetsPaginator.d.ts +11 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/pagination/ListQueuesPaginator.d.ts +11 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/pagination/ListVersionsPaginator.d.ts +11 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/pagination/SearchJobsPaginator.d.ts +11 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/pagination/index.d.ts +8 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/runtimeConfig.browser.d.ts +100 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/runtimeConfig.d.ts +95 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/runtimeConfig.native.d.ts +104 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/runtimeConfig.shared.d.ts +30 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/dist-types/ts3.4/schemas/schemas_0.d.ts +322 -0
- package/aws/video-agent/node_modules/@aws-sdk/client-mediaconvert/package.json +100 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/LICENSE +201 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/README.md +39 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/account-id-endpoint.d.ts +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/account-id-endpoint.js +5 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/client.d.ts +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/client.js +5 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-cjs/index.js +2212 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-cjs/submodules/account-id-endpoint/index.js +55 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.js +51 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-cjs/submodules/httpAuthSchemes/index.js +307 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js +1859 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/index.js +3 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/account-id-endpoint/AccountIdEndpointModeConfigResolver.js +15 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/account-id-endpoint/AccountIdEndpointModeConstants.js +5 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/account-id-endpoint/NodeAccountIdEndpointModeConfigOptions.js +24 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/account-id-endpoint/index.js +3 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/client/emitWarningIfUnsupportedVersion.js +15 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/client/index.js +4 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/client/setCredentialFeature.js +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/client/setFeature.js +11 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/client/setTokenFeature.js +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4ASigner.js +20 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.js +72 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/NODE_AUTH_SCHEME_PREFERENCE_OPTIONS.js +22 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/index.js +5 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.js +25 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.js +139 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/index.js +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getArrayForCommaSeparatedString.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getBearerTokenEnvKey.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getDateHeader.js +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getSkewCorrectedDate.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getUpdatedSystemClockOffset.js +8 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/index.js +3 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/isClockSkewed.js +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/protocols/ConfigurableSerdeContext.js +6 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/protocols/ProtocolLib.js +122 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/protocols/UnionSerde.js +23 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/protocols/cbor/AwsSmithyRpcV2CborProtocol.js +49 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/protocols/coercing-serializers.js +53 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/protocols/common.js +3 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/protocols/index.js +20 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJson1_0Protocol.js +20 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJson1_1Protocol.js +20 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJsonRpcProtocol.js +76 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsRestJsonProtocol.js +82 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonCodec.js +20 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeDeserializer.js +149 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeSerializer.js +176 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/awsExpectUnion.js +10 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/experimental/SinglePassJsonShapeSerializer.js +135 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/jsonReplacer.js +46 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/jsonReviver.js +18 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/parseJsonBody.js +54 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/AwsEc2QueryProtocol.js +21 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/AwsQueryProtocol.js +136 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/QuerySerializerSettings.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/QueryShapeSerializer.js +189 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/AwsRestXmlProtocol.js +93 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlCodec.js +20 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeDeserializer.js +153 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeSerializer.js +295 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/parseXmlBody.js +46 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/simpleFormatXml.js +27 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/api-extractor-type-index.d.ts +5 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/index.d.ts +22 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/AccountIdEndpointModeConfigResolver.d.ts +27 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/AccountIdEndpointModeConstants.d.ts +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/NodeAccountIdEndpointModeConfigOptions.d.ts +14 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/index.d.ts +3 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/client/emitWarningIfUnsupportedVersion.d.ts +12 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/client/index.d.ts +4 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/client/setCredentialFeature.d.ts +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/client/setFeature.d.ts +12 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/client/setTokenFeature.d.ts +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4ASigner.d.ts +10 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.d.ts +43 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/NODE_AUTH_SCHEME_PREFERENCE_OPTIONS.d.ts +5 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/index.d.ts +5 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.d.ts +38 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.d.ts +117 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/index.d.ts +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/getArrayForCommaSeparatedString.d.ts +8 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/getBearerTokenEnvKey.d.ts +6 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/getDateHeader.d.ts +4 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/getSkewCorrectedDate.d.ts +8 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/getUpdatedSystemClockOffset.d.ts +10 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/index.d.ts +3 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/isClockSkewed.d.ts +9 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/protocols/ConfigurableSerdeContext.d.ts +8 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/protocols/ProtocolLib.d.ts +61 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/protocols/UnionSerde.d.ts +24 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/protocols/cbor/AwsSmithyRpcV2CborProtocol.d.ts +23 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/protocols/coercing-serializers.d.ts +18 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/protocols/common.d.ts +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/protocols/index.d.ts +20 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsJson1_0Protocol.d.ts +20 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsJson1_1Protocol.d.ts +20 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsJsonRpcProtocol.d.ts +27 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsRestJsonProtocol.d.ts +34 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonCodec.d.ts +19 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonShapeDeserializer.d.ts +13 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonShapeSerializer.d.ts +28 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/awsExpectUnion.d.ts +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/experimental/SinglePassJsonShapeSerializer.d.ts +27 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/jsonReplacer.d.ts +21 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/jsonReviver.d.ts +15 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/parseJsonBody.d.ts +13 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/AwsEc2QueryProtocol.d.ts +24 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/AwsQueryProtocol.d.ts +46 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/QuerySerializerSettings.d.ts +13 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/QueryShapeSerializer.d.ts +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/AwsRestXmlProtocol.d.ts +29 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/XmlCodec.d.ts +14 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/XmlShapeDeserializer.d.ts +20 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/XmlShapeSerializer.d.ts +21 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/parseXmlBody.d.ts +13 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/simpleFormatXml.d.ts +6 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/api-extractor-type-index.d.ts +5 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/index.d.ts +3 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/account-id-endpoint/AccountIdEndpointModeConfigResolver.d.ts +15 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/account-id-endpoint/AccountIdEndpointModeConstants.d.ts +6 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/account-id-endpoint/NodeAccountIdEndpointModeConfigOptions.d.ts +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/account-id-endpoint/index.d.ts +3 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/emitWarningIfUnsupportedVersion.d.ts +4 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/index.d.ts +4 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/setCredentialFeature.d.ts +11 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/setFeature.d.ts +6 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/setTokenFeature.d.ts +6 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4ASigner.d.ts +12 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.d.ts +39 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/NODE_AUTH_SCHEME_PREFERENCE_OPTIONS.d.ts +4 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/index.d.ts +9 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.d.ts +18 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.d.ts +65 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/index.d.ts +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/getArrayForCommaSeparatedString.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/getBearerTokenEnvKey.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/getDateHeader.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/getSkewCorrectedDate.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/getUpdatedSystemClockOffset.d.ts +4 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/index.d.ts +3 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/isClockSkewed.d.ts +4 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/ConfigurableSerdeContext.d.ts +5 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/ProtocolLib.d.ts +47 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/UnionSerde.d.ts +9 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/cbor/AwsSmithyRpcV2CborProtocol.d.ts +33 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/coercing-serializers.d.ts +3 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/common.d.ts +5 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/index.d.ts +20 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsJson1_0Protocol.d.ts +18 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsJson1_1Protocol.d.ts +18 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsJsonRpcProtocol.d.ts +46 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsRestJsonProtocol.d.ts +42 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/JsonCodec.d.ts +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/JsonShapeDeserializer.d.ts +13 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/JsonShapeSerializer.d.ts +22 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/awsExpectUnion.d.ts +3 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/experimental/SinglePassJsonShapeSerializer.d.ts +17 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/jsonReplacer.d.ts +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/jsonReviver.d.ts +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/parseJsonBody.d.ts +13 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/AwsEc2QueryProtocol.d.ts +15 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/AwsQueryProtocol.d.ts +57 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/QuerySerializerSettings.d.ts +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/QueryShapeSerializer.d.ts +21 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/AwsRestXmlProtocol.d.ts +42 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/XmlCodec.d.ts +17 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/XmlShapeDeserializer.d.ts +15 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/XmlShapeSerializer.d.ts +21 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/parseXmlBody.d.ts +13 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/simpleFormatXml.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/httpAuthSchemes.d.ts +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/httpAuthSchemes.js +5 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/package.json +121 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/protocols.d.ts +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/core/protocols.js +5 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-env/LICENSE +201 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-env/README.md +11 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-env/dist-cjs/index.js +41 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-env/dist-es/fromEnv.js +30 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-env/dist-es/index.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-env/dist-types/fromEnv.d.ts +36 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-env/dist-types/index.d.ts +4 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-env/dist-types/ts3.4/fromEnv.d.ts +12 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-env/dist-types/ts3.4/index.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-env/package.json +63 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-http/README.md +10 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/checkUrl.js +46 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.browser.js +31 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.js +70 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttpTypes.js +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/requestHelpers.js +53 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/retry-wrapper.js +17 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.browser.js +5 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.js +5 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/checkUrl.js +42 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.browser.js +27 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.js +65 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttpTypes.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/requestHelpers.js +49 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/retry-wrapper.js +13 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-http/dist-es/index.browser.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-http/dist-es/index.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/checkUrl.d.ts +9 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/fromHttp.browser.d.ts +6 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/fromHttp.d.ts +6 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/fromHttpTypes.d.ts +69 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/requestHelpers.d.ts +11 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/retry-wrapper.d.ts +10 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-http/dist-types/index.browser.d.ts +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-http/dist-types/index.d.ts +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/checkUrl.d.ts +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/fromHttp.browser.d.ts +5 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/fromHttp.d.ts +5 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/fromHttpTypes.d.ts +18 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/requestHelpers.d.ts +8 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/retry-wrapper.d.ts +8 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/index.browser.d.ts +5 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/index.d.ts +5 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-http/package.json +70 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-ini/LICENSE +201 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-ini/README.md +11 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js +224 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-ini/dist-es/fromIni.js +9 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-ini/dist-es/index.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveAssumeRoleCredentials.js +80 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveCredentialSource.js +30 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveLoginCredentials.js +12 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProcessCredentials.js +6 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProfileData.js +32 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveSsoCredentials.js +25 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveStaticCredentials.js +18 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveWebIdentityCredentials.js +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-ini/dist-types/fromIni.d.ts +55 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-ini/dist-types/index.d.ts +4 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveAssumeRoleCredentials.d.ts +48 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveCredentialSource.d.ts +12 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveLoginCredentials.d.ts +11 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveProcessCredentials.d.ts +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveProfileData.d.ts +19 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveSsoCredentials.d.ts +13 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveStaticCredentials.d.ts +20 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveWebIdentityCredentials.d.ts +19 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/fromIni.d.ts +28 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/index.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveAssumeRoleCredentials.d.ts +30 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveCredentialSource.d.ts +9 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveLoginCredentials.d.ts +9 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveProcessCredentials.d.ts +10 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveProfileData.d.ts +12 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveSsoCredentials.d.ts +11 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveStaticCredentials.d.ts +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveWebIdentityCredentials.d.ts +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-ini/package.json +74 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-login/README.md +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-login/dist-cjs/index.js +286 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-login/dist-es/LoginCredentialsFetcher.js +262 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-login/dist-es/fromLoginCredentials.js +21 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-login/dist-es/index.js +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-login/dist-es/types.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-login/dist-types/LoginCredentialsFetcher.d.ts +42 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-login/dist-types/fromLoginCredentials.d.ts +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-login/dist-types/index.d.ts +8 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-login/dist-types/ts3.4/LoginCredentialsFetcher.d.ts +24 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-login/dist-types/ts3.4/fromLoginCredentials.d.ts +5 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-login/dist-types/ts3.4/index.d.ts +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-login/dist-types/ts3.4/types.d.ts +39 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-login/dist-types/types.d.ts +59 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-login/package.json +68 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-node/LICENSE +201 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-node/README.md +104 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js +156 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-node/dist-es/defaultProvider.js +73 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-node/dist-es/index.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-node/dist-es/remoteProvider.js +17 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-node/dist-es/runtime/memoize-chain.js +60 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-node/dist-types/defaultProvider.d.ts +59 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-node/dist-types/index.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-node/dist-types/remoteProvider.d.ts +11 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-node/dist-types/runtime/memoize-chain.d.ts +18 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/defaultProvider.d.ts +26 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/index.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/remoteProvider.d.ts +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/runtime/memoize-chain.d.ts +19 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-node/package.json +72 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-process/LICENSE +201 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-process/README.md +11 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-process/dist-cjs/index.js +79 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-process/dist-es/ProcessCredentials.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-process/dist-es/fromProcess.js +9 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-process/dist-es/getValidatedProcessCredentials.js +30 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-process/dist-es/index.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-process/dist-es/resolveProcessCredentials.js +36 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-process/dist-types/ProcessCredentials.d.ts +12 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-process/dist-types/fromProcess.d.ts +14 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-process/dist-types/getValidatedProcessCredentials.d.ts +6 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-process/dist-types/index.d.ts +4 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-process/dist-types/resolveProcessCredentials.d.ts +5 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/ProcessCredentials.d.ts +9 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/fromProcess.d.ts +11 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/getValidatedProcessCredentials.d.ts +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/index.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/resolveProcessCredentials.d.ts +6 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-process/package.json +64 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-sso/LICENSE +201 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-sso/README.md +11 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js +192 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/loadSso-BKDNrsal.js +8 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-sso/dist-es/fromSSO.js +83 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-sso/dist-es/index.js +4 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-sso/dist-es/isSsoProfile.js +6 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-sso/dist-es/loadSso.js +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-sso/dist-es/resolveSSOCredentials.js +90 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-sso/dist-es/types.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-sso/dist-es/validateSsoProfile.js +9 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-sso/dist-types/fromSSO.d.ts +69 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-sso/dist-types/index.d.ts +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-sso/dist-types/isSsoProfile.d.ts +6 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-sso/dist-types/loadSso.d.ts +3 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-sso/dist-types/resolveSSOCredentials.d.ts +6 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/fromSSO.d.ts +24 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/index.d.ts +4 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/isSsoProfile.d.ts +3 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/loadSso.d.ts +9 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/resolveSSOCredentials.d.ts +18 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/types.d.ts +14 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/validateSsoProfile.d.ts +6 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-sso/dist-types/types.d.ts +22 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-sso/dist-types/validateSsoProfile.d.ts +6 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-sso/package.json +66 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-web-identity/LICENSE +201 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-web-identity/README.md +11 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromTokenFile.js +34 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromWebToken.js +62 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/index.js +27 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromTokenFile.js +30 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromWebToken.js +25 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/index.js +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromTokenFile.d.ts +17 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromWebToken.d.ts +145 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/index.d.ts +8 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromTokenFile.d.ts +18 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromWebToken.d.ts +39 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/index.d.ts +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/credential-provider-web-identity/package.json +73 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-host-header/LICENSE +201 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-host-header/README.md +4 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-host-header/dist-cjs/index.js +41 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-host-header/dist-es/index.js +33 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-host-header/dist-types/index.d.ts +35 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-host-header/dist-types/ts3.4/index.d.ts +29 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-host-header/package.json +59 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-logger/LICENSE +201 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-logger/README.md +4 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-logger/dist-cjs/index.js +48 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-logger/dist-es/index.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-logger/dist-es/loggerMiddleware.js +42 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-logger/dist-types/index.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-logger/dist-types/loggerMiddleware.d.ts +4 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/index.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/loggerMiddleware.d.ts +17 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-logger/package.json +59 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-recursion-detection/LICENSE +201 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-recursion-detection/README.md +10 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/index.js +29 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/recursionDetectionMiddleware.js +33 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/recursionDetectionMiddleware.native.js +5 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/configuration.js +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/getRecursionDetectionPlugin.js +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/index.js +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/recursionDetectionMiddleware.browser.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/recursionDetectionMiddleware.js +29 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/recursionDetectionMiddleware.native.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/configuration.d.ts +5 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/getRecursionDetectionPlugin.d.ts +5 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/index.d.ts +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/recursionDetectionMiddleware.browser.d.ts +6 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/recursionDetectionMiddleware.d.ts +6 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/recursionDetectionMiddleware.native.d.ts +6 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/configuration.d.ts +3 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/getRecursionDetectionPlugin.d.ts +4 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/index.d.ts +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/recursionDetectionMiddleware.browser.d.ts +5 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/recursionDetectionMiddleware.d.ts +5 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/recursionDetectionMiddleware.native.d.ts +5 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-recursion-detection/package.json +63 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-user-agent/LICENSE +201 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-user-agent/README.md +4 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/index.js +194 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-user-agent/dist-es/check-features.js +49 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-user-agent/dist-es/configurations.js +28 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-user-agent/dist-es/constants.js +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-user-agent/dist-es/encode-features.js +18 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-user-agent/dist-es/index.js +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-user-agent/dist-es/user-agent-middleware.js +82 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-user-agent/dist-types/check-features.d.ts +20 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-user-agent/dist-types/configurations.d.ts +44 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-user-agent/dist-types/constants.d.ts +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-user-agent/dist-types/encode-features.d.ts +5 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-user-agent/dist-types/index.d.ts +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/check-features.d.ts +20 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/configurations.d.ts +21 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/constants.d.ts +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/encode-features.d.ts +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/index.d.ts +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/user-agent-middleware.d.ts +21 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-user-agent/dist-types/user-agent-middleware.d.ts +18 -0
- package/aws/video-agent/node_modules/@aws-sdk/middleware-user-agent/package.json +63 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/README.md +13 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/cognito-identity.d.ts +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/cognito-identity.js +5 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/index.js +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/auth/httpAuthSchemeProvider.js +60 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/endpoint/endpointResolver.js +18 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/endpoint/ruleset.js +146 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/index.js +174 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/models/CognitoIdentityServiceException.js +12 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/models/errors.js +121 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/runtimeConfig.browser.js +38 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/runtimeConfig.js +53 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/runtimeConfig.native.js +15 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/runtimeConfig.shared.js +50 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/schemas/schemas_0.js +110 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/auth/httpAuthSchemeProvider.js +56 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/endpoint/endpointResolver.js +18 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/endpoint/ruleset.js +133 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/index.js +170 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/models/SigninServiceException.js +12 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/models/errors.js +64 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.browser.js +39 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.js +53 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.native.js +15 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.shared.js +49 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/schemas/schemas_0.js +125 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/auth/httpAuthSchemeProvider.js +56 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/endpoint/endpointResolver.js +18 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/endpoint/ruleset.js +106 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/index.js +160 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/models/SSOServiceException.js +12 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/models/errors.js +56 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/runtimeConfig.browser.js +38 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/runtimeConfig.js +53 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/runtimeConfig.native.js +15 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/runtimeConfig.shared.js +49 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/schemas/schemas_0.js +90 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/auth/httpAuthSchemeProvider.js +56 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/endpoint/endpointResolver.js +18 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/endpoint/ruleset.js +106 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/index.js +172 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/models/SSOOIDCServiceException.js +12 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/models/errors.js +195 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.browser.js +38 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.js +53 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.native.js +15 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.shared.js +49 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/schemas/schemas_0.js +140 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/STSClient.js +54 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/auth/httpAuthExtensionConfiguration.js +43 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/auth/httpAuthSchemeProvider.js +62 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/EndpointParameters.js +19 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/endpointResolver.js +18 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/ruleset.js +145 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/index.js +202 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/models/STSServiceException.js +12 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/models/errors.js +95 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.browser.js +39 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.js +67 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.native.js +15 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.shared.js +50 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeExtensions.js +13 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/schemas/schemas_0.js +195 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/index.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/CognitoIdentity.js +11 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/CognitoIdentityClient.js +50 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/auth/httpAuthExtensionConfiguration.js +38 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/auth/httpAuthSchemeProvider.js +54 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.js +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/commands/GetIdCommand.js +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/commands/index.js +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/endpoint/EndpointParameters.js +13 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/endpoint/endpointResolver.js +14 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/endpoint/ruleset.js +143 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/extensionConfiguration.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/index.js +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/models/CognitoIdentityServiceException.js +8 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/models/errors.js +109 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/models/models_0.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.browser.js +33 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.js +48 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.native.js +11 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.shared.js +46 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeExtensions.js +9 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/schemas/schemas_0.js +107 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/Signin.js +9 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/SigninClient.js +50 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/auth/httpAuthExtensionConfiguration.js +38 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/auth/httpAuthSchemeProvider.js +50 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/commands/CreateOAuth2TokenCommand.js +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/commands/index.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/EndpointParameters.js +13 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/endpointResolver.js +14 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/ruleset.js +130 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/extensionConfiguration.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/index.js +8 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/SigninServiceException.js +8 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/enums.js +8 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/errors.js +57 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/models_0.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.browser.js +34 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.js +48 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.native.js +11 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.shared.js +45 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeExtensions.js +9 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/schemas/schemas_0.js +122 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/SSO.js +9 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/SSOClient.js +50 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/auth/httpAuthExtensionConfiguration.js +38 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/auth/httpAuthSchemeProvider.js +50 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/commands/GetRoleCredentialsCommand.js +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/commands/index.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/endpoint/EndpointParameters.js +13 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/endpoint/endpointResolver.js +14 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/endpoint/ruleset.js +103 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/extensionConfiguration.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/index.js +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/models/SSOServiceException.js +8 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/models/errors.js +49 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/models/models_0.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.browser.js +33 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.js +48 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.native.js +11 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.shared.js +45 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeExtensions.js +9 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/schemas/schemas_0.js +87 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/SSOOIDC.js +9 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/SSOOIDCClient.js +50 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/auth/httpAuthExtensionConfiguration.js +38 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/auth/httpAuthSchemeProvider.js +50 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/commands/CreateTokenCommand.js +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/commands/index.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/EndpointParameters.js +13 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/endpointResolver.js +14 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/ruleset.js +103 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/extensionConfiguration.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/index.js +8 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/SSOOIDCServiceException.js +8 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/enums.js +9 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/errors.js +181 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/models_0.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.browser.js +33 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.js +48 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.native.js +11 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.shared.js +45 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeExtensions.js +9 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/schemas/schemas_0.js +137 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/STS.js +11 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/STSClient.js +50 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/auth/httpAuthExtensionConfiguration.js +38 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/auth/httpAuthSchemeProvider.js +55 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/AssumeRoleCommand.js +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.js +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/index.js +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/defaultRoleAssumers.js +22 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/defaultStsRoleAssumers.js +107 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/EndpointParameters.js +15 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/endpointResolver.js +14 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/ruleset.js +142 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/extensionConfiguration.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/index.js +8 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/STSServiceException.js +8 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/errors.js +85 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/models_0.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.browser.js +34 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.js +62 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.native.js +11 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.shared.js +46 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeExtensions.js +9 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/schemas/schemas_0.js +192 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/index.d.ts +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/CognitoIdentity.d.ts +38 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/CognitoIdentityClient.d.ts +198 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/auth/httpAuthExtensionConfiguration.d.ts +30 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.d.ts +120 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/commands/GetIdCommand.d.ts +107 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/commands/index.d.ts +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/endpoint/EndpointParameters.d.ts +50 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/endpoint/endpointResolver.d.ts +8 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/endpoint/ruleset.d.ts +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/extensionConfiguration.d.ts +9 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/index.d.ts +29 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/models/CognitoIdentityServiceException.d.ts +14 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/models/errors.d.ts +119 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/models/models_0.d.ts +136 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.browser.d.ts +62 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.d.ts +62 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.native.d.ts +61 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.shared.d.ts +38 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeExtensions.d.ts +17 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/schemas/schemas_0.d.ts +25 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/Signin.d.ts +18 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/SigninClient.d.ts +190 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/auth/httpAuthExtensionConfiguration.d.ts +30 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/commands/CreateOAuth2TokenCommand.d.ts +157 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/commands/index.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/EndpointParameters.d.ts +50 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/endpointResolver.d.ts +8 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/ruleset.d.ts +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/extensionConfiguration.d.ts +9 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/index.d.ts +17 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/SigninServiceException.d.ts +14 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/enums.d.ts +34 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/errors.d.ts +102 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/models_0.d.ts +142 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.browser.d.ts +63 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.d.ts +63 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.native.d.ts +62 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.shared.d.ts +38 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeExtensions.d.ts +17 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/schemas/schemas_0.d.ts +19 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/SSO.d.ts +32 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/SSOClient.d.ts +198 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/auth/httpAuthExtensionConfiguration.d.ts +30 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/commands/GetRoleCredentialsCommand.d.ts +97 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/commands/index.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/endpoint/EndpointParameters.d.ts +50 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/endpoint/endpointResolver.d.ts +8 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/endpoint/ruleset.d.ts +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/extensionConfiguration.d.ts +9 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/index.d.ts +30 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/models/SSOServiceException.d.ts +14 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/models/errors.d.ts +53 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/models/models_0.d.ts +61 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.browser.d.ts +62 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.d.ts +62 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.native.d.ts +61 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.shared.d.ts +38 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeExtensions.d.ts +17 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/schemas/schemas_0.d.ts +17 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/SSOOIDC.d.ts +55 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/SSOOIDCClient.d.ts +221 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/auth/httpAuthExtensionConfiguration.d.ts +30 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +176 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/commands/index.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/endpoint/EndpointParameters.d.ts +50 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/endpoint/endpointResolver.d.ts +8 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/endpoint/ruleset.d.ts +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/extensionConfiguration.d.ts +9 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/index.d.ts +54 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/SSOOIDCServiceException.d.ts +14 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/enums.d.ts +25 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/errors.d.ts +279 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/models_0.d.ts +109 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.browser.d.ts +62 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.d.ts +62 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.native.d.ts +61 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.shared.d.ts +38 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeExtensions.d.ts +17 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/schemas/schemas_0.d.ts +23 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/STS.d.ts +27 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/STSClient.d.ts +193 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/auth/httpAuthExtensionConfiguration.d.ts +30 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/auth/httpAuthSchemeProvider.d.ts +86 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commands/AssumeRoleCommand.d.ts +270 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +290 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commands/index.d.ts +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/defaultRoleAssumers.d.ts +23 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/defaultStsRoleAssumers.d.ts +43 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/endpoint/EndpointParameters.d.ts +56 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/endpoint/endpointResolver.d.ts +8 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/endpoint/ruleset.d.ts +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/extensionConfiguration.d.ts +9 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/index.d.ts +19 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/models/STSServiceException.d.ts +14 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/models/errors.d.ts +107 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/models/models_0.d.ts +588 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.browser.d.ts +64 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.d.ts +62 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.native.d.ts +63 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.shared.d.ts +38 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeExtensions.d.ts +17 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/schemas/schemas_0.d.ts +27 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/index.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/CognitoIdentity.d.ts +38 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/CognitoIdentityClient.d.ts +126 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.d.ts +51 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/commands/GetIdCommand.d.ts +41 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/commands/index.d.ts +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/endpoint/EndpointParameters.d.ts +51 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/endpoint/endpointResolver.d.ts +8 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/endpoint/ruleset.d.ts +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/extensionConfiguration.d.ts +9 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/index.d.ts +10 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/models/CognitoIdentityServiceException.d.ts +9 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/models/errors.d.ts +68 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/models/models_0.d.ts +23 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.browser.d.ts +122 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.d.ts +117 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.native.d.ts +126 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.shared.d.ts +60 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeExtensions.d.ts +13 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/schemas/schemas_0.d.ts +24 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/Signin.d.ts +22 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/SigninClient.d.ts +125 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/commands/CreateOAuth2TokenCommand.d.ts +47 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/commands/index.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/EndpointParameters.d.ts +51 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/endpointResolver.d.ts +8 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/ruleset.d.ts +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/extensionConfiguration.d.ts +9 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/index.d.ts +11 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/SigninServiceException.d.ts +9 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/enums.d.ts +10 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/errors.d.ts +35 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/models_0.d.ts +26 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.browser.d.ts +125 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.d.ts +118 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.native.d.ts +129 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.shared.d.ts +58 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeExtensions.d.ts +11 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/schemas/schemas_0.d.ts +18 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/SSO.d.ts +22 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/SSOClient.d.ts +117 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/auth/httpAuthSchemeProvider.d.ts +46 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/commands/GetRoleCredentialsCommand.d.ts +47 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/commands/index.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/endpoint/EndpointParameters.d.ts +51 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/endpoint/endpointResolver.d.ts +8 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/endpoint/ruleset.d.ts +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/extensionConfiguration.d.ts +9 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/index.d.ts +10 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/models/SSOServiceException.d.ts +9 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/models/errors.d.ts +30 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/models/models_0.d.ts +14 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.browser.d.ts +120 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.d.ts +115 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.native.d.ts +124 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.shared.d.ts +58 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeExtensions.d.ts +11 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/schemas/schemas_0.d.ts +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/SSOOIDC.d.ts +22 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/SSOOIDCClient.d.ts +120 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +43 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/commands/index.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/endpoint/EndpointParameters.d.ts +51 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/endpoint/endpointResolver.d.ts +8 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/endpoint/ruleset.d.ts +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/extensionConfiguration.d.ts +9 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/index.d.ts +11 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/SSOOIDCServiceException.d.ts +9 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/enums.d.ts +13 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/errors.d.ts +105 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/models_0.d.ts +18 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.browser.d.ts +120 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.d.ts +115 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.native.d.ts +124 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.shared.d.ts +58 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeExtensions.d.ts +11 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/schemas/schemas_0.d.ts +22 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/STS.d.ts +39 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/STSClient.d.ts +130 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/auth/httpAuthSchemeProvider.d.ts +57 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/commands/AssumeRoleCommand.d.ts +47 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +51 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/commands/index.d.ts +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/defaultRoleAssumers.d.ts +19 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/defaultStsRoleAssumers.d.ts +33 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/endpoint/EndpointParameters.d.ts +57 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/endpoint/endpointResolver.d.ts +8 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/endpoint/ruleset.d.ts +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/extensionConfiguration.d.ts +9 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/index.d.ts +11 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/models/STSServiceException.d.ts +9 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/models/errors.d.ts +54 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/models/models_0.d.ts +59 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.browser.d.ts +129 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.d.ts +111 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.native.d.ts +133 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.shared.d.ts +58 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeExtensions.d.ts +11 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/schemas/schemas_0.d.ts +26 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/package.json +147 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/signin.d.ts +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/signin.js +5 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/sso-oidc.d.ts +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/sso-oidc.js +5 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/sso.d.ts +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/sso.js +5 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/sts.d.ts +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/nested-clients/sts.js +5 -0
- package/aws/video-agent/node_modules/@aws-sdk/region-config-resolver/LICENSE +201 -0
- package/aws/video-agent/node_modules/@aws-sdk/region-config-resolver/README.md +12 -0
- package/aws/video-agent/node_modules/@aws-sdk/region-config-resolver/dist-cjs/index.js +38 -0
- package/aws/video-agent/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/stsRegionDefaultResolver.js +20 -0
- package/aws/video-agent/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/stsRegionDefaultResolver.native.js +6 -0
- package/aws/video-agent/node_modules/@aws-sdk/region-config-resolver/dist-es/extensions/index.js +15 -0
- package/aws/video-agent/node_modules/@aws-sdk/region-config-resolver/dist-es/index.js +3 -0
- package/aws/video-agent/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/awsRegionConfig.js +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/stsRegionDefaultResolver.browser.js +3 -0
- package/aws/video-agent/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/stsRegionDefaultResolver.js +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/stsRegionDefaultResolver.native.js +3 -0
- package/aws/video-agent/node_modules/@aws-sdk/region-config-resolver/dist-types/extensions/index.d.ts +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/region-config-resolver/dist-types/index.d.ts +3 -0
- package/aws/video-agent/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/awsRegionConfig.d.ts +15 -0
- package/aws/video-agent/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/stsRegionDefaultResolver.browser.d.ts +4 -0
- package/aws/video-agent/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/stsRegionDefaultResolver.d.ts +14 -0
- package/aws/video-agent/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/stsRegionDefaultResolver.native.d.ts +4 -0
- package/aws/video-agent/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/extensions/index.d.ts +14 -0
- package/aws/video-agent/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/index.d.ts +3 -0
- package/aws/video-agent/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/awsRegionConfig.d.ts +11 -0
- package/aws/video-agent/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/stsRegionDefaultResolver.browser.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/stsRegionDefaultResolver.d.ts +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/stsRegionDefaultResolver.native.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/region-config-resolver/package.json +62 -0
- package/aws/video-agent/node_modules/@aws-sdk/token-providers/LICENSE +201 -0
- package/aws/video-agent/node_modules/@aws-sdk/token-providers/README.md +62 -0
- package/aws/video-agent/node_modules/@aws-sdk/token-providers/dist-cjs/index.js +157 -0
- package/aws/video-agent/node_modules/@aws-sdk/token-providers/dist-es/constants.js +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/token-providers/dist-es/fromEnvSigningName.js +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/token-providers/dist-es/fromSso.js +81 -0
- package/aws/video-agent/node_modules/@aws-sdk/token-providers/dist-es/fromStatic.js +8 -0
- package/aws/video-agent/node_modules/@aws-sdk/token-providers/dist-es/getNewSsoOidcToken.js +11 -0
- package/aws/video-agent/node_modules/@aws-sdk/token-providers/dist-es/getSsoOidcClient.js +10 -0
- package/aws/video-agent/node_modules/@aws-sdk/token-providers/dist-es/index.js +4 -0
- package/aws/video-agent/node_modules/@aws-sdk/token-providers/dist-es/nodeProvider.js +5 -0
- package/aws/video-agent/node_modules/@aws-sdk/token-providers/dist-es/validateTokenExpiry.js +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/token-providers/dist-es/validateTokenKey.js +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/token-providers/dist-es/writeSSOTokenToFile.js +8 -0
- package/aws/video-agent/node_modules/@aws-sdk/token-providers/dist-types/constants.d.ts +8 -0
- package/aws/video-agent/node_modules/@aws-sdk/token-providers/dist-types/fromEnvSigningName.d.ts +18 -0
- package/aws/video-agent/node_modules/@aws-sdk/token-providers/dist-types/fromSso.d.ts +12 -0
- package/aws/video-agent/node_modules/@aws-sdk/token-providers/dist-types/fromStatic.d.ts +9 -0
- package/aws/video-agent/node_modules/@aws-sdk/token-providers/dist-types/getNewSsoOidcToken.d.ts +8 -0
- package/aws/video-agent/node_modules/@aws-sdk/token-providers/dist-types/getSsoOidcClient.d.ts +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/token-providers/dist-types/index.d.ts +4 -0
- package/aws/video-agent/node_modules/@aws-sdk/token-providers/dist-types/nodeProvider.d.ts +18 -0
- package/aws/video-agent/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/constants.d.ts +3 -0
- package/aws/video-agent/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromEnvSigningName.d.ts +11 -0
- package/aws/video-agent/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromSso.d.ts +14 -0
- package/aws/video-agent/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromStatic.d.ts +12 -0
- package/aws/video-agent/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getNewSsoOidcToken.d.ts +11 -0
- package/aws/video-agent/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getSsoOidcClient.d.ts +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/index.d.ts +4 -0
- package/aws/video-agent/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/nodeProvider.d.ts +5 -0
- package/aws/video-agent/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/validateTokenExpiry.d.ts +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/validateTokenKey.d.ts +5 -0
- package/aws/video-agent/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/writeSSOTokenToFile.d.ts +5 -0
- package/aws/video-agent/node_modules/@aws-sdk/token-providers/dist-types/validateTokenExpiry.d.ts +5 -0
- package/aws/video-agent/node_modules/@aws-sdk/token-providers/dist-types/validateTokenKey.d.ts +4 -0
- package/aws/video-agent/node_modules/@aws-sdk/token-providers/dist-types/writeSSOTokenToFile.d.ts +5 -0
- package/aws/video-agent/node_modules/@aws-sdk/token-providers/package.json +70 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/LICENSE +201 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/README.md +4 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-cjs/index.js +13 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-es/abort.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-es/auth.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-es/blob/blob-types.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-es/checksum.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-es/client.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-es/command.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-es/connection.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-es/credentials.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-es/crypto.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-es/dns.js +5 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-es/encode.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-es/endpoint.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-es/eventStream.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-es/extensions/index.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-es/feature-ids.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-es/function.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-es/http.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-es/identity/AnonymousIdentity.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-es/identity/AwsCredentialIdentity.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-es/identity/Identity.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-es/identity/LoginIdentity.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-es/identity/TokenIdentity.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-es/identity/index.js +5 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-es/index.js +34 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-es/logger.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-es/middleware.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-es/pagination.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-es/profile.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-es/request.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-es/response.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-es/retry.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-es/serde.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-es/shapes.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-es/signature.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-es/stream.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-es/token.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-es/transfer.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-es/uri.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-es/util.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-es/waiter.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/abort.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/auth.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/client.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/command.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/connection.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +52 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/dns.d.ts +85 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/encode.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts +8 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/feature-ids.d.ts +67 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/function.d.ts +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/http.d.ts +33 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts +6 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +61 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts +18 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +11 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +5 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/index.d.ts +34 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/logger.d.ts +22 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +13 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/profile.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/request.d.ts +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/response.d.ts +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/retry.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/serde.d.ts +24 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/signature.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/stream.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/token.d.ts +17 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +5 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/ts3.4/blob/blob-types.d.ts +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/ts3.4/checksum.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/ts3.4/connection.d.ts +6 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +15 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/ts3.4/dns.d.ts +19 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/ts3.4/encode.d.ts +6 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +9 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +24 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/ts3.4/extensions/index.d.ts +5 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/ts3.4/feature-ids.d.ts +60 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/ts3.4/function.d.ts +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +17 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AnonymousIdentity.d.ts +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +31 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/Identity.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/LoginIdentity.d.ts +6 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/TokenIdentity.d.ts +6 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +5 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +34 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +15 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +47 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/ts3.4/profile.d.ts +6 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/ts3.4/request.d.ts +4 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +4 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/ts3.4/retry.d.ts +12 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +6 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +15 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/ts3.4/stream.d.ts +4 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/ts3.4/token.d.ts +4 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/ts3.4/uri.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +14 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/uri.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/util.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/types/package.json +57 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/LICENSE +201 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/README.md +6 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/dist-cjs/index.js +406 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/partitions.json +267 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/dist-es/aws.js +10 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/dist-es/index.js +6 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/index.js +3 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/isVirtualHostableS3Bucket.js +25 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/parseArn.js +18 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partition.js +41 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partitions.json +267 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/dist-es/lib/isIpAddress.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/dist-es/resolveDefaultAwsRegionalEndpointsConfig.js +21 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/dist-es/resolveEndpoint.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointError.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointRuleObject.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/dist-es/types/ErrorRuleObject.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/dist-es/types/RuleSetObject.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/dist-es/types/TreeRuleObject.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/dist-es/types/index.js +6 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/dist-es/types/shared.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/dist-types/aws.d.ts +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/dist-types/index.d.ts +6 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/index.d.ts +3 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/isVirtualHostableS3Bucket.d.ts +5 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/parseArn.d.ts +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/partition.d.ts +38 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/dist-types/lib/isIpAddress.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/dist-types/resolveDefaultAwsRegionalEndpointsConfig.d.ts +56 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/dist-types/resolveEndpoint.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/aws.d.ts +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/index.d.ts +6 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/index.d.ts +3 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/isVirtualHostableS3Bucket.d.ts +4 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/parseArn.d.ts +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/partition.d.ts +28 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/isIpAddress.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/resolveDefaultAwsRegionalEndpointsConfig.d.ts +35 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/resolveEndpoint.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointError.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointRuleObject.d.ts +6 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/ErrorRuleObject.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/RuleSetObject.d.ts +5 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/TreeRuleObject.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/index.d.ts +6 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/shared.d.ts +12 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointError.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointRuleObject.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/dist-types/types/ErrorRuleObject.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/dist-types/types/RuleSetObject.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/dist-types/types/TreeRuleObject.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/dist-types/types/index.d.ts +6 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/dist-types/types/shared.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-endpoints/package.json +60 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-locate-window/LICENSE +201 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-locate-window/README.md +4 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-locate-window/dist-cjs/index.js +14 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-locate-window/dist-es/index.js +10 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-locate-window/dist-types/index.d.ts +6 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-locate-window/dist-types/ts3.4/index.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-locate-window/package.json +54 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-browser/LICENSE +201 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-browser/README.md +29 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/configurations.js +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/createUserAgentStringParsingProvider.js +57 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.js +58 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.native.js +22 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-browser/dist-es/configurations.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-browser/dist-es/createUserAgentStringParsingProvider.js +20 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.js +53 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.native.js +18 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-browser/dist-types/configurations.d.ts +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-browser/dist-types/createUserAgentStringParsingProvider.d.ts +14 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.d.ts +27 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.native.d.ts +18 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/configurations.d.ts +4 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/createUserAgentStringParsingProvider.d.ts +9 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.d.ts +22 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.native.d.ts +17 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-browser/package.json +55 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-node/LICENSE +201 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-node/README.md +10 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/index.js +185 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-node/dist-es/crt-availability.js +3 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-node/dist-es/defaultUserAgent.js +36 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-node/dist-es/getNodeModulesParentDirs.js +15 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-node/dist-es/getRuntimeUserAgentPair.js +10 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-node/dist-es/getSanitizedDevTypeScriptVersion.js +14 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-node/dist-es/getSanitizedTypeScriptVersion.js +9 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-node/dist-es/getTypeScriptUserAgentPair.js +75 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-node/dist-es/index.js +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-node/dist-es/is-crt-available.js +7 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-node/dist-es/nodeAppIdConfigOptions.js +9 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-node/dist-types/crt-availability.d.ts +8 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-node/dist-types/defaultUserAgent.d.ts +28 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-node/dist-types/getNodeModulesParentDirs.d.ts +10 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-node/dist-types/getRuntimeUserAgentPair.d.ts +6 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-node/dist-types/getSanitizedDevTypeScriptVersion.d.ts +8 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-node/dist-types/getSanitizedTypeScriptVersion.d.ts +8 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-node/dist-types/getTypeScriptUserAgentPair.d.ts +6 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-node/dist-types/index.d.ts +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-node/dist-types/is-crt-available.d.ts +5 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-node/dist-types/nodeAppIdConfigOptions.d.ts +13 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/crt-availability.d.ts +3 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/defaultUserAgent.d.ts +21 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/getNodeModulesParentDirs.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/getRuntimeUserAgentPair.d.ts +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/getSanitizedDevTypeScriptVersion.d.ts +3 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/getSanitizedTypeScriptVersion.d.ts +3 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/getTypeScriptUserAgentPair.d.ts +4 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/index.d.ts +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/is-crt-available.d.ts +2 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/nodeAppIdConfigOptions.d.ts +6 -0
- package/aws/video-agent/node_modules/@aws-sdk/util-user-agent-node/package.json +69 -0
- package/aws/video-agent/node_modules/@aws-sdk/xml-builder/LICENSE +201 -0
- package/aws/video-agent/node_modules/@aws-sdk/xml-builder/README.md +10 -0
- package/aws/video-agent/node_modules/@aws-sdk/xml-builder/dist-cjs/index.js +121 -0
- package/aws/video-agent/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-parser.js +19 -0
- package/aws/video-agent/node_modules/@aws-sdk/xml-builder/dist-es/XmlNode.js +88 -0
- package/aws/video-agent/node_modules/@aws-sdk/xml-builder/dist-es/XmlText.js +10 -0
- package/aws/video-agent/node_modules/@aws-sdk/xml-builder/dist-es/escape-attribute.js +3 -0
- package/aws/video-agent/node_modules/@aws-sdk/xml-builder/dist-es/escape-element.js +12 -0
- package/aws/video-agent/node_modules/@aws-sdk/xml-builder/dist-es/index.js +3 -0
- package/aws/video-agent/node_modules/@aws-sdk/xml-builder/dist-es/stringable.js +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/xml-builder/dist-es/xml-parser.browser.js +57 -0
- package/aws/video-agent/node_modules/@aws-sdk/xml-builder/dist-es/xml-parser.js +16 -0
- package/aws/video-agent/node_modules/@aws-sdk/xml-builder/dist-types/XmlNode.d.ts +49 -0
- package/aws/video-agent/node_modules/@aws-sdk/xml-builder/dist-types/XmlText.d.ts +11 -0
- package/aws/video-agent/node_modules/@aws-sdk/xml-builder/dist-types/escape-attribute.d.ts +6 -0
- package/aws/video-agent/node_modules/@aws-sdk/xml-builder/dist-types/escape-element.d.ts +6 -0
- package/aws/video-agent/node_modules/@aws-sdk/xml-builder/dist-types/index.d.ts +12 -0
- package/aws/video-agent/node_modules/@aws-sdk/xml-builder/dist-types/stringable.d.ts +6 -0
- package/aws/video-agent/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/XmlNode.d.ts +29 -0
- package/aws/video-agent/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/XmlText.d.ts +6 -0
- package/aws/video-agent/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/escape-attribute.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/escape-element.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/index.d.ts +3 -0
- package/aws/video-agent/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/stringable.d.ts +3 -0
- package/aws/video-agent/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/xml-parser.browser.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/xml-parser.d.ts +1 -0
- package/aws/video-agent/node_modules/@aws-sdk/xml-builder/dist-types/xml-parser.browser.d.ts +9 -0
- package/aws/video-agent/node_modules/@aws-sdk/xml-builder/dist-types/xml-parser.d.ts +4 -0
- package/aws/video-agent/node_modules/@aws-sdk/xml-builder/package.json +63 -0
- package/aws/video-agent/node_modules/@smithy/abort-controller/LICENSE +201 -0
- package/aws/video-agent/node_modules/@smithy/abort-controller/README.md +4 -0
- package/aws/video-agent/node_modules/@smithy/abort-controller/dist-cjs/index.js +32 -0
- package/aws/video-agent/node_modules/@smithy/abort-controller/dist-es/AbortController.js +7 -0
- package/aws/video-agent/node_modules/@smithy/abort-controller/dist-es/AbortSignal.js +20 -0
- package/aws/video-agent/node_modules/@smithy/abort-controller/dist-es/index.js +2 -0
- package/aws/video-agent/node_modules/@smithy/abort-controller/dist-types/AbortController.d.ts +16 -0
- package/aws/video-agent/node_modules/@smithy/abort-controller/dist-types/AbortSignal.d.ts +21 -0
- package/aws/video-agent/node_modules/@smithy/abort-controller/dist-types/index.d.ts +9 -0
- package/aws/video-agent/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortController.d.ts +16 -0
- package/aws/video-agent/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortSignal.d.ts +21 -0
- package/aws/video-agent/node_modules/@smithy/abort-controller/dist-types/ts3.4/index.d.ts +9 -0
- package/aws/video-agent/node_modules/@smithy/abort-controller/package.json +63 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/LICENSE +201 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/README.md +10 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-cjs/index.js +186 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +9 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +9 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/index.js +4 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/resolveCustomEndpointsConfig.js +10 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/resolveEndpointsConfig.js +14 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/utils/getEndpointFromRegion.js +15 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-es/index.js +3 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-es/regionConfig/checkRegion.js +15 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-es/regionConfig/config.js +12 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-es/regionConfig/getRealRegion.js +6 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-es/regionConfig/index.js +2 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-es/regionConfig/isFipsRegion.js +1 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-es/regionConfig/resolveRegionConfig.js +24 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-es/regionInfo/EndpointVariant.js +1 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-es/regionInfo/EndpointVariantTag.js +1 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-es/regionInfo/PartitionHash.js +1 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-es/regionInfo/RegionHash.js +1 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-es/regionInfo/getHostnameFromVariants.js +1 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-es/regionInfo/getRegionInfo.js +29 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-es/regionInfo/getResolvedHostname.js +5 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-es/regionInfo/getResolvedPartition.js +1 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-es/regionInfo/getResolvedSigningRegion.js +12 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-es/regionInfo/index.js +3 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +17 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +17 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/index.d.ts +16 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/resolveCustomEndpointsConfig.d.ts +37 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/resolveEndpointsConfig.d.ts +57 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/utils/getEndpointFromRegion.d.ts +11 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-types/index.d.ts +12 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-types/regionConfig/checkRegion.d.ts +9 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-types/regionConfig/config.d.ts +17 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-types/regionConfig/getRealRegion.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-types/regionConfig/index.d.ts +8 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-types/regionConfig/isFipsRegion.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-types/regionConfig/resolveRegionConfig.d.ts +34 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-types/regionInfo/EndpointVariant.d.ts +11 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-types/regionInfo/EndpointVariantTag.d.ts +10 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-types/regionInfo/PartitionHash.d.ts +15 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-types/regionInfo/RegionHash.d.ts +13 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-types/regionInfo/getHostnameFromVariants.d.ts +14 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-types/regionInfo/getRegionInfo.d.ts +19 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-types/regionInfo/getResolvedHostname.d.ts +13 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-types/regionInfo/getResolvedPartition.d.ts +13 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-types/regionInfo/getResolvedSigningRegion.d.ts +14 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-types/regionInfo/index.d.ts +12 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +17 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +17 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/index.d.ts +16 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/resolveCustomEndpointsConfig.d.ts +37 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/resolveEndpointsConfig.d.ts +57 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/utils/getEndpointFromRegion.d.ts +11 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-types/ts3.4/index.d.ts +12 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/checkRegion.d.ts +9 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/config.d.ts +17 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/getRealRegion.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/index.d.ts +8 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/isFipsRegion.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/resolveRegionConfig.d.ts +34 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariant.d.ts +11 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariantTag.d.ts +10 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/PartitionHash.d.ts +15 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/RegionHash.d.ts +13 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getHostnameFromVariants.d.ts +14 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getRegionInfo.d.ts +19 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedHostname.d.ts +13 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedPartition.d.ts +13 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedSigningRegion.d.ts +14 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/index.d.ts +12 -0
- package/aws/video-agent/node_modules/@smithy/config-resolver/package.json +66 -0
- package/aws/video-agent/node_modules/@smithy/core/LICENSE +201 -0
- package/aws/video-agent/node_modules/@smithy/core/README.md +45 -0
- package/aws/video-agent/node_modules/@smithy/core/cbor.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/core/cbor.js +6 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-cjs/index.js +345 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-cjs/submodules/cbor/index.js +1096 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-cjs/submodules/endpoints/index.js +22 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-cjs/submodules/event-streams/index.js +259 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-cjs/submodules/protocols/index.js +884 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-cjs/submodules/schema/index.js +698 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-cjs/submodules/serde/index.js +694 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/getSmithyContext.js +2 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/index.js +8 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.js +17 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/getHttpAuthSchemePlugin.js +17 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js +42 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/index.js +3 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/resolveAuthOptions.js +20 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/middleware-http-signing/getHttpSigningMiddleware.js +15 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/middleware-http-signing/httpSigningMiddleware.js +23 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/middleware-http-signing/index.js +2 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/normalizeProvider.js +6 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/pagination/createPaginator.js +41 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/request-builder/requestBuilder.js +1 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/setFeature.js +11 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/cbor/CborCodec.js +206 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/cbor/SmithyRpcV2CborProtocol.js +100 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/cbor/byte-printer.js +37 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-decode.js +426 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-encode.js +221 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-types.js +25 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/cbor/cbor.js +21 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/cbor/index.js +5 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/cbor/parseCborBody.js +92 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/endpoints/index.js +1 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/endpoints/toEndpointV1.js +17 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/event-streams/EventStreamSerde.js +254 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/event-streams/index.js +1 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/protocols/HttpBindingProtocol.js +293 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/protocols/HttpProtocol.js +140 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/protocols/RpcProtocol.js +94 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/protocols/SerdeContext.js +6 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/protocols/collect-stream-body.js +11 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/protocols/extended-encode-uri-component.js +5 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/protocols/index.js +13 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/protocols/requestBuilder.js +69 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/protocols/resolve-path.js +19 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/protocols/serde/FromStringShapeDeserializer.js +66 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/protocols/serde/HttpInterceptingShapeDeserializer.js +42 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/protocols/serde/HttpInterceptingShapeSerializer.js +33 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/protocols/serde/ToStringShapeSerializer.js +91 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/protocols/serde/determineTimestampFormat.js +19 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/schema/TypeRegistry.js +84 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/schema/deref.js +6 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/schema/index.js +14 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/schema/middleware/getSchemaSerdePlugin.js +23 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schema-middleware-types.js +1 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaDeserializationMiddleware.js +65 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaSerializationMiddleware.js +19 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/schema/schemas/ErrorSchema.js +15 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/schema/schemas/ListSchema.js +14 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/schema/schemas/MapSchema.js +16 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/schema/schemas/NormalizedSchema.js +303 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/schema/schemas/OperationSchema.js +16 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/schema/schemas/Schema.js +20 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/schema/schemas/SimpleSchema.js +20 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/schema/schemas/StructureSchema.js +16 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/schema/schemas/operation.js +7 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/schema/schemas/sentinels.js +16 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/schema/schemas/translateTraits.js +26 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/serde/copyDocumentWithTransform.js +1 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/serde/date-utils.js +190 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/serde/generateIdempotencyToken.js +2 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/serde/index.js +10 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/serde/lazy-json.js +24 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/serde/parse-utils.js +230 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/serde/quote-header.js +6 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/serde/schema-serde-lib/schema-date-utils.js +101 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/serde/split-every.js +27 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/serde/split-header.js +37 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/submodules/serde/value/NumericValue.js +25 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/util-identity-and-auth/DefaultIdentityProviderConfig.js +13 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.js +34 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.js +11 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/index.js +3 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/noAuth.js +5 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/util-identity-and-auth/index.js +3 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-es/util-identity-and-auth/memoizeIdentityProvider.js +55 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/getSmithyContext.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/index.d.ts +8 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.d.ts +18 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/getHttpAuthSchemePlugin.d.ts +18 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/httpAuthSchemeMiddleware.d.ts +33 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/index.d.ts +3 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/resolveAuthOptions.d.ts +10 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/middleware-http-signing/getHttpSigningMiddleware.d.ts +9 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/middleware-http-signing/httpSigningMiddleware.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/middleware-http-signing/index.d.ts +2 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/normalizeProvider.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/pagination/createPaginator.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/request-builder/requestBuilder.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/setFeature.d.ts +12 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/cbor/CborCodec.d.ts +33 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/cbor/SmithyRpcV2CborProtocol.d.ts +28 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/cbor/byte-printer.d.ts +6 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-decode.d.ts +17 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-encode.d.ts +9 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-types.d.ts +62 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/cbor/cbor.d.ts +26 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/cbor/index.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/cbor/parseCborBody.d.ts +31 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/endpoints/index.d.ts +1 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/endpoints/toEndpointV1.d.ts +6 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/event-streams/EventStreamSerde.d.ts +60 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/event-streams/index.d.ts +1 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/protocols/HttpBindingProtocol.d.ts +31 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/protocols/HttpProtocol.d.ts +89 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/protocols/RpcProtocol.d.ts +16 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/protocols/SerdeContext.d.ts +16 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/protocols/collect-stream-body.d.ts +10 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/protocols/extended-encode-uri-component.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/protocols/index.d.ts +13 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/protocols/requestBuilder.d.ts +51 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/protocols/resolve-path.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/protocols/serde/FromStringShapeDeserializer.d.ts +13 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/protocols/serde/HttpInterceptingShapeDeserializer.d.ts +21 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/protocols/serde/HttpInterceptingShapeSerializer.d.ts +23 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/protocols/serde/ToStringShapeSerializer.d.ts +14 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/protocols/serde/determineTimestampFormat.d.ts +9 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/schema/TypeRegistry.d.ts +71 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/schema/deref.d.ts +6 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/schema/index.d.ts +14 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/schema/middleware/getSchemaSerdePlugin.d.ts +14 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/schema/middleware/schema-middleware-types.d.ts +8 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/schema/middleware/schemaDeserializationMiddleware.d.ts +9 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/schema/middleware/schemaSerializationMiddleware.d.ts +6 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/schema/schemas/ErrorSchema.d.ts +37 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/schema/schemas/ListSchema.d.ts +23 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/schema/schemas/MapSchema.d.ts +24 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/schema/schemas/NormalizedSchema.d.ts +143 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/schema/schemas/OperationSchema.d.ts +23 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/schema/schemas/Schema.d.ts +16 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/schema/schemas/SimpleSchema.d.ts +28 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/schema/schemas/StructureSchema.d.ts +23 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/schema/schemas/operation.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/schema/schemas/sentinels.d.ts +23 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/schema/schemas/translateTraits.d.ts +13 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/serde/copyDocumentWithTransform.d.ts +6 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/serde/date-utils.d.ts +73 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/serde/generateIdempotencyToken.d.ts +2 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/serde/index.d.ts +10 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/serde/lazy-json.d.ts +45 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/serde/parse-utils.d.ts +270 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/serde/quote-header.d.ts +6 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/serde/schema-serde-lib/schema-date-utils.d.ts +47 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/serde/split-every.d.ts +11 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/serde/split-header.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/submodules/serde/value/NumericValue.d.ts +33 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/getSmithyContext.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/index.d.ts +8 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.d.ts +18 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/getHttpAuthSchemePlugin.d.ts +18 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/httpAuthSchemeMiddleware.d.ts +33 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/index.d.ts +3 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/resolveAuthOptions.d.ts +10 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-signing/getHttpSigningMiddleware.d.ts +9 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-signing/httpSigningMiddleware.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-signing/index.d.ts +2 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/normalizeProvider.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/pagination/createPaginator.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/request-builder/requestBuilder.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/setFeature.d.ts +12 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/CborCodec.d.ts +33 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/SmithyRpcV2CborProtocol.d.ts +28 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/byte-printer.d.ts +6 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor-decode.d.ts +17 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor-encode.d.ts +9 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor-types.d.ts +65 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor.d.ts +26 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/index.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/parseCborBody.d.ts +31 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/index.d.ts +1 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/endpoints/toEndpointV1.d.ts +6 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/EventStreamSerde.d.ts +60 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/index.d.ts +1 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/HttpBindingProtocol.d.ts +31 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/HttpProtocol.d.ts +89 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/RpcProtocol.d.ts +16 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/SerdeContext.d.ts +16 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/collect-stream-body.d.ts +10 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/extended-encode-uri-component.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/index.d.ts +13 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/requestBuilder.d.ts +51 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/resolve-path.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/FromStringShapeDeserializer.d.ts +13 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/HttpInterceptingShapeDeserializer.d.ts +21 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/HttpInterceptingShapeSerializer.d.ts +23 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/ToStringShapeSerializer.d.ts +14 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/determineTimestampFormat.d.ts +9 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/TypeRegistry.d.ts +71 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/deref.d.ts +6 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/index.d.ts +14 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/getSchemaSerdePlugin.d.ts +14 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/schema-middleware-types.d.ts +11 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/schemaDeserializationMiddleware.d.ts +9 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/schemaSerializationMiddleware.d.ts +6 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/ErrorSchema.d.ts +37 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/ListSchema.d.ts +23 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/MapSchema.d.ts +24 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/NormalizedSchema.d.ts +146 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/OperationSchema.d.ts +23 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/Schema.d.ts +16 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/SimpleSchema.d.ts +28 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/StructureSchema.d.ts +23 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/operation.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/sentinels.d.ts +23 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/translateTraits.d.ts +13 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/copyDocumentWithTransform.d.ts +6 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/date-utils.d.ts +73 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/generateIdempotencyToken.d.ts +2 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/index.d.ts +10 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/lazy-json.d.ts +45 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/parse-utils.d.ts +270 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/quote-header.d.ts +6 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/schema-serde-lib/schema-date-utils.d.ts +47 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/split-every.d.ts +11 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/split-header.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/value/NumericValue.d.ts +33 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/DefaultIdentityProviderConfig.d.ts +15 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.d.ts +8 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.d.ts +8 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/index.d.ts +3 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/noAuth.d.ts +8 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/index.d.ts +3 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/memoizeIdentityProvider.d.ts +30 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/util-identity-and-auth/DefaultIdentityProviderConfig.d.ts +15 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.d.ts +8 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.d.ts +8 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/index.d.ts +3 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/noAuth.d.ts +8 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/util-identity-and-auth/index.d.ts +3 -0
- package/aws/video-agent/node_modules/@smithy/core/dist-types/util-identity-and-auth/memoizeIdentityProvider.d.ts +30 -0
- package/aws/video-agent/node_modules/@smithy/core/endpoints.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/core/endpoints.js +6 -0
- package/aws/video-agent/node_modules/@smithy/core/event-streams.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/core/event-streams.js +6 -0
- package/aws/video-agent/node_modules/@smithy/core/package.json +146 -0
- package/aws/video-agent/node_modules/@smithy/core/protocols.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/core/protocols.js +6 -0
- package/aws/video-agent/node_modules/@smithy/core/schema.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/core/schema.js +6 -0
- package/aws/video-agent/node_modules/@smithy/core/serde.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/core/serde.js +6 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/LICENSE +201 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/README.md +11 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-cjs/index.js +372 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-es/config/Endpoint.js +5 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-es/config/EndpointConfigOptions.js +7 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-es/config/EndpointMode.js +5 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-es/config/EndpointModeConfigOptions.js +8 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-es/error/InstanceMetadataV1FallbackError.js +10 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-es/fromContainerMetadata.js +77 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-es/fromInstanceMetadata.js +134 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-es/index.js +7 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/ImdsCredentials.js +13 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/RemoteProviderInit.js +3 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/httpRequest.js +36 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/index.js +2 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/retry.js +7 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-es/types.js +1 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-es/utils/getExtendedInstanceMetadataCredentials.js +17 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-es/utils/getInstanceMetadataEndpoint.js +19 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-es/utils/staticStabilityProvider.js +25 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-types/config/Endpoint.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointConfigOptions.d.ts +13 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointMode.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointModeConfigOptions.d.ts +13 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-types/error/InstanceMetadataV1FallbackError.d.ts +12 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-types/fromContainerMetadata.d.ts +21 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-types/fromInstanceMetadata.d.ts +10 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-types/index.d.ts +28 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/ImdsCredentials.d.ts +19 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/RemoteProviderInit.d.ts +40 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/httpRequest.d.ts +6 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/index.d.ts +8 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/retry.d.ts +10 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/Endpoint.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointConfigOptions.d.ts +13 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointMode.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointModeConfigOptions.d.ts +13 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/error/InstanceMetadataV1FallbackError.d.ts +12 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/fromContainerMetadata.d.ts +21 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/fromInstanceMetadata.d.ts +10 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/index.d.ts +28 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/ImdsCredentials.d.ts +19 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/RemoteProviderInit.d.ts +40 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/httpRequest.d.ts +6 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/index.d.ts +8 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/retry.d.ts +10 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/types.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/getExtendedInstanceMetadataCredentials.d.ts +6 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/getInstanceMetadataEndpoint.d.ts +21 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/staticStabilityProvider.d.ts +16 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-types/types.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-types/utils/getExtendedInstanceMetadataCredentials.d.ts +6 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-types/utils/getInstanceMetadataEndpoint.d.ts +21 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/dist-types/utils/staticStabilityProvider.d.ts +16 -0
- package/aws/video-agent/node_modules/@smithy/credential-provider-imds/package.json +70 -0
- package/aws/video-agent/node_modules/@smithy/fetch-http-handler/LICENSE +201 -0
- package/aws/video-agent/node_modules/@smithy/fetch-http-handler/README.md +11 -0
- package/aws/video-agent/node_modules/@smithy/fetch-http-handler/dist-cjs/index.js +233 -0
- package/aws/video-agent/node_modules/@smithy/fetch-http-handler/dist-es/create-request.js +3 -0
- package/aws/video-agent/node_modules/@smithy/fetch-http-handler/dist-es/fetch-http-handler.js +158 -0
- package/aws/video-agent/node_modules/@smithy/fetch-http-handler/dist-es/index.js +2 -0
- package/aws/video-agent/node_modules/@smithy/fetch-http-handler/dist-es/request-timeout.js +11 -0
- package/aws/video-agent/node_modules/@smithy/fetch-http-handler/dist-es/stream-collector.js +53 -0
- package/aws/video-agent/node_modules/@smithy/fetch-http-handler/dist-types/create-request.d.ts +6 -0
- package/aws/video-agent/node_modules/@smithy/fetch-http-handler/dist-types/fetch-http-handler.d.ts +42 -0
- package/aws/video-agent/node_modules/@smithy/fetch-http-handler/dist-types/index.d.ts +2 -0
- package/aws/video-agent/node_modules/@smithy/fetch-http-handler/dist-types/request-timeout.d.ts +1 -0
- package/aws/video-agent/node_modules/@smithy/fetch-http-handler/dist-types/stream-collector.d.ts +2 -0
- package/aws/video-agent/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/create-request.d.ts +6 -0
- package/aws/video-agent/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/fetch-http-handler.d.ts +42 -0
- package/aws/video-agent/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/index.d.ts +2 -0
- package/aws/video-agent/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/request-timeout.d.ts +1 -0
- package/aws/video-agent/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/stream-collector.d.ts +2 -0
- package/aws/video-agent/node_modules/@smithy/fetch-http-handler/package.json +69 -0
- package/aws/video-agent/node_modules/@smithy/hash-node/LICENSE +201 -0
- package/aws/video-agent/node_modules/@smithy/hash-node/README.md +10 -0
- package/aws/video-agent/node_modules/@smithy/hash-node/dist-cjs/index.js +42 -0
- package/aws/video-agent/node_modules/@smithy/hash-node/dist-es/index.js +37 -0
- package/aws/video-agent/node_modules/@smithy/hash-node/dist-types/index.d.ts +13 -0
- package/aws/video-agent/node_modules/@smithy/hash-node/dist-types/ts3.4/index.d.ts +13 -0
- package/aws/video-agent/node_modules/@smithy/hash-node/package.json +65 -0
- package/aws/video-agent/node_modules/@smithy/invalid-dependency/LICENSE +201 -0
- package/aws/video-agent/node_modules/@smithy/invalid-dependency/README.md +10 -0
- package/aws/video-agent/node_modules/@smithy/invalid-dependency/dist-cjs/index.js +10 -0
- package/aws/video-agent/node_modules/@smithy/invalid-dependency/dist-es/index.js +2 -0
- package/aws/video-agent/node_modules/@smithy/invalid-dependency/dist-es/invalidFunction.js +3 -0
- package/aws/video-agent/node_modules/@smithy/invalid-dependency/dist-es/invalidProvider.js +1 -0
- package/aws/video-agent/node_modules/@smithy/invalid-dependency/dist-types/index.d.ts +8 -0
- package/aws/video-agent/node_modules/@smithy/invalid-dependency/dist-types/invalidFunction.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/invalid-dependency/dist-types/invalidProvider.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/invalid-dependency/dist-types/ts3.4/index.d.ts +8 -0
- package/aws/video-agent/node_modules/@smithy/invalid-dependency/dist-types/ts3.4/invalidFunction.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/invalid-dependency/dist-types/ts3.4/invalidProvider.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/invalid-dependency/package.json +61 -0
- package/aws/video-agent/node_modules/@smithy/is-array-buffer/LICENSE +201 -0
- package/aws/video-agent/node_modules/@smithy/is-array-buffer/README.md +10 -0
- package/aws/video-agent/node_modules/@smithy/is-array-buffer/dist-cjs/index.js +6 -0
- package/aws/video-agent/node_modules/@smithy/is-array-buffer/dist-es/index.js +2 -0
- package/aws/video-agent/node_modules/@smithy/is-array-buffer/dist-types/index.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/is-array-buffer/dist-types/ts3.4/index.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/is-array-buffer/package.json +61 -0
- package/aws/video-agent/node_modules/@smithy/middleware-content-length/LICENSE +201 -0
- package/aws/video-agent/node_modules/@smithy/middleware-content-length/README.md +4 -0
- package/aws/video-agent/node_modules/@smithy/middleware-content-length/dist-cjs/index.js +46 -0
- package/aws/video-agent/node_modules/@smithy/middleware-content-length/dist-es/index.js +39 -0
- package/aws/video-agent/node_modules/@smithy/middleware-content-length/dist-types/index.d.ts +6 -0
- package/aws/video-agent/node_modules/@smithy/middleware-content-length/dist-types/ts3.4/index.d.ts +6 -0
- package/aws/video-agent/node_modules/@smithy/middleware-content-length/package.json +64 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/LICENSE +201 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/README.md +10 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromConfig.browser.js +5 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromConfig.js +7 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointUrlConfig.js +35 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/dist-cjs/index.js +264 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/createConfigValueProvider.js +50 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromConfig.browser.js +1 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromConfig.js +3 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromInstructions.js +64 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointUrlConfig.js +31 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/index.js +2 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/toEndpointV1.js +17 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/dist-es/endpointMiddleware.js +36 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/dist-es/getEndpointPlugin.js +18 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/dist-es/index.js +6 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/dist-es/resolveEndpointConfig.js +24 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/dist-es/resolveEndpointRequiredConfig.js +9 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/dist-es/service-customizations/index.js +1 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/dist-es/service-customizations/s3.js +37 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/dist-es/types.js +1 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/createConfigValueProvider.d.ts +14 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromConfig.browser.d.ts +1 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromConfig.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromInstructions.d.ts +28 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointUrlConfig.d.ts +2 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/index.d.ts +8 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/toEndpointV1.d.ts +6 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/dist-types/endpointMiddleware.d.ts +10 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/dist-types/getEndpointPlugin.d.ts +11 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/dist-types/index.d.ts +18 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/dist-types/resolveEndpointConfig.d.ts +109 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/dist-types/resolveEndpointRequiredConfig.d.ts +32 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/dist-types/service-customizations/index.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/dist-types/service-customizations/s3.d.ts +26 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/createConfigValueProvider.d.ts +14 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointFromConfig.browser.d.ts +1 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointFromConfig.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointFromInstructions.d.ts +28 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointUrlConfig.d.ts +2 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/index.d.ts +8 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/toEndpointV1.d.ts +6 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/endpointMiddleware.d.ts +10 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/getEndpointPlugin.d.ts +11 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/index.d.ts +18 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/resolveEndpointConfig.d.ts +109 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/resolveEndpointRequiredConfig.d.ts +32 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/service-customizations/index.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/service-customizations/s3.d.ts +26 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/types.d.ts +41 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/dist-types/types.d.ts +41 -0
- package/aws/video-agent/node_modules/@smithy/middleware-endpoint/package.json +75 -0
- package/aws/video-agent/node_modules/@smithy/middleware-retry/LICENSE +201 -0
- package/aws/video-agent/node_modules/@smithy/middleware-retry/README.md +11 -0
- package/aws/video-agent/node_modules/@smithy/middleware-retry/dist-cjs/index.js +355 -0
- package/aws/video-agent/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.browser.js +5 -0
- package/aws/video-agent/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.js +7 -0
- package/aws/video-agent/node_modules/@smithy/middleware-retry/dist-es/AdaptiveRetryStrategy.js +21 -0
- package/aws/video-agent/node_modules/@smithy/middleware-retry/dist-es/StandardRetryStrategy.js +94 -0
- package/aws/video-agent/node_modules/@smithy/middleware-retry/dist-es/configurations.js +48 -0
- package/aws/video-agent/node_modules/@smithy/middleware-retry/dist-es/defaultRetryQuota.js +27 -0
- package/aws/video-agent/node_modules/@smithy/middleware-retry/dist-es/delayDecider.js +2 -0
- package/aws/video-agent/node_modules/@smithy/middleware-retry/dist-es/index.js +7 -0
- package/aws/video-agent/node_modules/@smithy/middleware-retry/dist-es/isStreamingPayload/isStreamingPayload.browser.js +1 -0
- package/aws/video-agent/node_modules/@smithy/middleware-retry/dist-es/isStreamingPayload/isStreamingPayload.js +3 -0
- package/aws/video-agent/node_modules/@smithy/middleware-retry/dist-es/omitRetryHeadersMiddleware.js +22 -0
- package/aws/video-agent/node_modules/@smithy/middleware-retry/dist-es/retryDecider.js +7 -0
- package/aws/video-agent/node_modules/@smithy/middleware-retry/dist-es/retryMiddleware.js +112 -0
- package/aws/video-agent/node_modules/@smithy/middleware-retry/dist-es/types.js +1 -0
- package/aws/video-agent/node_modules/@smithy/middleware-retry/dist-es/util.js +9 -0
- package/aws/video-agent/node_modules/@smithy/middleware-retry/dist-types/AdaptiveRetryStrategy.d.ts +23 -0
- package/aws/video-agent/node_modules/@smithy/middleware-retry/dist-types/StandardRetryStrategy.d.ts +33 -0
- package/aws/video-agent/node_modules/@smithy/middleware-retry/dist-types/configurations.d.ts +66 -0
- package/aws/video-agent/node_modules/@smithy/middleware-retry/dist-types/defaultRetryQuota.d.ts +24 -0
- package/aws/video-agent/node_modules/@smithy/middleware-retry/dist-types/delayDecider.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/middleware-retry/dist-types/index.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/middleware-retry/dist-types/isStreamingPayload/isStreamingPayload.browser.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/middleware-retry/dist-types/isStreamingPayload/isStreamingPayload.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/middleware-retry/dist-types/omitRetryHeadersMiddleware.d.ts +13 -0
- package/aws/video-agent/node_modules/@smithy/middleware-retry/dist-types/retryDecider.d.ts +6 -0
- package/aws/video-agent/node_modules/@smithy/middleware-retry/dist-types/retryMiddleware.d.ts +18 -0
- package/aws/video-agent/node_modules/@smithy/middleware-retry/dist-types/ts3.4/AdaptiveRetryStrategy.d.ts +23 -0
- package/aws/video-agent/node_modules/@smithy/middleware-retry/dist-types/ts3.4/StandardRetryStrategy.d.ts +33 -0
- package/aws/video-agent/node_modules/@smithy/middleware-retry/dist-types/ts3.4/configurations.d.ts +66 -0
- package/aws/video-agent/node_modules/@smithy/middleware-retry/dist-types/ts3.4/defaultRetryQuota.d.ts +24 -0
- package/aws/video-agent/node_modules/@smithy/middleware-retry/dist-types/ts3.4/delayDecider.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/middleware-retry/dist-types/ts3.4/index.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/middleware-retry/dist-types/ts3.4/isStreamingPayload/isStreamingPayload.browser.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/middleware-retry/dist-types/ts3.4/isStreamingPayload/isStreamingPayload.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/middleware-retry/dist-types/ts3.4/omitRetryHeadersMiddleware.d.ts +13 -0
- package/aws/video-agent/node_modules/@smithy/middleware-retry/dist-types/ts3.4/retryDecider.d.ts +6 -0
- package/aws/video-agent/node_modules/@smithy/middleware-retry/dist-types/ts3.4/retryMiddleware.d.ts +18 -0
- package/aws/video-agent/node_modules/@smithy/middleware-retry/dist-types/ts3.4/types.d.ts +65 -0
- package/aws/video-agent/node_modules/@smithy/middleware-retry/dist-types/ts3.4/util.d.ts +2 -0
- package/aws/video-agent/node_modules/@smithy/middleware-retry/dist-types/types.d.ts +65 -0
- package/aws/video-agent/node_modules/@smithy/middleware-retry/dist-types/util.d.ts +2 -0
- package/aws/video-agent/node_modules/@smithy/middleware-retry/package.json +79 -0
- package/aws/video-agent/node_modules/@smithy/middleware-serde/LICENSE +201 -0
- package/aws/video-agent/node_modules/@smithy/middleware-serde/README.md +4 -0
- package/aws/video-agent/node_modules/@smithy/middleware-serde/dist-cjs/index.js +104 -0
- package/aws/video-agent/node_modules/@smithy/middleware-serde/dist-es/deserializerMiddleware.js +58 -0
- package/aws/video-agent/node_modules/@smithy/middleware-serde/dist-es/index.js +3 -0
- package/aws/video-agent/node_modules/@smithy/middleware-serde/dist-es/serdePlugin.js +22 -0
- package/aws/video-agent/node_modules/@smithy/middleware-serde/dist-es/serializerMiddleware.js +15 -0
- package/aws/video-agent/node_modules/@smithy/middleware-serde/dist-types/deserializerMiddleware.d.ts +6 -0
- package/aws/video-agent/node_modules/@smithy/middleware-serde/dist-types/index.d.ts +3 -0
- package/aws/video-agent/node_modules/@smithy/middleware-serde/dist-types/serdePlugin.d.ts +24 -0
- package/aws/video-agent/node_modules/@smithy/middleware-serde/dist-types/serializerMiddleware.d.ts +6 -0
- package/aws/video-agent/node_modules/@smithy/middleware-serde/dist-types/ts3.4/deserializerMiddleware.d.ts +6 -0
- package/aws/video-agent/node_modules/@smithy/middleware-serde/dist-types/ts3.4/index.d.ts +3 -0
- package/aws/video-agent/node_modules/@smithy/middleware-serde/dist-types/ts3.4/serdePlugin.d.ts +24 -0
- package/aws/video-agent/node_modules/@smithy/middleware-serde/dist-types/ts3.4/serializerMiddleware.d.ts +6 -0
- package/aws/video-agent/node_modules/@smithy/middleware-serde/package.json +66 -0
- package/aws/video-agent/node_modules/@smithy/middleware-stack/LICENSE +201 -0
- package/aws/video-agent/node_modules/@smithy/middleware-stack/README.md +78 -0
- package/aws/video-agent/node_modules/@smithy/middleware-stack/dist-cjs/index.js +285 -0
- package/aws/video-agent/node_modules/@smithy/middleware-stack/dist-es/MiddlewareStack.js +281 -0
- package/aws/video-agent/node_modules/@smithy/middleware-stack/dist-es/index.js +1 -0
- package/aws/video-agent/node_modules/@smithy/middleware-stack/dist-es/types.js +1 -0
- package/aws/video-agent/node_modules/@smithy/middleware-stack/dist-types/MiddlewareStack.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/middleware-stack/dist-types/index.d.ts +1 -0
- package/aws/video-agent/node_modules/@smithy/middleware-stack/dist-types/ts3.4/MiddlewareStack.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/middleware-stack/dist-types/ts3.4/index.d.ts +1 -0
- package/aws/video-agent/node_modules/@smithy/middleware-stack/dist-types/ts3.4/types.d.ts +22 -0
- package/aws/video-agent/node_modules/@smithy/middleware-stack/dist-types/types.d.ts +22 -0
- package/aws/video-agent/node_modules/@smithy/middleware-stack/package.json +64 -0
- package/aws/video-agent/node_modules/@smithy/node-config-provider/LICENSE +201 -0
- package/aws/video-agent/node_modules/@smithy/node-config-provider/README.md +10 -0
- package/aws/video-agent/node_modules/@smithy/node-config-provider/dist-cjs/index.js +62 -0
- package/aws/video-agent/node_modules/@smithy/node-config-provider/dist-es/configLoader.js +9 -0
- package/aws/video-agent/node_modules/@smithy/node-config-provider/dist-es/fromEnv.js +14 -0
- package/aws/video-agent/node_modules/@smithy/node-config-provider/dist-es/fromSharedConfigFiles.js +23 -0
- package/aws/video-agent/node_modules/@smithy/node-config-provider/dist-es/fromStatic.js +3 -0
- package/aws/video-agent/node_modules/@smithy/node-config-provider/dist-es/getSelectorName.js +12 -0
- package/aws/video-agent/node_modules/@smithy/node-config-provider/dist-es/index.js +1 -0
- package/aws/video-agent/node_modules/@smithy/node-config-provider/dist-types/configLoader.d.ts +31 -0
- package/aws/video-agent/node_modules/@smithy/node-config-provider/dist-types/fromEnv.d.ts +20 -0
- package/aws/video-agent/node_modules/@smithy/node-config-provider/dist-types/fromSharedConfigFiles.d.ts +22 -0
- package/aws/video-agent/node_modules/@smithy/node-config-provider/dist-types/fromStatic.d.ts +9 -0
- package/aws/video-agent/node_modules/@smithy/node-config-provider/dist-types/getSelectorName.d.ts +9 -0
- package/aws/video-agent/node_modules/@smithy/node-config-provider/dist-types/index.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/node-config-provider/dist-types/ts3.4/configLoader.d.ts +31 -0
- package/aws/video-agent/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromEnv.d.ts +20 -0
- package/aws/video-agent/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromSharedConfigFiles.d.ts +22 -0
- package/aws/video-agent/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromStatic.d.ts +9 -0
- package/aws/video-agent/node_modules/@smithy/node-config-provider/dist-types/ts3.4/getSelectorName.d.ts +9 -0
- package/aws/video-agent/node_modules/@smithy/node-config-provider/dist-types/ts3.4/index.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/node-config-provider/package.json +66 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/LICENSE +201 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/README.md +9 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-cjs/index.js +755 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-es/build-abort-error.js +19 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-es/constants.js +1 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-es/get-transformed-headers.js +9 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-es/index.js +3 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js +223 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +87 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-pool.js +32 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +169 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-es/readable.mock.js +21 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-es/server.mock.js +88 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-es/set-connection-timeout.js +36 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-es/set-request-timeout.js +21 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-es/set-socket-keep-alive.js +22 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-es/set-socket-timeout.js +23 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-es/stream-collector/collector.js +8 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-es/stream-collector/index.js +41 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-es/stream-collector/readable.mock.js +21 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-es/timing.js +4 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-es/write-request-body.js +63 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-types/build-abort-error.d.ts +10 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-types/constants.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-types/get-transformed-headers.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-types/index.d.ts +3 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +46 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +24 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-pool.d.ts +12 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts +63 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-types/readable.mock.d.ts +13 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-types/server.mock.d.ts +12 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-types/set-connection-timeout.d.ts +2 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-types/set-request-timeout.d.ts +6 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-types/set-socket-keep-alive.d.ts +6 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-types/set-socket-timeout.d.ts +2 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-types/stream-collector/collector.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts +6 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +13 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-types/timing.d.ts +8 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-types/ts3.4/build-abort-error.d.ts +10 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-types/ts3.4/constants.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-types/ts3.4/get-transformed-headers.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-types/ts3.4/index.d.ts +3 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http-handler.d.ts +46 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-manager.d.ts +24 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-pool.d.ts +12 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-handler.d.ts +63 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-types/ts3.4/readable.mock.d.ts +13 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-types/ts3.4/server.mock.d.ts +12 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-connection-timeout.d.ts +2 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-request-timeout.d.ts +6 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-keep-alive.d.ts +6 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-timeout.d.ts +2 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/collector.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/index.d.ts +6 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/readable.mock.d.ts +13 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-types/ts3.4/timing.d.ts +8 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-types/ts3.4/write-request-body.d.ts +12 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/dist-types/write-request-body.d.ts +12 -0
- package/aws/video-agent/node_modules/@smithy/node-http-handler/package.json +68 -0
- package/aws/video-agent/node_modules/@smithy/property-provider/LICENSE +201 -0
- package/aws/video-agent/node_modules/@smithy/property-provider/README.md +10 -0
- package/aws/video-agent/node_modules/@smithy/property-provider/dist-cjs/index.js +117 -0
- package/aws/video-agent/node_modules/@smithy/property-provider/dist-es/CredentialsProviderError.js +8 -0
- package/aws/video-agent/node_modules/@smithy/property-provider/dist-es/ProviderError.js +23 -0
- package/aws/video-agent/node_modules/@smithy/property-provider/dist-es/TokenProviderError.js +8 -0
- package/aws/video-agent/node_modules/@smithy/property-provider/dist-es/chain.js +21 -0
- package/aws/video-agent/node_modules/@smithy/property-provider/dist-es/fromStatic.js +1 -0
- package/aws/video-agent/node_modules/@smithy/property-provider/dist-es/index.js +6 -0
- package/aws/video-agent/node_modules/@smithy/property-provider/dist-es/memoize.js +45 -0
- package/aws/video-agent/node_modules/@smithy/property-provider/dist-types/CredentialsProviderError.d.ts +31 -0
- package/aws/video-agent/node_modules/@smithy/property-provider/dist-types/ProviderError.d.ts +39 -0
- package/aws/video-agent/node_modules/@smithy/property-provider/dist-types/TokenProviderError.d.ts +31 -0
- package/aws/video-agent/node_modules/@smithy/property-provider/dist-types/chain.d.ts +13 -0
- package/aws/video-agent/node_modules/@smithy/property-provider/dist-types/fromStatic.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/property-provider/dist-types/index.d.ts +24 -0
- package/aws/video-agent/node_modules/@smithy/property-provider/dist-types/memoize.d.ts +40 -0
- package/aws/video-agent/node_modules/@smithy/property-provider/dist-types/ts3.4/CredentialsProviderError.d.ts +31 -0
- package/aws/video-agent/node_modules/@smithy/property-provider/dist-types/ts3.4/ProviderError.d.ts +39 -0
- package/aws/video-agent/node_modules/@smithy/property-provider/dist-types/ts3.4/TokenProviderError.d.ts +31 -0
- package/aws/video-agent/node_modules/@smithy/property-provider/dist-types/ts3.4/chain.d.ts +13 -0
- package/aws/video-agent/node_modules/@smithy/property-provider/dist-types/ts3.4/fromStatic.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/property-provider/dist-types/ts3.4/index.d.ts +24 -0
- package/aws/video-agent/node_modules/@smithy/property-provider/dist-types/ts3.4/memoize.d.ts +40 -0
- package/aws/video-agent/node_modules/@smithy/property-provider/package.json +61 -0
- package/aws/video-agent/node_modules/@smithy/protocol-http/LICENSE +201 -0
- package/aws/video-agent/node_modules/@smithy/protocol-http/README.md +4 -0
- package/aws/video-agent/node_modules/@smithy/protocol-http/dist-cjs/index.js +169 -0
- package/aws/video-agent/node_modules/@smithy/protocol-http/dist-es/Field.js +26 -0
- package/aws/video-agent/node_modules/@smithy/protocol-http/dist-es/Fields.js +20 -0
- package/aws/video-agent/node_modules/@smithy/protocol-http/dist-es/extensions/httpExtensionConfiguration.js +21 -0
- package/aws/video-agent/node_modules/@smithy/protocol-http/dist-es/extensions/index.js +1 -0
- package/aws/video-agent/node_modules/@smithy/protocol-http/dist-es/httpHandler.js +1 -0
- package/aws/video-agent/node_modules/@smithy/protocol-http/dist-es/httpRequest.js +64 -0
- package/aws/video-agent/node_modules/@smithy/protocol-http/dist-es/httpResponse.js +18 -0
- package/aws/video-agent/node_modules/@smithy/protocol-http/dist-es/index.js +8 -0
- package/aws/video-agent/node_modules/@smithy/protocol-http/dist-es/isValidHostname.js +4 -0
- package/aws/video-agent/node_modules/@smithy/protocol-http/dist-es/types.js +1 -0
- package/aws/video-agent/node_modules/@smithy/protocol-http/dist-types/Field.d.ts +50 -0
- package/aws/video-agent/node_modules/@smithy/protocol-http/dist-types/Fields.d.ts +44 -0
- package/aws/video-agent/node_modules/@smithy/protocol-http/dist-types/extensions/httpExtensionConfiguration.d.ts +33 -0
- package/aws/video-agent/node_modules/@smithy/protocol-http/dist-types/extensions/index.d.ts +1 -0
- package/aws/video-agent/node_modules/@smithy/protocol-http/dist-types/httpHandler.d.ts +35 -0
- package/aws/video-agent/node_modules/@smithy/protocol-http/dist-types/httpRequest.d.ts +56 -0
- package/aws/video-agent/node_modules/@smithy/protocol-http/dist-types/httpResponse.d.ts +29 -0
- package/aws/video-agent/node_modules/@smithy/protocol-http/dist-types/index.d.ts +8 -0
- package/aws/video-agent/node_modules/@smithy/protocol-http/dist-types/isValidHostname.d.ts +1 -0
- package/aws/video-agent/node_modules/@smithy/protocol-http/dist-types/ts3.4/Field.d.ts +50 -0
- package/aws/video-agent/node_modules/@smithy/protocol-http/dist-types/ts3.4/Fields.d.ts +44 -0
- package/aws/video-agent/node_modules/@smithy/protocol-http/dist-types/ts3.4/extensions/httpExtensionConfiguration.d.ts +33 -0
- package/aws/video-agent/node_modules/@smithy/protocol-http/dist-types/ts3.4/extensions/index.d.ts +1 -0
- package/aws/video-agent/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpHandler.d.ts +35 -0
- package/aws/video-agent/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpRequest.d.ts +56 -0
- package/aws/video-agent/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpResponse.d.ts +29 -0
- package/aws/video-agent/node_modules/@smithy/protocol-http/dist-types/ts3.4/index.d.ts +8 -0
- package/aws/video-agent/node_modules/@smithy/protocol-http/dist-types/ts3.4/isValidHostname.d.ts +1 -0
- package/aws/video-agent/node_modules/@smithy/protocol-http/dist-types/ts3.4/types.d.ts +21 -0
- package/aws/video-agent/node_modules/@smithy/protocol-http/dist-types/types.d.ts +21 -0
- package/aws/video-agent/node_modules/@smithy/protocol-http/package.json +62 -0
- package/aws/video-agent/node_modules/@smithy/querystring-builder/LICENSE +201 -0
- package/aws/video-agent/node_modules/@smithy/querystring-builder/README.md +10 -0
- package/aws/video-agent/node_modules/@smithy/querystring-builder/dist-cjs/index.js +26 -0
- package/aws/video-agent/node_modules/@smithy/querystring-builder/dist-es/index.js +21 -0
- package/aws/video-agent/node_modules/@smithy/querystring-builder/dist-types/index.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/querystring-builder/dist-types/ts3.4/index.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/querystring-builder/package.json +61 -0
- package/aws/video-agent/node_modules/@smithy/querystring-parser/LICENSE +201 -0
- package/aws/video-agent/node_modules/@smithy/querystring-parser/README.md +10 -0
- package/aws/video-agent/node_modules/@smithy/querystring-parser/dist-cjs/index.js +27 -0
- package/aws/video-agent/node_modules/@smithy/querystring-parser/dist-es/index.js +23 -0
- package/aws/video-agent/node_modules/@smithy/querystring-parser/dist-types/index.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/querystring-parser/dist-types/ts3.4/index.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/querystring-parser/package.json +61 -0
- package/aws/video-agent/node_modules/@smithy/service-error-classification/LICENSE +201 -0
- package/aws/video-agent/node_modules/@smithy/service-error-classification/README.md +4 -0
- package/aws/video-agent/node_modules/@smithy/service-error-classification/dist-cjs/index.js +77 -0
- package/aws/video-agent/node_modules/@smithy/service-error-classification/dist-es/constants.js +28 -0
- package/aws/video-agent/node_modules/@smithy/service-error-classification/dist-es/index.js +39 -0
- package/aws/video-agent/node_modules/@smithy/service-error-classification/dist-types/constants.d.ts +30 -0
- package/aws/video-agent/node_modules/@smithy/service-error-classification/dist-types/index.d.ts +24 -0
- package/aws/video-agent/node_modules/@smithy/service-error-classification/dist-types/ts3.4/constants.d.ts +30 -0
- package/aws/video-agent/node_modules/@smithy/service-error-classification/dist-types/ts3.4/index.d.ts +24 -0
- package/aws/video-agent/node_modules/@smithy/service-error-classification/package.json +60 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/LICENSE +201 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/README.md +105 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getHomeDir.js +26 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSSOTokenFilepath.js +12 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSSOTokenFromFile.js +15 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-cjs/index.js +196 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-cjs/readFile.js +16 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-es/constants.js +1 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-es/externalDataInterceptor.js +16 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-es/getConfigData.js +18 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-es/getConfigFilepath.js +4 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-es/getCredentialsFilepath.js +4 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-es/getHomeDir.js +22 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-es/getProfileName.js +3 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-es/getSSOTokenFilepath.js +8 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-es/getSSOTokenFromFile.js +11 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-es/getSsoSessionData.js +5 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-es/index.js +10 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-es/loadSharedConfigFiles.js +39 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-es/loadSsoSessionData.js +9 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-es/mergeConfigFiles.js +14 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-es/parseIni.js +52 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-es/parseKnownFiles.js +6 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-es/readFile.js +12 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-es/types.js +1 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-types/constants.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-types/externalDataInterceptor.d.ts +9 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-types/getConfigData.d.ts +8 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-types/getConfigFilepath.d.ts +2 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-types/getCredentialsFilepath.d.ts +2 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-types/getHomeDir.d.ts +6 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-types/getProfileName.d.ts +15 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-types/getSSOTokenFilepath.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-types/getSSOTokenFromFile.d.ts +52 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-types/getSsoSessionData.d.ts +6 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-types/index.d.ts +10 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-types/loadSharedConfigFiles.d.ts +33 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-types/loadSsoSessionData.d.ts +17 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-types/mergeConfigFiles.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-types/parseIni.d.ts +2 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-types/parseKnownFiles.d.ts +18 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-types/readFile.d.ts +21 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/constants.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/externalDataInterceptor.d.ts +9 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getConfigData.d.ts +8 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getConfigFilepath.d.ts +2 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getCredentialsFilepath.d.ts +2 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getHomeDir.d.ts +6 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getProfileName.d.ts +15 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getSSOTokenFilepath.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getSSOTokenFromFile.d.ts +52 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getSsoSessionData.d.ts +6 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/index.d.ts +10 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/loadSharedConfigFiles.d.ts +33 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/loadSsoSessionData.d.ts +17 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/mergeConfigFiles.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/parseIni.d.ts +2 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/parseKnownFiles.d.ts +18 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/readFile.d.ts +21 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/types.d.ts +16 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/dist-types/types.d.ts +16 -0
- package/aws/video-agent/node_modules/@smithy/shared-ini-file-loader/package.json +73 -0
- package/aws/video-agent/node_modules/@smithy/signature-v4/LICENSE +201 -0
- package/aws/video-agent/node_modules/@smithy/signature-v4/README.md +11 -0
- package/aws/video-agent/node_modules/@smithy/signature-v4/dist-cjs/index.js +556 -0
- package/aws/video-agent/node_modules/@smithy/signature-v4/dist-es/HeaderFormatter.js +126 -0
- package/aws/video-agent/node_modules/@smithy/signature-v4/dist-es/SignatureV4.js +135 -0
- package/aws/video-agent/node_modules/@smithy/signature-v4/dist-es/SignatureV4Base.js +79 -0
- package/aws/video-agent/node_modules/@smithy/signature-v4/dist-es/constants.js +43 -0
- package/aws/video-agent/node_modules/@smithy/signature-v4/dist-es/credentialDerivation.js +33 -0
- package/aws/video-agent/node_modules/@smithy/signature-v4/dist-es/getCanonicalHeaders.js +20 -0
- package/aws/video-agent/node_modules/@smithy/signature-v4/dist-es/getCanonicalQuery.js +29 -0
- package/aws/video-agent/node_modules/@smithy/signature-v4/dist-es/getPayloadHash.js +20 -0
- package/aws/video-agent/node_modules/@smithy/signature-v4/dist-es/headerUtil.js +26 -0
- package/aws/video-agent/node_modules/@smithy/signature-v4/dist-es/index.js +11 -0
- package/aws/video-agent/node_modules/@smithy/signature-v4/dist-es/moveHeadersToQuery.js +17 -0
- package/aws/video-agent/node_modules/@smithy/signature-v4/dist-es/prepareRequest.js +11 -0
- package/aws/video-agent/node_modules/@smithy/signature-v4/dist-es/signature-v4a-container.js +3 -0
- package/aws/video-agent/node_modules/@smithy/signature-v4/dist-es/suite.fixture.js +399 -0
- package/aws/video-agent/node_modules/@smithy/signature-v4/dist-es/utilDate.js +15 -0
- package/aws/video-agent/node_modules/@smithy/signature-v4/dist-types/HeaderFormatter.d.ts +24 -0
- package/aws/video-agent/node_modules/@smithy/signature-v4/dist-types/SignatureV4.d.ts +21 -0
- package/aws/video-agent/node_modules/@smithy/signature-v4/dist-types/SignatureV4Base.d.ts +69 -0
- package/aws/video-agent/node_modules/@smithy/signature-v4/dist-types/constants.d.ts +43 -0
- package/aws/video-agent/node_modules/@smithy/signature-v4/dist-types/credentialDerivation.d.ts +30 -0
- package/aws/video-agent/node_modules/@smithy/signature-v4/dist-types/getCanonicalHeaders.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/signature-v4/dist-types/getCanonicalQuery.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/signature-v4/dist-types/getPayloadHash.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/signature-v4/dist-types/headerUtil.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/signature-v4/dist-types/index.d.ts +11 -0
- package/aws/video-agent/node_modules/@smithy/signature-v4/dist-types/moveHeadersToQuery.d.ts +10 -0
- package/aws/video-agent/node_modules/@smithy/signature-v4/dist-types/prepareRequest.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/signature-v4/dist-types/signature-v4a-container.d.ts +24 -0
- package/aws/video-agent/node_modules/@smithy/signature-v4/dist-types/suite.fixture.d.ts +14 -0
- package/aws/video-agent/node_modules/@smithy/signature-v4/dist-types/ts3.4/HeaderFormatter.d.ts +24 -0
- package/aws/video-agent/node_modules/@smithy/signature-v4/dist-types/ts3.4/SignatureV4.d.ts +21 -0
- package/aws/video-agent/node_modules/@smithy/signature-v4/dist-types/ts3.4/SignatureV4Base.d.ts +69 -0
- package/aws/video-agent/node_modules/@smithy/signature-v4/dist-types/ts3.4/constants.d.ts +43 -0
- package/aws/video-agent/node_modules/@smithy/signature-v4/dist-types/ts3.4/credentialDerivation.d.ts +30 -0
- package/aws/video-agent/node_modules/@smithy/signature-v4/dist-types/ts3.4/getCanonicalHeaders.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/signature-v4/dist-types/ts3.4/getCanonicalQuery.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/signature-v4/dist-types/ts3.4/getPayloadHash.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/signature-v4/dist-types/ts3.4/headerUtil.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/signature-v4/dist-types/ts3.4/index.d.ts +11 -0
- package/aws/video-agent/node_modules/@smithy/signature-v4/dist-types/ts3.4/moveHeadersToQuery.d.ts +10 -0
- package/aws/video-agent/node_modules/@smithy/signature-v4/dist-types/ts3.4/prepareRequest.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/signature-v4/dist-types/ts3.4/signature-v4a-container.d.ts +24 -0
- package/aws/video-agent/node_modules/@smithy/signature-v4/dist-types/ts3.4/suite.fixture.d.ts +14 -0
- package/aws/video-agent/node_modules/@smithy/signature-v4/dist-types/ts3.4/utilDate.d.ts +2 -0
- package/aws/video-agent/node_modules/@smithy/signature-v4/dist-types/utilDate.d.ts +2 -0
- package/aws/video-agent/node_modules/@smithy/signature-v4/package.json +70 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/LICENSE +201 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/README.md +10 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-cjs/index.js +635 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-es/NoOpLogger.js +7 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-es/client.js +51 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-es/collect-stream-body.js +1 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-es/command.js +124 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-es/constants.js +1 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-es/create-aggregated-client.js +47 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-es/default-error-handler.js +22 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-es/defaults-mode.js +26 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-es/emitWarningIfUnsupportedVersion.js +6 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-es/exceptions.js +50 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-es/extended-encode-uri-component.js +1 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-es/extensions/checksum.js +49 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-es/extensions/defaultExtensionConfiguration.js +9 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-es/extensions/index.js +1 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-es/extensions/retry.js +15 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-es/get-array-if-single-item.js +1 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-es/get-value-from-text-node.js +12 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-es/index.js +20 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-es/is-serializable-header-value.js +3 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-es/object-mapping.js +92 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-es/resolve-path.js +1 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-es/schemaLogFilter.js +34 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-es/ser-utils.js +14 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-es/serde-json.js +19 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-types/NoOpLogger.d.ts +11 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-types/client.d.ts +87 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-types/collect-stream-body.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-types/command.d.ts +119 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-types/constants.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-types/create-aggregated-client.d.ts +18 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-types/default-error-handler.d.ts +15 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-types/defaults-mode.d.ts +28 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-types/emitWarningIfUnsupportedVersion.d.ts +8 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-types/exceptions.d.ts +42 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-types/extended-encode-uri-component.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-types/extensions/checksum.d.ts +26 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-types/extensions/defaultExtensionConfiguration.d.ts +38 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-types/extensions/index.d.ts +1 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-types/extensions/retry.d.ts +18 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-types/get-array-if-single-item.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-types/get-value-from-text-node.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-types/index.d.ts +21 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-types/is-serializable-header-value.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-types/object-mapping.d.ts +162 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-types/resolve-path.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-types/schemaLogFilter.d.ts +9 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-types/ser-utils.d.ts +15 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-types/serde-json.d.ts +12 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-types/ts3.4/NoOpLogger.d.ts +11 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-types/ts3.4/client.d.ts +87 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-types/ts3.4/collect-stream-body.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-types/ts3.4/command.d.ts +119 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-types/ts3.4/constants.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-types/ts3.4/create-aggregated-client.d.ts +18 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-types/ts3.4/default-error-handler.d.ts +15 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-types/ts3.4/defaults-mode.d.ts +28 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-types/ts3.4/emitWarningIfUnsupportedVersion.d.ts +8 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-types/ts3.4/exceptions.d.ts +42 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-types/ts3.4/extended-encode-uri-component.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/checksum.d.ts +26 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +38 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/index.d.ts +1 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/retry.d.ts +18 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-types/ts3.4/get-array-if-single-item.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-types/ts3.4/get-value-from-text-node.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-types/ts3.4/index.d.ts +21 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-types/ts3.4/is-serializable-header-value.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-types/ts3.4/object-mapping.d.ts +178 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-types/ts3.4/resolve-path.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-types/ts3.4/schemaLogFilter.d.ts +9 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-types/ts3.4/ser-utils.d.ts +15 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/dist-types/ts3.4/serde-json.d.ts +12 -0
- package/aws/video-agent/node_modules/@smithy/smithy-client/package.json +70 -0
- package/aws/video-agent/node_modules/@smithy/types/LICENSE +201 -0
- package/aws/video-agent/node_modules/@smithy/types/README.md +115 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-cjs/index.js +91 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/abort-handler.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/abort.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/auth/HttpApiKeyAuth.js +5 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/auth/HttpAuthScheme.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/auth/HttpAuthSchemeProvider.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/auth/HttpSigner.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/auth/IdentityProviderConfig.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/auth/auth.js +5 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/auth/index.js +6 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/blob/blob-payload-input-types.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/checksum.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/client.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/command.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/connection/config.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/connection/index.js +3 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/connection/manager.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/connection/pool.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/crypto.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/downlevel-ts3.4/transform/type-transform.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/encode.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/endpoint.js +5 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/endpoints/EndpointRuleObject.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/endpoints/ErrorRuleObject.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/endpoints/RuleSetObject.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/endpoints/TreeRuleObject.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/endpoints/index.js +5 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/endpoints/shared.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/eventStream.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/extensions/checksum.js +38 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/extensions/defaultClientConfiguration.js +7 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/extensions/defaultExtensionConfiguration.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/extensions/index.js +3 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/extensions/retry.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/externals-check/browser-externals-check.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/feature-ids.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/http/httpHandlerInitialization.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/http.js +5 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/identity/apiKeyIdentity.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/identity/awsCredentialIdentity.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/identity/identity.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/identity/index.js +4 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/identity/tokenIdentity.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/index.js +43 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/logger.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/middleware.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/pagination.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/profile.js +6 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/response.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/retry.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/schema/schema-deprecated.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/schema/schema.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/schema/sentinels.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/schema/static-schemas.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/schema/traits.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/serde.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/shapes.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/signature.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/stream.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-common-types.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-input-types.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-output-types.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/transfer.js +6 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/transform/client-method-transforms.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/transform/client-payload-blob-type-narrow.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/transform/exact.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/transform/mutable.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/transform/no-undefined.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/transform/type-transform.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/uri.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/util.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-es/waiter.js +1 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/abort-handler.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/abort.d.ts +50 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/auth/HttpApiKeyAuth.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/auth/HttpAuthScheme.d.ts +49 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/auth/HttpAuthSchemeProvider.d.ts +20 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/auth/HttpSigner.d.ts +41 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/auth/IdentityProviderConfig.d.ts +14 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/auth/auth.d.ts +57 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/auth/index.d.ts +6 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts +40 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/checksum.d.ts +63 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/client.d.ts +57 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/command.d.ts +28 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/connection/config.d.ts +10 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/connection/index.d.ts +3 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/connection/manager.d.ts +34 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/connection/pool.d.ts +32 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/crypto.d.ts +60 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/downlevel-ts3.4/transform/type-transform.d.ts +25 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/encode.d.ts +31 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/endpoint.d.ts +77 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/endpoints/EndpointRuleObject.d.ts +27 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/endpoints/ErrorRuleObject.d.ts +10 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/endpoints/RuleSetObject.d.ts +28 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/endpoints/TreeRuleObject.d.ts +16 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/endpoints/index.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/endpoints/shared.d.ts +55 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/eventStream.d.ts +137 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/extensions/checksum.d.ts +58 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/extensions/defaultClientConfiguration.d.ts +33 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/extensions/defaultExtensionConfiguration.d.ts +9 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/extensions/index.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/extensions/retry.d.ts +18 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts +35 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/feature-ids.d.ts +16 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/http/httpHandlerInitialization.d.ts +128 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/http.d.ts +113 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/identity/apiKeyIdentity.d.ts +14 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/identity/awsCredentialIdentity.d.ts +31 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/identity/identity.d.ts +15 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/identity/index.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/identity/tokenIdentity.d.ts +14 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/index.d.ts +43 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/logger.d.ts +13 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/middleware.d.ts +534 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/pagination.d.ts +33 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/profile.d.ts +30 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/response.d.ts +40 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/retry.d.ts +133 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/schema/schema-deprecated.d.ts +143 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/schema/schema.d.ts +236 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/schema/sentinels.d.ts +65 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/schema/static-schemas.d.ts +99 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/schema/traits.d.ts +46 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/serde.d.ts +114 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/shapes.d.ts +82 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/signature.d.ts +155 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/stream.d.ts +22 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts +32 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts +60 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts +51 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/transfer.d.ts +41 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts +26 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts +77 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/transform/exact.d.ts +6 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/transform/mutable.d.ts +6 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts +68 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/transform/type-transform.d.ts +34 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/abort-handler.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/abort.d.ts +50 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpApiKeyAuth.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthScheme.d.ts +49 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthSchemeProvider.d.ts +20 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpSigner.d.ts +41 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/auth/IdentityProviderConfig.d.ts +14 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/auth/auth.d.ts +57 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/auth/index.d.ts +6 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/blob/blob-payload-input-types.d.ts +40 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/checksum.d.ts +63 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/client.d.ts +57 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/command.d.ts +28 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/connection/config.d.ts +10 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/connection/index.d.ts +3 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/connection/manager.d.ts +34 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/connection/pool.d.ts +32 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/crypto.d.ts +60 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/downlevel-ts3.4/transform/type-transform.d.ts +41 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/encode.d.ts +31 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/endpoint.d.ts +77 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/endpoints/EndpointRuleObject.d.ts +27 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/endpoints/ErrorRuleObject.d.ts +10 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/endpoints/RuleSetObject.d.ts +28 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/endpoints/TreeRuleObject.d.ts +16 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/endpoints/index.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/endpoints/shared.d.ts +55 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/eventStream.d.ts +137 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/extensions/checksum.d.ts +58 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultClientConfiguration.d.ts +33 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +9 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/extensions/index.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/extensions/retry.d.ts +18 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/externals-check/browser-externals-check.d.ts +35 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/feature-ids.d.ts +16 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/http/httpHandlerInitialization.d.ts +128 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/http.d.ts +113 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/identity/apiKeyIdentity.d.ts +14 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/identity/awsCredentialIdentity.d.ts +31 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/identity/identity.d.ts +15 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/identity/index.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/identity/tokenIdentity.d.ts +14 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/index.d.ts +43 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/logger.d.ts +13 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/middleware.d.ts +534 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/pagination.d.ts +33 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/profile.d.ts +30 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/response.d.ts +40 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/retry.d.ts +133 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/schema/schema-deprecated.d.ts +149 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/schema/schema.d.ts +251 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/schema/sentinels.d.ts +65 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/schema/static-schemas.d.ts +118 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/schema/traits.d.ts +46 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/serde.d.ts +114 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/shapes.d.ts +82 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/signature.d.ts +155 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/stream.d.ts +22 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-common-types.d.ts +32 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-input-types.d.ts +60 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-output-types.d.ts +51 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/transfer.d.ts +41 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/transform/client-method-transforms.d.ts +26 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/transform/client-payload-blob-type-narrow.d.ts +81 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/transform/exact.d.ts +14 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/transform/mutable.d.ts +6 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/transform/no-undefined.d.ts +88 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/transform/type-transform.d.ts +41 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/uri.d.ts +17 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/util.d.ts +192 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/ts3.4/waiter.d.ts +35 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/uri.d.ts +17 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/util.d.ts +176 -0
- package/aws/video-agent/node_modules/@smithy/types/dist-types/waiter.d.ts +35 -0
- package/aws/video-agent/node_modules/@smithy/types/package.json +61 -0
- package/aws/video-agent/node_modules/@smithy/url-parser/LICENSE +201 -0
- package/aws/video-agent/node_modules/@smithy/url-parser/README.md +10 -0
- package/aws/video-agent/node_modules/@smithy/url-parser/dist-cjs/index.js +23 -0
- package/aws/video-agent/node_modules/@smithy/url-parser/dist-es/index.js +18 -0
- package/aws/video-agent/node_modules/@smithy/url-parser/dist-types/index.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/url-parser/dist-types/ts3.4/index.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/url-parser/package.json +62 -0
- package/aws/video-agent/node_modules/@smithy/util-base64/LICENSE +201 -0
- package/aws/video-agent/node_modules/@smithy/util-base64/README.md +4 -0
- package/aws/video-agent/node_modules/@smithy/util-base64/dist-cjs/constants.browser.js +12 -0
- package/aws/video-agent/node_modules/@smithy/util-base64/dist-cjs/fromBase64.browser.js +40 -0
- package/aws/video-agent/node_modules/@smithy/util-base64/dist-cjs/fromBase64.js +16 -0
- package/aws/video-agent/node_modules/@smithy/util-base64/dist-cjs/index.js +27 -0
- package/aws/video-agent/node_modules/@smithy/util-base64/dist-cjs/toBase64.browser.js +38 -0
- package/aws/video-agent/node_modules/@smithy/util-base64/dist-cjs/toBase64.js +19 -0
- package/aws/video-agent/node_modules/@smithy/util-base64/dist-es/constants.browser.js +9 -0
- package/aws/video-agent/node_modules/@smithy/util-base64/dist-es/fromBase64.browser.js +36 -0
- package/aws/video-agent/node_modules/@smithy/util-base64/dist-es/fromBase64.js +12 -0
- package/aws/video-agent/node_modules/@smithy/util-base64/dist-es/index.js +2 -0
- package/aws/video-agent/node_modules/@smithy/util-base64/dist-es/toBase64.browser.js +35 -0
- package/aws/video-agent/node_modules/@smithy/util-base64/dist-es/toBase64.js +15 -0
- package/aws/video-agent/node_modules/@smithy/util-base64/dist-types/constants.browser.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/util-base64/dist-types/fromBase64.browser.d.ts +8 -0
- package/aws/video-agent/node_modules/@smithy/util-base64/dist-types/fromBase64.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/util-base64/dist-types/index.d.ts +2 -0
- package/aws/video-agent/node_modules/@smithy/util-base64/dist-types/toBase64.browser.d.ts +9 -0
- package/aws/video-agent/node_modules/@smithy/util-base64/dist-types/toBase64.d.ts +8 -0
- package/aws/video-agent/node_modules/@smithy/util-base64/dist-types/ts3.4/constants.browser.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/util-base64/dist-types/ts3.4/fromBase64.browser.d.ts +8 -0
- package/aws/video-agent/node_modules/@smithy/util-base64/dist-types/ts3.4/fromBase64.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/util-base64/dist-types/ts3.4/index.d.ts +2 -0
- package/aws/video-agent/node_modules/@smithy/util-base64/dist-types/ts3.4/toBase64.browser.d.ts +9 -0
- package/aws/video-agent/node_modules/@smithy/util-base64/dist-types/ts3.4/toBase64.d.ts +8 -0
- package/aws/video-agent/node_modules/@smithy/util-base64/package.json +74 -0
- package/aws/video-agent/node_modules/@smithy/util-body-length-browser/LICENSE +201 -0
- package/aws/video-agent/node_modules/@smithy/util-body-length-browser/README.md +12 -0
- package/aws/video-agent/node_modules/@smithy/util-body-length-browser/dist-cjs/index.js +30 -0
- package/aws/video-agent/node_modules/@smithy/util-body-length-browser/dist-es/calculateBodyLength.js +26 -0
- package/aws/video-agent/node_modules/@smithy/util-body-length-browser/dist-es/index.js +1 -0
- package/aws/video-agent/node_modules/@smithy/util-body-length-browser/dist-types/calculateBodyLength.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/util-body-length-browser/dist-types/index.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/util-body-length-browser/dist-types/ts3.4/calculateBodyLength.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/util-body-length-browser/dist-types/ts3.4/index.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/util-body-length-browser/package.json +61 -0
- package/aws/video-agent/node_modules/@smithy/util-body-length-node/LICENSE +201 -0
- package/aws/video-agent/node_modules/@smithy/util-body-length-node/README.md +12 -0
- package/aws/video-agent/node_modules/@smithy/util-body-length-node/dist-cjs/index.js +32 -0
- package/aws/video-agent/node_modules/@smithy/util-body-length-node/dist-es/calculateBodyLength.js +27 -0
- package/aws/video-agent/node_modules/@smithy/util-body-length-node/dist-es/index.js +1 -0
- package/aws/video-agent/node_modules/@smithy/util-body-length-node/dist-types/calculateBodyLength.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/util-body-length-node/dist-types/index.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/util-body-length-node/dist-types/ts3.4/calculateBodyLength.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/util-body-length-node/dist-types/ts3.4/index.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/util-body-length-node/package.json +62 -0
- package/aws/video-agent/node_modules/@smithy/util-buffer-from/LICENSE +201 -0
- package/aws/video-agent/node_modules/@smithy/util-buffer-from/README.md +10 -0
- package/aws/video-agent/node_modules/@smithy/util-buffer-from/dist-cjs/index.js +20 -0
- package/aws/video-agent/node_modules/@smithy/util-buffer-from/dist-es/index.js +14 -0
- package/aws/video-agent/node_modules/@smithy/util-buffer-from/dist-types/index.d.ts +13 -0
- package/aws/video-agent/node_modules/@smithy/util-buffer-from/dist-types/ts3.4/index.d.ts +13 -0
- package/aws/video-agent/node_modules/@smithy/util-buffer-from/package.json +62 -0
- package/aws/video-agent/node_modules/@smithy/util-config-provider/LICENSE +201 -0
- package/aws/video-agent/node_modules/@smithy/util-config-provider/README.md +4 -0
- package/aws/video-agent/node_modules/@smithy/util-config-provider/dist-cjs/index.js +30 -0
- package/aws/video-agent/node_modules/@smithy/util-config-provider/dist-es/booleanSelector.js +9 -0
- package/aws/video-agent/node_modules/@smithy/util-config-provider/dist-es/index.js +3 -0
- package/aws/video-agent/node_modules/@smithy/util-config-provider/dist-es/numberSelector.js +9 -0
- package/aws/video-agent/node_modules/@smithy/util-config-provider/dist-es/types.js +5 -0
- package/aws/video-agent/node_modules/@smithy/util-config-provider/dist-types/booleanSelector.d.ts +10 -0
- package/aws/video-agent/node_modules/@smithy/util-config-provider/dist-types/index.d.ts +3 -0
- package/aws/video-agent/node_modules/@smithy/util-config-provider/dist-types/numberSelector.d.ts +9 -0
- package/aws/video-agent/node_modules/@smithy/util-config-provider/dist-types/ts3.4/booleanSelector.d.ts +10 -0
- package/aws/video-agent/node_modules/@smithy/util-config-provider/dist-types/ts3.4/index.d.ts +3 -0
- package/aws/video-agent/node_modules/@smithy/util-config-provider/dist-types/ts3.4/numberSelector.d.ts +9 -0
- package/aws/video-agent/node_modules/@smithy/util-config-provider/dist-types/ts3.4/types.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/util-config-provider/dist-types/types.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/util-config-provider/package.json +63 -0
- package/aws/video-agent/node_modules/@smithy/util-defaults-mode-browser/LICENSE +201 -0
- package/aws/video-agent/node_modules/@smithy/util-defaults-mode-browser/README.md +10 -0
- package/aws/video-agent/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/constants.js +4 -0
- package/aws/video-agent/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/index.js +16 -0
- package/aws/video-agent/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.js +34 -0
- package/aws/video-agent/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.native.js +23 -0
- package/aws/video-agent/node_modules/@smithy/util-defaults-mode-browser/dist-es/constants.js +1 -0
- package/aws/video-agent/node_modules/@smithy/util-defaults-mode-browser/dist-es/index.js +1 -0
- package/aws/video-agent/node_modules/@smithy/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.js +30 -0
- package/aws/video-agent/node_modules/@smithy/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.native.js +19 -0
- package/aws/video-agent/node_modules/@smithy/util-defaults-mode-browser/dist-types/constants.d.ts +12 -0
- package/aws/video-agent/node_modules/@smithy/util-defaults-mode-browser/dist-types/index.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/util-defaults-mode-browser/dist-types/resolveDefaultsModeConfig.d.ts +17 -0
- package/aws/video-agent/node_modules/@smithy/util-defaults-mode-browser/dist-types/resolveDefaultsModeConfig.native.d.ts +16 -0
- package/aws/video-agent/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/constants.d.ts +12 -0
- package/aws/video-agent/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/index.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/resolveDefaultsModeConfig.d.ts +17 -0
- package/aws/video-agent/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/resolveDefaultsModeConfig.native.d.ts +16 -0
- package/aws/video-agent/node_modules/@smithy/util-defaults-mode-browser/package.json +66 -0
- package/aws/video-agent/node_modules/@smithy/util-defaults-mode-node/LICENSE +201 -0
- package/aws/video-agent/node_modules/@smithy/util-defaults-mode-node/README.md +10 -0
- package/aws/video-agent/node_modules/@smithy/util-defaults-mode-node/dist-cjs/index.js +74 -0
- package/aws/video-agent/node_modules/@smithy/util-defaults-mode-node/dist-es/constants.js +6 -0
- package/aws/video-agent/node_modules/@smithy/util-defaults-mode-node/dist-es/defaultsModeConfig.js +11 -0
- package/aws/video-agent/node_modules/@smithy/util-defaults-mode-node/dist-es/index.js +1 -0
- package/aws/video-agent/node_modules/@smithy/util-defaults-mode-node/dist-es/resolveDefaultsModeConfig.js +52 -0
- package/aws/video-agent/node_modules/@smithy/util-defaults-mode-node/dist-types/constants.d.ts +24 -0
- package/aws/video-agent/node_modules/@smithy/util-defaults-mode-node/dist-types/defaultsModeConfig.d.ts +6 -0
- package/aws/video-agent/node_modules/@smithy/util-defaults-mode-node/dist-types/index.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/util-defaults-mode-node/dist-types/resolveDefaultsModeConfig.d.ts +17 -0
- package/aws/video-agent/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/constants.d.ts +24 -0
- package/aws/video-agent/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/defaultsModeConfig.d.ts +6 -0
- package/aws/video-agent/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/index.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/resolveDefaultsModeConfig.d.ts +17 -0
- package/aws/video-agent/node_modules/@smithy/util-defaults-mode-node/package.json +67 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/LICENSE +201 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/README.md +10 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-cjs/index.js +472 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-es/cache/EndpointCache.js +50 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-es/debug/debugId.js +1 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-es/debug/index.js +2 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-es/debug/toDebugString.js +12 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-es/getEndpointUrlConfig.js +21 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-es/index.js +6 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-es/lib/booleanEquals.js +1 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-es/lib/getAttr.js +11 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-es/lib/getAttrPathList.js +25 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-es/lib/index.js +9 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-es/lib/isIpAddress.js +2 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-es/lib/isSet.js +1 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-es/lib/isValidHostLabel.js +13 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-es/lib/not.js +1 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-es/lib/parseURL.js +51 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-es/lib/stringEquals.js +1 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-es/lib/substring.js +9 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-es/lib/uriEncode.js +1 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-es/resolveEndpoint.js +27 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-es/types/EndpointError.js +6 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-es/types/EndpointFunctions.js +1 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-es/types/EndpointRuleObject.js +1 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-es/types/ErrorRuleObject.js +1 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-es/types/RuleSetObject.js +1 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-es/types/TreeRuleObject.js +1 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-es/types/index.js +7 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-es/types/shared.js +1 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-es/utils/callFunction.js +1 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-es/utils/customEndpointFunctions.js +1 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-es/utils/endpointFunctions.js +12 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateCondition.js +14 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateConditions.js +22 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateEndpointRule.js +27 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateErrorRule.js +14 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateExpression.js +29 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateRules.js +42 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateTemplate.js +36 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateTreeRule.js +1 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointHeaders.js +12 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointProperties.js +28 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointProperty.js +1 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointUrl.js +15 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-es/utils/getReferenceValue.js +7 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-es/utils/index.js +2 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/cache/EndpointCache.d.ts +34 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/debug/debugId.d.ts +1 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/debug/index.d.ts +2 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/debug/toDebugString.d.ts +9 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/getEndpointUrlConfig.d.ts +2 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/index.d.ts +6 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/lib/booleanEquals.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/lib/getAttr.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/lib/getAttrPathList.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/lib/index.d.ts +9 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/lib/isIpAddress.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/lib/isSet.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/lib/isValidHostLabel.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/lib/not.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/lib/parseURL.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/lib/stringEquals.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/lib/substring.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/lib/uriEncode.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/resolveEndpoint.d.ts +6 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/ts3.4/cache/EndpointCache.d.ts +34 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/ts3.4/debug/debugId.d.ts +1 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/ts3.4/debug/index.d.ts +2 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/ts3.4/debug/toDebugString.d.ts +9 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/ts3.4/getEndpointUrlConfig.d.ts +2 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/ts3.4/index.d.ts +6 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/booleanEquals.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/getAttr.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/getAttrPathList.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/index.d.ts +9 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/isIpAddress.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/isSet.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/isValidHostLabel.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/not.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/parseURL.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/stringEquals.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/substring.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/uriEncode.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/ts3.4/resolveEndpoint.d.ts +6 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/EndpointError.d.ts +3 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/EndpointFunctions.d.ts +2 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/EndpointRuleObject.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/ErrorRuleObject.d.ts +2 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/RuleSetObject.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/TreeRuleObject.d.ts +3 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/index.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/shared.d.ts +25 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/callFunction.d.ts +1 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/customEndpointFunctions.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/endpointFunctions.d.ts +11 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateCondition.d.ts +8 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateConditions.d.ts +8 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateEndpointRule.d.ts +3 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateErrorRule.d.ts +2 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateExpression.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateRules.d.ts +8 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateTemplate.d.ts +2 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateTreeRule.d.ts +1 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointHeaders.d.ts +2 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointProperties.d.ts +8 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointProperty.d.ts +1 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointUrl.d.ts +2 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getReferenceValue.d.ts +2 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/index.d.ts +2 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/types/EndpointError.d.ts +3 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/types/EndpointFunctions.d.ts +2 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/types/EndpointRuleObject.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/types/ErrorRuleObject.d.ts +2 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/types/RuleSetObject.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/types/TreeRuleObject.d.ts +3 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/types/index.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/types/shared.d.ts +25 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/utils/callFunction.d.ts +1 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/utils/customEndpointFunctions.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/utils/endpointFunctions.d.ts +11 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateCondition.d.ts +8 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateConditions.d.ts +8 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateEndpointRule.d.ts +3 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateErrorRule.d.ts +2 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateExpression.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateRules.d.ts +8 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateTemplate.d.ts +2 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateTreeRule.d.ts +1 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointHeaders.d.ts +2 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointProperties.d.ts +8 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointProperty.d.ts +1 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointUrl.d.ts +2 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/utils/getReferenceValue.d.ts +2 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/dist-types/utils/index.d.ts +2 -0
- package/aws/video-agent/node_modules/@smithy/util-endpoints/package.json +69 -0
- package/aws/video-agent/node_modules/@smithy/util-hex-encoding/LICENSE +201 -0
- package/aws/video-agent/node_modules/@smithy/util-hex-encoding/README.md +4 -0
- package/aws/video-agent/node_modules/@smithy/util-hex-encoding/dist-cjs/index.js +38 -0
- package/aws/video-agent/node_modules/@smithy/util-hex-encoding/dist-es/index.js +33 -0
- package/aws/video-agent/node_modules/@smithy/util-hex-encoding/dist-types/index.d.ts +12 -0
- package/aws/video-agent/node_modules/@smithy/util-hex-encoding/dist-types/ts3.4/index.d.ts +12 -0
- package/aws/video-agent/node_modules/@smithy/util-hex-encoding/package.json +61 -0
- package/aws/video-agent/node_modules/@smithy/util-middleware/LICENSE +201 -0
- package/aws/video-agent/node_modules/@smithy/util-middleware/README.md +12 -0
- package/aws/video-agent/node_modules/@smithy/util-middleware/dist-cjs/index.js +15 -0
- package/aws/video-agent/node_modules/@smithy/util-middleware/dist-es/getSmithyContext.js +2 -0
- package/aws/video-agent/node_modules/@smithy/util-middleware/dist-es/index.js +2 -0
- package/aws/video-agent/node_modules/@smithy/util-middleware/dist-es/normalizeProvider.js +6 -0
- package/aws/video-agent/node_modules/@smithy/util-middleware/dist-types/getSmithyContext.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/util-middleware/dist-types/index.d.ts +8 -0
- package/aws/video-agent/node_modules/@smithy/util-middleware/dist-types/normalizeProvider.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/util-middleware/dist-types/ts3.4/getSmithyContext.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/util-middleware/dist-types/ts3.4/index.d.ts +8 -0
- package/aws/video-agent/node_modules/@smithy/util-middleware/dist-types/ts3.4/normalizeProvider.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/util-middleware/package.json +67 -0
- package/aws/video-agent/node_modules/@smithy/util-retry/LICENSE +201 -0
- package/aws/video-agent/node_modules/@smithy/util-retry/README.md +78 -0
- package/aws/video-agent/node_modules/@smithy/util-retry/dist-cjs/index.js +278 -0
- package/aws/video-agent/node_modules/@smithy/util-retry/dist-es/AdaptiveRetryStrategy.js +27 -0
- package/aws/video-agent/node_modules/@smithy/util-retry/dist-es/ConfiguredRetryStrategy.js +19 -0
- package/aws/video-agent/node_modules/@smithy/util-retry/dist-es/DefaultRateLimiter.js +109 -0
- package/aws/video-agent/node_modules/@smithy/util-retry/dist-es/StandardRetryStrategy.js +67 -0
- package/aws/video-agent/node_modules/@smithy/util-retry/dist-es/config.js +7 -0
- package/aws/video-agent/node_modules/@smithy/util-retry/dist-es/constants.js +9 -0
- package/aws/video-agent/node_modules/@smithy/util-retry/dist-es/defaultRetryBackoffStrategy.js +14 -0
- package/aws/video-agent/node_modules/@smithy/util-retry/dist-es/defaultRetryToken.js +11 -0
- package/aws/video-agent/node_modules/@smithy/util-retry/dist-es/index.js +7 -0
- package/aws/video-agent/node_modules/@smithy/util-retry/dist-es/types.js +1 -0
- package/aws/video-agent/node_modules/@smithy/util-retry/dist-types/AdaptiveRetryStrategy.d.ts +33 -0
- package/aws/video-agent/node_modules/@smithy/util-retry/dist-types/ConfiguredRetryStrategy.d.ts +32 -0
- package/aws/video-agent/node_modules/@smithy/util-retry/dist-types/DefaultRateLimiter.d.ts +49 -0
- package/aws/video-agent/node_modules/@smithy/util-retry/dist-types/StandardRetryStrategy.d.ts +26 -0
- package/aws/video-agent/node_modules/@smithy/util-retry/dist-types/config.d.ts +20 -0
- package/aws/video-agent/node_modules/@smithy/util-retry/dist-types/constants.d.ts +59 -0
- package/aws/video-agent/node_modules/@smithy/util-retry/dist-types/defaultRetryBackoffStrategy.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/util-retry/dist-types/defaultRetryToken.d.ts +9 -0
- package/aws/video-agent/node_modules/@smithy/util-retry/dist-types/index.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/util-retry/dist-types/ts3.4/AdaptiveRetryStrategy.d.ts +33 -0
- package/aws/video-agent/node_modules/@smithy/util-retry/dist-types/ts3.4/ConfiguredRetryStrategy.d.ts +32 -0
- package/aws/video-agent/node_modules/@smithy/util-retry/dist-types/ts3.4/DefaultRateLimiter.d.ts +49 -0
- package/aws/video-agent/node_modules/@smithy/util-retry/dist-types/ts3.4/StandardRetryStrategy.d.ts +26 -0
- package/aws/video-agent/node_modules/@smithy/util-retry/dist-types/ts3.4/config.d.ts +20 -0
- package/aws/video-agent/node_modules/@smithy/util-retry/dist-types/ts3.4/constants.d.ts +59 -0
- package/aws/video-agent/node_modules/@smithy/util-retry/dist-types/ts3.4/defaultRetryBackoffStrategy.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/util-retry/dist-types/ts3.4/defaultRetryToken.d.ts +9 -0
- package/aws/video-agent/node_modules/@smithy/util-retry/dist-types/ts3.4/index.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/util-retry/dist-types/ts3.4/types.d.ts +19 -0
- package/aws/video-agent/node_modules/@smithy/util-retry/dist-types/types.d.ts +19 -0
- package/aws/video-agent/node_modules/@smithy/util-retry/package.json +71 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/LICENSE +201 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/README.md +6 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-cjs/ByteArrayCollector.js +36 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.browser.js +7 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.js +64 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.browser.js +39 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.js +12 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-cjs/createBufferedReadable.js +60 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-cjs/createBufferedReadableStream.js +103 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.browser.js +31 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.js +41 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-cjs/headStream.browser.js +34 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-cjs/headStream.js +42 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-cjs/index.js +108 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.browser.js +68 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.js +54 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-cjs/splitStream.browser.js +10 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-cjs/splitStream.js +16 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-cjs/stream-type-check.js +10 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-es/ByteArrayCollector.js +32 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-es/blob/Uint8ArrayBlobAdapter.js +23 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-es/checksum/ChecksumStream.browser.js +3 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-es/checksum/ChecksumStream.js +60 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-es/checksum/createChecksumStream.browser.js +35 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-es/checksum/createChecksumStream.js +9 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-es/createBufferedReadable.js +57 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-es/createBufferedReadableStream.js +95 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-es/getAwsChunkedEncodingStream.browser.js +27 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-es/getAwsChunkedEncodingStream.js +38 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-es/headStream.browser.js +31 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-es/headStream.js +38 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-es/index.js +9 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-es/sdk-stream-mixin.browser.js +64 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-es/sdk-stream-mixin.js +50 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-es/splitStream.browser.js +7 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-es/splitStream.js +13 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-es/stream-type-check.js +5 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-types/ByteArrayCollector.d.ts +13 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-types/blob/Uint8ArrayBlobAdapter.d.ts +22 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-types/checksum/ChecksumStream.browser.d.ts +37 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-types/checksum/ChecksumStream.d.ts +61 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-types/checksum/createChecksumStream.browser.d.ts +14 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-types/checksum/createChecksumStream.d.ts +13 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-types/createBufferedReadable.d.ts +15 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-types/createBufferedReadableStream.d.ts +50 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-types/getAwsChunkedEncodingStream.browser.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-types/getAwsChunkedEncodingStream.d.ts +10 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-types/headStream.browser.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-types/headStream.d.ts +9 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-types/index.d.ts +12 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.browser.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.d.ts +8 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-types/splitStream.browser.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-types/splitStream.d.ts +11 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-types/stream-type-check.d.ts +17 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-types/ts3.4/ByteArrayCollector.d.ts +13 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-types/ts3.4/blob/Uint8ArrayBlobAdapter.d.ts +22 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/ChecksumStream.browser.d.ts +37 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/ChecksumStream.d.ts +61 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/createChecksumStream.browser.d.ts +14 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/createChecksumStream.d.ts +13 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-types/ts3.4/createBufferedReadable.d.ts +15 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-types/ts3.4/createBufferedReadableStream.d.ts +54 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-types/ts3.4/getAwsChunkedEncodingStream.browser.d.ts +5 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-types/ts3.4/getAwsChunkedEncodingStream.d.ts +10 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-types/ts3.4/headStream.browser.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-types/ts3.4/headStream.d.ts +9 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-types/ts3.4/index.d.ts +12 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-types/ts3.4/sdk-stream-mixin.browser.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-types/ts3.4/sdk-stream-mixin.d.ts +8 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-types/ts3.4/splitStream.browser.d.ts +8 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-types/ts3.4/splitStream.d.ts +17 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/dist-types/ts3.4/stream-type-check.d.ts +17 -0
- package/aws/video-agent/node_modules/@smithy/util-stream/package.json +99 -0
- package/aws/video-agent/node_modules/@smithy/util-uri-escape/LICENSE +201 -0
- package/aws/video-agent/node_modules/@smithy/util-uri-escape/README.md +10 -0
- package/aws/video-agent/node_modules/@smithy/util-uri-escape/dist-cjs/index.js +9 -0
- package/aws/video-agent/node_modules/@smithy/util-uri-escape/dist-es/escape-uri-path.js +2 -0
- package/aws/video-agent/node_modules/@smithy/util-uri-escape/dist-es/escape-uri.js +2 -0
- package/aws/video-agent/node_modules/@smithy/util-uri-escape/dist-es/index.js +2 -0
- package/aws/video-agent/node_modules/@smithy/util-uri-escape/dist-types/escape-uri-path.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/util-uri-escape/dist-types/escape-uri.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/util-uri-escape/dist-types/index.d.ts +8 -0
- package/aws/video-agent/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/escape-uri-path.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/escape-uri.d.ts +4 -0
- package/aws/video-agent/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/index.d.ts +8 -0
- package/aws/video-agent/node_modules/@smithy/util-uri-escape/package.json +60 -0
- package/aws/video-agent/node_modules/@smithy/util-utf8/LICENSE +201 -0
- package/aws/video-agent/node_modules/@smithy/util-utf8/README.md +4 -0
- package/aws/video-agent/node_modules/@smithy/util-utf8/dist-cjs/index.js +32 -0
- package/aws/video-agent/node_modules/@smithy/util-utf8/dist-es/fromUtf8.browser.js +1 -0
- package/aws/video-agent/node_modules/@smithy/util-utf8/dist-es/fromUtf8.js +5 -0
- package/aws/video-agent/node_modules/@smithy/util-utf8/dist-es/index.js +3 -0
- package/aws/video-agent/node_modules/@smithy/util-utf8/dist-es/toUint8Array.js +10 -0
- package/aws/video-agent/node_modules/@smithy/util-utf8/dist-es/toUtf8.browser.js +9 -0
- package/aws/video-agent/node_modules/@smithy/util-utf8/dist-es/toUtf8.js +10 -0
- package/aws/video-agent/node_modules/@smithy/util-utf8/dist-types/fromUtf8.browser.d.ts +1 -0
- package/aws/video-agent/node_modules/@smithy/util-utf8/dist-types/fromUtf8.d.ts +1 -0
- package/aws/video-agent/node_modules/@smithy/util-utf8/dist-types/index.d.ts +3 -0
- package/aws/video-agent/node_modules/@smithy/util-utf8/dist-types/toUint8Array.d.ts +1 -0
- package/aws/video-agent/node_modules/@smithy/util-utf8/dist-types/toUtf8.browser.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/util-utf8/dist-types/toUtf8.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.browser.d.ts +1 -0
- package/aws/video-agent/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.d.ts +1 -0
- package/aws/video-agent/node_modules/@smithy/util-utf8/dist-types/ts3.4/index.d.ts +3 -0
- package/aws/video-agent/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUint8Array.d.ts +1 -0
- package/aws/video-agent/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.browser.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.d.ts +7 -0
- package/aws/video-agent/node_modules/@smithy/util-utf8/package.json +67 -0
- package/aws/video-agent/node_modules/@smithy/uuid/LICENSE +201 -0
- package/aws/video-agent/node_modules/@smithy/uuid/README.md +10 -0
- package/aws/video-agent/node_modules/@smithy/uuid/dist-cjs/index.js +36 -0
- package/aws/video-agent/node_modules/@smithy/uuid/dist-cjs/randomUUID.js +6 -0
- package/aws/video-agent/node_modules/@smithy/uuid/dist-cjs/randomUUID.native.js +4 -0
- package/aws/video-agent/node_modules/@smithy/uuid/dist-es/index.js +1 -0
- package/aws/video-agent/node_modules/@smithy/uuid/dist-es/randomUUID.browser.js +1 -0
- package/aws/video-agent/node_modules/@smithy/uuid/dist-es/randomUUID.js +2 -0
- package/aws/video-agent/node_modules/@smithy/uuid/dist-es/randomUUID.native.js +1 -0
- package/aws/video-agent/node_modules/@smithy/uuid/dist-es/v4.js +31 -0
- package/aws/video-agent/node_modules/@smithy/uuid/dist-types/index.d.ts +1 -0
- package/aws/video-agent/node_modules/@smithy/uuid/dist-types/randomUUID.browser.d.ts +1 -0
- package/aws/video-agent/node_modules/@smithy/uuid/dist-types/randomUUID.d.ts +2 -0
- package/aws/video-agent/node_modules/@smithy/uuid/dist-types/randomUUID.native.d.ts +1 -0
- package/aws/video-agent/node_modules/@smithy/uuid/dist-types/ts3.4/index.d.ts +1 -0
- package/aws/video-agent/node_modules/@smithy/uuid/dist-types/ts3.4/randomUUID.browser.d.ts +1 -0
- package/aws/video-agent/node_modules/@smithy/uuid/dist-types/ts3.4/randomUUID.d.ts +2 -0
- package/aws/video-agent/node_modules/@smithy/uuid/dist-types/ts3.4/randomUUID.native.d.ts +1 -0
- package/aws/video-agent/node_modules/@smithy/uuid/dist-types/ts3.4/v4.d.ts +19 -0
- package/aws/video-agent/node_modules/@smithy/uuid/dist-types/v4.d.ts +19 -0
- package/aws/video-agent/node_modules/@smithy/uuid/package.json +66 -0
- package/aws/video-agent/node_modules/bowser/LICENSE +39 -0
- package/aws/video-agent/node_modules/bowser/README.md +246 -0
- package/aws/video-agent/node_modules/bowser/bundled.js +1 -0
- package/aws/video-agent/node_modules/bowser/es5.js +1 -0
- package/aws/video-agent/node_modules/bowser/index.d.ts +353 -0
- package/aws/video-agent/node_modules/bowser/package.json +93 -0
- package/aws/video-agent/node_modules/bowser/src/bowser.js +93 -0
- package/aws/video-agent/node_modules/bowser/src/constants.js +177 -0
- package/aws/video-agent/node_modules/bowser/src/parser-browsers.js +1183 -0
- package/aws/video-agent/node_modules/bowser/src/parser-engines.js +120 -0
- package/aws/video-agent/node_modules/bowser/src/parser-os.js +211 -0
- package/aws/video-agent/node_modules/bowser/src/parser-platforms.js +566 -0
- package/aws/video-agent/node_modules/bowser/src/parser.js +592 -0
- package/aws/video-agent/node_modules/bowser/src/utils.js +327 -0
- package/aws/video-agent/node_modules/fast-xml-builder/CHANGELOG.md +14 -0
- package/aws/video-agent/node_modules/fast-xml-builder/LICENSE +21 -0
- package/aws/video-agent/node_modules/fast-xml-builder/README.md +23 -0
- package/aws/video-agent/node_modules/fast-xml-builder/lib/fxb.cjs +1 -0
- package/aws/video-agent/node_modules/fast-xml-builder/lib/fxb.d.cts +173 -0
- package/aws/video-agent/node_modules/fast-xml-builder/lib/fxb.min.js +2 -0
- package/aws/video-agent/node_modules/fast-xml-builder/lib/fxb.min.js.map +1 -0
- package/aws/video-agent/node_modules/fast-xml-builder/package.json +80 -0
- package/aws/video-agent/node_modules/fast-xml-builder/src/fxb.d.ts +173 -0
- package/aws/video-agent/node_modules/fast-xml-builder/src/fxb.js +526 -0
- package/aws/video-agent/node_modules/fast-xml-builder/src/ignoreAttributes.js +18 -0
- package/aws/video-agent/node_modules/fast-xml-builder/src/orderedJs2Xml.js +288 -0
- package/aws/video-agent/node_modules/fast-xml-builder/src/prettifyJs2Xml.js +0 -0
- package/aws/video-agent/node_modules/fast-xml-parser/CHANGELOG.md +723 -0
- package/aws/video-agent/node_modules/fast-xml-parser/LICENSE +21 -0
- package/aws/video-agent/node_modules/fast-xml-parser/README.md +224 -0
- package/aws/video-agent/node_modules/fast-xml-parser/lib/fxbuilder.min.js +2 -0
- package/aws/video-agent/node_modules/fast-xml-parser/lib/fxbuilder.min.js.map +1 -0
- package/aws/video-agent/node_modules/fast-xml-parser/lib/fxp.cjs +1 -0
- package/aws/video-agent/node_modules/fast-xml-parser/lib/fxp.d.cts +541 -0
- package/aws/video-agent/node_modules/fast-xml-parser/lib/fxp.min.js +2 -0
- package/aws/video-agent/node_modules/fast-xml-parser/lib/fxp.min.js.map +1 -0
- package/aws/video-agent/node_modules/fast-xml-parser/lib/fxparser.min.js +2 -0
- package/aws/video-agent/node_modules/fast-xml-parser/lib/fxparser.min.js.map +1 -0
- package/aws/video-agent/node_modules/fast-xml-parser/lib/fxvalidator.min.js +2 -0
- package/aws/video-agent/node_modules/fast-xml-parser/lib/fxvalidator.min.js.map +1 -0
- package/aws/video-agent/node_modules/fast-xml-parser/package.json +93 -0
- package/aws/video-agent/node_modules/fast-xml-parser/src/cli/cli.js +97 -0
- package/aws/video-agent/node_modules/fast-xml-parser/src/cli/man.js +17 -0
- package/aws/video-agent/node_modules/fast-xml-parser/src/cli/read.js +43 -0
- package/aws/video-agent/node_modules/fast-xml-parser/src/fxp.d.ts +523 -0
- package/aws/video-agent/node_modules/fast-xml-parser/src/fxp.js +14 -0
- package/aws/video-agent/node_modules/fast-xml-parser/src/ignoreAttributes.js +18 -0
- package/aws/video-agent/node_modules/fast-xml-parser/src/util.js +43 -0
- package/aws/video-agent/node_modules/fast-xml-parser/src/v6/CharsSymbol.js +16 -0
- package/aws/video-agent/node_modules/fast-xml-parser/src/v6/EntitiesParser.js +106 -0
- package/aws/video-agent/node_modules/fast-xml-parser/src/v6/OptionsBuilder.js +61 -0
- package/aws/video-agent/node_modules/fast-xml-parser/src/v6/OutputBuilders/BaseOutputBuilder.js +69 -0
- package/aws/video-agent/node_modules/fast-xml-parser/src/v6/OutputBuilders/JsArrBuilder.js +103 -0
- package/aws/video-agent/node_modules/fast-xml-parser/src/v6/OutputBuilders/JsMinArrBuilder.js +100 -0
- package/aws/video-agent/node_modules/fast-xml-parser/src/v6/OutputBuilders/JsObjBuilder.js +154 -0
- package/aws/video-agent/node_modules/fast-xml-parser/src/v6/OutputBuilders/ParserOptionsBuilder.js +94 -0
- package/aws/video-agent/node_modules/fast-xml-parser/src/v6/Report.js +0 -0
- package/aws/video-agent/node_modules/fast-xml-parser/src/v6/TagPath.js +81 -0
- package/aws/video-agent/node_modules/fast-xml-parser/src/v6/TagPathMatcher.js +13 -0
- package/aws/video-agent/node_modules/fast-xml-parser/src/v6/XMLParser.js +83 -0
- package/aws/video-agent/node_modules/fast-xml-parser/src/v6/Xml2JsParser.js +235 -0
- package/aws/video-agent/node_modules/fast-xml-parser/src/v6/XmlPartReader.js +210 -0
- package/aws/video-agent/node_modules/fast-xml-parser/src/v6/XmlSpecialTagsReader.js +111 -0
- package/aws/video-agent/node_modules/fast-xml-parser/src/v6/inputSource/BufferSource.js +116 -0
- package/aws/video-agent/node_modules/fast-xml-parser/src/v6/inputSource/StringSource.js +121 -0
- package/aws/video-agent/node_modules/fast-xml-parser/src/v6/valueParsers/EntitiesParser.js +105 -0
- package/aws/video-agent/node_modules/fast-xml-parser/src/v6/valueParsers/booleanParser.js +22 -0
- package/aws/video-agent/node_modules/fast-xml-parser/src/v6/valueParsers/booleanParserExt.js +19 -0
- package/aws/video-agent/node_modules/fast-xml-parser/src/v6/valueParsers/currency.js +38 -0
- package/aws/video-agent/node_modules/fast-xml-parser/src/v6/valueParsers/join.js +13 -0
- package/aws/video-agent/node_modules/fast-xml-parser/src/v6/valueParsers/number.js +14 -0
- package/aws/video-agent/node_modules/fast-xml-parser/src/v6/valueParsers/trim.js +6 -0
- package/aws/video-agent/node_modules/fast-xml-parser/src/validator.js +425 -0
- package/aws/video-agent/node_modules/fast-xml-parser/src/xmlbuilder/json2xml.js +6 -0
- package/aws/video-agent/node_modules/fast-xml-parser/src/xmlparser/DocTypeReader.js +391 -0
- package/aws/video-agent/node_modules/fast-xml-parser/src/xmlparser/OptionsBuilder.js +88 -0
- package/aws/video-agent/node_modules/fast-xml-parser/src/xmlparser/OrderedObjParser.js +729 -0
- package/aws/video-agent/node_modules/fast-xml-parser/src/xmlparser/XMLParser.js +71 -0
- package/aws/video-agent/node_modules/fast-xml-parser/src/xmlparser/node2json.js +123 -0
- package/aws/video-agent/node_modules/fast-xml-parser/src/xmlparser/xmlNode.js +40 -0
- package/aws/video-agent/node_modules/path-expression-matcher/LICENSE +21 -0
- package/aws/video-agent/node_modules/path-expression-matcher/README.md +635 -0
- package/aws/video-agent/node_modules/path-expression-matcher/lib/pem.cjs +1 -0
- package/aws/video-agent/node_modules/path-expression-matcher/lib/pem.d.cts +335 -0
- package/aws/video-agent/node_modules/path-expression-matcher/lib/pem.min.js +2 -0
- package/aws/video-agent/node_modules/path-expression-matcher/lib/pem.min.js.map +1 -0
- package/aws/video-agent/node_modules/path-expression-matcher/package.json +78 -0
- package/aws/video-agent/node_modules/path-expression-matcher/src/Expression.js +232 -0
- package/aws/video-agent/node_modules/path-expression-matcher/src/Matcher.js +414 -0
- package/aws/video-agent/node_modules/path-expression-matcher/src/index.d.ts +366 -0
- package/aws/video-agent/node_modules/path-expression-matcher/src/index.js +28 -0
- package/aws/video-agent/node_modules/strnum/.github/SECURITY.md +5 -0
- package/aws/video-agent/node_modules/strnum/.vscode/launch.json +25 -0
- package/aws/video-agent/node_modules/strnum/CHANGELOG.md +33 -0
- package/aws/video-agent/node_modules/strnum/LICENSE +21 -0
- package/aws/video-agent/node_modules/strnum/README.md +104 -0
- package/aws/video-agent/node_modules/strnum/algo.stflow +84 -0
- package/aws/video-agent/node_modules/strnum/package.json +31 -0
- package/aws/video-agent/node_modules/strnum/strnum.js +155 -0
- package/aws/video-agent/node_modules/strnum/tests/infinity_test.js +18 -0
- package/aws/video-agent/node_modules/strnum/tests/strnum_test.js +172 -0
- package/aws/video-agent/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/aws/video-agent/node_modules/tslib/LICENSE.txt +12 -0
- package/aws/video-agent/node_modules/tslib/README.md +164 -0
- package/aws/video-agent/node_modules/tslib/SECURITY.md +41 -0
- package/aws/video-agent/node_modules/tslib/modules/index.d.ts +38 -0
- package/aws/video-agent/node_modules/tslib/modules/index.js +70 -0
- package/aws/video-agent/node_modules/tslib/modules/package.json +3 -0
- package/aws/video-agent/node_modules/tslib/package.json +47 -0
- package/aws/video-agent/node_modules/tslib/tslib.d.ts +460 -0
- package/aws/video-agent/node_modules/tslib/tslib.es6.html +1 -0
- package/aws/video-agent/node_modules/tslib/tslib.es6.js +402 -0
- package/aws/video-agent/node_modules/tslib/tslib.es6.mjs +401 -0
- package/aws/video-agent/node_modules/tslib/tslib.html +1 -0
- package/aws/video-agent/node_modules/tslib/tslib.js +484 -0
- package/aws/video-agent/package-lock.json +1274 -0
- package/aws/video-agent/package.json +12 -0
- package/drizzle/migrations/0006_broken_toad_men.sql +22 -0
- package/drizzle/migrations/0008_drop_video_poster_key.sql +29 -0
- package/drizzle/migrations/meta/0006_snapshot.json +854 -0
- package/drizzle/migrations/meta/_journal.json +8 -1
- package/eslint-rules/no-hardcoded-city-locale.js +50 -9
- package/eslint-rules/no-server-import-in-browser.js +42 -0
- package/eslint-rules/require-commit-wrapper.js +35 -0
- package/eslint-rules/vendor-isolation.js +1 -1
- package/package.json +6 -4
- package/packages/create-bike-blog/templates/blog/config.yml.tpl +1 -1
- package/packages/create-bike-blog/templates/env.tpl +2 -0
- package/packages/create-bike-blog/templates/github/workflows/ci.yml.tpl +11 -0
- package/packages/create-bike-blog/templates/github/workflows/deploy.yml.tpl +54 -0
- package/packages/create-bike-blog/templates/scripts/setup.js +197 -18
- package/public/map-style-default.39cf89d1.json +3057 -0
- package/public/map-style-high-contrast.97592da1.json +3061 -0
- package/public/maps/almonte-roubaix-mixes/.gpx-hash +1 -0
- package/public/maps/almonte-roubaix-mixes/main/.gpx-hash +1 -0
- package/public/maps/almonte-roubaix-mixes/main/map-375.webp +0 -0
- package/public/maps/almonte-roubaix-mixes/main/map-750.webp +0 -0
- package/public/maps/almonte-roubaix-mixes/main/map-social.jpg +0 -0
- package/public/maps/almonte-roubaix-mixes/main/map.png +0 -0
- package/public/maps/almonte-roubaix-mixes/map-375.webp +0 -0
- package/public/maps/almonte-roubaix-mixes/map-750.webp +0 -0
- package/public/maps/almonte-roubaix-mixes/map-social.jpg +0 -0
- package/public/maps/almonte-roubaix-mixes/map.png +0 -0
- package/public/maps/almonte-roubaix-mixes/petit-roubaix/.gpx-hash +1 -0
- package/public/maps/almonte-roubaix-mixes/petit-roubaix/map-375.webp +0 -0
- package/public/maps/almonte-roubaix-mixes/petit-roubaix/map-750.webp +0 -0
- package/public/maps/almonte-roubaix-mixes/petit-roubaix/map-social.jpg +0 -0
- package/public/maps/almonte-roubaix-mixes/petit-roubaix/map.png +0 -0
- package/public/maps/aylmer/.gpx-hash +1 -0
- package/public/maps/aylmer/main/.gpx-hash +1 -0
- package/public/maps/aylmer/main/map-375.webp +0 -0
- package/public/maps/aylmer/main/map-750.webp +0 -0
- package/public/maps/aylmer/main/map-social.jpg +0 -0
- package/public/maps/aylmer/main/map.png +0 -0
- package/public/maps/aylmer/map-375.webp +0 -0
- package/public/maps/aylmer/map-750.webp +0 -0
- package/public/maps/aylmer/map-social.jpg +0 -0
- package/public/maps/aylmer/map.png +0 -0
- package/public/maps/britannia-by-ottawa-river-pathway/.gpx-hash +1 -0
- package/public/maps/britannia-by-ottawa-river-pathway/bike-days/.gpx-hash +1 -0
- package/public/maps/britannia-by-ottawa-river-pathway/bike-days/map-375.webp +0 -0
- package/public/maps/britannia-by-ottawa-river-pathway/bike-days/map-750.webp +0 -0
- package/public/maps/britannia-by-ottawa-river-pathway/bike-days/map-social.jpg +0 -0
- package/public/maps/britannia-by-ottawa-river-pathway/bike-days/map.png +0 -0
- package/public/maps/britannia-by-ottawa-river-pathway/main/.gpx-hash +1 -0
- package/public/maps/britannia-by-ottawa-river-pathway/main/map-375.webp +0 -0
- package/public/maps/britannia-by-ottawa-river-pathway/main/map-750.webp +0 -0
- package/public/maps/britannia-by-ottawa-river-pathway/main/map-social.jpg +0 -0
- package/public/maps/britannia-by-ottawa-river-pathway/main/map.png +0 -0
- package/public/maps/britannia-by-ottawa-river-pathway/map-375.webp +0 -0
- package/public/maps/britannia-by-ottawa-river-pathway/map-750.webp +0 -0
- package/public/maps/britannia-by-ottawa-river-pathway/map-social.jpg +0 -0
- package/public/maps/britannia-by-ottawa-river-pathway/map.png +0 -0
- package/public/maps/carleton-place-and-smith-falls/.gpx-hash +1 -0
- package/public/maps/carleton-place-and-smith-falls/main/.gpx-hash +1 -0
- package/public/maps/carleton-place-and-smith-falls/main/map-375.webp +0 -0
- package/public/maps/carleton-place-and-smith-falls/main/map-750.webp +0 -0
- package/public/maps/carleton-place-and-smith-falls/main/map-social.jpg +0 -0
- package/public/maps/carleton-place-and-smith-falls/main/map.png +0 -0
- package/public/maps/carleton-place-and-smith-falls/map-375.webp +0 -0
- package/public/maps/carleton-place-and-smith-falls/map-750.webp +0 -0
- package/public/maps/carleton-place-and-smith-falls/map-social.jpg +0 -0
- package/public/maps/carleton-place-and-smith-falls/map.png +0 -0
- package/public/maps/carp/.gpx-hash +1 -0
- package/public/maps/carp/downtown/.gpx-hash +1 -0
- package/public/maps/carp/downtown/map-375.webp +0 -0
- package/public/maps/carp/downtown/map-750.webp +0 -0
- package/public/maps/carp/downtown/map-social.jpg +0 -0
- package/public/maps/carp/downtown/map.png +0 -0
- package/public/maps/carp/main/.gpx-hash +1 -0
- package/public/maps/carp/main/map-375.webp +0 -0
- package/public/maps/carp/main/map-750.webp +0 -0
- package/public/maps/carp/main/map-social.jpg +0 -0
- package/public/maps/carp/main/map.png +0 -0
- package/public/maps/carp/map-375.webp +0 -0
- package/public/maps/carp/map-750.webp +0 -0
- package/public/maps/carp/map-social.jpg +0 -0
- package/public/maps/carp/map.png +0 -0
- package/public/maps/east-end-petrie-island/.gpx-hash +1 -0
- package/public/maps/east-end-petrie-island/main/.gpx-hash +1 -0
- package/public/maps/east-end-petrie-island/main/map-375.webp +0 -0
- package/public/maps/east-end-petrie-island/main/map-750.webp +0 -0
- package/public/maps/east-end-petrie-island/main/map-social.jpg +0 -0
- package/public/maps/east-end-petrie-island/main/map.png +0 -0
- package/public/maps/east-end-petrie-island/map-375.webp +0 -0
- package/public/maps/east-end-petrie-island/map-750.webp +0 -0
- package/public/maps/east-end-petrie-island/map-social.jpg +0 -0
- package/public/maps/east-end-petrie-island/map.png +0 -0
- package/public/maps/easy-loop-around-the-canal/.gpx-hash +1 -0
- package/public/maps/easy-loop-around-the-canal/main/.gpx-hash +1 -0
- package/public/maps/easy-loop-around-the-canal/main/map-375.webp +0 -0
- package/public/maps/easy-loop-around-the-canal/main/map-750.webp +0 -0
- package/public/maps/easy-loop-around-the-canal/main/map-social.jpg +0 -0
- package/public/maps/easy-loop-around-the-canal/main/map.png +0 -0
- package/public/maps/easy-loop-around-the-canal/map-375.webp +0 -0
- package/public/maps/easy-loop-around-the-canal/map-750.webp +0 -0
- package/public/maps/easy-loop-around-the-canal/map-social.jpg +0 -0
- package/public/maps/easy-loop-around-the-canal/map.png +0 -0
- package/public/maps/epic-buckingham-ride/.gpx-hash +1 -0
- package/public/maps/epic-buckingham-ride/main/.gpx-hash +1 -0
- package/public/maps/epic-buckingham-ride/main/map-375.webp +0 -0
- package/public/maps/epic-buckingham-ride/main/map-750.webp +0 -0
- package/public/maps/epic-buckingham-ride/main/map-social.jpg +0 -0
- package/public/maps/epic-buckingham-ride/main/map.png +0 -0
- package/public/maps/epic-buckingham-ride/map-375.webp +0 -0
- package/public/maps/epic-buckingham-ride/map-750.webp +0 -0
- package/public/maps/epic-buckingham-ride/map-social.jpg +0 -0
- package/public/maps/epic-buckingham-ride/map.png +0 -0
- package/public/maps/experimental-farm-and-carlington-woods/.gpx-hash +1 -0
- package/public/maps/experimental-farm-and-carlington-woods/main/.gpx-hash +1 -0
- package/public/maps/experimental-farm-and-carlington-woods/main/map-375.webp +0 -0
- package/public/maps/experimental-farm-and-carlington-woods/main/map-750.webp +0 -0
- package/public/maps/experimental-farm-and-carlington-woods/main/map-social.jpg +0 -0
- package/public/maps/experimental-farm-and-carlington-woods/main/map.png +0 -0
- package/public/maps/experimental-farm-and-carlington-woods/map-375.webp +0 -0
- package/public/maps/experimental-farm-and-carlington-woods/map-750.webp +0 -0
- package/public/maps/experimental-farm-and-carlington-woods/map-social.jpg +0 -0
- package/public/maps/experimental-farm-and-carlington-woods/map.png +0 -0
- package/public/maps/gatineau-meech-lake-champlain-lookout/.gpx-hash +1 -0
- package/public/maps/gatineau-meech-lake-champlain-lookout/main/.gpx-hash +1 -0
- package/public/maps/gatineau-meech-lake-champlain-lookout/main/map-375.webp +0 -0
- package/public/maps/gatineau-meech-lake-champlain-lookout/main/map-750.webp +0 -0
- package/public/maps/gatineau-meech-lake-champlain-lookout/main/map-social.jpg +0 -0
- package/public/maps/gatineau-meech-lake-champlain-lookout/main/map.png +0 -0
- package/public/maps/gatineau-meech-lake-champlain-lookout/map-375.webp +0 -0
- package/public/maps/gatineau-meech-lake-champlain-lookout/map-750.webp +0 -0
- package/public/maps/gatineau-meech-lake-champlain-lookout/map-social.jpg +0 -0
- package/public/maps/gatineau-meech-lake-champlain-lookout/map.png +0 -0
- package/public/maps/gatineau-meech-lake-champlain-lookout/only-meech/.gpx-hash +1 -0
- package/public/maps/gatineau-meech-lake-champlain-lookout/only-meech/map-375.webp +0 -0
- package/public/maps/gatineau-meech-lake-champlain-lookout/only-meech/map-750.webp +0 -0
- package/public/maps/gatineau-meech-lake-champlain-lookout/only-meech/map-social.jpg +0 -0
- package/public/maps/gatineau-meech-lake-champlain-lookout/only-meech/map.png +0 -0
- package/public/maps/gravel-cup-2022-fall-grally/.gpx-hash +1 -0
- package/public/maps/gravel-cup-2022-fall-grally/main/.gpx-hash +1 -0
- package/public/maps/gravel-cup-2022-fall-grally/main/map-375.webp +0 -0
- package/public/maps/gravel-cup-2022-fall-grally/main/map-750.webp +0 -0
- package/public/maps/gravel-cup-2022-fall-grally/main/map-social.jpg +0 -0
- package/public/maps/gravel-cup-2022-fall-grally/main/map.png +0 -0
- package/public/maps/gravel-cup-2022-fall-grally/map-375.webp +0 -0
- package/public/maps/gravel-cup-2022-fall-grally/map-750.webp +0 -0
- package/public/maps/gravel-cup-2022-fall-grally/map-social.jpg +0 -0
- package/public/maps/gravel-cup-2022-fall-grally/map.png +0 -0
- package/public/maps/gravel-cup-2023-spring-runoff/.gpx-hash +1 -0
- package/public/maps/gravel-cup-2023-spring-runoff/main/.gpx-hash +1 -0
- package/public/maps/gravel-cup-2023-spring-runoff/main/map-375.webp +0 -0
- package/public/maps/gravel-cup-2023-spring-runoff/main/map-750.webp +0 -0
- package/public/maps/gravel-cup-2023-spring-runoff/main/map-social.jpg +0 -0
- package/public/maps/gravel-cup-2023-spring-runoff/main/map.png +0 -0
- package/public/maps/gravel-cup-2023-spring-runoff/map-375.webp +0 -0
- package/public/maps/gravel-cup-2023-spring-runoff/map-750.webp +0 -0
- package/public/maps/gravel-cup-2023-spring-runoff/map-social.jpg +0 -0
- package/public/maps/gravel-cup-2023-spring-runoff/map.png +0 -0
- package/public/maps/gravel-cup-2023-spring-runoff/medio/.gpx-hash +1 -0
- package/public/maps/gravel-cup-2023-spring-runoff/medio/map-375.webp +0 -0
- package/public/maps/gravel-cup-2023-spring-runoff/medio/map-750.webp +0 -0
- package/public/maps/gravel-cup-2023-spring-runoff/medio/map-social.jpg +0 -0
- package/public/maps/gravel-cup-2023-spring-runoff/medio/map.png +0 -0
- package/public/maps/greenbelt/.gpx-hash +1 -0
- package/public/maps/greenbelt/main/.gpx-hash +1 -0
- package/public/maps/greenbelt/main/map-375.webp +0 -0
- package/public/maps/greenbelt/main/map-750.webp +0 -0
- package/public/maps/greenbelt/main/map-social.jpg +0 -0
- package/public/maps/greenbelt/main/map.png +0 -0
- package/public/maps/greenbelt/map-375.webp +0 -0
- package/public/maps/greenbelt/map-750.webp +0 -0
- package/public/maps/greenbelt/map-social.jpg +0 -0
- package/public/maps/greenbelt/map.png +0 -0
- package/public/maps/lake-leamy/.gpx-hash +1 -0
- package/public/maps/lake-leamy/main/.gpx-hash +1 -0
- package/public/maps/lake-leamy/main/map-375.webp +0 -0
- package/public/maps/lake-leamy/main/map-750.webp +0 -0
- package/public/maps/lake-leamy/main/map-social.jpg +0 -0
- package/public/maps/lake-leamy/main/map.png +0 -0
- package/public/maps/lake-leamy/map-375.webp +0 -0
- package/public/maps/lake-leamy/map-750.webp +0 -0
- package/public/maps/lake-leamy/map-social.jpg +0 -0
- package/public/maps/lake-leamy/map.png +0 -0
- package/public/maps/ottawa-to-plaisance/.gpx-hash +1 -0
- package/public/maps/ottawa-to-plaisance/main/.gpx-hash +1 -0
- package/public/maps/ottawa-to-plaisance/main/map-375.webp +0 -0
- package/public/maps/ottawa-to-plaisance/main/map-750.webp +0 -0
- package/public/maps/ottawa-to-plaisance/main/map-social.jpg +0 -0
- package/public/maps/ottawa-to-plaisance/main/map.png +0 -0
- package/public/maps/ottawa-to-plaisance/map-375.webp +0 -0
- package/public/maps/ottawa-to-plaisance/map-750.webp +0 -0
- package/public/maps/ottawa-to-plaisance/map-social.jpg +0 -0
- package/public/maps/ottawa-to-plaisance/map.png +0 -0
- package/public/maps/pink-aylmer/.gpx-hash +1 -0
- package/public/maps/pink-aylmer/main/.gpx-hash +1 -0
- package/public/maps/pink-aylmer/main/map-375.webp +0 -0
- package/public/maps/pink-aylmer/main/map-750.webp +0 -0
- package/public/maps/pink-aylmer/main/map-social.jpg +0 -0
- package/public/maps/pink-aylmer/main/map.png +0 -0
- package/public/maps/pink-aylmer/map-375.webp +0 -0
- package/public/maps/pink-aylmer/map-750.webp +0 -0
- package/public/maps/pink-aylmer/map-social.jpg +0 -0
- package/public/maps/pink-aylmer/map.png +0 -0
- package/public/maps/pink-lake-in-gatineau-park/.gpx-hash +1 -0
- package/public/maps/pink-lake-in-gatineau-park/main/.gpx-hash +1 -0
- package/public/maps/pink-lake-in-gatineau-park/main/map-375.webp +0 -0
- package/public/maps/pink-lake-in-gatineau-park/main/map-750.webp +0 -0
- package/public/maps/pink-lake-in-gatineau-park/main/map-social.jpg +0 -0
- package/public/maps/pink-lake-in-gatineau-park/main/map.png +0 -0
- package/public/maps/pink-lake-in-gatineau-park/map-375.webp +0 -0
- package/public/maps/pink-lake-in-gatineau-park/map-750.webp +0 -0
- package/public/maps/pink-lake-in-gatineau-park/map-social.jpg +0 -0
- package/public/maps/pink-lake-in-gatineau-park/map.png +0 -0
- package/public/maps/quyon-ferry-loop/.gpx-hash +1 -0
- package/public/maps/quyon-ferry-loop/main/.gpx-hash +1 -0
- package/public/maps/quyon-ferry-loop/main/map-375.webp +0 -0
- package/public/maps/quyon-ferry-loop/main/map-750.webp +0 -0
- package/public/maps/quyon-ferry-loop/main/map-social.jpg +0 -0
- package/public/maps/quyon-ferry-loop/main/map.png +0 -0
- package/public/maps/quyon-ferry-loop/map-375.webp +0 -0
- package/public/maps/quyon-ferry-loop/map-750.webp +0 -0
- package/public/maps/quyon-ferry-loop/map-social.jpg +0 -0
- package/public/maps/quyon-ferry-loop/map.png +0 -0
- package/public/maps/richmond-manotick/.gpx-hash +1 -0
- package/public/maps/richmond-manotick/main/.gpx-hash +1 -0
- package/public/maps/richmond-manotick/main/map-375.webp +0 -0
- package/public/maps/richmond-manotick/main/map-750.webp +0 -0
- package/public/maps/richmond-manotick/main/map-social.jpg +0 -0
- package/public/maps/richmond-manotick/main/map.png +0 -0
- package/public/maps/richmond-manotick/map-375.webp +0 -0
- package/public/maps/richmond-manotick/map-750.webp +0 -0
- package/public/maps/richmond-manotick/map-social.jpg +0 -0
- package/public/maps/richmond-manotick/map.png +0 -0
- package/public/maps/richmond-manotick/richmond/.gpx-hash +1 -0
- package/public/maps/richmond-manotick/richmond/map-375.webp +0 -0
- package/public/maps/richmond-manotick/richmond/map-750.webp +0 -0
- package/public/maps/richmond-manotick/richmond/map-social.jpg +0 -0
- package/public/maps/richmond-manotick/richmond/map.png +0 -0
- package/public/maps/shirleys-bay/.gpx-hash +1 -0
- package/public/maps/shirleys-bay/main/.gpx-hash +1 -0
- package/public/maps/shirleys-bay/main/map-375.webp +0 -0
- package/public/maps/shirleys-bay/main/map-750.webp +0 -0
- package/public/maps/shirleys-bay/main/map-social.jpg +0 -0
- package/public/maps/shirleys-bay/main/map.png +0 -0
- package/public/maps/shirleys-bay/map-375.webp +0 -0
- package/public/maps/shirleys-bay/map-750.webp +0 -0
- package/public/maps/shirleys-bay/map-social.jpg +0 -0
- package/public/maps/shirleys-bay/map.png +0 -0
- package/public/maps/the-big-loop-around-ottawa/.gpx-hash +1 -0
- package/public/maps/the-big-loop-around-ottawa/main/.gpx-hash +1 -0
- package/public/maps/the-big-loop-around-ottawa/main/map-375.webp +0 -0
- package/public/maps/the-big-loop-around-ottawa/main/map-750.webp +0 -0
- package/public/maps/the-big-loop-around-ottawa/main/map-social.jpg +0 -0
- package/public/maps/the-big-loop-around-ottawa/main/map.png +0 -0
- package/public/maps/the-big-loop-around-ottawa/map-375.webp +0 -0
- package/public/maps/the-big-loop-around-ottawa/map-750.webp +0 -0
- package/public/maps/the-big-loop-around-ottawa/map-social.jpg +0 -0
- package/public/maps/the-big-loop-around-ottawa/map.png +0 -0
- package/public/maps/veloroute-des-draveurs/.gpx-hash +1 -0
- package/public/maps/veloroute-des-draveurs/main/.gpx-hash +1 -0
- package/public/maps/veloroute-des-draveurs/main/map-375.webp +0 -0
- package/public/maps/veloroute-des-draveurs/main/map-750.webp +0 -0
- package/public/maps/veloroute-des-draveurs/main/map-social.jpg +0 -0
- package/public/maps/veloroute-des-draveurs/main/map.png +0 -0
- package/public/maps/veloroute-des-draveurs/map-375.webp +0 -0
- package/public/maps/veloroute-des-draveurs/map-750.webp +0 -0
- package/public/maps/veloroute-des-draveurs/map-social.jpg +0 -0
- package/public/maps/veloroute-des-draveurs/map.png +0 -0
- package/public/maps/vincent-massey/.gpx-hash +1 -0
- package/public/maps/vincent-massey/lake-leamy-extension/.gpx-hash +1 -0
- package/public/maps/vincent-massey/lake-leamy-extension/map-375.webp +0 -0
- package/public/maps/vincent-massey/lake-leamy-extension/map-750.webp +0 -0
- package/public/maps/vincent-massey/lake-leamy-extension/map-social.jpg +0 -0
- package/public/maps/vincent-massey/lake-leamy-extension/map.png +0 -0
- package/public/maps/vincent-massey/main/.gpx-hash +1 -0
- package/public/maps/vincent-massey/main/map-375.webp +0 -0
- package/public/maps/vincent-massey/main/map-750.webp +0 -0
- package/public/maps/vincent-massey/main/map-social.jpg +0 -0
- package/public/maps/vincent-massey/main/map.png +0 -0
- package/public/maps/vincent-massey/map-375.webp +0 -0
- package/public/maps/vincent-massey/map-750.webp +0 -0
- package/public/maps/vincent-massey/map-social.jpg +0 -0
- package/public/maps/vincent-massey/map.png +0 -0
- package/public/maps/wakefield/.gpx-hash +1 -0
- package/public/maps/wakefield/cyclotour/.gpx-hash +1 -0
- package/public/maps/wakefield/cyclotour/map-375.webp +0 -0
- package/public/maps/wakefield/cyclotour/map-750.webp +0 -0
- package/public/maps/wakefield/cyclotour/map-social.jpg +0 -0
- package/public/maps/wakefield/cyclotour/map.png +0 -0
- package/public/maps/wakefield/from-downtown/.gpx-hash +1 -0
- package/public/maps/wakefield/from-downtown/map-375.webp +0 -0
- package/public/maps/wakefield/from-downtown/map-750.webp +0 -0
- package/public/maps/wakefield/from-downtown/map-social.jpg +0 -0
- package/public/maps/wakefield/from-downtown/map.png +0 -0
- package/public/maps/wakefield/main/.gpx-hash +1 -0
- package/public/maps/wakefield/main/map-375.webp +0 -0
- package/public/maps/wakefield/main/map-750.webp +0 -0
- package/public/maps/wakefield/main/map-social.jpg +0 -0
- package/public/maps/wakefield/main/map.png +0 -0
- package/public/maps/wakefield/map-375.webp +0 -0
- package/public/maps/wakefield/map-750.webp +0 -0
- package/public/maps/wakefield/map-social.jpg +0 -0
- package/public/maps/wakefield/map.png +0 -0
- package/public/maps/winchester-milk-run/.gpx-hash +1 -0
- package/public/maps/winchester-milk-run/main/.gpx-hash +1 -0
- package/public/maps/winchester-milk-run/main/map-375.webp +0 -0
- package/public/maps/winchester-milk-run/main/map-750.webp +0 -0
- package/public/maps/winchester-milk-run/main/map-social.jpg +0 -0
- package/public/maps/winchester-milk-run/main/map.png +0 -0
- package/public/maps/winchester-milk-run/map-375.webp +0 -0
- package/public/maps/winchester-milk-run/map-750.webp +0 -0
- package/public/maps/winchester-milk-run/map-social.jpg +0 -0
- package/public/maps/winchester-milk-run/map.png +0 -0
- package/scripts/build-contributors.ts +2 -1
- package/scripts/build-map-style.ts +1 -1
- package/scripts/generate-maps.ts +11 -9
- package/scripts/merge-incremental-build.ts +90 -0
- package/scripts/migrate-old-videos.js +202 -0
- package/scripts/prepare-build-plan.ts +226 -0
- package/scripts/reencode-videos.sh +126 -0
- package/scripts/setup-aws-video.js +1179 -0
- package/scripts/validate.ts +1 -1
- package/src/AGENTS.md +222 -0
- package/src/build-data-plugin.ts +136 -108
- package/src/components/AdminHeader.astro +16 -12
- package/src/components/BigMap.astro +4 -4
- package/src/components/BlogHome.astro +110 -0
- package/src/components/ClubHome.astro +70 -0
- package/src/components/ElevationProfile.astro +2 -1
- package/src/components/ElevationProfile.scss +22 -0
- package/src/components/EventCard.astro +2 -1
- package/src/components/EventCard.scss +24 -0
- package/src/components/EventRouteMap.astro +2 -2
- package/src/components/Footer.astro +4 -4
- package/src/components/LocaleRedirect.astro +1 -1
- package/src/components/MapPage.astro +4 -3
- package/src/components/Nav.astro +3 -3
- package/src/components/NearbyPlaces.astro +3 -3
- package/src/components/NearbyPlaces.scss +25 -0
- package/src/components/PhotoGallery.astro +2 -1
- package/src/components/PhotoGallery.scss +53 -0
- package/src/components/ResponsiveImage.astro +1 -1
- package/src/components/RideCard.astro +3 -2
- package/src/components/RideCard.scss +157 -0
- package/src/components/RideDetailContent.astro +3 -3
- package/src/components/RouteCard.astro +6 -5
- package/src/components/RouteCard.scss +82 -0
- package/src/components/RouteMap.astro +4 -4
- package/src/components/SEO.astro +3 -3
- package/src/components/TagFilter.astro +2 -1
- package/src/components/TagFilter.scss +36 -0
- package/src/components/WikiHome.astro +66 -0
- package/src/components/admin/EditHistory.tsx +1 -1
- package/src/components/admin/EventCreator.tsx +2 -1
- package/src/components/admin/EventEditor.tsx +63 -53
- package/src/components/admin/MapControls.tsx +1 -1
- package/src/components/admin/MediaManager.tsx +199 -36
- package/src/components/admin/NearbyMedia.tsx +184 -0
- package/src/components/admin/PhotoField.tsx +2 -1
- package/src/components/admin/PlaceEditor.tsx +34 -19
- package/src/components/admin/RideEditor.tsx +61 -32
- package/src/components/admin/RidePreview.tsx +13 -8
- package/src/components/admin/RouteCreator.tsx +12 -7
- package/src/components/admin/RouteEditor.tsx +49 -28
- package/src/components/admin/StaticRouteMap.tsx +2 -2
- package/src/components/admin/StravaActivityBrowser.tsx +2 -6
- package/src/components/admin/VariantManager.tsx +4 -8
- package/src/components/admin/useFormValidation.ts +28 -0
- package/src/components/admin/useProgressiveDisclosure.ts +28 -0
- package/src/content-collections.ts +4 -1
- package/src/content.config.ts +3 -2
- package/src/db/schema.ts +22 -1
- package/src/env.d.ts +7 -1
- package/src/i18n/index.ts +2 -2
- package/src/integration.ts +64 -2
- package/src/integrations/AGENTS.md +1 -1
- package/src/integrations/admin-routes.ts +31 -24
- package/src/integrations/i18n-routes.ts +22 -17
- package/src/layouts/Base.astro +4 -4
- package/src/lib/AGENTS.md +78 -14
- package/src/lib/auth/AGENTS.md +28 -0
- package/src/lib/auth/auth.ts +289 -0
- package/src/lib/auth/authorize.ts +57 -0
- package/src/lib/auth/ban-service.ts +41 -0
- package/src/lib/auth/rate-limit.ts +57 -0
- package/src/lib/config/AGENTS.md +27 -0
- package/src/lib/config/app-env.ts +43 -0
- package/src/lib/config/city-config.ts +70 -0
- package/src/lib/config/config.server.ts +5 -0
- package/src/lib/config/config.ts +38 -0
- package/src/lib/content/AGENTS.md +32 -0
- package/src/lib/content/build-plan.server.ts +104 -0
- package/src/lib/content/cache.ts +37 -0
- package/src/lib/content/content-cache.server.ts +52 -0
- package/src/lib/content/content-ops.server.ts +52 -0
- package/src/lib/content/content-save.ts +322 -0
- package/src/lib/content/content-types.server.ts +115 -0
- package/src/lib/content/load-admin-content.server.ts +301 -0
- package/src/lib/content/save-helpers.server.ts +159 -0
- package/src/lib/csp-env.ts +67 -0
- package/src/lib/csp.ts +15 -5
- package/src/lib/date-utils.ts +18 -0
- package/src/lib/env/AGENTS.md +25 -0
- package/src/lib/env/env.adapter-local.ts +55 -0
- package/src/lib/env/env.service.ts +37 -0
- package/src/lib/external/AGENTS.md +26 -0
- package/src/lib/external/email.ts +158 -0
- package/src/lib/external/strava-token-provider.ts +48 -0
- package/src/lib/geo/AGENTS.md +29 -0
- package/src/lib/geo/elevation.ts +47 -0
- package/src/lib/geo/media-geo-interpolation.ts +52 -0
- package/src/lib/geo/media-proximity.ts +75 -0
- package/src/lib/geo/places.ts +45 -0
- package/src/lib/geo/privacy-zone.ts +46 -0
- package/src/lib/geo/proximity.ts +86 -0
- package/src/lib/get-db.ts +1 -1
- package/src/lib/git/AGENTS.md +29 -0
- package/src/lib/git/commit.ts +40 -0
- package/src/lib/git/git-factory.ts +16 -0
- package/src/lib/git/git-gpx.ts +25 -0
- package/src/lib/git/git.adapter-local.ts +223 -0
- package/src/lib/gpx/download.server.ts +24 -0
- package/src/lib/gpx/filenames.ts +37 -0
- package/src/lib/gpx/paths.server.ts +11 -0
- package/src/lib/hooks/use-unsaved-guard.ts +21 -0
- package/src/lib/hooks.ts +226 -5
- package/src/lib/i18n/AGENTS.md +25 -0
- package/src/lib/i18n/locale-utils.ts +38 -0
- package/src/lib/i18n/path-translations.ts +34 -0
- package/src/lib/i18n/segment-registry.ts +45 -0
- package/src/lib/i18n/tag-translations.server.ts +38 -0
- package/src/lib/json-ld.ts +2 -2
- package/src/lib/maps/AGENTS.md +32 -0
- package/src/lib/maps/map-generation.server.ts +35 -0
- package/src/lib/maps/map-helpers.ts +124 -0
- package/src/lib/maps/map-init.ts +701 -0
- package/src/lib/maps/map-paths.server.ts +17 -0
- package/src/lib/maps/map-paths.ts +124 -0
- package/src/lib/maps/map-thumbnails.ts +30 -0
- package/src/lib/markdown/AGENTS.md +21 -0
- package/src/lib/media/AGENTS.md +37 -0
- package/src/lib/media/hls-player.ts +68 -0
- package/src/lib/media/image-service.ts +76 -0
- package/src/lib/media/media-merge.ts +152 -0
- package/src/lib/media/media-parking.server.ts +90 -0
- package/src/lib/media/media-registry.ts +104 -0
- package/src/lib/media/transcode.adapter-aws.ts +62 -0
- package/src/lib/media/transcode.adapter-local.ts +17 -0
- package/src/lib/media/transcode.service.ts +38 -0
- package/src/lib/media/video-completion.ts +19 -0
- package/src/lib/media/video-completion.webhook.ts +155 -0
- package/src/lib/media/video-enrichment.ts +46 -0
- package/src/lib/media/video-metadata.ts +51 -0
- package/src/lib/media/video-service.ts +93 -0
- package/src/lib/media/video-urls.ts +30 -0
- package/src/lib/models/content-hash.server.ts +10 -0
- package/src/lib/models/content-model.ts +6 -13
- package/src/lib/models/event-model.server.ts +115 -0
- package/src/lib/models/event-model.ts +1 -112
- package/src/lib/models/place-model.server.ts +49 -0
- package/src/lib/models/place-model.ts +1 -47
- package/src/lib/models/ride-model.server.ts +144 -0
- package/src/lib/models/ride-model.ts +1 -139
- package/src/lib/models/route-model.server.ts +110 -0
- package/src/lib/models/route-model.ts +1 -105
- package/src/lib/paths.ts +2 -2
- package/src/lib/redirects.ts +2 -2
- package/src/lib/ride-paths.ts +15 -3
- package/src/lib/route-data.ts +4 -4
- package/src/lib/route-insights.ts +1 -1
- package/src/lib/sitemap.ts +3 -3
- package/src/lib/slug-redirects.ts +1 -1
- package/src/lib/tile-cache/AGENTS.md +22 -0
- package/src/lib/tile-cache/tile-cache.adapter-kv.ts +20 -0
- package/src/lib/tile-cache/tile-cache.adapter-local.ts +42 -0
- package/src/loaders/admin-events.ts +17 -2
- package/src/loaders/admin-organizers.ts +10 -1
- package/src/loaders/admin-places.ts +16 -2
- package/src/loaders/admin-rides.ts +124 -86
- package/src/loaders/admin-routes.ts +115 -74
- package/src/loaders/locale-content.ts +1 -1
- package/src/loaders/media-locations.ts +88 -0
- package/src/loaders/pages.ts +2 -2
- package/src/loaders/ride-file-reader.ts +114 -0
- package/src/loaders/rides.ts +66 -83
- package/src/loaders/route-file-reader.ts +122 -0
- package/src/loaders/routes.ts +28 -57
- package/src/middleware.ts +21 -2
- package/src/styles/_buttons.scss +167 -0
- package/src/styles/_forms.scss +71 -0
- package/src/styles/_modals.scss +63 -0
- package/src/styles/admin.scss +146 -305
- package/src/styles/global.scss +0 -382
- package/src/views/404.astro +1 -1
- package/src/views/about.astro +3 -3
- package/src/views/admin/event-detail.astro +6 -6
- package/src/views/admin/event-new.astro +3 -3
- package/src/views/admin/events.astro +5 -4
- package/src/views/admin/history.astro +2 -2
- package/src/views/admin/index.astro +5 -13
- package/src/views/admin/place-detail.astro +10 -8
- package/src/views/admin/place-new.astro +9 -6
- package/src/views/admin/places.astro +5 -5
- package/src/views/admin/ride-detail.astro +7 -5
- package/src/views/admin/rides.astro +1 -1
- package/src/views/admin/route-detail.astro +12 -10
- package/src/views/admin/route-new.astro +8 -4
- package/src/views/admin/settings.astro +2 -2
- package/src/views/admin/users.astro +1 -1
- package/src/views/api/AGENTS.md +1 -1
- package/src/views/api/admin-diff.ts +3 -3
- package/src/views/api/admin-history.ts +4 -4
- package/src/views/api/admin-revert.ts +29 -76
- package/src/views/api/admin-sync.ts +4 -4
- package/src/views/api/admin-users.ts +2 -2
- package/src/views/api/auth/add-passkey.ts +2 -2
- package/src/views/api/auth/email-login.ts +5 -5
- package/src/views/api/auth/guest.ts +4 -4
- package/src/views/api/auth/login-options.ts +2 -2
- package/src/views/api/auth/login.ts +2 -2
- package/src/views/api/auth/logout.ts +1 -1
- package/src/views/api/auth/register-options.ts +3 -3
- package/src/views/api/auth/register.ts +3 -3
- package/src/views/api/auth/remove-passkey.ts +1 -1
- package/src/views/api/auth/strava-callback.ts +3 -3
- package/src/views/api/auth/upgrade-options.ts +3 -3
- package/src/views/api/auth/upgrade.ts +3 -3
- package/src/views/api/event-draft.ts +6 -6
- package/src/views/api/event-save.ts +33 -58
- package/src/views/api/fetch-image.ts +3 -3
- package/src/views/api/gpx/import.ts +5 -5
- package/src/views/api/media/confirm.ts +3 -3
- package/src/views/api/media/presign.ts +4 -4
- package/src/views/api/media-delete.ts +3 -3
- package/src/views/api/place-save.ts +30 -42
- package/src/views/api/places-prefill.ts +2 -2
- package/src/views/api/reactions-get.ts +3 -3
- package/src/views/api/reactions-starred.ts +3 -3
- package/src/views/api/reactions.ts +4 -4
- package/src/views/api/ride-save.ts +40 -51
- package/src/views/api/route-save.ts +44 -75
- package/src/views/api/settings.ts +2 -2
- package/src/views/api/strava/activities.ts +4 -4
- package/src/views/api/strava/connect.ts +3 -3
- package/src/views/api/strava/disconnect.ts +1 -1
- package/src/views/api/strava/import.ts +7 -7
- package/src/views/api/suggest-waypoints.ts +3 -3
- package/src/views/api/tile-proxy.ts +2 -2
- package/src/views/api/video-presign.ts +105 -0
- package/src/views/api/video-status.ts +50 -0
- package/src/views/api/video-upload-local.ts +30 -0
- package/src/views/api/video-webhook.ts +57 -0
- package/src/views/auth/gate.astro +1 -1
- package/src/views/auth/login.astro +1 -1
- package/src/views/auth/register.astro +1 -1
- package/src/views/auth/setup.astro +1 -1
- package/src/views/auth/verify.astro +1 -1
- package/src/views/calendar.astro +1 -1
- package/src/views/calendar.ics.ts +1 -1
- package/src/views/dev/upload.ts +1 -1
- package/src/views/events/club-detail.astro +2 -2
- package/src/views/events/download-gpx.ts +6 -12
- package/src/views/events/index.astro +1 -1
- package/src/views/guides/detail.astro +1 -1
- package/src/views/guides/index.astro +1 -1
- package/src/views/index.astro +8 -243
- package/src/views/llms.txt.ts +1 -1
- package/src/views/map.astro +4 -4
- package/src/views/places/index.astro +2 -2
- package/src/views/rides/detail.astro +8 -5
- package/src/views/rides/download-gpx.ts +13 -18
- package/src/views/rides/index.astro +3 -3
- package/src/views/rides/map.astro +8 -7
- package/src/views/robots.txt.ts +1 -1
- package/src/views/routes/detail.astro +16 -12
- package/src/views/routes/download-gpx.ts +9 -14
- package/src/views/routes/map-variant.astro +9 -7
- package/src/views/routes/map.astro +8 -6
- package/src/views/rss.xml.ts +1 -1
- package/src/views/sitemap.astro +2 -2
- package/src/views/stats.astro +1 -1
- package/src/views/tours/detail.astro +4 -4
- package/src/views/tours/index.astro +3 -3
- package/src/views/tours/ride-detail.astro +9 -6
- package/src/views/tours/ride-map.astro +8 -7
- package/src/views/videos/detail.astro +5 -8
- package/src/views/videos/index.astro +3 -8
- package/src/virtual-modules.d.ts +17 -11
- package/public/map-style-default.c9cf4903.json +0 -3066
- package/public/map-style-high-contrast.be9586dd.json +0 -3070
- package/src/components/admin/NearbyPhotos.tsx +0 -179
- package/src/lib/app-env.ts +0 -37
- package/src/lib/auth.ts +0 -289
- package/src/lib/authorize.ts +0 -57
- package/src/lib/ban-service.ts +0 -41
- package/src/lib/cache.ts +0 -37
- package/src/lib/city-config.ts +0 -70
- package/src/lib/config.ts +0 -5
- package/src/lib/content-save.ts +0 -328
- package/src/lib/elevation.ts +0 -47
- package/src/lib/email.ts +0 -158
- package/src/lib/env-local.ts +0 -49
- package/src/lib/env.ts +0 -37
- package/src/lib/git-factory.ts +0 -16
- package/src/lib/git-gpx.ts +0 -25
- package/src/lib/git-service-local.ts +0 -223
- package/src/lib/image-service.ts +0 -38
- package/src/lib/load-admin-content.ts +0 -300
- package/src/lib/locale-utils.ts +0 -38
- package/src/lib/map-generation.ts +0 -34
- package/src/lib/map-helpers.ts +0 -122
- package/src/lib/map-init.ts +0 -700
- package/src/lib/map-paths.ts +0 -144
- package/src/lib/map-thumbnails.ts +0 -29
- package/src/lib/media-merge.ts +0 -124
- package/src/lib/path-translations.ts +0 -43
- package/src/lib/photo-geo-interpolation.ts +0 -52
- package/src/lib/photo-parking.ts +0 -95
- package/src/lib/photo-proximity.ts +0 -75
- package/src/lib/photo-registry.ts +0 -104
- package/src/lib/places.ts +0 -45
- package/src/lib/privacy-zone.ts +0 -56
- package/src/lib/proximity.ts +0 -86
- package/src/lib/rate-limit.ts +0 -57
- package/src/lib/save-helpers.ts +0 -20
- package/src/lib/strava-token-provider.ts +0 -48
- package/src/lib/tag-translations.ts +0 -38
- package/src/lib/tile-cache-kv.ts +0 -20
- package/src/lib/tile-cache-local.ts +0 -42
- package/src/lib/video-service.ts +0 -45
- package/src/loaders/photo-locations.ts +0 -85
- /package/src/lib/{pseudonym.ts → auth/pseudonym.ts} +0 -0
- /package/src/lib/{instance-features.ts → config/instance-features.ts} +0 -0
- /package/src/lib/{content-filters.ts → content/content-filters.ts} +0 -0
- /package/src/lib/{file-serializers.ts → content/file-serializers.ts} +0 -0
- /package/src/lib/{directory-digest.ts → directory-digest.server.ts} +0 -0
- /package/src/lib/{adapter.ts → env/adapter.ts} +0 -0
- /package/src/lib/{analytics.ts → external/analytics.ts} +0 -0
- /package/src/lib/{google-maps.ts → external/google-maps.ts} +0 -0
- /package/src/lib/{strava-api.ts → external/strava-api.ts} +0 -0
- /package/src/lib/{fonts.ts → fonts.server.ts} +0 -0
- /package/src/lib/{distance.ts → geo/distance.ts} +0 -0
- /package/src/lib/{elevation-enrichment.ts → geo/elevation-enrichment.ts} +0 -0
- /package/src/lib/{elevation-profile.ts → geo/elevation-profile.ts} +0 -0
- /package/src/lib/{place-categories.ts → geo/place-categories.ts} +0 -0
- /package/src/lib/{commit-author.ts → git/commit-author.ts} +0 -0
- /package/src/lib/{git-lfs.ts → git/git-lfs.ts} +0 -0
- /package/src/lib/{git-utils.ts → git/git-utils.ts} +0 -0
- /package/src/lib/{git-service.ts → git/git.adapter-github.ts} +0 -0
- /package/src/lib/{gpx.ts → gpx/parse.ts} +0 -0
- /package/src/lib/{gpx-waypoint-inject.ts → gpx/waypoint-inject.ts} +0 -0
- /package/src/lib/{locale-switcher.ts → i18n/locale-switcher.ts} +0 -0
- /package/src/lib/{map-style-switch.ts → maps/map-style-switch.ts} +0 -0
- /package/src/lib/{map-style-url.d.ts → maps/map-style-url.d.ts} +0 -0
- /package/src/lib/{map-style-url.ts → maps/map-style-url.ts} +0 -0
- /package/src/lib/{tile-proxy-helpers.ts → maps/tile-proxy-helpers.ts} +0 -0
- /package/src/lib/{markdown-preview.ts → markdown/markdown-preview.ts} +0 -0
- /package/src/lib/{markdown-render.ts → markdown/markdown-render.ts} +0 -0
- /package/src/lib/{exif.ts → media/exif.ts} +0 -0
- /package/src/lib/{image-dimensions.ts → media/image-dimensions.ts} +0 -0
- /package/src/lib/{storage-local.ts → media/storage.adapter-local.ts} +0 -0
- /package/src/lib/{storage.ts → media/storage.adapter-r2.ts} +0 -0
- /package/src/lib/{tile-cache.ts → tile-cache/tile-cache.service.ts} +0 -0
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
# Video Agent Lambda
|
|
2
|
+
|
|
3
|
+
Handles the full video transcoding lifecycle. Deployed to AWS Lambda with an ffprobe layer.
|
|
4
|
+
|
|
5
|
+
## Setup
|
|
6
|
+
|
|
7
|
+
Run the setup script from the repo root. It creates all AWS resources idempotently — safe to run multiple times.
|
|
8
|
+
|
|
9
|
+
```sh
|
|
10
|
+
# Step 1: Shared resources (S3 buckets, IAM roles, Lambda, EventBridge)
|
|
11
|
+
node scripts/setup-aws-video.js --region us-east-1
|
|
12
|
+
|
|
13
|
+
# Step 2: Per-instance config (CORS, webhook map, secrets)
|
|
14
|
+
node scripts/setup-aws-video.js configure-instance \
|
|
15
|
+
--prefix ottawa --domain ottawabybike.ca \
|
|
16
|
+
--wrangler-env staging
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
### Prerequisites
|
|
20
|
+
|
|
21
|
+
- **AWS CLI** authenticated (`aws login` or env vars)
|
|
22
|
+
- **`gh` CLI** authenticated (for setting GitHub Actions secrets)
|
|
23
|
+
- **`wrangler` CLI** authenticated (for setting Worker secrets)
|
|
24
|
+
|
|
25
|
+
### IAM for CI
|
|
26
|
+
|
|
27
|
+
The setup script will ask for AWS credentials to store as GitHub Actions secrets. These are used by CI to deploy the Lambda on each push to main. The IAM user needs the **`AWSLambda_FullAccess`** policy attached — you can reuse an existing IAM user, just add the policy in the IAM console.
|
|
28
|
+
|
|
29
|
+
## Event Paths
|
|
30
|
+
|
|
31
|
+
Two event sources trigger this handler:
|
|
32
|
+
|
|
33
|
+
1. **S3 ObjectCreated** — a video was uploaded to the originals bucket
|
|
34
|
+
- Downloads the file, runs ffprobe to extract metadata (dimensions, duration, rotation, GPS, capture date)
|
|
35
|
+
- Creates a MediaConvert job (HLS H.265 adaptive + H.264 MP4 + poster frame)
|
|
36
|
+
- Posts a `transcoding` webhook with metadata to the Worker
|
|
37
|
+
|
|
38
|
+
2. **EventBridge** — MediaConvert job completed or failed
|
|
39
|
+
- Parses the output path to extract instance prefix and video key
|
|
40
|
+
- Posts a `ready` or `failed` webhook to the Worker
|
|
41
|
+
|
|
42
|
+
## S3 Key Format
|
|
43
|
+
|
|
44
|
+
Keys are prefixed by city instance: `{city}/{8-char-key}` (e.g. `ottawa/st9uuvau`). The Lambda extracts the prefix to route webhooks to the correct Worker instance via `WEBHOOK_MAP`.
|
|
45
|
+
|
|
46
|
+
Existing videos (uploaded before the Lambda pipeline) use unprefixed keys and continue to work — they're already transcoded and served from R2. The prefix format only applies to new uploads.
|
|
47
|
+
|
|
48
|
+
## Environment Variables
|
|
49
|
+
|
|
50
|
+
| Variable | Description |
|
|
51
|
+
|----------|-------------|
|
|
52
|
+
| `S3_ORIGINALS_BUCKET` | Bucket receiving raw uploads |
|
|
53
|
+
| `S3_OUTPUTS_BUCKET` | Bucket for transcoded outputs |
|
|
54
|
+
| `MEDIACONVERT_QUEUE` | MediaConvert queue ARN |
|
|
55
|
+
| `MEDIACONVERT_ROLE` | IAM role ARN for MediaConvert |
|
|
56
|
+
| `MEDIACONVERT_ENDPOINT` | Optional cached endpoint URL |
|
|
57
|
+
| `WEBHOOK_MAP` | JSON mapping prefix → webhook URL |
|
|
58
|
+
| `WEBHOOK_SECRET` | Bearer token for webhook auth |
|
|
59
|
+
|
|
60
|
+
## Webhook Contract
|
|
61
|
+
|
|
62
|
+
POST to the Worker's `/api/video/webhook` with `Authorization: Bearer {WEBHOOK_SECRET}`:
|
|
63
|
+
|
|
64
|
+
```json
|
|
65
|
+
// transcoding (from S3 event)
|
|
66
|
+
{ "key": "st9uuvau", "status": "transcoding", "width": 1920, "height": 1080,
|
|
67
|
+
"duration": "PT30S", "orientation": "landscape", "capturedAt": "...", "jobId": "..." }
|
|
68
|
+
|
|
69
|
+
// ready (from EventBridge)
|
|
70
|
+
{ "key": "st9uuvau", "status": "ready" }
|
|
71
|
+
|
|
72
|
+
// failed (from either)
|
|
73
|
+
{ "key": "st9uuvau", "status": "failed", "error": "..." }
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
## Testing
|
|
77
|
+
|
|
78
|
+
```sh
|
|
79
|
+
make test-lambda # or: node --test handler.test.mjs
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
Tests use Node's built-in `node:test` runner (not vitest). The handler is plain `.mjs` so it runs directly without a build step.
|
|
83
|
+
|
|
84
|
+
## Deployment
|
|
85
|
+
|
|
86
|
+
CI deploys automatically on code changes to main (`.github/workflows/production.yml` `deploy-lambda` job). Tests run before deploy. The setup script (`scripts/setup-aws-video.js`) creates all AWS resources idempotently.
|
|
87
|
+
|
|
88
|
+
## Gotchas
|
|
89
|
+
|
|
90
|
+
- **ffprobe layer**: The setup script publishes a Lambda layer with a static ffprobe binary to your AWS account (downloaded from johnvansickle.com). The binary must be at `/opt/bin/ffprobe` in the Lambda environment.
|
|
91
|
+
- **Rotation handling**: iPhone portrait videos report dimensions as landscape with rotation metadata in `side_data_list`. The probe parser swaps dimensions for 90/270 rotation.
|
|
92
|
+
- **`cfg()` is lazy**: Environment variables are read via `cfg()` on each call, not at module load. This lets tests override `process.env` in `beforeEach`.
|
|
93
|
+
- **node_modules in zip**: `npm ci --omit=dev` before zipping. Only `@aws-sdk/client-mediaconvert` is needed — S3 client is imported dynamically to keep the cold start fast.
|
|
Binary file
|
|
@@ -0,0 +1,483 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Video Agent Lambda — handles the full video lifecycle.
|
|
3
|
+
*
|
|
4
|
+
* Two event paths:
|
|
5
|
+
* 1. S3 ObjectCreated → ffprobe → MediaConvert job → webhook
|
|
6
|
+
* 2. EventBridge MediaConvert completion → webhook
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
import { execFile } from 'node:child_process';
|
|
10
|
+
import { writeFile, unlink } from 'node:fs/promises';
|
|
11
|
+
import { promisify } from 'node:util';
|
|
12
|
+
// Lazy-loaded to avoid import failure when running pure-function tests without node_modules
|
|
13
|
+
let _mcModule;
|
|
14
|
+
async function getMcClient() {
|
|
15
|
+
_mcModule ??= await import('@aws-sdk/client-mediaconvert');
|
|
16
|
+
return _mcModule;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
const execFileAsync = promisify(execFile);
|
|
20
|
+
|
|
21
|
+
/** Read env vars lazily so tests can set them in beforeEach. */
|
|
22
|
+
function cfg() {
|
|
23
|
+
return {
|
|
24
|
+
S3_ORIGINALS_BUCKET: process.env.S3_ORIGINALS_BUCKET,
|
|
25
|
+
S3_OUTPUTS_BUCKET: process.env.S3_OUTPUTS_BUCKET,
|
|
26
|
+
MEDIACONVERT_QUEUE: process.env.MEDIACONVERT_QUEUE,
|
|
27
|
+
MEDIACONVERT_ROLE: process.env.MEDIACONVERT_ROLE,
|
|
28
|
+
MEDIACONVERT_ENDPOINT: process.env.MEDIACONVERT_ENDPOINT,
|
|
29
|
+
WEBHOOK_MAP: process.env.WEBHOOK_MAP,
|
|
30
|
+
WEBHOOK_SECRET: process.env.WEBHOOK_SECRET,
|
|
31
|
+
region: process.env.AWS_REGION || 'us-east-1',
|
|
32
|
+
};
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
// --- Output size calculation (matches src/lib/media/transcode.service.ts) ---
|
|
36
|
+
|
|
37
|
+
export function outputSize(width, height) {
|
|
38
|
+
const maxLong = 1920;
|
|
39
|
+
const maxShort = 1080;
|
|
40
|
+
const landscape = width >= height;
|
|
41
|
+
const longEdge = landscape ? width : height;
|
|
42
|
+
const shortEdge = landscape ? height : width;
|
|
43
|
+
const scale = Math.min(maxLong / longEdge, maxShort / shortEdge, 1);
|
|
44
|
+
if (scale >= 1) return { width, height };
|
|
45
|
+
return {
|
|
46
|
+
width: Math.round((width * scale) / 2) * 2,
|
|
47
|
+
height: Math.round((height * scale) / 2) * 2,
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
/** Thumbnail size for HLS low-bandwidth tier (~480p). */
|
|
52
|
+
export function thumbSize(width, height) {
|
|
53
|
+
const maxLong = 640;
|
|
54
|
+
const maxShort = 480;
|
|
55
|
+
const landscape = width >= height;
|
|
56
|
+
const longEdge = landscape ? width : height;
|
|
57
|
+
const shortEdge = landscape ? height : width;
|
|
58
|
+
const scale = Math.min(maxLong / longEdge, maxShort / shortEdge, 1);
|
|
59
|
+
if (scale >= 1) return { width, height };
|
|
60
|
+
return {
|
|
61
|
+
width: Math.round((width * scale) / 2) * 2,
|
|
62
|
+
height: Math.round((height * scale) / 2) * 2,
|
|
63
|
+
};
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
// --- ffprobe ---
|
|
67
|
+
|
|
68
|
+
/**
|
|
69
|
+
* Download an S3 object to /tmp/input and run ffprobe on it.
|
|
70
|
+
* Returns parsed video stream metadata.
|
|
71
|
+
*/
|
|
72
|
+
export async function probeVideo(bucket, key) {
|
|
73
|
+
const { S3Client, GetObjectCommand } = await import('@aws-sdk/client-s3');
|
|
74
|
+
const s3 = new S3Client({ region: cfg().region });
|
|
75
|
+
const tmpPath = '/tmp/input';
|
|
76
|
+
|
|
77
|
+
const { Body } = await s3.send(new GetObjectCommand({ Bucket: bucket, Key: key }));
|
|
78
|
+
const chunks = [];
|
|
79
|
+
for await (const chunk of Body) chunks.push(chunk);
|
|
80
|
+
await writeFile(tmpPath, Buffer.concat(chunks));
|
|
81
|
+
|
|
82
|
+
try {
|
|
83
|
+
const { stdout } = await execFileAsync('ffprobe', [
|
|
84
|
+
'-v', 'quiet',
|
|
85
|
+
'-print_format', 'json',
|
|
86
|
+
'-show_streams', '-show_format',
|
|
87
|
+
'-i', tmpPath,
|
|
88
|
+
]);
|
|
89
|
+
return parseProbeOutput(JSON.parse(stdout));
|
|
90
|
+
} finally {
|
|
91
|
+
await unlink(tmpPath).catch(() => {});
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
/**
|
|
96
|
+
* Extract video metadata from ffprobe JSON output.
|
|
97
|
+
* Handles rotation from side_data_list (iPhone portrait videos).
|
|
98
|
+
*/
|
|
99
|
+
export function parseProbeOutput(probeData) {
|
|
100
|
+
const videoStream = probeData.streams?.find(s => s.codec_type === 'video');
|
|
101
|
+
if (!videoStream) throw new Error('No video stream found');
|
|
102
|
+
|
|
103
|
+
let width = videoStream.width;
|
|
104
|
+
let height = videoStream.height;
|
|
105
|
+
const duration = parseFloat(probeData.format?.duration || videoStream.duration || '0');
|
|
106
|
+
|
|
107
|
+
// Check for rotation in side_data_list (common with iPhone videos)
|
|
108
|
+
let rotation = 0;
|
|
109
|
+
const sideData = videoStream.side_data_list || [];
|
|
110
|
+
for (const sd of sideData) {
|
|
111
|
+
if (sd.rotation != null) {
|
|
112
|
+
rotation = Math.abs(parseInt(sd.rotation, 10));
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
// Also check the deprecated 'tags.rotate' field
|
|
116
|
+
if (!rotation && videoStream.tags?.rotate) {
|
|
117
|
+
rotation = Math.abs(parseInt(videoStream.tags.rotate, 10));
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
// Swap dimensions for 90/270 degree rotation
|
|
121
|
+
if (rotation === 90 || rotation === 270) {
|
|
122
|
+
[width, height] = [height, width];
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
const orientation = width > height ? 'landscape' : 'portrait';
|
|
126
|
+
|
|
127
|
+
// Extract capture date if available
|
|
128
|
+
const capturedAt = videoStream.tags?.creation_time
|
|
129
|
+
|| probeData.format?.tags?.creation_time
|
|
130
|
+
|| null;
|
|
131
|
+
|
|
132
|
+
// Extract GPS if available (some cameras embed it)
|
|
133
|
+
const locationTag = probeData.format?.tags?.location
|
|
134
|
+
|| probeData.format?.tags?.['com.apple.quicktime.location.ISO6709']
|
|
135
|
+
|| null;
|
|
136
|
+
const gps = locationTag ? parseLocationTag(locationTag) : null;
|
|
137
|
+
|
|
138
|
+
return { width, height, duration, orientation, rotation, capturedAt, gps };
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
/**
|
|
142
|
+
* Parse ISO 6709 location strings like "+48.8566+002.3522+035.000/"
|
|
143
|
+
*/
|
|
144
|
+
function parseLocationTag(tag) {
|
|
145
|
+
const match = tag.match(/([+-]\d+\.\d+)([+-]\d+\.\d+)/);
|
|
146
|
+
if (!match) return null;
|
|
147
|
+
return { lat: parseFloat(match[1]), lng: parseFloat(match[2]) };
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
// --- MediaConvert job ---
|
|
151
|
+
|
|
152
|
+
/** Cached endpoint for the session. */
|
|
153
|
+
let cachedEndpoint = null;
|
|
154
|
+
|
|
155
|
+
async function getMediaConvertEndpoint() {
|
|
156
|
+
const { MEDIACONVERT_ENDPOINT, region } = cfg();
|
|
157
|
+
if (MEDIACONVERT_ENDPOINT) return MEDIACONVERT_ENDPOINT;
|
|
158
|
+
if (cachedEndpoint) return cachedEndpoint;
|
|
159
|
+
|
|
160
|
+
const { MediaConvertClient, DescribeEndpointsCommand } = await getMcClient();
|
|
161
|
+
const client = new MediaConvertClient({ region });
|
|
162
|
+
const { Endpoints } = await client.send(new DescribeEndpointsCommand({ MaxResults: 0 }));
|
|
163
|
+
if (!Endpoints?.length) throw new Error('No MediaConvert endpoints returned');
|
|
164
|
+
cachedEndpoint = Endpoints[0].Url;
|
|
165
|
+
return cachedEndpoint;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
const MAX_DURATION_SECONDS = 180;
|
|
169
|
+
|
|
170
|
+
export function buildJobDefinition(key, { width, height, duration }) {
|
|
171
|
+
const { S3_ORIGINALS_BUCKET, S3_OUTPUTS_BUCKET, MEDIACONVERT_QUEUE, MEDIACONVERT_ROLE } = cfg();
|
|
172
|
+
const big = outputSize(width, height);
|
|
173
|
+
const thumb = thumbSize(width, height);
|
|
174
|
+
const bigFields = { Width: big.width, Height: big.height };
|
|
175
|
+
const thumbFields = { Width: thumb.width, Height: thumb.height };
|
|
176
|
+
|
|
177
|
+
const aacAudio = [{
|
|
178
|
+
CodecSettings: {
|
|
179
|
+
Codec: 'AAC',
|
|
180
|
+
AacSettings: { Bitrate: 256_000, CodingMode: 'CODING_MODE_2_0', SampleRate: 48_000 },
|
|
181
|
+
},
|
|
182
|
+
}];
|
|
183
|
+
|
|
184
|
+
// Split key "ottawa-staging/testkey5" → prefix + videoKey for EventBridge handler
|
|
185
|
+
const slashIdx = key.indexOf('/');
|
|
186
|
+
const prefix = slashIdx > 0 ? key.slice(0, slashIdx) : '';
|
|
187
|
+
const videoKey = slashIdx > 0 ? key.slice(slashIdx + 1) : key;
|
|
188
|
+
|
|
189
|
+
return {
|
|
190
|
+
Queue: MEDIACONVERT_QUEUE,
|
|
191
|
+
Role: MEDIACONVERT_ROLE,
|
|
192
|
+
UserMetadata: { prefix, videoKey },
|
|
193
|
+
Settings: {
|
|
194
|
+
Inputs: [{
|
|
195
|
+
FileInput: `s3://${S3_ORIGINALS_BUCKET}/${key}`,
|
|
196
|
+
VideoSelector: { Rotate: 'AUTO' },
|
|
197
|
+
AudioSelectors: { 'Audio Selector 1': { DefaultSelection: 'DEFAULT' } },
|
|
198
|
+
TimecodeSource: 'ZEROBASED',
|
|
199
|
+
...(duration > MAX_DURATION_SECONDS && {
|
|
200
|
+
InputClippings: [{ EndTimecode: '00:03:00:00' }],
|
|
201
|
+
}),
|
|
202
|
+
}],
|
|
203
|
+
TimecodeConfig: { Source: 'ZEROBASED' },
|
|
204
|
+
OutputGroups: [
|
|
205
|
+
// MP4 output: H.264 universal (HLS handles H.265 adaptive delivery)
|
|
206
|
+
{
|
|
207
|
+
CustomName: 'mp4',
|
|
208
|
+
OutputGroupSettings: {
|
|
209
|
+
Type: 'FILE_GROUP_SETTINGS',
|
|
210
|
+
FileGroupSettings: {
|
|
211
|
+
Destination: `s3://${S3_OUTPUTS_BUCKET}/${key}/`,
|
|
212
|
+
},
|
|
213
|
+
},
|
|
214
|
+
Outputs: [
|
|
215
|
+
{
|
|
216
|
+
NameModifier: '-h264',
|
|
217
|
+
ContainerSettings: { Container: 'MP4' },
|
|
218
|
+
VideoDescription: {
|
|
219
|
+
...bigFields,
|
|
220
|
+
CodecSettings: {
|
|
221
|
+
Codec: 'H_264',
|
|
222
|
+
H264Settings: {
|
|
223
|
+
MaxBitrate: 10_000_000,
|
|
224
|
+
RateControlMode: 'QVBR',
|
|
225
|
+
QvbrSettings: { QvbrQualityLevel: 7 },
|
|
226
|
+
SceneChangeDetect: 'TRANSITION_DETECTION',
|
|
227
|
+
QualityTuningLevel: 'MULTI_PASS_HQ',
|
|
228
|
+
},
|
|
229
|
+
},
|
|
230
|
+
},
|
|
231
|
+
AudioDescriptions: aacAudio,
|
|
232
|
+
},
|
|
233
|
+
],
|
|
234
|
+
},
|
|
235
|
+
// CMAF HLS adaptive: both H.265 in fMP4 containers (Apple HLS spec Rule 1.5)
|
|
236
|
+
// CMAF requires separate outputs for video and audio (unlike HLS TS groups)
|
|
237
|
+
{
|
|
238
|
+
CustomName: 'hls',
|
|
239
|
+
OutputGroupSettings: {
|
|
240
|
+
Type: 'CMAF_GROUP_SETTINGS',
|
|
241
|
+
CmafGroupSettings: {
|
|
242
|
+
SegmentLength: 3,
|
|
243
|
+
FragmentLength: 3,
|
|
244
|
+
Destination: `s3://${S3_OUTPUTS_BUCKET}/${key}/`,
|
|
245
|
+
WriteDashManifest: 'DISABLED',
|
|
246
|
+
WriteHlsManifest: 'ENABLED',
|
|
247
|
+
},
|
|
248
|
+
},
|
|
249
|
+
Outputs: [
|
|
250
|
+
{
|
|
251
|
+
NameModifier: '-thumb',
|
|
252
|
+
ContainerSettings: { Container: 'CMFC' },
|
|
253
|
+
VideoDescription: {
|
|
254
|
+
...thumbFields,
|
|
255
|
+
CodecSettings: {
|
|
256
|
+
Codec: 'H_265',
|
|
257
|
+
H265Settings: {
|
|
258
|
+
MaxBitrate: 2_000_000,
|
|
259
|
+
RateControlMode: 'QVBR',
|
|
260
|
+
QvbrSettings: { QvbrQualityLevel: 7 },
|
|
261
|
+
CodecProfile: 'MAIN_MAIN',
|
|
262
|
+
WriteMp4PackagingType: 'HVC1',
|
|
263
|
+
SceneChangeDetect: 'TRANSITION_DETECTION',
|
|
264
|
+
QualityTuningLevel: 'MULTI_PASS_HQ',
|
|
265
|
+
},
|
|
266
|
+
},
|
|
267
|
+
},
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
NameModifier: '-big',
|
|
271
|
+
ContainerSettings: { Container: 'CMFC' },
|
|
272
|
+
VideoDescription: {
|
|
273
|
+
...bigFields,
|
|
274
|
+
CodecSettings: {
|
|
275
|
+
Codec: 'H_265',
|
|
276
|
+
H265Settings: {
|
|
277
|
+
MaxBitrate: 15_000_000,
|
|
278
|
+
RateControlMode: 'QVBR',
|
|
279
|
+
QvbrSettings: { QvbrQualityLevel: 7 },
|
|
280
|
+
CodecProfile: 'MAIN_MAIN',
|
|
281
|
+
WriteMp4PackagingType: 'HVC1',
|
|
282
|
+
SceneChangeDetect: 'TRANSITION_DETECTION',
|
|
283
|
+
QualityTuningLevel: 'MULTI_PASS_HQ',
|
|
284
|
+
},
|
|
285
|
+
},
|
|
286
|
+
},
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
NameModifier: '-audio',
|
|
290
|
+
ContainerSettings: { Container: 'CMFC' },
|
|
291
|
+
AudioDescriptions: aacAudio,
|
|
292
|
+
},
|
|
293
|
+
],
|
|
294
|
+
},
|
|
295
|
+
// Poster frame
|
|
296
|
+
{
|
|
297
|
+
CustomName: 'poster',
|
|
298
|
+
OutputGroupSettings: {
|
|
299
|
+
Type: 'FILE_GROUP_SETTINGS',
|
|
300
|
+
FileGroupSettings: {
|
|
301
|
+
Destination: `s3://${S3_OUTPUTS_BUCKET}/${key}/`,
|
|
302
|
+
},
|
|
303
|
+
},
|
|
304
|
+
Outputs: [{
|
|
305
|
+
NameModifier: '-poster',
|
|
306
|
+
ContainerSettings: { Container: 'RAW' },
|
|
307
|
+
VideoDescription: {
|
|
308
|
+
...bigFields,
|
|
309
|
+
CodecSettings: {
|
|
310
|
+
Codec: 'FRAME_CAPTURE',
|
|
311
|
+
FrameCaptureSettings: {
|
|
312
|
+
FramerateNumerator: 1,
|
|
313
|
+
FramerateDenominator: 1,
|
|
314
|
+
MaxCaptures: 1,
|
|
315
|
+
Quality: 80,
|
|
316
|
+
},
|
|
317
|
+
},
|
|
318
|
+
},
|
|
319
|
+
}],
|
|
320
|
+
},
|
|
321
|
+
],
|
|
322
|
+
},
|
|
323
|
+
};
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
// --- Webhook ---
|
|
327
|
+
|
|
328
|
+
function parseWebhookMap() {
|
|
329
|
+
const { WEBHOOK_MAP } = cfg();
|
|
330
|
+
if (!WEBHOOK_MAP) return {};
|
|
331
|
+
try {
|
|
332
|
+
return JSON.parse(WEBHOOK_MAP);
|
|
333
|
+
} catch {
|
|
334
|
+
console.error('Failed to parse WEBHOOK_MAP:', WEBHOOK_MAP);
|
|
335
|
+
return {};
|
|
336
|
+
}
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
async function postWebhook(prefix, payload) {
|
|
340
|
+
const map = parseWebhookMap();
|
|
341
|
+
const url = map[prefix];
|
|
342
|
+
if (!url) {
|
|
343
|
+
console.warn(`No webhook URL configured for prefix "${prefix}"`);
|
|
344
|
+
return;
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
const res = await fetch(url, {
|
|
348
|
+
method: 'POST',
|
|
349
|
+
headers: {
|
|
350
|
+
'Content-Type': 'application/json',
|
|
351
|
+
'Authorization': `Bearer ${cfg().WEBHOOK_SECRET}`,
|
|
352
|
+
},
|
|
353
|
+
body: JSON.stringify(payload),
|
|
354
|
+
});
|
|
355
|
+
|
|
356
|
+
if (!res.ok) {
|
|
357
|
+
const body = await res.text();
|
|
358
|
+
console.error(`Webhook POST to ${url} failed (${res.status}): ${body}`);
|
|
359
|
+
}
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
// --- Main handler ---
|
|
363
|
+
|
|
364
|
+
export async function handler(event) {
|
|
365
|
+
// Dispatch based on event source
|
|
366
|
+
if (event.Records) {
|
|
367
|
+
return handleS3Event(event);
|
|
368
|
+
}
|
|
369
|
+
if (event.source === 'aws.mediaconvert') {
|
|
370
|
+
return handleEventBridgeEvent(event);
|
|
371
|
+
}
|
|
372
|
+
console.error('Unknown event type:', JSON.stringify(event));
|
|
373
|
+
return { statusCode: 400, body: 'Unknown event type' };
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
async function handleS3Event(event) {
|
|
377
|
+
const record = event.Records[0];
|
|
378
|
+
const bucket = record.s3.bucket.name;
|
|
379
|
+
const key = decodeURIComponent(record.s3.object.key.replace(/\+/g, ' '));
|
|
380
|
+
|
|
381
|
+
// Parse instance prefix and video key: "ottawa/st9uuvau" → prefix="ottawa", videoKey="st9uuvau"
|
|
382
|
+
const parts = key.split('/');
|
|
383
|
+
if (parts.length < 2) {
|
|
384
|
+
console.error(`Unexpected key format (no prefix): ${key}`);
|
|
385
|
+
return { statusCode: 400, body: 'Key must include instance prefix' };
|
|
386
|
+
}
|
|
387
|
+
const prefix = parts[0];
|
|
388
|
+
const videoKey = parts.slice(1).join('/');
|
|
389
|
+
|
|
390
|
+
console.log(`Processing video: prefix=${prefix}, key=${videoKey}, s3Key=${key}`);
|
|
391
|
+
|
|
392
|
+
// 1. Run ffprobe
|
|
393
|
+
let probe;
|
|
394
|
+
try {
|
|
395
|
+
probe = await probeVideo(bucket, key);
|
|
396
|
+
} catch (err) {
|
|
397
|
+
console.error(`ffprobe failed for ${key}:`, err.message);
|
|
398
|
+
await postWebhook(prefix, {
|
|
399
|
+
key: videoKey,
|
|
400
|
+
status: 'failed',
|
|
401
|
+
error: `ffprobe failed: ${err.message}`,
|
|
402
|
+
});
|
|
403
|
+
return { statusCode: 500, body: `ffprobe failed: ${err.message}` };
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
console.log(`Probe result: ${probe.width}x${probe.height}, ${probe.duration}s, ${probe.orientation}`);
|
|
407
|
+
|
|
408
|
+
// 2. Create MediaConvert job
|
|
409
|
+
let jobId;
|
|
410
|
+
try {
|
|
411
|
+
const { MediaConvertClient, CreateJobCommand } = await getMcClient();
|
|
412
|
+
const endpoint = await getMediaConvertEndpoint();
|
|
413
|
+
const client = new MediaConvertClient({ region: cfg().region, endpoint });
|
|
414
|
+
const jobDef = buildJobDefinition(key, probe);
|
|
415
|
+
const { Job } = await client.send(new CreateJobCommand(jobDef));
|
|
416
|
+
jobId = Job.Id;
|
|
417
|
+
console.log(`MediaConvert job created: ${jobId}`);
|
|
418
|
+
} catch (err) {
|
|
419
|
+
console.error(`MediaConvert CreateJob failed for ${key}:`, err.message);
|
|
420
|
+
await postWebhook(prefix, {
|
|
421
|
+
key: videoKey,
|
|
422
|
+
status: 'failed',
|
|
423
|
+
error: `MediaConvert job creation failed: ${err.message}`,
|
|
424
|
+
});
|
|
425
|
+
return { statusCode: 500, body: `MediaConvert failed: ${err.message}` };
|
|
426
|
+
}
|
|
427
|
+
|
|
428
|
+
// 3. Webhook: transcoding started
|
|
429
|
+
const durationISO = `PT${Math.round(probe.duration)}S`;
|
|
430
|
+
await postWebhook(prefix, {
|
|
431
|
+
key: videoKey,
|
|
432
|
+
status: 'transcoding',
|
|
433
|
+
width: probe.width,
|
|
434
|
+
height: probe.height,
|
|
435
|
+
duration: durationISO,
|
|
436
|
+
orientation: probe.orientation,
|
|
437
|
+
capturedAt: probe.capturedAt || undefined,
|
|
438
|
+
lat: probe.gps?.lat ?? undefined,
|
|
439
|
+
lng: probe.gps?.lng ?? undefined,
|
|
440
|
+
jobId,
|
|
441
|
+
});
|
|
442
|
+
|
|
443
|
+
return { statusCode: 200, body: `Job created: ${jobId}` };
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
async function handleEventBridgeEvent(event) {
|
|
447
|
+
const detail = event.detail;
|
|
448
|
+
const status = detail.status;
|
|
449
|
+
|
|
450
|
+
// Primary: read from UserMetadata (set by buildJobDefinition)
|
|
451
|
+
let prefix = detail.userMetadata?.prefix || '';
|
|
452
|
+
let videoKey = detail.userMetadata?.videoKey || '';
|
|
453
|
+
|
|
454
|
+
// Fallback: parse from output path for jobs created before UserMetadata was added
|
|
455
|
+
if (!prefix || !videoKey) {
|
|
456
|
+
const outputPath = detail.outputGroupDetails?.[0]?.outputDetails?.[0]?.outputFilePaths?.[0] || '';
|
|
457
|
+
const s3Path = outputPath.replace(/^s3:\/\/[^/]+\//, '');
|
|
458
|
+
const pathParts = s3Path.split('/');
|
|
459
|
+
prefix = pathParts[0] || '';
|
|
460
|
+
videoKey = pathParts[1] || '';
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
if (!prefix || !videoKey) {
|
|
464
|
+
console.error('Could not extract prefix/key from event:', JSON.stringify({ userMetadata: detail.userMetadata, outputGroupDetails: detail.outputGroupDetails }));
|
|
465
|
+
return { statusCode: 400, body: 'Could not parse event' };
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
console.log(`EventBridge: status=${status}, prefix=${prefix}, videoKey=${videoKey}`);
|
|
469
|
+
|
|
470
|
+
if (status === 'COMPLETE') {
|
|
471
|
+
await postWebhook(prefix, { key: videoKey, status: 'ready' });
|
|
472
|
+
} else if (status === 'ERROR') {
|
|
473
|
+
await postWebhook(prefix, {
|
|
474
|
+
key: videoKey,
|
|
475
|
+
status: 'failed',
|
|
476
|
+
error: detail.errorMessage || 'MediaConvert job failed',
|
|
477
|
+
});
|
|
478
|
+
} else {
|
|
479
|
+
console.log(`Ignoring MediaConvert status: ${status}`);
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
return { statusCode: 200, body: `Processed ${status}` };
|
|
483
|
+
}
|