Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Convert Dash-Cased Parameters to CamelCase in getCustomContentByTypeInPage #70

Closed
Tracked by #43
MrRefactoring opened this issue Jun 23, 2023 · 1 comment · Fixed by #101
Closed
Tracked by #43

Convert Dash-Cased Parameters to CamelCase in getCustomContentByTypeInPage #70

MrRefactoring opened this issue Jun 23, 2023 · 1 comment · Fixed by #101
Assignees
Labels
enhancement Denotes a suggestion or request aimed at improving or adding new features to the project good first issue Highlights beginner-friendly tasks, ideal for those looking to contribute for the first time help wanted Signals that additional assistance or expertise is needed on a particular issue or feature

Comments

@MrRefactoring
Copy link
Owner

MrRefactoring commented Jun 23, 2023

In the getCustomContentByTypeInPage function, parameters with a dash (-) are used. The proposal is to replace these dash-cased parameters with camelCase.

The function currently looks like this:

async getCustomContentByTypeInPage<T = Models.Pagination<Models.CustomContent>>(
  parameters: Parameters.GetCustomContentByTypeInPage,
  callback?: Callback<T>,
): Promise<void | T> {
  const config: RequestConfig = {
    url: `/pages/${parameters.id}/custom-content`,
    method: 'GET',
    params: {
      type: parameters.type,
      cursor: parameters.cursor,
      limit: parameters.limit,
      'body-format': parameters['body-format'],
      'serialize-ids-as-strings': true,
    },
  };

  return this.client.sendRequest(config, callback);
}

Expected function look:

async getCustomContentByTypeInPage<T = Models.Pagination<Models.CustomContent>>(
  parameters: Parameters.GetCustomContentByTypeInPage,
  callback?: Callback<T>,
): Promise<void | T> {
  const config: RequestConfig = {
    url: `/pages/${parameters.id}/custom-content`,
    method: 'GET',
    params: {
      type: parameters.type,
      cursor: parameters.cursor,
      limit: parameters.limit,
      'body-format': parameters.bodyFormat,
      'serialize-ids-as-strings': true,
    },
  };

  return this.client.sendRequest(config, callback);
}
@MrRefactoring MrRefactoring added this to the Version 2 API support milestone Jun 23, 2023
@MrRefactoring MrRefactoring added enhancement Denotes a suggestion or request aimed at improving or adding new features to the project help wanted Signals that additional assistance or expertise is needed on a particular issue or feature good first issue Highlights beginner-friendly tasks, ideal for those looking to contribute for the first time labels Jun 23, 2023
@frodri13
Copy link

Hello @MrRefactoring, PR for this one: camelCase getCustomContentByTypeInPage

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement Denotes a suggestion or request aimed at improving or adding new features to the project good first issue Highlights beginner-friendly tasks, ideal for those looking to contribute for the first time help wanted Signals that additional assistance or expertise is needed on a particular issue or feature
Projects
Status: Done
Development

Successfully merging a pull request may close this issue.

2 participants