@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.
|
@@ -8125,11 +8125,27 @@ 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;
|
|
8131
8146
|
amountMaxCent?: number | null;
|
|
8132
8147
|
descriptionOverride?: string | null;
|
|
8148
|
+
/** @description Accrual date override for expense bank rules: post on the prior month end instead of the bank record date */
|
|
8133
8149
|
usePriorMonthEnd: boolean;
|
|
8134
8150
|
version: number;
|
|
8135
8151
|
vendorContact?: {
|
|
@@ -8315,11 +8331,26 @@ export interface operations {
|
|
|
8315
8331
|
/** @enum {string} */
|
|
8316
8332
|
transactionType: "deposit" | "expense";
|
|
8317
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;
|
|
8318
8348
|
descriptionOperator?: ("contains" | "equals" | "startsWith") | null;
|
|
8319
8349
|
descriptionValue?: string | null;
|
|
8320
8350
|
amountMinCent?: number | null;
|
|
8321
8351
|
amountMaxCent?: number | null;
|
|
8322
8352
|
descriptionOverride?: string | null;
|
|
8353
|
+
/** @description Accrual date override for expense bank rules: post on the prior month end instead of the bank record date */
|
|
8323
8354
|
usePriorMonthEnd?: boolean | null;
|
|
8324
8355
|
vendorContactId?: string | null;
|
|
8325
8356
|
accountIds?: string[] | null;
|
|
@@ -8364,11 +8395,27 @@ export interface operations {
|
|
|
8364
8395
|
transactionType: "deposit" | "expense";
|
|
8365
8396
|
/** @enum {string} */
|
|
8366
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
|
+
})[];
|
|
8367
8413
|
descriptionOperator?: ("contains" | "equals" | "startsWith") | null;
|
|
8368
8414
|
descriptionValue?: string | null;
|
|
8369
8415
|
amountMinCent?: number | null;
|
|
8370
8416
|
amountMaxCent?: number | null;
|
|
8371
8417
|
descriptionOverride?: string | null;
|
|
8418
|
+
/** @description Accrual date override for expense bank rules: post on the prior month end instead of the bank record date */
|
|
8372
8419
|
usePriorMonthEnd: boolean;
|
|
8373
8420
|
version: number;
|
|
8374
8421
|
vendorContact?: {
|
|
@@ -8544,11 +8591,26 @@ export interface operations {
|
|
|
8544
8591
|
/** @enum {string} */
|
|
8545
8592
|
transactionType: "deposit" | "expense";
|
|
8546
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;
|
|
8547
8608
|
descriptionOperator?: ("contains" | "equals" | "startsWith") | null;
|
|
8548
8609
|
descriptionValue?: string | null;
|
|
8549
8610
|
amountMinCent?: number | null;
|
|
8550
8611
|
amountMaxCent?: number | null;
|
|
8551
8612
|
descriptionOverride?: string | null;
|
|
8613
|
+
/** @description Accrual date override for expense bank rules: post on the prior month end instead of the bank record date */
|
|
8552
8614
|
usePriorMonthEnd?: boolean | null;
|
|
8553
8615
|
vendorContactId?: string | null;
|
|
8554
8616
|
accountIds?: string[] | null;
|
|
@@ -8758,11 +8820,27 @@ export interface operations {
|
|
|
8758
8820
|
transactionType: "deposit" | "expense";
|
|
8759
8821
|
/** @enum {string} */
|
|
8760
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
|
+
})[];
|
|
8761
8838
|
descriptionOperator?: ("contains" | "equals" | "startsWith") | null;
|
|
8762
8839
|
descriptionValue?: string | null;
|
|
8763
8840
|
amountMinCent?: number | null;
|
|
8764
8841
|
amountMaxCent?: number | null;
|
|
8765
8842
|
descriptionOverride?: string | null;
|
|
8843
|
+
/** @description Accrual date override for expense bank rules: post on the prior month end instead of the bank record date */
|
|
8766
8844
|
usePriorMonthEnd: boolean;
|
|
8767
8845
|
version: number;
|
|
8768
8846
|
vendorContact?: {
|
|
@@ -8941,11 +9019,27 @@ export interface operations {
|
|
|
8941
9019
|
transactionType?: "deposit" | "expense";
|
|
8942
9020
|
/** @enum {string} */
|
|
8943
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;
|
|
8944
9037
|
descriptionOperator?: ("contains" | "equals" | "startsWith") | null;
|
|
8945
9038
|
descriptionValue?: string | null;
|
|
8946
9039
|
amountMinCent?: number | null;
|
|
8947
9040
|
amountMaxCent?: number | null;
|
|
8948
9041
|
descriptionOverride?: string | null;
|
|
9042
|
+
/** @description Accrual date override for expense bank rules: post on the prior month end instead of the bank record date */
|
|
8949
9043
|
usePriorMonthEnd?: boolean;
|
|
8950
9044
|
vendorContactId?: string | null;
|
|
8951
9045
|
accountIds?: string[] | null;
|
|
@@ -8990,11 +9084,27 @@ export interface operations {
|
|
|
8990
9084
|
transactionType: "deposit" | "expense";
|
|
8991
9085
|
/** @enum {string} */
|
|
8992
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
|
+
})[];
|
|
8993
9102
|
descriptionOperator?: ("contains" | "equals" | "startsWith") | null;
|
|
8994
9103
|
descriptionValue?: string | null;
|
|
8995
9104
|
amountMinCent?: number | null;
|
|
8996
9105
|
amountMaxCent?: number | null;
|
|
8997
9106
|
descriptionOverride?: string | null;
|
|
9107
|
+
/** @description Accrual date override for expense bank rules: post on the prior month end instead of the bank record date */
|
|
8998
9108
|
usePriorMonthEnd: boolean;
|
|
8999
9109
|
version: number;
|
|
9000
9110
|
vendorContact?: {
|
|
@@ -24130,8 +24240,6 @@ export interface operations {
|
|
|
24130
24240
|
search?: string;
|
|
24131
24241
|
date?: string;
|
|
24132
24242
|
amount?: string;
|
|
24133
|
-
/** @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`). */
|
|
24134
|
-
isDateRangeEndInclusive?: boolean;
|
|
24135
24243
|
/** @description comma separated reservation ids */
|
|
24136
24244
|
reservationIds?: string;
|
|
24137
24245
|
/** @description comma separated transaction ids */
|
|
@@ -24392,8 +24500,6 @@ export interface operations {
|
|
|
24392
24500
|
search?: string;
|
|
24393
24501
|
date?: string;
|
|
24394
24502
|
amount?: string;
|
|
24395
|
-
/** @description Whether the end date in `dateRange` or `paidAtRange` is treated as inclusive (`true`) or exclusive (`false`). */
|
|
24396
|
-
isDateRangeEndInclusive?: boolean;
|
|
24397
24503
|
/** @description comma separated reservation ids */
|
|
24398
24504
|
reservationIds?: string;
|
|
24399
24505
|
/** @description comma separated transaction ids */
|