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