@vrplatform/api 1.2.33-991 → 1.2.33-993

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.
@@ -23391,10 +23391,10 @@ export interface operations {
23391
23391
  data: {
23392
23392
  contact: {
23393
23393
  contactId: string;
23394
- name?: string | null;
23395
- firstName?: string | null;
23396
- email?: string | null;
23397
- phone?: string | null;
23394
+ name?: string;
23395
+ firstName?: string;
23396
+ email?: string;
23397
+ phone?: string;
23398
23398
  };
23399
23399
  currency: string;
23400
23400
  financials: {
@@ -23555,30 +23555,83 @@ export interface operations {
23555
23555
  };
23556
23556
  content: {
23557
23557
  "application/json": {
23558
+ currency: string;
23559
+ contact: {
23560
+ contactId: string;
23561
+ name?: string;
23562
+ firstName?: string;
23563
+ email?: string;
23564
+ phone?: string;
23565
+ };
23566
+ financials: {
23567
+ balanceStart: number;
23568
+ netRevenue: number;
23569
+ expenses: number;
23570
+ transfers: number;
23571
+ netIncome: number;
23572
+ currentBalance: number;
23573
+ balanceEnd: number;
23574
+ };
23558
23575
  netRevenueSection: {
23559
23576
  title: string;
23560
23577
  rows: {
23561
23578
  title: string;
23562
- statementIds: string[];
23579
+ statementIds?: string[];
23563
23580
  columns: {
23564
23581
  title: string;
23565
23582
  value: number | string;
23566
23583
  formatted: string;
23567
23584
  }[];
23568
23585
  }[];
23586
+ subtotal?: {
23587
+ title: string;
23588
+ columns: {
23589
+ title: string;
23590
+ value: number | string;
23591
+ formatted: string;
23592
+ }[];
23593
+ };
23569
23594
  };
23570
23595
  otherSections: {
23571
23596
  title: string;
23572
23597
  rows: {
23573
23598
  title: string;
23574
- statementIds: string[];
23599
+ statementIds?: string[];
23575
23600
  columns: {
23576
23601
  title: string;
23577
23602
  value: number | string;
23578
23603
  formatted: string;
23579
23604
  }[];
23580
23605
  }[];
23606
+ subtotal?: {
23607
+ title: string;
23608
+ columns: {
23609
+ title: string;
23610
+ value: number | string;
23611
+ formatted: string;
23612
+ }[];
23613
+ };
23581
23614
  }[];
23615
+ transfersSection?: {
23616
+ title: string;
23617
+ rows: {
23618
+ title: string;
23619
+ statementIds?: string[];
23620
+ columns: {
23621
+ title: string;
23622
+ value: number | string;
23623
+ formatted: string;
23624
+ }[];
23625
+ }[];
23626
+ subtotal?: {
23627
+ title: string;
23628
+ columns: {
23629
+ title: string;
23630
+ value: number | string;
23631
+ formatted: string;
23632
+ }[];
23633
+ };
23634
+ };
23582
23635
  };
23583
23636
  };
23584
23637
  };