@wildix/wim-cache-client 1.0.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/dist-cjs/WimCache.js +23 -0
- package/dist-cjs/WimCacheClient.js +35 -0
- package/dist-cjs/commands/DeleteEntitiesFromGeneralCacheCommand.js +41 -0
- package/dist-cjs/commands/GetEntitiesByIdsCommand.js +41 -0
- package/dist-cjs/commands/PutEntitiesToGeneralCacheCommand.js +41 -0
- package/dist-cjs/commands/SearchEntitiesByListParamsCommand.js +41 -0
- package/dist-cjs/commands/SearchEntitiesByParamsCommand.js +41 -0
- package/dist-cjs/commands/SyncCacheCommand.js +41 -0
- package/dist-cjs/commands/index.js +9 -0
- package/dist-cjs/extensionConfiguration.js +2 -0
- package/dist-cjs/index.js +10 -0
- package/dist-cjs/models/WimCacheServiceException.js +12 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +17 -0
- package/dist-cjs/protocols/Aws_restJson1.js +403 -0
- package/dist-cjs/runtimeConfig.browser.js +28 -0
- package/dist-cjs/runtimeConfig.js +32 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +19 -0
- package/dist-cjs/runtimeExtensions.js +19 -0
- package/dist-es/WimCache.js +19 -0
- package/dist-es/WimCacheClient.js +31 -0
- package/dist-es/commands/DeleteEntitiesFromGeneralCacheCommand.js +37 -0
- package/dist-es/commands/GetEntitiesByIdsCommand.js +37 -0
- package/dist-es/commands/PutEntitiesToGeneralCacheCommand.js +37 -0
- package/dist-es/commands/SearchEntitiesByListParamsCommand.js +37 -0
- package/dist-es/commands/SearchEntitiesByParamsCommand.js +37 -0
- package/dist-es/commands/SyncCacheCommand.js +37 -0
- package/dist-es/commands/index.js +6 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +5 -0
- package/dist-es/models/WimCacheServiceException.js +8 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +13 -0
- package/dist-es/protocols/Aws_restJson1.js +388 -0
- package/dist-es/runtimeConfig.browser.js +24 -0
- package/dist-es/runtimeConfig.js +28 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +15 -0
- package/dist-es/runtimeExtensions.js +15 -0
- package/dist-types/WimCache.d.ts +51 -0
- package/dist-types/WimCacheClient.d.ts +144 -0
- package/dist-types/commands/DeleteEntitiesFromGeneralCacheCommand.d.ts +73 -0
- package/dist-types/commands/GetEntitiesByIdsCommand.d.ts +112 -0
- package/dist-types/commands/PutEntitiesToGeneralCacheCommand.d.ts +86 -0
- package/dist-types/commands/SearchEntitiesByListParamsCommand.d.ts +121 -0
- package/dist-types/commands/SearchEntitiesByParamsCommand.d.ts +120 -0
- package/dist-types/commands/SyncCacheCommand.d.ts +73 -0
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/extensionConfiguration.d.ts +7 -0
- package/dist-types/index.d.ts +5 -0
- package/dist-types/models/WimCacheServiceException.d.ts +13 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +230 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +56 -0
- package/dist-types/runtimeConfig.browser.d.ts +27 -0
- package/dist-types/runtimeConfig.d.ts +27 -0
- package/dist-types/runtimeConfig.native.d.ts +26 -0
- package/dist-types/runtimeConfig.shared.d.ts +15 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/package.json +77 -0
package/package.json
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@wildix/wim-cache-client",
|
|
3
|
+
"description": "@wildix/wim-cache-client client",
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
|
+
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
8
|
+
"build:docs": "typedoc",
|
|
9
|
+
"build:es": "tsc -p tsconfig.es.json",
|
|
10
|
+
"build:types": "tsc -p tsconfig.types.json",
|
|
11
|
+
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
12
|
+
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
|
|
13
|
+
"prepack": "yarn run clean && yarn run build"
|
|
14
|
+
},
|
|
15
|
+
"main": "./dist-cjs/index.js",
|
|
16
|
+
"types": "./dist-types/index.d.ts",
|
|
17
|
+
"module": "./dist-es/index.js",
|
|
18
|
+
"sideEffects": false,
|
|
19
|
+
"dependencies": {
|
|
20
|
+
"tslib": "^2.5.0",
|
|
21
|
+
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
|
+
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
+
"@aws-sdk/types": "latest",
|
|
24
|
+
"@smithy/config-resolver": "^2.0.11",
|
|
25
|
+
"@smithy/fetch-http-handler": "^2.2.1",
|
|
26
|
+
"@smithy/hash-node": "^2.0.10",
|
|
27
|
+
"@smithy/invalid-dependency": "^2.0.10",
|
|
28
|
+
"@smithy/middleware-content-length": "^2.0.12",
|
|
29
|
+
"@smithy/middleware-retry": "^2.0.13",
|
|
30
|
+
"@smithy/middleware-serde": "^2.0.10",
|
|
31
|
+
"@smithy/middleware-stack": "^2.0.4",
|
|
32
|
+
"@smithy/node-config-provider": "^2.0.13",
|
|
33
|
+
"@smithy/node-http-handler": "^2.1.6",
|
|
34
|
+
"@smithy/protocol-http": "^3.0.6",
|
|
35
|
+
"@smithy/smithy-client": "^2.1.9",
|
|
36
|
+
"@smithy/types": "^2.3.4",
|
|
37
|
+
"@smithy/url-parser": "^2.0.10",
|
|
38
|
+
"@smithy/util-base64": "^2.0.0",
|
|
39
|
+
"@smithy/util-body-length-browser": "^2.0.0",
|
|
40
|
+
"@smithy/util-body-length-node": "^2.1.0",
|
|
41
|
+
"@smithy/util-defaults-mode-browser": "^2.0.13",
|
|
42
|
+
"@smithy/util-defaults-mode-node": "^2.0.15",
|
|
43
|
+
"@smithy/util-retry": "^2.0.3",
|
|
44
|
+
"@smithy/util-utf8": "^2.0.0",
|
|
45
|
+
"@wildix/auth-utils": "^1.0.4"
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"@tsconfig/node14": "1.0.3",
|
|
49
|
+
"concurrently": "7.0.0",
|
|
50
|
+
"downlevel-dts": "0.10.1",
|
|
51
|
+
"rimraf": "^3.0.0",
|
|
52
|
+
"typedoc": "0.23.23",
|
|
53
|
+
"typescript": "~4.9.5",
|
|
54
|
+
"@smithy/service-client-documentation-generator": "^2.0.0",
|
|
55
|
+
"@types/node": "^14.14.31"
|
|
56
|
+
},
|
|
57
|
+
"engines": {
|
|
58
|
+
"node": ">=14.0.0"
|
|
59
|
+
},
|
|
60
|
+
"typesVersions": {
|
|
61
|
+
"<4.0": {
|
|
62
|
+
"dist-types/*": [
|
|
63
|
+
"dist-types/ts3.4/*"
|
|
64
|
+
]
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
"files": [
|
|
68
|
+
"dist-*/**"
|
|
69
|
+
],
|
|
70
|
+
"license": "Apache-2.0",
|
|
71
|
+
"browser": {
|
|
72
|
+
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"
|
|
73
|
+
},
|
|
74
|
+
"react-native": {
|
|
75
|
+
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
|
|
76
|
+
}
|
|
77
|
+
}
|