@unstoppabledomains/ud-cli 0.1.24 → 0.1.26
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/dist/commands/api-commands.d.ts.map +1 -1
- package/dist/commands/api-commands.js +2 -0
- package/dist/commands/api-commands.js.map +1 -1
- package/dist/generated/openapi-spec.json +592 -3
- package/dist/lib/command-hooks.d.ts.map +1 -1
- package/dist/lib/command-hooks.js +48 -0
- package/dist/lib/command-hooks.js.map +1 -1
- package/dist/lib/command-registry.d.ts.map +1 -1
- package/dist/lib/command-registry.js +31 -0
- package/dist/lib/command-registry.js.map +1 -1
- package/dist/lib/formatter.d.ts.map +1 -1
- package/dist/lib/formatter.js +42 -14
- package/dist/lib/formatter.js.map +1 -1
- package/dist/lib/spec-parser.d.ts +1 -1
- package/dist/lib/spec-parser.d.ts.map +1 -1
- package/dist/lib/spec-parser.js +3 -3
- package/dist/lib/spec-parser.js.map +1 -1
- package/package.json +1 -1
|
@@ -3641,6 +3641,595 @@
|
|
|
3641
3641
|
}
|
|
3642
3642
|
}
|
|
3643
3643
|
}
|
|
3644
|
+
},
|
|
3645
|
+
"/mcp/v1/actions/ud_backorder_create": {
|
|
3646
|
+
"post": {
|
|
3647
|
+
"operationId": "backorderCreate",
|
|
3648
|
+
"tags": [
|
|
3649
|
+
"Backorders"
|
|
3650
|
+
],
|
|
3651
|
+
"summary": "Create domain backorders",
|
|
3652
|
+
"description": "Create backorders for one or more expiring DNS domains. The system monitors the domain and automatically registers it when it drops.",
|
|
3653
|
+
"security": [
|
|
3654
|
+
{
|
|
3655
|
+
"bearerAuth": []
|
|
3656
|
+
}
|
|
3657
|
+
],
|
|
3658
|
+
"requestBody": {
|
|
3659
|
+
"required": true,
|
|
3660
|
+
"content": {
|
|
3661
|
+
"application/json": {
|
|
3662
|
+
"schema": {
|
|
3663
|
+
"type": "object",
|
|
3664
|
+
"required": [
|
|
3665
|
+
"domains"
|
|
3666
|
+
],
|
|
3667
|
+
"properties": {
|
|
3668
|
+
"domains": {
|
|
3669
|
+
"type": "array",
|
|
3670
|
+
"minItems": 1,
|
|
3671
|
+
"maxItems": 50,
|
|
3672
|
+
"items": {
|
|
3673
|
+
"type": "object",
|
|
3674
|
+
"required": [
|
|
3675
|
+
"name",
|
|
3676
|
+
"contactId",
|
|
3677
|
+
"availableAfterTimestamp"
|
|
3678
|
+
],
|
|
3679
|
+
"properties": {
|
|
3680
|
+
"name": {
|
|
3681
|
+
"type": "string",
|
|
3682
|
+
"description": "Domain name to backorder"
|
|
3683
|
+
},
|
|
3684
|
+
"contactId": {
|
|
3685
|
+
"type": "string",
|
|
3686
|
+
"description": "ICANN contact ID for domain registration"
|
|
3687
|
+
},
|
|
3688
|
+
"availableAfterTimestamp": {
|
|
3689
|
+
"type": "number",
|
|
3690
|
+
"description": "Unix timestamp (ms) when the domain becomes available for registration"
|
|
3691
|
+
}
|
|
3692
|
+
}
|
|
3693
|
+
}
|
|
3694
|
+
}
|
|
3695
|
+
}
|
|
3696
|
+
}
|
|
3697
|
+
}
|
|
3698
|
+
}
|
|
3699
|
+
},
|
|
3700
|
+
"responses": {
|
|
3701
|
+
"200": {
|
|
3702
|
+
"description": "Backorder creation results",
|
|
3703
|
+
"content": {
|
|
3704
|
+
"application/json": {
|
|
3705
|
+
"schema": {
|
|
3706
|
+
"type": "object",
|
|
3707
|
+
"properties": {
|
|
3708
|
+
"results": {
|
|
3709
|
+
"type": "array",
|
|
3710
|
+
"items": {
|
|
3711
|
+
"type": "object",
|
|
3712
|
+
"properties": {
|
|
3713
|
+
"name": {
|
|
3714
|
+
"type": "string"
|
|
3715
|
+
},
|
|
3716
|
+
"success": {
|
|
3717
|
+
"type": "boolean"
|
|
3718
|
+
},
|
|
3719
|
+
"backorderId": {
|
|
3720
|
+
"type": "number"
|
|
3721
|
+
},
|
|
3722
|
+
"price": {
|
|
3723
|
+
"type": "number"
|
|
3724
|
+
},
|
|
3725
|
+
"serviceFee": {
|
|
3726
|
+
"type": "number"
|
|
3727
|
+
},
|
|
3728
|
+
"status": {
|
|
3729
|
+
"type": "string"
|
|
3730
|
+
},
|
|
3731
|
+
"error": {
|
|
3732
|
+
"type": "string"
|
|
3733
|
+
}
|
|
3734
|
+
}
|
|
3735
|
+
}
|
|
3736
|
+
},
|
|
3737
|
+
"successCount": {
|
|
3738
|
+
"type": "number"
|
|
3739
|
+
},
|
|
3740
|
+
"failureCount": {
|
|
3741
|
+
"type": "number"
|
|
3742
|
+
},
|
|
3743
|
+
"message": {
|
|
3744
|
+
"type": "string"
|
|
3745
|
+
}
|
|
3746
|
+
}
|
|
3747
|
+
}
|
|
3748
|
+
}
|
|
3749
|
+
}
|
|
3750
|
+
},
|
|
3751
|
+
"401": {
|
|
3752
|
+
"description": "Authentication required"
|
|
3753
|
+
}
|
|
3754
|
+
}
|
|
3755
|
+
}
|
|
3756
|
+
},
|
|
3757
|
+
"/mcp/v1/actions/ud_backorder_cancel": {
|
|
3758
|
+
"post": {
|
|
3759
|
+
"operationId": "backorderCancel",
|
|
3760
|
+
"tags": [
|
|
3761
|
+
"Backorders"
|
|
3762
|
+
],
|
|
3763
|
+
"summary": "Cancel domain backorders",
|
|
3764
|
+
"description": "Cancel one or more pending domain backorders. Refunds the Account Balance hold (minus non-refundable service fee) and removes the scheduled registration job.",
|
|
3765
|
+
"security": [
|
|
3766
|
+
{
|
|
3767
|
+
"bearerAuth": []
|
|
3768
|
+
}
|
|
3769
|
+
],
|
|
3770
|
+
"requestBody": {
|
|
3771
|
+
"required": true,
|
|
3772
|
+
"content": {
|
|
3773
|
+
"application/json": {
|
|
3774
|
+
"schema": {
|
|
3775
|
+
"type": "object",
|
|
3776
|
+
"required": [
|
|
3777
|
+
"backorderIds"
|
|
3778
|
+
],
|
|
3779
|
+
"properties": {
|
|
3780
|
+
"backorderIds": {
|
|
3781
|
+
"type": "array",
|
|
3782
|
+
"items": {
|
|
3783
|
+
"type": "number"
|
|
3784
|
+
},
|
|
3785
|
+
"minItems": 1,
|
|
3786
|
+
"maxItems": 50,
|
|
3787
|
+
"description": "Array of backorder IDs to cancel"
|
|
3788
|
+
}
|
|
3789
|
+
}
|
|
3790
|
+
}
|
|
3791
|
+
}
|
|
3792
|
+
}
|
|
3793
|
+
},
|
|
3794
|
+
"responses": {
|
|
3795
|
+
"200": {
|
|
3796
|
+
"description": "Backorder cancellation results",
|
|
3797
|
+
"content": {
|
|
3798
|
+
"application/json": {
|
|
3799
|
+
"schema": {
|
|
3800
|
+
"type": "object",
|
|
3801
|
+
"properties": {
|
|
3802
|
+
"results": {
|
|
3803
|
+
"type": "array",
|
|
3804
|
+
"items": {
|
|
3805
|
+
"type": "object",
|
|
3806
|
+
"properties": {
|
|
3807
|
+
"backorderId": {
|
|
3808
|
+
"type": "number"
|
|
3809
|
+
},
|
|
3810
|
+
"domain": {
|
|
3811
|
+
"type": "string"
|
|
3812
|
+
},
|
|
3813
|
+
"success": {
|
|
3814
|
+
"type": "boolean"
|
|
3815
|
+
},
|
|
3816
|
+
"refundAmount": {
|
|
3817
|
+
"type": "number"
|
|
3818
|
+
},
|
|
3819
|
+
"error": {
|
|
3820
|
+
"type": "string"
|
|
3821
|
+
}
|
|
3822
|
+
}
|
|
3823
|
+
}
|
|
3824
|
+
},
|
|
3825
|
+
"successCount": {
|
|
3826
|
+
"type": "number"
|
|
3827
|
+
},
|
|
3828
|
+
"failureCount": {
|
|
3829
|
+
"type": "number"
|
|
3830
|
+
},
|
|
3831
|
+
"message": {
|
|
3832
|
+
"type": "string"
|
|
3833
|
+
}
|
|
3834
|
+
}
|
|
3835
|
+
}
|
|
3836
|
+
}
|
|
3837
|
+
}
|
|
3838
|
+
},
|
|
3839
|
+
"401": {
|
|
3840
|
+
"description": "Authentication required"
|
|
3841
|
+
}
|
|
3842
|
+
}
|
|
3843
|
+
}
|
|
3844
|
+
},
|
|
3845
|
+
"/mcp/v1/actions/ud_backorders_list": {
|
|
3846
|
+
"post": {
|
|
3847
|
+
"operationId": "backordersList",
|
|
3848
|
+
"tags": [
|
|
3849
|
+
"Backorders"
|
|
3850
|
+
],
|
|
3851
|
+
"summary": "List user's backorders",
|
|
3852
|
+
"description": "List the authenticated user's domain backorders with optional status filtering, domain search, and pagination. Status normalization is applied automatically.",
|
|
3853
|
+
"security": [
|
|
3854
|
+
{
|
|
3855
|
+
"bearerAuth": []
|
|
3856
|
+
}
|
|
3857
|
+
],
|
|
3858
|
+
"requestBody": {
|
|
3859
|
+
"required": true,
|
|
3860
|
+
"content": {
|
|
3861
|
+
"application/json": {
|
|
3862
|
+
"schema": {
|
|
3863
|
+
"type": "object",
|
|
3864
|
+
"properties": {
|
|
3865
|
+
"status": {
|
|
3866
|
+
"type": "array",
|
|
3867
|
+
"items": {
|
|
3868
|
+
"type": "string",
|
|
3869
|
+
"enum": [
|
|
3870
|
+
"pending",
|
|
3871
|
+
"cancelled",
|
|
3872
|
+
"in-progress",
|
|
3873
|
+
"registration-pending",
|
|
3874
|
+
"completed-success",
|
|
3875
|
+
"completed-not-available",
|
|
3876
|
+
"completed-payment-failed",
|
|
3877
|
+
"completed-user-contact-invalid",
|
|
3878
|
+
"failed"
|
|
3879
|
+
]
|
|
3880
|
+
},
|
|
3881
|
+
"description": "Filter by backorder status"
|
|
3882
|
+
},
|
|
3883
|
+
"query": {
|
|
3884
|
+
"type": "string",
|
|
3885
|
+
"maxLength": 253,
|
|
3886
|
+
"description": "Search by domain name (partial match)"
|
|
3887
|
+
},
|
|
3888
|
+
"offset": {
|
|
3889
|
+
"type": "number",
|
|
3890
|
+
"minimum": 0,
|
|
3891
|
+
"description": "Pagination offset (default: 0)"
|
|
3892
|
+
},
|
|
3893
|
+
"limit": {
|
|
3894
|
+
"type": "number",
|
|
3895
|
+
"minimum": 1,
|
|
3896
|
+
"maximum": 100,
|
|
3897
|
+
"description": "Items per page (1-100, default: 20)"
|
|
3898
|
+
}
|
|
3899
|
+
}
|
|
3900
|
+
}
|
|
3901
|
+
}
|
|
3902
|
+
}
|
|
3903
|
+
},
|
|
3904
|
+
"responses": {
|
|
3905
|
+
"200": {
|
|
3906
|
+
"description": "List of backorders with pagination",
|
|
3907
|
+
"content": {
|
|
3908
|
+
"application/json": {
|
|
3909
|
+
"schema": {
|
|
3910
|
+
"type": "object",
|
|
3911
|
+
"properties": {
|
|
3912
|
+
"backorders": {
|
|
3913
|
+
"type": "array",
|
|
3914
|
+
"items": {
|
|
3915
|
+
"type": "object",
|
|
3916
|
+
"properties": {
|
|
3917
|
+
"backorderId": {
|
|
3918
|
+
"type": "number"
|
|
3919
|
+
},
|
|
3920
|
+
"domain": {
|
|
3921
|
+
"type": "string"
|
|
3922
|
+
},
|
|
3923
|
+
"status": {
|
|
3924
|
+
"type": "string"
|
|
3925
|
+
},
|
|
3926
|
+
"price": {
|
|
3927
|
+
"type": "number"
|
|
3928
|
+
},
|
|
3929
|
+
"serviceFee": {
|
|
3930
|
+
"type": "number"
|
|
3931
|
+
},
|
|
3932
|
+
"availableAfter": {
|
|
3933
|
+
"type": "number"
|
|
3934
|
+
},
|
|
3935
|
+
"createdAt": {
|
|
3936
|
+
"type": "number"
|
|
3937
|
+
},
|
|
3938
|
+
"updatedAt": {
|
|
3939
|
+
"type": "number"
|
|
3940
|
+
}
|
|
3941
|
+
}
|
|
3942
|
+
}
|
|
3943
|
+
},
|
|
3944
|
+
"pagination": {
|
|
3945
|
+
"type": "object",
|
|
3946
|
+
"properties": {
|
|
3947
|
+
"total": {
|
|
3948
|
+
"type": "number"
|
|
3949
|
+
},
|
|
3950
|
+
"count": {
|
|
3951
|
+
"type": "number"
|
|
3952
|
+
},
|
|
3953
|
+
"offset": {
|
|
3954
|
+
"type": "number"
|
|
3955
|
+
},
|
|
3956
|
+
"limit": {
|
|
3957
|
+
"type": "number"
|
|
3958
|
+
},
|
|
3959
|
+
"hasMore": {
|
|
3960
|
+
"type": "boolean"
|
|
3961
|
+
},
|
|
3962
|
+
"nextOffset": {
|
|
3963
|
+
"type": "number",
|
|
3964
|
+
"nullable": true
|
|
3965
|
+
}
|
|
3966
|
+
}
|
|
3967
|
+
}
|
|
3968
|
+
}
|
|
3969
|
+
}
|
|
3970
|
+
}
|
|
3971
|
+
}
|
|
3972
|
+
},
|
|
3973
|
+
"401": {
|
|
3974
|
+
"description": "Authentication required"
|
|
3975
|
+
}
|
|
3976
|
+
}
|
|
3977
|
+
}
|
|
3978
|
+
},
|
|
3979
|
+
"/mcp/v1/actions/ud_expireds_list": {
|
|
3980
|
+
"post": {
|
|
3981
|
+
"operationId": "expiredsList",
|
|
3982
|
+
"tags": [
|
|
3983
|
+
"Backorders"
|
|
3984
|
+
],
|
|
3985
|
+
"summary": "Browse the expireds/pending-delete domain marketplace",
|
|
3986
|
+
"description": "List domains that are approaching expiration or have recently dropped and are available for backorder registration. Supports filtering by status, TLD, label length, backorder count, and watchlist count.",
|
|
3987
|
+
"security": [
|
|
3988
|
+
{
|
|
3989
|
+
"bearerAuth": []
|
|
3990
|
+
}
|
|
3991
|
+
],
|
|
3992
|
+
"requestBody": {
|
|
3993
|
+
"required": true,
|
|
3994
|
+
"content": {
|
|
3995
|
+
"application/json": {
|
|
3996
|
+
"schema": {
|
|
3997
|
+
"type": "object",
|
|
3998
|
+
"properties": {
|
|
3999
|
+
"query": {
|
|
4000
|
+
"type": "string",
|
|
4001
|
+
"maxLength": 253,
|
|
4002
|
+
"description": "Search by domain name (exact match if contains dot) or label substring"
|
|
4003
|
+
},
|
|
4004
|
+
"status": {
|
|
4005
|
+
"type": "string",
|
|
4006
|
+
"enum": [
|
|
4007
|
+
"COMING_SOON",
|
|
4008
|
+
"AVAILABLE_BACKORDER"
|
|
4009
|
+
],
|
|
4010
|
+
"description": "Filter by drop status: \"COMING_SOON\" (not yet dropped) or \"AVAILABLE_BACKORDER\" (already dropped)"
|
|
4011
|
+
},
|
|
4012
|
+
"tlds": {
|
|
4013
|
+
"type": "array",
|
|
4014
|
+
"items": {
|
|
4015
|
+
"type": "string"
|
|
4016
|
+
},
|
|
4017
|
+
"description": "Filter by TLD extensions (e.g., [\"com\", \"net\"])"
|
|
4018
|
+
},
|
|
4019
|
+
"sortBy": {
|
|
4020
|
+
"type": "string",
|
|
4021
|
+
"enum": [
|
|
4022
|
+
"name",
|
|
4023
|
+
"deletionAt",
|
|
4024
|
+
"labelLength",
|
|
4025
|
+
"watchlistCount",
|
|
4026
|
+
"backorderCount"
|
|
4027
|
+
],
|
|
4028
|
+
"description": "Sort field (default: \"deletionAt\")"
|
|
4029
|
+
},
|
|
4030
|
+
"sortDirection": {
|
|
4031
|
+
"type": "string",
|
|
4032
|
+
"enum": [
|
|
4033
|
+
"ASC",
|
|
4034
|
+
"DESC"
|
|
4035
|
+
],
|
|
4036
|
+
"description": "Sort direction (default: \"ASC\")"
|
|
4037
|
+
},
|
|
4038
|
+
"lengthRange": {
|
|
4039
|
+
"type": "array",
|
|
4040
|
+
"items": {
|
|
4041
|
+
"type": "number",
|
|
4042
|
+
"minimum": 0
|
|
4043
|
+
},
|
|
4044
|
+
"minItems": 2,
|
|
4045
|
+
"maxItems": 2,
|
|
4046
|
+
"description": "Filter by label length range [min, max]. Use max=0 for no upper bound."
|
|
4047
|
+
},
|
|
4048
|
+
"bidsRange": {
|
|
4049
|
+
"type": "array",
|
|
4050
|
+
"items": {
|
|
4051
|
+
"type": "number",
|
|
4052
|
+
"minimum": 0
|
|
4053
|
+
},
|
|
4054
|
+
"minItems": 2,
|
|
4055
|
+
"maxItems": 2,
|
|
4056
|
+
"description": "Filter by backorder count range [min, max]. Use max=0 for no upper bound."
|
|
4057
|
+
},
|
|
4058
|
+
"watchlistRange": {
|
|
4059
|
+
"type": "array",
|
|
4060
|
+
"items": {
|
|
4061
|
+
"type": "number",
|
|
4062
|
+
"minimum": 0
|
|
4063
|
+
},
|
|
4064
|
+
"minItems": 2,
|
|
4065
|
+
"maxItems": 2,
|
|
4066
|
+
"description": "Filter by watchlist count range [min, max]. Use max=0 for no upper bound."
|
|
4067
|
+
},
|
|
4068
|
+
"offset": {
|
|
4069
|
+
"type": "number",
|
|
4070
|
+
"minimum": 0,
|
|
4071
|
+
"description": "Number of items to skip for pagination (default: 0)"
|
|
4072
|
+
},
|
|
4073
|
+
"limit": {
|
|
4074
|
+
"type": "number",
|
|
4075
|
+
"minimum": 1,
|
|
4076
|
+
"maximum": 500,
|
|
4077
|
+
"description": "Maximum number of items to return (1-500, default: 50)"
|
|
4078
|
+
}
|
|
4079
|
+
}
|
|
4080
|
+
}
|
|
4081
|
+
}
|
|
4082
|
+
}
|
|
4083
|
+
},
|
|
4084
|
+
"responses": {
|
|
4085
|
+
"200": {
|
|
4086
|
+
"description": "List of expiring/dropped domains",
|
|
4087
|
+
"content": {
|
|
4088
|
+
"application/json": {
|
|
4089
|
+
"schema": {
|
|
4090
|
+
"type": "object",
|
|
4091
|
+
"properties": {
|
|
4092
|
+
"domains": {
|
|
4093
|
+
"type": "array",
|
|
4094
|
+
"items": {
|
|
4095
|
+
"type": "object",
|
|
4096
|
+
"properties": {
|
|
4097
|
+
"name": {
|
|
4098
|
+
"type": "string",
|
|
4099
|
+
"description": "Full domain name"
|
|
4100
|
+
},
|
|
4101
|
+
"deletionTimestamp": {
|
|
4102
|
+
"type": "number",
|
|
4103
|
+
"description": "Unix timestamp in milliseconds when the domain drops/dropped"
|
|
4104
|
+
},
|
|
4105
|
+
"status": {
|
|
4106
|
+
"type": "string",
|
|
4107
|
+
"enum": [
|
|
4108
|
+
"COMING_SOON",
|
|
4109
|
+
"AVAILABLE_BACKORDER"
|
|
4110
|
+
]
|
|
4111
|
+
},
|
|
4112
|
+
"labelLength": {
|
|
4113
|
+
"type": "number",
|
|
4114
|
+
"description": "Length of the domain label"
|
|
4115
|
+
},
|
|
4116
|
+
"watchlistCount": {
|
|
4117
|
+
"type": "number",
|
|
4118
|
+
"description": "Number of users watching this domain"
|
|
4119
|
+
},
|
|
4120
|
+
"backorderCount": {
|
|
4121
|
+
"type": "number",
|
|
4122
|
+
"description": "Number of active backorders"
|
|
4123
|
+
}
|
|
4124
|
+
}
|
|
4125
|
+
}
|
|
4126
|
+
},
|
|
4127
|
+
"pagination": {
|
|
4128
|
+
"type": "object",
|
|
4129
|
+
"properties": {
|
|
4130
|
+
"total": {
|
|
4131
|
+
"type": "number"
|
|
4132
|
+
},
|
|
4133
|
+
"count": {
|
|
4134
|
+
"type": "number"
|
|
4135
|
+
},
|
|
4136
|
+
"offset": {
|
|
4137
|
+
"type": "number"
|
|
4138
|
+
},
|
|
4139
|
+
"limit": {
|
|
4140
|
+
"type": "number"
|
|
4141
|
+
},
|
|
4142
|
+
"hasMore": {
|
|
4143
|
+
"type": "boolean"
|
|
4144
|
+
},
|
|
4145
|
+
"nextOffset": {
|
|
4146
|
+
"type": "number"
|
|
4147
|
+
}
|
|
4148
|
+
}
|
|
4149
|
+
},
|
|
4150
|
+
"truncated": {
|
|
4151
|
+
"type": "boolean",
|
|
4152
|
+
"description": "Whether the response was truncated to fit within size limits"
|
|
4153
|
+
},
|
|
4154
|
+
"truncationMessage": {
|
|
4155
|
+
"type": "string",
|
|
4156
|
+
"description": "Message indicating how many results were truncated"
|
|
4157
|
+
}
|
|
4158
|
+
}
|
|
4159
|
+
}
|
|
4160
|
+
}
|
|
4161
|
+
}
|
|
4162
|
+
},
|
|
4163
|
+
"401": {
|
|
4164
|
+
"description": "Authentication required"
|
|
4165
|
+
}
|
|
4166
|
+
}
|
|
4167
|
+
}
|
|
4168
|
+
},
|
|
4169
|
+
"/mcp/v1/actions/ud_authenticated_url_get": {
|
|
4170
|
+
"post": {
|
|
4171
|
+
"operationId": "authenticatedUrlGet",
|
|
4172
|
+
"tags": [
|
|
4173
|
+
"Session"
|
|
4174
|
+
],
|
|
4175
|
+
"summary": "Generate an authenticated URL for browser sign-in",
|
|
4176
|
+
"description": "Creates a one-time URL that automatically signs the user in and redirects to the specified page. Use this whenever the user needs to complete an action in the browser (e.g., adding a payment method, managing account settings). The URL expires after 60 seconds and is single-use.",
|
|
4177
|
+
"security": [
|
|
4178
|
+
{
|
|
4179
|
+
"bearerAuth": []
|
|
4180
|
+
}
|
|
4181
|
+
],
|
|
4182
|
+
"requestBody": {
|
|
4183
|
+
"required": true,
|
|
4184
|
+
"content": {
|
|
4185
|
+
"application/json": {
|
|
4186
|
+
"schema": {
|
|
4187
|
+
"type": "object",
|
|
4188
|
+
"required": [
|
|
4189
|
+
"path"
|
|
4190
|
+
],
|
|
4191
|
+
"properties": {
|
|
4192
|
+
"path": {
|
|
4193
|
+
"type": "string",
|
|
4194
|
+
"pattern": "^/",
|
|
4195
|
+
"minLength": 1,
|
|
4196
|
+
"description": "Page path to open in the browser, e.g. \"/account/payments/card\""
|
|
4197
|
+
}
|
|
4198
|
+
}
|
|
4199
|
+
}
|
|
4200
|
+
}
|
|
4201
|
+
}
|
|
4202
|
+
},
|
|
4203
|
+
"responses": {
|
|
4204
|
+
"200": {
|
|
4205
|
+
"description": "Authenticated URL generated",
|
|
4206
|
+
"content": {
|
|
4207
|
+
"application/json": {
|
|
4208
|
+
"schema": {
|
|
4209
|
+
"type": "object",
|
|
4210
|
+
"properties": {
|
|
4211
|
+
"url": {
|
|
4212
|
+
"type": "string",
|
|
4213
|
+
"description": "One-time authenticated URL (valid for 60 seconds)"
|
|
4214
|
+
},
|
|
4215
|
+
"expiresIn": {
|
|
4216
|
+
"type": "number",
|
|
4217
|
+
"description": "Seconds until the URL expires"
|
|
4218
|
+
},
|
|
4219
|
+
"instructions": {
|
|
4220
|
+
"type": "string",
|
|
4221
|
+
"description": "Guidance for the user"
|
|
4222
|
+
}
|
|
4223
|
+
}
|
|
4224
|
+
}
|
|
4225
|
+
}
|
|
4226
|
+
}
|
|
4227
|
+
},
|
|
4228
|
+
"401": {
|
|
4229
|
+
"description": "Authentication required"
|
|
4230
|
+
}
|
|
4231
|
+
}
|
|
4232
|
+
}
|
|
3644
4233
|
}
|
|
3645
4234
|
},
|
|
3646
4235
|
"components": {
|
|
@@ -5099,7 +5688,7 @@
|
|
|
5099
5688
|
},
|
|
5100
5689
|
"transferStatus": {
|
|
5101
5690
|
"type": "string",
|
|
5102
|
-
"description": "Domain transfer status:\n
|
|
5691
|
+
"description": "Domain transfer status:\n• \"none\" - No active transfer\n• \"pending\" - Transfer in progress"
|
|
5103
5692
|
},
|
|
5104
5693
|
"isExternallyOwned": {
|
|
5105
5694
|
"type": "boolean",
|
|
@@ -5145,7 +5734,7 @@
|
|
|
5145
5734
|
},
|
|
5146
5735
|
"status": {
|
|
5147
5736
|
"type": "string",
|
|
5148
|
-
"description": "Listing status:\n
|
|
5737
|
+
"description": "Listing status:\n• \"open\" - Live on marketplace, ready for purchase (user-custodied domains)\n• \"open-not-signed\" - Live on marketplace, ready for purchase (UD-custodied domains, no user action needed)\n• \"open-on-request\" - Accepting offers only, no fixed price\n• \"draft\" - Not yet published\n• \"waiting-for-approval\" - Pending wallet signature from owner\n• \"pending-admin-approval\" - Under review (high-value listings)\n• \"pending\" - Sale in progress\n• \"canceled\" - Listing was canceled\nNote: Both \"open\" and \"open-not-signed\" mean the listing is active and purchasable."
|
|
5149
5738
|
},
|
|
5150
5739
|
"createdAt": {
|
|
5151
5740
|
"type": "string",
|
|
@@ -5170,7 +5759,7 @@
|
|
|
5170
5759
|
"properties": {
|
|
5171
5760
|
"status": {
|
|
5172
5761
|
"type": "string",
|
|
5173
|
-
"description": "Auto-renewal subscription status:\n
|
|
5762
|
+
"description": "Auto-renewal subscription status:\n• \"active\" - Subscription active, will auto-renew\n• \"pending\" - Payment collected, waiting for domain registration\n• \"update_required\" - Payment method needs updating (card expired/declined)\n• \"expired\" - Subscription expired, domain renewal overdue\n• \"cancelled\" - Subscription cancelled, will not auto-renew"
|
|
5174
5763
|
},
|
|
5175
5764
|
"expiresAt": {
|
|
5176
5765
|
"type": [
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"command-hooks.d.ts","sourceRoot":"","sources":["../../src/lib/command-hooks.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAOH,kEAAkE;AAClE,MAAM,WAAW,gBAAgB;IAC/B,UAAU,EAAE,CAAC,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAAK,OAAO,CAAC,OAAO,CAAC,CAAC;IACpF,kBAAkB,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,OAAO,CAAC,MAAM,CAAC,CAAC;IACrD,WAAW,EAAE,CAAC,OAAO,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE;QAAE,QAAQ,CAAC,EAAE,MAAM,CAAA;KAAE,KAAK,OAAO,CAAC,MAAM,CAAC,CAAC;IAChF,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;CAC/B;AAED,MAAM,WAAW,YAAY;IAC3B,qEAAqE;IACrE,cAAc,CAAC,EAAE;QACf,oGAAoG;QACpG,SAAS,CAAC,EAAE,MAAM,CAAC;QACnB,yCAAyC;QACzC,OAAO,EAAE,MAAM,CAAC;KACjB,CAAC;IACF,kFAAkF;IAClF,WAAW,CAAC,EAAE;QACZ,oDAAoD;QACpD,QAAQ,EAAE,MAAM,CAAC;QACjB,kDAAkD;QAClD,SAAS,EAAE,MAAM,CAAC;QAClB,wCAAwC;QACxC,MAAM,EAAE,MAAM,CAAC;QACf,oCAAoC;QACpC,QAAQ,CAAC,EAAE,MAAM,CAAC;KACnB,CAAC;IACF,0EAA0E;IAC1E,aAAa,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAAK,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC;IAC7I,4DAA4D;IAC5D,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,oEAAoE;IACpE,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,8EAA8E;IAC9E,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,yEAAyE;IACzE,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,6FAA6F;IAC7F,cAAc,CAAC,EAAE,MAAM,GAAG,CAAC,CAAC,MAAM,EAAE,OAAO,KAAK,MAAM,CAAC,CAAC;IACxD,uFAAuF;IACvF,eAAe,CAAC,EAAE,MAAM,EAAE,CAAC;IAC3B,6EAA6E;IAC7E,YAAY,CAAC,EAAE,CAAC,MAAM,EAAE,OAAO,KAAK,MAAM,CAAC;IAC3C,mFAAmF;IACnF,SAAS,CAAC,EAAE,CAAC,GAAG,EAAE,gBAAgB,KAAK,OAAO,CAAC;QAAE,OAAO,CAAC,EAAE,MAAM,CAAC;QAAC,KAAK,CAAC,EAAE,OAAO,CAAA;KAAE,GAAG,IAAI,CAAC,CAAC;IAC7F,iGAAiG;IACjG,iBAAiB,CAAC,EAAE,KAAK,CAAC;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,WAAW,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IAClE;kGAC8F;IAC9F,UAAU,CAAC,EAAE,CAAC,MAAM,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAAK,OAAO,CAAC,OAAO,CAAC,CAAC;CACnF;AAuDD,eAAO,MAAM,cAAc,QAAwD,CAAC;AACpF,eAAO,MAAM,aAAa,QAA0D,CAAC;
|
|
1
|
+
{"version":3,"file":"command-hooks.d.ts","sourceRoot":"","sources":["../../src/lib/command-hooks.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAOH,kEAAkE;AAClE,MAAM,WAAW,gBAAgB;IAC/B,UAAU,EAAE,CAAC,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAAK,OAAO,CAAC,OAAO,CAAC,CAAC;IACpF,kBAAkB,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,OAAO,CAAC,MAAM,CAAC,CAAC;IACrD,WAAW,EAAE,CAAC,OAAO,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE;QAAE,QAAQ,CAAC,EAAE,MAAM,CAAA;KAAE,KAAK,OAAO,CAAC,MAAM,CAAC,CAAC;IAChF,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;CAC/B;AAED,MAAM,WAAW,YAAY;IAC3B,qEAAqE;IACrE,cAAc,CAAC,EAAE;QACf,oGAAoG;QACpG,SAAS,CAAC,EAAE,MAAM,CAAC;QACnB,yCAAyC;QACzC,OAAO,EAAE,MAAM,CAAC;KACjB,CAAC;IACF,kFAAkF;IAClF,WAAW,CAAC,EAAE;QACZ,oDAAoD;QACpD,QAAQ,EAAE,MAAM,CAAC;QACjB,kDAAkD;QAClD,SAAS,EAAE,MAAM,CAAC;QAClB,wCAAwC;QACxC,MAAM,EAAE,MAAM,CAAC;QACf,oCAAoC;QACpC,QAAQ,CAAC,EAAE,MAAM,CAAC;KACnB,CAAC;IACF,0EAA0E;IAC1E,aAAa,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAAK,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC;IAC7I,4DAA4D;IAC5D,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,oEAAoE;IACpE,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,8EAA8E;IAC9E,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,yEAAyE;IACzE,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,6FAA6F;IAC7F,cAAc,CAAC,EAAE,MAAM,GAAG,CAAC,CAAC,MAAM,EAAE,OAAO,KAAK,MAAM,CAAC,CAAC;IACxD,uFAAuF;IACvF,eAAe,CAAC,EAAE,MAAM,EAAE,CAAC;IAC3B,6EAA6E;IAC7E,YAAY,CAAC,EAAE,CAAC,MAAM,EAAE,OAAO,KAAK,MAAM,CAAC;IAC3C,mFAAmF;IACnF,SAAS,CAAC,EAAE,CAAC,GAAG,EAAE,gBAAgB,KAAK,OAAO,CAAC;QAAE,OAAO,CAAC,EAAE,MAAM,CAAC;QAAC,KAAK,CAAC,EAAE,OAAO,CAAA;KAAE,GAAG,IAAI,CAAC,CAAC;IAC7F,iGAAiG;IACjG,iBAAiB,CAAC,EAAE,KAAK,CAAC;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,WAAW,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IAClE;kGAC8F;IAC9F,UAAU,CAAC,EAAE,CAAC,MAAM,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAAK,OAAO,CAAC,OAAO,CAAC,CAAC;CACnF;AAuDD,eAAO,MAAM,cAAc,QAAwD,CAAC;AACpF,eAAO,MAAM,aAAa,QAA0D,CAAC;AA6crF;;GAEG;AACH,wBAAgB,QAAQ,CAAC,QAAQ,EAAE,MAAM,GAAG,YAAY,GAAG,SAAS,CAEnE;AAED;;;GAGG;AACH,wBAAgB,mBAAmB,CAAC,MAAM,EAAE,OAAO,GAAG,MAAM,CA2B3D;AAED;;;GAGG;AACH,wBAAgB,kBAAkB,CAAC,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,GAAG,MAAM,CAoC5E;AAED,uEAAuE;AACvE,eAAO,MAAM,kBAAkB,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAKrD,CAAC;AAEF;;;GAGG;AACH,wBAAgB,cAAc,CAAC,MAAM,EAAE,OAAO,GAAG,MAAM,CA2BtD;AAED;;;GAGG;AACH,wBAAgB,sBAAsB,CAAC,MAAM,EAAE,OAAO,GAAG,MAAM,CAW9D"}
|