@domu-ai/kiban-sdk 1.179.0 → 1.181.0
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/internal/client.d.ts +2 -0
- package/internal/schemas.d.ts +3 -0
- package/internal/schemas.js +2 -1
- package/package.json +1 -1
package/internal/client.d.ts
CHANGED
|
@@ -3073,6 +3073,8 @@ export type InternalAnalysisRunPostBody = {
|
|
|
3073
3073
|
* @minLength 1
|
|
3074
3074
|
*/
|
|
3075
3075
|
callId: string;
|
|
3076
|
+
/** When true, bypasses the persisted-result idempotency check and re-runs the analysis engine. Set this when the upstream rerun flag has already been cleared by the time this endpoint is called (e.g., recover-calls service clears `calls.rerun` before the analyze-call Lambda forwards to Kiban). */
|
|
3077
|
+
rerun?: boolean;
|
|
3076
3078
|
};
|
|
3077
3079
|
export type InternalAnalysisRunPost202 = {
|
|
3078
3080
|
/** Unique identifier for the queued analysis job */
|
package/internal/schemas.d.ts
CHANGED
|
@@ -14626,10 +14626,13 @@ export declare const MeResponse: zod.ZodObject<{
|
|
|
14626
14626
|
*/
|
|
14627
14627
|
export declare const RunAnalysisBody: zod.ZodObject<{
|
|
14628
14628
|
callId: zod.ZodString;
|
|
14629
|
+
rerun: zod.ZodOptional<zod.ZodBoolean>;
|
|
14629
14630
|
}, "strip", zod.ZodTypeAny, {
|
|
14630
14631
|
callId: string;
|
|
14632
|
+
rerun?: boolean | undefined;
|
|
14631
14633
|
}, {
|
|
14632
14634
|
callId: string;
|
|
14635
|
+
rerun?: boolean | undefined;
|
|
14633
14636
|
}>;
|
|
14634
14637
|
/**
|
|
14635
14638
|
* Returns the active (latest version) analysis config for a campaign. Returns 404 if no config exists.
|
package/internal/schemas.js
CHANGED
|
@@ -2237,7 +2237,8 @@ exports.MeResponse = zod.object({
|
|
|
2237
2237
|
* @summary Queue a call analysis job
|
|
2238
2238
|
*/
|
|
2239
2239
|
exports.RunAnalysisBody = zod.object({
|
|
2240
|
-
"callId": zod.string().min(1).describe('ID of the call to analyze')
|
|
2240
|
+
"callId": zod.string().min(1).describe('ID of the call to analyze'),
|
|
2241
|
+
"rerun": zod.boolean().optional().describe('When true, bypasses the persisted-result idempotency check and re-runs the analysis engine. Set this when the upstream rerun flag has already been cleared by the time this endpoint is called (e.g., recover-calls service clears `calls.rerun` before the analyze-call Lambda forwards to Kiban).')
|
|
2241
2242
|
});
|
|
2242
2243
|
/**
|
|
2243
2244
|
* Returns the active (latest version) analysis config for a campaign. Returns 404 if no config exists.
|