Skip to content

Commit

Permalink
Merge pull request #1796 from myConsciousness/pull-latest-lexicons
Browse files Browse the repository at this point in the history
  • Loading branch information
myConsciousness authored Nov 8, 2024
2 parents 07c9617 + ba48c02 commit 29aa2d6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion lexicons/com/atproto/repo/applyWrites.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
"required": ["collection", "value"],
"properties": {
"collection": { "type": "string", "format": "nsid" },
"rkey": { "type": "string", "maxLength": 15 },
"rkey": { "type": "string", "maxLength": 512 },
"value": { "type": "unknown" }
}
},
Expand Down
2 changes: 1 addition & 1 deletion lexicons/com/atproto/repo/createRecord.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"rkey": {
"type": "string",
"description": "The Record Key.",
"maxLength": 15
"maxLength": 512
},
"validate": {
"type": "boolean",
Expand Down
2 changes: 1 addition & 1 deletion lexicons/com/atproto/repo/putRecord.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"rkey": {
"type": "string",
"description": "The Record Key.",
"maxLength": 15
"maxLength": 512
},
"validate": {
"type": "boolean",
Expand Down
6 changes: 3 additions & 3 deletions packages/lexicon/lib/src/lexicons.g.dart
Original file line number Diff line number Diff line change
Expand Up @@ -1808,7 +1808,7 @@ const comAtprotoRepoPutRecord = <String, dynamic>{
"rkey": {
"type": "string",
"description": "The Record Key.",
"maxLength": 15
"maxLength": 512
},
"validate": {
"type": "boolean",
Expand Down Expand Up @@ -1939,7 +1939,7 @@ const comAtprotoRepoCreateRecord = <String, dynamic>{
"rkey": {
"type": "string",
"description": "The Record Key.",
"maxLength": 15
"maxLength": 512
},
"validate": {
"type": "boolean",
Expand Down Expand Up @@ -2066,7 +2066,7 @@ const comAtprotoRepoApplyWrites = <String, dynamic>{
"required": ["collection", "value"],
"properties": {
"collection": {"type": "string", "format": "nsid"},
"rkey": {"type": "string", "maxLength": 15},
"rkey": {"type": "string", "maxLength": 512},
"value": {"type": "unknown"}
}
},
Expand Down

0 comments on commit 29aa2d6

Please sign in to comment.