@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.
|
@@ -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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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
|
-
|
|
6632
|
-
id: string;
|
|
6632
|
+
name: string;
|
|
6633
6633
|
uniqueRef?: string | null;
|
|
6634
6634
|
/** Format: uuid */
|
|
6635
6635
|
connectionId?: string | null;
|
|
6636
|
-
|
|
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
|
-
/**
|
|
6649
|
-
|
|
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
|
-
|
|
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
|
-
|
|
6844
|
-
id: string;
|
|
6848
|
+
name: string;
|
|
6845
6849
|
uniqueRef?: string | null;
|
|
6846
6850
|
/** Format: uuid */
|
|
6847
6851
|
connectionId?: string | null;
|
|
6848
|
-
|
|
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
|
-
/**
|
|
6861
|
-
|
|
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
|
-
|
|
7076
|
-
id: string;
|
|
7082
|
+
name: string;
|
|
7077
7083
|
uniqueRef?: string | null;
|
|
7078
7084
|
/** Format: uuid */
|
|
7079
7085
|
connectionId?: string | null;
|
|
7080
|
-
|
|
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
|
-
/**
|
|
7093
|
-
|
|
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
|
-
|
|
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
|
-
|
|
7296
|
-
id: string;
|
|
7306
|
+
name: string;
|
|
7297
7307
|
uniqueRef?: string | null;
|
|
7298
7308
|
/** Format: uuid */
|
|
7299
7309
|
connectionId?: string | null;
|
|
7300
|
-
|
|
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
|
-
/**
|
|
7313
|
-
|
|
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: {
|
|
@@ -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
|
};
|
|
@@ -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
|
};
|