@@ -42,8 +42,8 @@ type Client interface {
4242 // explicitly marked for deletion.
4343 PropertiesOverwrite (arg * OverwritePropertyGroupArg ) (err error )
4444 // PropertiesRemove : Remove the specified property group from the file. To
45- // remove specific property field key value pairs, see route
46- // `propertiesUpdate`. To update a template, see `templatesUpdateForUser` or
45+ // remove specific property field key value pairs, see `propertiesUpdate`.
46+ // To update a template, see `templatesUpdateForUser` or
4747 // `templatesUpdateForTeam`. Templates can't be removed once created.
4848 PropertiesRemove (arg * RemovePropertiesArg ) (err error )
4949 // PropertiesSearch : Search across property templates for particular
@@ -57,29 +57,33 @@ type Client interface {
5757 // `propertiesOverwrite` will delete any fields that are omitted from a
5858 // property group.
5959 PropertiesUpdate (arg * UpdatePropertiesArg ) (err error )
60- // TemplatesAddForTeam : Add a template associated with a team. See route
60+ // TemplatesAddForTeam : Add a template associated with a team. See
6161 // `propertiesAdd` to add properties to a file or folder.
6262 TemplatesAddForTeam (arg * AddTemplateArg ) (res * AddTemplateResult , err error )
63- // TemplatesAddForUser : Add a template associated with a user. See route
64- // `propertiesAdd` to add properties to a file.
63+ // TemplatesAddForUser : Add a template associated with a user. See
64+ // `propertiesAdd` to add properties to a file. This endpoint can't be
65+ // called on a team member or admin's behalf.
6566 TemplatesAddForUser (arg * AddTemplateArg ) (res * AddTemplateResult , err error )
6667 // TemplatesGetForTeam : Get the schema for a specified template.
6768 TemplatesGetForTeam (arg * GetTemplateArg ) (res * GetTemplateResult , err error )
68- // TemplatesGetForUser : Get the schema for a specified template.
69+ // TemplatesGetForUser : Get the schema for a specified template. This
70+ // endpoint can't be called on a team member or admin's behalf.
6971 TemplatesGetForUser (arg * GetTemplateArg ) (res * GetTemplateResult , err error )
7072 // TemplatesListForTeam : Get the template identifiers for a team. To get
7173 // the schema of each template use `templatesGetForTeam`.
7274 TemplatesListForTeam () (res * ListTemplateResult , err error )
7375 // TemplatesListForUser : Get the template identifiers for a team. To get
74- // the schema of each template use `templatesGetForUser`.
76+ // the schema of each template use `templatesGetForUser`. This endpoint
77+ // can't be called on a team member or admin's behalf.
7578 TemplatesListForUser () (res * ListTemplateResult , err error )
7679 // TemplatesUpdateForTeam : Update a template associated with a team. This
7780 // route can update the template name, the template description and add
7881 // optional properties to templates.
7982 TemplatesUpdateForTeam (arg * UpdateTemplateArg ) (res * UpdateTemplateResult , err error )
8083 // TemplatesUpdateForUser : Update a template associated with a user. This
8184 // route can update the template name, the template description and add
82- // optional properties to templates.
85+ // optional properties to templates. This endpoint can't be called on a team
86+ // member or admin's behalf.
8387 TemplatesUpdateForUser (arg * UpdateTemplateArg ) (res * UpdateTemplateResult , err error )
8488}
8589
0 commit comments