diff --git a/.codegen.json b/.codegen.json index cf0d80df..b495eef1 100644 --- a/.codegen.json +++ b/.codegen.json @@ -1 +1 @@ -{ "engineHash": "3e11b6f", "specHash": "4beaa19", "version": "4.3.0" } +{ "engineHash": "3e11b6f", "specHash": "ad08e8c", "version": "4.3.0" } diff --git a/docs/sdk-gen/authorization.md b/docs/sdk-gen/authorization.md index 5f4ef517..57c2becd 100644 --- a/docs/sdk-gen/authorization.md +++ b/docs/sdk-gen/authorization.md @@ -46,7 +46,7 @@ authorization code or a server-side JWT assertion. An Access Token is a string that enables Box to verify that a request belongs to an authorized session. In the normal order of operations you will begin by requesting authentication from the -[authorize](#get-authorize) endpoint and Box will send you an +[authorize](https://developer.box.com/reference/get-authorize) endpoint and Box will send you an authorization code. You will then send this code to this endpoint to exchange it for diff --git a/docs/sdk-gen/comments.md b/docs/sdk-gen/comments.md index 4a5d3bda..4bf643d8 100644 --- a/docs/sdk-gen/comments.md +++ b/docs/sdk-gen/comments.md @@ -155,7 +155,7 @@ This function returns a value of type `CommentFull`. Returns the newly created comment object. Not all available fields are returned by default. Use the -[fields](#param-fields) query parameter to explicitly request +[fields](#parameter-fields) query parameter to explicitly request any specific fields. diff --git a/docs/sdk-gen/events.md b/docs/sdk-gen/events.md index 652f3ac4..0d68b3ce 100644 --- a/docs/sdk-gen/events.md +++ b/docs/sdk-gen/events.md @@ -8,7 +8,7 @@ ## Get events long poll endpoint Returns a list of real-time servers that can be used for long-polling updates -to the [event stream](#get-events). +to the [event stream](https://developer.box.com/reference/get-events). Long polling is the concept where a HTTP request is kept open until the server sends a response, then repeating the process over and over to receive @@ -23,7 +23,7 @@ URLs. Next, make a long poll request to any of the provided URLs. When an event occurs in monitored account a response with the value `new_change` will be sent. The response contains no other details as it only serves as a prompt to take further action such as sending a -request to the [events endpoint](#get-events) with the last known +request to the [events endpoint](https://developer.box.com/reference/get-events) with the last known `stream_position`. After the server sends this response it closes the connection. You must now diff --git a/docs/sdk-gen/fileVersions.md b/docs/sdk-gen/fileVersions.md index bde0e4a4..a7880d97 100644 --- a/docs/sdk-gen/fileVersions.md +++ b/docs/sdk-gen/fileVersions.md @@ -72,7 +72,7 @@ This function returns a value of type `FileVersionFull`. Returns a specific version of a file. Not all available fields are returned by default. Use the -[fields](#param-fields) query parameter to explicitly request +[fields](#parameter-fields) query parameter to explicitly request any specific fields. diff --git a/docs/sdk-gen/files.md b/docs/sdk-gen/files.md index 1cbfb1f0..d543b071 100644 --- a/docs/sdk-gen/files.md +++ b/docs/sdk-gen/files.md @@ -37,7 +37,7 @@ This function returns a value of type `FileFull`. Returns a file object. Not all available fields are returned by default. Use the -[fields](#param-fields) query parameter to explicitly request +[fields](#parameter-fields) query parameter to explicitly request any specific fields. @@ -71,7 +71,7 @@ This function returns a value of type `FileFull`. Returns a file object. Not all available fields are returned by default. Use the -[fields](#param-fields) query parameter to explicitly request +[fields](#parameter-fields) query parameter to explicitly request any specific fields. @@ -140,7 +140,7 @@ This function returns a value of type `FileFull`. Returns a new file object representing the copied file. Not all available fields are returned by default. Use the -[fields](#param-fields) query parameter to explicitly request +[fields](#parameter-fields) query parameter to explicitly request any specific fields. diff --git a/docs/sdk-gen/folders.md b/docs/sdk-gen/folders.md index 6a3b161b..f09ed2a5 100644 --- a/docs/sdk-gen/folders.md +++ b/docs/sdk-gen/folders.md @@ -52,7 +52,7 @@ To fetch more items within the folder, use the [Get items in a folder](https://developer.box.com/reference/get-folders-id-items)) endpoint. Not all available fields are returned by default. Use the -[fields](#param-fields) query parameter to explicitly request +[fields](#parameter-fields) query parameter to explicitly request any specific fields. @@ -86,7 +86,7 @@ This function returns a value of type `FolderFull`. Returns a folder object for the updated folder Not all available fields are returned by default. Use the -[fields](#param-fields) query parameter to explicitly request +[fields](#parameter-fields) query parameter to explicitly request any specific fields. If the user is moving folders with a large number of items in all of @@ -132,7 +132,7 @@ Retrieves a page of items in a folder. These items can be files, folders, and web links. To request more information about the folder itself, like its size, -use the [Get a folder](#get-folders-id) endpoint instead. +use the [Get a folder](https://developer.box.com/reference/get-folders-id) endpoint instead. This operation is performed by calling function `getFolderItems`. @@ -188,7 +188,7 @@ This function returns a value of type `FolderFull`. Returns a folder object. Not all available fields are returned by default. Use the -[fields](#param-fields) query parameter to explicitly request +[fields](#parameter-fields) query parameter to explicitly request any specific fields. @@ -225,7 +225,7 @@ This function returns a value of type `FolderFull`. Returns a new folder object representing the copied folder. Not all available fields are returned by default. Use the -[fields](#param-fields) query parameter to explicitly request +[fields](#parameter-fields) query parameter to explicitly request any specific fields. diff --git a/docs/sdk-gen/users.md b/docs/sdk-gen/users.md index c59862f0..8d5ba6da 100644 --- a/docs/sdk-gen/users.md +++ b/docs/sdk-gen/users.md @@ -154,8 +154,8 @@ This function returns a value of type `UserFull`. Returns a single user object. Not all available fields are returned by default. Use the -[fields](#param-fields) query parameter to explicitly request -any specific fields using the [fields](#get-users-id--request--fields) +[fields](#parameter-fields) query parameter to explicitly request +any specific fields using the [fields](#parameter-fields) parameter. diff --git a/src/sdk-gen/managers/authorization.ts b/src/sdk-gen/managers/authorization.ts index 152f0425..22238d40 100644 --- a/src/sdk-gen/managers/authorization.ts +++ b/src/sdk-gen/managers/authorization.ts @@ -320,7 +320,7 @@ export class AuthorizationManager { * An Access Token is a string that enables Box to verify that a * request belongs to an authorized session. In the normal order of * operations you will begin by requesting authentication from the - * [authorize](#get-authorize) endpoint and Box will send you an + * [authorize](https://developer.box.com/reference/get-authorize) endpoint and Box will send you an * authorization code. * * You will then send this code to this endpoint to exchange it for diff --git a/src/sdk-gen/managers/events.ts b/src/sdk-gen/managers/events.ts index 33b42123..f1c6c7d1 100644 --- a/src/sdk-gen/managers/events.ts +++ b/src/sdk-gen/managers/events.ts @@ -471,7 +471,7 @@ export class EventsManager { } /** * Returns a list of real-time servers that can be used for long-polling updates - * to the [event stream](#get-events). + * to the [event stream](https://developer.box.com/reference/get-events). * * Long polling is the concept where a HTTP request is kept open until the * server sends a response, then repeating the process over and over to receive @@ -486,7 +486,7 @@ export class EventsManager { * When an event occurs in monitored account a response with the value * `new_change` will be sent. The response contains no other details as * it only serves as a prompt to take further action such as sending a - * request to the [events endpoint](#get-events) with the last known + * request to the [events endpoint](https://developer.box.com/reference/get-events) with the last known * `stream_position`. * * After the server sends this response it closes the connection. You must now diff --git a/src/sdk-gen/managers/folders.ts b/src/sdk-gen/managers/folders.ts index 018721d8..44d893bd 100644 --- a/src/sdk-gen/managers/folders.ts +++ b/src/sdk-gen/managers/folders.ts @@ -1159,7 +1159,7 @@ export class FoldersManager { * folders, and web links. * * To request more information about the folder itself, like its size, - * use the [Get a folder](#get-folders-id) endpoint instead. + * use the [Get a folder](https://developer.box.com/reference/get-folders-id) endpoint instead. * @param {string} folderId The unique identifier that represent a folder. The ID for any folder can be determined diff --git a/src/sdk-gen/managers/users.ts b/src/sdk-gen/managers/users.ts index b414921b..cf05c49d 100644 --- a/src/sdk-gen/managers/users.ts +++ b/src/sdk-gen/managers/users.ts @@ -287,7 +287,7 @@ export interface CreateUserRequestBody { readonly role?: CreateUserRequestBodyRoleField; /** * The language of the user, formatted in modified version of the - * [ISO 639-1](/guides/api-calls/language-codes) format. */ + * [ISO 639-1](https://developer.box.com/guides/api-calls/language-codes) format. */ readonly language?: string; /** * Whether the user can use Box Sync. */ @@ -479,7 +479,7 @@ export interface UpdateUserByIdRequestBody { readonly role?: UpdateUserByIdRequestBodyRoleField; /** * The language of the user, formatted in modified version of the - * [ISO 639-1](/guides/api-calls/language-codes) format. */ + * [ISO 639-1](https://developer.box.com/guides/api-calls/language-codes) format. */ readonly language?: string; /** * Whether the user can use Box Sync. */ diff --git a/src/sdk-gen/schemas/realtimeServer.ts b/src/sdk-gen/schemas/realtimeServer.ts index 80a63637..52894e31 100644 --- a/src/sdk-gen/schemas/realtimeServer.ts +++ b/src/sdk-gen/schemas/realtimeServer.ts @@ -19,7 +19,7 @@ export interface RealtimeServer { /** * The maximum number of retries this server will * allow before a new long poll should be started by - * getting a [new list of server](#options-events). */ + * getting a [new list of server](https://developer.box.com/reference/options-events). */ readonly maxRetries?: string; /** * The maximum number of seconds without a response