@vrplatform/api 1.3.1-stage.2432 → 1.3.1-stage.2434

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.
@@ -43205,6 +43205,8 @@ export interface operations {
43205
43205
  amount?: string;
43206
43206
  /** @description Date range string. Accepted syntax: `YYYY`, `YYYY-MM`, `YYYY-MM-DD`, or range `YYYY-MM-DD...YYYY-MM-DD`. Single values expand to the full year, month, or day. */
43207
43207
  paidAtRange?: string;
43208
+ /** @description Controls how dateRange and paidAtRange are applied. all applies both filters together, and or matches transaction date OR paid date. */
43209
+ dateRangeCondition?: "all" | "or";
43208
43210
  /** @description Date range string. Accepted syntax: `YYYY`, `YYYY-MM`, `YYYY-MM-DD`, or range `YYYY-MM-DD...YYYY-MM-DD`. Single values expand to the full year, month, or day. */
43209
43211
  dateRange?: string;
43210
43212
  /** @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`). */
@@ -43217,8 +43219,8 @@ export interface operations {
43217
43219
  recurringTemplateId?: string;
43218
43220
  paidStatus?: "unpaid" | "underpaid" | "overpaid" | "paid";
43219
43221
  matchedByBankRule?: boolean;
43220
- /** @description Filter transactions by reconciled state. True only returns reconciled transactions. */
43221
- reconciled?: boolean;
43222
+ /** @description Filter transactions by reconciled state. True only returns reconciled transactions. Candidate returns unreconciled match candidates for accountId. */
43223
+ reconciled?: boolean | "candidate";
43222
43224
  contactId?: string;
43223
43225
  listingIds?: string;
43224
43226
  limit?: number;
@@ -44307,6 +44309,8 @@ export interface operations {
44307
44309
  amount?: string;
44308
44310
  /** @description Date range string. Accepted syntax: `YYYY`, `YYYY-MM`, `YYYY-MM-DD`, or range `YYYY-MM-DD...YYYY-MM-DD`. Single values expand to the full year, month, or day. */
44309
44311
  paidAtRange?: string;
44312
+ /** @description Controls how dateRange and paidAtRange are applied. all applies both filters together, and or matches transaction date OR paid date. */
44313
+ dateRangeCondition?: "all" | "or";
44310
44314
  /** @description Date range string. Accepted syntax: `YYYY`, `YYYY-MM`, `YYYY-MM-DD`, or range `YYYY-MM-DD...YYYY-MM-DD`. Single values expand to the full year, month, or day. */
44311
44315
  dateRange?: string;
44312
44316
  /** @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`). */
@@ -44319,8 +44323,8 @@ export interface operations {
44319
44323
  recurringTemplateId?: string;
44320
44324
  paidStatus?: "unpaid" | "underpaid" | "overpaid" | "paid";
44321
44325
  matchedByBankRule?: boolean;
44322
- /** @description Filter transactions by reconciled state. True only returns reconciled transactions. */
44323
- reconciled?: boolean;
44326
+ /** @description Filter transactions by reconciled state. True only returns reconciled transactions. Candidate returns unreconciled match candidates for accountId. */
44327
+ reconciled?: boolean | "candidate";
44324
44328
  contactId?: string;
44325
44329
  listingIds?: string;
44326
44330
  };
@@ -44440,6 +44444,8 @@ export interface operations {
44440
44444
  amount?: string;
44441
44445
  /** @description Date range string. Accepted syntax: `YYYY`, `YYYY-MM`, `YYYY-MM-DD`, or range `YYYY-MM-DD...YYYY-MM-DD`. Single values expand to the full year, month, or day. */
44442
44446
  paidAtRange?: string;
44447
+ /** @description Controls how dateRange and paidAtRange are applied. all applies both filters together, and or matches transaction date OR paid date. */
44448
+ dateRangeCondition?: "all" | "or";
44443
44449
  /** @description Date range string. Accepted syntax: `YYYY`, `YYYY-MM`, `YYYY-MM-DD`, or range `YYYY-MM-DD...YYYY-MM-DD`. Single values expand to the full year, month, or day. */
44444
44450
  dateRange?: string;
44445
44451
  /** @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`). */
@@ -44452,8 +44458,8 @@ export interface operations {
44452
44458
  recurringTemplateId?: string;
44453
44459
  paidStatus?: "unpaid" | "underpaid" | "overpaid" | "paid";
44454
44460
  matchedByBankRule?: boolean;
44455
- /** @description Filter transactions by reconciled state. True only returns reconciled transactions. */
44456
- reconciled?: boolean;
44461
+ /** @description Filter transactions by reconciled state. True only returns reconciled transactions. Candidate returns unreconciled match candidates for accountId. */
44462
+ reconciled?: boolean | "candidate";
44457
44463
  contactId?: string;
44458
44464
  listingIds?: string;
44459
44465
  };
@@ -44573,6 +44579,8 @@ export interface operations {
44573
44579
  amount?: string;
44574
44580
  /** @description Date range string. Accepted syntax: `YYYY`, `YYYY-MM`, `YYYY-MM-DD`, or range `YYYY-MM-DD...YYYY-MM-DD`. Single values expand to the full year, month, or day. */
44575
44581
  paidAtRange?: string;
44582
+ /** @description Controls how dateRange and paidAtRange are applied. all applies both filters together, and or matches transaction date OR paid date. */
44583
+ dateRangeCondition?: "all" | "or";
44576
44584
  /** @description Date range string. Accepted syntax: `YYYY`, `YYYY-MM`, `YYYY-MM-DD`, or range `YYYY-MM-DD...YYYY-MM-DD`. Single values expand to the full year, month, or day. */
44577
44585
  dateRange?: string;
44578
44586
  /** @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`). */
@@ -44585,8 +44593,8 @@ export interface operations {
44585
44593
  recurringTemplateId?: string;
44586
44594
  paidStatus?: "unpaid" | "underpaid" | "overpaid" | "paid";
44587
44595
  matchedByBankRule?: boolean;
44588
- /** @description Filter transactions by reconciled state. True only returns reconciled transactions. */
44589
- reconciled?: boolean;
44596
+ /** @description Filter transactions by reconciled state. True only returns reconciled transactions. Candidate returns unreconciled match candidates for accountId. */
44597
+ reconciled?: boolean | "candidate";
44590
44598
  contactId?: string;
44591
44599
  listingIds?: string;
44592
44600
  };
@@ -45048,6 +45056,8 @@ export interface operations {
45048
45056
  amount?: string;
45049
45057
  /** @description Date range string. Accepted syntax: `YYYY`, `YYYY-MM`, `YYYY-MM-DD`, or range `YYYY-MM-DD...YYYY-MM-DD`. Single values expand to the full year, month, or day. */
45050
45058
  paidAtRange?: string;
45059
+ /** @description Controls how dateRange and paidAtRange are applied. all applies both filters together, and or matches transaction date OR paid date. */
45060
+ dateRangeCondition?: "all" | "or";
45051
45061
  /** @description Date range string. Accepted syntax: `YYYY`, `YYYY-MM`, `YYYY-MM-DD`, or range `YYYY-MM-DD...YYYY-MM-DD`. Single values expand to the full year, month, or day. */
45052
45062
  dateRange?: string;
45053
45063
  /** @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`). */
@@ -45060,8 +45070,8 @@ export interface operations {
45060
45070
  recurringTemplateId?: string;
45061
45071
  paidStatus?: "unpaid" | "underpaid" | "overpaid" | "paid";
45062
45072
  matchedByBankRule?: boolean;
45063
- /** @description Filter transactions by reconciled state. True only returns reconciled transactions. */
45064
- reconciled?: boolean;
45073
+ /** @description Filter transactions by reconciled state. True only returns reconciled transactions. Candidate returns unreconciled match candidates for accountId. */
45074
+ reconciled?: boolean | "candidate";
45065
45075
  contactId?: string;
45066
45076
  listingIds?: string;
45067
45077
  };
@@ -46905,6 +46915,8 @@ export interface operations {
46905
46915
  amount?: string;
46906
46916
  /** @description Date range string. Accepted syntax: `YYYY`, `YYYY-MM`, `YYYY-MM-DD`, or range `YYYY-MM-DD...YYYY-MM-DD`. Single values expand to the full year, month, or day. */
46907
46917
  paidAtRange?: string;
46918
+ /** @description Controls how dateRange and paidAtRange are applied. all applies both filters together, and or matches transaction date OR paid date. */
46919
+ dateRangeCondition?: "all" | "or";
46908
46920
  /** @description Date range string. Accepted syntax: `YYYY`, `YYYY-MM`, `YYYY-MM-DD`, or range `YYYY-MM-DD...YYYY-MM-DD`. Single values expand to the full year, month, or day. */
46909
46921
  dateRange?: string;
46910
46922
  /** @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`). */
@@ -46917,8 +46929,8 @@ export interface operations {
46917
46929
  recurringTemplateId?: string;
46918
46930
  paidStatus?: "unpaid" | "underpaid" | "overpaid" | "paid";
46919
46931
  matchedByBankRule?: boolean;
46920
- /** @description Filter transactions by reconciled state. True only returns reconciled transactions. */
46921
- reconciled?: boolean;
46932
+ /** @description Filter transactions by reconciled state. True only returns reconciled transactions. Candidate returns unreconciled match candidates for accountId. */
46933
+ reconciled?: boolean | "candidate";
46922
46934
  contactId?: string;
46923
46935
  listingIds?: string;
46924
46936
  };