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: README.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1138,7 +1138,8 @@ The following sets of tools are available:
1138
1138
-`title`: The project title. Required for 'create_project' method. (string, optional)
1139
1139
-`updated_field`: Object describing the field to update and its new value. Required for 'update_project_item'. Two shapes are accepted: (1) by ID — {"id": 123456, "value": "..."}; (2) by name — {"name": "Status", "value": "In Progress"}. For single-select fields, option-name resolution requires the by-name shape; on the by-ID shape, pass the option ID. Set value to null to clear the field. (object, optional)
1140
1140
-`view_id`: Project view node ID for update or delete; must belong to owner/project_number. (string, optional)
1141
-
-`visible_fields`: Field database ID strings or case-insensitive names for table or board creation; valid base-10 int64 strings are IDs. Unsupported for roadmap. (string[], optional)
1141
+
-`visible_field_names`: Field names for table or board creation; mutually exclusive with visible_fields. (string[], optional)
1142
+
-`visible_fields`: Field database IDs for table or board creation; mutually exclusive with visible_field_names. (string[], optional)
Copy file name to clipboardExpand all lines: pkg/github/__toolsnaps__/projects_write.snap
+8-1Lines changed: 8 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -154,8 +154,15 @@
154
154
"description": "Project view node ID for update or delete; must belong to owner/project_number.",
155
155
"type": "string"
156
156
},
157
+
"visible_field_names": {
158
+
"description": "Field names for table or board creation; mutually exclusive with visible_fields.",
159
+
"items": {
160
+
"type": "string"
161
+
},
162
+
"type": "array"
163
+
},
157
164
"visible_fields": {
158
-
"description": "Field database ID strings or case-insensitive names for table or board creation; valid base-10 int64 strings are IDs. Unsupported for roadmap.",
165
+
"description": "Field database IDs for table or board creation; mutually exclusive with visible_field_names.",
Description: "Field database ID strings or case-insensitive names for table or board creation; valid base-10 int64 strings are IDs. Unsupported for roadmap.",
680
+
Description: "Field database IDs for table or board creation; mutually exclusive with visible_field_names.",
681
+
Items: &jsonschema.Schema{
682
+
Type: "string",
683
+
},
684
+
},
685
+
"visible_field_names": {
686
+
Type: "array",
687
+
Description: "Field names for table or board creation; mutually exclusive with visible_fields.",
0 commit comments