@ductape/sdk 0.1.113 → 0.1.115
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/api/services/processorApi.service.d.ts +2 -0
- package/dist/api/services/processorApi.service.js +51 -0
- package/dist/api/services/processorApi.service.js.map +1 -1
- package/dist/api/services/productsApi.service.d.ts +7 -1
- package/dist/api/services/productsApi.service.js.map +1 -1
- package/dist/api/urls.d.ts +1 -0
- package/dist/api/urls.js +5 -4
- package/dist/api/urls.js.map +1 -1
- package/dist/context/execution-context.d.ts +37 -0
- package/dist/context/execution-context.js +38 -0
- package/dist/context/execution-context.js.map +1 -0
- package/dist/context/index.d.ts +1 -0
- package/dist/context/index.js +18 -0
- package/dist/context/index.js.map +1 -0
- package/dist/database/adapters/mongodb.adapter.js +7 -7
- package/dist/database/adapters/mongodb.adapter.js.map +1 -1
- package/dist/database/databases.service.d.ts +4 -0
- package/dist/database/databases.service.js +7 -1
- package/dist/database/databases.service.js.map +1 -1
- package/dist/features/feature-executor.d.ts +10 -0
- package/dist/features/feature-executor.js +113 -35
- package/dist/features/feature-executor.js.map +1 -1
- package/dist/features/features.service.d.ts +16 -1
- package/dist/features/features.service.js +87 -26
- package/dist/features/features.service.js.map +1 -1
- package/dist/features/types/features.types.d.ts +8 -2
- package/dist/features/types/features.types.js.map +1 -1
- package/dist/functions/functions.runtime.js +25 -1
- package/dist/functions/functions.runtime.js.map +1 -1
- package/dist/functions/types.d.ts +6 -0
- package/dist/functions/types.js.map +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/dist/products/bootstrap-cache.js +7 -2
- package/dist/products/bootstrap-cache.js.map +1 -1
- package/dist/products/services/products.service.d.ts +2 -2
- package/dist/products/services/products.service.js +36 -1
- package/dist/products/services/products.service.js.map +1 -1
- package/dist/products/utils/functions.utils.d.ts +1 -1
- package/dist/sessions/sessions.helper.js +13 -1
- package/dist/sessions/sessions.helper.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/processor.types.d.ts +15 -0
- package/dist/types/processor.types.js.map +1 -1
- package/package.json +2 -2
|
@@ -95,6 +95,21 @@ export interface IProcessorResult {
|
|
|
95
95
|
step_type?: string;
|
|
96
96
|
step_error?: string;
|
|
97
97
|
step_duration_ms?: number;
|
|
98
|
+
trace_id?: string;
|
|
99
|
+
span_id?: string;
|
|
100
|
+
parent_span_id?: string;
|
|
101
|
+
feature_run_id?: string;
|
|
102
|
+
step_run_id?: string;
|
|
103
|
+
step_attempt?: number;
|
|
104
|
+
function_namespace?: string;
|
|
105
|
+
function_operation?: string;
|
|
106
|
+
function_version?: string;
|
|
107
|
+
function_invocation_id?: string;
|
|
108
|
+
parent_process_id?: string;
|
|
109
|
+
session_id?: string;
|
|
110
|
+
session_tag?: string;
|
|
111
|
+
session_user_id?: string;
|
|
112
|
+
execution_kind?: string;
|
|
98
113
|
}
|
|
99
114
|
export interface INotificationInput {
|
|
100
115
|
title: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"processor.types.js","sourceRoot":"","sources":["../../src/types/processor.types.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"processor.types.js","sourceRoot":"","sources":["../../src/types/processor.types.ts"],"names":[],"mappings":";;;AAoQA,IAAY,WAKX;AALD,WAAY,WAAW;IACrB,gCAAiB,CAAA;IACjB,8BAAe,CAAA;IACf,8BAAe,CAAA;IACf,8BAAe,CAAA;AACjB,CAAC,EALW,WAAW,2BAAX,WAAW,QAKtB;AAED,IAAY,aAMX;AAND,WAAY,aAAa;IACvB,8BAAa,CAAA;IACb,oCAAmB,CAAA;IACnB,sCAAqB,CAAA;IACrB,sCAAqB,CAAA;IACrB,gCAAe,CAAA;AACjB,CAAC,EANW,aAAa,6BAAb,aAAa,QAMxB"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ductape/sdk",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.115",
|
|
4
4
|
"description": "sdk for building ductaped products",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
"@types/ws": "^8.5.13",
|
|
89
89
|
"amqplib": "^0.10.5",
|
|
90
90
|
"aws-sdk": "^2.1692.0",
|
|
91
|
-
"axios": "^1.
|
|
91
|
+
"axios": "^1.19.0",
|
|
92
92
|
"bson-objectid": "^2.0.4",
|
|
93
93
|
"bullmq": "^5.58.0",
|
|
94
94
|
"crypto-js": "^4.2.0",
|