You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: schemas/plugin.schema.json
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -411,7 +411,7 @@
411
411
"type": "array",
412
412
"description": "Optional array of aliases for the method's parameters. Each alias provides an alternative name for the corresponding parameter at that position. The array length must match the number of parameters in the referenced method (after bindSelf is applied). Use this to provide more meaningful or language-appropriate parameter names.",
413
413
"items": {
414
-
"type": "object",
414
+
"type": ["object", "null"],
415
415
"description": "An alias for a parameter with optional ownership semantics.",
416
416
"required": ["name"],
417
417
"properties": {
@@ -431,7 +431,7 @@
431
431
"maxItems": 32
432
432
},
433
433
"retAlias": {
434
-
"type": "object",
434
+
"type": ["object", "null"],
435
435
"description": "Optional alias for the return value. Provides an alternative name and ownership semantics for the value returned by this method. Useful for providing more meaningful or language-appropriate return value names in generated bindings.",
0 commit comments