@vrplatform/api 1.3.1-stage.1429 → 1.3.1-stage.1430
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.
|
@@ -65,9 +65,9 @@ export interface paths {
|
|
|
65
65
|
cookie?: never;
|
|
66
66
|
};
|
|
67
67
|
get?: never;
|
|
68
|
+
put?: never;
|
|
68
69
|
/** @description Recalculate balances for an account by ID */
|
|
69
|
-
|
|
70
|
-
post?: never;
|
|
70
|
+
post: operations["postAccounts:idRecalculate-balances"];
|
|
71
71
|
delete?: never;
|
|
72
72
|
options?: never;
|
|
73
73
|
head?: never;
|
|
@@ -3361,7 +3361,7 @@ export interface operations {
|
|
|
3361
3361
|
};
|
|
3362
3362
|
};
|
|
3363
3363
|
};
|
|
3364
|
-
"
|
|
3364
|
+
"postAccounts:idRecalculate-balances": {
|
|
3365
3365
|
parameters: {
|
|
3366
3366
|
query?: never;
|
|
3367
3367
|
header?: never;
|
|
@@ -3372,23 +3372,7 @@ export interface operations {
|
|
|
3372
3372
|
};
|
|
3373
3373
|
requestBody?: {
|
|
3374
3374
|
content: {
|
|
3375
|
-
"application/json":
|
|
3376
|
-
name?: string;
|
|
3377
|
-
/** @enum {string} */
|
|
3378
|
-
status?: "active" | "inactive";
|
|
3379
|
-
/** @enum {string} */
|
|
3380
|
-
type?: "ledger" | "bank" | "recurringFee" | "nonPosting";
|
|
3381
|
-
assignments?: ("accountsPayable" | "accountsReceivable" | "cancellationRevenue" | "deferredRevenue" | "deposit_channelFee" | "deposit_coHostPayout" | "deposit_merchantFee" | "openingBalance" | "deposit_reserve" | "deposit_vat" | "expense_markup" | "expense_reimbursement" | "expense_salesTax" | "transfer_ownerPayout" | "transfer")[] | null;
|
|
3382
|
-
offsetAccountId?: string | null;
|
|
3383
|
-
categoryId?: string;
|
|
3384
|
-
banking?: {
|
|
3385
|
-
category?: ("trust" | "operating" | "external") | null;
|
|
3386
|
-
type?: ("deposit" | "creditCard") | null;
|
|
3387
|
-
last4?: string | null;
|
|
3388
|
-
currency?: string | null;
|
|
3389
|
-
} | null;
|
|
3390
|
-
uniqueRef?: string | null;
|
|
3391
|
-
};
|
|
3375
|
+
"application/json": Record<string, never>;
|
|
3392
3376
|
};
|
|
3393
3377
|
};
|
|
3394
3378
|
responses: {
|