Skip to content

Commit

Permalink
Update client api schema
Browse files Browse the repository at this point in the history
  • Loading branch information
davelopez committed Mar 7, 2023
1 parent 96c9013 commit 68f8436
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions client/src/schema/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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"];
/**
Expand Down Expand Up @@ -6722,9 +6722,7 @@ export interface components {
error: string;
/**
* Item Id
* @example [
* "0123456789ABCDEF"
* ]
* @example 0123456789ABCDEF
*/
item_id: string;
};
Expand Down Expand Up @@ -6778,9 +6776,7 @@ export interface components {
StoredItem: {
/**
* Id
* @example [
* "0123456789ABCDEF"
* ]
* @example 0123456789ABCDEF
*/
id: string;
/** Name */
Expand Down Expand Up @@ -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"];
};
Expand Down

0 comments on commit 68f8436

Please sign in to comment.