Skip to content

Commit 99ffc35

Browse files
author
Shinya Kato
authored
Merge pull request myConsciousness#1818 from myConsciousness/pull-latest-lexicons
2 parents a90530d + 073c319 commit 99ffc35

File tree

6 files changed

+84
-0
lines changed

6 files changed

+84
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"lexicon": 1,
3+
"id": "com.atproto.temp.addReservedHandle",
4+
"defs": {
5+
"main": {
6+
"type": "procedure",
7+
"description": "Add a handle to the set of reserved handles.",
8+
"input": {
9+
"encoding": "application/json",
10+
"schema": {
11+
"type": "object",
12+
"required": ["handle"],
13+
"properties": {
14+
"handle": { "type": "string" }
15+
}
16+
}
17+
},
18+
"output": {
19+
"encoding": "application/json",
20+
"schema": {
21+
"type": "object",
22+
"properties": {}
23+
}
24+
}
25+
}
26+
}
27+
}

packages/atproto/lib/src/ids.g.dart

+3
Original file line numberDiff line numberDiff line change
@@ -431,6 +431,9 @@ const comAtprotoSyncSubscribeReposRepoOp =
431431
const comAtprotoSyncSubscribeReposTombstone =
432432
'com.atproto.sync.subscribeRepos#tombstone';
433433

434+
/// `com.atproto.temp.addReservedHandle`
435+
const comAtprotoTempAddReservedHandle = 'com.atproto.temp.addReservedHandle';
436+
434437
/// `com.atproto.temp.checkSignupQueue`
435438
const comAtprotoTempCheckSignupQueue = 'com.atproto.temp.checkSignupQueue';
436439

packages/atproto/lib/src/nsids.g.dart

+4
Original file line numberDiff line numberDiff line change
@@ -355,6 +355,10 @@ const comAtprotoSyncSubscribeReposRepoOp =
355355
const comAtprotoSyncSubscribeReposTombstone =
356356
NSID(ids.comAtprotoSyncSubscribeReposTombstone);
357357

358+
/// `com.atproto.temp.addReservedHandle`
359+
const comAtprotoTempAddReservedHandle =
360+
NSID(ids.comAtprotoTempAddReservedHandle);
361+
358362
/// `com.atproto.temp.checkSignupQueue`
359363
const comAtprotoTempCheckSignupQueue = NSID(ids.comAtprotoTempCheckSignupQueue);
360364

packages/lexicon/lib/src/lexicons.g.dart

+27
Original file line numberDiff line numberDiff line change
@@ -2420,6 +2420,32 @@ const comAtprotoIdentityResolveHandle = <String, dynamic>{
24202420
}
24212421
};
24222422

2423+
/// `com.atproto.temp.addReservedHandle`
2424+
const comAtprotoTempAddReservedHandle = <String, dynamic>{
2425+
"lexicon": 1,
2426+
"id": "com.atproto.temp.addReservedHandle",
2427+
"defs": {
2428+
"main": {
2429+
"type": "procedure",
2430+
"description": "Add a handle to the set of reserved handles.",
2431+
"input": {
2432+
"encoding": "application/json",
2433+
"schema": {
2434+
"type": "object",
2435+
"required": ["handle"],
2436+
"properties": {
2437+
"handle": {"type": "string"}
2438+
}
2439+
}
2440+
},
2441+
"output": {
2442+
"encoding": "application/json",
2443+
"schema": {"type": "object", "properties": {}}
2444+
}
2445+
}
2446+
}
2447+
};
2448+
24232449
/// `com.atproto.temp.checkSignupQueue`
24242450
const comAtprotoTempCheckSignupQueue = <String, dynamic>{
24252451
"lexicon": 1,
@@ -11230,6 +11256,7 @@ const lexicons = <Map<String, dynamic>>[
1123011256
comAtprotoIdentitySubmitPlcOperation,
1123111257
comAtprotoIdentityUpdateHandle,
1123211258
comAtprotoIdentityResolveHandle,
11259+
comAtprotoTempAddReservedHandle,
1123311260
comAtprotoTempCheckSignupQueue,
1123411261
comAtprotoTempRequestPhoneVerification,
1123511262
comAtprotoTempFetchLabels,
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
title: addReservedHandle
3+
description: com.atproto.temp.addReservedHandle
4+
---
5+
6+
# [com.atproto.temp.addReservedHandle](https://github.com/myConsciousness/atproto.dart/blob/main/lexicons/com/atproto/temp/addReservedHandle.json)
7+
8+
## #main
9+
10+
Add a handle to the set of reserved handles.
11+
12+
### Input
13+
14+
- **Encoding**: application/json
15+
16+
| Property | Type | Known Values | Required | Description |
17+
| --- | --- | --- | :---: | --- |
18+
| **handle** | string | - || - |
19+
20+
### Output
21+
22+
- **Encoding**: application/json

website/docs/supported_api.md

+1
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ sidebar_position: 4
9393

9494
| Method | Docs | Auth Required | Paging (cursor) |
9595
| --- | --- | :---: | :---: |
96+
| **[com.atproto.temp.addReservedHandle](https://pub.dev/documentation/atproto/latest/atproto/TempService/addReservedHandle.html)** | [Reference](lexicons/com/atproto/temp/addReservedHandle.md) |||
9697
| **[com.atproto.temp.checkSignupQueue](https://pub.dev/documentation/atproto/latest/atproto/TempService/checkSignupQueue.html)** | [Reference](lexicons/com/atproto/temp/checkSignupQueue.md) |||
9798
| **[com.atproto.temp.requestPhoneVerification](https://pub.dev/documentation/atproto/latest/atproto/TempService/requestPhoneVerification.html)** | [Reference](lexicons/com/atproto/temp/requestPhoneVerification.md) |||
9899
| **[com.atproto.temp.fetchLabels](https://pub.dev/documentation/atproto/latest/atproto/TempService/fetchLabels.html)** | [Reference](lexicons/com/atproto/temp/fetchLabels.md) |||

0 commit comments

Comments
 (0)