@@ -83,17 +83,17 @@ Each one of them encapsulates the operations related to it (like listing, updati
8383
8484### Forms
8585
86- #### ` forms.list({ page: 1, pageSize = 10, search = '' }) `
86+ #### ` forms.list({ page: 1, pageSize = 10, search = '', page }) `
8787- Get a list of your typeforms
88- - Returns a list of typeform with the payload [ refenced here] ( https://developer.typeform.com/create/reference/retrieve-forms/ ) .
88+ - Returns a list of typeform with the payload [ referenced here] ( https://developer.typeform.com/create/reference/retrieve-forms/ ) .
8989
9090#### ` forms.get({ uid }) `
9191- Get a typeform by UID
92- - Returns a typeform with the payload [ refenced here] ( https://developer.typeform.com/create/reference/retrieve-form/ ) .
92+ - Returns a typeform with the payload [ referenced here] ( https://developer.typeform.com/create/reference/retrieve-form/ ) .
9393
9494#### ` forms.update({ uid, data = {}, override = false }) `
9595- Get a typeform by UID
96- - Returns a typeform with the payload [ refenced here] ( https://developer.typeform.com/create/reference/retrieve-form/ ) .
96+ - Returns a typeform with the payload [ referenced here] ( https://developer.typeform.com/create/reference/retrieve-form/ ) .
9797
9898#### ` forms.delete({ uid }) `
9999
@@ -141,16 +141,16 @@ Each one of them encapsulates the operations related to it (like listing, updati
141141#### ` themes.list({ page, pageSize }) `
142142- Gets your themes collection
143143- ` page ` : default ` 1 `
144- - ` page_size : default ` 10`
144+ - ` pageSize : default ` 10`
145145
146146#### ` themes.get({ id }) `
147147- Gets a theme for the given ID
148148
149- #### ` themes.create({ background, colors, font, has_transparent_button , name }) `
149+ #### ` themes.create({ background, colors, font, hasTransparentButton , name }) `
150150- Creates a theme with the given configuration
151151- See more details of the payload in [ the documentation] ( https://developer.typeform.com/create/reference/create-theme/ )
152152
153- #### ` themes.update({ background, colors, font, has_transparent_button , name }) `
153+ #### ` themes.update({ background, colors, font, hasTransparentButton , name }) `
154154- Creates a theme with the given configuration
155155- See more details of the payload in [ the documentation] ( https://developer.typeform.com/create/reference/update-theme/ )
156156
@@ -162,7 +162,7 @@ Each one of them encapsulates the operations related to it (like listing, updati
162162#### ` workspaces.list({ page, pageSize, search }) `
163163- Gets your workspaces
164164- ` page ` : default ` 1 `
165- - ` page_size : default ` 10`
165+ - ` pageSize : default ` 10`
166166- ` search ` : search a workspace that partially matches the search string
167167
168168#### ` workspaces.get({ id }) `
@@ -190,7 +190,7 @@ Each one of them encapsulates the operations related to it (like listing, updati
190190
191191### Responses
192192
193- #### ` responses.list({ uid, page_size , since, until, after, before, completed, sort, query, fields }) `
193+ #### ` responses.list({ uid, pageSize , since, until, after, before, completed, sort, query, fields }) `
194194- List responses from the given ID
195195- ` uid ` : typeform UID
196196- For parameter details check [ the documentation] ( https://developer.typeform.com/responses/reference/retrieve-responses/ )
0 commit comments