@skedulo/pulse-solution-services 0.0.5
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/README.md +161 -0
- package/dist/clients/base-client.js +1 -0
- package/dist/clients/config-var-client.js +1 -0
- package/dist/clients/graphql-client.js +1 -0
- package/dist/clients/index.js +1 -0
- package/dist/clients/metadata-client.js +1 -0
- package/dist/constants/config-var.js +1 -0
- package/dist/constants/http.js +1 -0
- package/dist/constants/index.js +1 -0
- package/dist/constants/tenant-endpoints.js +1 -0
- package/dist/constants/tenant-objects.js +1 -0
- package/dist/core/execution-context.js +1 -0
- package/dist/core/index.js +1 -0
- package/dist/index.d.ts +644 -0
- package/dist/index.js +1 -0
- package/dist/interfaces/config-var.js +1 -0
- package/dist/interfaces/graphql.js +1 -0
- package/dist/interfaces/index.js +1 -0
- package/dist/interfaces/metadata.js +1 -0
- package/dist/logging/decorators/index.d.ts +1 -0
- package/dist/logging/decorators/index.js +1 -0
- package/dist/logging/decorators/log-method.d.ts +7 -0
- package/dist/logging/decorators/log-method.js +1 -0
- package/dist/logging/index.js +1 -0
- package/dist/logging/logger.js +1 -0
- package/dist/services/batch-processor/batch-orchestrator.d.ts +18 -0
- package/dist/services/batch-processor/batch-orchestrator.js +1 -0
- package/dist/services/batch-processor/constants.d.ts +22 -0
- package/dist/services/batch-processor/constants.js +1 -0
- package/dist/services/batch-processor/fetching-strategies/batch-number-fetching-strategy.d.ts +6 -0
- package/dist/services/batch-processor/fetching-strategies/batch-number-fetching-strategy.js +1 -0
- package/dist/services/batch-processor/fetching-strategies/cursor-based-fetching-strategy.d.ts +8 -0
- package/dist/services/batch-processor/fetching-strategies/cursor-based-fetching-strategy.js +1 -0
- package/dist/services/batch-processor/fetching-strategies/date-based-fetching-strategy.d.ts +4 -0
- package/dist/services/batch-processor/fetching-strategies/date-based-fetching-strategy.js +1 -0
- package/dist/services/batch-processor/fetching-strategies/fetching-strategy-factory.d.ts +9 -0
- package/dist/services/batch-processor/fetching-strategies/fetching-strategy-factory.js +1 -0
- package/dist/services/batch-processor/fetching-strategies/index.d.ts +1 -0
- package/dist/services/batch-processor/fetching-strategies/index.js +1 -0
- package/dist/services/batch-processor/index.d.ts +2 -0
- package/dist/services/batch-processor/index.js +1 -0
- package/dist/services/batch-processor/interfaces.d.ts +33 -0
- package/dist/services/batch-processor/interfaces.js +1 -0
- package/dist/services/batch-processor/workers/custom-worker.d.ts +5 -0
- package/dist/services/batch-processor/workers/custom-worker.js +1 -0
- package/dist/services/batch-processor/workers/delete-worker.d.ts +4 -0
- package/dist/services/batch-processor/workers/delete-worker.js +1 -0
- package/dist/services/batch-processor/workers/index.d.ts +2 -0
- package/dist/services/batch-processor/workers/index.js +1 -0
- package/dist/services/batch-processor/workers/update-worker.d.ts +4 -0
- package/dist/services/batch-processor/workers/update-worker.js +1 -0
- package/dist/services/batch-processor/workers/worker-factory.d.ts +6 -0
- package/dist/services/batch-processor/workers/worker-factory.js +1 -0
- package/dist/services/batch-processor/workers/worker-interfaces.d.ts +4 -0
- package/dist/services/batch-processor/workers/worker-interfaces.js +1 -0
- package/dist/services/cache/cache-service.d.ts +70 -0
- package/dist/services/cache/cache-service.js +1 -0
- package/dist/services/cache/index.d.ts +1 -0
- package/dist/services/cache/index.js +1 -0
- package/dist/services/cache/storage/config-var-cache-storage.d.ts +40 -0
- package/dist/services/cache/storage/config-var-cache-storage.js +1 -0
- package/dist/services/cache/storage/in-memory-cache-storage.d.ts +32 -0
- package/dist/services/cache/storage/in-memory-cache-storage.js +1 -0
- package/dist/services/cache/storage/index.d.ts +2 -0
- package/dist/services/cache/storage/index.js +1 -0
- package/dist/services/graphql/graphql-query-builder.d.ts +75 -0
- package/dist/services/graphql/graphql-query-builder.js +1 -0
- package/dist/services/graphql/graphql-service.d.ts +46 -0
- package/dist/services/graphql/graphql-service.js +1 -0
- package/dist/services/graphql/index.d.ts +2 -0
- package/dist/services/graphql/index.js +1 -0
- package/dist/services/graphql/queries.d.ts +25 -0
- package/dist/services/graphql/queries.js +1 -0
- package/dist/services/index.js +1 -0
- package/dist/services/metadata-service.js +1 -0
- package/dist/utils/config-helper.js +1 -0
- package/dist/utils/index.js +1 -0
- package/package.json +42 -0
- package/yarn.lock +2836 -0
package/package.json
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@skedulo/pulse-solution-services",
|
|
3
|
+
"version": "0.0.5",
|
|
4
|
+
"description": "A collection of services and utilities to support solution development on the Pulse platform.",
|
|
5
|
+
"author": "Skedulo",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"main": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"scripts": {
|
|
10
|
+
"build": "tsc && find dist -name '*.js' -exec terser {} --compress --mangle --output {} \\;",
|
|
11
|
+
"bundle:types": "dts-bundle-generator -o dist/index.d.ts src/index.ts",
|
|
12
|
+
"clean:types": "rm -rf dist/**/*.d.ts && yarn bundle:types",
|
|
13
|
+
"test": "jest --testMatch='./**/*.test.ts'",
|
|
14
|
+
"format": "prettier --write './**/*.ts'",
|
|
15
|
+
"format:check": "prettier --check './**/*.ts'",
|
|
16
|
+
"prepare-release": "yarn format && yarn build",
|
|
17
|
+
"release-package": "yarn build && yarn clean:types && yarn publish --access public"
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"dist/",
|
|
21
|
+
"package.json",
|
|
22
|
+
"yarn.lock"
|
|
23
|
+
],
|
|
24
|
+
"devDependencies": {
|
|
25
|
+
"@tsconfig/node18": "^18.2.2",
|
|
26
|
+
"@typescript-eslint/eslint-plugin": "^8.11.0",
|
|
27
|
+
"@typescript-eslint/parser": "^8.11.0",
|
|
28
|
+
"dts-bundle-generator": "^9.5.1",
|
|
29
|
+
"eslint": "^9.1.0",
|
|
30
|
+
"eslint-config-prettier": "^9.1.0",
|
|
31
|
+
"eslint-plugin-prettier": "^5.1.3",
|
|
32
|
+
"jest": "^29.7.0",
|
|
33
|
+
"prettier": "^3.2.4",
|
|
34
|
+
"prettier-plugin-organize-imports": "^4.1.0",
|
|
35
|
+
"terser": "^5.37.0",
|
|
36
|
+
"ts-jest": "^29.1.1"
|
|
37
|
+
},
|
|
38
|
+
"dependencies": {
|
|
39
|
+
"@skedulo/function-utilities": "^0.0.6",
|
|
40
|
+
"typescript": "~5.6.3"
|
|
41
|
+
}
|
|
42
|
+
}
|