@gobodo/gobodo-api-promise 0.1.8-9.1 → 0.1.8-9.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.
Files changed (65) hide show
  1. package/dist/api/ActionTypesApi.d.ts +11 -11
  2. package/dist/api/AdCampaignsApi.d.ts +90 -90
  3. package/dist/api/AdManagementApi.d.ts +135 -135
  4. package/dist/api/AdminDataManagementApi.d.ts +11 -11
  5. package/dist/api/AdsApi.d.ts +67 -67
  6. package/dist/api/AttachmentsApi.d.ts +81 -81
  7. package/dist/api/AuthenticationApi.d.ts +38 -38
  8. package/dist/api/CategoriesApi.d.ts +77 -77
  9. package/dist/api/CommentsApi.d.ts +88 -88
  10. package/dist/api/ContentManagementApi.d.ts +310 -310
  11. package/dist/api/ConversationsApi.d.ts +99 -99
  12. package/dist/api/CurrencyApi.d.ts +58 -58
  13. package/dist/api/DataSheetImportsApi.d.ts +171 -171
  14. package/dist/api/DefaultApi.d.ts +60 -60
  15. package/dist/api/DocumentPartTypesApi.d.ts +23 -23
  16. package/dist/api/DocumentTypesApi.d.ts +23 -23
  17. package/dist/api/DocumentsApi.d.ts +143 -143
  18. package/dist/api/EmailsApi.d.ts +44 -44
  19. package/dist/api/EntryPartsApi.d.ts +143 -143
  20. package/dist/api/FacebookApi.d.ts +4 -4
  21. package/dist/api/FieldsApi.d.ts +33 -33
  22. package/dist/api/FilesApi.d.ts +13 -13
  23. package/dist/api/FormsApi.d.ts +199 -199
  24. package/dist/api/FunctionsApi.d.ts +202 -202
  25. package/dist/api/GeocodeApi.d.ts +55 -55
  26. package/dist/api/GobodoManagementApi.d.ts +55 -55
  27. package/dist/api/GoogleApi.d.ts +4 -4
  28. package/dist/api/GraphActionTypesApi.d.ts +88 -88
  29. package/dist/api/GraphActionsApi.d.ts +121 -121
  30. package/dist/api/GraphObjectTypesApi.d.ts +158 -158
  31. package/dist/api/GraphObjectsApi.d.ts +714 -714
  32. package/dist/api/GraphRelationshipTypesApi.d.ts +225 -225
  33. package/dist/api/GraphRelationshipsApi.d.ts +347 -347
  34. package/dist/api/GraphSchemasApi.d.ts +126 -126
  35. package/dist/api/GraphTraversalApi.d.ts +77 -77
  36. package/dist/api/GraphsApi.d.ts +125 -125
  37. package/dist/api/GroupsApi.d.ts +123 -123
  38. package/dist/api/IAMApi.d.ts +45 -45
  39. package/dist/api/ImagesApi.d.ts +94 -94
  40. package/dist/api/InvitesApi.d.ts +55 -55
  41. package/dist/api/LikesApi.d.ts +143 -143
  42. package/dist/api/LinkedINApi.d.ts +4 -4
  43. package/dist/api/LiveMeetingsApi.d.ts +22 -22
  44. package/dist/api/MeetingEventsApi.d.ts +55 -55
  45. package/dist/api/NotificationsApi.d.ts +160 -160
  46. package/dist/api/PagesApi.d.ts +102 -102
  47. package/dist/api/PhoneNumbersApi.d.ts +58 -58
  48. package/dist/api/PostsApi.d.ts +55 -55
  49. package/dist/api/PrivateMessagesApi.d.ts +176 -176
  50. package/dist/api/PublicationsApi.d.ts +11 -11
  51. package/dist/api/RestApplicationsApi.d.ts +59 -59
  52. package/dist/api/ScreensApi.d.ts +33 -33
  53. package/dist/api/SitesApi.d.ts +117 -117
  54. package/dist/api/SocialIntegrationApi.d.ts +16 -16
  55. package/dist/api/StripeAccountsApi.d.ts +431 -431
  56. package/dist/api/TagsApi.d.ts +11 -11
  57. package/dist/api/TemplatesApi.d.ts +33 -33
  58. package/dist/api/ThemeMappingsApi.d.ts +34 -34
  59. package/dist/api/TopicsApi.d.ts +88 -88
  60. package/dist/api/TwitterApi.d.ts +4 -4
  61. package/dist/api/UserTagsApi.d.ts +101 -101
  62. package/dist/api/UsersApi.d.ts +125 -125
  63. package/dist/api/VideosApi.d.ts +125 -125
  64. package/dist/api/WalletsApi.d.ts +190 -190
  65. package/package.json +1 -1
