diff --git a/client/src/schema/schema.ts b/client/src/schema/schema.ts index 80f554347a24..4a2b316b8eaa 100644 --- a/client/src/schema/schema.ts +++ b/client/src/schema/schema.ts @@ -6547,9 +6547,9 @@ export interface components { * Share Option * @description User choice for sharing resources which its contents may be restricted: * - None: The user did not choose anything yet or no option is needed. - * - make_public: The contents of the resource will be made publicly accessible. - * - make_accessible_to_shared: This will automatically create a new `sharing role` allowing protected contents to be accessed only by the desired users. - * - no_changes: This won't change the current permissions for the contents. The user which this resource will be shared may not be able to access all its contents. + * - SharingOptions.make_public: The contents of the resource will be made publicly accessible. + * - SharingOptions.make_accessible_to_shared: This will automatically create a new `sharing role` allowing protected contents to be accessed only by the desired users. + * - SharingOptions.no_changes: This won't change the current permissions for the contents. The user which this resource will be shared may not be able to access all its contents. */ share_option?: components["schemas"]["SharingOptions"]; /** @@ -6722,9 +6722,7 @@ export interface components { error: string; /** * Item Id - * @example [ - * "0123456789ABCDEF" - * ] + * @example 0123456789ABCDEF */ item_id: string; }; @@ -6778,9 +6776,7 @@ export interface components { StoredItem: { /** * Id - * @example [ - * "0123456789ABCDEF" - * ] + * @example 0123456789ABCDEF */ id: string; /** Name */ @@ -8993,7 +8989,7 @@ export interface operations { * @description Sets the permissions to manage a library folder. */ parameters: { - /** @description Indicates what action should be performed on the Library. Currently only `set_permissions` is supported. */ + /** @description Indicates what action should be performed on the Library. Currently only `LibraryFolderPermissionAction.set_permissions` is supported. */ query?: { action?: components["schemas"]["LibraryFolderPermissionAction"]; };