@vrplatform/api 1.3.1-stage.2515 → 1.3.1-stage.2518

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.2515",
6
+ "version": "1.3.1-stage.2518",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -1305,6 +1305,23 @@ export interface paths {
1305
1305
  patch?: never;
1306
1306
  trace?: never;
1307
1307
  };
1308
+ "/members": {
1309
+ parameters: {
1310
+ query?: never;
1311
+ header?: never;
1312
+ path?: never;
1313
+ cookie?: never;
1314
+ };
1315
+ /** @description List property-managers for the current team */
1316
+ get: operations["getMembers"];
1317
+ put?: never;
1318
+ post?: never;
1319
+ delete?: never;
1320
+ options?: never;
1321
+ head?: never;
1322
+ patch?: never;
1323
+ trace?: never;
1324
+ };
1308
1325
  "/metrics/active-listings": {
1309
1326
  parameters: {
1310
1327
  query?: never;
@@ -19160,6 +19177,122 @@ export interface operations {
19160
19177
  };
19161
19178
  };
19162
19179
  };
19180
+ getMembers: {
19181
+ parameters: {
19182
+ query?: never;
19183
+ header?: never;
19184
+ path?: never;
19185
+ cookie?: never;
19186
+ };
19187
+ requestBody?: never;
19188
+ responses: {
19189
+ /** @description Successful response */
19190
+ 200: {
19191
+ headers: {
19192
+ [name: string]: unknown;
19193
+ };
19194
+ content: {
19195
+ "application/json": {
19196
+ data: {
19197
+ /** Format: uuid */
19198
+ id: string;
19199
+ /** Format: uuid */
19200
+ userId: string;
19201
+ /** Format: uuid */
19202
+ tenantId: string;
19203
+ /** Format: email */
19204
+ email: string;
19205
+ role: string;
19206
+ status?: string | null;
19207
+ name?: string | null;
19208
+ firstName?: string | null;
19209
+ lastName?: string | null;
19210
+ }[];
19211
+ };
19212
+ };
19213
+ };
19214
+ /** @description Bad request */
19215
+ 400: {
19216
+ headers: {
19217
+ [name: string]: unknown;
19218
+ };
19219
+ content: {
19220
+ "application/json": {
19221
+ code: string;
19222
+ message: string;
19223
+ issues?: {
19224
+ message: string;
19225
+ }[];
19226
+ context?: unknown;
19227
+ };
19228
+ };
19229
+ };
19230
+ /** @description Unauthorized */
19231
+ 401: {
19232
+ headers: {
19233
+ [name: string]: unknown;
19234
+ };
19235
+ content: {
19236
+ "application/json": {
19237
+ code: string;
19238
+ message: string;
19239
+ issues?: {
19240
+ message: string;
19241
+ }[];
19242
+ context?: unknown;
19243
+ };
19244
+ };
19245
+ };
19246
+ /** @description Forbidden */
19247
+ 403: {
19248
+ headers: {
19249
+ [name: string]: unknown;
19250
+ };
19251
+ content: {
19252
+ "application/json": {
19253
+ code: string;
19254
+ message: string;
19255
+ issues?: {
19256
+ message: string;
19257
+ }[];
19258
+ context?: unknown;
19259
+ };
19260
+ };
19261
+ };
19262
+ /** @description Not found */
19263
+ 404: {
19264
+ headers: {
19265
+ [name: string]: unknown;
19266
+ };
19267
+ content: {
19268
+ "application/json": {
19269
+ code: string;
19270
+ message: string;
19271
+ issues?: {
19272
+ message: string;
19273
+ }[];
19274
+ context?: unknown;
19275
+ };
19276
+ };
19277
+ };
19278
+ /** @description Internal server error */
19279
+ 500: {
19280
+ headers: {
19281
+ [name: string]: unknown;
19282
+ };
19283
+ content: {
19284
+ "application/json": {
19285
+ code: string;
19286
+ message: string;
19287
+ issues?: {
19288
+ message: string;
19289
+ }[];
19290
+ context?: unknown;
19291
+ };
19292
+ };
19293
+ };
19294
+ };
19295
+ };
19163
19296
  getMetricActiveListings: {
19164
19297
  parameters: {
19165
19298
  query: {