@@ -48,18 +48,18 @@ export default class AdsApi {
48
48
  * @param {module:model/PurgeDataDefaultResponseValue} opts.purgeDataDefaultResponseValue
49
49
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/PurgeDataDefaultResponseValue}
50
50
  */
51
- createAd(opts?: { [key: string]: any; [key: string]: any;
52
- authorization: string;
53
- cacheduration: number;
54
- cachegroup: Array<string>;
55
- cachekey: Array<string>;
56
- cachescope: any;
57
- cacheuser: Array<string>;
58
- zeusportalPostasApp: number;
59
- zeusportalPostas: number;
60
- zeusportalPostasSite: number;
61
- transactionid: string;
62
- purgeDataDefaultResponseValue: any;
51
+ createAd(opts?: { [key: string]: any; [key: string]: any; [key: string]: any;
52
+ authorization?: string;
53
+ cacheduration?: number;
54
+ cachegroup?: Array<string>;
55
+ cachekey?: Array<string>;
56
+ cachescope?: any;
57
+ cacheuser?: Array<string>;
58
+ zeusportalPostasApp?: number;
59
+ zeusportalPostas?: number;
60
+ zeusportalPostasSite?: number;
61
+ transactionid?: string;
62
+ purgeDataDefaultResponseValue?: any;
63
63
  }): Promise<any>;
64
64
  /**
65
65
  * Delete's the object with the id
@@ -94,17 +94,17 @@ export default class AdsApi {
94
94
  * @param {String} opts.transactionid The id of the transaction this operation is being run in
95
95
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}
96
96
  */
97
- deleteObject(id: number, opts?: { [key: string]: any; [key: string]: any;
98
- authorization: string;
99
- cacheduration: number;
100
- cachegroup: Array<string>;
101
- cachekey: Array<string>;
102
- cachescope: any;
103
- cacheuser: Array<string>;
104
- zeusportalPostasApp: number;
105
- zeusportalPostas: number;
106
- zeusportalPostasSite: number;
107
- transactionid: string;
97
+ deleteObject(id: number, opts?: { [key: string]: any; [key: string]: any; [key: string]: any;
98
+ authorization?: string;
99
+ cacheduration?: number;
100
+ cachegroup?: Array<string>;
101
+ cachekey?: Array<string>;
102
+ cachescope?: any;
103
+ cacheuser?: Array<string>;
104
+ zeusportalPostasApp?: number;
105
+ zeusportalPostas?: number;
106
+ zeusportalPostasSite?: number;
107
+ transactionid?: string;
108
108
  }): Promise<any>;
109
109
  /**
110
110
  * Root for the API
@@ -137,17 +137,17 @@ export default class AdsApi {
137
137
  * @param {String} opts.transactionid The id of the transaction this operation is being run in
138
138
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}
139
139
  */
140
- get13(opts?: { [key: string]: any; [key: string]: any;
141
- authorization: string;
142
- cacheduration: number;
143
- cachegroup: Array<string>;
144
- cachekey: Array<string>;
145
- cachescope: any;
146
- cacheuser: Array<string>;
147
- zeusportalPostasApp: number;
148
- zeusportalPostas: number;
149
- zeusportalPostasSite: number;
150
- transactionid: string;
140
+ get13(opts?: { [key: string]: any; [key: string]: any; [key: string]: any;
141
+ authorization?: string;
142
+ cacheduration?: number;
143
+ cachegroup?: Array<string>;
144
+ cachekey?: Array<string>;
145
+ cachescope?: any;
146
+ cacheuser?: Array<string>;
147
+ zeusportalPostasApp?: number;
148
+ zeusportalPostas?: number;
149
+ zeusportalPostasSite?: number;
150
+ transactionid?: string;
151
151
  }): Promise<any>;
152
152
  /**
153
153
  * Gets and object by id
@@ -182,17 +182,17 @@ export default class AdsApi {
182
182
  * @param {String} opts.transactionid The id of the transaction this operation is being run in
183
183
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link Object.<String, module:model/{String: PurgeDataDefaultResponseValue}>}
184
184
  */
185
- get14(id: number, opts?: { [key: string]: any; [key: string]: any;
186
- authorization: string;
187
- cacheduration: number;
188
- cachegroup: Array<string>;
189
- cachekey: Array<string>;
190
- cachescope: any;
191
- cacheuser: Array<string>;
192
- zeusportalPostasApp: number;
193
- zeusportalPostas: number;
194
- zeusportalPostasSite: number;
195
- transactionid: string;
185
+ get14(id: number, opts?: { [key: string]: any; [key: string]: any; [key: string]: any;
186
+ authorization?: string;
187
+ cacheduration?: number;
188
+ cachegroup?: Array<string>;
189
+ cachekey?: Array<string>;
190
+ cachescope?: any;
191
+ cacheuser?: Array<string>;
192
+ zeusportalPostasApp?: number;
193
+ zeusportalPostas?: number;
194
+ zeusportalPostasSite?: number;
195
+ transactionid?: string;
196
196
  }): Promise<any>;
197
197
  /**
198
198
  * @param {Number} id
@@ -225,17 +225,17 @@ export default class AdsApi {
225
225
  * @param {String} opts.transactionid The id of the transaction this operation is being run in
226
226
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link Object.<String, module:model/{String: PurgeDataDefaultResponseValue}>}
227
227
  */
228
- getCampaign(id: number, opts?: { [key: string]: any; [key: string]: any;
229
- authorization: string;
230
- cacheduration: number;
231
- cachegroup: Array<string>;
232
- cachekey: Array<string>;
233
- cachescope: any;
234
- cacheuser: Array<string>;
235
- zeusportalPostasApp: number;
236
- zeusportalPostas: number;
237
- zeusportalPostasSite: number;
238
- transactionid: string;
228
+ getCampaign(id: number, opts?: { [key: string]: any; [key: string]: any; [key: string]: any;
229
+ authorization?: string;
230
+ cacheduration?: number;
231
+ cachegroup?: Array<string>;
232
+ cachekey?: Array<string>;
233
+ cachescope?: any;
234
+ cacheuser?: Array<string>;
235
+ zeusportalPostasApp?: number;
236
+ zeusportalPostas?: number;
237
+ zeusportalPostasSite?: number;
238
+ transactionid?: string;
239
239
  }): Promise<any>;
240
240
  /**
241
241
  * @param {Number} id
@@ -270,17 +270,17 @@ export default class AdsApi {
270
270
  * @param {Object.<String, module:model/{String: PurgeDataDefaultResponseValue}>} opts.requestBody
271
271
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/PurgeDataDefaultResponseValue}
272
272
  */
273
- update1(id: number, opts?: { [key: string]: any; [key: string]: any;
274
- authorization: string;
275
- cacheduration: number;
276
- cachegroup: Array<string>;
277
- cachekey: Array<string>;
278
- cachescope: any;
279
- cacheuser: Array<string>;
280
- zeusportalPostasApp: number;
281
- zeusportalPostas: number;
282
- zeusportalPostasSite: number;
283
- transactionid: string;
273
+ update1(id: number, opts?: { [key: string]: any; [key: string]: any; [key: string]: any;
274
+ authorization?: string;
275
+ cacheduration?: number;
276
+ cachegroup?: Array<string>;
277
+ cachekey?: Array<string>;
278
+ cachescope?: any;
279
+ cacheuser?: Array<string>;
280
+ zeusportalPostasApp?: number;
281
+ zeusportalPostas?: number;
282
+ zeusportalPostasSite?: number;
283
+ transactionid?: string;
284
284
  }): Promise<any>;
285
285
  }
286
286
  //# sourceMappingURL=AdsApi.d.ts.map
@@ -46,17 +46,17 @@ export default class AttachmentsApi {
46
46
  * @param {String} opts.transactionid The id of the transaction this operation is being run in
47
47
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}
48
48
  */
49
- deleteObject(id: number, opts?: { [key: string]: any; [key: string]: any;
50
- authorization: string;
51
- cacheduration: number;
52
- cachegroup: Array<string>;
53
- cachekey: Array<string>;
54
- cachescope: any;
55
- cacheuser: Array<string>;
56
- zeusportalPostasApp: number;
57
- zeusportalPostas: number;
58
- zeusportalPostasSite: number;
59
- transactionid: string;
49
+ deleteObject(id: number, opts?: { [key: string]: any; [key: string]: any; [key: string]: any;
50
+ authorization?: string;
51
+ cacheduration?: number;
52
+ cachegroup?: Array<string>;
53
+ cachekey?: Array<string>;
54
+ cachescope?: any;
55
+ cacheuser?: Array<string>;
56
+ zeusportalPostasApp?: number;
57
+ zeusportalPostas?: number;
58
+ zeusportalPostasSite?: number;
59
+ transactionid?: string;
60
60
  }): Promise<any>;
61
61
  /**
62
62
  * Root for the API
@@ -89,17 +89,17 @@ export default class AttachmentsApi {
89
89
  * @param {String} opts.transactionid The id of the transaction this operation is being run in
90
90
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}
91
91
  */
92
- get17(opts?: { [key: string]: any; [key: string]: any;
93
- authorization: string;
94
- cacheduration: number;
95
- cachegroup: Array<string>;
96
- cachekey: Array<string>;
97
- cachescope: any;
98
- cacheuser: Array<string>;
99
- zeusportalPostasApp: number;
100
- zeusportalPostas: number;
101
- zeusportalPostasSite: number;
102
- transactionid: string;
92
+ get17(opts?: { [key: string]: any; [key: string]: any; [key: string]: any;
93
+ authorization?: string;
94
+ cacheduration?: number;
95
+ cachegroup?: Array<string>;
96
+ cachekey?: Array<string>;
97
+ cachescope?: any;
98
+ cacheuser?: Array<string>;
99
+ zeusportalPostasApp?: number;
100
+ zeusportalPostas?: number;
101
+ zeusportalPostasSite?: number;
102
+ transactionid?: string;
103
103
  }): Promise<any>;
104
104
  /**
105
105
  * Get File By Id
@@ -136,17 +136,17 @@ export default class AttachmentsApi {
136
136
  * @param {String} opts.transactionid The id of the transaction this operation is being run in
137
137
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link File}
138
138
  */
139
- getFileById(id: number, opts?: { [key: string]: any; [key: string]: any;
140
- authorization: string;
141
- cacheduration: number;
142
- cachegroup: Array<string>;
143
- cachekey: Array<string>;
144
- cachescope: any;
145
- cacheuser: Array<string>;
146
- zeusportalPostasApp: number;
147
- zeusportalPostas: number;
148
- zeusportalPostasSite: number;
149
- transactionid: string;
139
+ getFileById(id: number, opts?: { [key: string]: any; [key: string]: any; [key: string]: any;
140
+ authorization?: string;
141
+ cacheduration?: number;
142
+ cachegroup?: Array<string>;
143
+ cachekey?: Array<string>;
144
+ cachescope?: any;
145
+ cacheuser?: Array<string>;
146
+ zeusportalPostasApp?: number;
147
+ zeusportalPostas?: number;
148
+ zeusportalPostasSite?: number;
149
+ transactionid?: string;
150
150
  }): Promise<any>;
151
151
  /**
152
152
  * @param {Number} id
@@ -179,17 +179,17 @@ export default class AttachmentsApi {
179
179
  * @param {String} opts.transactionid The id of the transaction this operation is being run in
180
180
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link Array.<File>}
181
181
  */
182
- getFiles(id: number, opts?: { [key: string]: any; [key: string]: any;
183
- authorization: string;
184
- cacheduration: number;
185
- cachegroup: Array<string>;
186
- cachekey: Array<string>;
187
- cachescope: any;
188
- cacheuser: Array<string>;
189
- zeusportalPostasApp: number;
190
- zeusportalPostas: number;
191
- zeusportalPostasSite: number;
192
- transactionid: string;
182
+ getFiles(id: number, opts?: { [key: string]: any; [key: string]: any; [key: string]: any;
183
+ authorization?: string;
184
+ cacheduration?: number;
185
+ cachegroup?: Array<string>;
186
+ cachekey?: Array<string>;
187
+ cachescope?: any;
188
+ cacheuser?: Array<string>;
189
+ zeusportalPostasApp?: number;
190
+ zeusportalPostas?: number;
191
+ zeusportalPostasSite?: number;
192
+ transactionid?: string;
193
193
  }): Promise<any>;
194
194
  /**
195
195
  * Update File
@@ -228,17 +228,17 @@ export default class AttachmentsApi {
228
228
  * @param {Object.<String, module:model/{String: PurgeDataDefaultResponseValue}>} opts.requestBody
229
229
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link File}
230
230
  */
231
- updateFile(id: number, opts?: { [key: string]: any; [key: string]: any;
232
- authorization: string;
233
- cacheduration: number;
234
- cachegroup: Array<string>;
235
- cachekey: Array<string>;
236
- cachescope: any;
237
- cacheuser: Array<string>;
238
- zeusportalPostasApp: number;
239
- zeusportalPostas: number;
240
- zeusportalPostasSite: number;
241
- transactionid: string;
231
+ updateFile(id: number, opts?: { [key: string]: any; [key: string]: any; [key: string]: any;
232
+ authorization?: string;
233
+ cacheduration?: number;
234
+ cachegroup?: Array<string>;
235
+ cachekey?: Array<string>;
236
+ cachescope?: any;
237
+ cacheuser?: Array<string>;
238
+ zeusportalPostasApp?: number;
239
+ zeusportalPostas?: number;
240
+ zeusportalPostasSite?: number;
241
+ transactionid?: string;
242
242
  }): Promise<any>;
243
243
  /**
244
244
  * @param {Number} id
@@ -279,19 +279,19 @@ export default class AttachmentsApi {
279
279
  * @param {String} opts.preamble
280
280
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link Object.<String, module:model/{String: PurgeDataDefaultResponseValue}>}
281
281
  */
282
- upload(id: number, opts?: { [key: string]: any; [key: string]: any;
283
- authorization: string;
284
- cacheduration: number;
285
- cachegroup: Array<string>;
286
- cachekey: Array<string>;
287
- cachescope: any;
288
- cacheuser: Array<string>;
289
- zeusportalPostasApp: number;
290
- zeusportalPostas: number;
291
- zeusportalPostasSite: number;
292
- transactionid: string;
293
- formDataMap: any;
294
- formData: any;
282
+ upload(id: number, opts?: { [key: string]: any; [key: string]: any; [key: string]: any;
283
+ authorization?: string;
284
+ cacheduration?: number;
285
+ cachegroup?: Array<string>;
286
+ cachekey?: Array<string>;
287
+ cachescope?: any;
288
+ cacheuser?: Array<string>;
289
+ zeusportalPostasApp?: number;
290
+ zeusportalPostas?: number;
291
+ zeusportalPostasSite?: number;
292
+ transactionid?: string;
293
+ formDataMap?: any;
294
+ formData?: any;
295
295
  }): Promise<any>;
296
296
  /**
297
297
  * Upload data
@@ -330,19 +330,19 @@ export default class AttachmentsApi {
330
330
  * @param {module:model/MultipartBody} opts.body
331
331
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link Array.<File>}
332
332
  */
333
- uploadFile(opts?: { [key: string]: any; [key: string]: any;
334
- authorization: string;
335
- cacheduration: number;
336
- cachegroup: Array<string>;
337
- cachekey: Array<string>;
338
- cachescope: any;
339
- cacheuser: Array<string>;
340
- zeusportalPostasApp: number;
341
- zeusportalPostas: number;
342
- zeusportalPostasSite: number;
343
- transactionid: string;
344
- object: any;
345
- body: any;
333
+ uploadFile(opts?: { [key: string]: any; [key: string]: any; [key: string]: any;
334
+ authorization?: string;
335
+ cacheduration?: number;
336
+ cachegroup?: Array<string>;
337
+ cachekey?: Array<string>;
338
+ cachescope?: any;
339
+ cacheuser?: Array<string>;
340
+ zeusportalPostasApp?: number;
341
+ zeusportalPostas?: number;
342
+ zeusportalPostasSite?: number;
343
+ transactionid?: string;
344
+ object?: any;
345
+ body?: any;
346
346
  }): Promise<any>;
347
347
  }
348
348
  //# sourceMappingURL=AttachmentsApi.d.ts.map
@@ -26,9 +26,9 @@ export default class AuthenticationApi {
26
26
  * @param {String} opts.loginToken
27
27
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/AuthResponse}
28
28
  */
29
- login(opts?: { [key: string]: any; [key: string]: any;
30
- apiKey: string;
31
- loginToken: string;
29
+ login(opts?: { [key: string]: any; [key: string]: any; [key: string]: any;
30
+ apiKey?: string;
31
+ loginToken?: string;
32
32
  }): Promise<any>;
33
33
  /**
34
34
  * @param {Object} opts Optional parameters
@@ -45,10 +45,10 @@ export default class AuthenticationApi {
45
45
  * @param {Number} opts.appid
46
46
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/AuthResponse}
47
47
  */
48
- loginAsApp(opts?: { [key: string]: any; [key: string]: any;
49
- apiKey: string;
50
- authorization: string;
51
- appid: number;
48
+ loginAsApp(opts?: { [key: string]: any; [key: string]: any; [key: string]: any;
49
+ apiKey?: string;
50
+ authorization?: string;
51
+ appid?: number;
52
52
  }): Promise<any>;
53
53
  /**
54
54
  * @param {Object} opts Optional parameters
@@ -65,10 +65,10 @@ export default class AuthenticationApi {
65
65
  * @param {Number} opts.siteid
66
66
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/AuthResponse}
67
67
  */
68
- loginAsFunction(opts?: { [key: string]: any; [key: string]: any;
69
- apiKey: string;
70
- authorization: string;
71
- siteid: number;
68
+ loginAsFunction(opts?: { [key: string]: any; [key: string]: any; [key: string]: any;
69
+ apiKey?: string;
70
+ authorization?: string;
71
+ siteid?: number;
72
72
  }): Promise<any>;
73
73
  /**
74
74
  * @param {Object} opts Optional parameters
@@ -85,10 +85,10 @@ export default class AuthenticationApi {
85
85
  * @param {Number} opts.pageid
86
86
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/AuthResponse}
87
87
  */
88
- loginAsPage(opts?: { [key: string]: any; [key: string]: any;
89
- apiKey: string;
90
- authorization: string;
91
- pageid: number;
88
+ loginAsPage(opts?: { [key: string]: any; [key: string]: any; [key: string]: any;
89
+ apiKey?: string;
90
+ authorization?: string;
91
+ pageid?: number;
92
92
  }): Promise<any>;
93
93
  /**
94
94
  * @param {Object} opts Optional parameters
@@ -105,10 +105,10 @@ export default class AuthenticationApi {
105
105
  * @param {Number} opts.siteid
106
106
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/AuthResponse}
107
107
  */
108
- loginAsSite(opts?: { [key: string]: any; [key: string]: any;
109
- apiKey: string;
110
- authorization: string;
111
- siteid: number;
108
+ loginAsSite(opts?: { [key: string]: any; [key: string]: any; [key: string]: any;
109
+ apiKey?: string;
110
+ authorization?: string;
111
+ siteid?: number;
112
112
  }): Promise<any>;
113
113
  /**
114
114
  * @param {Object} opts Optional parameters
@@ -125,10 +125,10 @@ export default class AuthenticationApi {
125
125
  * @param {String} opts.createIfNotUser
126
126
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/AuthResponse}
127
127
  */
128
- loginFacebook(opts?: { [key: string]: any; [key: string]: any;
129
- apiKey: string;
130
- authorization: string;
131
- createIfNotUser: string;
128
+ loginFacebook(opts?: { [key: string]: any; [key: string]: any; [key: string]: any;
129
+ apiKey?: string;
130
+ authorization?: string;
131
+ createIfNotUser?: string;
132
132
  }): Promise<any>;
133
133
  /**
134
134
  * @param {Object} opts Optional parameters
@@ -145,10 +145,10 @@ export default class AuthenticationApi {
145
145
  * @param {String} opts.createIfNotUser
146
146
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/AuthResponse}
147
147
  */
148
- loginGoogle(opts?: { [key: string]: any; [key: string]: any;
149
- apiKey: string;
150
- authorization: string;
151
- createIfNotUser: string;
148
+ loginGoogle(opts?: { [key: string]: any; [key: string]: any; [key: string]: any;
149
+ apiKey?: string;
150
+ authorization?: string;
151
+ createIfNotUser?: string;
152
152
  }): Promise<any>;
153
153
  /**
154
154
  * @param {Object} opts Optional parameters
@@ -165,10 +165,10 @@ export default class AuthenticationApi {
165
165
  * @param {String} opts.createIfNotUser
166
166
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/AuthResponse}
167
167
  */
168
- loginLinkedIn(opts?: { [key: string]: any; [key: string]: any;
169
- apiKey: string;
170
- authorization: string;
171
- createIfNotUser: string;
168
+ loginLinkedIn(opts?: { [key: string]: any; [key: string]: any; [key: string]: any;
169
+ apiKey?: string;
170
+ authorization?: string;
171
+ createIfNotUser?: string;
172
172
  }): Promise<any>;
173
173
  /**
174
174
  * @param {Object} opts Optional parameters
@@ -185,10 +185,10 @@ export default class AuthenticationApi {
185
185
  * @param {String} opts.createIfNotUser
186
186
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/AuthResponse}
187
187
  */
188
- loginTwitter(opts?: { [key: string]: any; [key: string]: any;
189
- apiKey: string;
190
- authorization: string;
191
- createIfNotUser: string;
188
+ loginTwitter(opts?: { [key: string]: any; [key: string]: any; [key: string]: any;
189
+ apiKey?: string;
190
+ authorization?: string;
191
+ createIfNotUser?: string;
192
192
  }): Promise<any>;
193
193
  /**
194
194
  * @param {Object} opts Optional parameters
@@ -203,9 +203,9 @@ export default class AuthenticationApi {
203
203
  * @param {String} opts.authorization
204
204
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}
205
205
  */
206
- logout(opts?: { [key: string]: any; [key: string]: any;
207
- apiKey: string;
208
- authorization: string;
206
+ logout(opts?: { [key: string]: any; [key: string]: any; [key: string]: any;
207
+ apiKey?: string;
208
+ authorization?: string;
209
209
  }): Promise<any>;
210
210
  }
211
211
  //# sourceMappingURL=AuthenticationApi.d.ts.map