@vrplatform/api 1.3.1-6238 → 1.3.1-6253
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/build/main/generated/v1.d.ts +1025 -199
- package/build/main/generated/v1.js.map +1 -1
- package/build/module/generated/v1.d.ts +1025 -199
- package/build/module/generated/v1.js.map +1 -1
- package/package.json +1 -1
- package/src/generated/v1.ts +1025 -199
package/src/generated/v1.ts
CHANGED
|
@@ -819,7 +819,7 @@ export interface paths {
|
|
|
819
819
|
get?: never;
|
|
820
820
|
put?: never;
|
|
821
821
|
/**
|
|
822
|
-
* @description Connect an app and create the connection. OAuth defaults to https://portal.vrplatform.app/callback/ when redirectTo is omitted.
|
|
822
|
+
* @description Connect an app and create the connection. OAuth defaults to https://portal.vrplatform.app/callback/ when redirectTo is omitted. Legacy production /callback is normalized to /callback/, and legacy staging /callback to /connections/oauth-callback. Provider integrations must return stable account identity. The built-in API app receives server-generated connection identity. PMS connections queue durable reservation line-mapping initialization. Hostaway webhook reconciliation runs after credentials are stored. Ramp connections activate and run chart-of-accounts synchronization when autoExtract is enabled. Provider tasks may take up to 25 seconds. Tasks that exceed the limit return ERROR_TIMEOUT.
|
|
823
823
|
*
|
|
824
824
|
* Required scope: integrations:write
|
|
825
825
|
*/
|
|
@@ -861,7 +861,7 @@ export interface paths {
|
|
|
861
861
|
get?: never;
|
|
862
862
|
put?: never;
|
|
863
863
|
/**
|
|
864
|
-
* @description Get a redirect URL to connect an app through OAuth2.0. Defaults to https://portal.vrplatform.app/callback/ when redirectTo is omitted. Normalizes
|
|
864
|
+
* @description Get a redirect URL to connect an app through OAuth2.0. Defaults to https://portal.vrplatform.app/callback/ when redirectTo is omitted. Normalizes legacy production /callback to /callback/ and legacy staging /callback to /connections/oauth-callback.
|
|
865
865
|
*
|
|
866
866
|
* Required scope: integrations:write
|
|
867
867
|
*/
|
|
@@ -976,7 +976,7 @@ export interface paths {
|
|
|
976
976
|
get?: never;
|
|
977
977
|
put?: never;
|
|
978
978
|
/**
|
|
979
|
-
* @description Reconnect an existing app connection. OAuth defaults to https://portal.vrplatform.app/callback/ when redirectTo is omitted.
|
|
979
|
+
* @description Reconnect an existing app connection. OAuth defaults to https://portal.vrplatform.app/callback/ when redirectTo is omitted. Legacy production /callback is normalized to /callback/, and legacy staging /callback to /connections/oauth-callback. The built-in API app preserves its existing server-generated identity. Provider identities owned by another connection are rejected before mutation. PMS reconnections queue durable reservation line-mapping initialization. Hostaway webhook reconciliation runs after credentials are stored. Ramp reconnections run chart-of-accounts synchronization unless that flow is explicitly inactive. Provider tasks may take up to 25 seconds. Tasks that exceed the limit return ERROR_TIMEOUT.
|
|
980
980
|
*
|
|
981
981
|
* Required scope: integrations:write
|
|
982
982
|
*/
|
|
@@ -1060,7 +1060,7 @@ export interface paths {
|
|
|
1060
1060
|
get?: never;
|
|
1061
1061
|
put?: never;
|
|
1062
1062
|
/**
|
|
1063
|
-
* @description Create a size-bound CSV upload reference and raw PUT URL for this Connection
|
|
1063
|
+
* @description Create a 24-hour, size-bound CSV upload reference and regional raw PUT URL for this Connection for a file up to 100,000,000 bytes. PUT the original file with Content-Type text/csv (optional parameters are accepted) and Content-Length. Completed retries are idempotent.
|
|
1064
1064
|
*
|
|
1065
1065
|
* Required scope: integrations:import
|
|
1066
1066
|
*/
|
|
@@ -1080,7 +1080,7 @@ export interface paths {
|
|
|
1080
1080
|
};
|
|
1081
1081
|
get?: never;
|
|
1082
1082
|
/**
|
|
1083
|
-
* @description Stream the complete CSV body into regional storage using an issued upload reference
|
|
1083
|
+
* @description Stream the complete raw CSV body into regional storage using an issued upload reference. Content-Type must be text/csv (optional parameters are accepted), Content-Length is required, and the stored byte size must exactly match the create-upload request. A completed retry does not overwrite the stored object.
|
|
1084
1084
|
*
|
|
1085
1085
|
* Required scope: integrations:import
|
|
1086
1086
|
*/
|
|
@@ -1385,6 +1385,27 @@ export interface paths {
|
|
|
1385
1385
|
patch?: never;
|
|
1386
1386
|
trace?: never;
|
|
1387
1387
|
};
|
|
1388
|
+
"/email-templates/test": {
|
|
1389
|
+
parameters: {
|
|
1390
|
+
query?: never;
|
|
1391
|
+
header?: never;
|
|
1392
|
+
path?: never;
|
|
1393
|
+
cookie?: never;
|
|
1394
|
+
};
|
|
1395
|
+
get?: never;
|
|
1396
|
+
put?: never;
|
|
1397
|
+
/**
|
|
1398
|
+
* @description Send unsaved email-template content to the authenticated user's email address through the API Trigger project. The recipient cannot be supplied by the caller.
|
|
1399
|
+
*
|
|
1400
|
+
* Required scope: team-settings:write
|
|
1401
|
+
*/
|
|
1402
|
+
post: operations["sendTestEmail"];
|
|
1403
|
+
delete?: never;
|
|
1404
|
+
options?: never;
|
|
1405
|
+
head?: never;
|
|
1406
|
+
patch?: never;
|
|
1407
|
+
trace?: never;
|
|
1408
|
+
};
|
|
1388
1409
|
"/email-templates/{type}": {
|
|
1389
1410
|
parameters: {
|
|
1390
1411
|
query?: never;
|
|
@@ -1455,7 +1476,7 @@ export interface paths {
|
|
|
1455
1476
|
get: operations["getFiles"];
|
|
1456
1477
|
put?: never;
|
|
1457
1478
|
/**
|
|
1458
|
-
* @description
|
|
1479
|
+
* @description Create a size-bound upload reference and authenticated regional raw PUT URL for a GL user file up to 100,000,000 bytes. Send filename, contentType, fileSize, and optional type (userUpload or historicalData or historicalOwnerStatement or ownerStatementExample or listingOwnerAssignment or listingFeeAssignment), optional startDate, optional endDate, and optional contactId. Type defaults to userUpload. PUT the unmodified file body to uploadUrl with the declared Content-Type and Content-Length, then use fileId for the created file. Retrying the same completed upload is idempotent.
|
|
1459
1480
|
*
|
|
1460
1481
|
* Required scope: files:write
|
|
1461
1482
|
*/
|
|
@@ -1466,6 +1487,27 @@ export interface paths {
|
|
|
1466
1487
|
patch?: never;
|
|
1467
1488
|
trace?: never;
|
|
1468
1489
|
};
|
|
1490
|
+
"/files/uploads/{uploadRef}": {
|
|
1491
|
+
parameters: {
|
|
1492
|
+
query?: never;
|
|
1493
|
+
header?: never;
|
|
1494
|
+
path?: never;
|
|
1495
|
+
cookie?: never;
|
|
1496
|
+
};
|
|
1497
|
+
get?: never;
|
|
1498
|
+
/**
|
|
1499
|
+
* @description Stream the complete raw file body into regional team storage using an issued upload reference. Content-Type and the stored byte size must exactly match the create-upload request, and Content-Length is required. The upload reference is single-file, team-scoped, valid for 24 hours, and safe to retry without overwriting a completed object.
|
|
1500
|
+
*
|
|
1501
|
+
* Required scope: files:write
|
|
1502
|
+
*/
|
|
1503
|
+
put: operations["putFilesUploadsByUploadRef"];
|
|
1504
|
+
post?: never;
|
|
1505
|
+
delete?: never;
|
|
1506
|
+
options?: never;
|
|
1507
|
+
head?: never;
|
|
1508
|
+
patch?: never;
|
|
1509
|
+
trace?: never;
|
|
1510
|
+
};
|
|
1469
1511
|
"/files/{id}": {
|
|
1470
1512
|
parameters: {
|
|
1471
1513
|
query?: never;
|
|
@@ -1482,7 +1524,7 @@ export interface paths {
|
|
|
1482
1524
|
put: operations["putFilesById"];
|
|
1483
1525
|
post?: never;
|
|
1484
1526
|
/**
|
|
1485
|
-
* @description Delete GL file
|
|
1527
|
+
* @description Delete a GL file and its TEAM_STORAGE object. A still-valid upload reference cannot recreate it.
|
|
1486
1528
|
*
|
|
1487
1529
|
* Required scope: files:delete
|
|
1488
1530
|
*/
|
|
@@ -4480,7 +4522,7 @@ export interface paths {
|
|
|
4480
4522
|
get: operations["getReservations"];
|
|
4481
4523
|
put?: never;
|
|
4482
4524
|
/**
|
|
4483
|
-
* @description Create a reservation. Financial lines post journal entries inline against the listing ownership period covering the stay, so writes into books-closed or statement-locked months are rejected. Owner API keys cannot create reservations. Supports dryRun. See https://docs.vrplatform.app/guides/build/reservations.
|
|
4525
|
+
* @description Create a reservation. Financial lines post journal entries inline against the listing ownership period covering the stay, so writes into books-closed or statement-locked months are rejected. Creation rejects duplicates by connection and unique reference or by connection, resolved listing, and confirmation code. Owner API keys cannot create reservations. Supports dryRun. See https://docs.vrplatform.app/guides/build/reservations.
|
|
4484
4526
|
*
|
|
4485
4527
|
* Required scope: reservations:write
|
|
4486
4528
|
*/
|
|
@@ -4862,7 +4904,7 @@ export interface paths {
|
|
|
4862
4904
|
get?: never;
|
|
4863
4905
|
put?: never;
|
|
4864
4906
|
/**
|
|
4865
|
-
* @description Import a historic owner statement with journal entries on the historical ledger; re-posting the same uniqueRef replaces the previous import
|
|
4907
|
+
* @description Import a historic owner statement with journal entries on the historical ledger. Lines can link an existing reservation by reservationId or matchReservationConfirmationCode; re-posting the same uniqueRef replaces the previous import.
|
|
4866
4908
|
*
|
|
4867
4909
|
* Required scope: general-ledger:import
|
|
4868
4910
|
*/
|
|
@@ -5716,7 +5758,7 @@ export interface paths {
|
|
|
5716
5758
|
get: operations["getTeams"];
|
|
5717
5759
|
put?: never;
|
|
5718
5760
|
/**
|
|
5719
|
-
* @description Create team. The generic gateway forwards an explicit dataRegion to that regional cell; an omitted region uses the receiving cell. Partner provisioning requires a uniqueRef. An exact repeat of a completed provision fails with 409 and context.existingTeamId identifies the existing team; changed retry payloads fail without it. Fetch that team with GET /teams/lookup instead of creating it again. Retrying a provisioning request that failed before completing is safe. Generated and explicit slugs are checked against the global tenant registry before the regional tenant is written. defaultCurrency must exist in the target region currency catalog; unsupported values return 400 before creation.
|
|
5761
|
+
* @description Create team. The generic gateway forwards an explicit dataRegion to that regional cell; an omitted region uses the receiving cell. Partner provisioning requires a uniqueRef. An exact repeat of a completed provision fails with 409 and context.existingTeamId identifies the existing team; changed retry payloads fail without it. Fetch that team with GET /teams/lookup instead of creating it again. Retrying a provisioning request that failed before completing is safe. Generated and explicit slugs are checked against the global tenant registry before the regional tenant is written. defaultCurrency must exist in the target region currency catalog; unsupported values return 400 before creation. An explicit General Ledger copyFromTeamId must use the target data region; a mismatch returns 400 before either tenant registry is written.
|
|
5720
5762
|
*
|
|
5721
5763
|
* Required scope: teams:provision
|
|
5722
5764
|
*/
|
|
@@ -5805,7 +5847,7 @@ export interface paths {
|
|
|
5805
5847
|
get: operations["getTransactions"];
|
|
5806
5848
|
put?: never;
|
|
5807
5849
|
/**
|
|
5808
|
-
* @description Create a transaction. Journal entries post inline per line; creation into a books-closed month or a statement-locked listing period is rejected. The transaction uniqueRef and every line uniqueRef must be unique; duplicate line references are rejected before anything is inserted. Line party defaults and validity depend on transaction type, owner context, account assignment, and account category. See https://docs.vrplatform.app/guides/build/transactions#decision-table. For expense attachments,
|
|
5850
|
+
* @description Create a transaction. Journal entries post inline per line; creation into a books-closed month or a statement-locked listing period is rejected. The transaction uniqueRef and every line uniqueRef must be unique; duplicate line references are rejected before anything is inserted. Line party defaults and validity depend on transaction type, owner context, account assignment, and account category. See https://docs.vrplatform.app/guides/build/transactions#decision-table. For expense attachments, create an upload with POST /transactions/attachments, PUT the raw file to uploadUrl, then pass the returned attachmentId in attachmentIds. Attachments are only supported for expense transactions.
|
|
5809
5851
|
*
|
|
5810
5852
|
* Required scope: transactions:write
|
|
5811
5853
|
*/
|
|
@@ -5826,7 +5868,7 @@ export interface paths {
|
|
|
5826
5868
|
get?: never;
|
|
5827
5869
|
put?: never;
|
|
5828
5870
|
/**
|
|
5829
|
-
* @description
|
|
5871
|
+
* @description Create a size-bound upload reference and authenticated regional raw PUT URL for an expense attachment up to 100,000,000 bytes. PUT the unmodified file body to uploadUrl with the declared Content-Type and Content-Length. After the PUT succeeds, pass the attachmentId returned here in attachmentIds when creating or updating an expense transaction. Retrying the same completed upload is idempotent.
|
|
5830
5872
|
*
|
|
5831
5873
|
* Required scope: transactions:write
|
|
5832
5874
|
*/
|
|
@@ -5837,6 +5879,27 @@ export interface paths {
|
|
|
5837
5879
|
patch?: never;
|
|
5838
5880
|
trace?: never;
|
|
5839
5881
|
};
|
|
5882
|
+
"/transactions/attachments/uploads/{uploadRef}": {
|
|
5883
|
+
parameters: {
|
|
5884
|
+
query?: never;
|
|
5885
|
+
header?: never;
|
|
5886
|
+
path?: never;
|
|
5887
|
+
cookie?: never;
|
|
5888
|
+
};
|
|
5889
|
+
get?: never;
|
|
5890
|
+
/**
|
|
5891
|
+
* @description Stream the complete raw attachment body into regional storage using an issued upload reference. Content-Type and the stored byte size must exactly match the create-upload request, and Content-Length is required. The upload reference is single-file, team-scoped, valid for 24 hours, and safe to retry without overwriting a completed object.
|
|
5892
|
+
*
|
|
5893
|
+
* Required scope: transactions:write
|
|
5894
|
+
*/
|
|
5895
|
+
put: operations["putTransactionsAttachmentsUploadsByUploadRef"];
|
|
5896
|
+
post?: never;
|
|
5897
|
+
delete?: never;
|
|
5898
|
+
options?: never;
|
|
5899
|
+
head?: never;
|
|
5900
|
+
patch?: never;
|
|
5901
|
+
trace?: never;
|
|
5902
|
+
};
|
|
5840
5903
|
"/transactions/attachments/{id}": {
|
|
5841
5904
|
parameters: {
|
|
5842
5905
|
query?: never;
|
|
@@ -5853,7 +5916,7 @@ export interface paths {
|
|
|
5853
5916
|
put: operations["putTransactionsAttachmentsById"];
|
|
5854
5917
|
post?: never;
|
|
5855
5918
|
/**
|
|
5856
|
-
* @description Delete an expense attachment. This removes staged attachments and attachments already linked to expense transactions.
|
|
5919
|
+
* @description Delete an expense attachment. This removes staged attachments and attachments already linked to expense transactions. A still-valid upload reference cannot recreate it.
|
|
5857
5920
|
*
|
|
5858
5921
|
* Required scope: transactions:delete
|
|
5859
5922
|
*/
|
|
@@ -10037,7 +10100,7 @@ export interface operations {
|
|
|
10037
10100
|
} | null;
|
|
10038
10101
|
} | null;
|
|
10039
10102
|
}[];
|
|
10040
|
-
/** @description Expense attachment IDs returned by POST /transactions/attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
|
|
10103
|
+
/** @description Expense attachment IDs returned as attachmentId by POST /transactions/attachments after PUT to uploadUrl succeeds. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
|
|
10041
10104
|
attachmentIds?: string[] | null;
|
|
10042
10105
|
recurringTemplateId?: string | null;
|
|
10043
10106
|
matchBankAccountLast4?: string | null;
|
|
@@ -16745,7 +16808,7 @@ export interface operations {
|
|
|
16745
16808
|
matchReservationProcessorBookingRef?: string | null;
|
|
16746
16809
|
matchLineTypeClassification?: string | null;
|
|
16747
16810
|
}[];
|
|
16748
|
-
/** @description Expense attachment IDs returned by POST /transactions/attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
|
|
16811
|
+
/** @description Expense attachment IDs returned as attachmentId by POST /transactions/attachments after PUT to uploadUrl succeeds. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
|
|
16749
16812
|
attachmentIds?: string[] | null;
|
|
16750
16813
|
payment?: {
|
|
16751
16814
|
bankRecordIds: string[];
|
|
@@ -17756,7 +17819,7 @@ export interface operations {
|
|
|
17756
17819
|
matchReservationProcessorBookingRef?: string | null;
|
|
17757
17820
|
matchLineTypeClassification?: string | null;
|
|
17758
17821
|
}[];
|
|
17759
|
-
/** @description Expense attachment IDs returned by POST /transactions/attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
|
|
17822
|
+
/** @description Expense attachment IDs returned as attachmentId by POST /transactions/attachments after PUT to uploadUrl succeeds. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
|
|
17760
17823
|
attachmentIds?: string[] | null;
|
|
17761
17824
|
payment?: {
|
|
17762
17825
|
bankRecordIds: string[];
|
|
@@ -19418,7 +19481,7 @@ export interface operations {
|
|
|
19418
19481
|
matchReservationProcessorBookingRef?: string | null;
|
|
19419
19482
|
matchLineTypeClassification?: string | null;
|
|
19420
19483
|
}[];
|
|
19421
|
-
/** @description Expense attachment IDs returned by POST /transactions/attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
|
|
19484
|
+
/** @description Expense attachment IDs returned as attachmentId by POST /transactions/attachments after PUT to uploadUrl succeeds. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
|
|
19422
19485
|
attachmentIds?: string[] | null;
|
|
19423
19486
|
payment?: {
|
|
19424
19487
|
bankRecordIds: string[];
|
|
@@ -20773,7 +20836,7 @@ export interface operations {
|
|
|
20773
20836
|
matchReservationProcessorBookingRef?: string | null;
|
|
20774
20837
|
matchLineTypeClassification?: string | null;
|
|
20775
20838
|
}[];
|
|
20776
|
-
/** @description Expense attachment IDs returned by POST /transactions/attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
|
|
20839
|
+
/** @description Expense attachment IDs returned as attachmentId by POST /transactions/attachments after PUT to uploadUrl succeeds. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
|
|
20777
20840
|
attachmentIds?: string[] | null;
|
|
20778
20841
|
payment?: {
|
|
20779
20842
|
bankRecordIds: string[];
|
|
@@ -32094,30 +32157,19 @@ export interface operations {
|
|
|
32094
32157
|
};
|
|
32095
32158
|
};
|
|
32096
32159
|
};
|
|
32097
|
-
|
|
32160
|
+
sendTestEmail: {
|
|
32098
32161
|
parameters: {
|
|
32099
32162
|
query?: never;
|
|
32100
32163
|
header?: never;
|
|
32101
|
-
path
|
|
32102
|
-
/** @description Email template type to save. */
|
|
32103
|
-
type: "ownerInvite" | "ownerStatementPublished" | "invitePropertyManager";
|
|
32104
|
-
};
|
|
32164
|
+
path?: never;
|
|
32105
32165
|
cookie?: never;
|
|
32106
32166
|
};
|
|
32107
32167
|
requestBody?: {
|
|
32108
32168
|
content: {
|
|
32109
32169
|
"application/json": {
|
|
32110
|
-
|
|
32111
|
-
|
|
32112
|
-
|
|
32113
|
-
shortDescription: string;
|
|
32114
|
-
banner?: string | null;
|
|
32115
|
-
header: string;
|
|
32116
|
-
bodyOne: string;
|
|
32117
|
-
bodyTwo: string;
|
|
32118
|
-
buttonText: string;
|
|
32119
|
-
href?: string | null;
|
|
32120
|
-
};
|
|
32170
|
+
html: string;
|
|
32171
|
+
subject: string;
|
|
32172
|
+
text: string;
|
|
32121
32173
|
};
|
|
32122
32174
|
};
|
|
32123
32175
|
};
|
|
@@ -32129,32 +32181,8 @@ export interface operations {
|
|
|
32129
32181
|
};
|
|
32130
32182
|
content: {
|
|
32131
32183
|
"application/json": {
|
|
32132
|
-
/**
|
|
32133
|
-
|
|
32134
|
-
/** @enum {string} */
|
|
32135
|
-
type: "ownerInvite" | "ownerStatementPublished" | "invitePropertyManager";
|
|
32136
|
-
data: {
|
|
32137
|
-
subject: string;
|
|
32138
|
-
shortDescription: string;
|
|
32139
|
-
banner?: string | null;
|
|
32140
|
-
header: string;
|
|
32141
|
-
bodyOne: string;
|
|
32142
|
-
bodyTwo: string;
|
|
32143
|
-
buttonText: string;
|
|
32144
|
-
href?: string | null;
|
|
32145
|
-
};
|
|
32146
|
-
/**
|
|
32147
|
-
* Format: date-time
|
|
32148
|
-
* @description Timestamp string with date, time, milliseconds, and timezone.
|
|
32149
|
-
* @example 2024-01-15T12:30:00.000+00:00
|
|
32150
|
-
*/
|
|
32151
|
-
createdAt: string;
|
|
32152
|
-
/**
|
|
32153
|
-
* Format: date-time
|
|
32154
|
-
* @description Timestamp string with date, time, milliseconds, and timezone.
|
|
32155
|
-
* @example 2024-01-15T12:30:00.000+00:00
|
|
32156
|
-
*/
|
|
32157
|
-
updatedAt: string;
|
|
32184
|
+
/** @constant */
|
|
32185
|
+
ok: true;
|
|
32158
32186
|
};
|
|
32159
32187
|
};
|
|
32160
32188
|
};
|
|
@@ -32385,18 +32413,30 @@ export interface operations {
|
|
|
32385
32413
|
};
|
|
32386
32414
|
};
|
|
32387
32415
|
};
|
|
32388
|
-
|
|
32416
|
+
upsertEmailTemplate: {
|
|
32389
32417
|
parameters: {
|
|
32390
32418
|
query?: never;
|
|
32391
32419
|
header?: never;
|
|
32392
|
-
path
|
|
32420
|
+
path: {
|
|
32421
|
+
/** @description Email template type to save. */
|
|
32422
|
+
type: "ownerInvite" | "ownerStatementPublished" | "invitePropertyManager";
|
|
32423
|
+
};
|
|
32393
32424
|
cookie?: never;
|
|
32394
32425
|
};
|
|
32395
32426
|
requestBody?: {
|
|
32396
32427
|
content: {
|
|
32397
32428
|
"application/json": {
|
|
32398
|
-
/** @description
|
|
32399
|
-
|
|
32429
|
+
/** @description Email template content to save. */
|
|
32430
|
+
data: {
|
|
32431
|
+
subject: string;
|
|
32432
|
+
shortDescription: string;
|
|
32433
|
+
banner?: string | null;
|
|
32434
|
+
header: string;
|
|
32435
|
+
bodyOne: string;
|
|
32436
|
+
bodyTwo: string;
|
|
32437
|
+
buttonText: string;
|
|
32438
|
+
href?: string | null;
|
|
32439
|
+
};
|
|
32400
32440
|
};
|
|
32401
32441
|
};
|
|
32402
32442
|
};
|
|
@@ -32404,46 +32444,36 @@ export interface operations {
|
|
|
32404
32444
|
/** @description Successful response */
|
|
32405
32445
|
200: {
|
|
32406
32446
|
headers: {
|
|
32407
|
-
/** @description Prevents storage of the embedded bearer token. */
|
|
32408
|
-
"Cache-Control"?: "no-store";
|
|
32409
32447
|
[name: string]: unknown;
|
|
32410
32448
|
};
|
|
32411
32449
|
content: {
|
|
32412
32450
|
"application/json": {
|
|
32413
|
-
/**
|
|
32414
|
-
|
|
32415
|
-
/** @
|
|
32416
|
-
|
|
32417
|
-
|
|
32418
|
-
|
|
32419
|
-
|
|
32420
|
-
|
|
32421
|
-
|
|
32451
|
+
/** Format: uuid */
|
|
32452
|
+
id: string;
|
|
32453
|
+
/** @enum {string} */
|
|
32454
|
+
type: "ownerInvite" | "ownerStatementPublished" | "invitePropertyManager";
|
|
32455
|
+
data: {
|
|
32456
|
+
subject: string;
|
|
32457
|
+
shortDescription: string;
|
|
32458
|
+
banner?: string | null;
|
|
32459
|
+
header: string;
|
|
32460
|
+
bodyOne: string;
|
|
32461
|
+
bodyTwo: string;
|
|
32462
|
+
buttonText: string;
|
|
32463
|
+
href?: string | null;
|
|
32464
|
+
};
|
|
32422
32465
|
/**
|
|
32423
32466
|
* Format: date-time
|
|
32424
|
-
* @description
|
|
32425
|
-
|
|
32426
|
-
expiresAt: string;
|
|
32427
|
-
/**
|
|
32428
|
-
* Format: uri
|
|
32429
|
-
* @description Exact parent-page origin bound to the lifecycle channel.
|
|
32430
|
-
*/
|
|
32431
|
-
parentOrigin: string;
|
|
32432
|
-
/**
|
|
32433
|
-
* Format: uuid
|
|
32434
|
-
* @description Session ID created by the partner backend.
|
|
32435
|
-
*/
|
|
32436
|
-
sessionId: string;
|
|
32437
|
-
/**
|
|
32438
|
-
* Format: uuid
|
|
32439
|
-
* @description Team bound to the embedded session.
|
|
32467
|
+
* @description Timestamp string with date, time, milliseconds, and timezone.
|
|
32468
|
+
* @example 2024-01-15T12:30:00.000+00:00
|
|
32440
32469
|
*/
|
|
32441
|
-
|
|
32470
|
+
createdAt: string;
|
|
32442
32471
|
/**
|
|
32443
|
-
* Format:
|
|
32444
|
-
* @description
|
|
32472
|
+
* Format: date-time
|
|
32473
|
+
* @description Timestamp string with date, time, milliseconds, and timezone.
|
|
32474
|
+
* @example 2024-01-15T12:30:00.000+00:00
|
|
32445
32475
|
*/
|
|
32446
|
-
|
|
32476
|
+
updatedAt: string;
|
|
32447
32477
|
};
|
|
32448
32478
|
};
|
|
32449
32479
|
};
|
|
@@ -32674,7 +32704,7 @@ export interface operations {
|
|
|
32674
32704
|
};
|
|
32675
32705
|
};
|
|
32676
32706
|
};
|
|
32677
|
-
|
|
32707
|
+
exchangeEmbedSession: {
|
|
32678
32708
|
parameters: {
|
|
32679
32709
|
query?: never;
|
|
32680
32710
|
header?: never;
|
|
@@ -32684,8 +32714,8 @@ export interface operations {
|
|
|
32684
32714
|
requestBody?: {
|
|
32685
32715
|
content: {
|
|
32686
32716
|
"application/json": {
|
|
32687
|
-
/** @description
|
|
32688
|
-
|
|
32717
|
+
/** @description One-time code from the embed URL fragment. */
|
|
32718
|
+
code: string;
|
|
32689
32719
|
};
|
|
32690
32720
|
};
|
|
32691
32721
|
};
|
|
@@ -32693,22 +32723,46 @@ export interface operations {
|
|
|
32693
32723
|
/** @description Successful response */
|
|
32694
32724
|
200: {
|
|
32695
32725
|
headers: {
|
|
32696
|
-
/** @description Prevents storage of the
|
|
32726
|
+
/** @description Prevents storage of the embedded bearer token. */
|
|
32697
32727
|
"Cache-Control"?: "no-store";
|
|
32698
32728
|
[name: string]: unknown;
|
|
32699
32729
|
};
|
|
32700
32730
|
content: {
|
|
32701
32731
|
"application/json": {
|
|
32732
|
+
/** @description Short-lived embedded bearer token. */
|
|
32733
|
+
accessToken: string;
|
|
32734
|
+
/** @description Embedded capability bundles granted to the session. */
|
|
32735
|
+
bundles: ("embed:exports:v1" | "embed:reports:v1" | "embed:statements:v1")[];
|
|
32702
32736
|
/**
|
|
32703
|
-
* Format:
|
|
32704
|
-
* @description
|
|
32737
|
+
* Format: uuid
|
|
32738
|
+
* @description Stable lifecycle channel ID for this iframe.
|
|
32705
32739
|
*/
|
|
32706
|
-
|
|
32740
|
+
channelId: string;
|
|
32741
|
+
/**
|
|
32742
|
+
* Format: date-time
|
|
32743
|
+
* @description Bearer-token expiration timestamp.
|
|
32744
|
+
*/
|
|
32745
|
+
expiresAt: string;
|
|
32707
32746
|
/**
|
|
32708
32747
|
* Format: uri
|
|
32709
|
-
* @description Exact parent-page origin
|
|
32748
|
+
* @description Exact parent-page origin bound to the lifecycle channel.
|
|
32710
32749
|
*/
|
|
32711
32750
|
parentOrigin: string;
|
|
32751
|
+
/**
|
|
32752
|
+
* Format: uuid
|
|
32753
|
+
* @description Session ID created by the partner backend.
|
|
32754
|
+
*/
|
|
32755
|
+
sessionId: string;
|
|
32756
|
+
/**
|
|
32757
|
+
* Format: uuid
|
|
32758
|
+
* @description Team bound to the embedded session.
|
|
32759
|
+
*/
|
|
32760
|
+
teamId: string;
|
|
32761
|
+
/**
|
|
32762
|
+
* Format: uuid
|
|
32763
|
+
* @description VRPlatform user bound to the session.
|
|
32764
|
+
*/
|
|
32765
|
+
userId: string;
|
|
32712
32766
|
};
|
|
32713
32767
|
};
|
|
32714
32768
|
};
|
|
@@ -32939,67 +32993,41 @@ export interface operations {
|
|
|
32939
32993
|
};
|
|
32940
32994
|
};
|
|
32941
32995
|
};
|
|
32942
|
-
|
|
32996
|
+
getEmbedSessionFrameAncestorPolicy: {
|
|
32943
32997
|
parameters: {
|
|
32944
|
-
query?:
|
|
32945
|
-
/** @description Filter files by filename text match. */
|
|
32946
|
-
search?: string;
|
|
32947
|
-
/** @description Filter files by their upload purpose. */
|
|
32948
|
-
type?: "userUpload" | "historicalData" | "historicalOwnerStatement" | "ownerStatementExample" | "listingOwnerAssignment" | "listingFeeAssignment";
|
|
32949
|
-
/** @description Sort field; prefix with - for descending order. */
|
|
32950
|
-
sort?: "filename" | "-filename" | "startDate" | "-startDate" | "endDate" | "-endDate" | "createdAt" | "-createdAt" | "contactName" | "-contactName";
|
|
32951
|
-
limit?: number;
|
|
32952
|
-
page?: number;
|
|
32953
|
-
offset?: number;
|
|
32954
|
-
};
|
|
32998
|
+
query?: never;
|
|
32955
32999
|
header?: never;
|
|
32956
33000
|
path?: never;
|
|
32957
33001
|
cookie?: never;
|
|
32958
33002
|
};
|
|
32959
|
-
requestBody?:
|
|
33003
|
+
requestBody?: {
|
|
33004
|
+
content: {
|
|
33005
|
+
"application/json": {
|
|
33006
|
+
/** @description Short-lived opaque policy token from the issued embed URL query. */
|
|
33007
|
+
frameAncestorToken: string;
|
|
33008
|
+
};
|
|
33009
|
+
};
|
|
33010
|
+
};
|
|
32960
33011
|
responses: {
|
|
32961
33012
|
/** @description Successful response */
|
|
32962
33013
|
200: {
|
|
32963
33014
|
headers: {
|
|
33015
|
+
/** @description Prevents storage of the short-lived ancestor policy. */
|
|
33016
|
+
"Cache-Control"?: "no-store";
|
|
32964
33017
|
[name: string]: unknown;
|
|
32965
33018
|
};
|
|
32966
33019
|
content: {
|
|
32967
33020
|
"application/json": {
|
|
32968
|
-
|
|
32969
|
-
|
|
32970
|
-
|
|
32971
|
-
|
|
32972
|
-
|
|
32973
|
-
|
|
32974
|
-
|
|
32975
|
-
|
|
32976
|
-
|
|
32977
|
-
|
|
32978
|
-
* @description Timestamp string with date, time, milliseconds, and timezone.
|
|
32979
|
-
* @example 2024-01-15T12:30:00.000+00:00
|
|
32980
|
-
*/
|
|
32981
|
-
createdAt: string;
|
|
32982
|
-
contact: {
|
|
32983
|
-
/** Format: uuid */
|
|
32984
|
-
id: string;
|
|
32985
|
-
name?: string | null;
|
|
32986
|
-
firstName?: string | null;
|
|
32987
|
-
uniqueRef?: string | null;
|
|
32988
|
-
shortRef?: string | null;
|
|
32989
|
-
email?: string | null;
|
|
32990
|
-
/** @enum {string} */
|
|
32991
|
-
type: "owner" | "vendor";
|
|
32992
|
-
} | null;
|
|
32993
|
-
}[];
|
|
32994
|
-
pagination: {
|
|
32995
|
-
/** @default 100 */
|
|
32996
|
-
limit: number;
|
|
32997
|
-
/** @default 1 */
|
|
32998
|
-
page: number;
|
|
32999
|
-
total: number;
|
|
33000
|
-
totalPage: number;
|
|
33001
|
-
nextPage?: number;
|
|
33002
|
-
};
|
|
33021
|
+
/**
|
|
33022
|
+
* Format: uri
|
|
33023
|
+
* @description Exact embedded-application origin allowed to use this policy.
|
|
33024
|
+
*/
|
|
33025
|
+
embedOrigin: string;
|
|
33026
|
+
/**
|
|
33027
|
+
* Format: uri
|
|
33028
|
+
* @description Exact parent-page origin allowed to frame the embedded application.
|
|
33029
|
+
*/
|
|
33030
|
+
parentOrigin: string;
|
|
33003
33031
|
};
|
|
33004
33032
|
};
|
|
33005
33033
|
};
|
|
@@ -33230,9 +33258,19 @@ export interface operations {
|
|
|
33230
33258
|
};
|
|
33231
33259
|
};
|
|
33232
33260
|
};
|
|
33233
|
-
|
|
33261
|
+
getFiles: {
|
|
33234
33262
|
parameters: {
|
|
33235
|
-
query?:
|
|
33263
|
+
query?: {
|
|
33264
|
+
/** @description Filter files by filename text match. */
|
|
33265
|
+
search?: string;
|
|
33266
|
+
/** @description Filter files by their upload purpose. */
|
|
33267
|
+
type?: "userUpload" | "historicalData" | "historicalOwnerStatement" | "ownerStatementExample" | "listingOwnerAssignment" | "listingFeeAssignment";
|
|
33268
|
+
/** @description Sort field; prefix with - for descending order. */
|
|
33269
|
+
sort?: "filename" | "-filename" | "startDate" | "-startDate" | "endDate" | "-endDate" | "createdAt" | "-createdAt" | "contactName" | "-contactName";
|
|
33270
|
+
limit?: number;
|
|
33271
|
+
page?: number;
|
|
33272
|
+
offset?: number;
|
|
33273
|
+
};
|
|
33236
33274
|
header?: never;
|
|
33237
33275
|
path?: never;
|
|
33238
33276
|
cookie?: never;
|
|
@@ -33246,30 +33284,560 @@ export interface operations {
|
|
|
33246
33284
|
};
|
|
33247
33285
|
content: {
|
|
33248
33286
|
"application/json": {
|
|
33249
|
-
|
|
33250
|
-
id: string;
|
|
33251
|
-
filename: string;
|
|
33252
|
-
/** @enum {string} */
|
|
33253
|
-
type: "userUpload" | "historicalData" | "historicalOwnerStatement" | "ownerStatementExample" | "listingOwnerAssignment" | "listingFeeAssignment";
|
|
33254
|
-
startDate: string | null;
|
|
33255
|
-
endDate: string | null;
|
|
33256
|
-
/**
|
|
33257
|
-
* Format: date-time
|
|
33258
|
-
* @description Timestamp string with date, time, milliseconds, and timezone.
|
|
33259
|
-
* @example 2024-01-15T12:30:00.000+00:00
|
|
33260
|
-
*/
|
|
33261
|
-
createdAt: string;
|
|
33262
|
-
contact: {
|
|
33287
|
+
data: {
|
|
33263
33288
|
/** Format: uuid */
|
|
33264
33289
|
id: string;
|
|
33265
|
-
|
|
33266
|
-
firstName?: string | null;
|
|
33267
|
-
uniqueRef?: string | null;
|
|
33268
|
-
shortRef?: string | null;
|
|
33269
|
-
email?: string | null;
|
|
33290
|
+
filename: string;
|
|
33270
33291
|
/** @enum {string} */
|
|
33271
|
-
type: "
|
|
33272
|
-
|
|
33292
|
+
type: "userUpload" | "historicalData" | "historicalOwnerStatement" | "ownerStatementExample" | "listingOwnerAssignment" | "listingFeeAssignment";
|
|
33293
|
+
startDate: string | null;
|
|
33294
|
+
endDate: string | null;
|
|
33295
|
+
/**
|
|
33296
|
+
* Format: date-time
|
|
33297
|
+
* @description Timestamp string with date, time, milliseconds, and timezone.
|
|
33298
|
+
* @example 2024-01-15T12:30:00.000+00:00
|
|
33299
|
+
*/
|
|
33300
|
+
createdAt: string;
|
|
33301
|
+
contact: {
|
|
33302
|
+
/** Format: uuid */
|
|
33303
|
+
id: string;
|
|
33304
|
+
name?: string | null;
|
|
33305
|
+
firstName?: string | null;
|
|
33306
|
+
uniqueRef?: string | null;
|
|
33307
|
+
shortRef?: string | null;
|
|
33308
|
+
email?: string | null;
|
|
33309
|
+
/** @enum {string} */
|
|
33310
|
+
type: "owner" | "vendor";
|
|
33311
|
+
} | null;
|
|
33312
|
+
}[];
|
|
33313
|
+
pagination: {
|
|
33314
|
+
/** @default 100 */
|
|
33315
|
+
limit: number;
|
|
33316
|
+
/** @default 1 */
|
|
33317
|
+
page: number;
|
|
33318
|
+
total: number;
|
|
33319
|
+
totalPage: number;
|
|
33320
|
+
nextPage?: number;
|
|
33321
|
+
};
|
|
33322
|
+
};
|
|
33323
|
+
};
|
|
33324
|
+
};
|
|
33325
|
+
/** @description Bad request */
|
|
33326
|
+
400: {
|
|
33327
|
+
headers: {
|
|
33328
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
33329
|
+
"Retry-After"?: number;
|
|
33330
|
+
[name: string]: unknown;
|
|
33331
|
+
};
|
|
33332
|
+
content: {
|
|
33333
|
+
"application/json": {
|
|
33334
|
+
code: string;
|
|
33335
|
+
message: string;
|
|
33336
|
+
links?: {
|
|
33337
|
+
docs: string;
|
|
33338
|
+
schema: string;
|
|
33339
|
+
};
|
|
33340
|
+
issues?: {
|
|
33341
|
+
message: string;
|
|
33342
|
+
path?: (string | number)[];
|
|
33343
|
+
schema?: string;
|
|
33344
|
+
}[];
|
|
33345
|
+
retryable?: boolean;
|
|
33346
|
+
context?: unknown;
|
|
33347
|
+
};
|
|
33348
|
+
};
|
|
33349
|
+
};
|
|
33350
|
+
/** @description Unauthorized */
|
|
33351
|
+
401: {
|
|
33352
|
+
headers: {
|
|
33353
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
33354
|
+
"Retry-After"?: number;
|
|
33355
|
+
[name: string]: unknown;
|
|
33356
|
+
};
|
|
33357
|
+
content: {
|
|
33358
|
+
"application/json": {
|
|
33359
|
+
code: string;
|
|
33360
|
+
message: string;
|
|
33361
|
+
links?: {
|
|
33362
|
+
docs: string;
|
|
33363
|
+
schema: string;
|
|
33364
|
+
};
|
|
33365
|
+
issues?: {
|
|
33366
|
+
message: string;
|
|
33367
|
+
path?: (string | number)[];
|
|
33368
|
+
schema?: string;
|
|
33369
|
+
}[];
|
|
33370
|
+
retryable?: boolean;
|
|
33371
|
+
context?: unknown;
|
|
33372
|
+
};
|
|
33373
|
+
};
|
|
33374
|
+
};
|
|
33375
|
+
/** @description Forbidden */
|
|
33376
|
+
403: {
|
|
33377
|
+
headers: {
|
|
33378
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
33379
|
+
"Retry-After"?: number;
|
|
33380
|
+
[name: string]: unknown;
|
|
33381
|
+
};
|
|
33382
|
+
content: {
|
|
33383
|
+
"application/json": {
|
|
33384
|
+
code: string;
|
|
33385
|
+
message: string;
|
|
33386
|
+
links?: {
|
|
33387
|
+
docs: string;
|
|
33388
|
+
schema: string;
|
|
33389
|
+
};
|
|
33390
|
+
issues?: {
|
|
33391
|
+
message: string;
|
|
33392
|
+
path?: (string | number)[];
|
|
33393
|
+
schema?: string;
|
|
33394
|
+
}[];
|
|
33395
|
+
retryable?: boolean;
|
|
33396
|
+
context?: unknown;
|
|
33397
|
+
};
|
|
33398
|
+
};
|
|
33399
|
+
};
|
|
33400
|
+
/** @description Not found */
|
|
33401
|
+
404: {
|
|
33402
|
+
headers: {
|
|
33403
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
33404
|
+
"Retry-After"?: number;
|
|
33405
|
+
[name: string]: unknown;
|
|
33406
|
+
};
|
|
33407
|
+
content: {
|
|
33408
|
+
"application/json": {
|
|
33409
|
+
code: string;
|
|
33410
|
+
message: string;
|
|
33411
|
+
links?: {
|
|
33412
|
+
docs: string;
|
|
33413
|
+
schema: string;
|
|
33414
|
+
};
|
|
33415
|
+
issues?: {
|
|
33416
|
+
message: string;
|
|
33417
|
+
path?: (string | number)[];
|
|
33418
|
+
schema?: string;
|
|
33419
|
+
}[];
|
|
33420
|
+
retryable?: boolean;
|
|
33421
|
+
context?: unknown;
|
|
33422
|
+
};
|
|
33423
|
+
};
|
|
33424
|
+
};
|
|
33425
|
+
/** @description Conflict */
|
|
33426
|
+
409: {
|
|
33427
|
+
headers: {
|
|
33428
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
33429
|
+
"Retry-After"?: number;
|
|
33430
|
+
[name: string]: unknown;
|
|
33431
|
+
};
|
|
33432
|
+
content: {
|
|
33433
|
+
"application/json": {
|
|
33434
|
+
code: string;
|
|
33435
|
+
message: string;
|
|
33436
|
+
links?: {
|
|
33437
|
+
docs: string;
|
|
33438
|
+
schema: string;
|
|
33439
|
+
};
|
|
33440
|
+
issues?: {
|
|
33441
|
+
message: string;
|
|
33442
|
+
path?: (string | number)[];
|
|
33443
|
+
schema?: string;
|
|
33444
|
+
}[];
|
|
33445
|
+
retryable?: boolean;
|
|
33446
|
+
context?: unknown;
|
|
33447
|
+
};
|
|
33448
|
+
};
|
|
33449
|
+
};
|
|
33450
|
+
/** @description Gone */
|
|
33451
|
+
410: {
|
|
33452
|
+
headers: {
|
|
33453
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
33454
|
+
"Retry-After"?: number;
|
|
33455
|
+
[name: string]: unknown;
|
|
33456
|
+
};
|
|
33457
|
+
content: {
|
|
33458
|
+
"application/json": {
|
|
33459
|
+
code: string;
|
|
33460
|
+
message: string;
|
|
33461
|
+
links?: {
|
|
33462
|
+
docs: string;
|
|
33463
|
+
schema: string;
|
|
33464
|
+
};
|
|
33465
|
+
issues?: {
|
|
33466
|
+
message: string;
|
|
33467
|
+
path?: (string | number)[];
|
|
33468
|
+
schema?: string;
|
|
33469
|
+
}[];
|
|
33470
|
+
retryable?: boolean;
|
|
33471
|
+
context?: unknown;
|
|
33472
|
+
};
|
|
33473
|
+
};
|
|
33474
|
+
};
|
|
33475
|
+
/** @description Unprocessable content */
|
|
33476
|
+
422: {
|
|
33477
|
+
headers: {
|
|
33478
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
33479
|
+
"Retry-After"?: number;
|
|
33480
|
+
[name: string]: unknown;
|
|
33481
|
+
};
|
|
33482
|
+
content: {
|
|
33483
|
+
"application/json": {
|
|
33484
|
+
code: string;
|
|
33485
|
+
message: string;
|
|
33486
|
+
links?: {
|
|
33487
|
+
docs: string;
|
|
33488
|
+
schema: string;
|
|
33489
|
+
};
|
|
33490
|
+
issues?: {
|
|
33491
|
+
message: string;
|
|
33492
|
+
path?: (string | number)[];
|
|
33493
|
+
schema?: string;
|
|
33494
|
+
}[];
|
|
33495
|
+
retryable?: boolean;
|
|
33496
|
+
context?: unknown;
|
|
33497
|
+
};
|
|
33498
|
+
};
|
|
33499
|
+
};
|
|
33500
|
+
/** @description Internal server error */
|
|
33501
|
+
500: {
|
|
33502
|
+
headers: {
|
|
33503
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
33504
|
+
"Retry-After"?: number;
|
|
33505
|
+
[name: string]: unknown;
|
|
33506
|
+
};
|
|
33507
|
+
content: {
|
|
33508
|
+
"application/json": {
|
|
33509
|
+
code: string;
|
|
33510
|
+
message: string;
|
|
33511
|
+
links?: {
|
|
33512
|
+
docs: string;
|
|
33513
|
+
schema: string;
|
|
33514
|
+
};
|
|
33515
|
+
issues?: {
|
|
33516
|
+
message: string;
|
|
33517
|
+
path?: (string | number)[];
|
|
33518
|
+
schema?: string;
|
|
33519
|
+
}[];
|
|
33520
|
+
retryable?: boolean;
|
|
33521
|
+
context?: unknown;
|
|
33522
|
+
};
|
|
33523
|
+
};
|
|
33524
|
+
};
|
|
33525
|
+
/** @description Service unavailable */
|
|
33526
|
+
503: {
|
|
33527
|
+
headers: {
|
|
33528
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
33529
|
+
"Retry-After"?: number;
|
|
33530
|
+
[name: string]: unknown;
|
|
33531
|
+
};
|
|
33532
|
+
content: {
|
|
33533
|
+
"application/json": {
|
|
33534
|
+
code: string;
|
|
33535
|
+
message: string;
|
|
33536
|
+
links?: {
|
|
33537
|
+
docs: string;
|
|
33538
|
+
schema: string;
|
|
33539
|
+
};
|
|
33540
|
+
issues?: {
|
|
33541
|
+
message: string;
|
|
33542
|
+
path?: (string | number)[];
|
|
33543
|
+
schema?: string;
|
|
33544
|
+
}[];
|
|
33545
|
+
retryable?: boolean;
|
|
33546
|
+
context?: unknown;
|
|
33547
|
+
};
|
|
33548
|
+
};
|
|
33549
|
+
};
|
|
33550
|
+
};
|
|
33551
|
+
};
|
|
33552
|
+
postFiles: {
|
|
33553
|
+
parameters: {
|
|
33554
|
+
query?: never;
|
|
33555
|
+
header?: never;
|
|
33556
|
+
path?: never;
|
|
33557
|
+
cookie?: never;
|
|
33558
|
+
};
|
|
33559
|
+
requestBody?: {
|
|
33560
|
+
content: {
|
|
33561
|
+
"application/json": {
|
|
33562
|
+
filename: string;
|
|
33563
|
+
contentType: string;
|
|
33564
|
+
fileSize: number;
|
|
33565
|
+
/**
|
|
33566
|
+
* @default userUpload
|
|
33567
|
+
* @enum {string}
|
|
33568
|
+
*/
|
|
33569
|
+
type?: "userUpload" | "historicalData" | "historicalOwnerStatement" | "ownerStatementExample" | "listingOwnerAssignment" | "listingFeeAssignment";
|
|
33570
|
+
startDate?: string | null;
|
|
33571
|
+
endDate?: string | null;
|
|
33572
|
+
contactId?: string | null;
|
|
33573
|
+
};
|
|
33574
|
+
};
|
|
33575
|
+
};
|
|
33576
|
+
responses: {
|
|
33577
|
+
/** @description Successful response */
|
|
33578
|
+
200: {
|
|
33579
|
+
headers: {
|
|
33580
|
+
[name: string]: unknown;
|
|
33581
|
+
};
|
|
33582
|
+
content: {
|
|
33583
|
+
"application/json": {
|
|
33584
|
+
/** Format: date-time */
|
|
33585
|
+
expiresAt: string;
|
|
33586
|
+
/** Format: uuid */
|
|
33587
|
+
fileId: string;
|
|
33588
|
+
uploadRef: string;
|
|
33589
|
+
/** Format: uri */
|
|
33590
|
+
uploadUrl: string;
|
|
33591
|
+
};
|
|
33592
|
+
};
|
|
33593
|
+
};
|
|
33594
|
+
/** @description Bad request */
|
|
33595
|
+
400: {
|
|
33596
|
+
headers: {
|
|
33597
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
33598
|
+
"Retry-After"?: number;
|
|
33599
|
+
[name: string]: unknown;
|
|
33600
|
+
};
|
|
33601
|
+
content: {
|
|
33602
|
+
"application/json": {
|
|
33603
|
+
code: string;
|
|
33604
|
+
message: string;
|
|
33605
|
+
links?: {
|
|
33606
|
+
docs: string;
|
|
33607
|
+
schema: string;
|
|
33608
|
+
};
|
|
33609
|
+
issues?: {
|
|
33610
|
+
message: string;
|
|
33611
|
+
path?: (string | number)[];
|
|
33612
|
+
schema?: string;
|
|
33613
|
+
}[];
|
|
33614
|
+
retryable?: boolean;
|
|
33615
|
+
context?: unknown;
|
|
33616
|
+
};
|
|
33617
|
+
};
|
|
33618
|
+
};
|
|
33619
|
+
/** @description Unauthorized */
|
|
33620
|
+
401: {
|
|
33621
|
+
headers: {
|
|
33622
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
33623
|
+
"Retry-After"?: number;
|
|
33624
|
+
[name: string]: unknown;
|
|
33625
|
+
};
|
|
33626
|
+
content: {
|
|
33627
|
+
"application/json": {
|
|
33628
|
+
code: string;
|
|
33629
|
+
message: string;
|
|
33630
|
+
links?: {
|
|
33631
|
+
docs: string;
|
|
33632
|
+
schema: string;
|
|
33633
|
+
};
|
|
33634
|
+
issues?: {
|
|
33635
|
+
message: string;
|
|
33636
|
+
path?: (string | number)[];
|
|
33637
|
+
schema?: string;
|
|
33638
|
+
}[];
|
|
33639
|
+
retryable?: boolean;
|
|
33640
|
+
context?: unknown;
|
|
33641
|
+
};
|
|
33642
|
+
};
|
|
33643
|
+
};
|
|
33644
|
+
/** @description Forbidden */
|
|
33645
|
+
403: {
|
|
33646
|
+
headers: {
|
|
33647
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
33648
|
+
"Retry-After"?: number;
|
|
33649
|
+
[name: string]: unknown;
|
|
33650
|
+
};
|
|
33651
|
+
content: {
|
|
33652
|
+
"application/json": {
|
|
33653
|
+
code: string;
|
|
33654
|
+
message: string;
|
|
33655
|
+
links?: {
|
|
33656
|
+
docs: string;
|
|
33657
|
+
schema: string;
|
|
33658
|
+
};
|
|
33659
|
+
issues?: {
|
|
33660
|
+
message: string;
|
|
33661
|
+
path?: (string | number)[];
|
|
33662
|
+
schema?: string;
|
|
33663
|
+
}[];
|
|
33664
|
+
retryable?: boolean;
|
|
33665
|
+
context?: unknown;
|
|
33666
|
+
};
|
|
33667
|
+
};
|
|
33668
|
+
};
|
|
33669
|
+
/** @description Not found */
|
|
33670
|
+
404: {
|
|
33671
|
+
headers: {
|
|
33672
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
33673
|
+
"Retry-After"?: number;
|
|
33674
|
+
[name: string]: unknown;
|
|
33675
|
+
};
|
|
33676
|
+
content: {
|
|
33677
|
+
"application/json": {
|
|
33678
|
+
code: string;
|
|
33679
|
+
message: string;
|
|
33680
|
+
links?: {
|
|
33681
|
+
docs: string;
|
|
33682
|
+
schema: string;
|
|
33683
|
+
};
|
|
33684
|
+
issues?: {
|
|
33685
|
+
message: string;
|
|
33686
|
+
path?: (string | number)[];
|
|
33687
|
+
schema?: string;
|
|
33688
|
+
}[];
|
|
33689
|
+
retryable?: boolean;
|
|
33690
|
+
context?: unknown;
|
|
33691
|
+
};
|
|
33692
|
+
};
|
|
33693
|
+
};
|
|
33694
|
+
/** @description Conflict */
|
|
33695
|
+
409: {
|
|
33696
|
+
headers: {
|
|
33697
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
33698
|
+
"Retry-After"?: number;
|
|
33699
|
+
[name: string]: unknown;
|
|
33700
|
+
};
|
|
33701
|
+
content: {
|
|
33702
|
+
"application/json": {
|
|
33703
|
+
code: string;
|
|
33704
|
+
message: string;
|
|
33705
|
+
links?: {
|
|
33706
|
+
docs: string;
|
|
33707
|
+
schema: string;
|
|
33708
|
+
};
|
|
33709
|
+
issues?: {
|
|
33710
|
+
message: string;
|
|
33711
|
+
path?: (string | number)[];
|
|
33712
|
+
schema?: string;
|
|
33713
|
+
}[];
|
|
33714
|
+
retryable?: boolean;
|
|
33715
|
+
context?: unknown;
|
|
33716
|
+
};
|
|
33717
|
+
};
|
|
33718
|
+
};
|
|
33719
|
+
/** @description Gone */
|
|
33720
|
+
410: {
|
|
33721
|
+
headers: {
|
|
33722
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
33723
|
+
"Retry-After"?: number;
|
|
33724
|
+
[name: string]: unknown;
|
|
33725
|
+
};
|
|
33726
|
+
content: {
|
|
33727
|
+
"application/json": {
|
|
33728
|
+
code: string;
|
|
33729
|
+
message: string;
|
|
33730
|
+
links?: {
|
|
33731
|
+
docs: string;
|
|
33732
|
+
schema: string;
|
|
33733
|
+
};
|
|
33734
|
+
issues?: {
|
|
33735
|
+
message: string;
|
|
33736
|
+
path?: (string | number)[];
|
|
33737
|
+
schema?: string;
|
|
33738
|
+
}[];
|
|
33739
|
+
retryable?: boolean;
|
|
33740
|
+
context?: unknown;
|
|
33741
|
+
};
|
|
33742
|
+
};
|
|
33743
|
+
};
|
|
33744
|
+
/** @description Unprocessable content */
|
|
33745
|
+
422: {
|
|
33746
|
+
headers: {
|
|
33747
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
33748
|
+
"Retry-After"?: number;
|
|
33749
|
+
[name: string]: unknown;
|
|
33750
|
+
};
|
|
33751
|
+
content: {
|
|
33752
|
+
"application/json": {
|
|
33753
|
+
code: string;
|
|
33754
|
+
message: string;
|
|
33755
|
+
links?: {
|
|
33756
|
+
docs: string;
|
|
33757
|
+
schema: string;
|
|
33758
|
+
};
|
|
33759
|
+
issues?: {
|
|
33760
|
+
message: string;
|
|
33761
|
+
path?: (string | number)[];
|
|
33762
|
+
schema?: string;
|
|
33763
|
+
}[];
|
|
33764
|
+
retryable?: boolean;
|
|
33765
|
+
context?: unknown;
|
|
33766
|
+
};
|
|
33767
|
+
};
|
|
33768
|
+
};
|
|
33769
|
+
/** @description Internal server error */
|
|
33770
|
+
500: {
|
|
33771
|
+
headers: {
|
|
33772
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
33773
|
+
"Retry-After"?: number;
|
|
33774
|
+
[name: string]: unknown;
|
|
33775
|
+
};
|
|
33776
|
+
content: {
|
|
33777
|
+
"application/json": {
|
|
33778
|
+
code: string;
|
|
33779
|
+
message: string;
|
|
33780
|
+
links?: {
|
|
33781
|
+
docs: string;
|
|
33782
|
+
schema: string;
|
|
33783
|
+
};
|
|
33784
|
+
issues?: {
|
|
33785
|
+
message: string;
|
|
33786
|
+
path?: (string | number)[];
|
|
33787
|
+
schema?: string;
|
|
33788
|
+
}[];
|
|
33789
|
+
retryable?: boolean;
|
|
33790
|
+
context?: unknown;
|
|
33791
|
+
};
|
|
33792
|
+
};
|
|
33793
|
+
};
|
|
33794
|
+
/** @description Service unavailable */
|
|
33795
|
+
503: {
|
|
33796
|
+
headers: {
|
|
33797
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
33798
|
+
"Retry-After"?: number;
|
|
33799
|
+
[name: string]: unknown;
|
|
33800
|
+
};
|
|
33801
|
+
content: {
|
|
33802
|
+
"application/json": {
|
|
33803
|
+
code: string;
|
|
33804
|
+
message: string;
|
|
33805
|
+
links?: {
|
|
33806
|
+
docs: string;
|
|
33807
|
+
schema: string;
|
|
33808
|
+
};
|
|
33809
|
+
issues?: {
|
|
33810
|
+
message: string;
|
|
33811
|
+
path?: (string | number)[];
|
|
33812
|
+
schema?: string;
|
|
33813
|
+
}[];
|
|
33814
|
+
retryable?: boolean;
|
|
33815
|
+
context?: unknown;
|
|
33816
|
+
};
|
|
33817
|
+
};
|
|
33818
|
+
};
|
|
33819
|
+
};
|
|
33820
|
+
};
|
|
33821
|
+
putFilesUploadsByUploadRef: {
|
|
33822
|
+
parameters: {
|
|
33823
|
+
query?: never;
|
|
33824
|
+
header?: never;
|
|
33825
|
+
path: {
|
|
33826
|
+
uploadRef: string;
|
|
33827
|
+
};
|
|
33828
|
+
cookie?: never;
|
|
33829
|
+
};
|
|
33830
|
+
requestBody?: never;
|
|
33831
|
+
responses: {
|
|
33832
|
+
/** @description Successful response */
|
|
33833
|
+
200: {
|
|
33834
|
+
headers: {
|
|
33835
|
+
[name: string]: unknown;
|
|
33836
|
+
};
|
|
33837
|
+
content: {
|
|
33838
|
+
"application/json": {
|
|
33839
|
+
/** @constant */
|
|
33840
|
+
status: "uploaded";
|
|
33273
33841
|
};
|
|
33274
33842
|
};
|
|
33275
33843
|
};
|
|
@@ -103059,8 +103627,13 @@ export interface operations {
|
|
|
103059
103627
|
description?: string;
|
|
103060
103628
|
/** @description Posting date; defaults to the day before endAt */
|
|
103061
103629
|
date?: string;
|
|
103062
|
-
/**
|
|
103630
|
+
/**
|
|
103631
|
+
* Format: uuid
|
|
103632
|
+
* @description Existing reservation UUID to render this line in its row
|
|
103633
|
+
*/
|
|
103063
103634
|
reservationId?: string;
|
|
103635
|
+
/** @description Existing reservation confirmation code on the statement listing; resolves reservationId so all lines with the same code collapse into one reservation row */
|
|
103636
|
+
matchReservationConfirmationCode?: string;
|
|
103064
103637
|
/** Format: uuid */
|
|
103065
103638
|
contactId?: string;
|
|
103066
103639
|
}[];
|
|
@@ -106200,7 +106773,7 @@ export interface operations {
|
|
|
106200
106773
|
} | null;
|
|
106201
106774
|
} | null;
|
|
106202
106775
|
}[];
|
|
106203
|
-
/** @description Expense attachment IDs returned by POST /transactions/attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
|
|
106776
|
+
/** @description Expense attachment IDs returned as attachmentId by POST /transactions/attachments after PUT to uploadUrl succeeds. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
|
|
106204
106777
|
attachmentIds?: string[] | null;
|
|
106205
106778
|
recurringTemplateId?: string | null;
|
|
106206
106779
|
matchBankAccountLast4?: string | null;
|
|
@@ -124352,7 +124925,7 @@ export interface operations {
|
|
|
124352
124925
|
} | null;
|
|
124353
124926
|
} | null;
|
|
124354
124927
|
}[];
|
|
124355
|
-
/** @description Expense attachment IDs returned by POST /transactions/attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
|
|
124928
|
+
/** @description Expense attachment IDs returned as attachmentId by POST /transactions/attachments after PUT to uploadUrl succeeds. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
|
|
124356
124929
|
attachmentIds?: string[] | null;
|
|
124357
124930
|
recurringTemplateId?: string | null;
|
|
124358
124931
|
matchBankAccountLast4?: string | null;
|
|
@@ -124840,7 +125413,7 @@ export interface operations {
|
|
|
124840
125413
|
matchReservationProcessorBookingRef?: string | null;
|
|
124841
125414
|
matchLineTypeClassification?: string | null;
|
|
124842
125415
|
}[];
|
|
124843
|
-
/** @description Expense attachment IDs returned by POST /transactions/attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
|
|
125416
|
+
/** @description Expense attachment IDs returned as attachmentId by POST /transactions/attachments after PUT to uploadUrl succeeds. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
|
|
124844
125417
|
attachmentIds?: string[] | null;
|
|
124845
125418
|
/** @description Expense payment and reconciliation state */
|
|
124846
125419
|
payment?: {
|
|
@@ -125037,7 +125610,7 @@ export interface operations {
|
|
|
125037
125610
|
} | null;
|
|
125038
125611
|
} | null;
|
|
125039
125612
|
}[];
|
|
125040
|
-
/** @description Expense attachment IDs returned by POST /transactions/attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
|
|
125613
|
+
/** @description Expense attachment IDs returned as attachmentId by POST /transactions/attachments after PUT to uploadUrl succeeds. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
|
|
125041
125614
|
attachmentIds?: string[] | null;
|
|
125042
125615
|
recurringTemplateId?: string | null;
|
|
125043
125616
|
matchBankAccountLast4?: string | null;
|
|
@@ -125432,7 +126005,17 @@ export interface operations {
|
|
|
125432
126005
|
path?: never;
|
|
125433
126006
|
cookie?: never;
|
|
125434
126007
|
};
|
|
125435
|
-
requestBody?:
|
|
126008
|
+
requestBody?: {
|
|
126009
|
+
content: {
|
|
126010
|
+
"application/json": {
|
|
126011
|
+
filename: string;
|
|
126012
|
+
contentType: string;
|
|
126013
|
+
fileSize: number;
|
|
126014
|
+
/** @default false */
|
|
126015
|
+
isOwnerAccessible?: boolean;
|
|
126016
|
+
};
|
|
126017
|
+
};
|
|
126018
|
+
};
|
|
125436
126019
|
responses: {
|
|
125437
126020
|
/** @description Successful response */
|
|
125438
126021
|
200: {
|
|
@@ -125442,19 +126025,262 @@ export interface operations {
|
|
|
125442
126025
|
content: {
|
|
125443
126026
|
"application/json": {
|
|
125444
126027
|
/** Format: uuid */
|
|
125445
|
-
|
|
125446
|
-
|
|
125447
|
-
|
|
125448
|
-
|
|
125449
|
-
|
|
125450
|
-
|
|
125451
|
-
|
|
125452
|
-
|
|
125453
|
-
|
|
125454
|
-
|
|
125455
|
-
|
|
125456
|
-
|
|
125457
|
-
|
|
126028
|
+
attachmentId: string;
|
|
126029
|
+
/** Format: date-time */
|
|
126030
|
+
expiresAt: string;
|
|
126031
|
+
uploadRef: string;
|
|
126032
|
+
/** Format: uri */
|
|
126033
|
+
uploadUrl: string;
|
|
126034
|
+
};
|
|
126035
|
+
};
|
|
126036
|
+
};
|
|
126037
|
+
/** @description Bad request */
|
|
126038
|
+
400: {
|
|
126039
|
+
headers: {
|
|
126040
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
126041
|
+
"Retry-After"?: number;
|
|
126042
|
+
[name: string]: unknown;
|
|
126043
|
+
};
|
|
126044
|
+
content: {
|
|
126045
|
+
"application/json": {
|
|
126046
|
+
code: string;
|
|
126047
|
+
message: string;
|
|
126048
|
+
links?: {
|
|
126049
|
+
docs: string;
|
|
126050
|
+
schema: string;
|
|
126051
|
+
};
|
|
126052
|
+
issues?: {
|
|
126053
|
+
message: string;
|
|
126054
|
+
path?: (string | number)[];
|
|
126055
|
+
schema?: string;
|
|
126056
|
+
}[];
|
|
126057
|
+
retryable?: boolean;
|
|
126058
|
+
context?: unknown;
|
|
126059
|
+
};
|
|
126060
|
+
};
|
|
126061
|
+
};
|
|
126062
|
+
/** @description Unauthorized */
|
|
126063
|
+
401: {
|
|
126064
|
+
headers: {
|
|
126065
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
126066
|
+
"Retry-After"?: number;
|
|
126067
|
+
[name: string]: unknown;
|
|
126068
|
+
};
|
|
126069
|
+
content: {
|
|
126070
|
+
"application/json": {
|
|
126071
|
+
code: string;
|
|
126072
|
+
message: string;
|
|
126073
|
+
links?: {
|
|
126074
|
+
docs: string;
|
|
126075
|
+
schema: string;
|
|
126076
|
+
};
|
|
126077
|
+
issues?: {
|
|
126078
|
+
message: string;
|
|
126079
|
+
path?: (string | number)[];
|
|
126080
|
+
schema?: string;
|
|
126081
|
+
}[];
|
|
126082
|
+
retryable?: boolean;
|
|
126083
|
+
context?: unknown;
|
|
126084
|
+
};
|
|
126085
|
+
};
|
|
126086
|
+
};
|
|
126087
|
+
/** @description Forbidden */
|
|
126088
|
+
403: {
|
|
126089
|
+
headers: {
|
|
126090
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
126091
|
+
"Retry-After"?: number;
|
|
126092
|
+
[name: string]: unknown;
|
|
126093
|
+
};
|
|
126094
|
+
content: {
|
|
126095
|
+
"application/json": {
|
|
126096
|
+
code: string;
|
|
126097
|
+
message: string;
|
|
126098
|
+
links?: {
|
|
126099
|
+
docs: string;
|
|
126100
|
+
schema: string;
|
|
126101
|
+
};
|
|
126102
|
+
issues?: {
|
|
126103
|
+
message: string;
|
|
126104
|
+
path?: (string | number)[];
|
|
126105
|
+
schema?: string;
|
|
126106
|
+
}[];
|
|
126107
|
+
retryable?: boolean;
|
|
126108
|
+
context?: unknown;
|
|
126109
|
+
};
|
|
126110
|
+
};
|
|
126111
|
+
};
|
|
126112
|
+
/** @description Not found */
|
|
126113
|
+
404: {
|
|
126114
|
+
headers: {
|
|
126115
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
126116
|
+
"Retry-After"?: number;
|
|
126117
|
+
[name: string]: unknown;
|
|
126118
|
+
};
|
|
126119
|
+
content: {
|
|
126120
|
+
"application/json": {
|
|
126121
|
+
code: string;
|
|
126122
|
+
message: string;
|
|
126123
|
+
links?: {
|
|
126124
|
+
docs: string;
|
|
126125
|
+
schema: string;
|
|
126126
|
+
};
|
|
126127
|
+
issues?: {
|
|
126128
|
+
message: string;
|
|
126129
|
+
path?: (string | number)[];
|
|
126130
|
+
schema?: string;
|
|
126131
|
+
}[];
|
|
126132
|
+
retryable?: boolean;
|
|
126133
|
+
context?: unknown;
|
|
126134
|
+
};
|
|
126135
|
+
};
|
|
126136
|
+
};
|
|
126137
|
+
/** @description Conflict */
|
|
126138
|
+
409: {
|
|
126139
|
+
headers: {
|
|
126140
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
126141
|
+
"Retry-After"?: number;
|
|
126142
|
+
[name: string]: unknown;
|
|
126143
|
+
};
|
|
126144
|
+
content: {
|
|
126145
|
+
"application/json": {
|
|
126146
|
+
code: string;
|
|
126147
|
+
message: string;
|
|
126148
|
+
links?: {
|
|
126149
|
+
docs: string;
|
|
126150
|
+
schema: string;
|
|
126151
|
+
};
|
|
126152
|
+
issues?: {
|
|
126153
|
+
message: string;
|
|
126154
|
+
path?: (string | number)[];
|
|
126155
|
+
schema?: string;
|
|
126156
|
+
}[];
|
|
126157
|
+
retryable?: boolean;
|
|
126158
|
+
context?: unknown;
|
|
126159
|
+
};
|
|
126160
|
+
};
|
|
126161
|
+
};
|
|
126162
|
+
/** @description Gone */
|
|
126163
|
+
410: {
|
|
126164
|
+
headers: {
|
|
126165
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
126166
|
+
"Retry-After"?: number;
|
|
126167
|
+
[name: string]: unknown;
|
|
126168
|
+
};
|
|
126169
|
+
content: {
|
|
126170
|
+
"application/json": {
|
|
126171
|
+
code: string;
|
|
126172
|
+
message: string;
|
|
126173
|
+
links?: {
|
|
126174
|
+
docs: string;
|
|
126175
|
+
schema: string;
|
|
126176
|
+
};
|
|
126177
|
+
issues?: {
|
|
126178
|
+
message: string;
|
|
126179
|
+
path?: (string | number)[];
|
|
126180
|
+
schema?: string;
|
|
126181
|
+
}[];
|
|
126182
|
+
retryable?: boolean;
|
|
126183
|
+
context?: unknown;
|
|
126184
|
+
};
|
|
126185
|
+
};
|
|
126186
|
+
};
|
|
126187
|
+
/** @description Unprocessable content */
|
|
126188
|
+
422: {
|
|
126189
|
+
headers: {
|
|
126190
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
126191
|
+
"Retry-After"?: number;
|
|
126192
|
+
[name: string]: unknown;
|
|
126193
|
+
};
|
|
126194
|
+
content: {
|
|
126195
|
+
"application/json": {
|
|
126196
|
+
code: string;
|
|
126197
|
+
message: string;
|
|
126198
|
+
links?: {
|
|
126199
|
+
docs: string;
|
|
126200
|
+
schema: string;
|
|
126201
|
+
};
|
|
126202
|
+
issues?: {
|
|
126203
|
+
message: string;
|
|
126204
|
+
path?: (string | number)[];
|
|
126205
|
+
schema?: string;
|
|
126206
|
+
}[];
|
|
126207
|
+
retryable?: boolean;
|
|
126208
|
+
context?: unknown;
|
|
126209
|
+
};
|
|
126210
|
+
};
|
|
126211
|
+
};
|
|
126212
|
+
/** @description Internal server error */
|
|
126213
|
+
500: {
|
|
126214
|
+
headers: {
|
|
126215
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
126216
|
+
"Retry-After"?: number;
|
|
126217
|
+
[name: string]: unknown;
|
|
126218
|
+
};
|
|
126219
|
+
content: {
|
|
126220
|
+
"application/json": {
|
|
126221
|
+
code: string;
|
|
126222
|
+
message: string;
|
|
126223
|
+
links?: {
|
|
126224
|
+
docs: string;
|
|
126225
|
+
schema: string;
|
|
126226
|
+
};
|
|
126227
|
+
issues?: {
|
|
126228
|
+
message: string;
|
|
126229
|
+
path?: (string | number)[];
|
|
126230
|
+
schema?: string;
|
|
126231
|
+
}[];
|
|
126232
|
+
retryable?: boolean;
|
|
126233
|
+
context?: unknown;
|
|
126234
|
+
};
|
|
126235
|
+
};
|
|
126236
|
+
};
|
|
126237
|
+
/** @description Service unavailable */
|
|
126238
|
+
503: {
|
|
126239
|
+
headers: {
|
|
126240
|
+
/** @description Seconds to wait when retryable=true and the server supplies a delay. */
|
|
126241
|
+
"Retry-After"?: number;
|
|
126242
|
+
[name: string]: unknown;
|
|
126243
|
+
};
|
|
126244
|
+
content: {
|
|
126245
|
+
"application/json": {
|
|
126246
|
+
code: string;
|
|
126247
|
+
message: string;
|
|
126248
|
+
links?: {
|
|
126249
|
+
docs: string;
|
|
126250
|
+
schema: string;
|
|
126251
|
+
};
|
|
126252
|
+
issues?: {
|
|
126253
|
+
message: string;
|
|
126254
|
+
path?: (string | number)[];
|
|
126255
|
+
schema?: string;
|
|
126256
|
+
}[];
|
|
126257
|
+
retryable?: boolean;
|
|
126258
|
+
context?: unknown;
|
|
126259
|
+
};
|
|
126260
|
+
};
|
|
126261
|
+
};
|
|
126262
|
+
};
|
|
126263
|
+
};
|
|
126264
|
+
putTransactionsAttachmentsUploadsByUploadRef: {
|
|
126265
|
+
parameters: {
|
|
126266
|
+
query?: never;
|
|
126267
|
+
header?: never;
|
|
126268
|
+
path: {
|
|
126269
|
+
uploadRef: string;
|
|
126270
|
+
};
|
|
126271
|
+
cookie?: never;
|
|
126272
|
+
};
|
|
126273
|
+
requestBody?: never;
|
|
126274
|
+
responses: {
|
|
126275
|
+
/** @description Successful response */
|
|
126276
|
+
200: {
|
|
126277
|
+
headers: {
|
|
126278
|
+
[name: string]: unknown;
|
|
126279
|
+
};
|
|
126280
|
+
content: {
|
|
126281
|
+
"application/json": {
|
|
126282
|
+
/** @constant */
|
|
126283
|
+
status: "uploaded";
|
|
125458
126284
|
};
|
|
125459
126285
|
};
|
|
125460
126286
|
};
|
|
@@ -126523,7 +127349,7 @@ export interface operations {
|
|
|
126523
127349
|
matchReservationProcessorBookingRef?: string | null;
|
|
126524
127350
|
matchLineTypeClassification?: string | null;
|
|
126525
127351
|
}[];
|
|
126526
|
-
/** @description Expense attachment IDs returned by POST /transactions/attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
|
|
127352
|
+
/** @description Expense attachment IDs returned as attachmentId by POST /transactions/attachments after PUT to uploadUrl succeeds. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
|
|
126527
127353
|
attachmentIds?: string[] | null;
|
|
126528
127354
|
/** @description Expense payment and reconciliation state */
|
|
126529
127355
|
payment?: {
|
|
@@ -130674,7 +131500,7 @@ export interface operations {
|
|
|
130674
131500
|
} | null;
|
|
130675
131501
|
} | null;
|
|
130676
131502
|
}[];
|
|
130677
|
-
/** @description Expense attachment IDs returned by POST /transactions/attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
|
|
131503
|
+
/** @description Expense attachment IDs returned as attachmentId by POST /transactions/attachments after PUT to uploadUrl succeeds. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
|
|
130678
131504
|
attachmentIds?: string[] | null;
|
|
130679
131505
|
recurringTemplateId?: string | null;
|
|
130680
131506
|
matchBankAccountLast4?: string | null;
|
|
@@ -131216,7 +132042,7 @@ export interface operations {
|
|
|
131216
132042
|
} | null;
|
|
131217
132043
|
} | null;
|
|
131218
132044
|
}[];
|
|
131219
|
-
/** @description Expense attachment IDs returned by POST /transactions/attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
|
|
132045
|
+
/** @description Expense attachment IDs returned as attachmentId by POST /transactions/attachments after PUT to uploadUrl succeeds. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
|
|
131220
132046
|
attachmentIds?: string[] | null;
|
|
131221
132047
|
recurringTemplateId?: string | null;
|
|
131222
132048
|
matchBankAccountLast4?: string | null;
|
|
@@ -131663,7 +132489,7 @@ export interface operations {
|
|
|
131663
132489
|
type?: "deposit" | "expense" | "transfer" | "payout";
|
|
131664
132490
|
date?: string;
|
|
131665
132491
|
currency?: string | null;
|
|
131666
|
-
/** @description Expense attachment IDs returned by POST /transactions/attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
|
|
132492
|
+
/** @description Expense attachment IDs returned as attachmentId by POST /transactions/attachments after PUT to uploadUrl succeeds. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
|
|
131667
132493
|
attachmentIds?: string[] | null;
|
|
131668
132494
|
/** @description Expense payment and reconciliation state */
|
|
131669
132495
|
payment?: {
|
|
@@ -131967,7 +132793,7 @@ export interface operations {
|
|
|
131967
132793
|
} | null;
|
|
131968
132794
|
} | null;
|
|
131969
132795
|
}[];
|
|
131970
|
-
/** @description Expense attachment IDs returned by POST /transactions/attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
|
|
132796
|
+
/** @description Expense attachment IDs returned as attachmentId by POST /transactions/attachments after PUT to uploadUrl succeeds. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
|
|
131971
132797
|
attachmentIds?: string[] | null;
|
|
131972
132798
|
recurringTemplateId?: string | null;
|
|
131973
132799
|
matchBankAccountLast4?: string | null;
|
|
@@ -133629,7 +134455,7 @@ export interface operations {
|
|
|
133629
134455
|
} | null;
|
|
133630
134456
|
} | null;
|
|
133631
134457
|
}[];
|
|
133632
|
-
/** @description Expense attachment IDs returned by POST /transactions/attachments. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
|
|
134458
|
+
/** @description Expense attachment IDs returned as attachmentId by POST /transactions/attachments after PUT to uploadUrl succeeds. Only expense transactions support attachments. Omit to leave existing attachments unchanged on update; send an array to replace the attached set. */
|
|
133633
134459
|
attachmentIds?: string[] | null;
|
|
133634
134460
|
recurringTemplateId?: string | null;
|
|
133635
134461
|
matchBankAccountLast4?: string | null;
|