@pagelines/sdk 1.0.397 → 1.0.399
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/AgentWrap.vue_vue_type_script_setup_true_lang.js +868 -854
- package/dist/AgentWrap.vue_vue_type_script_setup_true_lang.js.map +1 -1
- package/dist/agent/ui/ElCreateAgent.vue.d.ts +6 -0
- package/dist/demo/index.d.ts +3 -0
- package/dist/index.js +195 -195
- package/dist/index.js.map +1 -1
- package/dist/sdkClient.d.ts +9 -0
- package/dist/widget/composables/useWidgetState.d.ts +9 -0
- package/package.json +1 -1
|
@@ -67,10 +67,13 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
67
67
|
}[] | null | undefined;
|
|
68
68
|
model?: string | null | undefined;
|
|
69
69
|
lastActivityAt?: string | null | undefined;
|
|
70
|
+
lastMessageAt?: string | null | undefined;
|
|
70
71
|
instanceId?: string | null | undefined;
|
|
71
72
|
instanceProvider?: string | null | undefined;
|
|
72
73
|
imageVersion?: string | null | undefined;
|
|
73
74
|
deployEnv?: string | undefined;
|
|
75
|
+
consecutiveRestarts?: number | null | undefined;
|
|
76
|
+
lastRestartAt?: string | null | undefined;
|
|
74
77
|
botServerUrl?: string | null | undefined;
|
|
75
78
|
botLastPingAt?: string | null | undefined;
|
|
76
79
|
desiredStatus?: "active" | "stopped" | null | undefined;
|
|
@@ -154,10 +157,13 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
154
157
|
}[] | null | undefined;
|
|
155
158
|
model?: string | null | undefined;
|
|
156
159
|
lastActivityAt?: string | null | undefined;
|
|
160
|
+
lastMessageAt?: string | null | undefined;
|
|
157
161
|
instanceId?: string | null | undefined;
|
|
158
162
|
instanceProvider?: string | null | undefined;
|
|
159
163
|
imageVersion?: string | null | undefined;
|
|
160
164
|
deployEnv?: string | undefined;
|
|
165
|
+
consecutiveRestarts?: number | null | undefined;
|
|
166
|
+
lastRestartAt?: string | null | undefined;
|
|
161
167
|
botServerUrl?: string | null | undefined;
|
|
162
168
|
botLastPingAt?: string | null | undefined;
|
|
163
169
|
desiredStatus?: "active" | "stopped" | null | undefined;
|
package/dist/demo/index.d.ts
CHANGED
|
@@ -76,10 +76,13 @@ export declare function getDemoAgentByHandle(handle: string): Partial<{
|
|
|
76
76
|
}[] | null | undefined;
|
|
77
77
|
model?: string | null | undefined;
|
|
78
78
|
lastActivityAt?: string | null | undefined;
|
|
79
|
+
lastMessageAt?: string | null | undefined;
|
|
79
80
|
instanceId?: string | null | undefined;
|
|
80
81
|
instanceProvider?: string | null | undefined;
|
|
81
82
|
imageVersion?: string | null | undefined;
|
|
82
83
|
deployEnv?: string | undefined;
|
|
84
|
+
consecutiveRestarts?: number | null | undefined;
|
|
85
|
+
lastRestartAt?: string | null | undefined;
|
|
83
86
|
botServerUrl?: string | null | undefined;
|
|
84
87
|
botLastPingAt?: string | null | undefined;
|
|
85
88
|
desiredStatus?: "active" | "stopped" | null | undefined;
|