@kl1/contracts 1.3.57 → 1.3.58

Sign up to get free protection for your applications and to get access to all the features.
@@ -41402,6 +41402,110 @@ export declare const apiContract: {
41402
41402
  path: "ms/bots/";
41403
41403
  };
41404
41404
  };
41405
+ invoice: {
41406
+ getInvoices: {
41407
+ method: "GET";
41408
+ query: null;
41409
+ responses: {
41410
+ 200: import("zod").ZodObject<{
41411
+ requestId: import("zod").ZodString;
41412
+ invoices: import("zod").ZodArray<import("zod").ZodObject<{
41413
+ id: import("zod").ZodString;
41414
+ createdAt: import("zod").ZodDate;
41415
+ updatedAt: import("zod").ZodDate;
41416
+ deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
41417
+ invoiceId: import("zod").ZodString;
41418
+ amountPaid: import("zod").ZodNumber;
41419
+ billingReason: import("zod").ZodString;
41420
+ collectionMethod: import("zod").ZodString;
41421
+ created: import("zod").ZodNumber;
41422
+ currency: import("zod").ZodString;
41423
+ hostedInvoiceUrl: import("zod").ZodString;
41424
+ invoicePdf: import("zod").ZodString;
41425
+ number: import("zod").ZodString;
41426
+ paid: import("zod").ZodBoolean;
41427
+ }, "strip", import("zod").ZodTypeAny, {
41428
+ number: string;
41429
+ currency: string;
41430
+ id: string;
41431
+ createdAt: Date;
41432
+ updatedAt: Date;
41433
+ deletedAt: Date | null;
41434
+ invoiceId: string;
41435
+ amountPaid: number;
41436
+ billingReason: string;
41437
+ collectionMethod: string;
41438
+ created: number;
41439
+ hostedInvoiceUrl: string;
41440
+ invoicePdf: string;
41441
+ paid: boolean;
41442
+ }, {
41443
+ number: string;
41444
+ currency: string;
41445
+ id: string;
41446
+ createdAt: Date;
41447
+ updatedAt: Date;
41448
+ deletedAt: Date | null;
41449
+ invoiceId: string;
41450
+ amountPaid: number;
41451
+ billingReason: string;
41452
+ collectionMethod: string;
41453
+ created: number;
41454
+ hostedInvoiceUrl: string;
41455
+ invoicePdf: string;
41456
+ paid: boolean;
41457
+ }>, "many">;
41458
+ }, "strip", import("zod").ZodTypeAny, {
41459
+ requestId: string;
41460
+ invoices: {
41461
+ number: string;
41462
+ currency: string;
41463
+ id: string;
41464
+ createdAt: Date;
41465
+ updatedAt: Date;
41466
+ deletedAt: Date | null;
41467
+ invoiceId: string;
41468
+ amountPaid: number;
41469
+ billingReason: string;
41470
+ collectionMethod: string;
41471
+ created: number;
41472
+ hostedInvoiceUrl: string;
41473
+ invoicePdf: string;
41474
+ paid: boolean;
41475
+ }[];
41476
+ }, {
41477
+ requestId: string;
41478
+ invoices: {
41479
+ number: string;
41480
+ currency: string;
41481
+ id: string;
41482
+ createdAt: Date;
41483
+ updatedAt: Date;
41484
+ deletedAt: Date | null;
41485
+ invoiceId: string;
41486
+ amountPaid: number;
41487
+ billingReason: string;
41488
+ collectionMethod: string;
41489
+ created: number;
41490
+ hostedInvoiceUrl: string;
41491
+ invoicePdf: string;
41492
+ paid: boolean;
41493
+ }[];
41494
+ }>;
41495
+ 500: import("zod").ZodObject<{
41496
+ message: import("zod").ZodString;
41497
+ error: import("zod").ZodAny;
41498
+ }, "strip", import("zod").ZodTypeAny, {
41499
+ message: string;
41500
+ error?: any;
41501
+ }, {
41502
+ message: string;
41503
+ error?: any;
41504
+ }>;
41505
+ };
41506
+ path: "ms/invoices/";
41507
+ };
41508
+ };
41405
41509
  };
41406
41510
  export declare const contactContract: {
41407
41511
  contact: {