@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.
@@ -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: {
@@ -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;
@@ -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(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@domu-ai/kiban-sdk",
3
- "version": "1.84.1",
3
+ "version": "1.88.0",
4
4
  "description": "Generated TypeScript SDKs for Kiban public, internal, and dashboard APIs.",
5
5
  "license": "UNLICENSED",
6
6
  "main": "./index.js",