@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.
@@ -1839,7 +1839,7 @@ export interface paths {
1839
1839
  path?: never;
1840
1840
  cookie?: never;
1841
1841
  };
1842
- /** @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. */
1842
+ /** @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. */
1843
1843
  get: operations["getMe"];
1844
1844
  put?: never;
1845
1845
  post?: never;
@@ -2296,7 +2296,7 @@ export interface paths {
2296
2296
  path?: never;
2297
2297
  cookie?: never;
2298
2298
  };
2299
- /** @description List users across the partner portfolio (the partner and all of its teams) with their team memberships and owner accesses */
2299
+ /** @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. */
2300
2300
  get: operations["getPartnerUsers"];
2301
2301
  put?: never;
2302
2302
  post?: never;
@@ -2313,7 +2313,7 @@ export interface paths {
2313
2313
  path?: never;
2314
2314
  cookie?: never;
2315
2315
  };
2316
- /** @description Get a single portfolio user with their memberships across the partner and all of its teams, plus owner accesses */
2316
+ /** @description Get a single portfolio user with memberships and owner accesses from one regional partition. Select the partition with x-data-region. */
2317
2317
  get: operations["getPartnerUser"];
2318
2318
  put?: never;
2319
2319
  post?: never;
@@ -3870,7 +3870,7 @@ export interface paths {
3870
3870
  path?: never;
3871
3871
  cookie?: never;
3872
3872
  };
3873
- /** @description Get List of all Teams */
3873
+ /** @description List accessible teams in one regional data partition. Partner callers can select the partition with x-data-region. */
3874
3874
  get: operations["getTeams"];
3875
3875
  put?: never;
3876
3876
  /** @description Create team */
@@ -3888,7 +3888,7 @@ export interface paths {
3888
3888
  path?: never;
3889
3889
  cookie?: never;
3890
3890
  };
3891
- /** @description List cursor-paginated materialized issue summaries across accessible teams. */
3891
+ /** @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. */
3892
3892
  get: operations["getTeamsIssues"];
3893
3893
  put?: never;
3894
3894
  post?: never;
@@ -3905,7 +3905,7 @@ export interface paths {
3905
3905
  path?: never;
3906
3906
  cookie?: never;
3907
3907
  };
3908
- /** @description Look up teams by name */
3908
+ /** @description Look up accessible teams by name in one regional data partition. Partner callers can select the partition with x-data-region. */
3909
3909
  get: operations["getTeamsLookup"];
3910
3910
  put?: never;
3911
3911
  post?: never;
@@ -35301,6 +35301,10 @@ export interface operations {
35301
35301
  name: string | null;
35302
35302
  slug: string;
35303
35303
  /** @enum {string} */
35304
+ dataRegion: "ap" | "crunchy" | "eu" | "hostaway" | "us";
35305
+ /** Format: uri */
35306
+ apiBaseUrl: string;
35307
+ /** @enum {string} */
35304
35308
  type: "propertyManager" | "partner";
35305
35309
  partnerId: string | null;
35306
35310
  isGeneralLedger: boolean;
@@ -35374,6 +35378,18 @@ export interface operations {
35374
35378
  ownerNeedsReviewId: string | null;
35375
35379
  guideOnboardingStatus: ("skipped" | "completed") | null;
35376
35380
  } | null;
35381
+ partnerContext: {
35382
+ managedTeamRegions: {
35383
+ /** @enum {string} */
35384
+ dataRegion: "ap" | "crunchy" | "eu" | "hostaway" | "us";
35385
+ /** Format: uri */
35386
+ apiBaseUrl: string;
35387
+ counts: {
35388
+ active: number;
35389
+ inactive: number;
35390
+ };
35391
+ }[];
35392
+ } | null;
35377
35393
  };
35378
35394
  };
35379
35395
  };
@@ -39775,7 +39791,10 @@ export interface operations {
39775
39791
  page?: number;
39776
39792
  offset?: number;
39777
39793
  };
39778
- header?: never;
39794
+ header?: {
39795
+ /** @description Selects the regional data partition for this partner portfolio read. It does not change the authenticated team context. */
39796
+ "x-data-region"?: "ap" | "crunchy" | "eu" | "hostaway" | "us";
39797
+ };
39779
39798
  path?: never;
39780
39799
  cookie?: never;
39781
39800
  };
@@ -39967,7 +39986,10 @@ export interface operations {
39967
39986
  getPartnerUser: {
39968
39987
  parameters: {
39969
39988
  query?: never;
39970
- header?: never;
39989
+ header?: {
39990
+ /** @description Selects the regional data partition for this partner portfolio read. It does not change the authenticated team context. */
39991
+ "x-data-region"?: "ap" | "crunchy" | "eu" | "hostaway" | "us";
39992
+ };
39971
39993
  path: {
39972
39994
  id: string;
39973
39995
  };
@@ -77309,7 +77331,10 @@ export interface operations {
77309
77331
  page?: number;
77310
77332
  offset?: number;
77311
77333
  };
77312
- header?: never;
77334
+ header?: {
77335
+ /** @description Selects the regional data partition for this partner portfolio read. It does not change the authenticated team context. */
77336
+ "x-data-region"?: "ap" | "crunchy" | "eu" | "hostaway" | "us";
77337
+ };
77313
77338
  path?: never;
77314
77339
  cookie?: never;
77315
77340
  };
@@ -78011,7 +78036,10 @@ export interface operations {
78011
78036
  /** @description Opaque pagination cursor returned by a previous response. Pass it back unchanged. */
78012
78037
  cursor?: string;
78013
78038
  };
78014
- header?: never;
78039
+ header?: {
78040
+ /** @description Selects the regional data partition for this partner portfolio read. It does not change the authenticated team context. */
78041
+ "x-data-region"?: "ap" | "crunchy" | "eu" | "hostaway" | "us";
78042
+ };
78015
78043
  path?: never;
78016
78044
  cookie?: never;
78017
78045
  };
@@ -78863,7 +78891,10 @@ export interface operations {
78863
78891
  page?: number;
78864
78892
  offset?: number;
78865
78893
  };
78866
- header?: never;
78894
+ header?: {
78895
+ /** @description Selects the regional data partition for this partner portfolio read. It does not change the authenticated team context. */
78896
+ "x-data-region"?: "ap" | "crunchy" | "eu" | "hostaway" | "us";
78897
+ };
78867
78898
  path?: never;
78868
78899
  cookie?: never;
78869
78900
  };