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