@vrplatform/api 1.3.1-stage.4839 → 1.3.1-stage.4840

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.4839",
6
+ "version": "1.3.1-stage.4840",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -2178,7 +2178,12 @@ export interface paths {
2178
2178
  */
2179
2179
  put: operations["updateMeProfile"];
2180
2180
  post?: never;
2181
- delete?: never;
2181
+ /**
2182
+ * @description Delete the authenticated user, all memberships and access, API tokens, and the linked Clerk identity. Returns 409 when deletion would leave a property-manager team without another active property-manager user.
2183
+ *
2184
+ * Required scope: self:write
2185
+ */
2186
+ delete: operations["deleteMe"];
2182
2187
  options?: never;
2183
2188
  head?: never;
2184
2189
  patch?: never;
@@ -54240,6 +54245,260 @@ export interface operations {
54240
54245
  };
54241
54246
  };
54242
54247
  };
54248
+ deleteMe: {
54249
+ parameters: {
54250
+ query?: never;
54251
+ header?: never;
54252
+ path?: never;
54253
+ cookie?: never;
54254
+ };
54255
+ requestBody?: never;
54256
+ responses: {
54257
+ /** @description Successful response */
54258
+ 200: {
54259
+ headers: {
54260
+ [name: string]: unknown;
54261
+ };
54262
+ content: {
54263
+ "application/json": {
54264
+ /** @enum {string} */
54265
+ status: "deleted";
54266
+ /** @description Deprecated: use status */
54267
+ deleted: boolean;
54268
+ files: number;
54269
+ memberships: number;
54270
+ ownerAccess: number;
54271
+ tokens: number;
54272
+ };
54273
+ };
54274
+ };
54275
+ /** @description Bad request */
54276
+ 400: {
54277
+ headers: {
54278
+ /** @description Seconds to wait when retryable=true and the server supplies a delay. */
54279
+ "Retry-After"?: number;
54280
+ [name: string]: unknown;
54281
+ };
54282
+ content: {
54283
+ "application/json": {
54284
+ code: string;
54285
+ message: string;
54286
+ links?: {
54287
+ docs: string;
54288
+ schema: string;
54289
+ };
54290
+ issues?: {
54291
+ message: string;
54292
+ path?: (string | number)[];
54293
+ schema?: string;
54294
+ }[];
54295
+ retryable?: boolean;
54296
+ context?: unknown;
54297
+ };
54298
+ };
54299
+ };
54300
+ /** @description Unauthorized */
54301
+ 401: {
54302
+ headers: {
54303
+ /** @description Seconds to wait when retryable=true and the server supplies a delay. */
54304
+ "Retry-After"?: number;
54305
+ [name: string]: unknown;
54306
+ };
54307
+ content: {
54308
+ "application/json": {
54309
+ code: string;
54310
+ message: string;
54311
+ links?: {
54312
+ docs: string;
54313
+ schema: string;
54314
+ };
54315
+ issues?: {
54316
+ message: string;
54317
+ path?: (string | number)[];
54318
+ schema?: string;
54319
+ }[];
54320
+ retryable?: boolean;
54321
+ context?: unknown;
54322
+ };
54323
+ };
54324
+ };
54325
+ /** @description Forbidden */
54326
+ 403: {
54327
+ headers: {
54328
+ /** @description Seconds to wait when retryable=true and the server supplies a delay. */
54329
+ "Retry-After"?: number;
54330
+ [name: string]: unknown;
54331
+ };
54332
+ content: {
54333
+ "application/json": {
54334
+ code: string;
54335
+ message: string;
54336
+ links?: {
54337
+ docs: string;
54338
+ schema: string;
54339
+ };
54340
+ issues?: {
54341
+ message: string;
54342
+ path?: (string | number)[];
54343
+ schema?: string;
54344
+ }[];
54345
+ retryable?: boolean;
54346
+ context?: unknown;
54347
+ };
54348
+ };
54349
+ };
54350
+ /** @description Not found */
54351
+ 404: {
54352
+ headers: {
54353
+ /** @description Seconds to wait when retryable=true and the server supplies a delay. */
54354
+ "Retry-After"?: number;
54355
+ [name: string]: unknown;
54356
+ };
54357
+ content: {
54358
+ "application/json": {
54359
+ code: string;
54360
+ message: string;
54361
+ links?: {
54362
+ docs: string;
54363
+ schema: string;
54364
+ };
54365
+ issues?: {
54366
+ message: string;
54367
+ path?: (string | number)[];
54368
+ schema?: string;
54369
+ }[];
54370
+ retryable?: boolean;
54371
+ context?: unknown;
54372
+ };
54373
+ };
54374
+ };
54375
+ /** @description Conflict */
54376
+ 409: {
54377
+ headers: {
54378
+ /** @description Seconds to wait when retryable=true and the server supplies a delay. */
54379
+ "Retry-After"?: number;
54380
+ [name: string]: unknown;
54381
+ };
54382
+ content: {
54383
+ "application/json": {
54384
+ code: string;
54385
+ message: string;
54386
+ links?: {
54387
+ docs: string;
54388
+ schema: string;
54389
+ };
54390
+ issues?: {
54391
+ message: string;
54392
+ path?: (string | number)[];
54393
+ schema?: string;
54394
+ }[];
54395
+ retryable?: boolean;
54396
+ context?: unknown;
54397
+ };
54398
+ };
54399
+ };
54400
+ /** @description Gone */
54401
+ 410: {
54402
+ headers: {
54403
+ /** @description Seconds to wait when retryable=true and the server supplies a delay. */
54404
+ "Retry-After"?: number;
54405
+ [name: string]: unknown;
54406
+ };
54407
+ content: {
54408
+ "application/json": {
54409
+ code: string;
54410
+ message: string;
54411
+ links?: {
54412
+ docs: string;
54413
+ schema: string;
54414
+ };
54415
+ issues?: {
54416
+ message: string;
54417
+ path?: (string | number)[];
54418
+ schema?: string;
54419
+ }[];
54420
+ retryable?: boolean;
54421
+ context?: unknown;
54422
+ };
54423
+ };
54424
+ };
54425
+ /** @description Unprocessable content */
54426
+ 422: {
54427
+ headers: {
54428
+ /** @description Seconds to wait when retryable=true and the server supplies a delay. */
54429
+ "Retry-After"?: number;
54430
+ [name: string]: unknown;
54431
+ };
54432
+ content: {
54433
+ "application/json": {
54434
+ code: string;
54435
+ message: string;
54436
+ links?: {
54437
+ docs: string;
54438
+ schema: string;
54439
+ };
54440
+ issues?: {
54441
+ message: string;
54442
+ path?: (string | number)[];
54443
+ schema?: string;
54444
+ }[];
54445
+ retryable?: boolean;
54446
+ context?: unknown;
54447
+ };
54448
+ };
54449
+ };
54450
+ /** @description Internal server error */
54451
+ 500: {
54452
+ headers: {
54453
+ /** @description Seconds to wait when retryable=true and the server supplies a delay. */
54454
+ "Retry-After"?: number;
54455
+ [name: string]: unknown;
54456
+ };
54457
+ content: {
54458
+ "application/json": {
54459
+ code: string;
54460
+ message: string;
54461
+ links?: {
54462
+ docs: string;
54463
+ schema: string;
54464
+ };
54465
+ issues?: {
54466
+ message: string;
54467
+ path?: (string | number)[];
54468
+ schema?: string;
54469
+ }[];
54470
+ retryable?: boolean;
54471
+ context?: unknown;
54472
+ };
54473
+ };
54474
+ };
54475
+ /** @description Service unavailable */
54476
+ 503: {
54477
+ headers: {
54478
+ /** @description Seconds to wait when retryable=true and the server supplies a delay. */
54479
+ "Retry-After"?: number;
54480
+ [name: string]: unknown;
54481
+ };
54482
+ content: {
54483
+ "application/json": {
54484
+ code: string;
54485
+ message: string;
54486
+ links?: {
54487
+ docs: string;
54488
+ schema: string;
54489
+ };
54490
+ issues?: {
54491
+ message: string;
54492
+ path?: (string | number)[];
54493
+ schema?: string;
54494
+ }[];
54495
+ retryable?: boolean;
54496
+ context?: unknown;
54497
+ };
54498
+ };
54499
+ };
54500
+ };
54501
+ };
54243
54502
  updateMeNotifications: {
54244
54503
  parameters: {
54245
54504
  query?: never;