@vrplatform/api 1.3.1-stage.6265 → 1.3.1-stage.6268
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
|
@@ -5758,7 +5758,7 @@ export interface paths {
|
|
|
5758
5758
|
get: operations["getTeams"];
|
|
5759
5759
|
put?: never;
|
|
5760
5760
|
/**
|
|
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.
|
|
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. migratedFromTenantId atomically links a new GL team to a non-GL VRI source managed by the same partner; it is rejected for non-GL targets, GL sources, and sources managed by another partner. 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.
|
|
5762
5762
|
*
|
|
5763
5763
|
* Required scope: teams:provision
|
|
5764
5764
|
*/
|
|
@@ -116511,6 +116511,7 @@ export interface operations {
|
|
|
116511
116511
|
statementStartAt?: string | null;
|
|
116512
116512
|
effectiveStatementStartAt?: string | null;
|
|
116513
116513
|
ownerPortalShowDraftStatements?: boolean;
|
|
116514
|
+
migratedFromTenantId?: string | null;
|
|
116514
116515
|
partnerId?: string | null;
|
|
116515
116516
|
billingPartnerId?: string | null;
|
|
116516
116517
|
/** Format: email */
|
|
@@ -116518,7 +116519,6 @@ export interface operations {
|
|
|
116518
116519
|
supportEmail?: string | null;
|
|
116519
116520
|
/** @description Primary brand color. Send null to clear it. */
|
|
116520
116521
|
colorPrimary?: string | null;
|
|
116521
|
-
migratedFromTenantId?: string | null;
|
|
116522
116522
|
settings?: {
|
|
116523
116523
|
showVRPilotGuide?: boolean;
|
|
116524
116524
|
showReservations?: boolean;
|
|
@@ -122450,6 +122450,11 @@ export interface operations {
|
|
|
122450
122450
|
copyLineMappingsFromPartnerId?: string | null;
|
|
122451
122451
|
include?: ("statementLayouts" | "recurringFees" | "accounts" | "taxRates" | "lineMappings")[];
|
|
122452
122452
|
} | boolean;
|
|
122453
|
+
/**
|
|
122454
|
+
* Format: uuid
|
|
122455
|
+
* @description VRI source team replaced by this new GL team. The source must be a non-GL team managed by the same partner.
|
|
122456
|
+
*/
|
|
122457
|
+
migratedFromTenantId?: string;
|
|
122453
122458
|
partnerId?: string | null;
|
|
122454
122459
|
billingPartnerId?: string | null;
|
|
122455
122460
|
addMembers?: {
|