@opusdns/api 0.54.0 → 0.56.0
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 +1 -1
- package/src/helpers/constants.ts +1 -51
- package/src/helpers/keys.ts +3061 -5172
- package/src/helpers/requests.d.ts +1 -569
- package/src/helpers/responses.d.ts +38 -916
- package/src/helpers/schemas-arrays.d.ts +1 -15
- package/src/helpers/schemas.d.ts +0 -208
- package/src/openapi.yaml +127 -1224
- package/src/schema.d.ts +122 -1289
|
@@ -34,7 +34,7 @@ import { operations } from '../schema';
|
|
|
34
34
|
|
|
35
35
|
import { DomainDnssecDataCreateArray, OrganizationAttributeUpdateArray } from './schemas-arrays.d';
|
|
36
36
|
|
|
37
|
-
import { OrganizationCredentialExtra, SignupCreate, ContactCreate, DnsZoneCreate, DnsZoneRecordsPatchOps, DnsZoneRrsetsPatchOps, DnsZoneRrsetsCreate, DomainCreate, DomainUpdate, DomainRenewRequest, DomainRestoreRequest, DomainTransferIn, EmailForwardAlias, EmailForwardAliasUpdate,
|
|
37
|
+
import { OrganizationCredentialExtra, SignupCreate, ContactCreate, DnsZoneCreate, DnsZoneRecordsPatchOps, DnsZoneRrsetsPatchOps, DnsZoneRrsetsCreate, DomainCreate, DomainUpdate, DomainRenewRequest, DomainRestoreRequest, DomainTransferIn, EmailForwardAlias, EmailForwardAliasUpdate, OrganizationCreate, IpRestrictionCreate, IpRestrictionUpdate, OrganizationUpdate, PlanUpdate, UserCreate, PasswordUpdate, UserUpdate, SpiceDbRelationshipUpdate } from './schemas.d';
|
|
38
38
|
|
|
39
39
|
/**
|
|
40
40
|
* Request type for GET AuthClientCredentials endpoint
|
|
@@ -2422,260 +2422,6 @@ export type PATCH_EventsEventId_Request = {
|
|
|
2422
2422
|
*/
|
|
2423
2423
|
export type PATCH_EventsEventId_Request_Path = PATCH_EventsEventId_Request['parameters']['path'];
|
|
2424
2424
|
|
|
2425
|
-
/**
|
|
2426
|
-
* Request type for GET Notifications endpoint
|
|
2427
|
-
*
|
|
2428
|
-
* List Notifications
|
|
2429
|
-
*
|
|
2430
|
-
* @remarks
|
|
2431
|
-
* This type defines the complete request structure for the GET Notifications endpoint.
|
|
2432
|
-
* It includes all parameters (query, path) and request body types as defined in the OpenAPI specification.
|
|
2433
|
-
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
2434
|
-
*
|
|
2435
|
-
* @example
|
|
2436
|
-
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
2437
|
-
*
|
|
2438
|
-
* @path /v1/notifications
|
|
2439
|
-
*
|
|
2440
|
-
* @see {@link GET_Notifications_Request_Query} - Query parameters type
|
|
2441
|
-
* @see {@link GET_Notifications_Request_Path} - Path parameters type
|
|
2442
|
-
* @see {@link GET_Notifications_Request_Body} - Request body type
|
|
2443
|
-
*/
|
|
2444
|
-
export type GET_Notifications_Request = {
|
|
2445
|
-
parameters: {
|
|
2446
|
-
query: operations['list_notifications_v1_notifications_get']['parameters']['query'];
|
|
2447
|
-
};
|
|
2448
|
-
}
|
|
2449
|
-
/**
|
|
2450
|
-
* Query parameters for GET /v1/notifications
|
|
2451
|
-
*
|
|
2452
|
-
* @remarks
|
|
2453
|
-
* This type defines the query parameters for the GET /v1/notifications endpoint.
|
|
2454
|
-
* It provides type safety for all query parameters as defined in the OpenAPI specification.
|
|
2455
|
-
*
|
|
2456
|
-
* @example
|
|
2457
|
-
* Use this type to ensure type safety for query parameters.
|
|
2458
|
-
*
|
|
2459
|
-
* @path /v1/notifications
|
|
2460
|
-
*/
|
|
2461
|
-
export type GET_Notifications_Request_Query = GET_Notifications_Request['parameters']['query'];
|
|
2462
|
-
|
|
2463
|
-
/**
|
|
2464
|
-
* Request type for POST Notifications endpoint
|
|
2465
|
-
*
|
|
2466
|
-
* Create Notification
|
|
2467
|
-
*
|
|
2468
|
-
* @remarks
|
|
2469
|
-
* This type defines the complete request structure for the POST Notifications endpoint.
|
|
2470
|
-
* It includes all parameters (query, path) and request body types as defined in the OpenAPI specification.
|
|
2471
|
-
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
2472
|
-
*
|
|
2473
|
-
* @example
|
|
2474
|
-
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
2475
|
-
*
|
|
2476
|
-
* @path /v1/notifications
|
|
2477
|
-
*
|
|
2478
|
-
* @see {@link POST_Notifications_Request_Query} - Query parameters type
|
|
2479
|
-
* @see {@link POST_Notifications_Request_Path} - Path parameters type
|
|
2480
|
-
* @see {@link POST_Notifications_Request_Body} - Request body type
|
|
2481
|
-
*/
|
|
2482
|
-
export type POST_Notifications_Request = {
|
|
2483
|
-
requestBody: NotificationCreate;
|
|
2484
|
-
}
|
|
2485
|
-
/**
|
|
2486
|
-
* Request body for POST /v1/notifications
|
|
2487
|
-
*
|
|
2488
|
-
* @remarks
|
|
2489
|
-
* This type defines the request body structure for the POST /v1/notifications endpoint.
|
|
2490
|
-
* It provides type safety for the request body as defined in the OpenAPI specification.
|
|
2491
|
-
*
|
|
2492
|
-
* @example
|
|
2493
|
-
* Use this type to ensure type safety for request body structure.
|
|
2494
|
-
*
|
|
2495
|
-
* @path /v1/notifications
|
|
2496
|
-
*/
|
|
2497
|
-
export type POST_Notifications_Request_Body = POST_Notifications_Request['requestBody'];
|
|
2498
|
-
|
|
2499
|
-
/**
|
|
2500
|
-
* Request type for DELETE NotificationsNotificationId endpoint
|
|
2501
|
-
*
|
|
2502
|
-
* Delete Notification
|
|
2503
|
-
*
|
|
2504
|
-
* @remarks
|
|
2505
|
-
* This type defines the complete request structure for the DELETE NotificationsNotificationId endpoint.
|
|
2506
|
-
* It includes all parameters (query, path) and request body types as defined in the OpenAPI specification.
|
|
2507
|
-
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
2508
|
-
*
|
|
2509
|
-
* @example
|
|
2510
|
-
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
2511
|
-
*
|
|
2512
|
-
* @path /v1/notifications/{notification_id}
|
|
2513
|
-
*
|
|
2514
|
-
* @see {@link DELETE_NotificationsNotificationId_Request_Query} - Query parameters type
|
|
2515
|
-
* @see {@link DELETE_NotificationsNotificationId_Request_Path} - Path parameters type
|
|
2516
|
-
* @see {@link DELETE_NotificationsNotificationId_Request_Body} - Request body type
|
|
2517
|
-
*/
|
|
2518
|
-
export type DELETE_NotificationsNotificationId_Request = {
|
|
2519
|
-
parameters: {
|
|
2520
|
-
path: operations['delete_notification_v1_notifications__notification_id__delete']['parameters']['path'];
|
|
2521
|
-
};
|
|
2522
|
-
}
|
|
2523
|
-
/**
|
|
2524
|
-
* Path parameters for DELETE /v1/notifications/{notification_id}
|
|
2525
|
-
*
|
|
2526
|
-
* @remarks
|
|
2527
|
-
* This type defines the path parameters for the DELETE /v1/notifications/{notification_id} endpoint.
|
|
2528
|
-
* It provides type safety for all path parameters as defined in the OpenAPI specification.
|
|
2529
|
-
*
|
|
2530
|
-
* @example
|
|
2531
|
-
* Use this type to ensure type safety for path parameters.
|
|
2532
|
-
*
|
|
2533
|
-
* @path /v1/notifications/{notification_id}
|
|
2534
|
-
*/
|
|
2535
|
-
export type DELETE_NotificationsNotificationId_Request_Path = DELETE_NotificationsNotificationId_Request['parameters']['path'];
|
|
2536
|
-
|
|
2537
|
-
/**
|
|
2538
|
-
* Request type for GET NotificationsNotificationId endpoint
|
|
2539
|
-
*
|
|
2540
|
-
* Get Notification
|
|
2541
|
-
*
|
|
2542
|
-
* @remarks
|
|
2543
|
-
* This type defines the complete request structure for the GET NotificationsNotificationId endpoint.
|
|
2544
|
-
* It includes all parameters (query, path) and request body types as defined in the OpenAPI specification.
|
|
2545
|
-
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
2546
|
-
*
|
|
2547
|
-
* @example
|
|
2548
|
-
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
2549
|
-
*
|
|
2550
|
-
* @path /v1/notifications/{notification_id}
|
|
2551
|
-
*
|
|
2552
|
-
* @see {@link GET_NotificationsNotificationId_Request_Query} - Query parameters type
|
|
2553
|
-
* @see {@link GET_NotificationsNotificationId_Request_Path} - Path parameters type
|
|
2554
|
-
* @see {@link GET_NotificationsNotificationId_Request_Body} - Request body type
|
|
2555
|
-
*/
|
|
2556
|
-
export type GET_NotificationsNotificationId_Request = {
|
|
2557
|
-
parameters: {
|
|
2558
|
-
query: operations['get_notification_v1_notifications__notification_id__get']['parameters']['query'];
|
|
2559
|
-
path: operations['get_notification_v1_notifications__notification_id__get']['parameters']['path'];
|
|
2560
|
-
};
|
|
2561
|
-
}
|
|
2562
|
-
/**
|
|
2563
|
-
* Query parameters for GET /v1/notifications/{notification_id}
|
|
2564
|
-
*
|
|
2565
|
-
* @remarks
|
|
2566
|
-
* This type defines the query parameters for the GET /v1/notifications/{notification_id} endpoint.
|
|
2567
|
-
* It provides type safety for all query parameters as defined in the OpenAPI specification.
|
|
2568
|
-
*
|
|
2569
|
-
* @example
|
|
2570
|
-
* Use this type to ensure type safety for query parameters.
|
|
2571
|
-
*
|
|
2572
|
-
* @path /v1/notifications/{notification_id}
|
|
2573
|
-
*/
|
|
2574
|
-
export type GET_NotificationsNotificationId_Request_Query = GET_NotificationsNotificationId_Request['parameters']['query'];
|
|
2575
|
-
/**
|
|
2576
|
-
* Path parameters for GET /v1/notifications/{notification_id}
|
|
2577
|
-
*
|
|
2578
|
-
* @remarks
|
|
2579
|
-
* This type defines the path parameters for the GET /v1/notifications/{notification_id} endpoint.
|
|
2580
|
-
* It provides type safety for all path parameters as defined in the OpenAPI specification.
|
|
2581
|
-
*
|
|
2582
|
-
* @example
|
|
2583
|
-
* Use this type to ensure type safety for path parameters.
|
|
2584
|
-
*
|
|
2585
|
-
* @path /v1/notifications/{notification_id}
|
|
2586
|
-
*/
|
|
2587
|
-
export type GET_NotificationsNotificationId_Request_Path = GET_NotificationsNotificationId_Request['parameters']['path'];
|
|
2588
|
-
|
|
2589
|
-
/**
|
|
2590
|
-
* Request type for PUT NotificationsNotificationId endpoint
|
|
2591
|
-
*
|
|
2592
|
-
* Update Notification
|
|
2593
|
-
*
|
|
2594
|
-
* @remarks
|
|
2595
|
-
* This type defines the complete request structure for the PUT NotificationsNotificationId endpoint.
|
|
2596
|
-
* It includes all parameters (query, path) and request body types as defined in the OpenAPI specification.
|
|
2597
|
-
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
2598
|
-
*
|
|
2599
|
-
* @example
|
|
2600
|
-
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
2601
|
-
*
|
|
2602
|
-
* @path /v1/notifications/{notification_id}
|
|
2603
|
-
*
|
|
2604
|
-
* @see {@link PUT_NotificationsNotificationId_Request_Query} - Query parameters type
|
|
2605
|
-
* @see {@link PUT_NotificationsNotificationId_Request_Path} - Path parameters type
|
|
2606
|
-
* @see {@link PUT_NotificationsNotificationId_Request_Body} - Request body type
|
|
2607
|
-
*/
|
|
2608
|
-
export type PUT_NotificationsNotificationId_Request = {
|
|
2609
|
-
parameters: {
|
|
2610
|
-
path: operations['update_notification_v1_notifications__notification_id__put']['parameters']['path'];
|
|
2611
|
-
};
|
|
2612
|
-
requestBody: NotificationUpdate;
|
|
2613
|
-
}
|
|
2614
|
-
/**
|
|
2615
|
-
* Path parameters for PUT /v1/notifications/{notification_id}
|
|
2616
|
-
*
|
|
2617
|
-
* @remarks
|
|
2618
|
-
* This type defines the path parameters for the PUT /v1/notifications/{notification_id} endpoint.
|
|
2619
|
-
* It provides type safety for all path parameters as defined in the OpenAPI specification.
|
|
2620
|
-
*
|
|
2621
|
-
* @example
|
|
2622
|
-
* Use this type to ensure type safety for path parameters.
|
|
2623
|
-
*
|
|
2624
|
-
* @path /v1/notifications/{notification_id}
|
|
2625
|
-
*/
|
|
2626
|
-
export type PUT_NotificationsNotificationId_Request_Path = PUT_NotificationsNotificationId_Request['parameters']['path'];
|
|
2627
|
-
/**
|
|
2628
|
-
* Request body for PUT /v1/notifications/{notification_id}
|
|
2629
|
-
*
|
|
2630
|
-
* @remarks
|
|
2631
|
-
* This type defines the request body structure for the PUT /v1/notifications/{notification_id} endpoint.
|
|
2632
|
-
* It provides type safety for the request body as defined in the OpenAPI specification.
|
|
2633
|
-
*
|
|
2634
|
-
* @example
|
|
2635
|
-
* Use this type to ensure type safety for request body structure.
|
|
2636
|
-
*
|
|
2637
|
-
* @path /v1/notifications/{notification_id}
|
|
2638
|
-
*/
|
|
2639
|
-
export type PUT_NotificationsNotificationId_Request_Body = PUT_NotificationsNotificationId_Request['requestBody'];
|
|
2640
|
-
|
|
2641
|
-
/**
|
|
2642
|
-
* Request type for PATCH NotificationsNotificationIdRead endpoint
|
|
2643
|
-
*
|
|
2644
|
-
* Update Notification Read
|
|
2645
|
-
*
|
|
2646
|
-
* @remarks
|
|
2647
|
-
* This type defines the complete request structure for the PATCH NotificationsNotificationIdRead endpoint.
|
|
2648
|
-
* It includes all parameters (query, path) and request body types as defined in the OpenAPI specification.
|
|
2649
|
-
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
2650
|
-
*
|
|
2651
|
-
* @example
|
|
2652
|
-
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
2653
|
-
*
|
|
2654
|
-
* @path /v1/notifications/{notification_id}/read
|
|
2655
|
-
*
|
|
2656
|
-
* @see {@link PATCH_NotificationsNotificationIdRead_Request_Query} - Query parameters type
|
|
2657
|
-
* @see {@link PATCH_NotificationsNotificationIdRead_Request_Path} - Path parameters type
|
|
2658
|
-
* @see {@link PATCH_NotificationsNotificationIdRead_Request_Body} - Request body type
|
|
2659
|
-
*/
|
|
2660
|
-
export type PATCH_NotificationsNotificationIdRead_Request = {
|
|
2661
|
-
parameters: {
|
|
2662
|
-
path: operations['update_notification_read_v1_notifications__notification_id__read_patch']['parameters']['path'];
|
|
2663
|
-
};
|
|
2664
|
-
}
|
|
2665
|
-
/**
|
|
2666
|
-
* Path parameters for PATCH /v1/notifications/{notification_id}/read
|
|
2667
|
-
*
|
|
2668
|
-
* @remarks
|
|
2669
|
-
* This type defines the path parameters for the PATCH /v1/notifications/{notification_id}/read endpoint.
|
|
2670
|
-
* It provides type safety for all path parameters as defined in the OpenAPI specification.
|
|
2671
|
-
*
|
|
2672
|
-
* @example
|
|
2673
|
-
* Use this type to ensure type safety for path parameters.
|
|
2674
|
-
*
|
|
2675
|
-
* @path /v1/notifications/{notification_id}/read
|
|
2676
|
-
*/
|
|
2677
|
-
export type PATCH_NotificationsNotificationIdRead_Request_Path = PATCH_NotificationsNotificationIdRead_Request['parameters']['path'];
|
|
2678
|
-
|
|
2679
2425
|
/**
|
|
2680
2426
|
* Request type for GET Organizations endpoint
|
|
2681
2427
|
*
|
|
@@ -3579,80 +3325,6 @@ export type POST_Users_Request = {
|
|
|
3579
3325
|
*/
|
|
3580
3326
|
export type POST_Users_Request_Body = POST_Users_Request['requestBody'];
|
|
3581
3327
|
|
|
3582
|
-
/**
|
|
3583
|
-
* Request type for POST UsersEmailPasswordReset endpoint
|
|
3584
|
-
*
|
|
3585
|
-
* Create User Password Reset
|
|
3586
|
-
*
|
|
3587
|
-
* @remarks
|
|
3588
|
-
* This type defines the complete request structure for the POST UsersEmailPasswordReset endpoint.
|
|
3589
|
-
* It includes all parameters (query, path) and request body types as defined in the OpenAPI specification.
|
|
3590
|
-
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
3591
|
-
*
|
|
3592
|
-
* @example
|
|
3593
|
-
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
3594
|
-
*
|
|
3595
|
-
* @path /v1/users/email/password-reset
|
|
3596
|
-
*
|
|
3597
|
-
* @see {@link POST_UsersEmailPasswordReset_Request_Query} - Query parameters type
|
|
3598
|
-
* @see {@link POST_UsersEmailPasswordReset_Request_Path} - Path parameters type
|
|
3599
|
-
* @see {@link POST_UsersEmailPasswordReset_Request_Body} - Request body type
|
|
3600
|
-
*/
|
|
3601
|
-
export type POST_UsersEmailPasswordReset_Request = {
|
|
3602
|
-
requestBody: StartPasswordReset;
|
|
3603
|
-
}
|
|
3604
|
-
/**
|
|
3605
|
-
* Request body for POST /v1/users/email/password-reset
|
|
3606
|
-
*
|
|
3607
|
-
* @remarks
|
|
3608
|
-
* This type defines the request body structure for the POST /v1/users/email/password-reset endpoint.
|
|
3609
|
-
* It provides type safety for the request body as defined in the OpenAPI specification.
|
|
3610
|
-
*
|
|
3611
|
-
* @example
|
|
3612
|
-
* Use this type to ensure type safety for request body structure.
|
|
3613
|
-
*
|
|
3614
|
-
* @path /v1/users/email/password-reset
|
|
3615
|
-
*/
|
|
3616
|
-
export type POST_UsersEmailPasswordReset_Request_Body = POST_UsersEmailPasswordReset_Request['requestBody'];
|
|
3617
|
-
|
|
3618
|
-
/**
|
|
3619
|
-
* Request type for GET UsersEmailVerify endpoint
|
|
3620
|
-
*
|
|
3621
|
-
* Redirect Verify User
|
|
3622
|
-
*
|
|
3623
|
-
* @remarks
|
|
3624
|
-
* This type defines the complete request structure for the GET UsersEmailVerify endpoint.
|
|
3625
|
-
* It includes all parameters (query, path) and request body types as defined in the OpenAPI specification.
|
|
3626
|
-
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
3627
|
-
*
|
|
3628
|
-
* @example
|
|
3629
|
-
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
3630
|
-
*
|
|
3631
|
-
* @path /v1/users/email/verify
|
|
3632
|
-
*
|
|
3633
|
-
* @see {@link GET_UsersEmailVerify_Request_Query} - Query parameters type
|
|
3634
|
-
* @see {@link GET_UsersEmailVerify_Request_Path} - Path parameters type
|
|
3635
|
-
* @see {@link GET_UsersEmailVerify_Request_Body} - Request body type
|
|
3636
|
-
*/
|
|
3637
|
-
export type GET_UsersEmailVerify_Request = {
|
|
3638
|
-
parameters: {
|
|
3639
|
-
query: operations['redirect_verify_user_v1_users_email_verify_get']['parameters']['query'];
|
|
3640
|
-
};
|
|
3641
|
-
}
|
|
3642
|
-
/**
|
|
3643
|
-
* Query parameters for GET /v1/users/email/verify
|
|
3644
|
-
*
|
|
3645
|
-
* @remarks
|
|
3646
|
-
* This type defines the query parameters for the GET /v1/users/email/verify endpoint.
|
|
3647
|
-
* It provides type safety for all query parameters as defined in the OpenAPI specification.
|
|
3648
|
-
*
|
|
3649
|
-
* @example
|
|
3650
|
-
* Use this type to ensure type safety for query parameters.
|
|
3651
|
-
*
|
|
3652
|
-
* @path /v1/users/email/verify
|
|
3653
|
-
*/
|
|
3654
|
-
export type GET_UsersEmailVerify_Request_Query = GET_UsersEmailVerify_Request['parameters']['query'];
|
|
3655
|
-
|
|
3656
3328
|
/**
|
|
3657
3329
|
* Request type for GET UsersMe endpoint
|
|
3658
3330
|
*
|
|
@@ -3727,104 +3399,6 @@ export type PATCH_UsersMePasswordReset_Request = {
|
|
|
3727
3399
|
*/
|
|
3728
3400
|
export type PATCH_UsersMePasswordReset_Request_Body = PATCH_UsersMePasswordReset_Request['requestBody'];
|
|
3729
3401
|
|
|
3730
|
-
/**
|
|
3731
|
-
* Request type for GET UsersMeVerification endpoint
|
|
3732
|
-
*
|
|
3733
|
-
* Get Verification Status Me
|
|
3734
|
-
*
|
|
3735
|
-
* @remarks
|
|
3736
|
-
* This type defines the complete request structure for the GET UsersMeVerification endpoint.
|
|
3737
|
-
* It includes all parameters (query, path) and request body types as defined in the OpenAPI specification.
|
|
3738
|
-
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
3739
|
-
*
|
|
3740
|
-
* @example
|
|
3741
|
-
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
3742
|
-
*
|
|
3743
|
-
* @path /v1/users/me/verification
|
|
3744
|
-
*
|
|
3745
|
-
* @see {@link GET_UsersMeVerification_Request_Query} - Query parameters type
|
|
3746
|
-
* @see {@link GET_UsersMeVerification_Request_Path} - Path parameters type
|
|
3747
|
-
* @see {@link GET_UsersMeVerification_Request_Body} - Request body type
|
|
3748
|
-
*/
|
|
3749
|
-
export type GET_UsersMeVerification_Request = {
|
|
3750
|
-
}
|
|
3751
|
-
|
|
3752
|
-
/**
|
|
3753
|
-
* Request type for PATCH UsersMeVerification endpoint
|
|
3754
|
-
*
|
|
3755
|
-
* Update Verification Me
|
|
3756
|
-
*
|
|
3757
|
-
* @remarks
|
|
3758
|
-
* This type defines the complete request structure for the PATCH UsersMeVerification endpoint.
|
|
3759
|
-
* It includes all parameters (query, path) and request body types as defined in the OpenAPI specification.
|
|
3760
|
-
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
3761
|
-
*
|
|
3762
|
-
* @example
|
|
3763
|
-
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
3764
|
-
*
|
|
3765
|
-
* @path /v1/users/me/verification
|
|
3766
|
-
*
|
|
3767
|
-
* @see {@link PATCH_UsersMeVerification_Request_Query} - Query parameters type
|
|
3768
|
-
* @see {@link PATCH_UsersMeVerification_Request_Path} - Path parameters type
|
|
3769
|
-
* @see {@link PATCH_UsersMeVerification_Request_Body} - Request body type
|
|
3770
|
-
*/
|
|
3771
|
-
export type PATCH_UsersMeVerification_Request = {
|
|
3772
|
-
parameters: {
|
|
3773
|
-
query: operations['update_verification_me_v1_users_me_verification_patch']['parameters']['query'];
|
|
3774
|
-
};
|
|
3775
|
-
}
|
|
3776
|
-
/**
|
|
3777
|
-
* Query parameters for PATCH /v1/users/me/verification
|
|
3778
|
-
*
|
|
3779
|
-
* @remarks
|
|
3780
|
-
* This type defines the query parameters for the PATCH /v1/users/me/verification endpoint.
|
|
3781
|
-
* It provides type safety for all query parameters as defined in the OpenAPI specification.
|
|
3782
|
-
*
|
|
3783
|
-
* @example
|
|
3784
|
-
* Use this type to ensure type safety for query parameters.
|
|
3785
|
-
*
|
|
3786
|
-
* @path /v1/users/me/verification
|
|
3787
|
-
*/
|
|
3788
|
-
export type PATCH_UsersMeVerification_Request_Query = PATCH_UsersMeVerification_Request['parameters']['query'];
|
|
3789
|
-
|
|
3790
|
-
/**
|
|
3791
|
-
* Request type for POST UsersMeVerification endpoint
|
|
3792
|
-
*
|
|
3793
|
-
* Create Verification Me
|
|
3794
|
-
*
|
|
3795
|
-
* @remarks
|
|
3796
|
-
* This type defines the complete request structure for the POST UsersMeVerification endpoint.
|
|
3797
|
-
* It includes all parameters (query, path) and request body types as defined in the OpenAPI specification.
|
|
3798
|
-
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
3799
|
-
*
|
|
3800
|
-
* @example
|
|
3801
|
-
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
3802
|
-
*
|
|
3803
|
-
* @path /v1/users/me/verification
|
|
3804
|
-
*
|
|
3805
|
-
* @see {@link POST_UsersMeVerification_Request_Query} - Query parameters type
|
|
3806
|
-
* @see {@link POST_UsersMeVerification_Request_Path} - Path parameters type
|
|
3807
|
-
* @see {@link POST_UsersMeVerification_Request_Body} - Request body type
|
|
3808
|
-
*/
|
|
3809
|
-
export type POST_UsersMeVerification_Request = {
|
|
3810
|
-
parameters: {
|
|
3811
|
-
query: operations['create_verification_me_v1_users_me_verification_post']['parameters']['query'];
|
|
3812
|
-
};
|
|
3813
|
-
}
|
|
3814
|
-
/**
|
|
3815
|
-
* Query parameters for POST /v1/users/me/verification
|
|
3816
|
-
*
|
|
3817
|
-
* @remarks
|
|
3818
|
-
* This type defines the query parameters for the POST /v1/users/me/verification endpoint.
|
|
3819
|
-
* It provides type safety for all query parameters as defined in the OpenAPI specification.
|
|
3820
|
-
*
|
|
3821
|
-
* @example
|
|
3822
|
-
* Use this type to ensure type safety for query parameters.
|
|
3823
|
-
*
|
|
3824
|
-
* @path /v1/users/me/verification
|
|
3825
|
-
*/
|
|
3826
|
-
export type POST_UsersMeVerification_Request_Query = POST_UsersMeVerification_Request['parameters']['query'];
|
|
3827
|
-
|
|
3828
3402
|
/**
|
|
3829
3403
|
* Request type for DELETE UsersUserId endpoint
|
|
3830
3404
|
*
|
|
@@ -4095,145 +3669,3 @@ export type PATCH_UsersUserIdRoles_Request_Path = PATCH_UsersUserIdRoles_Request
|
|
|
4095
3669
|
*/
|
|
4096
3670
|
export type PATCH_UsersUserIdRoles_Request_Body = PATCH_UsersUserIdRoles_Request['requestBody'];
|
|
4097
3671
|
|
|
4098
|
-
/**
|
|
4099
|
-
* Request type for GET UsersUserIdVerification endpoint
|
|
4100
|
-
*
|
|
4101
|
-
* Get Verification Status
|
|
4102
|
-
*
|
|
4103
|
-
* @remarks
|
|
4104
|
-
* This type defines the complete request structure for the GET UsersUserIdVerification endpoint.
|
|
4105
|
-
* It includes all parameters (query, path) and request body types as defined in the OpenAPI specification.
|
|
4106
|
-
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
4107
|
-
*
|
|
4108
|
-
* @example
|
|
4109
|
-
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
4110
|
-
*
|
|
4111
|
-
* @path /v1/users/{user_id}/verification
|
|
4112
|
-
*
|
|
4113
|
-
* @see {@link GET_UsersUserIdVerification_Request_Query} - Query parameters type
|
|
4114
|
-
* @see {@link GET_UsersUserIdVerification_Request_Path} - Path parameters type
|
|
4115
|
-
* @see {@link GET_UsersUserIdVerification_Request_Body} - Request body type
|
|
4116
|
-
*/
|
|
4117
|
-
export type GET_UsersUserIdVerification_Request = {
|
|
4118
|
-
parameters: {
|
|
4119
|
-
path: operations['get_verification_status_v1_users__user_id__verification_get']['parameters']['path'];
|
|
4120
|
-
};
|
|
4121
|
-
}
|
|
4122
|
-
/**
|
|
4123
|
-
* Path parameters for GET /v1/users/{user_id}/verification
|
|
4124
|
-
*
|
|
4125
|
-
* @remarks
|
|
4126
|
-
* This type defines the path parameters for the GET /v1/users/{user_id}/verification endpoint.
|
|
4127
|
-
* It provides type safety for all path parameters as defined in the OpenAPI specification.
|
|
4128
|
-
*
|
|
4129
|
-
* @example
|
|
4130
|
-
* Use this type to ensure type safety for path parameters.
|
|
4131
|
-
*
|
|
4132
|
-
* @path /v1/users/{user_id}/verification
|
|
4133
|
-
*/
|
|
4134
|
-
export type GET_UsersUserIdVerification_Request_Path = GET_UsersUserIdVerification_Request['parameters']['path'];
|
|
4135
|
-
|
|
4136
|
-
/**
|
|
4137
|
-
* Request type for PATCH UsersUserIdVerification endpoint
|
|
4138
|
-
*
|
|
4139
|
-
* Update Verification
|
|
4140
|
-
*
|
|
4141
|
-
* @remarks
|
|
4142
|
-
* This type defines the complete request structure for the PATCH UsersUserIdVerification endpoint.
|
|
4143
|
-
* It includes all parameters (query, path) and request body types as defined in the OpenAPI specification.
|
|
4144
|
-
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
4145
|
-
*
|
|
4146
|
-
* @example
|
|
4147
|
-
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
4148
|
-
*
|
|
4149
|
-
* @path /v1/users/{user_id}/verification
|
|
4150
|
-
*
|
|
4151
|
-
* @see {@link PATCH_UsersUserIdVerification_Request_Query} - Query parameters type
|
|
4152
|
-
* @see {@link PATCH_UsersUserIdVerification_Request_Path} - Path parameters type
|
|
4153
|
-
* @see {@link PATCH_UsersUserIdVerification_Request_Body} - Request body type
|
|
4154
|
-
*/
|
|
4155
|
-
export type PATCH_UsersUserIdVerification_Request = {
|
|
4156
|
-
parameters: {
|
|
4157
|
-
query: operations['update_verification_v1_users__user_id__verification_patch']['parameters']['query'];
|
|
4158
|
-
path: operations['update_verification_v1_users__user_id__verification_patch']['parameters']['path'];
|
|
4159
|
-
};
|
|
4160
|
-
}
|
|
4161
|
-
/**
|
|
4162
|
-
* Query parameters for PATCH /v1/users/{user_id}/verification
|
|
4163
|
-
*
|
|
4164
|
-
* @remarks
|
|
4165
|
-
* This type defines the query parameters for the PATCH /v1/users/{user_id}/verification endpoint.
|
|
4166
|
-
* It provides type safety for all query parameters as defined in the OpenAPI specification.
|
|
4167
|
-
*
|
|
4168
|
-
* @example
|
|
4169
|
-
* Use this type to ensure type safety for query parameters.
|
|
4170
|
-
*
|
|
4171
|
-
* @path /v1/users/{user_id}/verification
|
|
4172
|
-
*/
|
|
4173
|
-
export type PATCH_UsersUserIdVerification_Request_Query = PATCH_UsersUserIdVerification_Request['parameters']['query'];
|
|
4174
|
-
/**
|
|
4175
|
-
* Path parameters for PATCH /v1/users/{user_id}/verification
|
|
4176
|
-
*
|
|
4177
|
-
* @remarks
|
|
4178
|
-
* This type defines the path parameters for the PATCH /v1/users/{user_id}/verification endpoint.
|
|
4179
|
-
* It provides type safety for all path parameters as defined in the OpenAPI specification.
|
|
4180
|
-
*
|
|
4181
|
-
* @example
|
|
4182
|
-
* Use this type to ensure type safety for path parameters.
|
|
4183
|
-
*
|
|
4184
|
-
* @path /v1/users/{user_id}/verification
|
|
4185
|
-
*/
|
|
4186
|
-
export type PATCH_UsersUserIdVerification_Request_Path = PATCH_UsersUserIdVerification_Request['parameters']['path'];
|
|
4187
|
-
|
|
4188
|
-
/**
|
|
4189
|
-
* Request type for POST UsersUserIdVerification endpoint
|
|
4190
|
-
*
|
|
4191
|
-
* Create Verification
|
|
4192
|
-
*
|
|
4193
|
-
* @remarks
|
|
4194
|
-
* This type defines the complete request structure for the POST UsersUserIdVerification endpoint.
|
|
4195
|
-
* It includes all parameters (query, path) and request body types as defined in the OpenAPI specification.
|
|
4196
|
-
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
4197
|
-
*
|
|
4198
|
-
* @example
|
|
4199
|
-
* Use this type to ensure type safety when making API requests to this endpoint.
|
|
4200
|
-
*
|
|
4201
|
-
* @path /v1/users/{user_id}/verification
|
|
4202
|
-
*
|
|
4203
|
-
* @see {@link POST_UsersUserIdVerification_Request_Query} - Query parameters type
|
|
4204
|
-
* @see {@link POST_UsersUserIdVerification_Request_Path} - Path parameters type
|
|
4205
|
-
* @see {@link POST_UsersUserIdVerification_Request_Body} - Request body type
|
|
4206
|
-
*/
|
|
4207
|
-
export type POST_UsersUserIdVerification_Request = {
|
|
4208
|
-
parameters: {
|
|
4209
|
-
query: operations['create_verification_v1_users__user_id__verification_post']['parameters']['query'];
|
|
4210
|
-
path: operations['create_verification_v1_users__user_id__verification_post']['parameters']['path'];
|
|
4211
|
-
};
|
|
4212
|
-
}
|
|
4213
|
-
/**
|
|
4214
|
-
* Query parameters for POST /v1/users/{user_id}/verification
|
|
4215
|
-
*
|
|
4216
|
-
* @remarks
|
|
4217
|
-
* This type defines the query parameters for the POST /v1/users/{user_id}/verification endpoint.
|
|
4218
|
-
* It provides type safety for all query parameters as defined in the OpenAPI specification.
|
|
4219
|
-
*
|
|
4220
|
-
* @example
|
|
4221
|
-
* Use this type to ensure type safety for query parameters.
|
|
4222
|
-
*
|
|
4223
|
-
* @path /v1/users/{user_id}/verification
|
|
4224
|
-
*/
|
|
4225
|
-
export type POST_UsersUserIdVerification_Request_Query = POST_UsersUserIdVerification_Request['parameters']['query'];
|
|
4226
|
-
/**
|
|
4227
|
-
* Path parameters for POST /v1/users/{user_id}/verification
|
|
4228
|
-
*
|
|
4229
|
-
* @remarks
|
|
4230
|
-
* This type defines the path parameters for the POST /v1/users/{user_id}/verification endpoint.
|
|
4231
|
-
* It provides type safety for all path parameters as defined in the OpenAPI specification.
|
|
4232
|
-
*
|
|
4233
|
-
* @example
|
|
4234
|
-
* Use this type to ensure type safety for path parameters.
|
|
4235
|
-
*
|
|
4236
|
-
* @path /v1/users/{user_id}/verification
|
|
4237
|
-
*/
|
|
4238
|
-
export type POST_UsersUserIdVerification_Request_Path = POST_UsersUserIdVerification_Request['parameters']['path'];
|
|
4239
|
-
|