@aws-sdk/client-s3files 3.1026.0
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/LICENSE +201 -0
- package/README.md +328 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +46 -0
- package/dist-cjs/endpoint/endpointResolver.js +18 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/index.js +477 -0
- package/dist-cjs/models/S3FilesServiceException.js +12 -0
- package/dist-cjs/models/errors.js +98 -0
- package/dist-cjs/runtimeConfig.browser.js +38 -0
- package/dist-cjs/runtimeConfig.js +54 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +44 -0
- package/dist-cjs/schemas/schemas_0.js +507 -0
- package/dist-es/S3Files.js +59 -0
- package/dist-es/S3FilesClient.js +50 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +40 -0
- package/dist-es/commands/CreateAccessPointCommand.js +16 -0
- package/dist-es/commands/CreateFileSystemCommand.js +16 -0
- package/dist-es/commands/CreateMountTargetCommand.js +16 -0
- package/dist-es/commands/DeleteAccessPointCommand.js +16 -0
- package/dist-es/commands/DeleteFileSystemCommand.js +16 -0
- package/dist-es/commands/DeleteFileSystemPolicyCommand.js +16 -0
- package/dist-es/commands/DeleteMountTargetCommand.js +16 -0
- package/dist-es/commands/GetAccessPointCommand.js +16 -0
- package/dist-es/commands/GetFileSystemCommand.js +16 -0
- package/dist-es/commands/GetFileSystemPolicyCommand.js +16 -0
- package/dist-es/commands/GetMountTargetCommand.js +16 -0
- package/dist-es/commands/GetSynchronizationConfigurationCommand.js +16 -0
- package/dist-es/commands/ListAccessPointsCommand.js +16 -0
- package/dist-es/commands/ListFileSystemsCommand.js +16 -0
- package/dist-es/commands/ListMountTargetsCommand.js +16 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +16 -0
- package/dist-es/commands/PutFileSystemPolicyCommand.js +16 -0
- package/dist-es/commands/PutSynchronizationConfigurationCommand.js +16 -0
- package/dist-es/commands/TagResourceCommand.js +16 -0
- package/dist-es/commands/UntagResourceCommand.js +16 -0
- package/dist-es/commands/UpdateMountTargetCommand.js +16 -0
- package/dist-es/commands/index.js +21 -0
- package/dist-es/endpoint/EndpointParameters.js +11 -0
- package/dist-es/endpoint/endpointResolver.js +14 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +9 -0
- package/dist-es/models/S3FilesServiceException.js +8 -0
- package/dist-es/models/enums.js +17 -0
- package/dist-es/models/errors.js +89 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListAccessPointsPaginator.js +4 -0
- package/dist-es/pagination/ListFileSystemsPaginator.js +4 -0
- package/dist-es/pagination/ListMountTargetsPaginator.js +4 -0
- package/dist-es/pagination/ListTagsForResourcePaginator.js +4 -0
- package/dist-es/pagination/index.js +5 -0
- package/dist-es/runtimeConfig.browser.js +33 -0
- package/dist-es/runtimeConfig.js +49 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +40 -0
- package/dist-es/runtimeExtensions.js +9 -0
- package/dist-es/schemas/schemas_0.js +503 -0
- package/dist-types/S3Files.d.ts +187 -0
- package/dist-types/S3FilesClient.d.ts +208 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/dist-types/commands/CreateAccessPointCommand.d.ts +141 -0
- package/dist-types/commands/CreateFileSystemCommand.d.ts +120 -0
- package/dist-types/commands/CreateMountTargetCommand.d.ts +112 -0
- package/dist-types/commands/DeleteAccessPointCommand.d.ts +87 -0
- package/dist-types/commands/DeleteFileSystemCommand.d.ts +88 -0
- package/dist-types/commands/DeleteFileSystemPolicyCommand.d.ts +84 -0
- package/dist-types/commands/DeleteMountTargetCommand.d.ts +87 -0
- package/dist-types/commands/GetAccessPointCommand.d.ts +113 -0
- package/dist-types/commands/GetFileSystemCommand.d.ts +103 -0
- package/dist-types/commands/GetFileSystemPolicyCommand.d.ts +87 -0
- package/dist-types/commands/GetMountTargetCommand.d.ts +99 -0
- package/dist-types/commands/GetSynchronizationConfigurationCommand.d.ts +98 -0
- package/dist-types/commands/ListAccessPointsCommand.d.ts +113 -0
- package/dist-types/commands/ListFileSystemsCommand.d.ts +98 -0
- package/dist-types/commands/ListMountTargetsCommand.d.ts +104 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +94 -0
- package/dist-types/commands/PutFileSystemPolicyCommand.d.ts +85 -0
- package/dist-types/commands/PutSynchronizationConfigurationCommand.d.ts +100 -0
- package/dist-types/commands/TagResourceCommand.d.ts +90 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +87 -0
- package/dist-types/commands/UpdateMountTargetCommand.d.ts +102 -0
- package/dist-types/commands/index.d.ts +21 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +44 -0
- package/dist-types/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +17 -0
- package/dist-types/models/S3FilesServiceException.d.ts +14 -0
- package/dist-types/models/enums.d.ts +41 -0
- package/dist-types/models/errors.d.ts +114 -0
- package/dist-types/models/models_0.d.ts +1185 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListAccessPointsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListFileSystemsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListMountTargetsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListTagsForResourcePaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +5 -0
- package/dist-types/runtimeConfig.browser.d.ts +55 -0
- package/dist-types/runtimeConfig.d.ts +55 -0
- package/dist-types/runtimeConfig.native.d.ts +54 -0
- package/dist-types/runtimeConfig.shared.d.ts +27 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/schemas/schemas_0.d.ts +81 -0
- package/dist-types/ts3.4/S3Files.d.ts +396 -0
- package/dist-types/ts3.4/S3FilesClient.d.ts +244 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreateAccessPointCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateFileSystemCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateMountTargetCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteAccessPointCommand.d.ts +46 -0
- package/dist-types/ts3.4/commands/DeleteFileSystemCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/DeleteFileSystemPolicyCommand.d.ts +46 -0
- package/dist-types/ts3.4/commands/DeleteMountTargetCommand.d.ts +46 -0
- package/dist-types/ts3.4/commands/GetAccessPointCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetFileSystemCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetFileSystemPolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetMountTargetCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetSynchronizationConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListAccessPointsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListFileSystemsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListMountTargetsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/PutFileSystemPolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/PutSynchronizationConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/UpdateMountTargetCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +21 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +45 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +12 -0
- package/dist-types/ts3.4/models/S3FilesServiceException.d.ts +9 -0
- package/dist-types/ts3.4/models/enums.d.ts +21 -0
- package/dist-types/ts3.4/models/errors.d.ts +50 -0
- package/dist-types/ts3.4/models/models_0.d.ts +279 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListAccessPointsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListFileSystemsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListMountTargetsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListTagsForResourcePaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +5 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +100 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +95 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +104 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +30 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +80 -0
- package/package.json +100 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { S3FilesExtensionConfiguration } from "./extensionConfiguration";
|
|
2
|
+
export interface RuntimeExtension {
|
|
3
|
+
configure(extensionConfiguration: S3FilesExtensionConfiguration): void;
|
|
4
|
+
}
|
|
5
|
+
export interface RuntimeExtensionsConfig {
|
|
6
|
+
extensions: RuntimeExtension[];
|
|
7
|
+
}
|
|
8
|
+
export declare const resolveRuntimeExtensions: (
|
|
9
|
+
runtimeConfig: any,
|
|
10
|
+
extensions: RuntimeExtension[]
|
|
11
|
+
) => any;
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
2
|
+
import {
|
|
3
|
+
StaticErrorSchema,
|
|
4
|
+
StaticOperationSchema,
|
|
5
|
+
StaticStructureSchema,
|
|
6
|
+
} from "@smithy/types";
|
|
7
|
+
export declare var S3FilesServiceException$: StaticErrorSchema;
|
|
8
|
+
export declare var ConflictException$: StaticErrorSchema;
|
|
9
|
+
export declare var InternalServerException$: StaticErrorSchema;
|
|
10
|
+
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
11
|
+
export declare var ServiceQuotaExceededException$: StaticErrorSchema;
|
|
12
|
+
export declare var ThrottlingException$: StaticErrorSchema;
|
|
13
|
+
export declare var ValidationException$: StaticErrorSchema;
|
|
14
|
+
export declare const errorTypeRegistries: TypeRegistry[];
|
|
15
|
+
export declare var CreateAccessPointRequest$: StaticStructureSchema;
|
|
16
|
+
export declare var CreateAccessPointResponse$: StaticStructureSchema;
|
|
17
|
+
export declare var CreateFileSystemRequest$: StaticStructureSchema;
|
|
18
|
+
export declare var CreateFileSystemResponse$: StaticStructureSchema;
|
|
19
|
+
export declare var CreateMountTargetRequest$: StaticStructureSchema;
|
|
20
|
+
export declare var CreateMountTargetResponse$: StaticStructureSchema;
|
|
21
|
+
export declare var CreationPermissions$: StaticStructureSchema;
|
|
22
|
+
export declare var DeleteAccessPointRequest$: StaticStructureSchema;
|
|
23
|
+
export declare var DeleteFileSystemPolicyRequest$: StaticStructureSchema;
|
|
24
|
+
export declare var DeleteFileSystemRequest$: StaticStructureSchema;
|
|
25
|
+
export declare var DeleteMountTargetRequest$: StaticStructureSchema;
|
|
26
|
+
export declare var ExpirationDataRule$: StaticStructureSchema;
|
|
27
|
+
export declare var GetAccessPointRequest$: StaticStructureSchema;
|
|
28
|
+
export declare var GetAccessPointResponse$: StaticStructureSchema;
|
|
29
|
+
export declare var GetFileSystemPolicyRequest$: StaticStructureSchema;
|
|
30
|
+
export declare var GetFileSystemPolicyResponse$: StaticStructureSchema;
|
|
31
|
+
export declare var GetFileSystemRequest$: StaticStructureSchema;
|
|
32
|
+
export declare var GetFileSystemResponse$: StaticStructureSchema;
|
|
33
|
+
export declare var GetMountTargetRequest$: StaticStructureSchema;
|
|
34
|
+
export declare var GetMountTargetResponse$: StaticStructureSchema;
|
|
35
|
+
export declare var GetSynchronizationConfigurationRequest$: StaticStructureSchema;
|
|
36
|
+
export declare var GetSynchronizationConfigurationResponse$: StaticStructureSchema;
|
|
37
|
+
export declare var ImportDataRule$: StaticStructureSchema;
|
|
38
|
+
export declare var ListAccessPointsDescription$: StaticStructureSchema;
|
|
39
|
+
export declare var ListAccessPointsRequest$: StaticStructureSchema;
|
|
40
|
+
export declare var ListAccessPointsResponse$: StaticStructureSchema;
|
|
41
|
+
export declare var ListFileSystemsDescription$: StaticStructureSchema;
|
|
42
|
+
export declare var ListFileSystemsRequest$: StaticStructureSchema;
|
|
43
|
+
export declare var ListFileSystemsResponse$: StaticStructureSchema;
|
|
44
|
+
export declare var ListMountTargetsDescription$: StaticStructureSchema;
|
|
45
|
+
export declare var ListMountTargetsRequest$: StaticStructureSchema;
|
|
46
|
+
export declare var ListMountTargetsResponse$: StaticStructureSchema;
|
|
47
|
+
export declare var ListTagsForResourceRequest$: StaticStructureSchema;
|
|
48
|
+
export declare var ListTagsForResourceResponse$: StaticStructureSchema;
|
|
49
|
+
export declare var PosixUser$: StaticStructureSchema;
|
|
50
|
+
export declare var PutFileSystemPolicyRequest$: StaticStructureSchema;
|
|
51
|
+
export declare var PutFileSystemPolicyResponse$: StaticStructureSchema;
|
|
52
|
+
export declare var PutSynchronizationConfigurationRequest$: StaticStructureSchema;
|
|
53
|
+
export declare var PutSynchronizationConfigurationResponse$: StaticStructureSchema;
|
|
54
|
+
export declare var RootDirectory$: StaticStructureSchema;
|
|
55
|
+
export declare var Tag$: StaticStructureSchema;
|
|
56
|
+
export declare var TagResourceRequest$: StaticStructureSchema;
|
|
57
|
+
export declare var UntagResourceRequest$: StaticStructureSchema;
|
|
58
|
+
export declare var UpdateMountTargetRequest$: StaticStructureSchema;
|
|
59
|
+
export declare var UpdateMountTargetResponse$: StaticStructureSchema;
|
|
60
|
+
export declare var CreateAccessPoint$: StaticOperationSchema;
|
|
61
|
+
export declare var CreateFileSystem$: StaticOperationSchema;
|
|
62
|
+
export declare var CreateMountTarget$: StaticOperationSchema;
|
|
63
|
+
export declare var DeleteAccessPoint$: StaticOperationSchema;
|
|
64
|
+
export declare var DeleteFileSystem$: StaticOperationSchema;
|
|
65
|
+
export declare var DeleteFileSystemPolicy$: StaticOperationSchema;
|
|
66
|
+
export declare var DeleteMountTarget$: StaticOperationSchema;
|
|
67
|
+
export declare var GetAccessPoint$: StaticOperationSchema;
|
|
68
|
+
export declare var GetFileSystem$: StaticOperationSchema;
|
|
69
|
+
export declare var GetFileSystemPolicy$: StaticOperationSchema;
|
|
70
|
+
export declare var GetMountTarget$: StaticOperationSchema;
|
|
71
|
+
export declare var GetSynchronizationConfiguration$: StaticOperationSchema;
|
|
72
|
+
export declare var ListAccessPoints$: StaticOperationSchema;
|
|
73
|
+
export declare var ListFileSystems$: StaticOperationSchema;
|
|
74
|
+
export declare var ListMountTargets$: StaticOperationSchema;
|
|
75
|
+
export declare var ListTagsForResource$: StaticOperationSchema;
|
|
76
|
+
export declare var PutFileSystemPolicy$: StaticOperationSchema;
|
|
77
|
+
export declare var PutSynchronizationConfiguration$: StaticOperationSchema;
|
|
78
|
+
export declare var TagResource$: StaticOperationSchema;
|
|
79
|
+
export declare var UntagResource$: StaticOperationSchema;
|
|
80
|
+
export declare var UpdateMountTarget$: StaticOperationSchema;
|
package/package.json
ADDED
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@aws-sdk/client-s3files",
|
|
3
|
+
"description": "AWS SDK for JavaScript S3files Client for Node.js, Browser and React Native",
|
|
4
|
+
"version": "3.1026.0",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
|
+
"build:cjs": "node ../../scripts/compilation/inline client-s3files",
|
|
8
|
+
"build:es": "tsc -p tsconfig.es.json",
|
|
9
|
+
"build:include:deps": "yarn g:turbo run build -F=\"$npm_package_name\"",
|
|
10
|
+
"build:types": "tsc -p tsconfig.types.json",
|
|
11
|
+
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
12
|
+
"clean": "premove dist-cjs dist-es dist-types tsconfig.cjs.tsbuildinfo tsconfig.es.tsbuildinfo tsconfig.types.tsbuildinfo",
|
|
13
|
+
"test:index": "tsc --noEmit ./test/index-types.ts && node ./test/index-objects.spec.mjs",
|
|
14
|
+
"extract:docs": "api-extractor run --local",
|
|
15
|
+
"generate:client": "node ../../scripts/generate-clients/single-service --solo s3files"
|
|
16
|
+
},
|
|
17
|
+
"main": "./dist-cjs/index.js",
|
|
18
|
+
"types": "./dist-types/index.d.ts",
|
|
19
|
+
"module": "./dist-es/index.js",
|
|
20
|
+
"sideEffects": false,
|
|
21
|
+
"dependencies": {
|
|
22
|
+
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
|
+
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
+
"@aws-sdk/core": "^3.973.27",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.30",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "^3.972.9",
|
|
27
|
+
"@aws-sdk/middleware-logger": "^3.972.9",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.10",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.29",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.11",
|
|
31
|
+
"@aws-sdk/types": "^3.973.7",
|
|
32
|
+
"@aws-sdk/util-endpoints": "^3.996.6",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.9",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.973.15",
|
|
35
|
+
"@smithy/config-resolver": "^4.4.14",
|
|
36
|
+
"@smithy/core": "^3.23.14",
|
|
37
|
+
"@smithy/fetch-http-handler": "^5.3.16",
|
|
38
|
+
"@smithy/hash-node": "^4.2.13",
|
|
39
|
+
"@smithy/invalid-dependency": "^4.2.13",
|
|
40
|
+
"@smithy/middleware-content-length": "^4.2.13",
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.29",
|
|
42
|
+
"@smithy/middleware-retry": "^4.5.0",
|
|
43
|
+
"@smithy/middleware-serde": "^4.2.17",
|
|
44
|
+
"@smithy/middleware-stack": "^4.2.13",
|
|
45
|
+
"@smithy/node-config-provider": "^4.3.13",
|
|
46
|
+
"@smithy/node-http-handler": "^4.5.2",
|
|
47
|
+
"@smithy/protocol-http": "^5.3.13",
|
|
48
|
+
"@smithy/smithy-client": "^4.12.9",
|
|
49
|
+
"@smithy/types": "^4.14.0",
|
|
50
|
+
"@smithy/url-parser": "^4.2.13",
|
|
51
|
+
"@smithy/util-base64": "^4.3.2",
|
|
52
|
+
"@smithy/util-body-length-browser": "^4.2.2",
|
|
53
|
+
"@smithy/util-body-length-node": "^4.2.3",
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.45",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.49",
|
|
56
|
+
"@smithy/util-endpoints": "^3.3.4",
|
|
57
|
+
"@smithy/util-middleware": "^4.2.13",
|
|
58
|
+
"@smithy/util-retry": "^4.3.0",
|
|
59
|
+
"@smithy/util-utf8": "^4.2.2",
|
|
60
|
+
"tslib": "^2.6.2"
|
|
61
|
+
},
|
|
62
|
+
"devDependencies": {
|
|
63
|
+
"@tsconfig/node20": "20.1.8",
|
|
64
|
+
"@types/node": "^20.14.8",
|
|
65
|
+
"concurrently": "7.0.0",
|
|
66
|
+
"downlevel-dts": "0.10.1",
|
|
67
|
+
"premove": "4.0.0",
|
|
68
|
+
"typescript": "~5.8.3"
|
|
69
|
+
},
|
|
70
|
+
"engines": {
|
|
71
|
+
"node": ">=20.0.0"
|
|
72
|
+
},
|
|
73
|
+
"typesVersions": {
|
|
74
|
+
"<4.5": {
|
|
75
|
+
"dist-types/*": [
|
|
76
|
+
"dist-types/ts3.4/*"
|
|
77
|
+
]
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
"files": [
|
|
81
|
+
"dist-*/**"
|
|
82
|
+
],
|
|
83
|
+
"author": {
|
|
84
|
+
"name": "AWS SDK for JavaScript Team",
|
|
85
|
+
"url": "https://aws.amazon.com/javascript/"
|
|
86
|
+
},
|
|
87
|
+
"license": "Apache-2.0",
|
|
88
|
+
"browser": {
|
|
89
|
+
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"
|
|
90
|
+
},
|
|
91
|
+
"react-native": {
|
|
92
|
+
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
|
|
93
|
+
},
|
|
94
|
+
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-s3files",
|
|
95
|
+
"repository": {
|
|
96
|
+
"type": "git",
|
|
97
|
+
"url": "https://github.com/aws/aws-sdk-js-v3.git",
|
|
98
|
+
"directory": "clients/client-s3files"
|
|
99
|
+
}
|
|
100
|
+
}
|