@vrplatform/api 1.3.1-stage.2167 → 1.3.1-stage.2169

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.2167",
6
+ "version": "1.3.1-stage.2169",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -8126,11 +8126,27 @@ export interface operations {
8126
8126
  transactionType: "deposit" | "expense";
8127
8127
  /** @enum {string} */
8128
8128
  mode: "suggest" | "autoCreateAndMatch";
8129
+ /** @enum {string} */
8130
+ matchMode: "all" | "any";
8131
+ conditions: ({
8132
+ /** @constant */
8133
+ type: "description";
8134
+ /** @enum {string} */
8135
+ operator: "contains" | "equals" | "startsWith";
8136
+ value: string;
8137
+ } | {
8138
+ /** @constant */
8139
+ type: "amount";
8140
+ /** @enum {string} */
8141
+ operator: ">" | ">=" | "=" | "<" | "<=";
8142
+ centValue: number;
8143
+ })[];
8129
8144
  descriptionOperator?: ("contains" | "equals" | "startsWith") | null;
8130
8145
  descriptionValue?: string | null;
8131
8146
  amountMinCent?: number | null;
8132
8147
  amountMaxCent?: number | null;
8133
8148
  descriptionOverride?: string | null;
8149
+ /** @description Accrual date override for expense bank rules: post on the prior month end instead of the bank record date */
8134
8150
  usePriorMonthEnd: boolean;
8135
8151
  version: number;
8136
8152
  vendorContact?: {
@@ -8316,11 +8332,26 @@ export interface operations {
8316
8332
  /** @enum {string} */
8317
8333
  transactionType: "deposit" | "expense";
8318
8334
  mode?: ("suggest" | "autoCreateAndMatch") | null;
8335
+ matchMode?: ("all" | "any") | null;
8336
+ conditions?: ({
8337
+ /** @constant */
8338
+ type: "description";
8339
+ /** @enum {string} */
8340
+ operator: "contains" | "equals" | "startsWith";
8341
+ value: string;
8342
+ } | {
8343
+ /** @constant */
8344
+ type: "amount";
8345
+ /** @enum {string} */
8346
+ operator: ">" | ">=" | "=" | "<" | "<=";
8347
+ centValue: number;
8348
+ })[] | null;
8319
8349
  descriptionOperator?: ("contains" | "equals" | "startsWith") | null;
8320
8350
  descriptionValue?: string | null;
8321
8351
  amountMinCent?: number | null;
8322
8352
  amountMaxCent?: number | null;
8323
8353
  descriptionOverride?: string | null;
8354
+ /** @description Accrual date override for expense bank rules: post on the prior month end instead of the bank record date */
8324
8355
  usePriorMonthEnd?: boolean | null;
8325
8356
  vendorContactId?: string | null;
8326
8357
  accountIds?: string[] | null;
@@ -8365,11 +8396,27 @@ export interface operations {
8365
8396
  transactionType: "deposit" | "expense";
8366
8397
  /** @enum {string} */
8367
8398
  mode: "suggest" | "autoCreateAndMatch";
8399
+ /** @enum {string} */
8400
+ matchMode: "all" | "any";
8401
+ conditions: ({
8402
+ /** @constant */
8403
+ type: "description";
8404
+ /** @enum {string} */
8405
+ operator: "contains" | "equals" | "startsWith";
8406
+ value: string;
8407
+ } | {
8408
+ /** @constant */
8409
+ type: "amount";
8410
+ /** @enum {string} */
8411
+ operator: ">" | ">=" | "=" | "<" | "<=";
8412
+ centValue: number;
8413
+ })[];
8368
8414
  descriptionOperator?: ("contains" | "equals" | "startsWith") | null;
8369
8415
  descriptionValue?: string | null;
8370
8416
  amountMinCent?: number | null;
8371
8417
  amountMaxCent?: number | null;
8372
8418
  descriptionOverride?: string | null;
8419
+ /** @description Accrual date override for expense bank rules: post on the prior month end instead of the bank record date */
8373
8420
  usePriorMonthEnd: boolean;
8374
8421
  version: number;
8375
8422
  vendorContact?: {
@@ -8545,11 +8592,26 @@ export interface operations {
8545
8592
  /** @enum {string} */
8546
8593
  transactionType: "deposit" | "expense";
8547
8594
  mode?: ("suggest" | "autoCreateAndMatch") | null;
8595
+ matchMode?: ("all" | "any") | null;
8596
+ conditions?: ({
8597
+ /** @constant */
8598
+ type: "description";
8599
+ /** @enum {string} */
8600
+ operator: "contains" | "equals" | "startsWith";
8601
+ value: string;
8602
+ } | {
8603
+ /** @constant */
8604
+ type: "amount";
8605
+ /** @enum {string} */
8606
+ operator: ">" | ">=" | "=" | "<" | "<=";
8607
+ centValue: number;
8608
+ })[] | null;
8548
8609
  descriptionOperator?: ("contains" | "equals" | "startsWith") | null;
8549
8610
  descriptionValue?: string | null;
8550
8611
  amountMinCent?: number | null;
8551
8612
  amountMaxCent?: number | null;
8552
8613
  descriptionOverride?: string | null;
8614
+ /** @description Accrual date override for expense bank rules: post on the prior month end instead of the bank record date */
8553
8615
  usePriorMonthEnd?: boolean | null;
8554
8616
  vendorContactId?: string | null;
8555
8617
  accountIds?: string[] | null;
@@ -8759,11 +8821,27 @@ export interface operations {
8759
8821
  transactionType: "deposit" | "expense";
8760
8822
  /** @enum {string} */
8761
8823
  mode: "suggest" | "autoCreateAndMatch";
8824
+ /** @enum {string} */
8825
+ matchMode: "all" | "any";
8826
+ conditions: ({
8827
+ /** @constant */
8828
+ type: "description";
8829
+ /** @enum {string} */
8830
+ operator: "contains" | "equals" | "startsWith";
8831
+ value: string;
8832
+ } | {
8833
+ /** @constant */
8834
+ type: "amount";
8835
+ /** @enum {string} */
8836
+ operator: ">" | ">=" | "=" | "<" | "<=";
8837
+ centValue: number;
8838
+ })[];
8762
8839
  descriptionOperator?: ("contains" | "equals" | "startsWith") | null;
8763
8840
  descriptionValue?: string | null;
8764
8841
  amountMinCent?: number | null;
8765
8842
  amountMaxCent?: number | null;
8766
8843
  descriptionOverride?: string | null;
8844
+ /** @description Accrual date override for expense bank rules: post on the prior month end instead of the bank record date */
8767
8845
  usePriorMonthEnd: boolean;
8768
8846
  version: number;
8769
8847
  vendorContact?: {
@@ -8942,11 +9020,27 @@ export interface operations {
8942
9020
  transactionType?: "deposit" | "expense";
8943
9021
  /** @enum {string} */
8944
9022
  mode?: "suggest" | "autoCreateAndMatch";
9023
+ /** @enum {string} */
9024
+ matchMode?: "all" | "any";
9025
+ conditions?: ({
9026
+ /** @constant */
9027
+ type: "description";
9028
+ /** @enum {string} */
9029
+ operator: "contains" | "equals" | "startsWith";
9030
+ value: string;
9031
+ } | {
9032
+ /** @constant */
9033
+ type: "amount";
9034
+ /** @enum {string} */
9035
+ operator: ">" | ">=" | "=" | "<" | "<=";
9036
+ centValue: number;
9037
+ })[] | null;
8945
9038
  descriptionOperator?: ("contains" | "equals" | "startsWith") | null;
8946
9039
  descriptionValue?: string | null;
8947
9040
  amountMinCent?: number | null;
8948
9041
  amountMaxCent?: number | null;
8949
9042
  descriptionOverride?: string | null;
9043
+ /** @description Accrual date override for expense bank rules: post on the prior month end instead of the bank record date */
8950
9044
  usePriorMonthEnd?: boolean;
8951
9045
  vendorContactId?: string | null;
8952
9046
  accountIds?: string[] | null;
@@ -8991,11 +9085,27 @@ export interface operations {
8991
9085
  transactionType: "deposit" | "expense";
8992
9086
  /** @enum {string} */
8993
9087
  mode: "suggest" | "autoCreateAndMatch";
9088
+ /** @enum {string} */
9089
+ matchMode: "all" | "any";
9090
+ conditions: ({
9091
+ /** @constant */
9092
+ type: "description";
9093
+ /** @enum {string} */
9094
+ operator: "contains" | "equals" | "startsWith";
9095
+ value: string;
9096
+ } | {
9097
+ /** @constant */
9098
+ type: "amount";
9099
+ /** @enum {string} */
9100
+ operator: ">" | ">=" | "=" | "<" | "<=";
9101
+ centValue: number;
9102
+ })[];
8994
9103
  descriptionOperator?: ("contains" | "equals" | "startsWith") | null;
8995
9104
  descriptionValue?: string | null;
8996
9105
  amountMinCent?: number | null;
8997
9106
  amountMaxCent?: number | null;
8998
9107
  descriptionOverride?: string | null;
9108
+ /** @description Accrual date override for expense bank rules: post on the prior month end instead of the bank record date */
8999
9109
  usePriorMonthEnd: boolean;
9000
9110
  version: number;
9001
9111
  vendorContact?: {
@@ -24131,8 +24241,6 @@ export interface operations {
24131
24241
  search?: string;
24132
24242
  date?: string;
24133
24243
  amount?: string;
24134
- /** @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`). */
24135
- isDateRangeEndInclusive?: boolean;
24136
24244
  /** @description comma separated reservation ids */
24137
24245
  reservationIds?: string;
24138
24246
  /** @description comma separated transaction ids */
@@ -24393,8 +24501,6 @@ export interface operations {
24393
24501
  search?: string;
24394
24502
  date?: string;
24395
24503
  amount?: string;
24396
- /** @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`). */
24397
- isDateRangeEndInclusive?: boolean;
24398
24504
  /** @description comma separated reservation ids */
24399
24505
  reservationIds?: string;
24400
24506
  /** @description comma separated transaction ids */