@kl1/contracts 1.3.67 → 1.3.68

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.
@@ -41595,6 +41595,110 @@ export declare const apiContract: {
41595
41595
  path: "ms/bots/";
41596
41596
  };
41597
41597
  };
41598
+ invoice: {
41599
+ getInvoices: {
41600
+ method: "GET";
41601
+ query: null;
41602
+ responses: {
41603
+ 200: import("zod").ZodObject<{
41604
+ requestId: import("zod").ZodString;
41605
+ invoices: import("zod").ZodArray<import("zod").ZodObject<{
41606
+ id: import("zod").ZodString;
41607
+ createdAt: import("zod").ZodDate;
41608
+ updatedAt: import("zod").ZodDate;
41609
+ deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
41610
+ invoiceId: import("zod").ZodString;
41611
+ amountPaid: import("zod").ZodNumber;
41612
+ billingReason: import("zod").ZodString;
41613
+ collectionMethod: import("zod").ZodString;
41614
+ created: import("zod").ZodNumber;
41615
+ currency: import("zod").ZodString;
41616
+ hostedInvoiceUrl: import("zod").ZodString;
41617
+ invoicePdf: import("zod").ZodString;
41618
+ number: import("zod").ZodString;
41619
+ paid: import("zod").ZodBoolean;
41620
+ }, "strip", import("zod").ZodTypeAny, {
41621
+ number: string;
41622
+ currency: string;
41623
+ id: string;
41624
+ createdAt: Date;
41625
+ updatedAt: Date;
41626
+ deletedAt: Date | null;
41627
+ invoiceId: string;
41628
+ amountPaid: number;
41629
+ billingReason: string;
41630
+ collectionMethod: string;
41631
+ created: number;
41632
+ hostedInvoiceUrl: string;
41633
+ invoicePdf: string;
41634
+ paid: boolean;
41635
+ }, {
41636
+ number: string;
41637
+ currency: string;
41638
+ id: string;
41639
+ createdAt: Date;
41640
+ updatedAt: Date;
41641
+ deletedAt: Date | null;
41642
+ invoiceId: string;
41643
+ amountPaid: number;
41644
+ billingReason: string;
41645
+ collectionMethod: string;
41646
+ created: number;
41647
+ hostedInvoiceUrl: string;
41648
+ invoicePdf: string;
41649
+ paid: boolean;
41650
+ }>, "many">;
41651
+ }, "strip", import("zod").ZodTypeAny, {
41652
+ requestId: string;
41653
+ invoices: {
41654
+ number: string;
41655
+ currency: string;
41656
+ id: string;
41657
+ createdAt: Date;
41658
+ updatedAt: Date;
41659
+ deletedAt: Date | null;
41660
+ invoiceId: string;
41661
+ amountPaid: number;
41662
+ billingReason: string;
41663
+ collectionMethod: string;
41664
+ created: number;
41665
+ hostedInvoiceUrl: string;
41666
+ invoicePdf: string;
41667
+ paid: boolean;
41668
+ }[];
41669
+ }, {
41670
+ requestId: string;
41671
+ invoices: {
41672
+ number: string;
41673
+ currency: string;
41674
+ id: string;
41675
+ createdAt: Date;
41676
+ updatedAt: Date;
41677
+ deletedAt: Date | null;
41678
+ invoiceId: string;
41679
+ amountPaid: number;
41680
+ billingReason: string;
41681
+ collectionMethod: string;
41682
+ created: number;
41683
+ hostedInvoiceUrl: string;
41684
+ invoicePdf: string;
41685
+ paid: boolean;
41686
+ }[];
41687
+ }>;
41688
+ 500: import("zod").ZodObject<{
41689
+ message: import("zod").ZodString;
41690
+ error: import("zod").ZodAny;
41691
+ }, "strip", import("zod").ZodTypeAny, {
41692
+ message: string;
41693
+ error?: any;
41694
+ }, {
41695
+ message: string;
41696
+ error?: any;
41697
+ }>;
41698
+ };
41699
+ path: "ms/invoices/";
41700
+ };
41701
+ };
41598
41702
  };
41599
41703
  export declare const contactContract: {
41600
41704
  contact: {