@vrplatform/api 1.3.0-stage.1298 → 1.3.0-stage.1301

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
@@ -6,7 +6,7 @@
6
6
  "typings": "build/main/index.d.ts",
7
7
  "module": "build/module/index.js"
8
8
  },
9
- "version": "1.3.0-stage.1298",
9
+ "version": "1.3.0-stage.1301",
10
10
  "description": "",
11
11
  "main": "build/main/index.js",
12
12
  "module": "build/module/index.js",
@@ -6026,6 +6026,7 @@ export interface operations {
6026
6026
  parameters: {
6027
6027
  query?: {
6028
6028
  listingId?: string;
6029
+ contactId?: string;
6029
6030
  limit?: number;
6030
6031
  page?: number;
6031
6032
  };
@@ -6047,7 +6048,7 @@ export interface operations {
6047
6048
  data: {
6048
6049
  /** Format: uuid */
6049
6050
  listingId: string;
6050
- /** @default 2025-12-11 */
6051
+ /** @default 2025-12-12 */
6051
6052
  startAt: string;
6052
6053
  endAt?: string | null;
6053
6054
  setListingInactive?: boolean | null;
@@ -6138,7 +6139,7 @@ export interface operations {
6138
6139
  "application/json": {
6139
6140
  /** Format: uuid */
6140
6141
  listingId: string;
6141
- /** @default 2025-12-11 */
6142
+ /** @default 2025-12-12 */
6142
6143
  startAt?: string;
6143
6144
  endAt?: string | null;
6144
6145
  members: {
@@ -6172,7 +6173,7 @@ export interface operations {
6172
6173
  "application/json": {
6173
6174
  /** Format: uuid */
6174
6175
  listingId: string;
6175
- /** @default 2025-12-11 */
6176
+ /** @default 2025-12-12 */
6176
6177
  startAt: string;
6177
6178
  endAt?: string | null;
6178
6179
  setListingInactive?: boolean | null;
@@ -6252,7 +6253,7 @@ export interface operations {
6252
6253
  "application/json": {
6253
6254
  /** Format: uuid */
6254
6255
  listingId: string;
6255
- /** @default 2025-12-11 */
6256
+ /** @default 2025-12-12 */
6256
6257
  startAt: string;
6257
6258
  endAt?: string | null;
6258
6259
  setListingInactive?: boolean | null;
@@ -6335,7 +6336,7 @@ export interface operations {
6335
6336
  "application/json": {
6336
6337
  /** Format: uuid */
6337
6338
  listingId?: string;
6338
- /** @default 2025-12-11 */
6339
+ /** @default 2025-12-12 */
6339
6340
  startAt?: string;
6340
6341
  endAt?: string | null;
6341
6342
  members?: {
@@ -6369,7 +6370,7 @@ export interface operations {
6369
6370
  "application/json": {
6370
6371
  /** Format: uuid */
6371
6372
  listingId: string;
6372
- /** @default 2025-12-11 */
6373
+ /** @default 2025-12-12 */
6373
6374
  startAt: string;
6374
6375
  endAt?: string | null;
6375
6376
  setListingInactive?: boolean | null;
@@ -6629,12 +6630,13 @@ export interface operations {
6629
6630
  };
6630
6631
  content: {
6631
6632
  "application/json": {
6632
- /** Format: uuid */
6633
- id: string;
6633
+ name: string;
6634
6634
  uniqueRef?: string | null;
6635
6635
  /** Format: uuid */
6636
6636
  connectionId?: string | null;
6637
- name: string;
6637
+ /** @enum {string} */
6638
+ status: "active" | "inactive";
6639
+ defaultCurrency?: string | null;
6638
6640
  address?: {
6639
6641
  full?: string | null;
6640
6642
  line1?: string | null;
@@ -6646,9 +6648,8 @@ export interface operations {
6646
6648
  stateCode?: string | null;
6647
6649
  countryCode?: string | null;
6648
6650
  } | null;
6649
- /** @enum {string} */
6650
- status: "active" | "inactive";
6651
- defaultCurrency?: string | null;
6651
+ /** Format: uuid */
6652
+ id: string;
6652
6653
  activeOwnership?: {
6653
6654
  /** Format: uuid */
6654
6655
  id: string;
@@ -6691,6 +6692,8 @@ export interface operations {
6691
6692
  * @enum {string|null}
6692
6693
  */
6693
6694
  rateType: "flat" | "percentage" | null;
6695
+ /** @description If flat fee, provide cent amount, if percentage fee provide basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
6696
+ defaultRate?: number | null;
6694
6697
  };
6695
6698
  }[] | null;
6696
6699
  source?: {
@@ -6774,12 +6777,12 @@ export interface operations {
6774
6777
  content: {
6775
6778
  "application/json": {
6776
6779
  name?: string | null;
6777
- /** @enum {string|null} */
6778
- status?: "active" | "inactive" | null;
6780
+ uniqueRef?: string | null;
6779
6781
  /** Format: uuid */
6780
6782
  connectionId?: string | null;
6783
+ /** @enum {string|null} */
6784
+ status?: "active" | "inactive" | null;
6781
6785
  defaultCurrency?: string | null;
6782
- uniqueRef?: string | null;
6783
6786
  address?: {
6784
6787
  full?: string | null;
6785
6788
  line1?: string | null;
@@ -6810,6 +6813,8 @@ export interface operations {
6810
6813
  * @enum {string|null}
6811
6814
  */
6812
6815
  rateType?: "flat" | "percentage" | null;
6816
+ /** @description If flat fee, provide cent amount, if percentage fee provide basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
6817
+ defaultRate?: number | null;
6813
6818
  };
6814
6819
  }[] | null;
6815
6820
  initialOwnership?: {
@@ -6841,12 +6846,13 @@ export interface operations {
6841
6846
  };
6842
6847
  content: {
6843
6848
  "application/json": {
6844
- /** Format: uuid */
6845
- id: string;
6849
+ name: string;
6846
6850
  uniqueRef?: string | null;
6847
6851
  /** Format: uuid */
6848
6852
  connectionId?: string | null;
6849
- name: string;
6853
+ /** @enum {string} */
6854
+ status: "active" | "inactive";
6855
+ defaultCurrency?: string | null;
6850
6856
  address?: {
6851
6857
  full?: string | null;
6852
6858
  line1?: string | null;
@@ -6858,9 +6864,8 @@ export interface operations {
6858
6864
  stateCode?: string | null;
6859
6865
  countryCode?: string | null;
6860
6866
  } | null;
6861
- /** @enum {string} */
6862
- status: "active" | "inactive";
6863
- defaultCurrency?: string | null;
6867
+ /** Format: uuid */
6868
+ id: string;
6864
6869
  activeOwnership?: {
6865
6870
  /** Format: uuid */
6866
6871
  id: string;
@@ -6903,6 +6908,8 @@ export interface operations {
6903
6908
  * @enum {string|null}
6904
6909
  */
6905
6910
  rateType: "flat" | "percentage" | null;
6911
+ /** @description If flat fee, provide cent amount, if percentage fee provide basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
6912
+ defaultRate?: number | null;
6906
6913
  };
6907
6914
  }[] | null;
6908
6915
  source?: {
@@ -7073,12 +7080,13 @@ export interface operations {
7073
7080
  content: {
7074
7081
  "application/json": {
7075
7082
  data: {
7076
- /** Format: uuid */
7077
- id: string;
7083
+ name: string;
7078
7084
  uniqueRef?: string | null;
7079
7085
  /** Format: uuid */
7080
7086
  connectionId?: string | null;
7081
- name: string;
7087
+ /** @enum {string} */
7088
+ status: "active" | "inactive";
7089
+ defaultCurrency?: string | null;
7082
7090
  address?: {
7083
7091
  full?: string | null;
7084
7092
  line1?: string | null;
@@ -7090,9 +7098,8 @@ export interface operations {
7090
7098
  stateCode?: string | null;
7091
7099
  countryCode?: string | null;
7092
7100
  } | null;
7093
- /** @enum {string} */
7094
- status: "active" | "inactive";
7095
- defaultCurrency?: string | null;
7101
+ /** Format: uuid */
7102
+ id: string;
7096
7103
  activeOwnership?: {
7097
7104
  /** Format: uuid */
7098
7105
  id: string;
@@ -7135,6 +7142,8 @@ export interface operations {
7135
7142
  * @enum {string|null}
7136
7143
  */
7137
7144
  rateType: "flat" | "percentage" | null;
7145
+ /** @description If flat fee, provide cent amount, if percentage fee provide basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
7146
+ defaultRate?: number | null;
7138
7147
  };
7139
7148
  }[] | null;
7140
7149
  source?: {
@@ -7226,12 +7235,12 @@ export interface operations {
7226
7235
  content: {
7227
7236
  "application/json": {
7228
7237
  name?: string | null;
7229
- /** @enum {string|null} */
7230
- status?: "active" | "inactive" | null;
7238
+ uniqueRef?: string | null;
7231
7239
  /** Format: uuid */
7232
7240
  connectionId?: string | null;
7241
+ /** @enum {string|null} */
7242
+ status?: "active" | "inactive" | null;
7233
7243
  defaultCurrency?: string | null;
7234
- uniqueRef?: string | null;
7235
7244
  address?: {
7236
7245
  full?: string | null;
7237
7246
  line1?: string | null;
@@ -7262,6 +7271,8 @@ export interface operations {
7262
7271
  * @enum {string|null}
7263
7272
  */
7264
7273
  rateType?: "flat" | "percentage" | null;
7274
+ /** @description If flat fee, provide cent amount, if percentage fee provide basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
7275
+ defaultRate?: number | null;
7265
7276
  };
7266
7277
  }[] | null;
7267
7278
  initialOwnership?: {
@@ -7293,12 +7304,13 @@ export interface operations {
7293
7304
  };
7294
7305
  content: {
7295
7306
  "application/json": {
7296
- /** Format: uuid */
7297
- id: string;
7307
+ name: string;
7298
7308
  uniqueRef?: string | null;
7299
7309
  /** Format: uuid */
7300
7310
  connectionId?: string | null;
7301
- name: string;
7311
+ /** @enum {string} */
7312
+ status: "active" | "inactive";
7313
+ defaultCurrency?: string | null;
7302
7314
  address?: {
7303
7315
  full?: string | null;
7304
7316
  line1?: string | null;
@@ -7310,9 +7322,8 @@ export interface operations {
7310
7322
  stateCode?: string | null;
7311
7323
  countryCode?: string | null;
7312
7324
  } | null;
7313
- /** @enum {string} */
7314
- status: "active" | "inactive";
7315
- defaultCurrency?: string | null;
7325
+ /** Format: uuid */
7326
+ id: string;
7316
7327
  activeOwnership?: {
7317
7328
  /** Format: uuid */
7318
7329
  id: string;
@@ -7355,6 +7366,8 @@ export interface operations {
7355
7366
  * @enum {string|null}
7356
7367
  */
7357
7368
  rateType: "flat" | "percentage" | null;
7369
+ /** @description If flat fee, provide cent amount, if percentage fee provide basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
7370
+ defaultRate?: number | null;
7358
7371
  };
7359
7372
  }[] | null;
7360
7373
  source?: {
@@ -9237,6 +9250,8 @@ export interface operations {
9237
9250
  * @enum {string|null}
9238
9251
  */
9239
9252
  rateType: "flat" | "percentage" | null;
9253
+ /** @description If flat fee, provide cent amount, if percentage fee provide basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
9254
+ defaultRate?: number | null;
9240
9255
  };
9241
9256
  }[];
9242
9257
  pagination: {
@@ -9349,6 +9364,8 @@ export interface operations {
9349
9364
  * @enum {string|null}
9350
9365
  */
9351
9366
  rateType: "flat" | "percentage" | null;
9367
+ /** @description If flat fee, provide cent amount, if percentage fee provide basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
9368
+ defaultRate?: number | null;
9352
9369
  };
9353
9370
  };
9354
9371
  };
@@ -9442,6 +9459,8 @@ export interface operations {
9442
9459
  * @enum {string|null}
9443
9460
  */
9444
9461
  rateType: "flat" | "percentage" | null;
9462
+ /** @description If flat fee, provide cent amount, if percentage fee provide basis points between '0' and '100 000' ('100 000' => 100%, '1000' => 1%, '10' => 0.01%, '1' => 0.001%) */
9463
+ defaultRate?: number | null;
9445
9464
  };
9446
9465
  };
9447
9466
  };