@unstoppabledomains/ud-cli 0.1.25 → 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 +784 -240
- 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 +37 -2
- 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 -1
- package/dist/lib/spec-parser.js.map +1 -1
- package/package.json +1 -1
|
@@ -170,6 +170,19 @@
|
|
|
170
170
|
"schema": {
|
|
171
171
|
"type": "object",
|
|
172
172
|
"properties": {
|
|
173
|
+
"page": {
|
|
174
|
+
"type": "number",
|
|
175
|
+
"minimum": 1,
|
|
176
|
+
"description": "Page number, 1-indexed (default: 1)",
|
|
177
|
+
"example": 1
|
|
178
|
+
},
|
|
179
|
+
"pageSize": {
|
|
180
|
+
"type": "number",
|
|
181
|
+
"minimum": 1,
|
|
182
|
+
"maximum": 100,
|
|
183
|
+
"description": "Number of domains per page, 1-100 (default: 50)",
|
|
184
|
+
"example": 50
|
|
185
|
+
},
|
|
173
186
|
"searchTerm": {
|
|
174
187
|
"type": "string",
|
|
175
188
|
"description": "Optional search term to filter domains by name"
|
|
@@ -248,19 +261,6 @@
|
|
|
248
261
|
"desc"
|
|
249
262
|
],
|
|
250
263
|
"description": "Sort direction: \"asc\" (ascending, default) or \"desc\" (descending)"
|
|
251
|
-
},
|
|
252
|
-
"offset": {
|
|
253
|
-
"type": "number",
|
|
254
|
-
"minimum": 0,
|
|
255
|
-
"description": "Number of items to skip for pagination (default: 0)",
|
|
256
|
-
"example": 0
|
|
257
|
-
},
|
|
258
|
-
"limit": {
|
|
259
|
-
"type": "number",
|
|
260
|
-
"minimum": 1,
|
|
261
|
-
"maximum": 100,
|
|
262
|
-
"description": "Maximum number of items to return (1-100, default: 50)",
|
|
263
|
-
"example": 50
|
|
264
264
|
}
|
|
265
265
|
}
|
|
266
266
|
}
|
|
@@ -1448,18 +1448,9 @@
|
|
|
1448
1448
|
],
|
|
1449
1449
|
"description": "Filter by group: \"active\" (pending) or \"sold\" (completed)"
|
|
1450
1450
|
},
|
|
1451
|
-
"
|
|
1452
|
-
"type": "number",
|
|
1453
|
-
"minimum": 0,
|
|
1454
|
-
"description": "Number of items to skip for pagination (default: 0)",
|
|
1455
|
-
"example": 0
|
|
1456
|
-
},
|
|
1457
|
-
"limit": {
|
|
1451
|
+
"page": {
|
|
1458
1452
|
"type": "number",
|
|
1459
|
-
"
|
|
1460
|
-
"maximum": 100,
|
|
1461
|
-
"description": "Maximum number of items to return (1-100, default: 50)",
|
|
1462
|
-
"example": 50
|
|
1453
|
+
"description": "Page number (1-indexed)"
|
|
1463
1454
|
}
|
|
1464
1455
|
}
|
|
1465
1456
|
}
|
|
@@ -1582,18 +1573,18 @@
|
|
|
1582
1573
|
"description": "Skip conversations with no messages (default: true)",
|
|
1583
1574
|
"default": true
|
|
1584
1575
|
},
|
|
1585
|
-
"
|
|
1586
|
-
"type": "
|
|
1587
|
-
"
|
|
1588
|
-
"
|
|
1589
|
-
"
|
|
1576
|
+
"skip": {
|
|
1577
|
+
"type": "integer",
|
|
1578
|
+
"description": "Number of conversations to skip (pagination offset, default: 0)",
|
|
1579
|
+
"default": 0,
|
|
1580
|
+
"minimum": 0
|
|
1590
1581
|
},
|
|
1591
|
-
"
|
|
1592
|
-
"type": "
|
|
1582
|
+
"take": {
|
|
1583
|
+
"type": "integer",
|
|
1584
|
+
"description": "Number of conversations to return (1-100, default: 20)",
|
|
1585
|
+
"default": 20,
|
|
1593
1586
|
"minimum": 1,
|
|
1594
|
-
"maximum": 100
|
|
1595
|
-
"description": "Maximum number of items to return (1-100, default: 20)",
|
|
1596
|
-
"example": 20
|
|
1587
|
+
"maximum": 100
|
|
1597
1588
|
}
|
|
1598
1589
|
}
|
|
1599
1590
|
}
|
|
@@ -3650,156 +3641,745 @@
|
|
|
3650
3641
|
}
|
|
3651
3642
|
}
|
|
3652
3643
|
}
|
|
3653
|
-
}
|
|
3654
|
-
},
|
|
3655
|
-
"components": {
|
|
3656
|
-
"securitySchemes": {
|
|
3657
|
-
"bearerAuth": {
|
|
3658
|
-
"type": "http",
|
|
3659
|
-
"scheme": "bearer",
|
|
3660
|
-
"description": "API key for authenticated operations. Obtain from your Unstoppable Domains account settings."
|
|
3661
|
-
}
|
|
3662
3644
|
},
|
|
3663
|
-
"
|
|
3664
|
-
"
|
|
3665
|
-
"
|
|
3666
|
-
"
|
|
3667
|
-
"
|
|
3668
|
-
|
|
3669
|
-
|
|
3670
|
-
|
|
3671
|
-
|
|
3672
|
-
|
|
3673
|
-
"
|
|
3674
|
-
|
|
3675
|
-
|
|
3676
|
-
|
|
3677
|
-
|
|
3678
|
-
|
|
3679
|
-
|
|
3680
|
-
|
|
3681
|
-
|
|
3682
|
-
|
|
3683
|
-
|
|
3684
|
-
|
|
3685
|
-
"
|
|
3686
|
-
"
|
|
3687
|
-
|
|
3688
|
-
"
|
|
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
|
+
}
|
|
3689
3694
|
}
|
|
3690
3695
|
}
|
|
3691
3696
|
}
|
|
3692
|
-
},
|
|
3693
|
-
"description": "Array of search queries with metadata (present for multiple query requests)"
|
|
3694
|
-
},
|
|
3695
|
-
"searchedTlds": {
|
|
3696
|
-
"type": "array",
|
|
3697
|
-
"items": {
|
|
3698
|
-
"type": "string"
|
|
3699
|
-
},
|
|
3700
|
-
"description": "TLDs that were searched"
|
|
3701
|
-
},
|
|
3702
|
-
"invalidReason": {
|
|
3703
|
-
"type": [
|
|
3704
|
-
"string",
|
|
3705
|
-
"null"
|
|
3706
|
-
],
|
|
3707
|
-
"description": "Validation error reason (present for single query requests)"
|
|
3708
|
-
},
|
|
3709
|
-
"invalidCharacters": {
|
|
3710
|
-
"type": [
|
|
3711
|
-
"array",
|
|
3712
|
-
"null"
|
|
3713
|
-
],
|
|
3714
|
-
"items": {
|
|
3715
|
-
"type": "string"
|
|
3716
|
-
},
|
|
3717
|
-
"description": "Invalid characters found (present for single query requests)"
|
|
3718
|
-
},
|
|
3719
|
-
"results": {
|
|
3720
|
-
"type": "array",
|
|
3721
|
-
"items": {
|
|
3722
|
-
"$ref": "#/components/schemas/DomainResult"
|
|
3723
3697
|
}
|
|
3724
|
-
}
|
|
3725
|
-
|
|
3726
|
-
|
|
3727
|
-
|
|
3728
|
-
|
|
3729
|
-
|
|
3730
|
-
|
|
3731
|
-
|
|
3732
|
-
|
|
3733
|
-
|
|
3734
|
-
|
|
3735
|
-
|
|
3736
|
-
|
|
3737
|
-
|
|
3738
|
-
|
|
3739
|
-
|
|
3740
|
-
|
|
3741
|
-
|
|
3742
|
-
|
|
3743
|
-
|
|
3744
|
-
|
|
3745
|
-
|
|
3746
|
-
|
|
3747
|
-
|
|
3748
|
-
|
|
3749
|
-
|
|
3750
|
-
|
|
3751
|
-
|
|
3752
|
-
|
|
3753
|
-
|
|
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
|
+
}
|
|
3754
3748
|
}
|
|
3755
3749
|
}
|
|
3756
3750
|
},
|
|
3757
|
-
"
|
|
3758
|
-
"
|
|
3759
|
-
"description": "Whether results were truncated due to size limits"
|
|
3760
|
-
},
|
|
3761
|
-
"truncationMessage": {
|
|
3762
|
-
"type": "string",
|
|
3763
|
-
"description": "Message explaining truncation"
|
|
3751
|
+
"401": {
|
|
3752
|
+
"description": "Authentication required"
|
|
3764
3753
|
}
|
|
3765
3754
|
}
|
|
3766
|
-
}
|
|
3767
|
-
|
|
3768
|
-
|
|
3769
|
-
|
|
3770
|
-
|
|
3771
|
-
|
|
3772
|
-
|
|
3773
|
-
|
|
3774
|
-
|
|
3775
|
-
|
|
3776
|
-
|
|
3777
|
-
|
|
3778
|
-
|
|
3779
|
-
|
|
3780
|
-
|
|
3781
|
-
|
|
3782
|
-
"
|
|
3783
|
-
|
|
3784
|
-
"
|
|
3785
|
-
|
|
3786
|
-
|
|
3787
|
-
|
|
3788
|
-
|
|
3789
|
-
|
|
3790
|
-
|
|
3791
|
-
|
|
3792
|
-
|
|
3793
|
-
|
|
3794
|
-
|
|
3795
|
-
|
|
3796
|
-
|
|
3797
|
-
|
|
3798
|
-
|
|
3799
|
-
|
|
3800
|
-
|
|
3801
|
-
|
|
3802
|
-
|
|
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
|
+
}
|
|
4233
|
+
}
|
|
4234
|
+
},
|
|
4235
|
+
"components": {
|
|
4236
|
+
"securitySchemes": {
|
|
4237
|
+
"bearerAuth": {
|
|
4238
|
+
"type": "http",
|
|
4239
|
+
"scheme": "bearer",
|
|
4240
|
+
"description": "API key for authenticated operations. Obtain from your Unstoppable Domains account settings."
|
|
4241
|
+
}
|
|
4242
|
+
},
|
|
4243
|
+
"schemas": {
|
|
4244
|
+
"SearchDomainsResponse": {
|
|
4245
|
+
"type": "object",
|
|
4246
|
+
"properties": {
|
|
4247
|
+
"searchQuery": {
|
|
4248
|
+
"type": "string",
|
|
4249
|
+
"description": "Sanitized search term (present for single query requests)"
|
|
4250
|
+
},
|
|
4251
|
+
"searchQueries": {
|
|
4252
|
+
"type": "array",
|
|
4253
|
+
"items": {
|
|
4254
|
+
"type": "object",
|
|
4255
|
+
"properties": {
|
|
4256
|
+
"query": {
|
|
4257
|
+
"type": "string"
|
|
4258
|
+
},
|
|
4259
|
+
"invalidReason": {
|
|
4260
|
+
"type": [
|
|
4261
|
+
"string",
|
|
4262
|
+
"null"
|
|
4263
|
+
]
|
|
4264
|
+
},
|
|
4265
|
+
"invalidCharacters": {
|
|
4266
|
+
"type": "array",
|
|
4267
|
+
"items": {
|
|
4268
|
+
"type": "string"
|
|
4269
|
+
}
|
|
4270
|
+
}
|
|
4271
|
+
}
|
|
4272
|
+
},
|
|
4273
|
+
"description": "Array of search queries with metadata (present for multiple query requests)"
|
|
4274
|
+
},
|
|
4275
|
+
"searchedTlds": {
|
|
4276
|
+
"type": "array",
|
|
4277
|
+
"items": {
|
|
4278
|
+
"type": "string"
|
|
4279
|
+
},
|
|
4280
|
+
"description": "TLDs that were searched"
|
|
4281
|
+
},
|
|
4282
|
+
"invalidReason": {
|
|
4283
|
+
"type": [
|
|
4284
|
+
"string",
|
|
4285
|
+
"null"
|
|
4286
|
+
],
|
|
4287
|
+
"description": "Validation error reason (present for single query requests)"
|
|
4288
|
+
},
|
|
4289
|
+
"invalidCharacters": {
|
|
4290
|
+
"type": [
|
|
4291
|
+
"array",
|
|
4292
|
+
"null"
|
|
4293
|
+
],
|
|
4294
|
+
"items": {
|
|
4295
|
+
"type": "string"
|
|
4296
|
+
},
|
|
4297
|
+
"description": "Invalid characters found (present for single query requests)"
|
|
4298
|
+
},
|
|
4299
|
+
"results": {
|
|
4300
|
+
"type": "array",
|
|
4301
|
+
"items": {
|
|
4302
|
+
"$ref": "#/components/schemas/DomainResult"
|
|
4303
|
+
}
|
|
4304
|
+
},
|
|
4305
|
+
"pagination": {
|
|
4306
|
+
"type": "object",
|
|
4307
|
+
"properties": {
|
|
4308
|
+
"total": {
|
|
4309
|
+
"type": "number",
|
|
4310
|
+
"description": "Total number of results"
|
|
4311
|
+
},
|
|
4312
|
+
"count": {
|
|
4313
|
+
"type": "number",
|
|
4314
|
+
"description": "Number of results in this response"
|
|
4315
|
+
},
|
|
4316
|
+
"offset": {
|
|
4317
|
+
"type": "number",
|
|
4318
|
+
"description": "Current offset"
|
|
4319
|
+
},
|
|
4320
|
+
"limit": {
|
|
4321
|
+
"type": "number",
|
|
4322
|
+
"description": "Max results per page"
|
|
4323
|
+
},
|
|
4324
|
+
"hasMore": {
|
|
4325
|
+
"type": "boolean",
|
|
4326
|
+
"description": "Whether more results are available"
|
|
4327
|
+
},
|
|
4328
|
+
"nextOffset": {
|
|
4329
|
+
"type": [
|
|
4330
|
+
"number",
|
|
4331
|
+
"null"
|
|
4332
|
+
],
|
|
4333
|
+
"description": "Offset for next page, null if no more pages"
|
|
4334
|
+
}
|
|
4335
|
+
}
|
|
4336
|
+
},
|
|
4337
|
+
"truncated": {
|
|
4338
|
+
"type": "boolean",
|
|
4339
|
+
"description": "Whether results were truncated due to size limits"
|
|
4340
|
+
},
|
|
4341
|
+
"truncationMessage": {
|
|
4342
|
+
"type": "string",
|
|
4343
|
+
"description": "Message explaining truncation"
|
|
4344
|
+
}
|
|
4345
|
+
}
|
|
4346
|
+
},
|
|
4347
|
+
"DomainResult": {
|
|
4348
|
+
"type": "object",
|
|
4349
|
+
"properties": {
|
|
4350
|
+
"name": {
|
|
4351
|
+
"type": "string",
|
|
4352
|
+
"description": "Full domain name"
|
|
4353
|
+
},
|
|
4354
|
+
"extension": {
|
|
4355
|
+
"type": "string",
|
|
4356
|
+
"description": "TLD (e.g., com, org, io)"
|
|
4357
|
+
},
|
|
4358
|
+
"label": {
|
|
4359
|
+
"type": "string",
|
|
4360
|
+
"description": "Domain label without TLD"
|
|
4361
|
+
},
|
|
4362
|
+
"available": {
|
|
4363
|
+
"type": "boolean",
|
|
4364
|
+
"description": "Whether the domain can be purchased through Unstoppable Domains. True for fresh registrations AND secondary market listings. False for registered domains not for sale, protected domains, invalid names, etc."
|
|
4365
|
+
},
|
|
4366
|
+
"status": {
|
|
4367
|
+
"type": "string"
|
|
4368
|
+
},
|
|
4369
|
+
"marketplace": {
|
|
4370
|
+
"type": "object",
|
|
4371
|
+
"description": "Marketplace information including acquisition status and listing source.",
|
|
4372
|
+
"properties": {
|
|
4373
|
+
"status": {
|
|
4374
|
+
"type": "string",
|
|
4375
|
+
"enum": [
|
|
4376
|
+
"available",
|
|
4377
|
+
"registered-listed-for-sale",
|
|
4378
|
+
"registered-listed-for-offers",
|
|
4379
|
+
"registered-not-for-sale",
|
|
4380
|
+
"unavailable",
|
|
4381
|
+
"invalid"
|
|
4382
|
+
],
|
|
3803
4383
|
"description": "Indicates how this domain can be acquired: \"available\" = fresh registration at standard/promo price; \"registered-listed-for-sale\" = already registered, listed on secondary market with fixed buy-now price; \"registered-listed-for-offers\" = already registered, listed on secondary market accepting offers (no fixed price); \"registered-not-for-sale\" = already registered, not listed for sale; \"unavailable\" = not available (protected, restricted, etc.); \"invalid\" = invalid domain name"
|
|
3804
4384
|
},
|
|
3805
4385
|
"source": {
|
|
@@ -4646,32 +5226,32 @@
|
|
|
4646
5226
|
"pagination": {
|
|
4647
5227
|
"type": "object",
|
|
4648
5228
|
"properties": {
|
|
4649
|
-
"
|
|
5229
|
+
"page": {
|
|
4650
5230
|
"type": "number",
|
|
4651
|
-
"description": "
|
|
5231
|
+
"description": "Current page number"
|
|
4652
5232
|
},
|
|
4653
|
-
"
|
|
5233
|
+
"pageSize": {
|
|
4654
5234
|
"type": "number",
|
|
4655
|
-
"description": "
|
|
5235
|
+
"description": "Items per page"
|
|
4656
5236
|
},
|
|
4657
|
-
"
|
|
5237
|
+
"totalPages": {
|
|
4658
5238
|
"type": "number",
|
|
4659
|
-
"description": "
|
|
5239
|
+
"description": "Total number of pages"
|
|
4660
5240
|
},
|
|
4661
|
-
"
|
|
5241
|
+
"total": {
|
|
4662
5242
|
"type": "number",
|
|
4663
|
-
"description": "
|
|
5243
|
+
"description": "Total number of domains"
|
|
4664
5244
|
},
|
|
4665
5245
|
"hasMore": {
|
|
4666
5246
|
"type": "boolean",
|
|
4667
|
-
"description": "Whether more
|
|
5247
|
+
"description": "Whether more pages exist"
|
|
4668
5248
|
},
|
|
4669
|
-
"
|
|
5249
|
+
"nextPage": {
|
|
4670
5250
|
"type": [
|
|
4671
5251
|
"number",
|
|
4672
5252
|
"null"
|
|
4673
5253
|
],
|
|
4674
|
-
"description": "
|
|
5254
|
+
"description": "Next page number if more results exist, null otherwise"
|
|
4675
5255
|
}
|
|
4676
5256
|
}
|
|
4677
5257
|
},
|
|
@@ -5108,7 +5688,7 @@
|
|
|
5108
5688
|
},
|
|
5109
5689
|
"transferStatus": {
|
|
5110
5690
|
"type": "string",
|
|
5111
|
-
"description": "Domain transfer status:\n
|
|
5691
|
+
"description": "Domain transfer status:\n• \"none\" - No active transfer\n• \"pending\" - Transfer in progress"
|
|
5112
5692
|
},
|
|
5113
5693
|
"isExternallyOwned": {
|
|
5114
5694
|
"type": "boolean",
|
|
@@ -5154,7 +5734,7 @@
|
|
|
5154
5734
|
},
|
|
5155
5735
|
"status": {
|
|
5156
5736
|
"type": "string",
|
|
5157
|
-
"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."
|
|
5158
5738
|
},
|
|
5159
5739
|
"createdAt": {
|
|
5160
5740
|
"type": "string",
|
|
@@ -5179,7 +5759,7 @@
|
|
|
5179
5759
|
"properties": {
|
|
5180
5760
|
"status": {
|
|
5181
5761
|
"type": "string",
|
|
5182
|
-
"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"
|
|
5183
5763
|
},
|
|
5184
5764
|
"expiresAt": {
|
|
5185
5765
|
"type": [
|
|
@@ -5363,32 +5943,20 @@
|
|
|
5363
5943
|
"pagination": {
|
|
5364
5944
|
"type": "object",
|
|
5365
5945
|
"properties": {
|
|
5366
|
-
"
|
|
5367
|
-
"type": "number"
|
|
5368
|
-
"description": "Total number of matching items"
|
|
5946
|
+
"page": {
|
|
5947
|
+
"type": "number"
|
|
5369
5948
|
},
|
|
5370
|
-
"
|
|
5371
|
-
"type": "number"
|
|
5372
|
-
"description": "Number of items returned in this response"
|
|
5949
|
+
"pageSize": {
|
|
5950
|
+
"type": "number"
|
|
5373
5951
|
},
|
|
5374
|
-
"
|
|
5375
|
-
"type": "number"
|
|
5376
|
-
"description": "Current offset"
|
|
5952
|
+
"totalPages": {
|
|
5953
|
+
"type": "number"
|
|
5377
5954
|
},
|
|
5378
|
-
"
|
|
5379
|
-
"type": "number"
|
|
5380
|
-
"description": "Maximum items per response"
|
|
5955
|
+
"total": {
|
|
5956
|
+
"type": "number"
|
|
5381
5957
|
},
|
|
5382
5958
|
"hasMore": {
|
|
5383
|
-
"type": "boolean"
|
|
5384
|
-
"description": "Whether more results are available"
|
|
5385
|
-
},
|
|
5386
|
-
"nextOffset": {
|
|
5387
|
-
"type": [
|
|
5388
|
-
"number",
|
|
5389
|
-
"null"
|
|
5390
|
-
],
|
|
5391
|
-
"description": "Offset for next page, null if no more pages"
|
|
5959
|
+
"type": "boolean"
|
|
5392
5960
|
}
|
|
5393
5961
|
}
|
|
5394
5962
|
},
|
|
@@ -5514,37 +6082,13 @@
|
|
|
5514
6082
|
"type": "number",
|
|
5515
6083
|
"description": "Total number of conversations matching filters"
|
|
5516
6084
|
},
|
|
5517
|
-
"
|
|
5518
|
-
"type": "
|
|
5519
|
-
"
|
|
5520
|
-
|
|
5521
|
-
|
|
5522
|
-
|
|
5523
|
-
|
|
5524
|
-
"count": {
|
|
5525
|
-
"type": "number",
|
|
5526
|
-
"description": "Number of items returned in this response"
|
|
5527
|
-
},
|
|
5528
|
-
"offset": {
|
|
5529
|
-
"type": "number",
|
|
5530
|
-
"description": "Current offset"
|
|
5531
|
-
},
|
|
5532
|
-
"limit": {
|
|
5533
|
-
"type": "number",
|
|
5534
|
-
"description": "Maximum items per response"
|
|
5535
|
-
},
|
|
5536
|
-
"hasMore": {
|
|
5537
|
-
"type": "boolean",
|
|
5538
|
-
"description": "Whether more results are available"
|
|
5539
|
-
},
|
|
5540
|
-
"nextOffset": {
|
|
5541
|
-
"type": [
|
|
5542
|
-
"number",
|
|
5543
|
-
"null"
|
|
5544
|
-
],
|
|
5545
|
-
"description": "Offset for next page, null if no more pages"
|
|
5546
|
-
}
|
|
5547
|
-
}
|
|
6085
|
+
"skip": {
|
|
6086
|
+
"type": "number",
|
|
6087
|
+
"description": "Number of items skipped"
|
|
6088
|
+
},
|
|
6089
|
+
"take": {
|
|
6090
|
+
"type": "number",
|
|
6091
|
+
"description": "Number of items returned"
|
|
5548
6092
|
}
|
|
5549
6093
|
}
|
|
5550
6094
|
},
|