@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.
- package/dist/api/ActionTypesApi.d.ts +11 -11
- package/dist/api/AdCampaignsApi.d.ts +90 -90
- package/dist/api/AdManagementApi.d.ts +135 -135
- package/dist/api/AdminDataManagementApi.d.ts +11 -11
- package/dist/api/AdsApi.d.ts +67 -67
- package/dist/api/AttachmentsApi.d.ts +81 -81
- package/dist/api/AuthenticationApi.d.ts +38 -38
- package/dist/api/CategoriesApi.d.ts +77 -77
- package/dist/api/CommentsApi.d.ts +88 -88
- package/dist/api/ContentManagementApi.d.ts +310 -310
- package/dist/api/ConversationsApi.d.ts +99 -99
- package/dist/api/CurrencyApi.d.ts +58 -58
- package/dist/api/DataSheetImportsApi.d.ts +171 -171
- package/dist/api/DefaultApi.d.ts +60 -60
- package/dist/api/DocumentPartTypesApi.d.ts +23 -23
- package/dist/api/DocumentTypesApi.d.ts +23 -23
- package/dist/api/DocumentsApi.d.ts +143 -143
- package/dist/api/EmailsApi.d.ts +44 -44
- package/dist/api/EntryPartsApi.d.ts +143 -143
- package/dist/api/FacebookApi.d.ts +4 -4
- package/dist/api/FieldsApi.d.ts +33 -33
- package/dist/api/FilesApi.d.ts +13 -13
- package/dist/api/FormsApi.d.ts +199 -199
- package/dist/api/FunctionsApi.d.ts +202 -202
- package/dist/api/GeocodeApi.d.ts +55 -55
- package/dist/api/GobodoManagementApi.d.ts +55 -55
- package/dist/api/GoogleApi.d.ts +4 -4
- package/dist/api/GraphActionTypesApi.d.ts +88 -88
- package/dist/api/GraphActionsApi.d.ts +121 -121
- package/dist/api/GraphObjectTypesApi.d.ts +158 -158
- package/dist/api/GraphObjectsApi.d.ts +714 -714
- package/dist/api/GraphRelationshipTypesApi.d.ts +225 -225
- package/dist/api/GraphRelationshipsApi.d.ts +347 -347
- package/dist/api/GraphSchemasApi.d.ts +126 -126
- package/dist/api/GraphTraversalApi.d.ts +77 -77
- package/dist/api/GraphsApi.d.ts +125 -125
- package/dist/api/GroupsApi.d.ts +123 -123
- package/dist/api/IAMApi.d.ts +45 -45
- package/dist/api/ImagesApi.d.ts +94 -94
- package/dist/api/InvitesApi.d.ts +55 -55
- package/dist/api/LikesApi.d.ts +143 -143
- package/dist/api/LinkedINApi.d.ts +4 -4
- package/dist/api/LiveMeetingsApi.d.ts +22 -22
- package/dist/api/MeetingEventsApi.d.ts +55 -55
- package/dist/api/NotificationsApi.d.ts +160 -160
- package/dist/api/PagesApi.d.ts +102 -102
- package/dist/api/PhoneNumbersApi.d.ts +58 -58
- package/dist/api/PostsApi.d.ts +55 -55
- package/dist/api/PrivateMessagesApi.d.ts +176 -176
- package/dist/api/PublicationsApi.d.ts +11 -11
- package/dist/api/RestApplicationsApi.d.ts +59 -59
- package/dist/api/ScreensApi.d.ts +33 -33
- package/dist/api/SitesApi.d.ts +117 -117
- package/dist/api/SocialIntegrationApi.d.ts +16 -16
- package/dist/api/StripeAccountsApi.d.ts +431 -431
- package/dist/api/TagsApi.d.ts +11 -11
- package/dist/api/TemplatesApi.d.ts +33 -33
- package/dist/api/ThemeMappingsApi.d.ts +34 -34
- package/dist/api/TopicsApi.d.ts +88 -88
- package/dist/api/TwitterApi.d.ts +4 -4
- package/dist/api/UserTagsApi.d.ts +101 -101
- package/dist/api/UsersApi.d.ts +125 -125
- package/dist/api/VideosApi.d.ts +125 -125
- package/dist/api/WalletsApi.d.ts +190 -190
- package/package.json +1 -1
|
@@ -50,17 +50,17 @@ export default class ActionTypesApi {
|
|
|
50
50
|
* @param {String} opts.transactionid The id of the transaction this operation is being run in
|
|
51
51
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link Array.<module:model/GraphAction>}
|
|
52
52
|
*/
|
|
53
|
-
getActionsByType(id: number, actiontypeid: number, opts?: { [key: string]: any; [key: string]: any;
|
|
54
|
-
authorization
|
|
55
|
-
cacheduration
|
|
56
|
-
cachegroup
|
|
57
|
-
cachekey
|
|
58
|
-
cachescope
|
|
59
|
-
cacheuser
|
|
60
|
-
zeusportalPostasApp
|
|
61
|
-
zeusportalPostas
|
|
62
|
-
zeusportalPostasSite
|
|
63
|
-
transactionid
|
|
53
|
+
getActionsByType(id: number, actiontypeid: number, opts?: { [key: string]: any; [key: string]: any; [key: string]: any;
|
|
54
|
+
authorization?: string;
|
|
55
|
+
cacheduration?: number;
|
|
56
|
+
cachegroup?: Array<string>;
|
|
57
|
+
cachekey?: Array<string>;
|
|
58
|
+
cachescope?: any;
|
|
59
|
+
cacheuser?: Array<string>;
|
|
60
|
+
zeusportalPostasApp?: number;
|
|
61
|
+
zeusportalPostas?: number;
|
|
62
|
+
zeusportalPostasSite?: number;
|
|
63
|
+
transactionid?: string;
|
|
64
64
|
}): Promise<any>;
|
|
65
65
|
}
|
|
66
66
|
//# sourceMappingURL=ActionTypesApi.d.ts.map
|
|
@@ -48,18 +48,18 @@ export default class AdCampaignsApi {
|
|
|
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
|
-
createAdCampaign(opts?: { [key: string]: any; [key: string]: any;
|
|
52
|
-
authorization
|
|
53
|
-
cacheduration
|
|
54
|
-
cachegroup
|
|
55
|
-
cachekey
|
|
56
|
-
cachescope
|
|
57
|
-
cacheuser
|
|
58
|
-
zeusportalPostasApp
|
|
59
|
-
zeusportalPostas
|
|
60
|
-
zeusportalPostasSite
|
|
61
|
-
transactionid
|
|
62
|
-
purgeDataDefaultResponseValue
|
|
51
|
+
createAdCampaign(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 AdCampaignsApi {
|
|
|
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
|
|
99
|
-
cacheduration
|
|
100
|
-
cachegroup
|
|
101
|
-
cachekey
|
|
102
|
-
cachescope
|
|
103
|
-
cacheuser
|
|
104
|
-
zeusportalPostasApp
|
|
105
|
-
zeusportalPostas
|
|
106
|
-
zeusportalPostasSite
|
|
107
|
-
transactionid
|
|
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 AdCampaignsApi {
|
|
|
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
|
-
get11(opts?: { [key: string]: any; [key: string]: any;
|
|
141
|
-
authorization
|
|
142
|
-
cacheduration
|
|
143
|
-
cachegroup
|
|
144
|
-
cachekey
|
|
145
|
-
cachescope
|
|
146
|
-
cacheuser
|
|
147
|
-
zeusportalPostasApp
|
|
148
|
-
zeusportalPostas
|
|
149
|
-
zeusportalPostasSite
|
|
150
|
-
transactionid
|
|
140
|
+
get11(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 AdCampaignsApi {
|
|
|
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
|
-
get12(id: number, opts?: { [key: string]: any; [key: string]: any;
|
|
186
|
-
authorization
|
|
187
|
-
cacheduration
|
|
188
|
-
cachegroup
|
|
189
|
-
cachekey
|
|
190
|
-
cachescope
|
|
191
|
-
cacheuser
|
|
192
|
-
zeusportalPostasApp
|
|
193
|
-
zeusportalPostas
|
|
194
|
-
zeusportalPostasSite
|
|
195
|
-
transactionid
|
|
185
|
+
get12(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 AdCampaignsApi {
|
|
|
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
|
-
getFromCat(id: number, opts?: { [key: string]: any; [key: string]: any;
|
|
229
|
-
authorization
|
|
230
|
-
cacheduration
|
|
231
|
-
cachegroup
|
|
232
|
-
cachekey
|
|
233
|
-
cachescope
|
|
234
|
-
cacheuser
|
|
235
|
-
zeusportalPostasApp
|
|
236
|
-
zeusportalPostas
|
|
237
|
-
zeusportalPostasSite
|
|
238
|
-
transactionid
|
|
228
|
+
getFromCat(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 AdCampaignsApi {
|
|
|
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
|
-
update(id: number, opts?: { [key: string]: any; [key: string]: any;
|
|
274
|
-
authorization
|
|
275
|
-
cacheduration
|
|
276
|
-
cachegroup
|
|
277
|
-
cachekey
|
|
278
|
-
cachescope
|
|
279
|
-
cacheuser
|
|
280
|
-
zeusportalPostasApp
|
|
281
|
-
zeusportalPostas
|
|
282
|
-
zeusportalPostasSite
|
|
283
|
-
transactionid
|
|
273
|
+
update(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
|
* @param {Number} id
|
|
@@ -315,18 +315,18 @@ export default class AdCampaignsApi {
|
|
|
315
315
|
* @param {module:model/PurgeDataDefaultResponseValue} opts.purgeDataDefaultResponseValue
|
|
316
316
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/PurgeDataDefaultResponseValue}
|
|
317
317
|
*/
|
|
318
|
-
updateAds(id: number, opts?: { [key: string]: any; [key: string]: any;
|
|
319
|
-
authorization
|
|
320
|
-
cacheduration
|
|
321
|
-
cachegroup
|
|
322
|
-
cachekey
|
|
323
|
-
cachescope
|
|
324
|
-
cacheuser
|
|
325
|
-
zeusportalPostasApp
|
|
326
|
-
zeusportalPostas
|
|
327
|
-
zeusportalPostasSite
|
|
328
|
-
transactionid
|
|
329
|
-
purgeDataDefaultResponseValue
|
|
318
|
+
updateAds(id: number, opts?: { [key: string]: any; [key: string]: any; [key: string]: any;
|
|
319
|
+
authorization?: string;
|
|
320
|
+
cacheduration?: number;
|
|
321
|
+
cachegroup?: Array<string>;
|
|
322
|
+
cachekey?: Array<string>;
|
|
323
|
+
cachescope?: any;
|
|
324
|
+
cacheuser?: Array<string>;
|
|
325
|
+
zeusportalPostasApp?: number;
|
|
326
|
+
zeusportalPostas?: number;
|
|
327
|
+
zeusportalPostasSite?: number;
|
|
328
|
+
transactionid?: string;
|
|
329
|
+
purgeDataDefaultResponseValue?: any;
|
|
330
330
|
}): Promise<any>;
|
|
331
331
|
/**
|
|
332
332
|
* @param {Number} id
|
|
@@ -361,17 +361,17 @@ export default class AdCampaignsApi {
|
|
|
361
361
|
* @param {Array.<module:model/PurgeDataDefaultResponseValue>} opts.purgeDataDefaultResponseValue
|
|
362
362
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}
|
|
363
363
|
*/
|
|
364
|
-
updateSites(id: number, opts?: { [key: string]: any; [key: string]: any;
|
|
365
|
-
authorization
|
|
366
|
-
cacheduration
|
|
367
|
-
cachegroup
|
|
368
|
-
cachekey
|
|
369
|
-
cachescope
|
|
370
|
-
cacheuser
|
|
371
|
-
zeusportalPostasApp
|
|
372
|
-
zeusportalPostas
|
|
373
|
-
zeusportalPostasSite
|
|
374
|
-
transactionid
|
|
364
|
+
updateSites(id: number, opts?: { [key: string]: any; [key: string]: any; [key: string]: any;
|
|
365
|
+
authorization?: string;
|
|
366
|
+
cacheduration?: number;
|
|
367
|
+
cachegroup?: Array<string>;
|
|
368
|
+
cachekey?: Array<string>;
|
|
369
|
+
cachescope?: any;
|
|
370
|
+
cacheuser?: Array<string>;
|
|
371
|
+
zeusportalPostasApp?: number;
|
|
372
|
+
zeusportalPostas?: number;
|
|
373
|
+
zeusportalPostasSite?: number;
|
|
374
|
+
transactionid?: string;
|
|
375
375
|
}): Promise<any>;
|
|
376
376
|
}
|
|
377
377
|
//# sourceMappingURL=AdCampaignsApi.d.ts.map
|
|
@@ -48,18 +48,18 @@ export default class AdManagementApi {
|
|
|
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
|
|
53
|
-
cacheduration
|
|
54
|
-
cachegroup
|
|
55
|
-
cachekey
|
|
56
|
-
cachescope
|
|
57
|
-
cacheuser
|
|
58
|
-
zeusportalPostasApp
|
|
59
|
-
zeusportalPostas
|
|
60
|
-
zeusportalPostasSite
|
|
61
|
-
transactionid
|
|
62
|
-
purgeDataDefaultResponseValue
|
|
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
|
* Create Ad Campaign
|
|
@@ -96,18 +96,18 @@ export default class AdManagementApi {
|
|
|
96
96
|
* @param {module:model/PurgeDataDefaultResponseValue} opts.purgeDataDefaultResponseValue
|
|
97
97
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/PurgeDataDefaultResponseValue}
|
|
98
98
|
*/
|
|
99
|
-
createAdCampaign(opts?: { [key: string]: any; [key: string]: any;
|
|
100
|
-
authorization
|
|
101
|
-
cacheduration
|
|
102
|
-
cachegroup
|
|
103
|
-
cachekey
|
|
104
|
-
cachescope
|
|
105
|
-
cacheuser
|
|
106
|
-
zeusportalPostasApp
|
|
107
|
-
zeusportalPostas
|
|
108
|
-
zeusportalPostasSite
|
|
109
|
-
transactionid
|
|
110
|
-
purgeDataDefaultResponseValue
|
|
99
|
+
createAdCampaign(opts?: { [key: string]: any; [key: string]: any; [key: string]: any;
|
|
100
|
+
authorization?: string;
|
|
101
|
+
cacheduration?: number;
|
|
102
|
+
cachegroup?: Array<string>;
|
|
103
|
+
cachekey?: Array<string>;
|
|
104
|
+
cachescope?: any;
|
|
105
|
+
cacheuser?: Array<string>;
|
|
106
|
+
zeusportalPostasApp?: number;
|
|
107
|
+
zeusportalPostas?: number;
|
|
108
|
+
zeusportalPostasSite?: number;
|
|
109
|
+
transactionid?: string;
|
|
110
|
+
purgeDataDefaultResponseValue?: any;
|
|
111
111
|
}): Promise<any>;
|
|
112
112
|
/**
|
|
113
113
|
* Root for the API
|
|
@@ -140,17 +140,17 @@ export default class AdManagementApi {
|
|
|
140
140
|
* @param {String} opts.transactionid The id of the transaction this operation is being run in
|
|
141
141
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}
|
|
142
142
|
*/
|
|
143
|
-
get11(opts?: { [key: string]: any; [key: string]: any;
|
|
144
|
-
authorization
|
|
145
|
-
cacheduration
|
|
146
|
-
cachegroup
|
|
147
|
-
cachekey
|
|
148
|
-
cachescope
|
|
149
|
-
cacheuser
|
|
150
|
-
zeusportalPostasApp
|
|
151
|
-
zeusportalPostas
|
|
152
|
-
zeusportalPostasSite
|
|
153
|
-
transactionid
|
|
143
|
+
get11(opts?: { [key: string]: any; [key: string]: any; [key: string]: any;
|
|
144
|
+
authorization?: string;
|
|
145
|
+
cacheduration?: number;
|
|
146
|
+
cachegroup?: Array<string>;
|
|
147
|
+
cachekey?: Array<string>;
|
|
148
|
+
cachescope?: any;
|
|
149
|
+
cacheuser?: Array<string>;
|
|
150
|
+
zeusportalPostasApp?: number;
|
|
151
|
+
zeusportalPostas?: number;
|
|
152
|
+
zeusportalPostasSite?: number;
|
|
153
|
+
transactionid?: string;
|
|
154
154
|
}): Promise<any>;
|
|
155
155
|
/**
|
|
156
156
|
* Gets and object by id
|
|
@@ -185,17 +185,17 @@ export default class AdManagementApi {
|
|
|
185
185
|
* @param {String} opts.transactionid The id of the transaction this operation is being run in
|
|
186
186
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link Object.<String, module:model/{String: PurgeDataDefaultResponseValue}>}
|
|
187
187
|
*/
|
|
188
|
-
get12(id: number, opts?: { [key: string]: any; [key: string]: any;
|
|
189
|
-
authorization
|
|
190
|
-
cacheduration
|
|
191
|
-
cachegroup
|
|
192
|
-
cachekey
|
|
193
|
-
cachescope
|
|
194
|
-
cacheuser
|
|
195
|
-
zeusportalPostasApp
|
|
196
|
-
zeusportalPostas
|
|
197
|
-
zeusportalPostasSite
|
|
198
|
-
transactionid
|
|
188
|
+
get12(id: number, opts?: { [key: string]: any; [key: string]: any; [key: string]: any;
|
|
189
|
+
authorization?: string;
|
|
190
|
+
cacheduration?: number;
|
|
191
|
+
cachegroup?: Array<string>;
|
|
192
|
+
cachekey?: Array<string>;
|
|
193
|
+
cachescope?: any;
|
|
194
|
+
cacheuser?: Array<string>;
|
|
195
|
+
zeusportalPostasApp?: number;
|
|
196
|
+
zeusportalPostas?: number;
|
|
197
|
+
zeusportalPostasSite?: number;
|
|
198
|
+
transactionid?: string;
|
|
199
199
|
}): Promise<any>;
|
|
200
200
|
/**
|
|
201
201
|
* Root for the API
|
|
@@ -228,17 +228,17 @@ export default class AdManagementApi {
|
|
|
228
228
|
* @param {String} opts.transactionid The id of the transaction this operation is being run in
|
|
229
229
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}
|
|
230
230
|
*/
|
|
231
|
-
get13(opts?: { [key: string]: any; [key: string]: any;
|
|
232
|
-
authorization
|
|
233
|
-
cacheduration
|
|
234
|
-
cachegroup
|
|
235
|
-
cachekey
|
|
236
|
-
cachescope
|
|
237
|
-
cacheuser
|
|
238
|
-
zeusportalPostasApp
|
|
239
|
-
zeusportalPostas
|
|
240
|
-
zeusportalPostasSite
|
|
241
|
-
transactionid
|
|
231
|
+
get13(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
|
* Gets and object by id
|
|
@@ -273,17 +273,17 @@ export default class AdManagementApi {
|
|
|
273
273
|
* @param {String} opts.transactionid The id of the transaction this operation is being run in
|
|
274
274
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link Object.<String, module:model/{String: PurgeDataDefaultResponseValue}>}
|
|
275
275
|
*/
|
|
276
|
-
get14(id: number, opts?: { [key: string]: any; [key: string]: any;
|
|
277
|
-
authorization
|
|
278
|
-
cacheduration
|
|
279
|
-
cachegroup
|
|
280
|
-
cachekey
|
|
281
|
-
cachescope
|
|
282
|
-
cacheuser
|
|
283
|
-
zeusportalPostasApp
|
|
284
|
-
zeusportalPostas
|
|
285
|
-
zeusportalPostasSite
|
|
286
|
-
transactionid
|
|
276
|
+
get14(id: number, opts?: { [key: string]: any; [key: string]: any; [key: string]: any;
|
|
277
|
+
authorization?: string;
|
|
278
|
+
cacheduration?: number;
|
|
279
|
+
cachegroup?: Array<string>;
|
|
280
|
+
cachekey?: Array<string>;
|
|
281
|
+
cachescope?: any;
|
|
282
|
+
cacheuser?: Array<string>;
|
|
283
|
+
zeusportalPostasApp?: number;
|
|
284
|
+
zeusportalPostas?: number;
|
|
285
|
+
zeusportalPostasSite?: number;
|
|
286
|
+
transactionid?: string;
|
|
287
287
|
}): Promise<any>;
|
|
288
288
|
/**
|
|
289
289
|
* @param {Number} id
|
|
@@ -316,17 +316,17 @@ export default class AdManagementApi {
|
|
|
316
316
|
* @param {String} opts.transactionid The id of the transaction this operation is being run in
|
|
317
317
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link Object.<String, module:model/{String: PurgeDataDefaultResponseValue}>}
|
|
318
318
|
*/
|
|
319
|
-
getCampaign(id: number, opts?: { [key: string]: any; [key: string]: any;
|
|
320
|
-
authorization
|
|
321
|
-
cacheduration
|
|
322
|
-
cachegroup
|
|
323
|
-
cachekey
|
|
324
|
-
cachescope
|
|
325
|
-
cacheuser
|
|
326
|
-
zeusportalPostasApp
|
|
327
|
-
zeusportalPostas
|
|
328
|
-
zeusportalPostasSite
|
|
329
|
-
transactionid
|
|
319
|
+
getCampaign(id: number, opts?: { [key: string]: any; [key: string]: any; [key: string]: any;
|
|
320
|
+
authorization?: string;
|
|
321
|
+
cacheduration?: number;
|
|
322
|
+
cachegroup?: Array<string>;
|
|
323
|
+
cachekey?: Array<string>;
|
|
324
|
+
cachescope?: any;
|
|
325
|
+
cacheuser?: Array<string>;
|
|
326
|
+
zeusportalPostasApp?: number;
|
|
327
|
+
zeusportalPostas?: number;
|
|
328
|
+
zeusportalPostasSite?: number;
|
|
329
|
+
transactionid?: string;
|
|
330
330
|
}): Promise<any>;
|
|
331
331
|
/**
|
|
332
332
|
* @param {Number} id
|
|
@@ -359,17 +359,17 @@ export default class AdManagementApi {
|
|
|
359
359
|
* @param {String} opts.transactionid The id of the transaction this operation is being run in
|
|
360
360
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link Object.<String, module:model/{String: PurgeDataDefaultResponseValue}>}
|
|
361
361
|
*/
|
|
362
|
-
getFromCat(id: number, opts?: { [key: string]: any; [key: string]: any;
|
|
363
|
-
authorization
|
|
364
|
-
cacheduration
|
|
365
|
-
cachegroup
|
|
366
|
-
cachekey
|
|
367
|
-
cachescope
|
|
368
|
-
cacheuser
|
|
369
|
-
zeusportalPostasApp
|
|
370
|
-
zeusportalPostas
|
|
371
|
-
zeusportalPostasSite
|
|
372
|
-
transactionid
|
|
362
|
+
getFromCat(id: number, opts?: { [key: string]: any; [key: string]: any; [key: string]: any;
|
|
363
|
+
authorization?: string;
|
|
364
|
+
cacheduration?: number;
|
|
365
|
+
cachegroup?: Array<string>;
|
|
366
|
+
cachekey?: Array<string>;
|
|
367
|
+
cachescope?: any;
|
|
368
|
+
cacheuser?: Array<string>;
|
|
369
|
+
zeusportalPostasApp?: number;
|
|
370
|
+
zeusportalPostas?: number;
|
|
371
|
+
zeusportalPostasSite?: number;
|
|
372
|
+
transactionid?: string;
|
|
373
373
|
}): Promise<any>;
|
|
374
374
|
/**
|
|
375
375
|
* @param {Number} id
|
|
@@ -404,17 +404,17 @@ export default class AdManagementApi {
|
|
|
404
404
|
* @param {Object.<String, module:model/{String: PurgeDataDefaultResponseValue}>} opts.requestBody
|
|
405
405
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/PurgeDataDefaultResponseValue}
|
|
406
406
|
*/
|
|
407
|
-
update(id: number, opts?: { [key: string]: any; [key: string]: any;
|
|
408
|
-
authorization
|
|
409
|
-
cacheduration
|
|
410
|
-
cachegroup
|
|
411
|
-
cachekey
|
|
412
|
-
cachescope
|
|
413
|
-
cacheuser
|
|
414
|
-
zeusportalPostasApp
|
|
415
|
-
zeusportalPostas
|
|
416
|
-
zeusportalPostasSite
|
|
417
|
-
transactionid
|
|
407
|
+
update(id: number, opts?: { [key: string]: any; [key: string]: any; [key: string]: any;
|
|
408
|
+
authorization?: string;
|
|
409
|
+
cacheduration?: number;
|
|
410
|
+
cachegroup?: Array<string>;
|
|
411
|
+
cachekey?: Array<string>;
|
|
412
|
+
cachescope?: any;
|
|
413
|
+
cacheuser?: Array<string>;
|
|
414
|
+
zeusportalPostasApp?: number;
|
|
415
|
+
zeusportalPostas?: number;
|
|
416
|
+
zeusportalPostasSite?: number;
|
|
417
|
+
transactionid?: string;
|
|
418
418
|
}): Promise<any>;
|
|
419
419
|
/**
|
|
420
420
|
* @param {Number} id
|
|
@@ -449,17 +449,17 @@ export default class AdManagementApi {
|
|
|
449
449
|
* @param {Object.<String, module:model/{String: PurgeDataDefaultResponseValue}>} opts.requestBody
|
|
450
450
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/PurgeDataDefaultResponseValue}
|
|
451
451
|
*/
|
|
452
|
-
update1(id: number, opts?: { [key: string]: any; [key: string]: any;
|
|
453
|
-
authorization
|
|
454
|
-
cacheduration
|
|
455
|
-
cachegroup
|
|
456
|
-
cachekey
|
|
457
|
-
cachescope
|
|
458
|
-
cacheuser
|
|
459
|
-
zeusportalPostasApp
|
|
460
|
-
zeusportalPostas
|
|
461
|
-
zeusportalPostasSite
|
|
462
|
-
transactionid
|
|
452
|
+
update1(id: number, opts?: { [key: string]: any; [key: string]: any; [key: string]: any;
|
|
453
|
+
authorization?: string;
|
|
454
|
+
cacheduration?: number;
|
|
455
|
+
cachegroup?: Array<string>;
|
|
456
|
+
cachekey?: Array<string>;
|
|
457
|
+
cachescope?: any;
|
|
458
|
+
cacheuser?: Array<string>;
|
|
459
|
+
zeusportalPostasApp?: number;
|
|
460
|
+
zeusportalPostas?: number;
|
|
461
|
+
zeusportalPostasSite?: number;
|
|
462
|
+
transactionid?: string;
|
|
463
463
|
}): Promise<any>;
|
|
464
464
|
/**
|
|
465
465
|
* @param {Number} id
|
|
@@ -494,18 +494,18 @@ export default class AdManagementApi {
|
|
|
494
494
|
* @param {module:model/PurgeDataDefaultResponseValue} opts.purgeDataDefaultResponseValue
|
|
495
495
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/PurgeDataDefaultResponseValue}
|
|
496
496
|
*/
|
|
497
|
-
updateAds(id: number, opts?: { [key: string]: any; [key: string]: any;
|
|
498
|
-
authorization
|
|
499
|
-
cacheduration
|
|
500
|
-
cachegroup
|
|
501
|
-
cachekey
|
|
502
|
-
cachescope
|
|
503
|
-
cacheuser
|
|
504
|
-
zeusportalPostasApp
|
|
505
|
-
zeusportalPostas
|
|
506
|
-
zeusportalPostasSite
|
|
507
|
-
transactionid
|
|
508
|
-
purgeDataDefaultResponseValue
|
|
497
|
+
updateAds(id: number, opts?: { [key: string]: any; [key: string]: any; [key: string]: any;
|
|
498
|
+
authorization?: string;
|
|
499
|
+
cacheduration?: number;
|
|
500
|
+
cachegroup?: Array<string>;
|
|
501
|
+
cachekey?: Array<string>;
|
|
502
|
+
cachescope?: any;
|
|
503
|
+
cacheuser?: Array<string>;
|
|
504
|
+
zeusportalPostasApp?: number;
|
|
505
|
+
zeusportalPostas?: number;
|
|
506
|
+
zeusportalPostasSite?: number;
|
|
507
|
+
transactionid?: string;
|
|
508
|
+
purgeDataDefaultResponseValue?: any;
|
|
509
509
|
}): Promise<any>;
|
|
510
510
|
/**
|
|
511
511
|
* @param {Number} id
|
|
@@ -540,17 +540,17 @@ export default class AdManagementApi {
|
|
|
540
540
|
* @param {Array.<module:model/PurgeDataDefaultResponseValue>} opts.purgeDataDefaultResponseValue
|
|
541
541
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}
|
|
542
542
|
*/
|
|
543
|
-
updateSites(id: number, opts?: { [key: string]: any; [key: string]: any;
|
|
544
|
-
authorization
|
|
545
|
-
cacheduration
|
|
546
|
-
cachegroup
|
|
547
|
-
cachekey
|
|
548
|
-
cachescope
|
|
549
|
-
cacheuser
|
|
550
|
-
zeusportalPostasApp
|
|
551
|
-
zeusportalPostas
|
|
552
|
-
zeusportalPostasSite
|
|
553
|
-
transactionid
|
|
543
|
+
updateSites(id: number, opts?: { [key: string]: any; [key: string]: any; [key: string]: any;
|
|
544
|
+
authorization?: string;
|
|
545
|
+
cacheduration?: number;
|
|
546
|
+
cachegroup?: Array<string>;
|
|
547
|
+
cachekey?: Array<string>;
|
|
548
|
+
cachescope?: any;
|
|
549
|
+
cacheuser?: Array<string>;
|
|
550
|
+
zeusportalPostasApp?: number;
|
|
551
|
+
zeusportalPostas?: number;
|
|
552
|
+
zeusportalPostasSite?: number;
|
|
553
|
+
transactionid?: string;
|
|
554
554
|
}): Promise<any>;
|
|
555
555
|
}
|
|
556
556
|
//# sourceMappingURL=AdManagementApi.d.ts.map
|
|
@@ -46,17 +46,17 @@ export default class AdminDataManagementApi {
|
|
|
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}, with data of type {@link Object.<String, module:model/{String: PurgeDataDefaultResponseValue}>}
|
|
48
48
|
*/
|
|
49
|
-
purgeData(key: string, days: number, opts?: { [key: string]: any; [key: string]: any;
|
|
50
|
-
authorization
|
|
51
|
-
cacheduration
|
|
52
|
-
cachegroup
|
|
53
|
-
cachekey
|
|
54
|
-
cachescope
|
|
55
|
-
cacheuser
|
|
56
|
-
zeusportalPostasApp
|
|
57
|
-
zeusportalPostas
|
|
58
|
-
zeusportalPostasSite
|
|
59
|
-
transactionid
|
|
49
|
+
purgeData(key: string, days: 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
|
//# sourceMappingURL=AdminDataManagementApi.d.ts.map
|