@growi/sdk-typescript 1.0.0-RC.0 → 1.0.0-RC.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -16,132 +16,137 @@ export const getGrowirestapiv3 = () => {
16
16
  /**
17
17
  * @summary /external-user-groups/ancestors
18
18
  */
19
- const getExternalUserGroupsAncestors = (params, options) => {
19
+ const getAncestorsForExternalUserGroups = (params, options) => {
20
20
  return customInstance({ url: `/external-user-groups/ancestors`, method: 'GET', params }, options);
21
21
  };
22
22
  /**
23
23
  * @summary /external-user-groups/children
24
24
  */
25
- const getExternalUserGroupsChildren = (params, options) => {
25
+ const getChildrenForExternalUserGroups = (params, options) => {
26
26
  return customInstance({ url: `/external-user-groups/children`, method: 'GET', params }, options);
27
27
  };
28
28
  /**
29
29
  * @summary /external-user-groups/{id}
30
30
  */
31
- const getExternalUserGroupsId = (id, options) => {
31
+ const getExternalUserGroupsById = (id, options) => {
32
32
  return customInstance({ url: `/external-user-groups/${id}`, method: 'GET' }, options);
33
33
  };
34
34
  /**
35
35
  * @summary /external-user-groups/{id}
36
36
  */
37
- const deleteExternalUserGroupsId = (id, params, options) => {
37
+ const deleteExternalUserGroupsById = (id, params, options) => {
38
38
  return customInstance({ url: `/external-user-groups/${id}`, method: 'DELETE', params }, options);
39
39
  };
40
40
  /**
41
41
  * @summary /external-user-groups/{id}
42
42
  */
43
- const putExternalUserGroupsId = (id, putExternalUserGroupsIdBody, options) => {
44
- return customInstance({ url: `/external-user-groups/${id}`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: putExternalUserGroupsIdBody }, options);
43
+ const putExternalUserGroupsById = (id, putExternalUserGroupsByIdBody, options) => {
44
+ return customInstance({ url: `/external-user-groups/${id}`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: putExternalUserGroupsByIdBody }, options);
45
45
  };
46
46
  /**
47
47
  * @summary /external-user-groups/{id}/external-user-group-relations
48
48
  */
49
- const getExternalUserGroupsIdExternalUserGroupRelations = (id, options) => {
49
+ const getExternalUserGroupRelationsByIdForExternalUserGroups = (id, options) => {
50
50
  return customInstance({ url: `/external-user-groups/${id}/external-user-group-relations`, method: 'GET' }, options);
51
51
  };
52
52
  /**
53
53
  * @summary Get LDAP sync settings
54
54
  */
55
- const getExternalUserGroupsLdapSyncSettings = (options) => {
55
+ const getSyncSettingsForExternalUserGroupsLdap = (options) => {
56
56
  return customInstance({ url: `/external-user-groups/ldap/sync-settings`, method: 'GET' }, options);
57
57
  };
58
58
  /**
59
59
  * @summary Update LDAP sync settings
60
60
  */
61
- const putExternalUserGroupsLdapSyncSettings = (putExternalUserGroupsLdapSyncSettingsBody, options) => {
61
+ const putSyncSettingsForExternalUserGroupsLdap = (putSyncSettingsForExternalUserGroupsLdapBody, options) => {
62
62
  return customInstance({
63
63
  url: `/external-user-groups/ldap/sync-settings`,
64
64
  method: 'PUT',
65
65
  headers: { 'Content-Type': 'application/json' },
66
- data: putExternalUserGroupsLdapSyncSettingsBody,
66
+ data: putSyncSettingsForExternalUserGroupsLdapBody,
67
67
  }, options);
68
68
  };
69
69
  /**
70
70
  * @summary Get Keycloak sync settings
71
71
  */
72
- const getExternalUserGroupsKeycloakSyncSettings = (options) => {
72
+ const getSyncSettingsForExternalUserGroupsKeycloak = (options) => {
73
73
  return customInstance({ url: `/external-user-groups/keycloak/sync-settings`, method: 'GET' }, options);
74
74
  };
75
75
  /**
76
76
  * @summary /external-user-groups/keycloak/sync-settings
77
77
  */
78
- const putExternalUserGroupsKeycloakSyncSettings = (putExternalUserGroupsKeycloakSyncSettingsBody, options) => {
78
+ const putSyncSettingsForExternalUserGroupsKeycloak = (putSyncSettingsForExternalUserGroupsKeycloakBody, options) => {
79
79
  return customInstance({
80
80
  url: `/external-user-groups/keycloak/sync-settings`,
81
81
  method: 'PUT',
82
82
  headers: { 'Content-Type': 'application/json' },
83
- data: putExternalUserGroupsKeycloakSyncSettingsBody,
83
+ data: putSyncSettingsForExternalUserGroupsKeycloakBody,
84
84
  }, options);
85
85
  };
86
86
  /**
87
87
  * @summary Start LDAP sync process
88
88
  */
89
- const putExternalUserGroupsLdapSync = (options) => {
89
+ const putSyncForExternalUserGroupsLdap = (options) => {
90
90
  return customInstance({ url: `/external-user-groups/ldap/sync`, method: 'PUT' }, options);
91
91
  };
92
92
  /**
93
93
  * @summary /external-user-groups/keycloak/sync
94
94
  */
95
- const putExternalUserGroupsKeycloakSync = (options) => {
95
+ const putSyncForExternalUserGroupsKeycloak = (options) => {
96
96
  return customInstance({ url: `/external-user-groups/keycloak/sync`, method: 'PUT' }, options);
97
97
  };
98
98
  /**
99
99
  * @summary /external-user-groups/ldap/sync-status
100
100
  */
101
- const getExternalUserGroupsLdapSyncStatus = (options) => {
101
+ const getSyncStatusForExternalUserGroupsLdap = (options) => {
102
102
  return customInstance({ url: `/external-user-groups/ldap/sync-status`, method: 'GET' }, options);
103
103
  };
104
104
  /**
105
105
  * Get questionnaire orders
106
106
  * @summary /questionnaire/orders
107
107
  */
108
- const getQuestionnaireOrders = (options) => {
108
+ const getOrdersForQuestionnaire = (options) => {
109
109
  return customInstance({ url: `/questionnaire/orders`, method: 'GET' }, options);
110
110
  };
111
111
  /**
112
112
  * Get questionnaire is enabled
113
113
  * @summary /questionnaire/is-enabled
114
114
  */
115
- const getQuestionnaireIsEnabled = (options) => {
115
+ const getIsEnabledForQuestionnaire = (options) => {
116
116
  return customInstance({ url: `/questionnaire/is-enabled`, method: 'GET' }, options);
117
117
  };
118
118
  /**
119
119
  * Post proactive questionnaire answer
120
120
  * @summary /questionnaire/proactive/answer
121
121
  */
122
- const postQuestionnaireProactiveAnswer = (postQuestionnaireProactiveAnswerBody, options) => {
123
- return customInstance({ url: `/questionnaire/proactive/answer`, method: 'POST', headers: { 'Content-Type': 'application/json' }, data: postQuestionnaireProactiveAnswerBody }, options);
122
+ const postAnswerForQuestionnaireProactive = (postAnswerForQuestionnaireProactiveBody, options) => {
123
+ return customInstance({
124
+ url: `/questionnaire/proactive/answer`,
125
+ method: 'POST',
126
+ headers: { 'Content-Type': 'application/json' },
127
+ data: postAnswerForQuestionnaireProactiveBody,
128
+ }, options);
124
129
  };
125
130
  /**
126
131
  * Post questionnaire answer
127
132
  * @summary /questionnaire/answer
128
133
  */
129
- const putQuestionnaireAnswer = (putQuestionnaireAnswerBody, options) => {
130
- return customInstance({ url: `/questionnaire/answer`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: putQuestionnaireAnswerBody }, options);
134
+ const putAnswerForQuestionnaire = (putAnswerForQuestionnaireBody, options) => {
135
+ return customInstance({ url: `/questionnaire/answer`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: putAnswerForQuestionnaireBody }, options);
131
136
  };
132
137
  /**
133
138
  * Skip questionnaire
134
139
  * @summary /questionnaire/skip
135
140
  */
136
- const putQuestionnaireSkip = (putQuestionnaireSkipBody, options) => {
137
- return customInstance({ url: `/questionnaire/skip`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: putQuestionnaireSkipBody }, options);
141
+ const putSkipForQuestionnaire = (putSkipForQuestionnaireBody, options) => {
142
+ return customInstance({ url: `/questionnaire/skip`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: putSkipForQuestionnaireBody }, options);
138
143
  };
139
144
  /**
140
145
  * Deny questionnaire
141
146
  * @summary /questionnaire/deny
142
147
  */
143
- const putQuestionnaireDeny = (putQuestionnaireDenyBody, options) => {
144
- return customInstance({ url: `/questionnaire/deny`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: putQuestionnaireDenyBody }, options);
148
+ const putDenyForQuestionnaire = (putDenyForQuestionnaireBody, options) => {
149
+ return customInstance({ url: `/questionnaire/deny`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: putDenyForQuestionnaireBody }, options);
145
150
  };
146
151
  /**
147
152
  * Get all templates
@@ -154,14 +159,14 @@ export const getGrowirestapiv3 = () => {
154
159
  * Get a preset template
155
160
  * @summary /templates/preset-templates/{templateId}/{locale}
156
161
  */
157
- const getTemplatesPresetTemplatesTemplateIdLocale = (templateId, locale, options) => {
162
+ const getPresetTemplatesByLocaleByTemplateIdForTemplates = (templateId, locale, options) => {
158
163
  return customInstance({ url: `/templates/preset-templates/${templateId}/${locale}`, method: 'GET' }, options);
159
164
  };
160
165
  /**
161
166
  * Get a plugin template
162
167
  * @summary /templates/plugin-templates/{organizationId}/{reposId}/{templateId}/{locale}
163
168
  */
164
- const getTemplatesPluginTemplatesOrganizationIdReposIdTemplateIdLocale = (organizationId, reposId, templateId, locale, options) => {
169
+ const getPluginTemplatesByLocaleByTemplateIdByReposIdByOrganizationIdForTemplates = (organizationId, reposId, templateId, locale, options) => {
165
170
  return customInstance({ url: `/templates/plugin-templates/${organizationId}/${reposId}/${templateId}/${locale}`, method: 'GET' }, options);
166
171
  };
167
172
  /**
@@ -175,14 +180,14 @@ export const getGrowirestapiv3 = () => {
175
180
  * Activate a plugin
176
181
  * @summary /plugins/{id}/activate
177
182
  */
178
- const putPluginsIdActivate = (id, options) => {
183
+ const putActivateByIdForPlugins = (id, options) => {
179
184
  return customInstance({ url: `/plugins/${id}/activate`, method: 'PUT' }, options);
180
185
  };
181
186
  /**
182
187
  * Remove a plugin
183
188
  * @summary /plugins/{id}/remove
184
189
  */
185
- const deletePluginsIdRemove = (id, options) => {
190
+ const deleteRemoveByIdForPlugins = (id, options) => {
186
191
  return customInstance({ url: `/plugins/${id}/remove`, method: 'DELETE' }, options);
187
192
  };
188
193
  /**
@@ -209,76 +214,76 @@ export const getGrowirestapiv3 = () => {
209
214
  * Update app setting
210
215
  * @summary /app-settings/app-setting
211
216
  */
212
- const putAppSettingsAppSetting = (appSettingPutParams, options) => {
217
+ const putAppSettingForAppSettings = (appSettingPutParams, options) => {
213
218
  return customInstance({ url: `/app-settings/app-setting`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: appSettingPutParams }, options);
214
219
  };
215
220
  /**
216
221
  * Update site url setting
217
222
  * @summary /app-settings/site-url-setting
218
223
  */
219
- const putAppSettingsSiteUrlSetting = (siteUrlSettingParams, options) => {
224
+ const putSiteUrlSettingForAppSettings = (siteUrlSettingParams, options) => {
220
225
  return customInstance({ url: `/app-settings/site-url-setting`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: siteUrlSettingParams }, options);
221
226
  };
222
227
  /**
223
228
  * Update smtp setting
224
229
  * @summary /app-settings/smtp-setting
225
230
  */
226
- const putAppSettingsSmtpSetting = (smtpSettingParams, options) => {
231
+ const putSmtpSettingForAppSettings = (smtpSettingParams, options) => {
227
232
  return customInstance({ url: `/app-settings/smtp-setting`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: smtpSettingParams }, options);
228
233
  };
229
234
  /**
230
235
  * Send test mail for smtp
231
236
  * @summary /app-settings/smtp-setting
232
237
  */
233
- const postAppSettingsSmtpTest = (options) => {
238
+ const postSmtpTestForAppSettings = (options) => {
234
239
  return customInstance({ url: `/app-settings/smtp-test`, method: 'POST' }, options);
235
240
  };
236
241
  /**
237
242
  * Update ses setting
238
243
  * @summary /app-settings/ses-setting
239
244
  */
240
- const putAppSettingsSesSetting = (sesSettingParams, options) => {
245
+ const putSesSettingForAppSettings = (sesSettingParams, options) => {
241
246
  return customInstance({ url: `/app-settings/ses-setting`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: sesSettingParams }, options);
242
247
  };
243
248
  /**
244
249
  * Update fileUploadSetting
245
250
  * @summary /app-settings/file-upload-setting
246
251
  */
247
- const putAppSettingsFileUploadSettings = (fileUploadSettingParams, options) => {
252
+ const putFileUploadSettingsForAppSettings = (fileUploadSettingParams, options) => {
248
253
  return customInstance({ url: `/app-settings/file-upload-settings`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: fileUploadSettingParams }, options);
249
254
  };
250
255
  /**
251
256
  * Update QuestionnaireSetting
252
257
  * @summary /app-settings/questionnaire-settings
253
258
  */
254
- const putAppSettingsQuestionnaireSettings = (questionnaireSettingParams, options) => {
259
+ const putQuestionnaireSettingsForAppSettings = (questionnaireSettingParams, options) => {
255
260
  return customInstance({ url: `/app-settings/questionnaire-settings`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: questionnaireSettingParams }, options);
256
261
  };
257
262
  /**
258
263
  * Update V5SchemaMigration
259
264
  * @summary AccessToken supported.
260
265
  */
261
- const postAppSettingsV5SchemaMigration = (options) => {
266
+ const postV5SchemaMigrationForAppSettings = (options) => {
262
267
  return customInstance({ url: `/app-settings/v5-schema-migration`, method: 'POST' }, options);
263
268
  };
264
269
  /**
265
270
  * Update MaintenanceMode
266
271
  * @summary AccessToken supported.
267
272
  */
268
- const postAppSettingsMaintenanceMode = (postAppSettingsMaintenanceModeBody, options) => {
269
- return customInstance({ url: `/app-settings/maintenance-mode`, method: 'POST', headers: { 'Content-Type': 'application/json' }, data: postAppSettingsMaintenanceModeBody }, options);
273
+ const postMaintenanceModeForAppSettings = (postMaintenanceModeForAppSettingsBody, options) => {
274
+ return customInstance({ url: `/app-settings/maintenance-mode`, method: 'POST', headers: { 'Content-Type': 'application/json' }, data: postMaintenanceModeForAppSettingsBody }, options);
270
275
  };
271
276
  /**
272
277
  * Get attachment list
273
278
  */
274
- const getAttachmentList = (params, options) => {
279
+ const getListForAttachment = (params, options) => {
275
280
  return customInstance({ url: `/attachment/list`, method: 'GET', params }, options);
276
281
  };
277
282
  /**
278
283
  * Get available capacity of uploaded file with GridFS
279
284
  * @summary /attachment/limit
280
285
  */
281
- const getAttachmentLimit = (params, options) => {
286
+ const getLimitForAttachment = (params, options) => {
282
287
  return customInstance({ url: `/attachment/limit`, method: 'GET', params }, options);
283
288
  };
284
289
  /**
@@ -291,7 +296,7 @@ export const getGrowirestapiv3 = () => {
291
296
  /**
292
297
  * Get attachment
293
298
  */
294
- const getAttachmentId = (id, options) => {
299
+ const getAttachmentById = (id, options) => {
295
300
  return customInstance({ url: `/attachment/${id}`, method: 'GET' }, options);
296
301
  };
297
302
  /**
@@ -312,47 +317,47 @@ export const getGrowirestapiv3 = () => {
312
317
  * List bookmark folders of a user
313
318
  * @summary List bookmark folders of a user
314
319
  */
315
- const getBookmarkFolderListUserId = (userId, options) => {
320
+ const getListByUserIdForBookmarkFolder = (userId, options) => {
316
321
  return customInstance({ url: `/bookmark-folder/list/${userId}`, method: 'GET' }, options);
317
322
  };
318
323
  /**
319
324
  * Delete a bookmark folder and its children
320
325
  * @summary Delete bookmark folder
321
326
  */
322
- const deleteBookmarkFolderId = (id, options) => {
327
+ const deleteBookmarkFolderById = (id, options) => {
323
328
  return customInstance({ url: `/bookmark-folder/${id}`, method: 'DELETE' }, options);
324
329
  };
325
330
  /**
326
331
  * Update a bookmark folder
327
332
  * @summary Update bookmark folder
328
333
  */
329
- const postBookmarkFolderAddBookmarkToFolder = (postBookmarkFolderAddBookmarkToFolderBody, options) => {
334
+ const postAddBookmarkToFolderForBookmarkFolder = (postAddBookmarkToFolderForBookmarkFolderBody, options) => {
330
335
  return customInstance({
331
336
  url: `/bookmark-folder/add-bookmark-to-folder`,
332
337
  method: 'POST',
333
338
  headers: { 'Content-Type': 'application/json' },
334
- data: postBookmarkFolderAddBookmarkToFolderBody,
339
+ data: postAddBookmarkToFolderForBookmarkFolderBody,
335
340
  }, options);
336
341
  };
337
342
  /**
338
343
  * Update a bookmark in a folder
339
344
  * @summary Update bookmark in folder
340
345
  */
341
- const putBookmarkFolderUpdateBookmark = (putBookmarkFolderUpdateBookmarkBody, options) => {
342
- return customInstance({ url: `/bookmark-folder/update-bookmark`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: putBookmarkFolderUpdateBookmarkBody }, options);
346
+ const putUpdateBookmarkForBookmarkFolder = (putUpdateBookmarkForBookmarkFolderBody, options) => {
347
+ return customInstance({ url: `/bookmark-folder/update-bookmark`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: putUpdateBookmarkForBookmarkFolderBody }, options);
343
348
  };
344
349
  /**
345
350
  * Get bookmarked info
346
351
  * @summary /bookmarks/info
347
352
  */
348
- const getBookmarksInfo = (params, options) => {
353
+ const getInfoForBookmarks = (params, options) => {
349
354
  return customInstance({ url: `/bookmarks/info`, method: 'GET', params }, options);
350
355
  };
351
356
  /**
352
357
  * Get my bookmarked status
353
358
  * @summary /bookmarks/{userId}
354
359
  */
355
- const getBookmarksUserId = (userId, options) => {
360
+ const getBookmarksByUserId = (userId, options) => {
356
361
  return customInstance({ url: `/bookmarks/${userId}`, method: 'GET' }, options);
357
362
  };
358
363
  /**
@@ -373,108 +378,108 @@ export const getGrowirestapiv3 = () => {
373
378
  * Get layout
374
379
  * @summary /customize-setting/layout
375
380
  */
376
- const getCustomizeSettingLayout = (options) => {
381
+ const getLayoutForCustomizeSetting = (options) => {
377
382
  return customInstance({ url: `/customize-setting/layout`, method: 'GET' }, options);
378
383
  };
379
384
  /**
380
385
  * Update layout
381
386
  * @summary /customize-setting/layout
382
387
  */
383
- const putCustomizeSettingLayout = (customizeLayout, options) => {
388
+ const putLayoutForCustomizeSetting = (customizeLayout, options) => {
384
389
  return customInstance({ url: `/customize-setting/layout`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: customizeLayout }, options);
385
390
  };
386
391
  /**
387
392
  * Get theme
388
393
  * @summary /customize-setting/theme
389
394
  */
390
- const getCustomizeSettingTheme = (options) => {
395
+ const getThemeForCustomizeSetting = (options) => {
391
396
  return customInstance({ url: `/customize-setting/theme`, method: 'GET' }, options);
392
397
  };
393
398
  /**
394
399
  * Update theme
395
400
  * @summary /customize-setting/theme
396
401
  */
397
- const putCustomizeSettingTheme = (customizeTheme, options) => {
402
+ const putThemeForCustomizeSetting = (customizeTheme, options) => {
398
403
  return customInstance({ url: `/customize-setting/theme`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: customizeTheme }, options);
399
404
  };
400
405
  /**
401
406
  * Get sidebar
402
407
  * @summary /customize-setting/sidebar
403
408
  */
404
- const getCustomizeSettingSidebar = (options) => {
409
+ const getSidebarForCustomizeSetting = (options) => {
405
410
  return customInstance({ url: `/customize-setting/sidebar`, method: 'GET' }, options);
406
411
  };
407
412
  /**
408
413
  * Update sidebar
409
414
  * @summary /customize-setting/sidebar
410
415
  */
411
- const putCustomizeSettingSidebar = (customizeSidebar, options) => {
416
+ const putSidebarForCustomizeSetting = (customizeSidebar, options) => {
412
417
  return customInstance({ url: `/customize-setting/sidebar`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: customizeSidebar }, options);
413
418
  };
414
419
  /**
415
420
  * Update function
416
421
  * @summary /customize-setting/function
417
422
  */
418
- const putCustomizeSettingFunction = (customizeFunction, options) => {
423
+ const putFunctionForCustomizeSetting = (customizeFunction, options) => {
419
424
  return customInstance({ url: `/customize-setting/function`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: customizeFunction }, options);
420
425
  };
421
426
  /**
422
427
  * Update presentation
423
428
  * @summary /customize-setting/presentation
424
429
  */
425
- const putCustomizeSettingPresentation = (customizePresentation, options) => {
430
+ const putPresentationForCustomizeSetting = (customizePresentation, options) => {
426
431
  return customInstance({ url: `/customize-setting/presentation`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: customizePresentation }, options);
427
432
  };
428
433
  /**
429
434
  * Update highlight
430
435
  * @summary /customize-setting/highlight
431
436
  */
432
- const putCustomizeSettingHighlight = (customizeHighlight, options) => {
437
+ const putHighlightForCustomizeSetting = (customizeHighlight, options) => {
433
438
  return customInstance({ url: `/customize-setting/highlight`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: customizeHighlight }, options);
434
439
  };
435
440
  /**
436
441
  * Update title
437
442
  * @summary /customize-setting/customizeTitle
438
443
  */
439
- const putCustomizeSettingCustomizeTitle = (customizeTitle, options) => {
444
+ const putCustomizeTitleForCustomizeSetting = (customizeTitle, options) => {
440
445
  return customInstance({ url: `/customize-setting/customizeTitle`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: customizeTitle }, options);
441
446
  };
442
447
  /**
443
448
  * Update noscript
444
449
  * @summary /customize-setting/customize-noscript
445
450
  */
446
- const putCustomizeSettingCustomizeNoscript = (customizeNoscript, options) => {
451
+ const putCustomizeNoscriptForCustomizeSetting = (customizeNoscript, options) => {
447
452
  return customInstance({ url: `/customize-setting/customize-noscript`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: customizeNoscript }, options);
448
453
  };
449
454
  /**
450
455
  * Update customize css
451
456
  * @summary /customize-setting/customize-css
452
457
  */
453
- const putCustomizeSettingCustomizeCss = (customizeCss, options) => {
458
+ const putCustomizeCssForCustomizeSetting = (customizeCss, options) => {
454
459
  return customInstance({ url: `/customize-setting/customize-css`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: customizeCss }, options);
455
460
  };
456
461
  /**
457
462
  * Update customize script
458
463
  * @summary /customize-setting/customize-script
459
464
  */
460
- const putCustomizeSettingCustomizeScript = (customizeScript, options) => {
465
+ const putCustomizeScriptForCustomizeSetting = (customizeScript, options) => {
461
466
  return customInstance({ url: `/customize-setting/customize-script`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: customizeScript }, options);
462
467
  };
463
468
  /**
464
469
  * Update customize logo
465
470
  * @summary /customize-setting/customize-logo
466
471
  */
467
- const putCustomizeSettingCustomizeLogo = (customizeLogo, options) => {
472
+ const putCustomizeLogoForCustomizeSetting = (customizeLogo, options) => {
468
473
  return customInstance({ url: `/customize-setting/customize-logo`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: customizeLogo }, options);
469
474
  };
470
475
  /**
471
476
  * Upload brand logo
472
477
  * @summary /customize-setting/upload-brand-logo
473
478
  */
474
- const putCustomizeSettingUploadBrandLogo = (putCustomizeSettingUploadBrandLogoBody, options) => {
479
+ const putUploadBrandLogoForCustomizeSetting = (putUploadBrandLogoForCustomizeSettingBody, options) => {
475
480
  const formData = new FormData();
476
- if (putCustomizeSettingUploadBrandLogoBody.file !== undefined) {
477
- formData.append(`file`, putCustomizeSettingUploadBrandLogoBody.file);
481
+ if (putUploadBrandLogoForCustomizeSettingBody.file !== undefined) {
482
+ formData.append(`file`, putUploadBrandLogoForCustomizeSettingBody.file);
478
483
  }
479
484
  return customInstance({ url: `/customize-setting/upload-brand-logo`, method: 'PUT', headers: { 'Content-Type': 'multipart/form-data' }, data: formData }, options);
480
485
  };
@@ -482,14 +487,14 @@ export const getGrowirestapiv3 = () => {
482
487
  * Delete brand logo
483
488
  * @summary /customize-setting/delete-brand-logo
484
489
  */
485
- const deleteCustomizeSettingDeleteBrandLogo = (options) => {
490
+ const deleteDeleteBrandLogoForCustomizeSetting = (options) => {
486
491
  return customInstance({ url: `/customize-setting/delete-brand-logo`, method: 'DELETE' }, options);
487
492
  };
488
493
  /**
489
494
  * get properties of stored zip files for export
490
495
  * @summary /export/status
491
496
  */
492
- const getExportStatus = (options) => {
497
+ const getStatusForExport = (options) => {
493
498
  return customInstance({ url: `/export/status`, method: 'GET' }, options);
494
499
  };
495
500
  /**
@@ -503,7 +508,7 @@ export const getGrowirestapiv3 = () => {
503
508
  * delete the file
504
509
  * @summary /export/{fileName}
505
510
  */
506
- const deleteExportFileName = (fileName, options) => {
511
+ const deleteExportByFileName = (fileName, options) => {
507
512
  return customInstance({ url: `/export/${fileName}`, method: 'DELETE' }, options);
508
513
  };
509
514
  /**
@@ -521,7 +526,7 @@ export const getGrowirestapiv3 = () => {
521
526
  /**
522
527
  * @summary /g2g-transfer/files
523
528
  */
524
- const getG2gTransferFiles = (options) => {
529
+ const getFilesForG2gTransfer = (options) => {
525
530
  return customInstance({ url: `/g2g-transfer/files`, method: 'GET' }, options);
526
531
  };
527
532
  /**
@@ -549,33 +554,33 @@ export const getGrowirestapiv3 = () => {
549
554
  /**
550
555
  * @summary /g2g-transfer/attachment
551
556
  */
552
- const postG2gTransferAttachment = (postG2gTransferAttachmentBody, options) => {
557
+ const postAttachmentForG2gTransfer = (postAttachmentForG2gTransferBody, options) => {
553
558
  const formData = new FormData();
554
- if (postG2gTransferAttachmentBody.file !== undefined) {
555
- formData.append(`file`, postG2gTransferAttachmentBody.file);
559
+ if (postAttachmentForG2gTransferBody.file !== undefined) {
560
+ formData.append(`file`, postAttachmentForG2gTransferBody.file);
556
561
  }
557
- if (postG2gTransferAttachmentBody.attachmentMetadata !== undefined) {
558
- formData.append(`attachmentMetadata`, JSON.stringify(postG2gTransferAttachmentBody.attachmentMetadata));
562
+ if (postAttachmentForG2gTransferBody.attachmentMetadata !== undefined) {
563
+ formData.append(`attachmentMetadata`, JSON.stringify(postAttachmentForG2gTransferBody.attachmentMetadata));
559
564
  }
560
565
  return customInstance({ url: `/g2g-transfer/attachment`, method: 'POST', headers: { 'Content-Type': 'multipart/form-data' }, data: formData }, options);
561
566
  };
562
567
  /**
563
568
  * @summary /g2g-transfer/growi-info
564
569
  */
565
- const getG2gTransferGrowiInfo = (options) => {
570
+ const getGrowiInfoForG2gTransfer = (options) => {
566
571
  return customInstance({ url: `/g2g-transfer/growi-info`, method: 'GET' }, options);
567
572
  };
568
573
  /**
569
574
  * @summary /g2g-transfer/generate-key
570
575
  */
571
- const postG2gTransferGenerateKey = (postG2gTransferGenerateKeyBody, options) => {
572
- return customInstance({ url: `/g2g-transfer/generate-key`, method: 'POST', headers: { 'Content-Type': 'application/json' }, data: postG2gTransferGenerateKeyBody }, options);
576
+ const postGenerateKeyForG2gTransfer = (postGenerateKeyForG2gTransferBody, options) => {
577
+ return customInstance({ url: `/g2g-transfer/generate-key`, method: 'POST', headers: { 'Content-Type': 'application/json' }, data: postGenerateKeyForG2gTransferBody }, options);
573
578
  };
574
579
  /**
575
580
  * @summary /g2g-transfer/transfer
576
581
  */
577
- const postG2gTransferTransfer = (postG2gTransferTransferBody, options) => {
578
- return customInstance({ url: `/g2g-transfer/transfer`, method: 'POST', headers: { 'Content-Type': 'application/json' }, data: postG2gTransferTransferBody }, options);
582
+ const postTransferForG2gTransfer = (postTransferForG2gTransferBody, options) => {
583
+ return customInstance({ url: `/g2g-transfer/transfer`, method: 'POST', headers: { 'Content-Type': 'application/json' }, data: postTransferForG2gTransferBody }, options);
579
584
  };
580
585
  /**
581
586
  * Check whether the server is healthy or not
@@ -602,17 +607,17 @@ export const getGrowirestapiv3 = () => {
602
607
  * Get properties of stored zip files for import
603
608
  * @summary /import/status
604
609
  */
605
- const getImportStatus = (options) => {
610
+ const getStatusForImport = (options) => {
606
611
  return customInstance({ url: `/import/status`, method: 'GET' }, options);
607
612
  };
608
613
  /**
609
614
  * upload a zip file
610
615
  * @summary /import/upload
611
616
  */
612
- const postImportUpload = (postImportUploadBody, options) => {
617
+ const postUploadForImport = (postUploadForImportBody, options) => {
613
618
  const formData = new FormData();
614
- if (postImportUploadBody.file !== undefined) {
615
- formData.append(`file`, postImportUploadBody.file);
619
+ if (postUploadForImportBody.file !== undefined) {
620
+ formData.append(`file`, postUploadForImportBody.file);
616
621
  }
617
622
  return customInstance({ url: `/import/upload`, method: 'POST', headers: { 'Content-Type': 'multipart/form-data' }, data: formData }, options);
618
623
  };
@@ -620,35 +625,35 @@ export const getGrowirestapiv3 = () => {
620
625
  * Delete all zip files
621
626
  * @summary /import/all
622
627
  */
623
- const deleteImportAll = (options) => {
628
+ const deleteAllForImport = (options) => {
624
629
  return customInstance({ url: `/import/all`, method: 'DELETE' }, options);
625
630
  };
626
631
  /**
627
632
  * Get the list of in-app notifications
628
633
  * @summary /in-app-notification/list
629
634
  */
630
- const getInAppNotificationList = (params, options) => {
635
+ const getListForInAppNotification = (params, options) => {
631
636
  return customInstance({ url: `/in-app-notification/list`, method: 'GET', params }, options);
632
637
  };
633
638
  /**
634
639
  * Get the status of in-app notifications
635
640
  * @summary /in-app-notification/status
636
641
  */
637
- const getInAppNotificationStatus = (options) => {
642
+ const getStatusForInAppNotification = (options) => {
638
643
  return customInstance({ url: `/in-app-notification/status`, method: 'GET' }, options);
639
644
  };
640
645
  /**
641
646
  * Open the in-app notification
642
647
  * @summary /in-app-notification/open
643
648
  */
644
- const postInAppNotificationOpen = (postInAppNotificationOpenBody, options) => {
645
- return customInstance({ url: `/in-app-notification/open`, method: 'POST', headers: { 'Content-Type': 'application/json' }, data: postInAppNotificationOpenBody }, options);
649
+ const postOpenForInAppNotification = (postOpenForInAppNotificationBody, options) => {
650
+ return customInstance({ url: `/in-app-notification/open`, method: 'POST', headers: { 'Content-Type': 'application/json' }, data: postOpenForInAppNotificationBody }, options);
646
651
  };
647
652
  /**
648
653
  * Open all in-app notifications
649
654
  * @summary /in-app-notification/all-statuses-open
650
655
  */
651
- const putInAppNotificationAllStatusesOpen = (options) => {
656
+ const putAllStatusesOpenForInAppNotification = (options) => {
652
657
  return customInstance({ url: `/in-app-notification/all-statuses-open`, method: 'PUT' }, options);
653
658
  };
654
659
  /**
@@ -681,27 +686,27 @@ export const getGrowirestapiv3 = () => {
681
686
  /**
682
687
  * @summary Update lineBreak setting
683
688
  */
684
- const putMarkdownSettingLineBreak = (lineBreakParams, options) => {
689
+ const putLineBreakForMarkdownSetting = (lineBreakParams, options) => {
685
690
  return customInstance({ url: `/markdown-setting/lineBreak`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: lineBreakParams }, options);
686
691
  };
687
692
  /**
688
693
  * @summary Update indent setting
689
694
  */
690
- const putMarkdownSettingIndent = (indentParams, options) => {
695
+ const putIndentForMarkdownSetting = (indentParams, options) => {
691
696
  return customInstance({ url: `/markdown-setting/indent`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: indentParams }, options);
692
697
  };
693
698
  /**
694
699
  * Update xss
695
700
  * @summary Update XSS setting
696
701
  */
697
- const putMarkdownSettingXss = (xssParams, options) => {
702
+ const putXssForMarkdownSetting = (xssParams, options) => {
698
703
  return customInstance({ url: `/markdown-setting/xss`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: xssParams }, options);
699
704
  };
700
705
  /**
701
706
  * get mongodb collections names
702
707
  * @summary /mongo/collections
703
708
  */
704
- const getMongoCollections = (options) => {
709
+ const getCollectionsForMongo = (options) => {
705
710
  return customInstance({ url: `/mongo/collections`, method: 'GET' }, options);
706
711
  };
707
712
  /**
@@ -713,25 +718,25 @@ export const getGrowirestapiv3 = () => {
713
718
  /**
714
719
  * add user notification setting
715
720
  */
716
- const postNotificationSettingUserNotification = (userNotificationParams, options) => {
721
+ const postUserNotificationForNotificationSetting = (userNotificationParams, options) => {
717
722
  return customInstance({ url: `/notification-setting/user-notification`, method: 'POST', headers: { 'Content-Type': 'application/json' }, data: userNotificationParams }, options);
718
723
  };
719
724
  /**
720
725
  * delete user trigger notification pattern
721
726
  */
722
- const deleteNotificationSettingUserNotificationId = (id, options) => {
727
+ const deleteUserNotificationByIdForNotificationSetting = (id, options) => {
723
728
  return customInstance({ url: `/notification-setting/user-notification/${id}`, method: 'DELETE' }, options);
724
729
  };
725
730
  /**
726
731
  * get global notification setting
727
732
  */
728
- const getNotificationSettingGlobalNotificationId = (id, options) => {
733
+ const getGlobalNotificationByIdForNotificationSetting = (id, options) => {
729
734
  return customInstance({ url: `/notification-setting/global-notification/${id}`, method: 'GET' }, options);
730
735
  };
731
736
  /**
732
737
  * update global notification
733
738
  */
734
- const putNotificationSettingGlobalNotificationId = (id, globalNotificationParams, options) => {
739
+ const putGlobalNotificationByIdForNotificationSetting = (id, globalNotificationParams, options) => {
735
740
  return customInstance({
736
741
  url: `/notification-setting/global-notification/${id}`,
737
742
  method: 'PUT',
@@ -742,58 +747,58 @@ export const getGrowirestapiv3 = () => {
742
747
  /**
743
748
  * delete global notification pattern
744
749
  */
745
- const deleteNotificationSettingGlobalNotificationId = (id, options) => {
750
+ const deleteGlobalNotificationByIdForNotificationSetting = (id, options) => {
746
751
  return customInstance({ url: `/notification-setting/global-notification/${id}`, method: 'DELETE' }, options);
747
752
  };
748
753
  /**
749
754
  * add global notification
750
755
  */
751
- const postNotificationSettingGlobalNotification = (globalNotificationParams, options) => {
756
+ const postGlobalNotificationForNotificationSetting = (globalNotificationParams, options) => {
752
757
  return customInstance({ url: `/notification-setting/global-notification`, method: 'POST', headers: { 'Content-Type': 'application/json' }, data: globalNotificationParams }, options);
753
758
  };
754
759
  /**
755
760
  * Update settings for notify for page grant
756
761
  */
757
- const putNotificationSettingNotifyForPageGrant = (notifyForPageGrant, options) => {
762
+ const putNotifyForPageGrantForNotificationSetting = (notifyForPageGrant, options) => {
758
763
  return customInstance({ url: `/notification-setting/notify-for-page-grant`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: notifyForPageGrant }, options);
759
764
  };
760
765
  /**
761
766
  * toggle enabled global notification
762
767
  */
763
- const putNotificationSettingGlobalNotificationIdEnabled = (id, putNotificationSettingGlobalNotificationIdEnabledBody, options) => {
768
+ const putEnabledByIdForNotificationSettingGlobalNotification = (id, putEnabledByIdForNotificationSettingGlobalNotificationBody, options) => {
764
769
  return customInstance({
765
770
  url: `/notification-setting/global-notification/${id}/enabled`,
766
771
  method: 'PUT',
767
772
  headers: { 'Content-Type': 'application/json' },
768
- data: putNotificationSettingGlobalNotificationIdEnabledBody,
773
+ data: putEnabledByIdForNotificationSettingGlobalNotificationBody,
769
774
  }, options);
770
775
  };
771
776
  /**
772
777
  * Get the root page
773
778
  * @summary /page-listing/root
774
779
  */
775
- const getPageListingRoot = (options) => {
780
+ const getRootForPageListing = (options) => {
776
781
  return customInstance({ url: `/page-listing/root`, method: 'GET' }, options);
777
782
  };
778
783
  /**
779
784
  * Get the ancestors and children of a page
780
785
  * @summary /page-listing/ancestors-children
781
786
  */
782
- const getPageListingAncestorsChildren = (params, options) => {
787
+ const getAncestorsChildrenForPageListing = (params, options) => {
783
788
  return customInstance({ url: `/page-listing/ancestors-children`, method: 'GET', params }, options);
784
789
  };
785
790
  /**
786
791
  * Get the children of a page
787
792
  * @summary /page-listing/children
788
793
  */
789
- const getPageListingChildren = (params, options) => {
794
+ const getChildrenForPageListing = (params, options) => {
790
795
  return customInstance({ url: `/page-listing/children`, method: 'GET', params }, options);
791
796
  };
792
797
  /**
793
798
  * Get the information of a page
794
799
  * @summary /page-listing/info
795
800
  */
796
- const getPageListingInfo = (params, options) => {
801
+ const getInfoForPageListing = (params, options) => {
797
802
  return customInstance({ url: `/page-listing/info`, method: 'GET', params }, options);
798
803
  };
799
804
  /**
@@ -820,175 +825,175 @@ export const getGrowirestapiv3 = () => {
820
825
  * Check if a page exists at the specified path
821
826
  * @summary Check if page exists
822
827
  */
823
- const getPageExist = (params, options) => {
828
+ const getExistForPage = (params, options) => {
824
829
  return customInstance({ url: `/page/exist`, method: 'GET', params }, options);
825
830
  };
826
831
  /**
827
832
  * Update liked status
828
833
  * @summary Get page likes
829
834
  */
830
- const putPageLikes = (likeParams, options) => {
835
+ const putLikesForPage = (likeParams, options) => {
831
836
  return customInstance({ url: `/page/likes`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: likeParams }, options);
832
837
  };
833
838
  /**
834
839
  * Retrieve current page info
835
840
  * @summary Get page info
836
841
  */
837
- const getPageInfo = (pageParams, options) => {
842
+ const getInfoForPage = (pageParams, options) => {
838
843
  return customInstance({ url: `/page/info`, method: 'GET', headers: { 'Content-Type': 'application/json' } }, options);
839
844
  };
840
845
  /**
841
846
  * Retrieve current page's grant data
842
847
  * @summary Get page grant data
843
848
  */
844
- const getPageGrantData = (params, options) => {
849
+ const getGrantDataForPage = (params, options) => {
845
850
  return customInstance({ url: `/page/grant-data`, method: 'GET', params }, options);
846
851
  };
847
852
  /**
848
853
  * Check if non-user related groups are granted access to a specific page or its closest ancestor
849
854
  * @summary Check if non-user related groups are granted page access
850
855
  */
851
- const getPageNonUserRelatedGroupsGranted = (params, options) => {
856
+ const getNonUserRelatedGroupsGrantedForPage = (params, options) => {
852
857
  return customInstance({ url: `/page/non-user-related-groups-granted`, method: 'GET', params }, options);
853
858
  };
854
859
  /**
855
860
  * Retrieve applicable grant data for a specific page
856
861
  * @summary Get applicable grant data
857
862
  */
858
- const getPageApplicableGrant = (params, options) => {
863
+ const getApplicableGrantForPage = (params, options) => {
859
864
  return customInstance({ url: `/page/applicable-grant`, method: 'GET', params }, options);
860
865
  };
861
866
  /**
862
867
  * Update the grant of a specific page
863
868
  * @summary Update page grant
864
869
  */
865
- const putPageIdGrant = (pageId, putPageIdGrantBody, options) => {
866
- return customInstance({ url: `/${pageId}/grant`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: putPageIdGrantBody }, options);
870
+ const putGrantByPageId = (pageId, putGrantByPageIdBody, options) => {
871
+ return customInstance({ url: `/${pageId}/grant`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: putGrantByPageIdBody }, options);
867
872
  };
868
873
  /**
869
874
  * return page's markdown
870
875
  */
871
- const getPageExportPageId = (pageId, options) => {
876
+ const getExportByPageIdForPage = (pageId, options) => {
872
877
  return customInstance({ url: `/page/export/${pageId}`, method: 'GET' }, options);
873
878
  };
874
879
  /**
875
880
  * Get already exist paths
876
881
  * @summary Get already exist paths
877
882
  */
878
- const getPageExistPaths = (params, options) => {
883
+ const getExistPathsForPage = (params, options) => {
879
884
  return customInstance({ url: `/page/exist-paths`, method: 'GET', params }, options);
880
885
  };
881
886
  /**
882
887
  * Update subscription status
883
888
  * @summary Update subscription status
884
889
  */
885
- const putPageSubscribe = (putPageSubscribeBody, options) => {
886
- return customInstance({ url: `/page/subscribe`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: putPageSubscribeBody }, options);
890
+ const putSubscribeForPage = (putSubscribeForPageBody, options) => {
891
+ return customInstance({ url: `/page/subscribe`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: putSubscribeForPageBody }, options);
887
892
  };
888
893
  /**
889
894
  * Update the content width setting for a specific page
890
895
  * @summary Update content width
891
896
  */
892
- const putPageIdContentWidth = (pageId, putPageIdContentWidthBody, options) => {
893
- return customInstance({ url: `/${pageId}/content-width`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: putPageIdContentWidthBody }, options);
897
+ const putContentWidthByPageId = (pageId, putContentWidthByPageIdBody, options) => {
898
+ return customInstance({ url: `/${pageId}/content-width`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: putContentWidthByPageIdBody }, options);
894
899
  };
895
900
  /**
896
901
  * Publish a specific page
897
902
  * @summary Publish page
898
903
  */
899
- const putPageIdPublish = (pageId, options) => {
904
+ const putPublishByPageId = (pageId, options) => {
900
905
  return customInstance({ url: `/${pageId}/publish`, method: 'PUT' }, options);
901
906
  };
902
907
  /**
903
908
  * Unpublish a specific page
904
909
  * @summary Unpublish page
905
910
  */
906
- const putPageIdUnpublish = (pageId, options) => {
911
+ const putUnpublishByPageId = (pageId, options) => {
907
912
  return customInstance({ url: `/${pageId}/unpublish`, method: 'PUT' }, options);
908
913
  };
909
914
  /**
910
915
  * Retrieve Yjs data for a specific page
911
916
  * @summary Get Yjs data
912
917
  */
913
- const getPageIdYjsData = (pageId, options) => {
918
+ const getYjsDataByPageId = (pageId, options) => {
914
919
  return customInstance({ url: `/${pageId}/yjs-data`, method: 'GET' }, options);
915
920
  };
916
921
  /**
917
922
  * Sync the latest revision body to the Yjs draft for a specific page
918
923
  * @summary Sync latest revision body to Yjs draft
919
924
  */
920
- const putPageIdSyncLatestRevisionBodyToYjsDraft = (pageId, putPageIdSyncLatestRevisionBodyToYjsDraftBody, options) => {
925
+ const putSyncLatestRevisionBodyToYjsDraftByPageId = (pageId, putSyncLatestRevisionBodyToYjsDraftByPageIdBody, options) => {
921
926
  return customInstance({
922
927
  url: `/${pageId}/sync-latest-revision-body-to-yjs-draft`,
923
928
  method: 'PUT',
924
929
  headers: { 'Content-Type': 'application/json' },
925
- data: putPageIdSyncLatestRevisionBodyToYjsDraftBody,
930
+ data: putSyncLatestRevisionBodyToYjsDraftByPageIdBody,
926
931
  }, options);
927
932
  };
928
933
  /**
929
934
  * Get recently updated pages
930
935
  */
931
- const getPagesRecent = (params, options) => {
936
+ const getRecentForPages = (params, options) => {
932
937
  return customInstance({ url: `/pages/recent`, method: 'GET', params }, options);
933
938
  };
934
939
  /**
935
940
  * Rename page
936
941
  */
937
- const postPagesRename = (postPagesRenameBody, options) => {
938
- return customInstance({ url: `/pages/rename`, method: 'POST', headers: { 'Content-Type': 'application/json' }, data: postPagesRenameBody }, options);
942
+ const postRenameForPages = (postRenameForPagesBody, options) => {
943
+ return customInstance({ url: `/pages/rename`, method: 'POST', headers: { 'Content-Type': 'application/json' }, data: postRenameForPagesBody }, options);
939
944
  };
940
945
  /**
941
946
  * Resume rename page operation
942
947
  */
943
- const postPagesResumeRename = (postPagesResumeRenameBody, options) => {
944
- return customInstance({ url: `/pages/resume-rename`, method: 'POST', headers: { 'Content-Type': 'application/json' }, data: postPagesResumeRenameBody }, options);
948
+ const postResumeRenameForPages = (postResumeRenameForPagesBody, options) => {
949
+ return customInstance({ url: `/pages/resume-rename`, method: 'POST', headers: { 'Content-Type': 'application/json' }, data: postResumeRenameForPagesBody }, options);
945
950
  };
946
951
  /**
947
952
  * empty trash
948
953
  */
949
- const deletePagesEmptyTrash = (options) => {
954
+ const deleteEmptyTrashForPages = (options) => {
950
955
  return customInstance({ url: `/pages/empty-trash`, method: 'DELETE' }, options);
951
956
  };
952
957
  /**
953
958
  * Get list of pages
954
959
  */
955
- const getPagesList = (params, options) => {
960
+ const getListForPages = (params, options) => {
956
961
  return customInstance({ url: `/pages/list`, method: 'GET', params }, options);
957
962
  };
958
963
  /**
959
964
  * Duplicate page
960
965
  */
961
- const postPagesDuplicate = (postPagesDuplicateBody, options) => {
962
- return customInstance({ url: `/pages/duplicate`, method: 'POST', headers: { 'Content-Type': 'application/json' }, data: postPagesDuplicateBody }, options);
966
+ const postDuplicateForPages = (postDuplicateForPagesBody, options) => {
967
+ return customInstance({ url: `/pages/duplicate`, method: 'POST', headers: { 'Content-Type': 'application/json' }, data: postDuplicateForPagesBody }, options);
963
968
  };
964
969
  /**
965
970
  * Get subordinated pages
966
971
  */
967
- const getPagesSubordinatedList = (params, options) => {
972
+ const getSubordinatedListForPages = (params, options) => {
968
973
  return customInstance({ url: `/pages/subordinated-list`, method: 'GET', params }, options);
969
974
  };
970
975
  /**
971
976
  * Delete pages
972
977
  */
973
- const postPagesDelete = (postPagesDeleteBody, options) => {
974
- return customInstance({ url: `/pages/delete`, method: 'POST', headers: { 'Content-Type': 'application/json' }, data: postPagesDeleteBody }, options);
978
+ const postDeleteForPages = (postDeleteForPagesBody, options) => {
979
+ return customInstance({ url: `/pages/delete`, method: 'POST', headers: { 'Content-Type': 'application/json' }, data: postDeleteForPagesBody }, options);
975
980
  };
976
981
  /**
977
982
  * Convert pages by path
978
983
  */
979
- const postPagesConvertPagesByPath = (postPagesConvertPagesByPathBody, options) => {
980
- return customInstance({ url: `/pages/convert-pages-by-path`, method: 'POST', headers: { 'Content-Type': 'application/json' }, data: postPagesConvertPagesByPathBody }, options);
984
+ const postConvertPagesByPathForPages = (postConvertPagesByPathForPagesBody, options) => {
985
+ return customInstance({ url: `/pages/convert-pages-by-path`, method: 'POST', headers: { 'Content-Type': 'application/json' }, data: postConvertPagesByPathForPagesBody }, options);
981
986
  };
982
987
  /**
983
988
  * Migrate legacy pages
984
989
  */
985
- const postPagesLegacyPagesMigration = (postPagesLegacyPagesMigrationBody, options) => {
986
- return customInstance({ url: `/pages/legacy-pages-migration`, method: 'POST', headers: { 'Content-Type': 'application/json' }, data: postPagesLegacyPagesMigrationBody }, options);
990
+ const postLegacyPagesMigrationForPages = (postLegacyPagesMigrationForPagesBody, options) => {
991
+ return customInstance({ url: `/pages/legacy-pages-migration`, method: 'POST', headers: { 'Content-Type': 'application/json' }, data: postLegacyPagesMigrationForPagesBody }, options);
987
992
  };
988
993
  /**
989
994
  * Get V5 migration status
990
995
  */
991
- const getPagesV5MigrationStatus = (options) => {
996
+ const getV5MigrationStatusForPages = (options) => {
992
997
  return customInstance({ url: `/pages/v5-migration-status`, method: 'GET' }, options);
993
998
  };
994
999
  /**
@@ -1009,127 +1014,132 @@ export const getGrowirestapiv3 = () => {
1009
1014
  * Get whether a password has been set
1010
1015
  * @summary /personal-setting
1011
1016
  */
1012
- const getPersonalSettingIsPasswordSet = (options) => {
1017
+ const getIsPasswordSetForPersonalSetting = (options) => {
1013
1018
  return customInstance({ url: `/personal-setting/is-password-set`, method: 'GET' }, options);
1014
1019
  };
1015
1020
  /**
1016
1021
  * Update user image type
1017
1022
  * @summary /personal-setting/image-type
1018
1023
  */
1019
- const putPersonalSettingImageType = (putPersonalSettingImageTypeBody, options) => {
1020
- return customInstance({ url: `/personal-setting/image-type`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: putPersonalSettingImageTypeBody }, options);
1024
+ const putImageTypeForPersonalSetting = (putImageTypeForPersonalSettingBody, options) => {
1025
+ return customInstance({ url: `/personal-setting/image-type`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: putImageTypeForPersonalSettingBody }, options);
1021
1026
  };
1022
1027
  /**
1023
1028
  * Get external accounts that linked current user
1024
1029
  * @summary /personal-setting/external-accounts
1025
1030
  */
1026
- const getPersonalSettingExternalAccounts = (options) => {
1031
+ const getExternalAccountsForPersonalSetting = (options) => {
1027
1032
  return customInstance({ url: `/personal-setting/external-accounts`, method: 'GET' }, options);
1028
1033
  };
1029
1034
  /**
1030
1035
  * Update user password
1031
1036
  * @summary /personal-setting/password
1032
1037
  */
1033
- const putPersonalSettingPassword = (putPersonalSettingPasswordBody, options) => {
1034
- return customInstance({ url: `/personal-setting/password`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: putPersonalSettingPasswordBody }, options);
1038
+ const putPasswordForPersonalSetting = (putPasswordForPersonalSettingBody, options) => {
1039
+ return customInstance({ url: `/personal-setting/password`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: putPasswordForPersonalSettingBody }, options);
1035
1040
  };
1036
1041
  /**
1037
1042
  * Update user api token
1038
1043
  * @summary /personal-setting/api-token
1039
1044
  */
1040
- const putPersonalSettingApiToken = (options) => {
1045
+ const putApiTokenForPersonalSetting = (options) => {
1041
1046
  return customInstance({ url: `/personal-setting/api-token`, method: 'PUT' }, options);
1042
1047
  };
1043
1048
  /**
1044
1049
  * associate Ldap account
1045
1050
  * @summary /personal-setting/associate-ldap
1046
1051
  */
1047
- const putPersonalSettingAssociateLdap = (putPersonalSettingAssociateLdapBody, options) => {
1048
- return customInstance({ url: `/personal-setting/associate-ldap`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: putPersonalSettingAssociateLdapBody }, options);
1052
+ const putAssociateLdapForPersonalSetting = (putAssociateLdapForPersonalSettingBody, options) => {
1053
+ return customInstance({ url: `/personal-setting/associate-ldap`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: putAssociateLdapForPersonalSettingBody }, options);
1049
1054
  };
1050
1055
  /**
1051
1056
  * disassociate Ldap account
1052
1057
  * @summary /personal-setting/disassociate-ldap
1053
1058
  */
1054
- const putPersonalSettingDisassociateLdap = (disassociateUser, options) => {
1059
+ const putDisassociateLdapForPersonalSetting = (disassociateUser, options) => {
1055
1060
  return customInstance({ url: `/personal-setting/disassociate-ldap`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: disassociateUser }, options);
1056
1061
  };
1057
1062
  /**
1058
1063
  * Put editor preferences
1059
1064
  * @summary /personal-setting/editor-settings
1060
1065
  */
1061
- const putPersonalSettingEditorSettings = (putPersonalSettingEditorSettingsBody, options) => {
1062
- return customInstance({ url: `/personal-setting/editor-settings`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: putPersonalSettingEditorSettingsBody }, options);
1066
+ const putEditorSettingsForPersonalSetting = (putEditorSettingsForPersonalSettingBody, options) => {
1067
+ return customInstance({
1068
+ url: `/personal-setting/editor-settings`,
1069
+ method: 'PUT',
1070
+ headers: { 'Content-Type': 'application/json' },
1071
+ data: putEditorSettingsForPersonalSettingBody,
1072
+ }, options);
1063
1073
  };
1064
1074
  /**
1065
1075
  * Get editor preferences
1066
1076
  * @summary /personal-setting/editor-settings
1067
1077
  */
1068
- const getPersonalSettingEditorSettings = (options) => {
1078
+ const getEditorSettingsForPersonalSetting = (options) => {
1069
1079
  return customInstance({ url: `/personal-setting/editor-settings`, method: 'GET' }, options);
1070
1080
  };
1071
1081
  /**
1072
1082
  * Put InAppNotificationSettings
1073
1083
  * @summary /personal-setting/in-app-notification-settings
1074
1084
  */
1075
- const putPersonalSettingInAppNotificationSettings = (putPersonalSettingInAppNotificationSettingsBody, options) => {
1085
+ const putInAppNotificationSettingsForPersonalSetting = (putInAppNotificationSettingsForPersonalSettingBody, options) => {
1076
1086
  return customInstance({
1077
1087
  url: `/personal-setting/in-app-notification-settings`,
1078
1088
  method: 'PUT',
1079
1089
  headers: { 'Content-Type': 'application/json' },
1080
- data: putPersonalSettingInAppNotificationSettingsBody,
1090
+ data: putInAppNotificationSettingsForPersonalSettingBody,
1081
1091
  }, options);
1082
1092
  };
1083
1093
  /**
1084
1094
  * Get InAppNotificationSettings
1085
1095
  * @summary personal-setting/in-app-notification-settings
1086
1096
  */
1087
- const getPersonalSettingInAppNotificationSettings = (options) => {
1097
+ const getInAppNotificationSettingsForPersonalSetting = (options) => {
1088
1098
  return customInstance({ url: `/personal-setting/in-app-notification-settings`, method: 'GET' }, options);
1089
1099
  };
1090
1100
  /**
1091
1101
  * Update the questionnaire settings for the current user
1092
1102
  * @summary /personal-setting/questionnaire-settings
1093
1103
  */
1094
- const putPersonalSettingQuestionnaireSettings = (putPersonalSettingQuestionnaireSettingsBody, options) => {
1104
+ const putQuestionnaireSettingsForPersonalSetting = (putQuestionnaireSettingsForPersonalSettingBody, options) => {
1095
1105
  return customInstance({
1096
1106
  url: `/personal-setting/questionnaire-settings`,
1097
1107
  method: 'PUT',
1098
1108
  headers: { 'Content-Type': 'application/json' },
1099
- data: putPersonalSettingQuestionnaireSettingsBody,
1109
+ data: putQuestionnaireSettingsForPersonalSettingBody,
1100
1110
  }, options);
1101
1111
  };
1102
1112
  /**
1103
1113
  * Get revisions by page id
1104
1114
  */
1105
- const getRevisionsList = (params, options) => {
1115
+ const getListForRevisions = (params, options) => {
1106
1116
  return customInstance({ url: `/revisions/list`, method: 'GET', params }, options);
1107
1117
  };
1108
1118
  /**
1109
1119
  * Get one revision by id
1110
1120
  */
1111
- const getRevisionsId = (id, params, options) => {
1121
+ const getRevisionsById = (id, params, options) => {
1112
1122
  return customInstance({ url: `/revisions/${id}`, method: 'GET', params }, options);
1113
1123
  };
1114
1124
  /**
1115
1125
  * Get current status of indices
1116
1126
  * @summary /search/indices
1117
1127
  */
1118
- const getSearchIndices = (options) => {
1128
+ const getIndicesForSearch = (options) => {
1119
1129
  return customInstance({ url: `/search/indices`, method: 'GET' }, options);
1120
1130
  };
1121
1131
  /**
1122
1132
  * Operate indices
1123
1133
  * @summary /search/indices
1124
1134
  */
1125
- const putSearchIndices = (putSearchIndicesBody, options) => {
1126
- return customInstance({ url: `/search/indices`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: putSearchIndicesBody }, options);
1135
+ const putIndicesForSearch = (putIndicesForSearchBody, options) => {
1136
+ return customInstance({ url: `/search/indices`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: putIndicesForSearchBody }, options);
1127
1137
  };
1128
1138
  /**
1129
1139
  * Reconnect to Elasticsearch
1130
1140
  * @summary /search/connection
1131
1141
  */
1132
- const postSearchConnection = (options) => {
1142
+ const postConnectionForSearch = (options) => {
1133
1143
  return customInstance({ url: `/search/connection`, method: 'POST' }, options);
1134
1144
  };
1135
1145
  /**
@@ -1141,89 +1151,89 @@ export const getGrowirestapiv3 = () => {
1141
1151
  /**
1142
1152
  * Update authentication isEnabled
1143
1153
  */
1144
- const putSecuritySettingAuthenticationEnabled = (putSecuritySettingAuthenticationEnabledBody, options) => {
1154
+ const putEnabledForSecuritySettingAuthentication = (putEnabledForSecuritySettingAuthenticationBody, options) => {
1145
1155
  return customInstance({
1146
1156
  url: `/security-setting/authentication/enabled`,
1147
1157
  method: 'PUT',
1148
1158
  headers: { 'Content-Type': 'application/json' },
1149
- data: putSecuritySettingAuthenticationEnabledBody,
1159
+ data: putEnabledForSecuritySettingAuthenticationBody,
1150
1160
  }, options);
1151
1161
  };
1152
1162
  /**
1153
1163
  * Get setup strategies for passport
1154
1164
  * @summary /security-setting/authentication
1155
1165
  */
1156
- const getSecuritySettingAuthentication = (options) => {
1166
+ const getAuthenticationForSecuritySetting = (options) => {
1157
1167
  return customInstance({ url: `/security-setting/authentication`, method: 'GET' }, options);
1158
1168
  };
1159
1169
  /**
1160
1170
  * Update GeneralSetting
1161
1171
  * @summary /security-setting/general-setting
1162
1172
  */
1163
- const putSecuritySettingGeneralSetting = (generalSetting, options) => {
1173
+ const putGeneralSettingForSecuritySetting = (generalSetting, options) => {
1164
1174
  return customInstance({ url: `/security-setting/general-setting`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: generalSetting }, options);
1165
1175
  };
1166
1176
  /**
1167
1177
  * Update ShareLink Setting
1168
1178
  * @summary /security-setting/share-link-setting
1169
1179
  */
1170
- const putSecuritySettingShareLinkSetting = (shareLinkSetting, options) => {
1180
+ const putShareLinkSettingForSecuritySetting = (shareLinkSetting, options) => {
1171
1181
  return customInstance({ url: `/security-setting/share-link-setting`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: shareLinkSetting }, options);
1172
1182
  };
1173
1183
  /**
1174
1184
  * Get All ShareLinks at Share Link Setting
1175
1185
  * @summary /security-setting/all-share-links
1176
1186
  */
1177
- const getSecuritySettingAllShareLinks = (options) => {
1187
+ const getAllShareLinksForSecuritySetting = (options) => {
1178
1188
  return customInstance({ url: `/security-setting/all-share-links`, method: 'GET' }, options);
1179
1189
  };
1180
1190
  /**
1181
1191
  * Delete All ShareLinks at Share Link Setting
1182
1192
  * @summary /security-setting/all-share-links
1183
1193
  */
1184
- const deleteSecuritySettingAllShareLinks = (options) => {
1194
+ const deleteAllShareLinksForSecuritySetting = (options) => {
1185
1195
  return customInstance({ url: `/security-setting/all-share-links`, method: 'DELETE' }, options);
1186
1196
  };
1187
1197
  /**
1188
1198
  * Update LocalSetting
1189
1199
  * @summary /security-setting/local-setting
1190
1200
  */
1191
- const putSecuritySettingLocalSetting = (localSetting, options) => {
1201
+ const putLocalSettingForSecuritySetting = (localSetting, options) => {
1192
1202
  return customInstance({ url: `/security-setting/local-setting`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: localSetting }, options);
1193
1203
  };
1194
1204
  /**
1195
1205
  * Update LDAP setting
1196
1206
  * @summary /security-setting/ldap
1197
1207
  */
1198
- const putSecuritySettingLdap = (ldapAuthSetting, options) => {
1208
+ const putLdapForSecuritySetting = (ldapAuthSetting, options) => {
1199
1209
  return customInstance({ url: `/security-setting/ldap`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: ldapAuthSetting }, options);
1200
1210
  };
1201
1211
  /**
1202
1212
  * Update SAML setting
1203
1213
  * @summary /security-setting/saml
1204
1214
  */
1205
- const putSecuritySettingSaml = (samlAuthSetting, options) => {
1215
+ const putSamlForSecuritySetting = (samlAuthSetting, options) => {
1206
1216
  return customInstance({ url: `/security-setting/saml`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: samlAuthSetting }, options);
1207
1217
  };
1208
1218
  /**
1209
1219
  * Update OpenID Connect setting
1210
1220
  * @summary /security-setting/oidc
1211
1221
  */
1212
- const putSecuritySettingOidc = (oidcAuthSetting, options) => {
1222
+ const putOidcForSecuritySetting = (oidcAuthSetting, options) => {
1213
1223
  return customInstance({ url: `/security-setting/oidc`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: oidcAuthSetting }, options);
1214
1224
  };
1215
1225
  /**
1216
1226
  * Update google OAuth
1217
1227
  * @summary /security-setting/google-oauth
1218
1228
  */
1219
- const putSecuritySettingGoogleOauth = (googleOAuthSetting, options) => {
1229
+ const putGoogleOauthForSecuritySetting = (googleOAuthSetting, options) => {
1220
1230
  return customInstance({ url: `/security-setting/google-oauth`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: googleOAuthSetting }, options);
1221
1231
  };
1222
1232
  /**
1223
1233
  * Update github OAuth
1224
1234
  * @summary /security-setting/github-oauth
1225
1235
  */
1226
- const putSecuritySettingGithubOauth = (gitHubOAuthSetting, options) => {
1236
+ const putGithubOauthForSecuritySetting = (gitHubOAuthSetting, options) => {
1227
1237
  return customInstance({ url: `/security-setting/github-oauth`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: gitHubOAuthSetting }, options);
1228
1238
  };
1229
1239
  /**
@@ -1249,13 +1259,13 @@ export const getGrowirestapiv3 = () => {
1249
1259
  * delete all share links
1250
1260
  * @summary delete all share links
1251
1261
  */
1252
- const deleteShareLinksAll = (options) => {
1262
+ const deleteAllForShareLinks = (options) => {
1253
1263
  return customInstance({ url: `/share-links/all`, method: 'DELETE' }, options);
1254
1264
  };
1255
1265
  /**
1256
1266
  * delete one share link related one page
1257
1267
  */
1258
- const deleteShareLinksId = (id, options) => {
1268
+ const deleteShareLinksById = (id, options) => {
1259
1269
  return customInstance({ url: `/share-links/${id}`, method: 'DELETE' }, options);
1260
1270
  };
1261
1271
  /**
@@ -1281,197 +1291,202 @@ export const getGrowirestapiv3 = () => {
1281
1291
  * Put botType setting.
1282
1292
  * @summary /slack-integration/bot-type
1283
1293
  */
1284
- const putSlackIntegrationSettingsBotType = (botType, options) => {
1294
+ const putBotTypeForSlackIntegrationSettings = (botType, options) => {
1285
1295
  return customInstance({ url: `/slack-integration-settings/bot-type/`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: botType }, options);
1286
1296
  };
1287
1297
  /**
1288
1298
  * Delete botType setting.
1289
1299
  * @summary /slack-integration/bot-type
1290
1300
  */
1291
- const deleteSlackIntegrationBotType = (botType, options) => {
1301
+ const deleteBotTypeForSlackIntegration = (botType, options) => {
1292
1302
  return customInstance({ url: `/slack-integration/bot-type/`, method: 'DELETE', headers: { 'Content-Type': 'application/json' }, data: botType }, options);
1293
1303
  };
1294
1304
  /**
1295
1305
  * Update customBotWithoutProxy setting.
1296
1306
  * @summary /slack-integration-settings/without-proxy/update-settings
1297
1307
  */
1298
- const putSlackIntegrationSettingsWithoutProxyUpdateSettings = (putSlackIntegrationSettingsWithoutProxyUpdateSettingsBody, options) => {
1308
+ const putUpdateSettingsForSlackIntegrationSettingsWithoutProxy = (putUpdateSettingsForSlackIntegrationSettingsWithoutProxyBody, options) => {
1299
1309
  return customInstance({
1300
1310
  url: `/slack-integration-settings/without-proxy/update-settings/`,
1301
1311
  method: 'PUT',
1302
1312
  headers: { 'Content-Type': 'application/json' },
1303
- data: putSlackIntegrationSettingsWithoutProxyUpdateSettingsBody,
1313
+ data: putUpdateSettingsForSlackIntegrationSettingsWithoutProxyBody,
1304
1314
  }, options);
1305
1315
  };
1306
1316
  /**
1307
1317
  * Update customBotWithoutProxy permissions.
1308
1318
  * @summary /slack-integration-settings/without-proxy/update-permissions
1309
1319
  */
1310
- const putSlackIntegrationSettingsWithoutProxyUpdatePermissions = (putSlackIntegrationSettingsWithoutProxyUpdatePermissionsBody, options) => {
1320
+ const putUpdatePermissionsForSlackIntegrationSettingsWithoutProxy = (putUpdatePermissionsForSlackIntegrationSettingsWithoutProxyBody, options) => {
1311
1321
  return customInstance({
1312
1322
  url: `/slack-integration-settings/without-proxy/update-permissions/`,
1313
1323
  method: 'PUT',
1314
1324
  headers: { 'Content-Type': 'application/json' },
1315
- data: putSlackIntegrationSettingsWithoutProxyUpdatePermissionsBody,
1325
+ data: putUpdatePermissionsForSlackIntegrationSettingsWithoutProxyBody,
1316
1326
  }, options);
1317
1327
  };
1318
1328
  /**
1319
1329
  * Generate SlackAppIntegrations
1320
1330
  * @summary /slack-integration-settings/slack-app-integrations
1321
1331
  */
1322
- const postSlackIntegrationSettingsSlackAppIntegrations = (options) => {
1332
+ const postSlackAppIntegrationsForSlackIntegrationSettings = (options) => {
1323
1333
  return customInstance({ url: `/slack-integration-settings/slack-app-integrations`, method: 'POST' }, options);
1324
1334
  };
1325
1335
  /**
1326
1336
  * Delete accessTokens
1327
1337
  * @summary /slack-integration-settings/slack-app-integrations/:id
1328
1338
  */
1329
- const deleteSlackIntegrationSettingsSlackAppIntegrationsId = (id, options) => {
1339
+ const deleteSlackAppIntegrationsByIdForSlackIntegrationSettings = (id, options) => {
1330
1340
  return customInstance({ url: `/slack-integration-settings/slack-app-integrations/${id}`, method: 'DELETE' }, options);
1331
1341
  };
1332
1342
  /**
1333
1343
  * Update proxy uri
1334
1344
  * @summary /slack-integration-settings/proxy-uri
1335
1345
  */
1336
- const putSlackIntegrationSettingsProxyUri = (putSlackIntegrationSettingsProxyUriBody, options) => {
1346
+ const putProxyUriForSlackIntegrationSettings = (putProxyUriForSlackIntegrationSettingsBody, options) => {
1337
1347
  return customInstance({
1338
1348
  url: `/slack-integration-settings/proxy-uri`,
1339
1349
  method: 'PUT',
1340
1350
  headers: { 'Content-Type': 'application/json' },
1341
- data: putSlackIntegrationSettingsProxyUriBody,
1351
+ data: putProxyUriForSlackIntegrationSettingsBody,
1342
1352
  }, options);
1343
1353
  };
1344
1354
  /**
1345
1355
  * Make SlackAppTokens primary
1346
1356
  * @summary /slack-integration-settings/slack-app-integrations/:id/makeprimary
1347
1357
  */
1348
- const putSlackIntegrationSettingsSlackAppIntegrationsIdMakeprimary = (id, options) => {
1358
+ const putMakeprimaryByIdForSlackIntegrationSettingsSlackAppIntegrations = (id, options) => {
1349
1359
  return customInstance({ url: `/slack-integration-settings/slack-app-integrations/${id}/makeprimary`, method: 'PUT' }, options);
1350
1360
  };
1351
1361
  /**
1352
1362
  * Regenerate SlackAppTokens
1353
1363
  * @summary /slack-integration-settings/slack-app-integrations/:id/regenerate-tokens
1354
1364
  */
1355
- const putSlackIntegrationSettingsSlackAppIntegrationsIdRegenerateTokens = (id, options) => {
1365
+ const putRegenerateTokensByIdForSlackIntegrationSettingsSlackAppIntegrations = (id, options) => {
1356
1366
  return customInstance({ url: `/slack-integration-settings/slack-app-integrations/${id}/regenerate-tokens`, method: 'PUT' }, options);
1357
1367
  };
1358
1368
  /**
1359
1369
  * update supported commands
1360
1370
  * @summary /slack-integration-settings/slack-app-integrations/:id/permissions
1361
1371
  */
1362
- const putSlackIntegrationSettingsSlackAppIntegrationsIdPermissions = (id, putSlackIntegrationSettingsSlackAppIntegrationsIdPermissionsBody, options) => {
1372
+ const putPermissionsByIdForSlackIntegrationSettingsSlackAppIntegrations = (id, putPermissionsByIdForSlackIntegrationSettingsSlackAppIntegrationsBody, options) => {
1363
1373
  return customInstance({
1364
1374
  url: `/slack-integration-settings/slack-app-integrations/${id}/permissions`,
1365
1375
  method: 'PUT',
1366
1376
  headers: { 'Content-Type': 'application/json' },
1367
- data: putSlackIntegrationSettingsSlackAppIntegrationsIdPermissionsBody,
1377
+ data: putPermissionsByIdForSlackIntegrationSettingsSlackAppIntegrationsBody,
1368
1378
  }, options);
1369
1379
  };
1370
1380
  /**
1371
1381
  * Delete botType setting.
1372
1382
  * @summary /slack-integration-settings/slack-app-integrations/:id/relation-test
1373
1383
  */
1374
- const postSlackIntegrationSettingsSlackAppIntegrationsIdRelationTest = (id, postSlackIntegrationSettingsSlackAppIntegrationsIdRelationTestBody, options) => {
1384
+ const postRelationTestByIdForSlackIntegrationSettingsSlackAppIntegrations = (id, postRelationTestByIdForSlackIntegrationSettingsSlackAppIntegrationsBody, options) => {
1375
1385
  return customInstance({
1376
1386
  url: `/slack-integration-settings/slack-app-integrations/${id}/relation-test`,
1377
1387
  method: 'POST',
1378
1388
  headers: { 'Content-Type': 'application/json' },
1379
- data: postSlackIntegrationSettingsSlackAppIntegrationsIdRelationTestBody,
1389
+ data: postRelationTestByIdForSlackIntegrationSettingsSlackAppIntegrationsBody,
1380
1390
  }, options);
1381
1391
  };
1382
1392
  /**
1383
1393
  * Test the connection with slack work space.
1384
1394
  * @summary /slack-integration-settings/without-proxy/test
1385
1395
  */
1386
- const postSlackIntegrationSettingsWithoutProxyTest = (postSlackIntegrationSettingsWithoutProxyTestBody, options) => {
1396
+ const postTestForSlackIntegrationSettingsWithoutProxy = (postTestForSlackIntegrationSettingsWithoutProxyBody, options) => {
1387
1397
  return customInstance({
1388
1398
  url: `/slack-integration-settings/without-proxy/test`,
1389
1399
  method: 'POST',
1390
1400
  headers: { 'Content-Type': 'application/json' },
1391
- data: postSlackIntegrationSettingsWithoutProxyTestBody,
1401
+ data: postTestForSlackIntegrationSettingsWithoutProxyBody,
1392
1402
  }, options);
1393
1403
  };
1394
1404
  /**
1395
1405
  * Handle Slack commands
1396
1406
  * @summary /slack-integration/commands
1397
1407
  */
1398
- const postSlackIntegrationCommands = (postSlackIntegrationCommandsBody, options) => {
1399
- return customInstance({ url: `/slack-integration/commands`, method: 'POST', headers: { 'Content-Type': 'application/json' }, data: postSlackIntegrationCommandsBody }, options);
1408
+ const postCommandsForSlackIntegration = (postCommandsForSlackIntegrationBody, options) => {
1409
+ return customInstance({ url: `/slack-integration/commands`, method: 'POST', headers: { 'Content-Type': 'application/json' }, data: postCommandsForSlackIntegrationBody }, options);
1400
1410
  };
1401
1411
  /**
1402
1412
  * Verify the access token
1403
1413
  * @summary /slack-integration/proxied/verify
1404
1414
  */
1405
- const postSlackIntegrationProxiedVerify = (postSlackIntegrationProxiedVerifyBody, options) => {
1415
+ const postVerifyForSlackIntegrationProxied = (postVerifyForSlackIntegrationProxiedBody, options) => {
1406
1416
  return customInstance({
1407
1417
  url: `/slack-integration/proxied/verify`,
1408
1418
  method: 'POST',
1409
1419
  headers: { 'Content-Type': 'application/json' },
1410
- data: postSlackIntegrationProxiedVerifyBody,
1420
+ data: postVerifyForSlackIntegrationProxiedBody,
1411
1421
  }, options);
1412
1422
  };
1413
1423
  /**
1414
1424
  * Handle Slack commands
1415
1425
  * @summary /slack-integration/proxied/commands
1416
1426
  */
1417
- const postSlackIntegrationProxiedCommands = (postSlackIntegrationProxiedCommandsBody, options) => {
1427
+ const postCommandsForSlackIntegrationProxied = (postCommandsForSlackIntegrationProxiedBody, options) => {
1418
1428
  return customInstance({
1419
1429
  url: `/slack-integration/proxied/commands`,
1420
1430
  method: 'POST',
1421
1431
  headers: { 'Content-Type': 'application/json' },
1422
- data: postSlackIntegrationProxiedCommandsBody,
1432
+ data: postCommandsForSlackIntegrationProxiedBody,
1423
1433
  }, options);
1424
1434
  };
1425
1435
  /**
1426
1436
  * Handle Slack interactions
1427
1437
  * @summary /slack-integration/interactions
1428
1438
  */
1429
- const postSlackIntegrationInteractions = (postSlackIntegrationInteractionsBody, options) => {
1430
- return customInstance({ url: `/slack-integration/interactions`, method: 'POST', headers: { 'Content-Type': 'application/json' }, data: postSlackIntegrationInteractionsBody }, options);
1439
+ const postInteractionsForSlackIntegration = (postInteractionsForSlackIntegrationBody, options) => {
1440
+ return customInstance({
1441
+ url: `/slack-integration/interactions`,
1442
+ method: 'POST',
1443
+ headers: { 'Content-Type': 'application/json' },
1444
+ data: postInteractionsForSlackIntegrationBody,
1445
+ }, options);
1431
1446
  };
1432
1447
  /**
1433
1448
  * Handle Slack interactions
1434
1449
  * @summary /slack-integration/proxied/interactions
1435
1450
  */
1436
- const postSlackIntegrationProxiedInteractions = (postSlackIntegrationProxiedInteractionsBody, options) => {
1451
+ const postInteractionsForSlackIntegrationProxied = (postInteractionsForSlackIntegrationProxiedBody, options) => {
1437
1452
  return customInstance({
1438
1453
  url: `/slack-integration/proxied/interactions`,
1439
1454
  method: 'POST',
1440
1455
  headers: { 'Content-Type': 'application/json' },
1441
- data: postSlackIntegrationProxiedInteractionsBody,
1456
+ data: postInteractionsForSlackIntegrationProxiedBody,
1442
1457
  }, options);
1443
1458
  };
1444
1459
  /**
1445
1460
  * Get supported commands
1446
1461
  * @summary /slack-integration/supported-commands
1447
1462
  */
1448
- const getSlackIntegrationSupportedCommands = (options) => {
1463
+ const getSupportedCommandsForSlackIntegration = (options) => {
1449
1464
  return customInstance({ url: `/slack-integration/supported-commands`, method: 'GET' }, options);
1450
1465
  };
1451
1466
  /**
1452
1467
  * Handle Slack events
1453
1468
  * @summary /slack-integration/events
1454
1469
  */
1455
- const postSlackIntegrationEvents = (postSlackIntegrationEventsBody, options) => {
1456
- return customInstance({ url: `/slack-integration/events`, method: 'POST', headers: { 'Content-Type': 'application/json' }, data: postSlackIntegrationEventsBody }, options);
1470
+ const postEventsForSlackIntegration = (postEventsForSlackIntegrationBody, options) => {
1471
+ return customInstance({ url: `/slack-integration/events`, method: 'POST', headers: { 'Content-Type': 'application/json' }, data: postEventsForSlackIntegrationBody }, options);
1457
1472
  };
1458
1473
  /**
1459
1474
  * Handle Slack events
1460
1475
  * @summary /slack-integration/proxied/events
1461
1476
  */
1462
- const postSlackIntegrationProxiedEvents = (postSlackIntegrationProxiedEventsBody, options) => {
1477
+ const postEventsForSlackIntegrationProxied = (postEventsForSlackIntegrationProxiedBody, options) => {
1463
1478
  return customInstance({
1464
1479
  url: `/slack-integration/proxied/events`,
1465
1480
  method: 'POST',
1466
1481
  headers: { 'Content-Type': 'application/json' },
1467
- data: postSlackIntegrationProxiedEventsBody,
1482
+ data: postEventsForSlackIntegrationProxiedBody,
1468
1483
  }, options);
1469
1484
  };
1470
1485
  /**
1471
1486
  * Get statistics for user
1472
1487
  * @summary /statistics/user
1473
1488
  */
1474
- const getStatisticsUser = (options) => {
1489
+ const getUserForStatistics = (options) => {
1475
1490
  return customInstance({ url: `/statistics/user`, method: 'GET' }, options);
1476
1491
  };
1477
1492
  /**
@@ -1505,14 +1520,14 @@ export const getGrowirestapiv3 = () => {
1505
1520
  * Get ancestor user groups.
1506
1521
  * @summary /user-groups/ancestors
1507
1522
  */
1508
- const getUserGroupsAncestors = (params, options) => {
1523
+ const getAncestorsForUserGroups = (params, options) => {
1509
1524
  return customInstance({ url: `/user-groups/ancestors`, method: 'GET', params }, options);
1510
1525
  };
1511
1526
  /**
1512
1527
  * Get child user groups
1513
1528
  * @summary /user-groups/children
1514
1529
  */
1515
- const getUserGroupsChildren = (params, options) => {
1530
+ const getChildrenForUserGroups = (params, options) => {
1516
1531
  return customInstance({ url: `/user-groups/children`, method: 'GET', params }, options);
1517
1532
  };
1518
1533
  /**
@@ -1533,63 +1548,63 @@ export const getGrowirestapiv3 = () => {
1533
1548
  * Get UserGroup from Group ID
1534
1549
  * @summary /user-groups/{id}
1535
1550
  */
1536
- const getUserGroupsId = (id, options) => {
1551
+ const getUserGroupsById = (id, options) => {
1537
1552
  return customInstance({ url: `/user-groups/${id}`, method: 'GET' }, options);
1538
1553
  };
1539
1554
  /**
1540
1555
  * Deletes userGroup
1541
1556
  * @summary /user-groups/{id}
1542
1557
  */
1543
- const deleteUserGroupsId = (id, params, options) => {
1558
+ const deleteUserGroupsById = (id, params, options) => {
1544
1559
  return customInstance({ url: `/user-groups/${id}`, method: 'DELETE', params }, options);
1545
1560
  };
1546
1561
  /**
1547
1562
  * Update userGroup
1548
1563
  * @summary /user-groups/{id}
1549
1564
  */
1550
- const putUserGroupsId = (id, putUserGroupsIdBody, options) => {
1551
- return customInstance({ url: `/user-groups/${id}`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: putUserGroupsIdBody }, options);
1565
+ const putUserGroupsById = (id, putUserGroupsByIdBody, options) => {
1566
+ return customInstance({ url: `/user-groups/${id}`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: putUserGroupsByIdBody }, options);
1552
1567
  };
1553
1568
  /**
1554
1569
  * Get users related to the userGroup
1555
1570
  * @summary /user-groups/{id}/users
1556
1571
  */
1557
- const getUserGroupsIdUsers = (id, options) => {
1572
+ const getUsersByIdForUserGroups = (id, options) => {
1558
1573
  return customInstance({ url: `/user-groups/${id}/users`, method: 'GET' }, options);
1559
1574
  };
1560
1575
  /**
1561
1576
  * Get users unrelated to the userGroup
1562
1577
  * @summary /user-groups/{id}/unrelated-users
1563
1578
  */
1564
- const getUserGroupsIdUnrelatedUsers = (id, params, options) => {
1579
+ const getUnrelatedUsersByIdForUserGroups = (id, params, options) => {
1565
1580
  return customInstance({ url: `/user-groups/${id}/unrelated-users`, method: 'GET', params }, options);
1566
1581
  };
1567
1582
  /**
1568
1583
  * Add a user to the userGroup
1569
1584
  * @summary /user-groups/{id}/users/{username}
1570
1585
  */
1571
- const postUserGroupsIdUsersUsername = (id, username, options) => {
1586
+ const postUsersByUsernameByIdForUserGroups = (id, username, options) => {
1572
1587
  return customInstance({ url: `/user-groups/${id}/users/${username}`, method: 'POST' }, options);
1573
1588
  };
1574
1589
  /**
1575
1590
  * remove a user from the userGroup
1576
1591
  * @summary /user-groups/{id}/users/{username}
1577
1592
  */
1578
- const deleteUserGroupsIdUsersUsername = (id, username, options) => {
1593
+ const deleteUsersByUsernameByIdForUserGroups = (id, username, options) => {
1579
1594
  return customInstance({ url: `/user-groups/${id}/users/${username}`, method: 'DELETE' }, options);
1580
1595
  };
1581
1596
  /**
1582
1597
  * Get the user group relations for the userGroup
1583
1598
  * @summary /user-groups/{id}/user-group-relations
1584
1599
  */
1585
- const getUserGroupsIdUserGroupRelations = (id, options) => {
1600
+ const getUserGroupRelationsByIdForUserGroups = (id, options) => {
1586
1601
  return customInstance({ url: `/user-groups/${id}/user-group-relations`, method: 'GET' }, options);
1587
1602
  };
1588
1603
  /**
1589
1604
  * Get closed pages for the userGroup
1590
1605
  * @summary /user-groups/{id}/pages
1591
1606
  */
1592
- const getUserGroupsIdPages = (id, options) => {
1607
+ const getPagesByIdForUserGroups = (id, options) => {
1593
1608
  return customInstance({ url: `/user-groups/${id}/pages`, method: 'GET' }, options);
1594
1609
  };
1595
1610
  /**
@@ -1609,119 +1624,119 @@ export const getGrowirestapiv3 = () => {
1609
1624
  /**
1610
1625
  * @summary /usersIdReacent
1611
1626
  */
1612
- const getIdRecent = (id, options) => {
1627
+ const getRecentById = (id, options) => {
1613
1628
  return customInstance({ url: `/${id}/recent`, method: 'GET' }, options);
1614
1629
  };
1615
1630
  /**
1616
1631
  * Create new users and send Emails
1617
1632
  * @summary /users/invite
1618
1633
  */
1619
- const postUsersInvite = (params, options) => {
1634
+ const postInviteForUsers = (params, options) => {
1620
1635
  return customInstance({ url: `/users/invite`, method: 'POST', params }, options);
1621
1636
  };
1622
1637
  /**
1623
1638
  * Grant user admin
1624
1639
  * @summary /users/{id}/grant-admin
1625
1640
  */
1626
- const putUsersIdGrantAdmin = (id, options) => {
1641
+ const putGrantAdminByIdForUsers = (id, options) => {
1627
1642
  return customInstance({ url: `/users/${id}/grant-admin`, method: 'PUT' }, options);
1628
1643
  };
1629
1644
  /**
1630
1645
  * Revoke user admin
1631
1646
  * @summary /users/{id}/revoke-admin
1632
1647
  */
1633
- const putUsersIdRevokeAdmin = (id, options) => {
1648
+ const putRevokeAdminByIdForUsers = (id, options) => {
1634
1649
  return customInstance({ url: `/users/${id}/revoke-admin`, method: 'PUT' }, options);
1635
1650
  };
1636
1651
  /**
1637
1652
  * Grant user read only access
1638
1653
  * @summary /users/{id}/grant-read-only
1639
1654
  */
1640
- const putUsersIdGrantReadOnly = (id, options) => {
1655
+ const putGrantReadOnlyByIdForUsers = (id, options) => {
1641
1656
  return customInstance({ url: `/users/${id}/grant-read-only`, method: 'PUT' }, options);
1642
1657
  };
1643
1658
  /**
1644
1659
  * Revoke user read only access
1645
1660
  * @summary /users/{id}/revoke-read-only
1646
1661
  */
1647
- const putUsersIdRevokeReadOnly = (id, options) => {
1662
+ const putRevokeReadOnlyByIdForUsers = (id, options) => {
1648
1663
  return customInstance({ url: `/users/${id}/revoke-read-only`, method: 'PUT' }, options);
1649
1664
  };
1650
1665
  /**
1651
1666
  * Activate user
1652
1667
  * @summary /users/{id}/activate
1653
1668
  */
1654
- const putUsersIdActivate = (id, options) => {
1669
+ const putActivateByIdForUsers = (id, options) => {
1655
1670
  return customInstance({ url: `/users/${id}/activate`, method: 'PUT' }, options);
1656
1671
  };
1657
1672
  /**
1658
1673
  * Deactivate user
1659
1674
  * @summary /users/{id}/deactivate
1660
1675
  */
1661
- const putUsersIdDeactivate = (id, options) => {
1676
+ const putDeactivateByIdForUsers = (id, options) => {
1662
1677
  return customInstance({ url: `/users/${id}/deactivate`, method: 'PUT' }, options);
1663
1678
  };
1664
1679
  /**
1665
1680
  * Delete user
1666
1681
  * @summary /users/{id}/remove
1667
1682
  */
1668
- const deleteUsersIdRemove = (id, options) => {
1683
+ const deleteRemoveByIdForUsers = (id, options) => {
1669
1684
  return customInstance({ url: `/users/${id}/remove`, method: 'DELETE' }, options);
1670
1685
  };
1671
1686
  /**
1672
1687
  * Get external-account
1673
1688
  * @summary /users/external-accounts
1674
1689
  */
1675
- const getUsersExternalAccounts = (params, options) => {
1690
+ const getExternalAccountsForUsers = (params, options) => {
1676
1691
  return customInstance({ url: `/users/external-accounts`, method: 'GET', params }, options);
1677
1692
  };
1678
1693
  /**
1679
1694
  * Delete ExternalAccount
1680
1695
  * @summary /users/external-accounts/{id}/remove
1681
1696
  */
1682
- const deleteUsersExternalAccountsIdRemove = (id, options) => {
1697
+ const deleteRemoveByIdForUsersExternalAccounts = (id, options) => {
1683
1698
  return customInstance({ url: `/users/external-accounts/${id}/remove`, method: 'DELETE' }, options);
1684
1699
  };
1685
1700
  /**
1686
1701
  * update imageUrlCache
1687
1702
  * @summary /users/update.imageUrlCache
1688
1703
  */
1689
- const putUsersUpdateImageUrlCache = (putUsersUpdateImageUrlCacheBody, options) => {
1690
- return customInstance({ url: `/users/update.imageUrlCache`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: putUsersUpdateImageUrlCacheBody }, options);
1704
+ const putUpdateImageUrlCacheForUsers = (putUpdateImageUrlCacheForUsersBody, options) => {
1705
+ return customInstance({ url: `/users/update.imageUrlCache`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: putUpdateImageUrlCacheForUsersBody }, options);
1691
1706
  };
1692
1707
  /**
1693
1708
  * update imageUrlCache
1694
1709
  * @summary /users/reset-password
1695
1710
  */
1696
- const putUsersResetPassword = (putUsersResetPasswordBody, options) => {
1697
- return customInstance({ url: `/users/reset-password`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: putUsersResetPasswordBody }, options);
1711
+ const putResetPasswordForUsers = (putResetPasswordForUsersBody, options) => {
1712
+ return customInstance({ url: `/users/reset-password`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: putResetPasswordForUsersBody }, options);
1698
1713
  };
1699
1714
  /**
1700
1715
  * send new password email
1701
1716
  * @summary /users/reset-password-email
1702
1717
  */
1703
- const putUsersResetPasswordEmail = (putUsersResetPasswordEmailBody, options) => {
1704
- return customInstance({ url: `/users/reset-password-email`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: putUsersResetPasswordEmailBody }, options);
1718
+ const putResetPasswordEmailForUsers = (putResetPasswordEmailForUsersBody, options) => {
1719
+ return customInstance({ url: `/users/reset-password-email`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: putResetPasswordEmailForUsersBody }, options);
1705
1720
  };
1706
1721
  /**
1707
1722
  * send invitation email
1708
1723
  * @summary /users/send-invitation-email
1709
1724
  */
1710
- const putUsersSendInvitationEmail = (putUsersSendInvitationEmailBody, options) => {
1711
- return customInstance({ url: `/users/send-invitation-email`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: putUsersSendInvitationEmailBody }, options);
1725
+ const putSendInvitationEmailForUsers = (putSendInvitationEmailForUsersBody, options) => {
1726
+ return customInstance({ url: `/users/send-invitation-email`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data: putSendInvitationEmailForUsersBody }, options);
1712
1727
  };
1713
1728
  /**
1714
1729
  * Get list of users
1715
1730
  * @summary /users/list
1716
1731
  */
1717
- const getUsersList = (params, options) => {
1732
+ const getListForUsers = (params, options) => {
1718
1733
  return customInstance({ url: `/users/list`, method: 'GET', params }, options);
1719
1734
  };
1720
1735
  /**
1721
1736
  * Get list of usernames
1722
1737
  * @summary /users/usernames
1723
1738
  */
1724
- const getUsersUsernames = (params, options) => {
1739
+ const getUsernamesForUsers = (params, options) => {
1725
1740
  return customInstance({ url: `/users/usernames`, method: 'GET', params }, options);
1726
1741
  };
1727
1742
  /**
@@ -1739,241 +1754,241 @@ export const getGrowirestapiv3 = () => {
1739
1754
  return {
1740
1755
  getExternalUserGroupRelations,
1741
1756
  getExternalUserGroups,
1742
- getExternalUserGroupsAncestors,
1743
- getExternalUserGroupsChildren,
1744
- getExternalUserGroupsId,
1745
- deleteExternalUserGroupsId,
1746
- putExternalUserGroupsId,
1747
- getExternalUserGroupsIdExternalUserGroupRelations,
1748
- getExternalUserGroupsLdapSyncSettings,
1749
- putExternalUserGroupsLdapSyncSettings,
1750
- getExternalUserGroupsKeycloakSyncSettings,
1751
- putExternalUserGroupsKeycloakSyncSettings,
1752
- putExternalUserGroupsLdapSync,
1753
- putExternalUserGroupsKeycloakSync,
1754
- getExternalUserGroupsLdapSyncStatus,
1755
- getQuestionnaireOrders,
1756
- getQuestionnaireIsEnabled,
1757
- postQuestionnaireProactiveAnswer,
1758
- putQuestionnaireAnswer,
1759
- putQuestionnaireSkip,
1760
- putQuestionnaireDeny,
1757
+ getAncestorsForExternalUserGroups,
1758
+ getChildrenForExternalUserGroups,
1759
+ getExternalUserGroupsById,
1760
+ deleteExternalUserGroupsById,
1761
+ putExternalUserGroupsById,
1762
+ getExternalUserGroupRelationsByIdForExternalUserGroups,
1763
+ getSyncSettingsForExternalUserGroupsLdap,
1764
+ putSyncSettingsForExternalUserGroupsLdap,
1765
+ getSyncSettingsForExternalUserGroupsKeycloak,
1766
+ putSyncSettingsForExternalUserGroupsKeycloak,
1767
+ putSyncForExternalUserGroupsLdap,
1768
+ putSyncForExternalUserGroupsKeycloak,
1769
+ getSyncStatusForExternalUserGroupsLdap,
1770
+ getOrdersForQuestionnaire,
1771
+ getIsEnabledForQuestionnaire,
1772
+ postAnswerForQuestionnaireProactive,
1773
+ putAnswerForQuestionnaire,
1774
+ putSkipForQuestionnaire,
1775
+ putDenyForQuestionnaire,
1761
1776
  getTemplates,
1762
- getTemplatesPresetTemplatesTemplateIdLocale,
1763
- getTemplatesPluginTemplatesOrganizationIdReposIdTemplateIdLocale,
1777
+ getPresetTemplatesByLocaleByTemplateIdForTemplates,
1778
+ getPluginTemplatesByLocaleByTemplateIdByReposIdByOrganizationIdForTemplates,
1764
1779
  postPlugins,
1765
- putPluginsIdActivate,
1766
- deletePluginsIdRemove,
1780
+ putActivateByIdForPlugins,
1781
+ deleteRemoveByIdForPlugins,
1767
1782
  getActivity,
1768
1783
  getAdminHome,
1769
1784
  getAppSettings,
1770
- putAppSettingsAppSetting,
1771
- putAppSettingsSiteUrlSetting,
1772
- putAppSettingsSmtpSetting,
1773
- postAppSettingsSmtpTest,
1774
- putAppSettingsSesSetting,
1775
- putAppSettingsFileUploadSettings,
1776
- putAppSettingsQuestionnaireSettings,
1777
- postAppSettingsV5SchemaMigration,
1778
- postAppSettingsMaintenanceMode,
1779
- getAttachmentList,
1780
- getAttachmentLimit,
1785
+ putAppSettingForAppSettings,
1786
+ putSiteUrlSettingForAppSettings,
1787
+ putSmtpSettingForAppSettings,
1788
+ postSmtpTestForAppSettings,
1789
+ putSesSettingForAppSettings,
1790
+ putFileUploadSettingsForAppSettings,
1791
+ putQuestionnaireSettingsForAppSettings,
1792
+ postV5SchemaMigrationForAppSettings,
1793
+ postMaintenanceModeForAppSettings,
1794
+ getListForAttachment,
1795
+ getLimitForAttachment,
1781
1796
  postAttachment,
1782
- getAttachmentId,
1797
+ getAttachmentById,
1783
1798
  postBookmarkFolder,
1784
1799
  putBookmarkFolder,
1785
- getBookmarkFolderListUserId,
1786
- deleteBookmarkFolderId,
1787
- postBookmarkFolderAddBookmarkToFolder,
1788
- putBookmarkFolderUpdateBookmark,
1789
- getBookmarksInfo,
1790
- getBookmarksUserId,
1800
+ getListByUserIdForBookmarkFolder,
1801
+ deleteBookmarkFolderById,
1802
+ postAddBookmarkToFolderForBookmarkFolder,
1803
+ putUpdateBookmarkForBookmarkFolder,
1804
+ getInfoForBookmarks,
1805
+ getBookmarksByUserId,
1791
1806
  putBookmarks,
1792
1807
  getCustomizeSetting,
1793
- getCustomizeSettingLayout,
1794
- putCustomizeSettingLayout,
1795
- getCustomizeSettingTheme,
1796
- putCustomizeSettingTheme,
1797
- getCustomizeSettingSidebar,
1798
- putCustomizeSettingSidebar,
1799
- putCustomizeSettingFunction,
1800
- putCustomizeSettingPresentation,
1801
- putCustomizeSettingHighlight,
1802
- putCustomizeSettingCustomizeTitle,
1803
- putCustomizeSettingCustomizeNoscript,
1804
- putCustomizeSettingCustomizeCss,
1805
- putCustomizeSettingCustomizeScript,
1806
- putCustomizeSettingCustomizeLogo,
1807
- putCustomizeSettingUploadBrandLogo,
1808
- deleteCustomizeSettingDeleteBrandLogo,
1809
- getExportStatus,
1808
+ getLayoutForCustomizeSetting,
1809
+ putLayoutForCustomizeSetting,
1810
+ getThemeForCustomizeSetting,
1811
+ putThemeForCustomizeSetting,
1812
+ getSidebarForCustomizeSetting,
1813
+ putSidebarForCustomizeSetting,
1814
+ putFunctionForCustomizeSetting,
1815
+ putPresentationForCustomizeSetting,
1816
+ putHighlightForCustomizeSetting,
1817
+ putCustomizeTitleForCustomizeSetting,
1818
+ putCustomizeNoscriptForCustomizeSetting,
1819
+ putCustomizeCssForCustomizeSetting,
1820
+ putCustomizeScriptForCustomizeSetting,
1821
+ putCustomizeLogoForCustomizeSetting,
1822
+ putUploadBrandLogoForCustomizeSetting,
1823
+ deleteDeleteBrandLogoForCustomizeSetting,
1824
+ getStatusForExport,
1810
1825
  postExport,
1811
- deleteExportFileName,
1826
+ deleteExportByFileName,
1812
1827
  postForgotPassword,
1813
1828
  putForgotPassword,
1814
- getG2gTransferFiles,
1829
+ getFilesForG2gTransfer,
1815
1830
  postG2gTransfer,
1816
- postG2gTransferAttachment,
1817
- getG2gTransferGrowiInfo,
1818
- postG2gTransferGenerateKey,
1819
- postG2gTransferTransfer,
1831
+ postAttachmentForG2gTransfer,
1832
+ getGrowiInfoForG2gTransfer,
1833
+ postGenerateKeyForG2gTransfer,
1834
+ postTransferForG2gTransfer,
1820
1835
  getHealthcheck,
1821
1836
  getImport,
1822
1837
  postImport,
1823
- getImportStatus,
1824
- postImportUpload,
1825
- deleteImportAll,
1826
- getInAppNotificationList,
1827
- getInAppNotificationStatus,
1828
- postInAppNotificationOpen,
1829
- putInAppNotificationAllStatusesOpen,
1838
+ getStatusForImport,
1839
+ postUploadForImport,
1840
+ deleteAllForImport,
1841
+ getListForInAppNotification,
1842
+ getStatusForInAppNotification,
1843
+ postOpenForInAppNotification,
1844
+ putAllStatusesOpenForInAppNotification,
1830
1845
  postInstaller,
1831
1846
  postInvited,
1832
1847
  postLogout,
1833
1848
  getMarkdownSetting,
1834
- putMarkdownSettingLineBreak,
1835
- putMarkdownSettingIndent,
1836
- putMarkdownSettingXss,
1837
- getMongoCollections,
1849
+ putLineBreakForMarkdownSetting,
1850
+ putIndentForMarkdownSetting,
1851
+ putXssForMarkdownSetting,
1852
+ getCollectionsForMongo,
1838
1853
  getNotificationSetting,
1839
- postNotificationSettingUserNotification,
1840
- deleteNotificationSettingUserNotificationId,
1841
- getNotificationSettingGlobalNotificationId,
1842
- putNotificationSettingGlobalNotificationId,
1843
- deleteNotificationSettingGlobalNotificationId,
1844
- postNotificationSettingGlobalNotification,
1845
- putNotificationSettingNotifyForPageGrant,
1846
- putNotificationSettingGlobalNotificationIdEnabled,
1847
- getPageListingRoot,
1848
- getPageListingAncestorsChildren,
1849
- getPageListingChildren,
1850
- getPageListingInfo,
1854
+ postUserNotificationForNotificationSetting,
1855
+ deleteUserNotificationByIdForNotificationSetting,
1856
+ getGlobalNotificationByIdForNotificationSetting,
1857
+ putGlobalNotificationByIdForNotificationSetting,
1858
+ deleteGlobalNotificationByIdForNotificationSetting,
1859
+ postGlobalNotificationForNotificationSetting,
1860
+ putNotifyForPageGrantForNotificationSetting,
1861
+ putEnabledByIdForNotificationSettingGlobalNotification,
1862
+ getRootForPageListing,
1863
+ getAncestorsChildrenForPageListing,
1864
+ getChildrenForPageListing,
1865
+ getInfoForPageListing,
1851
1866
  getPage,
1852
1867
  postPage,
1853
1868
  putPage,
1854
- getPageExist,
1855
- putPageLikes,
1856
- getPageInfo,
1857
- getPageGrantData,
1858
- getPageNonUserRelatedGroupsGranted,
1859
- getPageApplicableGrant,
1860
- putPageIdGrant,
1861
- getPageExportPageId,
1862
- getPageExistPaths,
1863
- putPageSubscribe,
1864
- putPageIdContentWidth,
1865
- putPageIdPublish,
1866
- putPageIdUnpublish,
1867
- getPageIdYjsData,
1868
- putPageIdSyncLatestRevisionBodyToYjsDraft,
1869
- getPagesRecent,
1870
- postPagesRename,
1871
- postPagesResumeRename,
1872
- deletePagesEmptyTrash,
1873
- getPagesList,
1874
- postPagesDuplicate,
1875
- getPagesSubordinatedList,
1876
- postPagesDelete,
1877
- postPagesConvertPagesByPath,
1878
- postPagesLegacyPagesMigration,
1879
- getPagesV5MigrationStatus,
1869
+ getExistForPage,
1870
+ putLikesForPage,
1871
+ getInfoForPage,
1872
+ getGrantDataForPage,
1873
+ getNonUserRelatedGroupsGrantedForPage,
1874
+ getApplicableGrantForPage,
1875
+ putGrantByPageId,
1876
+ getExportByPageIdForPage,
1877
+ getExistPathsForPage,
1878
+ putSubscribeForPage,
1879
+ putContentWidthByPageId,
1880
+ putPublishByPageId,
1881
+ putUnpublishByPageId,
1882
+ getYjsDataByPageId,
1883
+ putSyncLatestRevisionBodyToYjsDraftByPageId,
1884
+ getRecentForPages,
1885
+ postRenameForPages,
1886
+ postResumeRenameForPages,
1887
+ deleteEmptyTrashForPages,
1888
+ getListForPages,
1889
+ postDuplicateForPages,
1890
+ getSubordinatedListForPages,
1891
+ postDeleteForPages,
1892
+ postConvertPagesByPathForPages,
1893
+ postLegacyPagesMigrationForPages,
1894
+ getV5MigrationStatusForPages,
1880
1895
  getPersonalSetting,
1881
1896
  putPersonalSetting,
1882
- getPersonalSettingIsPasswordSet,
1883
- putPersonalSettingImageType,
1884
- getPersonalSettingExternalAccounts,
1885
- putPersonalSettingPassword,
1886
- putPersonalSettingApiToken,
1887
- putPersonalSettingAssociateLdap,
1888
- putPersonalSettingDisassociateLdap,
1889
- putPersonalSettingEditorSettings,
1890
- getPersonalSettingEditorSettings,
1891
- putPersonalSettingInAppNotificationSettings,
1892
- getPersonalSettingInAppNotificationSettings,
1893
- putPersonalSettingQuestionnaireSettings,
1894
- getRevisionsList,
1895
- getRevisionsId,
1896
- getSearchIndices,
1897
- putSearchIndices,
1898
- postSearchConnection,
1897
+ getIsPasswordSetForPersonalSetting,
1898
+ putImageTypeForPersonalSetting,
1899
+ getExternalAccountsForPersonalSetting,
1900
+ putPasswordForPersonalSetting,
1901
+ putApiTokenForPersonalSetting,
1902
+ putAssociateLdapForPersonalSetting,
1903
+ putDisassociateLdapForPersonalSetting,
1904
+ putEditorSettingsForPersonalSetting,
1905
+ getEditorSettingsForPersonalSetting,
1906
+ putInAppNotificationSettingsForPersonalSetting,
1907
+ getInAppNotificationSettingsForPersonalSetting,
1908
+ putQuestionnaireSettingsForPersonalSetting,
1909
+ getListForRevisions,
1910
+ getRevisionsById,
1911
+ getIndicesForSearch,
1912
+ putIndicesForSearch,
1913
+ postConnectionForSearch,
1899
1914
  getSecuritySetting,
1900
- putSecuritySettingAuthenticationEnabled,
1901
- getSecuritySettingAuthentication,
1902
- putSecuritySettingGeneralSetting,
1903
- putSecuritySettingShareLinkSetting,
1904
- getSecuritySettingAllShareLinks,
1905
- deleteSecuritySettingAllShareLinks,
1906
- putSecuritySettingLocalSetting,
1907
- putSecuritySettingLdap,
1908
- putSecuritySettingSaml,
1909
- putSecuritySettingOidc,
1910
- putSecuritySettingGoogleOauth,
1911
- putSecuritySettingGithubOauth,
1915
+ putEnabledForSecuritySettingAuthentication,
1916
+ getAuthenticationForSecuritySetting,
1917
+ putGeneralSettingForSecuritySetting,
1918
+ putShareLinkSettingForSecuritySetting,
1919
+ getAllShareLinksForSecuritySetting,
1920
+ deleteAllShareLinksForSecuritySetting,
1921
+ putLocalSettingForSecuritySetting,
1922
+ putLdapForSecuritySetting,
1923
+ putSamlForSecuritySetting,
1924
+ putOidcForSecuritySetting,
1925
+ putGoogleOauthForSecuritySetting,
1926
+ putGithubOauthForSecuritySetting,
1912
1927
  getShareLinks,
1913
1928
  postShareLinks,
1914
1929
  deleteShareLinks,
1915
- deleteShareLinksAll,
1916
- deleteShareLinksId,
1930
+ deleteAllForShareLinks,
1931
+ deleteShareLinksById,
1917
1932
  getSlackIntegrationLegacySetting,
1918
1933
  putSlackIntegrationLegacySetting,
1919
1934
  getSlackIntegrationSettings,
1920
- putSlackIntegrationSettingsBotType,
1921
- deleteSlackIntegrationBotType,
1922
- putSlackIntegrationSettingsWithoutProxyUpdateSettings,
1923
- putSlackIntegrationSettingsWithoutProxyUpdatePermissions,
1924
- postSlackIntegrationSettingsSlackAppIntegrations,
1925
- deleteSlackIntegrationSettingsSlackAppIntegrationsId,
1926
- putSlackIntegrationSettingsProxyUri,
1927
- putSlackIntegrationSettingsSlackAppIntegrationsIdMakeprimary,
1928
- putSlackIntegrationSettingsSlackAppIntegrationsIdRegenerateTokens,
1929
- putSlackIntegrationSettingsSlackAppIntegrationsIdPermissions,
1930
- postSlackIntegrationSettingsSlackAppIntegrationsIdRelationTest,
1931
- postSlackIntegrationSettingsWithoutProxyTest,
1932
- postSlackIntegrationCommands,
1933
- postSlackIntegrationProxiedVerify,
1934
- postSlackIntegrationProxiedCommands,
1935
- postSlackIntegrationInteractions,
1936
- postSlackIntegrationProxiedInteractions,
1937
- getSlackIntegrationSupportedCommands,
1938
- postSlackIntegrationEvents,
1939
- postSlackIntegrationProxiedEvents,
1940
- getStatisticsUser,
1935
+ putBotTypeForSlackIntegrationSettings,
1936
+ deleteBotTypeForSlackIntegration,
1937
+ putUpdateSettingsForSlackIntegrationSettingsWithoutProxy,
1938
+ putUpdatePermissionsForSlackIntegrationSettingsWithoutProxy,
1939
+ postSlackAppIntegrationsForSlackIntegrationSettings,
1940
+ deleteSlackAppIntegrationsByIdForSlackIntegrationSettings,
1941
+ putProxyUriForSlackIntegrationSettings,
1942
+ putMakeprimaryByIdForSlackIntegrationSettingsSlackAppIntegrations,
1943
+ putRegenerateTokensByIdForSlackIntegrationSettingsSlackAppIntegrations,
1944
+ putPermissionsByIdForSlackIntegrationSettingsSlackAppIntegrations,
1945
+ postRelationTestByIdForSlackIntegrationSettingsSlackAppIntegrations,
1946
+ postTestForSlackIntegrationSettingsWithoutProxy,
1947
+ postCommandsForSlackIntegration,
1948
+ postVerifyForSlackIntegrationProxied,
1949
+ postCommandsForSlackIntegrationProxied,
1950
+ postInteractionsForSlackIntegration,
1951
+ postInteractionsForSlackIntegrationProxied,
1952
+ getSupportedCommandsForSlackIntegration,
1953
+ postEventsForSlackIntegration,
1954
+ postEventsForSlackIntegrationProxied,
1955
+ getUserForStatistics,
1941
1956
  postCompleteRegistration,
1942
1957
  getUserGroupRelations,
1943
1958
  getUserGroups,
1944
1959
  postUserGroups,
1945
- getUserGroupsAncestors,
1946
- getUserGroupsChildren,
1960
+ getAncestorsForUserGroups,
1961
+ getChildrenForUserGroups,
1947
1962
  getSelectableParentGroups,
1948
1963
  getSelectableChildGroups,
1949
- getUserGroupsId,
1950
- deleteUserGroupsId,
1951
- putUserGroupsId,
1952
- getUserGroupsIdUsers,
1953
- getUserGroupsIdUnrelatedUsers,
1954
- postUserGroupsIdUsersUsername,
1955
- deleteUserGroupsIdUsersUsername,
1956
- getUserGroupsIdUserGroupRelations,
1957
- getUserGroupsIdPages,
1964
+ getUserGroupsById,
1965
+ deleteUserGroupsById,
1966
+ putUserGroupsById,
1967
+ getUsersByIdForUserGroups,
1968
+ getUnrelatedUsersByIdForUserGroups,
1969
+ postUsersByUsernameByIdForUserGroups,
1970
+ deleteUsersByUsernameByIdForUserGroups,
1971
+ getUserGroupRelationsByIdForUserGroups,
1972
+ getPagesByIdForUserGroups,
1958
1973
  putUserUiSettings,
1959
1974
  getUsers,
1960
- getIdRecent,
1961
- postUsersInvite,
1962
- putUsersIdGrantAdmin,
1963
- putUsersIdRevokeAdmin,
1964
- putUsersIdGrantReadOnly,
1965
- putUsersIdRevokeReadOnly,
1966
- putUsersIdActivate,
1967
- putUsersIdDeactivate,
1968
- deleteUsersIdRemove,
1969
- getUsersExternalAccounts,
1970
- deleteUsersExternalAccountsIdRemove,
1971
- putUsersUpdateImageUrlCache,
1972
- putUsersResetPassword,
1973
- putUsersResetPasswordEmail,
1974
- putUsersSendInvitationEmail,
1975
- getUsersList,
1976
- getUsersUsernames,
1975
+ getRecentById,
1976
+ postInviteForUsers,
1977
+ putGrantAdminByIdForUsers,
1978
+ putRevokeAdminByIdForUsers,
1979
+ putGrantReadOnlyByIdForUsers,
1980
+ putRevokeReadOnlyByIdForUsers,
1981
+ putActivateByIdForUsers,
1982
+ putDeactivateByIdForUsers,
1983
+ deleteRemoveByIdForUsers,
1984
+ getExternalAccountsForUsers,
1985
+ deleteRemoveByIdForUsersExternalAccounts,
1986
+ putUpdateImageUrlCacheForUsers,
1987
+ putResetPasswordForUsers,
1988
+ putResetPasswordEmailForUsers,
1989
+ putSendInvitationEmailForUsers,
1990
+ getListForUsers,
1991
+ getUsernamesForUsers,
1977
1992
  postLogin,
1978
1993
  postRegister,
1979
1994
  };