lumnisai 0.2.10 → 0.2.11
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/index.d.cts +14 -0
- package/dist/index.d.mts +14 -0
- package/dist/index.d.ts +14 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -3196,10 +3196,17 @@ interface ExecutionSummary {
|
|
|
3196
3196
|
}
|
|
3197
3197
|
interface StepHistoryEntry {
|
|
3198
3198
|
stepKey: string;
|
|
3199
|
+
stepName?: string;
|
|
3200
|
+
action?: string;
|
|
3199
3201
|
status: string;
|
|
3202
|
+
scheduledAt?: string;
|
|
3203
|
+
startedAt?: string;
|
|
3200
3204
|
sentAt?: string;
|
|
3201
3205
|
completedAt?: string;
|
|
3206
|
+
actualChannel?: string;
|
|
3207
|
+
actualAction?: string;
|
|
3202
3208
|
actualContent?: string;
|
|
3209
|
+
errorMessage?: string;
|
|
3203
3210
|
replyReceivedAt?: string;
|
|
3204
3211
|
replyContent?: string;
|
|
3205
3212
|
replySentiment?: ReplySentiment;
|
|
@@ -3218,12 +3225,19 @@ interface ExecutionEvent {
|
|
|
3218
3225
|
eventType: string;
|
|
3219
3226
|
eventData?: ExecutionEventData;
|
|
3220
3227
|
createdAt: string;
|
|
3228
|
+
processingStatus?: string;
|
|
3221
3229
|
}
|
|
3222
3230
|
interface ExecutionDetailResponse extends ExecutionSummary {
|
|
3223
3231
|
currentStep?: {
|
|
3224
3232
|
stepKey: string;
|
|
3225
3233
|
name: string;
|
|
3226
3234
|
};
|
|
3235
|
+
completedAt?: string;
|
|
3236
|
+
exitReason?: string;
|
|
3237
|
+
pausedAt?: string;
|
|
3238
|
+
pauseReason?: string;
|
|
3239
|
+
lastError?: string;
|
|
3240
|
+
errorCount?: number;
|
|
3227
3241
|
stepHistory: StepHistoryEntry[];
|
|
3228
3242
|
events: ExecutionEvent[];
|
|
3229
3243
|
}
|
package/dist/index.d.mts
CHANGED
|
@@ -3196,10 +3196,17 @@ interface ExecutionSummary {
|
|
|
3196
3196
|
}
|
|
3197
3197
|
interface StepHistoryEntry {
|
|
3198
3198
|
stepKey: string;
|
|
3199
|
+
stepName?: string;
|
|
3200
|
+
action?: string;
|
|
3199
3201
|
status: string;
|
|
3202
|
+
scheduledAt?: string;
|
|
3203
|
+
startedAt?: string;
|
|
3200
3204
|
sentAt?: string;
|
|
3201
3205
|
completedAt?: string;
|
|
3206
|
+
actualChannel?: string;
|
|
3207
|
+
actualAction?: string;
|
|
3202
3208
|
actualContent?: string;
|
|
3209
|
+
errorMessage?: string;
|
|
3203
3210
|
replyReceivedAt?: string;
|
|
3204
3211
|
replyContent?: string;
|
|
3205
3212
|
replySentiment?: ReplySentiment;
|
|
@@ -3218,12 +3225,19 @@ interface ExecutionEvent {
|
|
|
3218
3225
|
eventType: string;
|
|
3219
3226
|
eventData?: ExecutionEventData;
|
|
3220
3227
|
createdAt: string;
|
|
3228
|
+
processingStatus?: string;
|
|
3221
3229
|
}
|
|
3222
3230
|
interface ExecutionDetailResponse extends ExecutionSummary {
|
|
3223
3231
|
currentStep?: {
|
|
3224
3232
|
stepKey: string;
|
|
3225
3233
|
name: string;
|
|
3226
3234
|
};
|
|
3235
|
+
completedAt?: string;
|
|
3236
|
+
exitReason?: string;
|
|
3237
|
+
pausedAt?: string;
|
|
3238
|
+
pauseReason?: string;
|
|
3239
|
+
lastError?: string;
|
|
3240
|
+
errorCount?: number;
|
|
3227
3241
|
stepHistory: StepHistoryEntry[];
|
|
3228
3242
|
events: ExecutionEvent[];
|
|
3229
3243
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -3196,10 +3196,17 @@ interface ExecutionSummary {
|
|
|
3196
3196
|
}
|
|
3197
3197
|
interface StepHistoryEntry {
|
|
3198
3198
|
stepKey: string;
|
|
3199
|
+
stepName?: string;
|
|
3200
|
+
action?: string;
|
|
3199
3201
|
status: string;
|
|
3202
|
+
scheduledAt?: string;
|
|
3203
|
+
startedAt?: string;
|
|
3200
3204
|
sentAt?: string;
|
|
3201
3205
|
completedAt?: string;
|
|
3206
|
+
actualChannel?: string;
|
|
3207
|
+
actualAction?: string;
|
|
3202
3208
|
actualContent?: string;
|
|
3209
|
+
errorMessage?: string;
|
|
3203
3210
|
replyReceivedAt?: string;
|
|
3204
3211
|
replyContent?: string;
|
|
3205
3212
|
replySentiment?: ReplySentiment;
|
|
@@ -3218,12 +3225,19 @@ interface ExecutionEvent {
|
|
|
3218
3225
|
eventType: string;
|
|
3219
3226
|
eventData?: ExecutionEventData;
|
|
3220
3227
|
createdAt: string;
|
|
3228
|
+
processingStatus?: string;
|
|
3221
3229
|
}
|
|
3222
3230
|
interface ExecutionDetailResponse extends ExecutionSummary {
|
|
3223
3231
|
currentStep?: {
|
|
3224
3232
|
stepKey: string;
|
|
3225
3233
|
name: string;
|
|
3226
3234
|
};
|
|
3235
|
+
completedAt?: string;
|
|
3236
|
+
exitReason?: string;
|
|
3237
|
+
pausedAt?: string;
|
|
3238
|
+
pauseReason?: string;
|
|
3239
|
+
lastError?: string;
|
|
3240
|
+
errorCount?: number;
|
|
3227
3241
|
stepHistory: StepHistoryEntry[];
|
|
3228
3242
|
events: ExecutionEvent[];
|
|
3229
3243
|
}
|