@vrplatform/api 1.3.1-stage.2168 → 1.3.1-stage.2170

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.2168",
6
+ "version": "1.3.1-stage.2170",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -8126,6 +8126,21 @@ 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;
@@ -8317,6 +8332,20 @@ export interface operations {
8317
8332
  /** @enum {string} */
8318
8333
  transactionType: "deposit" | "expense";
8319
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;
8320
8349
  descriptionOperator?: ("contains" | "equals" | "startsWith") | null;
8321
8350
  descriptionValue?: string | null;
8322
8351
  amountMinCent?: number | null;
@@ -8367,6 +8396,21 @@ export interface operations {
8367
8396
  transactionType: "deposit" | "expense";
8368
8397
  /** @enum {string} */
8369
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
+ })[];
8370
8414
  descriptionOperator?: ("contains" | "equals" | "startsWith") | null;
8371
8415
  descriptionValue?: string | null;
8372
8416
  amountMinCent?: number | null;
@@ -8548,6 +8592,20 @@ export interface operations {
8548
8592
  /** @enum {string} */
8549
8593
  transactionType: "deposit" | "expense";
8550
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;
8551
8609
  descriptionOperator?: ("contains" | "equals" | "startsWith") | null;
8552
8610
  descriptionValue?: string | null;
8553
8611
  amountMinCent?: number | null;
@@ -8763,6 +8821,21 @@ export interface operations {
8763
8821
  transactionType: "deposit" | "expense";
8764
8822
  /** @enum {string} */
8765
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
+ })[];
8766
8839
  descriptionOperator?: ("contains" | "equals" | "startsWith") | null;
8767
8840
  descriptionValue?: string | null;
8768
8841
  amountMinCent?: number | null;
@@ -8947,6 +9020,21 @@ export interface operations {
8947
9020
  transactionType?: "deposit" | "expense";
8948
9021
  /** @enum {string} */
8949
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;
8950
9038
  descriptionOperator?: ("contains" | "equals" | "startsWith") | null;
8951
9039
  descriptionValue?: string | null;
8952
9040
  amountMinCent?: number | null;
@@ -8997,6 +9085,21 @@ export interface operations {
8997
9085
  transactionType: "deposit" | "expense";
8998
9086
  /** @enum {string} */
8999
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
+ })[];
9000
9103
  descriptionOperator?: ("contains" | "equals" | "startsWith") | null;
9001
9104
  descriptionValue?: string | null;
9002
9105
  amountMinCent?: number | null;
@@ -24138,8 +24241,6 @@ export interface operations {
24138
24241
  search?: string;
24139
24242
  date?: string;
24140
24243
  amount?: string;
24141
- /** @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`). */
24142
- isDateRangeEndInclusive?: boolean;
24143
24244
  /** @description comma separated reservation ids */
24144
24245
  reservationIds?: string;
24145
24246
  /** @description comma separated transaction ids */
@@ -24400,8 +24501,6 @@ export interface operations {
24400
24501
  search?: string;
24401
24502
  date?: string;
24402
24503
  amount?: string;
24403
- /** @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`). */
24404
- isDateRangeEndInclusive?: boolean;
24405
24504
  /** @description comma separated reservation ids */
24406
24505
  reservationIds?: string;
24407
24506
  /** @description comma separated transaction ids */