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