Skip to content

Commit

Permalink
change word to current
Browse files Browse the repository at this point in the history
  • Loading branch information
RomKadria committed Mar 24, 2024
1 parent f599458 commit 0faf834
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/api/lib/api-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export class ApiClient {
* @param {string} token - The authentication token required for making API requests to Monday.com.
* @param {ApiVersionType} [apiVersion=defaultVersion] - The API version to use for requests.
* Can be one of the predefined versions in `AvailableVersions` or a custom version string.
* Defaults to `stable` if not specified.
* Defaults to the current version if not specified.
* @param {string} [endpoint='https://api.monday.com/v2'] - The URL of the API endpoint. Defaults to the standard Monday.com API endpoint if not specified.
*/

Expand Down
6 changes: 3 additions & 3 deletions packages/api/lib/constants/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ export enum AvailableVersions {
// CURRENT = 'current',
// RELEASE_CANDIDATE = 'release_candidate',
// DEV = 'dev',
VERSION_2023_10 = '2024-04',
VERSION_2024_01 = '2024-07',
VERSION_2024_04 = '2024-10',
VERSION_2024_01 = '2024-01',
VERSION_2024_04 = '2024-04',
VERSION_2024_07 = '2024-07',
}

export const defaultVersion = AvailableVersions.VERSION_2024_04;
Expand Down

0 comments on commit 0faf834

Please sign in to comment.