@amaster.ai/client 1.1.43-beta.3 → 1.1.43
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/package.json +11 -11
- package/types/workflow.d.ts +2 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@amaster.ai/client",
|
|
3
|
-
"version": "1.1.43
|
|
3
|
+
"version": "1.1.43",
|
|
4
4
|
"description": "Unified API client for Amaster platform - All services in one package",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -72,16 +72,16 @@
|
|
|
72
72
|
"registry": "https://registry.npmjs.org/"
|
|
73
73
|
},
|
|
74
74
|
"dependencies": {
|
|
75
|
-
"@amaster.ai/
|
|
76
|
-
"@amaster.ai/
|
|
77
|
-
"@amaster.ai/
|
|
78
|
-
"@amaster.ai/
|
|
79
|
-
"@amaster.ai/
|
|
80
|
-
"@amaster.ai/
|
|
81
|
-
"@amaster.ai/
|
|
82
|
-
"@amaster.ai/
|
|
83
|
-
"@amaster.ai/tts-client": "1.1.43
|
|
84
|
-
"@amaster.ai/
|
|
75
|
+
"@amaster.ai/asr-client": "1.1.43",
|
|
76
|
+
"@amaster.ai/auth-client": "1.1.43",
|
|
77
|
+
"@amaster.ai/bpm-client": "1.1.43",
|
|
78
|
+
"@amaster.ai/copilot-client": "1.1.43",
|
|
79
|
+
"@amaster.ai/entity-client": "1.1.43",
|
|
80
|
+
"@amaster.ai/http-client": "1.1.43",
|
|
81
|
+
"@amaster.ai/function-client": "1.1.43",
|
|
82
|
+
"@amaster.ai/s3-client": "1.1.43",
|
|
83
|
+
"@amaster.ai/tts-client": "1.1.43",
|
|
84
|
+
"@amaster.ai/workflow-client": "1.1.43"
|
|
85
85
|
},
|
|
86
86
|
"peerDependencies": {
|
|
87
87
|
"axios": "^1.11.0"
|
package/types/workflow.d.ts
CHANGED
|
@@ -44,10 +44,8 @@ export interface WorkflowFile {
|
|
|
44
44
|
* Callback config for async workflow runs.
|
|
45
45
|
*/
|
|
46
46
|
export interface WorkflowCallbackConfig {
|
|
47
|
-
/**
|
|
48
|
-
|
|
49
|
-
/** Shared secret used for HMAC signature */
|
|
50
|
-
secret?: string;
|
|
47
|
+
/** Edge Function name, for example `workflow-callback` */
|
|
48
|
+
name?: string;
|
|
51
49
|
/** Include workflow outputs in callback payload */
|
|
52
50
|
include_outputs?: boolean;
|
|
53
51
|
/** Include usage in callback payload */
|