@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.
package/package.json
CHANGED
package/src/generated/v1.ts
CHANGED
|
@@ -997,7 +997,7 @@ export interface paths {
|
|
|
997
997
|
get?: never;
|
|
998
998
|
put?: never;
|
|
999
999
|
/**
|
|
1000
|
-
* @description Import a CSV after validating its importer against canonical app capabilities
|
|
1000
|
+
* @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.
|
|
1001
1001
|
*
|
|
1002
1002
|
* Required scope: integrations:import
|
|
1003
1003
|
*/
|
|
@@ -1018,7 +1018,7 @@ export interface paths {
|
|
|
1018
1018
|
get?: never;
|
|
1019
1019
|
put?: never;
|
|
1020
1020
|
/**
|
|
1021
|
-
* @description Start a bank-record CSV preview from this Connection's upload reference
|
|
1021
|
+
* @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.
|
|
1022
1022
|
*
|
|
1023
1023
|
* Required scope: integrations:import
|
|
1024
1024
|
*/
|
|
@@ -25768,6 +25768,10 @@ export interface operations {
|
|
|
25768
25768
|
fileUri?: string;
|
|
25769
25769
|
fileName?: string;
|
|
25770
25770
|
uploadRef?: string;
|
|
25771
|
+
/** Format: uuid */
|
|
25772
|
+
accountId?: string;
|
|
25773
|
+
/** Format: uuid */
|
|
25774
|
+
previewId?: string;
|
|
25771
25775
|
uniqueRef: string;
|
|
25772
25776
|
params?: {
|
|
25773
25777
|
[key: string]: unknown;
|
|
@@ -26072,6 +26076,8 @@ export interface operations {
|
|
|
26072
26076
|
requestBody?: {
|
|
26073
26077
|
content: {
|
|
26074
26078
|
"application/json": {
|
|
26079
|
+
/** Format: uuid */
|
|
26080
|
+
accountId: string;
|
|
26075
26081
|
uploadRef: string;
|
|
26076
26082
|
mapping?: {
|
|
26077
26083
|
/** @constant */
|
|
@@ -26178,7 +26184,13 @@ export interface operations {
|
|
|
26178
26184
|
Description: string;
|
|
26179
26185
|
Amount: number;
|
|
26180
26186
|
} | null;
|
|
26187
|
+
systemExclusion?: {
|
|
26188
|
+
/** @constant */
|
|
26189
|
+
code: "beforeBankRecordStartDate";
|
|
26190
|
+
bankRecordStartDate: string;
|
|
26191
|
+
};
|
|
26181
26192
|
}[];
|
|
26193
|
+
sampleRowsTruncated: boolean;
|
|
26182
26194
|
sourceHash: string;
|
|
26183
26195
|
totals: {
|
|
26184
26196
|
rows: number;
|
|
@@ -26514,7 +26526,13 @@ export interface operations {
|
|
|
26514
26526
|
Description: string;
|
|
26515
26527
|
Amount: number;
|
|
26516
26528
|
} | null;
|
|
26529
|
+
systemExclusion?: {
|
|
26530
|
+
/** @constant */
|
|
26531
|
+
code: "beforeBankRecordStartDate";
|
|
26532
|
+
bankRecordStartDate: string;
|
|
26533
|
+
};
|
|
26517
26534
|
}[];
|
|
26535
|
+
sampleRowsTruncated: boolean;
|
|
26518
26536
|
sourceHash: string;
|
|
26519
26537
|
totals: {
|
|
26520
26538
|
rows: number;
|