@growi/sdk-typescript 1.0.0-RC.1 → 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.
- package/README.md +3 -3
- package/README_JP.md +3 -3
- package/dist/apiv3/index.d.ts +193 -193
- package/dist/generated/v3/index.d.ts +387 -387
- package/dist/generated/v3/index.d.ts.map +1 -1
- package/dist/generated/v3/index.js +459 -444
- package/dist/generated/v3/index.js.map +1 -1
- package/dist/generated/v3/index.schemas.d.ts +358 -358
- package/dist/generated/v3/index.schemas.d.ts.map +1 -1
- package/dist/generated/v3/index.schemas.js +1 -1
- package/dist/generated/v3/index.schemas.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/utils/axios-instance.d.ts +13 -1
- package/dist/utils/axios-instance.d.ts.map +1 -1
- package/dist/utils/axios-instance.js +18 -1
- package/dist/utils/axios-instance.js.map +1 -1
- package/package.json +1 -1
- package/src/generated/v3/index.schemas.ts +358 -358
- package/src/generated/v3/index.ts +1243 -1133
- package/src/index.ts +1 -1
- package/src/utils/axios-instance.ts +19 -1
|
@@ -16,132 +16,137 @@ export const getGrowirestapiv3 = () => {
|
|
|
16
16
|
/**
|
|
17
17
|
* @summary /external-user-groups/ancestors
|
|
18
18
|
*/
|
|
19
|
-
const
|
|
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
|
|
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
|
|
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
|
|
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
|
|
44
|
-
return customInstance({ url: `/external-user-groups/${id}`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data:
|
|
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
|
|
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
|
|
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
|
|
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:
|
|
66
|
+
data: putSyncSettingsForExternalUserGroupsLdapBody,
|
|
67
67
|
}, options);
|
|
68
68
|
};
|
|
69
69
|
/**
|
|
70
70
|
* @summary Get Keycloak sync settings
|
|
71
71
|
*/
|
|
72
|
-
const
|
|
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
|
|
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:
|
|
83
|
+
data: putSyncSettingsForExternalUserGroupsKeycloakBody,
|
|
84
84
|
}, options);
|
|
85
85
|
};
|
|
86
86
|
/**
|
|
87
87
|
* @summary Start LDAP sync process
|
|
88
88
|
*/
|
|
89
|
-
const
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
123
|
-
return customInstance({
|
|
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
|
|
130
|
-
return customInstance({ url: `/questionnaire/answer`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data:
|
|
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
|
|
137
|
-
return customInstance({ url: `/questionnaire/skip`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data:
|
|
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
|
|
144
|
-
return customInstance({ url: `/questionnaire/deny`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data:
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
269
|
-
return customInstance({ url: `/app-settings/maintenance-mode`, method: 'POST', headers: { 'Content-Type': 'application/json' }, data:
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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:
|
|
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
|
|
342
|
-
return customInstance({ url: `/bookmark-folder/update-bookmark`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data:
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
479
|
+
const putUploadBrandLogoForCustomizeSetting = (putUploadBrandLogoForCustomizeSettingBody, options) => {
|
|
475
480
|
const formData = new FormData();
|
|
476
|
-
if (
|
|
477
|
-
formData.append(`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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
557
|
+
const postAttachmentForG2gTransfer = (postAttachmentForG2gTransferBody, options) => {
|
|
553
558
|
const formData = new FormData();
|
|
554
|
-
if (
|
|
555
|
-
formData.append(`file`,
|
|
559
|
+
if (postAttachmentForG2gTransferBody.file !== undefined) {
|
|
560
|
+
formData.append(`file`, postAttachmentForG2gTransferBody.file);
|
|
556
561
|
}
|
|
557
|
-
if (
|
|
558
|
-
formData.append(`attachmentMetadata`, JSON.stringify(
|
|
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
|
|
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
|
|
572
|
-
return customInstance({ url: `/g2g-transfer/generate-key`, method: 'POST', headers: { 'Content-Type': 'application/json' }, data:
|
|
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
|
|
578
|
-
return customInstance({ url: `/g2g-transfer/transfer`, method: 'POST', headers: { 'Content-Type': 'application/json' }, data:
|
|
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
|
|
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
|
|
617
|
+
const postUploadForImport = (postUploadForImportBody, options) => {
|
|
613
618
|
const formData = new FormData();
|
|
614
|
-
if (
|
|
615
|
-
formData.append(`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
|
|
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
|
|
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
|
|
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
|
|
645
|
-
return customInstance({ url: `/in-app-notification/open`, method: 'POST', headers: { 'Content-Type': 'application/json' }, data:
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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:
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
866
|
-
return customInstance({ url: `/${pageId}/grant`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data:
|
|
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
|
|
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
|
|
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
|
|
886
|
-
return customInstance({ url: `/page/subscribe`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data:
|
|
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
|
|
893
|
-
return customInstance({ url: `/${pageId}/content-width`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data:
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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:
|
|
930
|
+
data: putSyncLatestRevisionBodyToYjsDraftByPageIdBody,
|
|
926
931
|
}, options);
|
|
927
932
|
};
|
|
928
933
|
/**
|
|
929
934
|
* Get recently updated pages
|
|
930
935
|
*/
|
|
931
|
-
const
|
|
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
|
|
938
|
-
return customInstance({ url: `/pages/rename`, method: 'POST', headers: { 'Content-Type': 'application/json' }, data:
|
|
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
|
|
944
|
-
return customInstance({ url: `/pages/resume-rename`, method: 'POST', headers: { 'Content-Type': 'application/json' }, data:
|
|
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
|
|
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
|
|
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
|
|
962
|
-
return customInstance({ url: `/pages/duplicate`, method: 'POST', headers: { 'Content-Type': 'application/json' }, data:
|
|
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
|
|
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
|
|
974
|
-
return customInstance({ url: `/pages/delete`, method: 'POST', headers: { 'Content-Type': 'application/json' }, data:
|
|
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
|
|
980
|
-
return customInstance({ url: `/pages/convert-pages-by-path`, method: 'POST', headers: { 'Content-Type': 'application/json' }, data:
|
|
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
|
|
986
|
-
return customInstance({ url: `/pages/legacy-pages-migration`, method: 'POST', headers: { 'Content-Type': 'application/json' }, data:
|
|
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
|
|
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
|
|
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
|
|
1020
|
-
return customInstance({ url: `/personal-setting/image-type`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data:
|
|
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
|
|
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
|
|
1034
|
-
return customInstance({ url: `/personal-setting/password`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data:
|
|
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
|
|
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
|
|
1048
|
-
return customInstance({ url: `/personal-setting/associate-ldap`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data:
|
|
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
|
|
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
|
|
1062
|
-
return customInstance({
|
|
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
|
|
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
|
|
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:
|
|
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
|
|
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
|
|
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:
|
|
1109
|
+
data: putQuestionnaireSettingsForPersonalSettingBody,
|
|
1100
1110
|
}, options);
|
|
1101
1111
|
};
|
|
1102
1112
|
/**
|
|
1103
1113
|
* Get revisions by page id
|
|
1104
1114
|
*/
|
|
1105
|
-
const
|
|
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
|
|
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
|
|
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
|
|
1126
|
-
return customInstance({ url: `/search/indices`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data:
|
|
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
|
|
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
|
|
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:
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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:
|
|
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
|
|
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:
|
|
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
|
|
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
|
|
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
|
|
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:
|
|
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
|
|
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
|
|
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
|
|
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:
|
|
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
|
|
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:
|
|
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
|
|
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:
|
|
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
|
|
1399
|
-
return customInstance({ url: `/slack-integration/commands`, method: 'POST', headers: { 'Content-Type': 'application/json' }, data:
|
|
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
|
|
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:
|
|
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
|
|
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:
|
|
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
|
|
1430
|
-
return customInstance({
|
|
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
|
|
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:
|
|
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
|
|
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
|
|
1456
|
-
return customInstance({ url: `/slack-integration/events`, method: 'POST', headers: { 'Content-Type': 'application/json' }, data:
|
|
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
|
|
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:
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
1551
|
-
return customInstance({ url: `/user-groups/${id}`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data:
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
1690
|
-
return customInstance({ url: `/users/update.imageUrlCache`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data:
|
|
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
|
|
1697
|
-
return customInstance({ url: `/users/reset-password`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data:
|
|
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
|
|
1704
|
-
return customInstance({ url: `/users/reset-password-email`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data:
|
|
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
|
|
1711
|
-
return customInstance({ url: `/users/send-invitation-email`, method: 'PUT', headers: { 'Content-Type': 'application/json' }, data:
|
|
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
|
|
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
|
|
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
|
-
|
|
1743
|
-
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
|
|
1752
|
-
|
|
1753
|
-
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
|
|
1757
|
-
|
|
1758
|
-
|
|
1759
|
-
|
|
1760
|
-
|
|
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
|
-
|
|
1763
|
-
|
|
1777
|
+
getPresetTemplatesByLocaleByTemplateIdForTemplates,
|
|
1778
|
+
getPluginTemplatesByLocaleByTemplateIdByReposIdByOrganizationIdForTemplates,
|
|
1764
1779
|
postPlugins,
|
|
1765
|
-
|
|
1766
|
-
|
|
1780
|
+
putActivateByIdForPlugins,
|
|
1781
|
+
deleteRemoveByIdForPlugins,
|
|
1767
1782
|
getActivity,
|
|
1768
1783
|
getAdminHome,
|
|
1769
1784
|
getAppSettings,
|
|
1770
|
-
|
|
1771
|
-
|
|
1772
|
-
|
|
1773
|
-
|
|
1774
|
-
|
|
1775
|
-
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
|
|
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
|
-
|
|
1797
|
+
getAttachmentById,
|
|
1783
1798
|
postBookmarkFolder,
|
|
1784
1799
|
putBookmarkFolder,
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
1800
|
+
getListByUserIdForBookmarkFolder,
|
|
1801
|
+
deleteBookmarkFolderById,
|
|
1802
|
+
postAddBookmarkToFolderForBookmarkFolder,
|
|
1803
|
+
putUpdateBookmarkForBookmarkFolder,
|
|
1804
|
+
getInfoForBookmarks,
|
|
1805
|
+
getBookmarksByUserId,
|
|
1791
1806
|
putBookmarks,
|
|
1792
1807
|
getCustomizeSetting,
|
|
1793
|
-
|
|
1794
|
-
|
|
1795
|
-
|
|
1796
|
-
|
|
1797
|
-
|
|
1798
|
-
|
|
1799
|
-
|
|
1800
|
-
|
|
1801
|
-
|
|
1802
|
-
|
|
1803
|
-
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
|
|
1808
|
-
|
|
1809
|
-
|
|
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
|
-
|
|
1826
|
+
deleteExportByFileName,
|
|
1812
1827
|
postForgotPassword,
|
|
1813
1828
|
putForgotPassword,
|
|
1814
|
-
|
|
1829
|
+
getFilesForG2gTransfer,
|
|
1815
1830
|
postG2gTransfer,
|
|
1816
|
-
|
|
1817
|
-
|
|
1818
|
-
|
|
1819
|
-
|
|
1831
|
+
postAttachmentForG2gTransfer,
|
|
1832
|
+
getGrowiInfoForG2gTransfer,
|
|
1833
|
+
postGenerateKeyForG2gTransfer,
|
|
1834
|
+
postTransferForG2gTransfer,
|
|
1820
1835
|
getHealthcheck,
|
|
1821
1836
|
getImport,
|
|
1822
1837
|
postImport,
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
|
-
|
|
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
|
-
|
|
1835
|
-
|
|
1836
|
-
|
|
1837
|
-
|
|
1849
|
+
putLineBreakForMarkdownSetting,
|
|
1850
|
+
putIndentForMarkdownSetting,
|
|
1851
|
+
putXssForMarkdownSetting,
|
|
1852
|
+
getCollectionsForMongo,
|
|
1838
1853
|
getNotificationSetting,
|
|
1839
|
-
|
|
1840
|
-
|
|
1841
|
-
|
|
1842
|
-
|
|
1843
|
-
|
|
1844
|
-
|
|
1845
|
-
|
|
1846
|
-
|
|
1847
|
-
|
|
1848
|
-
|
|
1849
|
-
|
|
1850
|
-
|
|
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
|
-
|
|
1855
|
-
|
|
1856
|
-
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
-
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
|
|
1868
|
-
|
|
1869
|
-
|
|
1870
|
-
|
|
1871
|
-
|
|
1872
|
-
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
|
|
1878
|
-
|
|
1879
|
-
|
|
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
|
-
|
|
1883
|
-
|
|
1884
|
-
|
|
1885
|
-
|
|
1886
|
-
|
|
1887
|
-
|
|
1888
|
-
|
|
1889
|
-
|
|
1890
|
-
|
|
1891
|
-
|
|
1892
|
-
|
|
1893
|
-
|
|
1894
|
-
|
|
1895
|
-
|
|
1896
|
-
|
|
1897
|
-
|
|
1898
|
-
|
|
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
|
-
|
|
1901
|
-
|
|
1902
|
-
|
|
1903
|
-
|
|
1904
|
-
|
|
1905
|
-
|
|
1906
|
-
|
|
1907
|
-
|
|
1908
|
-
|
|
1909
|
-
|
|
1910
|
-
|
|
1911
|
-
|
|
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
|
-
|
|
1916
|
-
|
|
1930
|
+
deleteAllForShareLinks,
|
|
1931
|
+
deleteShareLinksById,
|
|
1917
1932
|
getSlackIntegrationLegacySetting,
|
|
1918
1933
|
putSlackIntegrationLegacySetting,
|
|
1919
1934
|
getSlackIntegrationSettings,
|
|
1920
|
-
|
|
1921
|
-
|
|
1922
|
-
|
|
1923
|
-
|
|
1924
|
-
|
|
1925
|
-
|
|
1926
|
-
|
|
1927
|
-
|
|
1928
|
-
|
|
1929
|
-
|
|
1930
|
-
|
|
1931
|
-
|
|
1932
|
-
|
|
1933
|
-
|
|
1934
|
-
|
|
1935
|
-
|
|
1936
|
-
|
|
1937
|
-
|
|
1938
|
-
|
|
1939
|
-
|
|
1940
|
-
|
|
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
|
-
|
|
1946
|
-
|
|
1960
|
+
getAncestorsForUserGroups,
|
|
1961
|
+
getChildrenForUserGroups,
|
|
1947
1962
|
getSelectableParentGroups,
|
|
1948
1963
|
getSelectableChildGroups,
|
|
1949
|
-
|
|
1950
|
-
|
|
1951
|
-
|
|
1952
|
-
|
|
1953
|
-
|
|
1954
|
-
|
|
1955
|
-
|
|
1956
|
-
|
|
1957
|
-
|
|
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
|
-
|
|
1961
|
-
|
|
1962
|
-
|
|
1963
|
-
|
|
1964
|
-
|
|
1965
|
-
|
|
1966
|
-
|
|
1967
|
-
|
|
1968
|
-
|
|
1969
|
-
|
|
1970
|
-
|
|
1971
|
-
|
|
1972
|
-
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
|
|
1976
|
-
|
|
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
|
};
|