@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.
@@ -6025,6 +6025,7 @@ export interface operations {
6025
6025
  parameters: {
6026
6026
  query?: {
6027
6027
  listingId?: string;
6028
+ contactId?: string;
6028
6029
  limit?: number;
6029
6030
  page?: number;
6030
6031
  };
@@ -6046,7 +6047,7 @@ export interface operations {
6046
6047
  data: {
6047
6048
  /** Format: uuid */
6048
6049
  listingId: string;
6049
- /** @default 2025-12-11 */
6050
+ /** @default 2025-12-12 */
6050
6051
  startAt: string;
6051
6052
  endAt?: string | null;
6052
6053
  setListingInactive?: boolean | null;
@@ -6137,7 +6138,7 @@ export interface operations {
6137
6138
  "application/json": {
6138
6139
  /** Format: uuid */
6139
6140
  listingId: string;
6140
- /** @default 2025-12-11 */
6141
+ /** @default 2025-12-12 */
6141
6142
  startAt?: string;
6142
6143
  endAt?: string | null;
6143
6144
  members: {
@@ -6171,7 +6172,7 @@ export interface operations {
6171
6172
  "application/json": {
6172
6173
  /** Format: uuid */
6173
6174
  listingId: string;
6174
- /** @default 2025-12-11 */
6175
+ /** @default 2025-12-12 */
6175
6176
  startAt: string;
6176
6177
  endAt?: string | null;
6177
6178
  setListingInactive?: boolean | null;
@@ -6251,7 +6252,7 @@ export interface operations {
6251
6252
  "application/json": {
6252
6253
  /** Format: uuid */
6253
6254
  listingId: string;
6254
- /** @default 2025-12-11 */
6255
+ /** @default 2025-12-12 */
6255
6256
  startAt: string;
6256
6257
  endAt?: string | null;
6257
6258
  setListingInactive?: boolean | null;
@@ -6334,7 +6335,7 @@ export interface operations {
6334
6335
  "application/json": {
6335
6336
  /** Format: uuid */
6336
6337
  listingId?: string;
6337
- /** @default 2025-12-11 */
6338
+ /** @default 2025-12-12 */
6338
6339
  startAt?: string;
6339
6340
  endAt?: string | null;
6340
6341
  members?: {
@@ -6368,7 +6369,7 @@ export interface operations {
6368
6369
  "application/json": {
6369
6370
  /** Format: uuid */
6370
6371
  listingId: string;
6371
- /** @default 2025-12-11 */
6372
+ /** @default 2025-12-12 */
6372
6373
  startAt: string;
6373
6374
  endAt?: string | null;
6374
6375
  setListingInactive?: boolean | null;
@@ -6628,12 +6629,13 @@ export interface operations {
6628
6629
  };
6629
6630
  content: {
6630
6631
  "application/json": {
6631
- /** Format: uuid */
6632
- id: string;
6632
+ name: string;
6633
6633
  uniqueRef?: string | null;
6634
6634
  /** Format: uuid */
6635
6635
  connectionId?: string | null;
6636
- name: string;
6636
+ /** @enum {string} */
6637
+ status: "active" | "inactive";
6638
+ defaultCurrency?: string | null;
6637
6639
  address?: {
6638
6640
  full?: string | null;
6639
6641
  line1?: string | null;
@@ -6645,9 +6647,8 @@ export interface operations {
6645
6647
  stateCode?: string | null;
6646
6648
  countryCode?: string | null;
6647
6649
  } | null;
6648
- /** @enum {string} */
6649
- status: "active" | "inactive";
6650
- defaultCurrency?: string | null;
6650
+ /** Format: uuid */
6651
+ id: string;
6651
6652
  activeOwnership?: {
6652
6653
  /** Format: uuid */
6653
6654
  id: string;
@@ -6690,6 +6691,8 @@ export interface operations {
6690
6691
  * @enum {string|null}
6691
6692
  */
6692
6693
  rateType: "flat" | "percentage" | null;
6694
+ /** @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%) */
6695
+ defaultRate?: number | null;
6693
6696
  };
6694
6697
  }[] | null;
6695
6698
  source?: {
@@ -6773,12 +6776,12 @@ export interface operations {
6773
6776
  content: {
6774
6777
  "application/json": {
6775
6778
  name?: string | null;
6776
- /** @enum {string|null} */
6777
- status?: "active" | "inactive" | null;
6779
+ uniqueRef?: string | null;
6778
6780
  /** Format: uuid */
6779
6781
  connectionId?: string | null;
6782
+ /** @enum {string|null} */
6783
+ status?: "active" | "inactive" | null;
6780
6784
  defaultCurrency?: string | null;
6781
- uniqueRef?: string | null;
6782
6785
  address?: {
6783
6786
  full?: string | null;
6784
6787
  line1?: string | null;
@@ -6809,6 +6812,8 @@ export interface operations {
6809
6812
  * @enum {string|null}
6810
6813
  */
6811
6814
  rateType?: "flat" | "percentage" | null;
6815
+ /** @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%) */
6816
+ defaultRate?: number | null;
6812
6817
  };
6813
6818
  }[] | null;
6814
6819
  initialOwnership?: {
@@ -6840,12 +6845,13 @@ export interface operations {
6840
6845
  };
6841
6846
  content: {
6842
6847
  "application/json": {
6843
- /** Format: uuid */
6844
- id: string;
6848
+ name: string;
6845
6849
  uniqueRef?: string | null;
6846
6850
  /** Format: uuid */
6847
6851
  connectionId?: string | null;
6848
- name: string;
6852
+ /** @enum {string} */
6853
+ status: "active" | "inactive";
6854
+ defaultCurrency?: string | null;
6849
6855
  address?: {
6850
6856
  full?: string | null;
6851
6857
  line1?: string | null;
@@ -6857,9 +6863,8 @@ export interface operations {
6857
6863
  stateCode?: string | null;
6858
6864
  countryCode?: string | null;
6859
6865
  } | null;
6860
- /** @enum {string} */
6861
- status: "active" | "inactive";
6862
- defaultCurrency?: string | null;
6866
+ /** Format: uuid */
6867
+ id: string;
6863
6868
  activeOwnership?: {
6864
6869
  /** Format: uuid */
6865
6870
  id: string;
@@ -6902,6 +6907,8 @@ export interface operations {
6902
6907
  * @enum {string|null}
6903
6908
  */
6904
6909
  rateType: "flat" | "percentage" | null;
6910
+ /** @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%) */
6911
+ defaultRate?: number | null;
6905
6912
  };
6906
6913
  }[] | null;
6907
6914
  source?: {
@@ -7072,12 +7079,13 @@ export interface operations {
7072
7079
  content: {
7073
7080
  "application/json": {
7074
7081
  data: {
7075
- /** Format: uuid */
7076
- id: string;
7082
+ name: string;
7077
7083
  uniqueRef?: string | null;
7078
7084
  /** Format: uuid */
7079
7085
  connectionId?: string | null;
7080
- name: string;
7086
+ /** @enum {string} */
7087
+ status: "active" | "inactive";
7088
+ defaultCurrency?: string | null;
7081
7089
  address?: {
7082
7090
  full?: string | null;
7083
7091
  line1?: string | null;
@@ -7089,9 +7097,8 @@ export interface operations {
7089
7097
  stateCode?: string | null;
7090
7098
  countryCode?: string | null;
7091
7099
  } | null;
7092
- /** @enum {string} */
7093
- status: "active" | "inactive";
7094
- defaultCurrency?: string | null;
7100
+ /** Format: uuid */
7101
+ id: string;
7095
7102
  activeOwnership?: {
7096
7103
  /** Format: uuid */
7097
7104
  id: string;
@@ -7134,6 +7141,8 @@ export interface operations {
7134
7141
  * @enum {string|null}
7135
7142
  */
7136
7143
  rateType: "flat" | "percentage" | null;
7144
+ /** @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%) */
7145
+ defaultRate?: number | null;
7137
7146
  };
7138
7147
  }[] | null;
7139
7148
  source?: {
@@ -7225,12 +7234,12 @@ export interface operations {
7225
7234
  content: {
7226
7235
  "application/json": {
7227
7236
  name?: string | null;
7228
- /** @enum {string|null} */
7229
- status?: "active" | "inactive" | null;
7237
+ uniqueRef?: string | null;
7230
7238
  /** Format: uuid */
7231
7239
  connectionId?: string | null;
7240
+ /** @enum {string|null} */
7241
+ status?: "active" | "inactive" | null;
7232
7242
  defaultCurrency?: string | null;
7233
- uniqueRef?: string | null;
7234
7243
  address?: {
7235
7244
  full?: string | null;
7236
7245
  line1?: string | null;
@@ -7261,6 +7270,8 @@ export interface operations {
7261
7270
  * @enum {string|null}
7262
7271
  */
7263
7272
  rateType?: "flat" | "percentage" | null;
7273
+ /** @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%) */
7274
+ defaultRate?: number | null;
7264
7275
  };
7265
7276
  }[] | null;
7266
7277
  initialOwnership?: {
@@ -7292,12 +7303,13 @@ export interface operations {
7292
7303
  };
7293
7304
  content: {
7294
7305
  "application/json": {
7295
- /** Format: uuid */
7296
- id: string;
7306
+ name: string;
7297
7307
  uniqueRef?: string | null;
7298
7308
  /** Format: uuid */
7299
7309
  connectionId?: string | null;
7300
- name: string;
7310
+ /** @enum {string} */
7311
+ status: "active" | "inactive";
7312
+ defaultCurrency?: string | null;
7301
7313
  address?: {
7302
7314
  full?: string | null;
7303
7315
  line1?: string | null;
@@ -7309,9 +7321,8 @@ export interface operations {
7309
7321
  stateCode?: string | null;
7310
7322
  countryCode?: string | null;
7311
7323
  } | null;
7312
- /** @enum {string} */
7313
- status: "active" | "inactive";
7314
- defaultCurrency?: string | null;
7324
+ /** Format: uuid */
7325
+ id: string;
7315
7326
  activeOwnership?: {
7316
7327
  /** Format: uuid */
7317
7328
  id: string;
@@ -7354,6 +7365,8 @@ export interface operations {
7354
7365
  * @enum {string|null}
7355
7366
  */
7356
7367
  rateType: "flat" | "percentage" | null;
7368
+ /** @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%) */
7369
+ defaultRate?: number | null;
7357
7370
  };
7358
7371
  }[] | null;
7359
7372
  source?: {
@@ -9236,6 +9249,8 @@ export interface operations {
9236
9249
  * @enum {string|null}
9237
9250
  */
9238
9251
  rateType: "flat" | "percentage" | null;
9252
+ /** @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%) */
9253
+ defaultRate?: number | null;
9239
9254
  };
9240
9255
  }[];
9241
9256
  pagination: {
@@ -9318,7 +9333,7 @@ export interface operations {
9318
9333
  /** @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%) */
9319
9334
  rate?: number | null;
9320
9335
  /** @enum {string|null} */
9321
- onConflict?: "error" | "closeExistingPeriods" | "updateExisting" | null;
9336
+ onConflict?: "error" | "updateExisting" | "adjustInsertingItem" | "closeExistingPeriods" | null;
9322
9337
  };
9323
9338
  };
9324
9339
  };
@@ -9348,6 +9363,8 @@ export interface operations {
9348
9363
  * @enum {string|null}
9349
9364
  */
9350
9365
  rateType: "flat" | "percentage" | null;
9366
+ /** @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%) */
9367
+ defaultRate?: number | null;
9351
9368
  };
9352
9369
  };
9353
9370
  };
@@ -9411,7 +9428,7 @@ export interface operations {
9411
9428
  /** @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%) */
9412
9429
  rate?: number | null;
9413
9430
  /** @enum {string|null} */
9414
- onConflict?: "error" | "closeExistingPeriods" | "updateExisting" | null;
9431
+ onConflict?: "error" | "updateExisting" | "adjustInsertingItem" | "closeExistingPeriods" | null;
9415
9432
  };
9416
9433
  };
9417
9434
  };
@@ -9441,6 +9458,8 @@ export interface operations {
9441
9458
  * @enum {string|null}
9442
9459
  */
9443
9460
  rateType: "flat" | "percentage" | null;
9461
+ /** @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%) */
9462
+ defaultRate?: number | null;
9444
9463
  };
9445
9464
  };
9446
9465
  };
@@ -11273,7 +11292,6 @@ export interface operations {
11273
11292
  bankRecordIds: string[];
11274
11293
  /** @enum {string} */
11275
11294
  status: "unpaid" | "underpaid" | "overpaid" | "paid";
11276
- date?: string | null;
11277
11295
  lock?: {
11278
11296
  /** @enum {string} */
11279
11297
  status: "locked" | "unlocked";
@@ -11284,6 +11302,7 @@ export interface operations {
11284
11302
  ids: string[];
11285
11303
  } | null;
11286
11304
  } | null;
11305
+ date?: string | null;
11287
11306
  };
11288
11307
  connection?: {
11289
11308
  /** Format: uuid */
@@ -14263,7 +14282,6 @@ export interface operations {
14263
14282
  bankRecordIds: string[];
14264
14283
  /** @enum {string} */
14265
14284
  status: "unpaid" | "underpaid" | "overpaid" | "paid";
14266
- date?: string | null;
14267
14285
  lock?: {
14268
14286
  /** @enum {string} */
14269
14287
  status: "locked" | "unlocked";
@@ -14274,6 +14292,7 @@ export interface operations {
14274
14292
  ids: string[];
14275
14293
  } | null;
14276
14294
  } | null;
14295
+ date?: string | null;
14277
14296
  };
14278
14297
  connection?: {
14279
14298
  /** Format: uuid */
@@ -15454,7 +15473,6 @@ export interface operations {
15454
15473
  bankRecordIds: string[];
15455
15474
  /** @enum {string} */
15456
15475
  status: "unpaid" | "underpaid" | "overpaid" | "paid";
15457
- date?: string | null;
15458
15476
  lock?: {
15459
15477
  /** @enum {string} */
15460
15478
  status: "locked" | "unlocked";
@@ -15465,6 +15483,7 @@ export interface operations {
15465
15483
  ids: string[];
15466
15484
  } | null;
15467
15485
  } | null;
15486
+ date?: string | null;
15468
15487
  };
15469
15488
  connection?: {
15470
15489
  /** Format: uuid */
@@ -15914,7 +15933,6 @@ export interface operations {
15914
15933
  bankRecordIds: string[];
15915
15934
  /** @enum {string} */
15916
15935
  status: "unpaid" | "underpaid" | "overpaid" | "paid";
15917
- date?: string | null;
15918
15936
  lock?: {
15919
15937
  /** @enum {string} */
15920
15938
  status: "locked" | "unlocked";
@@ -15925,6 +15943,7 @@ export interface operations {
15925
15943
  ids: string[];
15926
15944
  } | null;
15927
15945
  } | null;
15946
+ date?: string | null;
15928
15947
  };
15929
15948
  connection?: {
15930
15949
  /** Format: uuid */
@@ -16222,7 +16241,6 @@ export interface operations {
16222
16241
  bankRecordIds: string[];
16223
16242
  /** @enum {string} */
16224
16243
  status: "unpaid" | "underpaid" | "overpaid" | "paid";
16225
- date?: string | null;
16226
16244
  lock?: {
16227
16245
  /** @enum {string} */
16228
16246
  status: "locked" | "unlocked";
@@ -16233,6 +16251,7 @@ export interface operations {
16233
16251
  ids: string[];
16234
16252
  } | null;
16235
16253
  } | null;
16254
+ date?: string | null;
16236
16255
  };
16237
16256
  connection?: {
16238
16257
  /** Format: uuid */
@@ -16440,7 +16459,6 @@ export interface operations {
16440
16459
  bankRecordIds: string[];
16441
16460
  /** @enum {string} */
16442
16461
  status: "unpaid" | "underpaid" | "overpaid" | "paid";
16443
- date?: string | null;
16444
16462
  lock?: {
16445
16463
  /** @enum {string} */
16446
16464
  status: "locked" | "unlocked";
@@ -16451,6 +16469,7 @@ export interface operations {
16451
16469
  ids: string[];
16452
16470
  } | null;
16453
16471
  } | null;
16472
+ date?: string | null;
16454
16473
  };
16455
16474
  connection?: {
16456
16475
  /** Format: uuid */
@@ -16741,7 +16760,6 @@ export interface operations {
16741
16760
  bankRecordIds: string[];
16742
16761
  /** @enum {string} */
16743
16762
  status: "unpaid" | "underpaid" | "overpaid" | "paid";
16744
- date?: string | null;
16745
16763
  lock?: {
16746
16764
  /** @enum {string} */
16747
16765
  status: "locked" | "unlocked";
@@ -16752,6 +16770,7 @@ export interface operations {
16752
16770
  ids: string[];
16753
16771
  } | null;
16754
16772
  } | null;
16773
+ date?: string | null;
16755
16774
  };
16756
16775
  connection?: {
16757
16776
  /** Format: uuid */
@@ -17726,7 +17745,6 @@ export interface operations {
17726
17745
  bankRecordIds: string[];
17727
17746
  /** @enum {string} */
17728
17747
  status: "unpaid" | "underpaid" | "overpaid" | "paid";
17729
- date?: string | null;
17730
17748
  lock?: {
17731
17749
  /** @enum {string} */
17732
17750
  status: "locked" | "unlocked";
@@ -17737,6 +17755,7 @@ export interface operations {
17737
17755
  ids: string[];
17738
17756
  } | null;
17739
17757
  } | null;
17758
+ date?: string | null;
17740
17759
  };
17741
17760
  connection?: {
17742
17761
  /** Format: uuid */
@@ -25691,6 +25710,11 @@ export interface operations {
25691
25710
  external?: string;
25692
25711
  };
25693
25712
  };
25713
+ /** @description Run schema configuration for this flow */
25714
+ runSchema: {
25715
+ /** @description Human readable description for date selection when triggering a run */
25716
+ dateDescription?: string;
25717
+ };
25694
25718
  /** @enum {string} */
25695
25719
  type?: "push" | "pull";
25696
25720
  }[];
@@ -25825,6 +25849,11 @@ export interface operations {
25825
25849
  external?: string;
25826
25850
  };
25827
25851
  };
25852
+ /** @description Run schema configuration for this flow */
25853
+ runSchema: {
25854
+ /** @description Human readable description for date selection when triggering a run */
25855
+ dateDescription?: string;
25856
+ };
25828
25857
  /** @enum {string} */
25829
25858
  type?: "push" | "pull";
25830
25859
  };