@domu-ai/kiban-sdk 1.84.1 → 1.88.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 +1 -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
|
@@ -669,6 +669,7 @@ export type InternalPaymentsTransferPost500 = {
|
|
|
669
669
|
};
|
|
670
670
|
export type InternalPaymentsCallbackPostParams = {
|
|
671
671
|
sessionId: string;
|
|
672
|
+
retryGather?: string;
|
|
672
673
|
};
|
|
673
674
|
export type InternalPaymentsCallbackPostBodyResult = typeof InternalPaymentsCallbackPostBodyResult[keyof typeof InternalPaymentsCallbackPostBodyResult];
|
|
674
675
|
export declare const InternalPaymentsCallbackPostBodyResult: {
|
package/internal/schemas.d.ts
CHANGED
|
@@ -832,10 +832,13 @@ export declare const InitiateTransferResponse: zod.ZodObject<{
|
|
|
832
832
|
*/
|
|
833
833
|
export declare const ProcessCallbackQueryParams: zod.ZodObject<{
|
|
834
834
|
sessionId: zod.ZodString;
|
|
835
|
+
retryGather: zod.ZodOptional<zod.ZodString>;
|
|
835
836
|
}, "strip", zod.ZodTypeAny, {
|
|
836
837
|
sessionId: string;
|
|
838
|
+
retryGather?: string | undefined;
|
|
837
839
|
}, {
|
|
838
840
|
sessionId: string;
|
|
841
|
+
retryGather?: string | undefined;
|
|
839
842
|
}>;
|
|
840
843
|
export declare const ProcessCallbackBody: zod.ZodObject<{
|
|
841
844
|
CallSid: zod.ZodString;
|
package/internal/schemas.js
CHANGED
|
@@ -332,7 +332,8 @@ exports.InitiateTransferResponse = zod.object({
|
|
|
332
332
|
* @summary Process Twilio Pay callback
|
|
333
333
|
*/
|
|
334
334
|
exports.ProcessCallbackQueryParams = zod.object({
|
|
335
|
-
"sessionId": zod.string()
|
|
335
|
+
"sessionId": zod.string(),
|
|
336
|
+
"retryGather": zod.string().optional()
|
|
336
337
|
});
|
|
337
338
|
exports.ProcessCallbackBody = zod.object({
|
|
338
339
|
"CallSid": zod.string(),
|