@vrplatform/api 1.3.1-stage.3734 → 1.3.1-stage.3737
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.
|
@@ -1322,6 +1322,23 @@ export interface paths {
|
|
|
1322
1322
|
patch?: never;
|
|
1323
1323
|
trace?: never;
|
|
1324
1324
|
};
|
|
1325
|
+
"/me/notifications": {
|
|
1326
|
+
parameters: {
|
|
1327
|
+
query?: never;
|
|
1328
|
+
header?: never;
|
|
1329
|
+
path?: never;
|
|
1330
|
+
cookie?: never;
|
|
1331
|
+
};
|
|
1332
|
+
get?: never;
|
|
1333
|
+
/** @description Update notifications for the authenticated user for the selected team */
|
|
1334
|
+
put: operations["updateMeNotifications"];
|
|
1335
|
+
post?: never;
|
|
1336
|
+
delete?: never;
|
|
1337
|
+
options?: never;
|
|
1338
|
+
head?: never;
|
|
1339
|
+
patch?: never;
|
|
1340
|
+
trace?: never;
|
|
1341
|
+
};
|
|
1325
1342
|
"/members": {
|
|
1326
1343
|
parameters: {
|
|
1327
1344
|
query?: never;
|
|
@@ -11975,6 +11992,9 @@ export interface operations {
|
|
|
11975
11992
|
status: "active" | "inactive" | "unconfirmed";
|
|
11976
11993
|
lastSeen?: string | null;
|
|
11977
11994
|
lastInvitedAt?: string | null;
|
|
11995
|
+
notifications: {
|
|
11996
|
+
ownerStatementPublished: boolean;
|
|
11997
|
+
};
|
|
11978
11998
|
} | null;
|
|
11979
11999
|
}[];
|
|
11980
12000
|
pagination: {
|
|
@@ -12176,6 +12196,9 @@ export interface operations {
|
|
|
12176
12196
|
status: "active" | "inactive" | "unconfirmed";
|
|
12177
12197
|
lastSeen?: string | null;
|
|
12178
12198
|
lastInvitedAt?: string | null;
|
|
12199
|
+
notifications: {
|
|
12200
|
+
ownerStatementPublished: boolean;
|
|
12201
|
+
};
|
|
12179
12202
|
} | null;
|
|
12180
12203
|
};
|
|
12181
12204
|
};
|
|
@@ -12598,6 +12621,9 @@ export interface operations {
|
|
|
12598
12621
|
status: "active" | "inactive" | "unconfirmed";
|
|
12599
12622
|
lastSeen?: string | null;
|
|
12600
12623
|
lastInvitedAt?: string | null;
|
|
12624
|
+
notifications: {
|
|
12625
|
+
ownerStatementPublished: boolean;
|
|
12626
|
+
};
|
|
12601
12627
|
} | null;
|
|
12602
12628
|
};
|
|
12603
12629
|
};
|
|
@@ -12790,6 +12816,9 @@ export interface operations {
|
|
|
12790
12816
|
status: "active" | "inactive" | "unconfirmed";
|
|
12791
12817
|
lastSeen?: string | null;
|
|
12792
12818
|
lastInvitedAt?: string | null;
|
|
12819
|
+
notifications: {
|
|
12820
|
+
ownerStatementPublished: boolean;
|
|
12821
|
+
};
|
|
12793
12822
|
} | null;
|
|
12794
12823
|
};
|
|
12795
12824
|
};
|
|
@@ -20059,6 +20088,12 @@ export interface operations {
|
|
|
20059
20088
|
/** @enum {string} */
|
|
20060
20089
|
type: "propertyManager" | "partner";
|
|
20061
20090
|
slug: string;
|
|
20091
|
+
notifications: {
|
|
20092
|
+
ownerStatementInReview: boolean;
|
|
20093
|
+
ownerStatementPublished: boolean;
|
|
20094
|
+
ownerInvited: boolean;
|
|
20095
|
+
memberInvited: boolean;
|
|
20096
|
+
};
|
|
20062
20097
|
}[];
|
|
20063
20098
|
enabledFeatures: {
|
|
20064
20099
|
/** Format: uuid */
|
|
@@ -20151,6 +20186,120 @@ export interface operations {
|
|
|
20151
20186
|
};
|
|
20152
20187
|
};
|
|
20153
20188
|
};
|
|
20189
|
+
updateMeNotifications: {
|
|
20190
|
+
parameters: {
|
|
20191
|
+
query?: never;
|
|
20192
|
+
header?: never;
|
|
20193
|
+
path?: never;
|
|
20194
|
+
cookie?: never;
|
|
20195
|
+
};
|
|
20196
|
+
requestBody?: {
|
|
20197
|
+
content: {
|
|
20198
|
+
"application/json": {
|
|
20199
|
+
ownerStatementInReview?: boolean;
|
|
20200
|
+
ownerStatementPublished?: boolean;
|
|
20201
|
+
ownerInvited?: boolean;
|
|
20202
|
+
memberInvited?: boolean;
|
|
20203
|
+
};
|
|
20204
|
+
};
|
|
20205
|
+
};
|
|
20206
|
+
responses: {
|
|
20207
|
+
/** @description Successful response */
|
|
20208
|
+
200: {
|
|
20209
|
+
headers: {
|
|
20210
|
+
[name: string]: unknown;
|
|
20211
|
+
};
|
|
20212
|
+
content: {
|
|
20213
|
+
"application/json": {
|
|
20214
|
+
ownerStatementInReview: boolean;
|
|
20215
|
+
ownerStatementPublished: boolean;
|
|
20216
|
+
ownerInvited: boolean;
|
|
20217
|
+
memberInvited: boolean;
|
|
20218
|
+
};
|
|
20219
|
+
};
|
|
20220
|
+
};
|
|
20221
|
+
/** @description Bad request */
|
|
20222
|
+
400: {
|
|
20223
|
+
headers: {
|
|
20224
|
+
[name: string]: unknown;
|
|
20225
|
+
};
|
|
20226
|
+
content: {
|
|
20227
|
+
"application/json": {
|
|
20228
|
+
code: string;
|
|
20229
|
+
message: string;
|
|
20230
|
+
issues?: {
|
|
20231
|
+
message: string;
|
|
20232
|
+
}[];
|
|
20233
|
+
context?: unknown;
|
|
20234
|
+
};
|
|
20235
|
+
};
|
|
20236
|
+
};
|
|
20237
|
+
/** @description Unauthorized */
|
|
20238
|
+
401: {
|
|
20239
|
+
headers: {
|
|
20240
|
+
[name: string]: unknown;
|
|
20241
|
+
};
|
|
20242
|
+
content: {
|
|
20243
|
+
"application/json": {
|
|
20244
|
+
code: string;
|
|
20245
|
+
message: string;
|
|
20246
|
+
issues?: {
|
|
20247
|
+
message: string;
|
|
20248
|
+
}[];
|
|
20249
|
+
context?: unknown;
|
|
20250
|
+
};
|
|
20251
|
+
};
|
|
20252
|
+
};
|
|
20253
|
+
/** @description Forbidden */
|
|
20254
|
+
403: {
|
|
20255
|
+
headers: {
|
|
20256
|
+
[name: string]: unknown;
|
|
20257
|
+
};
|
|
20258
|
+
content: {
|
|
20259
|
+
"application/json": {
|
|
20260
|
+
code: string;
|
|
20261
|
+
message: string;
|
|
20262
|
+
issues?: {
|
|
20263
|
+
message: string;
|
|
20264
|
+
}[];
|
|
20265
|
+
context?: unknown;
|
|
20266
|
+
};
|
|
20267
|
+
};
|
|
20268
|
+
};
|
|
20269
|
+
/** @description Not found */
|
|
20270
|
+
404: {
|
|
20271
|
+
headers: {
|
|
20272
|
+
[name: string]: unknown;
|
|
20273
|
+
};
|
|
20274
|
+
content: {
|
|
20275
|
+
"application/json": {
|
|
20276
|
+
code: string;
|
|
20277
|
+
message: string;
|
|
20278
|
+
issues?: {
|
|
20279
|
+
message: string;
|
|
20280
|
+
}[];
|
|
20281
|
+
context?: unknown;
|
|
20282
|
+
};
|
|
20283
|
+
};
|
|
20284
|
+
};
|
|
20285
|
+
/** @description Internal server error */
|
|
20286
|
+
500: {
|
|
20287
|
+
headers: {
|
|
20288
|
+
[name: string]: unknown;
|
|
20289
|
+
};
|
|
20290
|
+
content: {
|
|
20291
|
+
"application/json": {
|
|
20292
|
+
code: string;
|
|
20293
|
+
message: string;
|
|
20294
|
+
issues?: {
|
|
20295
|
+
message: string;
|
|
20296
|
+
}[];
|
|
20297
|
+
context?: unknown;
|
|
20298
|
+
};
|
|
20299
|
+
};
|
|
20300
|
+
};
|
|
20301
|
+
};
|
|
20302
|
+
};
|
|
20154
20303
|
getMembers: {
|
|
20155
20304
|
parameters: {
|
|
20156
20305
|
query?: never;
|
|
@@ -23001,6 +23150,7 @@ export interface operations {
|
|
|
23001
23150
|
getRates: {
|
|
23002
23151
|
parameters: {
|
|
23003
23152
|
query?: {
|
|
23153
|
+
search?: string;
|
|
23004
23154
|
type?: "markup" | "tax";
|
|
23005
23155
|
status?: "active" | "inactive";
|
|
23006
23156
|
limit?: number;
|
|
@@ -48218,6 +48368,9 @@ export interface operations {
|
|
|
48218
48368
|
parameters: {
|
|
48219
48369
|
query?: {
|
|
48220
48370
|
status?: "active" | "inactive" | "deleted" | "onboarding";
|
|
48371
|
+
search?: string;
|
|
48372
|
+
partnerId?: string;
|
|
48373
|
+
type?: "partner" | "propertyManager";
|
|
48221
48374
|
/** @description You can use elipisis: YYYY-MM-DD...YYYY-MM-DD */
|
|
48222
48375
|
date?: string;
|
|
48223
48376
|
limit?: number;
|