@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.
|
@@ -8125,6 +8125,21 @@ export interface operations {
|
|
|
8125
8125
|
transactionType: "deposit" | "expense";
|
|
8126
8126
|
/** @enum {string} */
|
|
8127
8127
|
mode: "suggest" | "autoCreateAndMatch";
|
|
8128
|
+
/** @enum {string} */
|
|
8129
|
+
matchMode: "all" | "any";
|
|
8130
|
+
conditions: ({
|
|
8131
|
+
/** @constant */
|
|
8132
|
+
type: "description";
|
|
8133
|
+
/** @enum {string} */
|
|
8134
|
+
operator: "contains" | "equals" | "startsWith";
|
|
8135
|
+
value: string;
|
|
8136
|
+
} | {
|
|
8137
|
+
/** @constant */
|
|
8138
|
+
type: "amount";
|
|
8139
|
+
/** @enum {string} */
|
|
8140
|
+
operator: ">" | ">=" | "=" | "<" | "<=";
|
|
8141
|
+
centValue: number;
|
|
8142
|
+
})[];
|
|
8128
8143
|
descriptionOperator?: ("contains" | "equals" | "startsWith") | null;
|
|
8129
8144
|
descriptionValue?: string | null;
|
|
8130
8145
|
amountMinCent?: number | null;
|
|
@@ -8316,6 +8331,20 @@ export interface operations {
|
|
|
8316
8331
|
/** @enum {string} */
|
|
8317
8332
|
transactionType: "deposit" | "expense";
|
|
8318
8333
|
mode?: ("suggest" | "autoCreateAndMatch") | null;
|
|
8334
|
+
matchMode?: ("all" | "any") | null;
|
|
8335
|
+
conditions?: ({
|
|
8336
|
+
/** @constant */
|
|
8337
|
+
type: "description";
|
|
8338
|
+
/** @enum {string} */
|
|
8339
|
+
operator: "contains" | "equals" | "startsWith";
|
|
8340
|
+
value: string;
|
|
8341
|
+
} | {
|
|
8342
|
+
/** @constant */
|
|
8343
|
+
type: "amount";
|
|
8344
|
+
/** @enum {string} */
|
|
8345
|
+
operator: ">" | ">=" | "=" | "<" | "<=";
|
|
8346
|
+
centValue: number;
|
|
8347
|
+
})[] | null;
|
|
8319
8348
|
descriptionOperator?: ("contains" | "equals" | "startsWith") | null;
|
|
8320
8349
|
descriptionValue?: string | null;
|
|
8321
8350
|
amountMinCent?: number | null;
|
|
@@ -8366,6 +8395,21 @@ export interface operations {
|
|
|
8366
8395
|
transactionType: "deposit" | "expense";
|
|
8367
8396
|
/** @enum {string} */
|
|
8368
8397
|
mode: "suggest" | "autoCreateAndMatch";
|
|
8398
|
+
/** @enum {string} */
|
|
8399
|
+
matchMode: "all" | "any";
|
|
8400
|
+
conditions: ({
|
|
8401
|
+
/** @constant */
|
|
8402
|
+
type: "description";
|
|
8403
|
+
/** @enum {string} */
|
|
8404
|
+
operator: "contains" | "equals" | "startsWith";
|
|
8405
|
+
value: string;
|
|
8406
|
+
} | {
|
|
8407
|
+
/** @constant */
|
|
8408
|
+
type: "amount";
|
|
8409
|
+
/** @enum {string} */
|
|
8410
|
+
operator: ">" | ">=" | "=" | "<" | "<=";
|
|
8411
|
+
centValue: number;
|
|
8412
|
+
})[];
|
|
8369
8413
|
descriptionOperator?: ("contains" | "equals" | "startsWith") | null;
|
|
8370
8414
|
descriptionValue?: string | null;
|
|
8371
8415
|
amountMinCent?: number | null;
|
|
@@ -8547,6 +8591,20 @@ export interface operations {
|
|
|
8547
8591
|
/** @enum {string} */
|
|
8548
8592
|
transactionType: "deposit" | "expense";
|
|
8549
8593
|
mode?: ("suggest" | "autoCreateAndMatch") | null;
|
|
8594
|
+
matchMode?: ("all" | "any") | null;
|
|
8595
|
+
conditions?: ({
|
|
8596
|
+
/** @constant */
|
|
8597
|
+
type: "description";
|
|
8598
|
+
/** @enum {string} */
|
|
8599
|
+
operator: "contains" | "equals" | "startsWith";
|
|
8600
|
+
value: string;
|
|
8601
|
+
} | {
|
|
8602
|
+
/** @constant */
|
|
8603
|
+
type: "amount";
|
|
8604
|
+
/** @enum {string} */
|
|
8605
|
+
operator: ">" | ">=" | "=" | "<" | "<=";
|
|
8606
|
+
centValue: number;
|
|
8607
|
+
})[] | null;
|
|
8550
8608
|
descriptionOperator?: ("contains" | "equals" | "startsWith") | null;
|
|
8551
8609
|
descriptionValue?: string | null;
|
|
8552
8610
|
amountMinCent?: number | null;
|
|
@@ -8762,6 +8820,21 @@ export interface operations {
|
|
|
8762
8820
|
transactionType: "deposit" | "expense";
|
|
8763
8821
|
/** @enum {string} */
|
|
8764
8822
|
mode: "suggest" | "autoCreateAndMatch";
|
|
8823
|
+
/** @enum {string} */
|
|
8824
|
+
matchMode: "all" | "any";
|
|
8825
|
+
conditions: ({
|
|
8826
|
+
/** @constant */
|
|
8827
|
+
type: "description";
|
|
8828
|
+
/** @enum {string} */
|
|
8829
|
+
operator: "contains" | "equals" | "startsWith";
|
|
8830
|
+
value: string;
|
|
8831
|
+
} | {
|
|
8832
|
+
/** @constant */
|
|
8833
|
+
type: "amount";
|
|
8834
|
+
/** @enum {string} */
|
|
8835
|
+
operator: ">" | ">=" | "=" | "<" | "<=";
|
|
8836
|
+
centValue: number;
|
|
8837
|
+
})[];
|
|
8765
8838
|
descriptionOperator?: ("contains" | "equals" | "startsWith") | null;
|
|
8766
8839
|
descriptionValue?: string | null;
|
|
8767
8840
|
amountMinCent?: number | null;
|
|
@@ -8946,6 +9019,21 @@ export interface operations {
|
|
|
8946
9019
|
transactionType?: "deposit" | "expense";
|
|
8947
9020
|
/** @enum {string} */
|
|
8948
9021
|
mode?: "suggest" | "autoCreateAndMatch";
|
|
9022
|
+
/** @enum {string} */
|
|
9023
|
+
matchMode?: "all" | "any";
|
|
9024
|
+
conditions?: ({
|
|
9025
|
+
/** @constant */
|
|
9026
|
+
type: "description";
|
|
9027
|
+
/** @enum {string} */
|
|
9028
|
+
operator: "contains" | "equals" | "startsWith";
|
|
9029
|
+
value: string;
|
|
9030
|
+
} | {
|
|
9031
|
+
/** @constant */
|
|
9032
|
+
type: "amount";
|
|
9033
|
+
/** @enum {string} */
|
|
9034
|
+
operator: ">" | ">=" | "=" | "<" | "<=";
|
|
9035
|
+
centValue: number;
|
|
9036
|
+
})[] | null;
|
|
8949
9037
|
descriptionOperator?: ("contains" | "equals" | "startsWith") | null;
|
|
8950
9038
|
descriptionValue?: string | null;
|
|
8951
9039
|
amountMinCent?: number | null;
|
|
@@ -8996,6 +9084,21 @@ export interface operations {
|
|
|
8996
9084
|
transactionType: "deposit" | "expense";
|
|
8997
9085
|
/** @enum {string} */
|
|
8998
9086
|
mode: "suggest" | "autoCreateAndMatch";
|
|
9087
|
+
/** @enum {string} */
|
|
9088
|
+
matchMode: "all" | "any";
|
|
9089
|
+
conditions: ({
|
|
9090
|
+
/** @constant */
|
|
9091
|
+
type: "description";
|
|
9092
|
+
/** @enum {string} */
|
|
9093
|
+
operator: "contains" | "equals" | "startsWith";
|
|
9094
|
+
value: string;
|
|
9095
|
+
} | {
|
|
9096
|
+
/** @constant */
|
|
9097
|
+
type: "amount";
|
|
9098
|
+
/** @enum {string} */
|
|
9099
|
+
operator: ">" | ">=" | "=" | "<" | "<=";
|
|
9100
|
+
centValue: number;
|
|
9101
|
+
})[];
|
|
8999
9102
|
descriptionOperator?: ("contains" | "equals" | "startsWith") | null;
|
|
9000
9103
|
descriptionValue?: string | null;
|
|
9001
9104
|
amountMinCent?: number | null;
|
|
@@ -24137,8 +24240,6 @@ export interface operations {
|
|
|
24137
24240
|
search?: string;
|
|
24138
24241
|
date?: string;
|
|
24139
24242
|
amount?: string;
|
|
24140
|
-
/** @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`). */
|
|
24141
|
-
isDateRangeEndInclusive?: boolean;
|
|
24142
24243
|
/** @description comma separated reservation ids */
|
|
24143
24244
|
reservationIds?: string;
|
|
24144
24245
|
/** @description comma separated transaction ids */
|
|
@@ -24399,8 +24500,6 @@ export interface operations {
|
|
|
24399
24500
|
search?: string;
|
|
24400
24501
|
date?: string;
|
|
24401
24502
|
amount?: string;
|
|
24402
|
-
/** @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`). */
|
|
24403
|
-
isDateRangeEndInclusive?: boolean;
|
|
24404
24503
|
/** @description comma separated reservation ids */
|
|
24405
24504
|
reservationIds?: string;
|
|
24406
24505
|
/** @description comma separated transaction ids */
|