@kl1/contracts 1.1.83-uat → 1.1.84-uat

Sign up to get free protection for your applications and to get access to all the features.
@@ -34061,6 +34061,40 @@ export declare const apiContract: {
34061
34061
  }>;
34062
34062
  };
34063
34063
  };
34064
+ topUpBalance: {
34065
+ body: import("zod").ZodObject<{
34066
+ quantity: import("zod").ZodNumber;
34067
+ }, "strip", import("zod").ZodTypeAny, {
34068
+ quantity: number;
34069
+ }, {
34070
+ quantity: number;
34071
+ }>;
34072
+ method: "POST";
34073
+ path: "subscriptions/top-up";
34074
+ responses: {
34075
+ 200: import("zod").ZodObject<import("zod").objectUtil.extendShape<{
34076
+ requestId: import("zod").ZodString;
34077
+ }, {
34078
+ checkoutUrl: import("zod").ZodString;
34079
+ }>, "strip", import("zod").ZodTypeAny, {
34080
+ requestId: string;
34081
+ checkoutUrl: string;
34082
+ }, {
34083
+ requestId: string;
34084
+ checkoutUrl: string;
34085
+ }>;
34086
+ 500: import("zod").ZodObject<{
34087
+ message: import("zod").ZodString;
34088
+ error: import("zod").ZodAny;
34089
+ }, "strip", import("zod").ZodTypeAny, {
34090
+ message: string;
34091
+ error?: any;
34092
+ }, {
34093
+ message: string;
34094
+ error?: any;
34095
+ }>;
34096
+ };
34097
+ };
34064
34098
  getAvailablePlan: {
34065
34099
  method: "GET";
34066
34100
  query: null;