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

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.
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.3.1-stage.2432",
6
+ "version": "1.3.1-stage.2433",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -43206,6 +43206,8 @@ export interface operations {
43206
43206
  amount?: string;
43207
43207
  /** @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. */
43208
43208
  paidAtRange?: string;
43209
+ /** @description Controls how dateRange and paidAtRange are applied. all applies both filters together, and or matches transaction date OR paid date. */
43210
+ dateRangeCondition?: "all" | "or";
43209
43211
  /** @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. */
43210
43212
  dateRange?: string;
43211
43213
  /** @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`). */
@@ -43218,8 +43220,8 @@ export interface operations {
43218
43220
  recurringTemplateId?: string;
43219
43221
  paidStatus?: "unpaid" | "underpaid" | "overpaid" | "paid";
43220
43222
  matchedByBankRule?: boolean;
43221
- /** @description Filter transactions by reconciled state. True only returns reconciled transactions. */
43222
- reconciled?: boolean;
43223
+ /** @description Filter transactions by reconciled state. True only returns reconciled transactions. Candidate returns unreconciled match candidates for accountId. */
43224
+ reconciled?: boolean | "candidate";
43223
43225
  contactId?: string;
43224
43226
  listingIds?: string;
43225
43227
  limit?: number;
@@ -44308,6 +44310,8 @@ export interface operations {
44308
44310
  amount?: string;
44309
44311
  /** @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. */
44310
44312
  paidAtRange?: string;
44313
+ /** @description Controls how dateRange and paidAtRange are applied. all applies both filters together, and or matches transaction date OR paid date. */
44314
+ dateRangeCondition?: "all" | "or";
44311
44315
  /** @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. */
44312
44316
  dateRange?: string;
44313
44317
  /** @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`). */
@@ -44320,8 +44324,8 @@ export interface operations {
44320
44324
  recurringTemplateId?: string;
44321
44325
  paidStatus?: "unpaid" | "underpaid" | "overpaid" | "paid";
44322
44326
  matchedByBankRule?: boolean;
44323
- /** @description Filter transactions by reconciled state. True only returns reconciled transactions. */
44324
- reconciled?: boolean;
44327
+ /** @description Filter transactions by reconciled state. True only returns reconciled transactions. Candidate returns unreconciled match candidates for accountId. */
44328
+ reconciled?: boolean | "candidate";
44325
44329
  contactId?: string;
44326
44330
  listingIds?: string;
44327
44331
  };
@@ -44441,6 +44445,8 @@ export interface operations {
44441
44445
  amount?: string;
44442
44446
  /** @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. */
44443
44447
  paidAtRange?: string;
44448
+ /** @description Controls how dateRange and paidAtRange are applied. all applies both filters together, and or matches transaction date OR paid date. */
44449
+ dateRangeCondition?: "all" | "or";
44444
44450
  /** @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. */
44445
44451
  dateRange?: string;
44446
44452
  /** @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`). */
@@ -44453,8 +44459,8 @@ export interface operations {
44453
44459
  recurringTemplateId?: string;
44454
44460
  paidStatus?: "unpaid" | "underpaid" | "overpaid" | "paid";
44455
44461
  matchedByBankRule?: boolean;
44456
- /** @description Filter transactions by reconciled state. True only returns reconciled transactions. */
44457
- reconciled?: boolean;
44462
+ /** @description Filter transactions by reconciled state. True only returns reconciled transactions. Candidate returns unreconciled match candidates for accountId. */
44463
+ reconciled?: boolean | "candidate";
44458
44464
  contactId?: string;
44459
44465
  listingIds?: string;
44460
44466
  };
@@ -44574,6 +44580,8 @@ export interface operations {
44574
44580
  amount?: string;
44575
44581
  /** @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. */
44576
44582
  paidAtRange?: string;
44583
+ /** @description Controls how dateRange and paidAtRange are applied. all applies both filters together, and or matches transaction date OR paid date. */
44584
+ dateRangeCondition?: "all" | "or";
44577
44585
  /** @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. */
44578
44586
  dateRange?: string;
44579
44587
  /** @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`). */
@@ -44586,8 +44594,8 @@ export interface operations {
44586
44594
  recurringTemplateId?: string;
44587
44595
  paidStatus?: "unpaid" | "underpaid" | "overpaid" | "paid";
44588
44596
  matchedByBankRule?: boolean;
44589
- /** @description Filter transactions by reconciled state. True only returns reconciled transactions. */
44590
- reconciled?: boolean;
44597
+ /** @description Filter transactions by reconciled state. True only returns reconciled transactions. Candidate returns unreconciled match candidates for accountId. */
44598
+ reconciled?: boolean | "candidate";
44591
44599
  contactId?: string;
44592
44600
  listingIds?: string;
44593
44601
  };
@@ -45049,6 +45057,8 @@ export interface operations {
45049
45057
  amount?: string;
45050
45058
  /** @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. */
45051
45059
  paidAtRange?: string;
45060
+ /** @description Controls how dateRange and paidAtRange are applied. all applies both filters together, and or matches transaction date OR paid date. */
45061
+ dateRangeCondition?: "all" | "or";
45052
45062
  /** @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. */
45053
45063
  dateRange?: string;
45054
45064
  /** @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`). */
@@ -45061,8 +45071,8 @@ export interface operations {
45061
45071
  recurringTemplateId?: string;
45062
45072
  paidStatus?: "unpaid" | "underpaid" | "overpaid" | "paid";
45063
45073
  matchedByBankRule?: boolean;
45064
- /** @description Filter transactions by reconciled state. True only returns reconciled transactions. */
45065
- reconciled?: boolean;
45074
+ /** @description Filter transactions by reconciled state. True only returns reconciled transactions. Candidate returns unreconciled match candidates for accountId. */
45075
+ reconciled?: boolean | "candidate";
45066
45076
  contactId?: string;
45067
45077
  listingIds?: string;
45068
45078
  };
@@ -46906,6 +46916,8 @@ export interface operations {
46906
46916
  amount?: string;
46907
46917
  /** @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. */
46908
46918
  paidAtRange?: string;
46919
+ /** @description Controls how dateRange and paidAtRange are applied. all applies both filters together, and or matches transaction date OR paid date. */
46920
+ dateRangeCondition?: "all" | "or";
46909
46921
  /** @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. */
46910
46922
  dateRange?: string;
46911
46923
  /** @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`). */
@@ -46918,8 +46930,8 @@ export interface operations {
46918
46930
  recurringTemplateId?: string;
46919
46931
  paidStatus?: "unpaid" | "underpaid" | "overpaid" | "paid";
46920
46932
  matchedByBankRule?: boolean;
46921
- /** @description Filter transactions by reconciled state. True only returns reconciled transactions. */
46922
- reconciled?: boolean;
46933
+ /** @description Filter transactions by reconciled state. True only returns reconciled transactions. Candidate returns unreconciled match candidates for accountId. */
46934
+ reconciled?: boolean | "candidate";
46923
46935
  contactId?: string;
46924
46936
  listingIds?: string;
46925
46937
  };