@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.
Files changed (61) hide show
  1. package/dist-cjs/WimCache.js +23 -0
  2. package/dist-cjs/WimCacheClient.js +35 -0
  3. package/dist-cjs/commands/DeleteEntitiesFromGeneralCacheCommand.js +41 -0
  4. package/dist-cjs/commands/GetEntitiesByIdsCommand.js +41 -0
  5. package/dist-cjs/commands/PutEntitiesToGeneralCacheCommand.js +41 -0
  6. package/dist-cjs/commands/SearchEntitiesByListParamsCommand.js +41 -0
  7. package/dist-cjs/commands/SearchEntitiesByParamsCommand.js +41 -0
  8. package/dist-cjs/commands/SyncCacheCommand.js +41 -0
  9. package/dist-cjs/commands/index.js +9 -0
  10. package/dist-cjs/extensionConfiguration.js +2 -0
  11. package/dist-cjs/index.js +10 -0
  12. package/dist-cjs/models/WimCacheServiceException.js +12 -0
  13. package/dist-cjs/models/index.js +4 -0
  14. package/dist-cjs/models/models_0.js +17 -0
  15. package/dist-cjs/protocols/Aws_restJson1.js +403 -0
  16. package/dist-cjs/runtimeConfig.browser.js +28 -0
  17. package/dist-cjs/runtimeConfig.js +32 -0
  18. package/dist-cjs/runtimeConfig.native.js +15 -0
  19. package/dist-cjs/runtimeConfig.shared.js +19 -0
  20. package/dist-cjs/runtimeExtensions.js +19 -0
  21. package/dist-es/WimCache.js +19 -0
  22. package/dist-es/WimCacheClient.js +31 -0
  23. package/dist-es/commands/DeleteEntitiesFromGeneralCacheCommand.js +37 -0
  24. package/dist-es/commands/GetEntitiesByIdsCommand.js +37 -0
  25. package/dist-es/commands/PutEntitiesToGeneralCacheCommand.js +37 -0
  26. package/dist-es/commands/SearchEntitiesByListParamsCommand.js +37 -0
  27. package/dist-es/commands/SearchEntitiesByParamsCommand.js +37 -0
  28. package/dist-es/commands/SyncCacheCommand.js +37 -0
  29. package/dist-es/commands/index.js +6 -0
  30. package/dist-es/extensionConfiguration.js +1 -0
  31. package/dist-es/index.js +5 -0
  32. package/dist-es/models/WimCacheServiceException.js +8 -0
  33. package/dist-es/models/index.js +1 -0
  34. package/dist-es/models/models_0.js +13 -0
  35. package/dist-es/protocols/Aws_restJson1.js +388 -0
  36. package/dist-es/runtimeConfig.browser.js +24 -0
  37. package/dist-es/runtimeConfig.js +28 -0
  38. package/dist-es/runtimeConfig.native.js +11 -0
  39. package/dist-es/runtimeConfig.shared.js +15 -0
  40. package/dist-es/runtimeExtensions.js +15 -0
  41. package/dist-types/WimCache.d.ts +51 -0
  42. package/dist-types/WimCacheClient.d.ts +144 -0
  43. package/dist-types/commands/DeleteEntitiesFromGeneralCacheCommand.d.ts +73 -0
  44. package/dist-types/commands/GetEntitiesByIdsCommand.d.ts +112 -0
  45. package/dist-types/commands/PutEntitiesToGeneralCacheCommand.d.ts +86 -0
  46. package/dist-types/commands/SearchEntitiesByListParamsCommand.d.ts +121 -0
  47. package/dist-types/commands/SearchEntitiesByParamsCommand.d.ts +120 -0
  48. package/dist-types/commands/SyncCacheCommand.d.ts +73 -0
  49. package/dist-types/commands/index.d.ts +6 -0
  50. package/dist-types/extensionConfiguration.d.ts +7 -0
  51. package/dist-types/index.d.ts +5 -0
  52. package/dist-types/models/WimCacheServiceException.d.ts +13 -0
  53. package/dist-types/models/index.d.ts +1 -0
  54. package/dist-types/models/models_0.d.ts +230 -0
  55. package/dist-types/protocols/Aws_restJson1.d.ts +56 -0
  56. package/dist-types/runtimeConfig.browser.d.ts +27 -0
  57. package/dist-types/runtimeConfig.d.ts +27 -0
  58. package/dist-types/runtimeConfig.native.d.ts +26 -0
  59. package/dist-types/runtimeConfig.shared.d.ts +15 -0
  60. package/dist-types/runtimeExtensions.d.ts +17 -0
  61. 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
+ }