@vrplatform/api 1.3.1-stage.6173 → 1.3.1-stage.6180
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.
|
@@ -996,7 +996,7 @@ export interface paths {
|
|
|
996
996
|
get?: never;
|
|
997
997
|
put?: never;
|
|
998
998
|
/**
|
|
999
|
-
* @description Import a CSV after validating its importer against canonical app capabilities
|
|
999
|
+
* @description Import a CSV after validating its importer against canonical app capabilities. Mapped bank records require the reviewed preview, upload, and bank account; confirmation is rejected if the account beginning-balance date changed after preview.
|
|
1000
1000
|
*
|
|
1001
1001
|
* Required scope: integrations:import
|
|
1002
1002
|
*/
|
|
@@ -1017,7 +1017,7 @@ export interface paths {
|
|
|
1017
1017
|
get?: never;
|
|
1018
1018
|
put?: never;
|
|
1019
1019
|
/**
|
|
1020
|
-
* @description Start a bank-record CSV preview from this Connection's upload reference
|
|
1020
|
+
* @description Start a bank-record CSV preview for a tenant-scoped bank account from this Connection's upload reference. Rows before the account's beginning-balance date are returned as system exclusions.
|
|
1021
1021
|
*
|
|
1022
1022
|
* Required scope: integrations:import
|
|
1023
1023
|
*/
|
|
@@ -25767,6 +25767,10 @@ export interface operations {
|
|
|
25767
25767
|
fileUri?: string;
|
|
25768
25768
|
fileName?: string;
|
|
25769
25769
|
uploadRef?: string;
|
|
25770
|
+
/** Format: uuid */
|
|
25771
|
+
accountId?: string;
|
|
25772
|
+
/** Format: uuid */
|
|
25773
|
+
previewId?: string;
|
|
25770
25774
|
uniqueRef: string;
|
|
25771
25775
|
params?: {
|
|
25772
25776
|
[key: string]: unknown;
|
|
@@ -26071,6 +26075,8 @@ export interface operations {
|
|
|
26071
26075
|
requestBody?: {
|
|
26072
26076
|
content: {
|
|
26073
26077
|
"application/json": {
|
|
26078
|
+
/** Format: uuid */
|
|
26079
|
+
accountId: string;
|
|
26074
26080
|
uploadRef: string;
|
|
26075
26081
|
mapping?: {
|
|
26076
26082
|
/** @constant */
|
|
@@ -26177,7 +26183,13 @@ export interface operations {
|
|
|
26177
26183
|
Description: string;
|
|
26178
26184
|
Amount: number;
|
|
26179
26185
|
} | null;
|
|
26186
|
+
systemExclusion?: {
|
|
26187
|
+
/** @constant */
|
|
26188
|
+
code: "beforeBankRecordStartDate";
|
|
26189
|
+
bankRecordStartDate: string;
|
|
26190
|
+
};
|
|
26180
26191
|
}[];
|
|
26192
|
+
sampleRowsTruncated: boolean;
|
|
26181
26193
|
sourceHash: string;
|
|
26182
26194
|
totals: {
|
|
26183
26195
|
rows: number;
|
|
@@ -26513,7 +26525,13 @@ export interface operations {
|
|
|
26513
26525
|
Description: string;
|
|
26514
26526
|
Amount: number;
|
|
26515
26527
|
} | null;
|
|
26528
|
+
systemExclusion?: {
|
|
26529
|
+
/** @constant */
|
|
26530
|
+
code: "beforeBankRecordStartDate";
|
|
26531
|
+
bankRecordStartDate: string;
|
|
26532
|
+
};
|
|
26516
26533
|
}[];
|
|
26534
|
+
sampleRowsTruncated: boolean;
|
|
26517
26535
|
sourceHash: string;
|
|
26518
26536
|
totals: {
|
|
26519
26537
|
rows: number;
|