@vrplatform/api 1.3.1-stage.4542 → 1.3.1-stage.4545

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
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.3.1-stage.4542",
6
+ "version": "1.3.1-stage.4545",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -1840,7 +1840,7 @@ export interface paths {
1840
1840
  path?: never;
1841
1841
  cookie?: never;
1842
1842
  };
1843
- /** @description UI bootstrap call: the authenticated user plus the resolved team (embedded-session team, x-team-id header, or the oldest active membership), including membership, owner access, effective feature IDs, issue counts, and frontend setup context. Embedded identities use sub instead of email, so user.email is null for them. */
1843
+ /** @description UI bootstrap call: the authenticated user plus the resolved team (embedded-session team, x-team-id header, or the oldest active membership), including placement, partner managed-team region discovery, membership, owner access, effective feature IDs, issue counts, and frontend setup context. Embedded identities use sub instead of email, so user.email is null for them. */
1844
1844
  get: operations["getMe"];
1845
1845
  put?: never;
1846
1846
  post?: never;
@@ -2297,7 +2297,7 @@ export interface paths {
2297
2297
  path?: never;
2298
2298
  cookie?: never;
2299
2299
  };
2300
- /** @description List users across the partner portfolio (the partner and all of its teams) with their team memberships and owner accesses */
2300
+ /** @description List users across one regional partition of the partner portfolio with their team memberships and owner accesses. Select the partition with x-data-region. */
2301
2301
  get: operations["getPartnerUsers"];
2302
2302
  put?: never;
2303
2303
  post?: never;
@@ -2314,7 +2314,7 @@ export interface paths {
2314
2314
  path?: never;
2315
2315
  cookie?: never;
2316
2316
  };
2317
- /** @description Get a single portfolio user with their memberships across the partner and all of its teams, plus owner accesses */
2317
+ /** @description Get a single portfolio user with memberships and owner accesses from one regional partition. Select the partition with x-data-region. */
2318
2318
  get: operations["getPartnerUser"];
2319
2319
  put?: never;
2320
2320
  post?: never;
@@ -3871,7 +3871,7 @@ export interface paths {
3871
3871
  path?: never;
3872
3872
  cookie?: never;
3873
3873
  };
3874
- /** @description Get List of all Teams */
3874
+ /** @description List accessible teams in one regional data partition. Partner callers can select the partition with x-data-region. */
3875
3875
  get: operations["getTeams"];
3876
3876
  put?: never;
3877
3877
  /** @description Create team */
@@ -3889,7 +3889,7 @@ export interface paths {
3889
3889
  path?: never;
3890
3890
  cookie?: never;
3891
3891
  };
3892
- /** @description List cursor-paginated materialized issue summaries across accessible teams. */
3892
+ /** @description List cursor-paginated materialized issue summaries across accessible teams in one regional data partition. Partner callers can select the partition with x-data-region. */
3893
3893
  get: operations["getTeamsIssues"];
3894
3894
  put?: never;
3895
3895
  post?: never;
@@ -3906,7 +3906,7 @@ export interface paths {
3906
3906
  path?: never;
3907
3907
  cookie?: never;
3908
3908
  };
3909
- /** @description Look up teams by name */
3909
+ /** @description Look up accessible teams by name in one regional data partition. Partner callers can select the partition with x-data-region. */
3910
3910
  get: operations["getTeamsLookup"];
3911
3911
  put?: never;
3912
3912
  post?: never;
@@ -35302,6 +35302,10 @@ export interface operations {
35302
35302
  name: string | null;
35303
35303
  slug: string;
35304
35304
  /** @enum {string} */
35305
+ dataRegion: "ap" | "crunchy" | "eu" | "hostaway" | "us";
35306
+ /** Format: uri */
35307
+ apiBaseUrl: string;
35308
+ /** @enum {string} */
35305
35309
  type: "propertyManager" | "partner";
35306
35310
  partnerId: string | null;
35307
35311
  isGeneralLedger: boolean;
@@ -35375,6 +35379,18 @@ export interface operations {
35375
35379
  ownerNeedsReviewId: string | null;
35376
35380
  guideOnboardingStatus: ("skipped" | "completed") | null;
35377
35381
  } | null;
35382
+ partnerContext: {
35383
+ managedTeamRegions: {
35384
+ /** @enum {string} */
35385
+ dataRegion: "ap" | "crunchy" | "eu" | "hostaway" | "us";
35386
+ /** Format: uri */
35387
+ apiBaseUrl: string;
35388
+ counts: {
35389
+ active: number;
35390
+ inactive: number;
35391
+ };
35392
+ }[];
35393
+ } | null;
35378
35394
  };
35379
35395
  };
35380
35396
  };
@@ -39776,7 +39792,10 @@ export interface operations {
39776
39792
  page?: number;
39777
39793
  offset?: number;
39778
39794
  };
39779
- header?: never;
39795
+ header?: {
39796
+ /** @description Selects the regional data partition for this partner portfolio read. It does not change the authenticated team context. */
39797
+ "x-data-region"?: "ap" | "crunchy" | "eu" | "hostaway" | "us";
39798
+ };
39780
39799
  path?: never;
39781
39800
  cookie?: never;
39782
39801
  };
@@ -39968,7 +39987,10 @@ export interface operations {
39968
39987
  getPartnerUser: {
39969
39988
  parameters: {
39970
39989
  query?: never;
39971
- header?: never;
39990
+ header?: {
39991
+ /** @description Selects the regional data partition for this partner portfolio read. It does not change the authenticated team context. */
39992
+ "x-data-region"?: "ap" | "crunchy" | "eu" | "hostaway" | "us";
39993
+ };
39972
39994
  path: {
39973
39995
  id: string;
39974
39996
  };
@@ -77310,7 +77332,10 @@ export interface operations {
77310
77332
  page?: number;
77311
77333
  offset?: number;
77312
77334
  };
77313
- header?: never;
77335
+ header?: {
77336
+ /** @description Selects the regional data partition for this partner portfolio read. It does not change the authenticated team context. */
77337
+ "x-data-region"?: "ap" | "crunchy" | "eu" | "hostaway" | "us";
77338
+ };
77314
77339
  path?: never;
77315
77340
  cookie?: never;
77316
77341
  };
@@ -78012,7 +78037,10 @@ export interface operations {
78012
78037
  /** @description Opaque pagination cursor returned by a previous response. Pass it back unchanged. */
78013
78038
  cursor?: string;
78014
78039
  };
78015
- header?: never;
78040
+ header?: {
78041
+ /** @description Selects the regional data partition for this partner portfolio read. It does not change the authenticated team context. */
78042
+ "x-data-region"?: "ap" | "crunchy" | "eu" | "hostaway" | "us";
78043
+ };
78016
78044
  path?: never;
78017
78045
  cookie?: never;
78018
78046
  };
@@ -78864,7 +78892,10 @@ export interface operations {
78864
78892
  page?: number;
78865
78893
  offset?: number;
78866
78894
  };
78867
- header?: never;
78895
+ header?: {
78896
+ /** @description Selects the regional data partition for this partner portfolio read. It does not change the authenticated team context. */
78897
+ "x-data-region"?: "ap" | "crunchy" | "eu" | "hostaway" | "us";
78898
+ };
78868
78899
  path?: never;
78869
78900
  cookie?: never;
78870
78901
  };