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

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.1308",
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: {
@@ -9319,7 +9334,7 @@ export interface operations {
9319
9334
  /** @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%) */
9320
9335
  rate?: number | null;
9321
9336
  /** @enum {string|null} */
9322
- onConflict?: "error" | "closeExistingPeriods" | "updateExisting" | null;
9337
+ onConflict?: "error" | "updateExisting" | "adjustInsertingItem" | "closeExistingPeriods" | null;
9323
9338
  };
9324
9339
  };
9325
9340
  };
@@ -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
  };
@@ -9412,7 +9429,7 @@ export interface operations {
9412
9429
  /** @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%) */
9413
9430
  rate?: number | null;
9414
9431
  /** @enum {string|null} */
9415
- onConflict?: "error" | "closeExistingPeriods" | "updateExisting" | null;
9432
+ onConflict?: "error" | "updateExisting" | "adjustInsertingItem" | "closeExistingPeriods" | null;
9416
9433
  };
9417
9434
  };
9418
9435
  };
@@ -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
  };
@@ -11274,7 +11293,6 @@ export interface operations {
11274
11293
  bankRecordIds: string[];
11275
11294
  /** @enum {string} */
11276
11295
  status: "unpaid" | "underpaid" | "overpaid" | "paid";
11277
- date?: string | null;
11278
11296
  lock?: {
11279
11297
  /** @enum {string} */
11280
11298
  status: "locked" | "unlocked";
@@ -11285,6 +11303,7 @@ export interface operations {
11285
11303
  ids: string[];
11286
11304
  } | null;
11287
11305
  } | null;
11306
+ date?: string | null;
11288
11307
  };
11289
11308
  connection?: {
11290
11309
  /** Format: uuid */
@@ -14264,7 +14283,6 @@ export interface operations {
14264
14283
  bankRecordIds: string[];
14265
14284
  /** @enum {string} */
14266
14285
  status: "unpaid" | "underpaid" | "overpaid" | "paid";
14267
- date?: string | null;
14268
14286
  lock?: {
14269
14287
  /** @enum {string} */
14270
14288
  status: "locked" | "unlocked";
@@ -14275,6 +14293,7 @@ export interface operations {
14275
14293
  ids: string[];
14276
14294
  } | null;
14277
14295
  } | null;
14296
+ date?: string | null;
14278
14297
  };
14279
14298
  connection?: {
14280
14299
  /** Format: uuid */
@@ -15455,7 +15474,6 @@ export interface operations {
15455
15474
  bankRecordIds: string[];
15456
15475
  /** @enum {string} */
15457
15476
  status: "unpaid" | "underpaid" | "overpaid" | "paid";
15458
- date?: string | null;
15459
15477
  lock?: {
15460
15478
  /** @enum {string} */
15461
15479
  status: "locked" | "unlocked";
@@ -15466,6 +15484,7 @@ export interface operations {
15466
15484
  ids: string[];
15467
15485
  } | null;
15468
15486
  } | null;
15487
+ date?: string | null;
15469
15488
  };
15470
15489
  connection?: {
15471
15490
  /** Format: uuid */
@@ -15915,7 +15934,6 @@ export interface operations {
15915
15934
  bankRecordIds: string[];
15916
15935
  /** @enum {string} */
15917
15936
  status: "unpaid" | "underpaid" | "overpaid" | "paid";
15918
- date?: string | null;
15919
15937
  lock?: {
15920
15938
  /** @enum {string} */
15921
15939
  status: "locked" | "unlocked";
@@ -15926,6 +15944,7 @@ export interface operations {
15926
15944
  ids: string[];
15927
15945
  } | null;
15928
15946
  } | null;
15947
+ date?: string | null;
15929
15948
  };
15930
15949
  connection?: {
15931
15950
  /** Format: uuid */
@@ -16223,7 +16242,6 @@ export interface operations {
16223
16242
  bankRecordIds: string[];
16224
16243
  /** @enum {string} */
16225
16244
  status: "unpaid" | "underpaid" | "overpaid" | "paid";
16226
- date?: string | null;
16227
16245
  lock?: {
16228
16246
  /** @enum {string} */
16229
16247
  status: "locked" | "unlocked";
@@ -16234,6 +16252,7 @@ export interface operations {
16234
16252
  ids: string[];
16235
16253
  } | null;
16236
16254
  } | null;
16255
+ date?: string | null;
16237
16256
  };
16238
16257
  connection?: {
16239
16258
  /** Format: uuid */
@@ -16441,7 +16460,6 @@ export interface operations {
16441
16460
  bankRecordIds: string[];
16442
16461
  /** @enum {string} */
16443
16462
  status: "unpaid" | "underpaid" | "overpaid" | "paid";
16444
- date?: string | null;
16445
16463
  lock?: {
16446
16464
  /** @enum {string} */
16447
16465
  status: "locked" | "unlocked";
@@ -16452,6 +16470,7 @@ export interface operations {
16452
16470
  ids: string[];
16453
16471
  } | null;
16454
16472
  } | null;
16473
+ date?: string | null;
16455
16474
  };
16456
16475
  connection?: {
16457
16476
  /** Format: uuid */
@@ -16742,7 +16761,6 @@ export interface operations {
16742
16761
  bankRecordIds: string[];
16743
16762
  /** @enum {string} */
16744
16763
  status: "unpaid" | "underpaid" | "overpaid" | "paid";
16745
- date?: string | null;
16746
16764
  lock?: {
16747
16765
  /** @enum {string} */
16748
16766
  status: "locked" | "unlocked";
@@ -16753,6 +16771,7 @@ export interface operations {
16753
16771
  ids: string[];
16754
16772
  } | null;
16755
16773
  } | null;
16774
+ date?: string | null;
16756
16775
  };
16757
16776
  connection?: {
16758
16777
  /** Format: uuid */
@@ -17727,7 +17746,6 @@ export interface operations {
17727
17746
  bankRecordIds: string[];
17728
17747
  /** @enum {string} */
17729
17748
  status: "unpaid" | "underpaid" | "overpaid" | "paid";
17730
- date?: string | null;
17731
17749
  lock?: {
17732
17750
  /** @enum {string} */
17733
17751
  status: "locked" | "unlocked";
@@ -17738,6 +17756,7 @@ export interface operations {
17738
17756
  ids: string[];
17739
17757
  } | null;
17740
17758
  } | null;
17759
+ date?: string | null;
17741
17760
  };
17742
17761
  connection?: {
17743
17762
  /** Format: uuid */
@@ -25692,6 +25711,11 @@ export interface operations {
25692
25711
  external?: string;
25693
25712
  };
25694
25713
  };
25714
+ /** @description Run schema configuration for this flow */
25715
+ runSchema: {
25716
+ /** @description Human readable description for date selection when triggering a run */
25717
+ dateDescription?: string;
25718
+ };
25695
25719
  /** @enum {string} */
25696
25720
  type?: "push" | "pull";
25697
25721
  }[];
@@ -25826,6 +25850,11 @@ export interface operations {
25826
25850
  external?: string;
25827
25851
  };
25828
25852
  };
25853
+ /** @description Run schema configuration for this flow */
25854
+ runSchema: {
25855
+ /** @description Human readable description for date selection when triggering a run */
25856
+ dateDescription?: string;
25857
+ };
25829
25858
  /** @enum {string} */
25830
25859
  type?: "push" | "pull";
25831
25860
  };