@vrplatform/api 1.3.1-stage.4738 → 1.3.1-stage.4741

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.4738",
6
+ "version": "1.3.1-stage.4741",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -1793,6 +1793,23 @@ export interface paths {
1793
1793
  patch?: never;
1794
1794
  trace?: never;
1795
1795
  };
1796
+ "/internal/teams/{tenantId}/billing-state": {
1797
+ parameters: {
1798
+ query?: never;
1799
+ header?: never;
1800
+ path?: never;
1801
+ cookie?: never;
1802
+ };
1803
+ get?: never;
1804
+ /** @description Apply the current external billing state to one team. Omitted fields remain unchanged and explicit null values clear nullable fields. The x-team-id routing header must match tenantId. */
1805
+ put: operations["putInternalTeamsByTenantIdBillingState"];
1806
+ post?: never;
1807
+ delete?: never;
1808
+ options?: never;
1809
+ head?: never;
1810
+ patch?: never;
1811
+ trace?: never;
1812
+ };
1796
1813
  "/internal/users": {
1797
1814
  parameters: {
1798
1815
  query?: never;
@@ -31319,6 +31336,7 @@ export interface operations {
31319
31336
  id: string;
31320
31337
  name: string;
31321
31338
  } | null;
31339
+ billingPartnerId: string | null;
31322
31340
  companyName?: string | null;
31323
31341
  /** @enum {string} */
31324
31342
  type: "partner" | "admin" | "propertyManager";
@@ -31327,7 +31345,7 @@ export interface operations {
31327
31345
  billingSubscriptionStatus?: string | null;
31328
31346
  billingPlan?: string | null;
31329
31347
  billingPaymentMethodType?: string | null;
31330
- billingCustomerId?: string | null;
31348
+ billingCustomerId: string | null;
31331
31349
  colorPrimary?: string | null;
31332
31350
  createdAt?: string | null;
31333
31351
  updatedAt?: string | null;
@@ -31653,6 +31671,7 @@ export interface operations {
31653
31671
  id: string;
31654
31672
  name: string;
31655
31673
  } | null;
31674
+ billingPartnerId: string | null;
31656
31675
  companyName?: string | null;
31657
31676
  /** @enum {string} */
31658
31677
  type: "partner" | "admin" | "propertyManager";
@@ -31661,7 +31680,7 @@ export interface operations {
31661
31680
  billingSubscriptionStatus?: string | null;
31662
31681
  billingPlan?: string | null;
31663
31682
  billingPaymentMethodType?: string | null;
31664
- billingCustomerId?: string | null;
31683
+ billingCustomerId: string | null;
31665
31684
  colorPrimary?: string | null;
31666
31685
  createdAt?: string | null;
31667
31686
  updatedAt?: string | null;
@@ -32285,6 +32304,176 @@ export interface operations {
32285
32304
  };
32286
32305
  };
32287
32306
  };
32307
+ putInternalTeamsByTenantIdBillingState: {
32308
+ parameters: {
32309
+ query?: never;
32310
+ header?: never;
32311
+ path: {
32312
+ tenantId: string;
32313
+ };
32314
+ cookie?: never;
32315
+ };
32316
+ requestBody?: {
32317
+ content: {
32318
+ "application/json": {
32319
+ billingCustomerId?: string | null;
32320
+ billingPlan?: string | null;
32321
+ billingPaymentMethodType?: string | null;
32322
+ billingSubscriptionStatus?: string | null;
32323
+ trialUntil?: string | null;
32324
+ cancelledAt?: string | null;
32325
+ /** @enum {string} */
32326
+ status?: "active" | "inactive";
32327
+ };
32328
+ };
32329
+ };
32330
+ responses: {
32331
+ /** @description Successful response */
32332
+ 200: {
32333
+ headers: {
32334
+ [name: string]: unknown;
32335
+ };
32336
+ content: {
32337
+ "application/json": {
32338
+ /** Format: uuid */
32339
+ id: string;
32340
+ };
32341
+ };
32342
+ };
32343
+ /** @description Bad request */
32344
+ 400: {
32345
+ headers: {
32346
+ [name: string]: unknown;
32347
+ };
32348
+ content: {
32349
+ "application/json": {
32350
+ code: string;
32351
+ message: string;
32352
+ links?: {
32353
+ docs: string;
32354
+ schema: string;
32355
+ };
32356
+ issues?: {
32357
+ message: string;
32358
+ path?: (string | number)[];
32359
+ schema?: string;
32360
+ }[];
32361
+ context?: unknown;
32362
+ };
32363
+ };
32364
+ };
32365
+ /** @description Unauthorized */
32366
+ 401: {
32367
+ headers: {
32368
+ [name: string]: unknown;
32369
+ };
32370
+ content: {
32371
+ "application/json": {
32372
+ code: string;
32373
+ message: string;
32374
+ links?: {
32375
+ docs: string;
32376
+ schema: string;
32377
+ };
32378
+ issues?: {
32379
+ message: string;
32380
+ path?: (string | number)[];
32381
+ schema?: string;
32382
+ }[];
32383
+ context?: unknown;
32384
+ };
32385
+ };
32386
+ };
32387
+ /** @description Forbidden */
32388
+ 403: {
32389
+ headers: {
32390
+ [name: string]: unknown;
32391
+ };
32392
+ content: {
32393
+ "application/json": {
32394
+ code: string;
32395
+ message: string;
32396
+ links?: {
32397
+ docs: string;
32398
+ schema: string;
32399
+ };
32400
+ issues?: {
32401
+ message: string;
32402
+ path?: (string | number)[];
32403
+ schema?: string;
32404
+ }[];
32405
+ context?: unknown;
32406
+ };
32407
+ };
32408
+ };
32409
+ /** @description Not found */
32410
+ 404: {
32411
+ headers: {
32412
+ [name: string]: unknown;
32413
+ };
32414
+ content: {
32415
+ "application/json": {
32416
+ code: string;
32417
+ message: string;
32418
+ links?: {
32419
+ docs: string;
32420
+ schema: string;
32421
+ };
32422
+ issues?: {
32423
+ message: string;
32424
+ path?: (string | number)[];
32425
+ schema?: string;
32426
+ }[];
32427
+ context?: unknown;
32428
+ };
32429
+ };
32430
+ };
32431
+ /** @description Internal server error */
32432
+ 500: {
32433
+ headers: {
32434
+ [name: string]: unknown;
32435
+ };
32436
+ content: {
32437
+ "application/json": {
32438
+ code: string;
32439
+ message: string;
32440
+ links?: {
32441
+ docs: string;
32442
+ schema: string;
32443
+ };
32444
+ issues?: {
32445
+ message: string;
32446
+ path?: (string | number)[];
32447
+ schema?: string;
32448
+ }[];
32449
+ context?: unknown;
32450
+ };
32451
+ };
32452
+ };
32453
+ /** @description Service unavailable */
32454
+ 503: {
32455
+ headers: {
32456
+ [name: string]: unknown;
32457
+ };
32458
+ content: {
32459
+ "application/json": {
32460
+ code: string;
32461
+ message: string;
32462
+ links?: {
32463
+ docs: string;
32464
+ schema: string;
32465
+ };
32466
+ issues?: {
32467
+ message: string;
32468
+ path?: (string | number)[];
32469
+ schema?: string;
32470
+ }[];
32471
+ context?: unknown;
32472
+ };
32473
+ };
32474
+ };
32475
+ };
32476
+ };
32288
32477
  getInternalUsers: {
32289
32478
  parameters: {
32290
32479
  query?: {
@@ -78448,6 +78637,7 @@ export interface operations {
78448
78637
  id: string;
78449
78638
  name: string;
78450
78639
  } | null;
78640
+ billingPartnerId: string | null;
78451
78641
  companyName?: string | null;
78452
78642
  /** @enum {string} */
78453
78643
  type: "partner" | "admin" | "propertyManager";
@@ -78456,7 +78646,7 @@ export interface operations {
78456
78646
  billingSubscriptionStatus?: string | null;
78457
78647
  billingPlan?: string | null;
78458
78648
  billingPaymentMethodType?: string | null;
78459
- billingCustomerId?: string | null;
78649
+ billingCustomerId: string | null;
78460
78650
  colorPrimary?: string | null;
78461
78651
  createdAt?: string | null;
78462
78652
  updatedAt?: string | null;
@@ -78846,6 +79036,7 @@ export interface operations {
78846
79036
  id: string;
78847
79037
  name: string;
78848
79038
  } | null;
79039
+ billingPartnerId: string | null;
78849
79040
  companyName?: string | null;
78850
79041
  /** @enum {string} */
78851
79042
  type: "partner" | "admin" | "propertyManager";
@@ -78854,7 +79045,7 @@ export interface operations {
78854
79045
  billingSubscriptionStatus?: string | null;
78855
79046
  billingPlan?: string | null;
78856
79047
  billingPaymentMethodType?: string | null;
78857
- billingCustomerId?: string | null;
79048
+ billingCustomerId: string | null;
78858
79049
  colorPrimary?: string | null;
78859
79050
  createdAt?: string | null;
78860
79051
  updatedAt?: string | null;
@@ -80124,6 +80315,7 @@ export interface operations {
80124
80315
  id: string;
80125
80316
  name: string;
80126
80317
  } | null;
80318
+ billingPartnerId: string | null;
80127
80319
  companyName?: string | null;
80128
80320
  /** @enum {string} */
80129
80321
  type: "partner" | "admin" | "propertyManager";
@@ -80132,7 +80324,7 @@ export interface operations {
80132
80324
  billingSubscriptionStatus?: string | null;
80133
80325
  billingPlan?: string | null;
80134
80326
  billingPaymentMethodType?: string | null;
80135
- billingCustomerId?: string | null;
80327
+ billingCustomerId: string | null;
80136
80328
  colorPrimary?: string | null;
80137
80329
  createdAt?: string | null;
80138
80330
  updatedAt?: string | null;
@@ -81498,7 +81690,7 @@ export interface operations {
81498
81690
  billingSubscriptionStatus?: string | null;
81499
81691
  billingPlan?: string | null;
81500
81692
  billingPaymentMethodType?: string | null;
81501
- billingCustomerId?: string | null;
81693
+ billingCustomerId: string | null;
81502
81694
  colorPrimary?: string | null;
81503
81695
  createdAt?: string | null;
81504
81696
  updatedAt?: string | null;
@@ -81883,6 +82075,7 @@ export interface operations {
81883
82075
  id: string;
81884
82076
  name: string;
81885
82077
  } | null;
82078
+ billingPartnerId: string | null;
81886
82079
  companyName?: string | null;
81887
82080
  /** @enum {string} */
81888
82081
  type: "partner" | "admin" | "propertyManager";
@@ -81891,7 +82084,7 @@ export interface operations {
81891
82084
  billingSubscriptionStatus?: string | null;
81892
82085
  billingPlan?: string | null;
81893
82086
  billingPaymentMethodType?: string | null;
81894
- billingCustomerId?: string | null;
82087
+ billingCustomerId: string | null;
81895
82088
  colorPrimary?: string | null;
81896
82089
  createdAt?: string | null;
81897
82090
  updatedAt?: string | null;
@@ -83077,7 +83270,7 @@ export interface operations {
83077
83270
  billingSubscriptionStatus?: string | null;
83078
83271
  billingPlan?: string | null;
83079
83272
  billingPaymentMethodType?: string | null;
83080
- billingCustomerId?: string | null;
83273
+ billingCustomerId: string | null;
83081
83274
  colorPrimary?: string | null;
83082
83275
  createdAt?: string | null;
83083
83276
  updatedAt?: string | null;
@@ -83405,7 +83598,7 @@ export interface operations {
83405
83598
  billingSubscriptionStatus?: string | null;
83406
83599
  billingPlan?: string | null;
83407
83600
  billingPaymentMethodType?: string | null;
83408
- billingCustomerId?: string | null;
83601
+ billingCustomerId: string | null;
83409
83602
  colorPrimary?: string | null;
83410
83603
  createdAt?: string | null;
83411
83604
  updatedAt?: string | null;
@@ -83511,6 +83704,7 @@ export interface operations {
83511
83704
  };
83512
83705
  /** Format: uri */
83513
83706
  apiBaseUrl: string;
83707
+ billingPartnerId: string | null;
83514
83708
  };
83515
83709
  };
83516
83710
  };