@gobodo/gobodo-api-promise 0.1.34
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 +794 -0
- package/dist/ApiClient.js +720 -0
- package/dist/api/ActionTypesApi.js +113 -0
- package/dist/api/AdCampaignsApi.js +500 -0
- package/dist/api/AdManagementApi.js +722 -0
- package/dist/api/AdminDataManagementApi.js +111 -0
- package/dist/api/AdsApi.js +384 -0
- package/dist/api/AttachmentsApi.js +465 -0
- package/dist/api/AuthenticationApi.js +418 -0
- package/dist/api/CategoriesApi.js +451 -0
- package/dist/api/CommentsApi.js +520 -0
- package/dist/api/ContentManagementApi.js +1491 -0
- package/dist/api/ConversationsApi.js +559 -0
- package/dist/api/DataSheetImportsApi.js +1066 -0
- package/dist/api/DefaultApi.js +696 -0
- package/dist/api/DocumentsApi.js +807 -0
- package/dist/api/EntryPartsApi.js +847 -0
- package/dist/api/FacebookApi.js +88 -0
- package/dist/api/FieldsApi.js +243 -0
- package/dist/api/FilesApi.js +116 -0
- package/dist/api/FormsApi.js +1136 -0
- package/dist/api/FunctionsApi.js +111 -0
- package/dist/api/GeocodeApi.js +340 -0
- package/dist/api/GoogleApi.js +88 -0
- package/dist/api/GraphActionsApi.js +674 -0
- package/dist/api/GraphObjectTypesApi.js +527 -0
- package/dist/api/GraphObjectsApi.js +4026 -0
- package/dist/api/GraphRelationshipTypesApi.js +1055 -0
- package/dist/api/GraphRelationshipsApi.js +1921 -0
- package/dist/api/GraphSchemasApi.js +459 -0
- package/dist/api/GraphTraversalApi.js +415 -0
- package/dist/api/GraphsApi.js +716 -0
- package/dist/api/GroupsApi.js +731 -0
- package/dist/api/IAMApi.js +268 -0
- package/dist/api/ImagesApi.js +535 -0
- package/dist/api/InvitesApi.js +339 -0
- package/dist/api/LikesApi.js +785 -0
- package/dist/api/LinkedINApi.js +88 -0
- package/dist/api/LiveMeetingsApi.js +175 -0
- package/dist/api/MeetingEventsApi.js +358 -0
- package/dist/api/PagesApi.js +605 -0
- package/dist/api/PostsApi.js +330 -0
- package/dist/api/PrivateMessagesApi.js +965 -0
- package/dist/api/PublicationsApi.js +103 -0
- package/dist/api/ScreensApi.js +224 -0
- package/dist/api/SocialIntegrationApi.js +214 -0
- package/dist/api/StripeAccountsApi.js +2309 -0
- package/dist/api/TagsApi.js +111 -0
- package/dist/api/TemplatesApi.js +224 -0
- package/dist/api/ThemeMappingsApi.js +219 -0
- package/dist/api/TransactionsApi.js +161 -0
- package/dist/api/TwitterApi.js +88 -0
- package/dist/api/UserTagsApi.js +592 -0
- package/dist/api/UsersApi.js +591 -0
- package/dist/api/UtilsApi.js +80 -0
- package/dist/api/VideosApi.js +709 -0
- package/dist/index.js +1301 -0
- package/dist/model/APIClient.js +354 -0
- package/dist/model/AccountSessionInput.js +222 -0
- package/dist/model/AccountSessionResponse.js +171 -0
- package/dist/model/ApplicationPaymentAccountResponse.js +185 -0
- package/dist/model/ApplicationPaymentAccountResponseFailureException.js +265 -0
- package/dist/model/ApplicationPaymentAccountResponseFailureExceptionCause.js +234 -0
- package/dist/model/ApplicationPaymentAccountResponseFailureExceptionCauseStackTraceInner.js +303 -0
- package/dist/model/ApplicationPaymentAccountResponseFailureExceptionCauseSuppressedInner.js +187 -0
- package/dist/model/Article.js +668 -0
- package/dist/model/Authorization.js +166 -0
- package/dist/model/Balance.js +267 -0
- package/dist/model/BalanceDetails.js +164 -0
- package/dist/model/BalanceResponse.js +139 -0
- package/dist/model/BankAccountInfo.js +232 -0
- package/dist/model/CardInfo.js +213 -0
- package/dist/model/Comment.js +495 -0
- package/dist/model/Coordinates.js +129 -0
- package/dist/model/CreateAccountResponse.js +233 -0
- package/dist/model/CreateStripeAccountInput.js +216 -0
- package/dist/model/CreateStripeCustomerInput.js +195 -0
- package/dist/model/CustomerResponse.js +168 -0
- package/dist/model/DataObject.js +129 -0
- package/dist/model/DataSheetImport.js +732 -0
- package/dist/model/DataSheetImportPrivacySettings.js +154 -0
- package/dist/model/DataSheetImportSummary.js +206 -0
- package/dist/model/Document.js +743 -0
- package/dist/model/DocumentPart.js +612 -0
- package/dist/model/DocumentPartType.js +358 -0
- package/dist/model/DocumentType.js +458 -0
- package/dist/model/FieldMapping.js +185 -0
- package/dist/model/Fields.js +737 -0
- package/dist/model/File.js +341 -0
- package/dist/model/FileAttachmentUploadObject.js +341 -0
- package/dist/model/Filter.js +137 -0
- package/dist/model/FilterManager.js +154 -0
- package/dist/model/Form.js +393 -0
- package/dist/model/FormSection.js +304 -0
- package/dist/model/FormSubmission.js +238 -0
- package/dist/model/Geocode.js +191 -0
- package/dist/model/GeocodePayload.js +141 -0
- package/dist/model/GeolocationInput.js +216 -0
- package/dist/model/Graph.js +499 -0
- package/dist/model/GraphAction.js +298 -0
- package/dist/model/GraphDatabaseService.js +254 -0
- package/dist/model/GraphGeocode.js +282 -0
- package/dist/model/GraphIteratorEntryPart.js +129 -0
- package/dist/model/GraphObject.js +454 -0
- package/dist/model/GraphObjectPayload.js +430 -0
- package/dist/model/GraphObjectSchema.js +545 -0
- package/dist/model/GraphObjectType.js +626 -0
- package/dist/model/GraphObjectTypeSchema.js +645 -0
- package/dist/model/GraphOwner.js +158 -0
- package/dist/model/GraphRelationObjectObject.js +273 -0
- package/dist/model/GraphRelationship.js +301 -0
- package/dist/model/GraphRelationshipPayload.js +214 -0
- package/dist/model/GraphRelationshipType.js +675 -0
- package/dist/model/GraphSchema.js +645 -0
- package/dist/model/GraphTraversalInput.js +1125 -0
- package/dist/model/Image.js +449 -0
- package/dist/model/ImageUploadObject.js +449 -0
- package/dist/model/InputPart.js +191 -0
- package/dist/model/InputPartMediaType.js +214 -0
- package/dist/model/Link.js +305 -0
- package/dist/model/LiveStreamInfo.js +167 -0
- package/dist/model/MeetingEvent.js +591 -0
- package/dist/model/MeetingEventTimezone.js +187 -0
- package/dist/model/MeetingInfo.js +220 -0
- package/dist/model/Member.js +525 -0
- package/dist/model/MemberGroupCategory.js +237 -0
- package/dist/model/MemberList.js +96 -0
- package/dist/model/MessageGroup.js +160 -0
- package/dist/model/MultipartBody.js +133 -0
- package/dist/model/Objecttype.js +615 -0
- package/dist/model/Page.js +370 -0
- package/dist/model/PageSchema.js +482 -0
- package/dist/model/Pageable.js +235 -0
- package/dist/model/Path.js +110 -0
- package/dist/model/PaymentAccountObject.js +209 -0
- package/dist/model/PaymentIntentInput.js +214 -0
- package/dist/model/PaymentIntentResponse.js +137 -0
- package/dist/model/PaymentMethod.js +319 -0
- package/dist/model/PaymentMethodInput.js +291 -0
- package/dist/model/PaymentMethodResponse.js +139 -0
- package/dist/model/PaymentMethodsResponse.js +158 -0
- package/dist/model/Payout.js +313 -0
- package/dist/model/PayoutInput.js +347 -0
- package/dist/model/PayoutResponse.js +142 -0
- package/dist/model/Post.js +368 -0
- package/dist/model/PrivateMessage.js +494 -0
- package/dist/model/PrivateMessageConversation.js +520 -0
- package/dist/model/PrivateMessageConversationSchema.js +268 -0
- package/dist/model/Profile.js +191 -0
- package/dist/model/Profiletype.js +210 -0
- package/dist/model/PropertyContainer.js +162 -0
- package/dist/model/PurgeDataDefaultResponseValue.js +151 -0
- package/dist/model/RelationshipMapping.js +264 -0
- package/dist/model/ScreenSchema.js +834 -0
- package/dist/model/SimulcastInfo.js +175 -0
- package/dist/model/SkinField.js +737 -0
- package/dist/model/SocialGroup.js +602 -0
- package/dist/model/SocialGroupType.js +327 -0
- package/dist/model/Sort.js +154 -0
- package/dist/model/SourceTypes.js +154 -0
- package/dist/model/StatusUpdate.js +312 -0
- package/dist/model/StreetAddress.js +224 -0
- package/dist/model/StripeAccount.js +272 -0
- package/dist/model/StripeCustomerAccount.js +212 -0
- package/dist/model/Template.js +272 -0
- package/dist/model/TemplateSchema.js +300 -0
- package/dist/model/ThemeMapping.js +245 -0
- package/dist/model/ThemeMappingPayload.js +239 -0
- package/dist/model/Transaction.js +137 -0
- package/dist/model/Transfer.js +286 -0
- package/dist/model/TransferInput.js +288 -0
- package/dist/model/TransferResponse.js +173 -0
- package/dist/model/TransferResponsePaymentMethodDetails.js +286 -0
- package/dist/model/TraversalRelationResponse.js +176 -0
- package/dist/model/User.js +525 -0
- package/dist/model/UserDataPayload.js +525 -0
- package/dist/model/UserDomain.js +191 -0
- package/dist/model/UserInvite.js +404 -0
- package/dist/model/UserInviteInput.js +245 -0
- package/dist/model/UserSchema.js +525 -0
- package/dist/model/UserTag.js +246 -0
- package/dist/model/Userid.js +133 -0
- package/dist/model/Video.js +632 -0
- package/dist/model/VideoLiveUrl.js +137 -0
- package/dist/model/VideoSchema.js +717 -0
- package/dist/model/VideoUploadObject.js +632 -0
- package/dist/model/ZeusPortalCategory.js +434 -0
- package/package.json +46 -0
|
@@ -0,0 +1,722 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports["default"] = void 0;
|
|
7
|
+
var _ApiClient = _interopRequireDefault(require("../ApiClient"));
|
|
8
|
+
var _PurgeDataDefaultResponseValue = _interopRequireDefault(require("../model/PurgeDataDefaultResponseValue"));
|
|
9
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
10
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
11
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
12
|
+
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
13
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
14
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
15
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } /**
|
|
16
|
+
* gobodo-api
|
|
17
|
+
* REST Interface for Gobodo API
|
|
18
|
+
*
|
|
19
|
+
* The version of the OpenAPI document: 0.1.34
|
|
20
|
+
* Contact: info@gobodo.io
|
|
21
|
+
*
|
|
22
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
23
|
+
* https://openapi-generator.tech
|
|
24
|
+
* Do not edit the class manually.
|
|
25
|
+
*
|
|
26
|
+
*/
|
|
27
|
+
/**
|
|
28
|
+
* AdManagement service.
|
|
29
|
+
* @module api/AdManagementApi
|
|
30
|
+
* @version 0.1.34
|
|
31
|
+
*/
|
|
32
|
+
var AdManagementApi = exports["default"] = /*#__PURE__*/function () {
|
|
33
|
+
/**
|
|
34
|
+
* Constructs a new AdManagementApi.
|
|
35
|
+
* @alias module:api/AdManagementApi
|
|
36
|
+
* @class
|
|
37
|
+
* @param {module:ApiClient} [apiClient] Optional API client implementation to use,
|
|
38
|
+
* default to {@link module:ApiClient#instance} if unspecified.
|
|
39
|
+
*/
|
|
40
|
+
function AdManagementApi(apiClient) {
|
|
41
|
+
_classCallCheck(this, AdManagementApi);
|
|
42
|
+
this.apiClient = apiClient || _ApiClient["default"].instance;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
/**
|
|
46
|
+
* Create Ad
|
|
47
|
+
* Creates a new Ad object
|
|
48
|
+
* @param {Object} opts Optional parameters
|
|
49
|
+
* @param {String} [authorization] The authorization token of the logged in user
|
|
50
|
+
* @param {Number} [zeusportalPostasApp] The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
51
|
+
* @param {Number} [zeusportalPostas] The id of the organization page this operation is being performed as if the caller chooses to post as an organization page
|
|
52
|
+
* @param {Number} [zeusportalPostasSite] The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
53
|
+
* @param {String} [transactionid] The id of the transaction this operation is being run in
|
|
54
|
+
* @param {module:model/PurgeDataDefaultResponseValue} [purgeDataDefaultResponseValue]
|
|
55
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/PurgeDataDefaultResponseValue} and HTTP response
|
|
56
|
+
*/
|
|
57
|
+
_createClass(AdManagementApi, [{
|
|
58
|
+
key: "createAdWithHttpInfo",
|
|
59
|
+
value: function createAdWithHttpInfo(opts) {
|
|
60
|
+
opts = opts || {};
|
|
61
|
+
var postBody = opts['purgeDataDefaultResponseValue'];
|
|
62
|
+
var pathParams = {};
|
|
63
|
+
var queryParams = {};
|
|
64
|
+
var headerParams = {
|
|
65
|
+
'Authorization': opts['authorization'],
|
|
66
|
+
'zeusportal-postas-app': opts['zeusportalPostasApp'],
|
|
67
|
+
'zeusportal-postas': opts['zeusportalPostas'],
|
|
68
|
+
'zeusportal-postas-site': opts['zeusportalPostasSite'],
|
|
69
|
+
'transactionid': opts['transactionid']
|
|
70
|
+
};
|
|
71
|
+
var formParams = {};
|
|
72
|
+
var authNames = ['NexusGraphAPIAuth', 'NexusGraphAPIKey'];
|
|
73
|
+
var contentTypes = [];
|
|
74
|
+
var accepts = ['*/*'];
|
|
75
|
+
var returnType = _PurgeDataDefaultResponseValue["default"];
|
|
76
|
+
return this.apiClient.callApi('/graph/data/ads/ads', 'POST', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
/**
|
|
80
|
+
* Create Ad
|
|
81
|
+
* Creates a new Ad object
|
|
82
|
+
* @param {Object} opts Optional parameters
|
|
83
|
+
* @param {String} opts.authorization The authorization token of the logged in user
|
|
84
|
+
* @param {Number} opts.zeusportalPostasApp The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
85
|
+
* @param {Number} opts.zeusportalPostas The id of the organization page this operation is being performed as if the caller chooses to post as an organization page
|
|
86
|
+
* @param {Number} opts.zeusportalPostasSite The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
87
|
+
* @param {String} opts.transactionid The id of the transaction this operation is being run in
|
|
88
|
+
* @param {module:model/PurgeDataDefaultResponseValue} opts.purgeDataDefaultResponseValue
|
|
89
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/PurgeDataDefaultResponseValue}
|
|
90
|
+
*/
|
|
91
|
+
}, {
|
|
92
|
+
key: "createAd",
|
|
93
|
+
value: function createAd(opts) {
|
|
94
|
+
return this.createAdWithHttpInfo(opts).then(function (response_and_data) {
|
|
95
|
+
return response_and_data.data;
|
|
96
|
+
});
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
/**
|
|
100
|
+
* Create Ad Campaign
|
|
101
|
+
* Creates a new ad campaign
|
|
102
|
+
* @param {Object} opts Optional parameters
|
|
103
|
+
* @param {String} [authorization] The authorization token of the logged in user
|
|
104
|
+
* @param {Number} [zeusportalPostasApp] The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
105
|
+
* @param {Number} [zeusportalPostas] The id of the organization page this operation is being performed as if the caller chooses to post as an organization page
|
|
106
|
+
* @param {Number} [zeusportalPostasSite] The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
107
|
+
* @param {String} [transactionid] The id of the transaction this operation is being run in
|
|
108
|
+
* @param {module:model/PurgeDataDefaultResponseValue} [purgeDataDefaultResponseValue]
|
|
109
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/PurgeDataDefaultResponseValue} and HTTP response
|
|
110
|
+
*/
|
|
111
|
+
}, {
|
|
112
|
+
key: "createAdCampaignWithHttpInfo",
|
|
113
|
+
value: function createAdCampaignWithHttpInfo(opts) {
|
|
114
|
+
opts = opts || {};
|
|
115
|
+
var postBody = opts['purgeDataDefaultResponseValue'];
|
|
116
|
+
var pathParams = {};
|
|
117
|
+
var queryParams = {};
|
|
118
|
+
var headerParams = {
|
|
119
|
+
'Authorization': opts['authorization'],
|
|
120
|
+
'zeusportal-postas-app': opts['zeusportalPostasApp'],
|
|
121
|
+
'zeusportal-postas': opts['zeusportalPostas'],
|
|
122
|
+
'zeusportal-postas-site': opts['zeusportalPostasSite'],
|
|
123
|
+
'transactionid': opts['transactionid']
|
|
124
|
+
};
|
|
125
|
+
var formParams = {};
|
|
126
|
+
var authNames = ['NexusGraphAPIAuth', 'NexusGraphAPIKey'];
|
|
127
|
+
var contentTypes = [];
|
|
128
|
+
var accepts = ['*/*'];
|
|
129
|
+
var returnType = _PurgeDataDefaultResponseValue["default"];
|
|
130
|
+
return this.apiClient.callApi('/graph/data/ads/campaigns', 'POST', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
/**
|
|
134
|
+
* Create Ad Campaign
|
|
135
|
+
* Creates a new ad campaign
|
|
136
|
+
* @param {Object} opts Optional parameters
|
|
137
|
+
* @param {String} opts.authorization The authorization token of the logged in user
|
|
138
|
+
* @param {Number} opts.zeusportalPostasApp The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
139
|
+
* @param {Number} opts.zeusportalPostas The id of the organization page this operation is being performed as if the caller chooses to post as an organization page
|
|
140
|
+
* @param {Number} opts.zeusportalPostasSite The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
141
|
+
* @param {String} opts.transactionid The id of the transaction this operation is being run in
|
|
142
|
+
* @param {module:model/PurgeDataDefaultResponseValue} opts.purgeDataDefaultResponseValue
|
|
143
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/PurgeDataDefaultResponseValue}
|
|
144
|
+
*/
|
|
145
|
+
}, {
|
|
146
|
+
key: "createAdCampaign",
|
|
147
|
+
value: function createAdCampaign(opts) {
|
|
148
|
+
return this.createAdCampaignWithHttpInfo(opts).then(function (response_and_data) {
|
|
149
|
+
return response_and_data.data;
|
|
150
|
+
});
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
/**
|
|
154
|
+
* Root for the API
|
|
155
|
+
* @param {Object} opts Optional parameters
|
|
156
|
+
* @param {String} [authorization] The authorization token of the logged in user
|
|
157
|
+
* @param {Number} [zeusportalPostasApp] The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
158
|
+
* @param {Number} [zeusportalPostas] The id of the organization page this operation is being performed as if the caller chooses to post as an organization page
|
|
159
|
+
* @param {Number} [zeusportalPostasSite] The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
160
|
+
* @param {String} [transactionid] The id of the transaction this operation is being run in
|
|
161
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing HTTP response
|
|
162
|
+
*/
|
|
163
|
+
}, {
|
|
164
|
+
key: "get17WithHttpInfo",
|
|
165
|
+
value: function get17WithHttpInfo(opts) {
|
|
166
|
+
opts = opts || {};
|
|
167
|
+
var postBody = null;
|
|
168
|
+
var pathParams = {};
|
|
169
|
+
var queryParams = {};
|
|
170
|
+
var headerParams = {
|
|
171
|
+
'Authorization': opts['authorization'],
|
|
172
|
+
'zeusportal-postas-app': opts['zeusportalPostasApp'],
|
|
173
|
+
'zeusportal-postas': opts['zeusportalPostas'],
|
|
174
|
+
'zeusportal-postas-site': opts['zeusportalPostasSite'],
|
|
175
|
+
'transactionid': opts['transactionid']
|
|
176
|
+
};
|
|
177
|
+
var formParams = {};
|
|
178
|
+
var authNames = ['NexusGraphAPIAuth', 'NexusGraphAPIKey'];
|
|
179
|
+
var contentTypes = [];
|
|
180
|
+
var accepts = ['*/*'];
|
|
181
|
+
var returnType = null;
|
|
182
|
+
return this.apiClient.callApi('/graph/data/ads/campaigns', 'GET', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
/**
|
|
186
|
+
* Root for the API
|
|
187
|
+
* @param {Object} opts Optional parameters
|
|
188
|
+
* @param {String} opts.authorization The authorization token of the logged in user
|
|
189
|
+
* @param {Number} opts.zeusportalPostasApp The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
190
|
+
* @param {Number} opts.zeusportalPostas The id of the organization page this operation is being performed as if the caller chooses to post as an organization page
|
|
191
|
+
* @param {Number} opts.zeusportalPostasSite The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
192
|
+
* @param {String} opts.transactionid The id of the transaction this operation is being run in
|
|
193
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}
|
|
194
|
+
*/
|
|
195
|
+
}, {
|
|
196
|
+
key: "get17",
|
|
197
|
+
value: function get17(opts) {
|
|
198
|
+
return this.get17WithHttpInfo(opts).then(function (response_and_data) {
|
|
199
|
+
return response_and_data.data;
|
|
200
|
+
});
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
/**
|
|
204
|
+
* Gets and object by id
|
|
205
|
+
* @param {Number} id
|
|
206
|
+
* @param {Object} opts Optional parameters
|
|
207
|
+
* @param {String} [authorization] The authorization token of the logged in user
|
|
208
|
+
* @param {Number} [zeusportalPostasApp] The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
209
|
+
* @param {Number} [zeusportalPostas] The id of the organization page this operation is being performed as if the caller chooses to post as an organization page
|
|
210
|
+
* @param {Number} [zeusportalPostasSite] The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
211
|
+
* @param {String} [transactionid] The id of the transaction this operation is being run in
|
|
212
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link Object.<String, module:model/{String: PurgeDataDefaultResponseValue}>} and HTTP response
|
|
213
|
+
*/
|
|
214
|
+
}, {
|
|
215
|
+
key: "get18WithHttpInfo",
|
|
216
|
+
value: function get18WithHttpInfo(id, opts) {
|
|
217
|
+
opts = opts || {};
|
|
218
|
+
var postBody = null;
|
|
219
|
+
// verify the required parameter 'id' is set
|
|
220
|
+
if (id === undefined || id === null) {
|
|
221
|
+
throw new Error("Missing the required parameter 'id' when calling get18");
|
|
222
|
+
}
|
|
223
|
+
var pathParams = {
|
|
224
|
+
'id': id
|
|
225
|
+
};
|
|
226
|
+
var queryParams = {};
|
|
227
|
+
var headerParams = {
|
|
228
|
+
'Authorization': opts['authorization'],
|
|
229
|
+
'zeusportal-postas-app': opts['zeusportalPostasApp'],
|
|
230
|
+
'zeusportal-postas': opts['zeusportalPostas'],
|
|
231
|
+
'zeusportal-postas-site': opts['zeusportalPostasSite'],
|
|
232
|
+
'transactionid': opts['transactionid']
|
|
233
|
+
};
|
|
234
|
+
var formParams = {};
|
|
235
|
+
var authNames = ['NexusGraphAPIAuth', 'NexusGraphAPIKey'];
|
|
236
|
+
var contentTypes = [];
|
|
237
|
+
var accepts = ['application/json'];
|
|
238
|
+
var returnType = {
|
|
239
|
+
'String': _PurgeDataDefaultResponseValue["default"]
|
|
240
|
+
};
|
|
241
|
+
return this.apiClient.callApi('/graph/data/ads/campaigns/{id}', 'GET', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
/**
|
|
245
|
+
* Gets and object by id
|
|
246
|
+
* @param {Number} id
|
|
247
|
+
* @param {Object} opts Optional parameters
|
|
248
|
+
* @param {String} opts.authorization The authorization token of the logged in user
|
|
249
|
+
* @param {Number} opts.zeusportalPostasApp The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
250
|
+
* @param {Number} opts.zeusportalPostas The id of the organization page this operation is being performed as if the caller chooses to post as an organization page
|
|
251
|
+
* @param {Number} opts.zeusportalPostasSite The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
252
|
+
* @param {String} opts.transactionid The id of the transaction this operation is being run in
|
|
253
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link Object.<String, module:model/{String: PurgeDataDefaultResponseValue}>}
|
|
254
|
+
*/
|
|
255
|
+
}, {
|
|
256
|
+
key: "get18",
|
|
257
|
+
value: function get18(id, opts) {
|
|
258
|
+
return this.get18WithHttpInfo(id, opts).then(function (response_and_data) {
|
|
259
|
+
return response_and_data.data;
|
|
260
|
+
});
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
/**
|
|
264
|
+
* Root for the API
|
|
265
|
+
* @param {Object} opts Optional parameters
|
|
266
|
+
* @param {String} [authorization] The authorization token of the logged in user
|
|
267
|
+
* @param {Number} [zeusportalPostasApp] The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
268
|
+
* @param {Number} [zeusportalPostas] The id of the organization page this operation is being performed as if the caller chooses to post as an organization page
|
|
269
|
+
* @param {Number} [zeusportalPostasSite] The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
270
|
+
* @param {String} [transactionid] The id of the transaction this operation is being run in
|
|
271
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing HTTP response
|
|
272
|
+
*/
|
|
273
|
+
}, {
|
|
274
|
+
key: "get19WithHttpInfo",
|
|
275
|
+
value: function get19WithHttpInfo(opts) {
|
|
276
|
+
opts = opts || {};
|
|
277
|
+
var postBody = null;
|
|
278
|
+
var pathParams = {};
|
|
279
|
+
var queryParams = {};
|
|
280
|
+
var headerParams = {
|
|
281
|
+
'Authorization': opts['authorization'],
|
|
282
|
+
'zeusportal-postas-app': opts['zeusportalPostasApp'],
|
|
283
|
+
'zeusportal-postas': opts['zeusportalPostas'],
|
|
284
|
+
'zeusportal-postas-site': opts['zeusportalPostasSite'],
|
|
285
|
+
'transactionid': opts['transactionid']
|
|
286
|
+
};
|
|
287
|
+
var formParams = {};
|
|
288
|
+
var authNames = ['NexusGraphAPIAuth', 'NexusGraphAPIKey'];
|
|
289
|
+
var contentTypes = [];
|
|
290
|
+
var accepts = ['*/*'];
|
|
291
|
+
var returnType = null;
|
|
292
|
+
return this.apiClient.callApi('/graph/data/ads/ads', 'GET', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
/**
|
|
296
|
+
* Root for the API
|
|
297
|
+
* @param {Object} opts Optional parameters
|
|
298
|
+
* @param {String} opts.authorization The authorization token of the logged in user
|
|
299
|
+
* @param {Number} opts.zeusportalPostasApp The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
300
|
+
* @param {Number} opts.zeusportalPostas The id of the organization page this operation is being performed as if the caller chooses to post as an organization page
|
|
301
|
+
* @param {Number} opts.zeusportalPostasSite The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
302
|
+
* @param {String} opts.transactionid The id of the transaction this operation is being run in
|
|
303
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}
|
|
304
|
+
*/
|
|
305
|
+
}, {
|
|
306
|
+
key: "get19",
|
|
307
|
+
value: function get19(opts) {
|
|
308
|
+
return this.get19WithHttpInfo(opts).then(function (response_and_data) {
|
|
309
|
+
return response_and_data.data;
|
|
310
|
+
});
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
/**
|
|
314
|
+
* Gets and object by id
|
|
315
|
+
* @param {Number} id
|
|
316
|
+
* @param {Object} opts Optional parameters
|
|
317
|
+
* @param {String} [authorization] The authorization token of the logged in user
|
|
318
|
+
* @param {Number} [zeusportalPostasApp] The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
319
|
+
* @param {Number} [zeusportalPostas] The id of the organization page this operation is being performed as if the caller chooses to post as an organization page
|
|
320
|
+
* @param {Number} [zeusportalPostasSite] The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
321
|
+
* @param {String} [transactionid] The id of the transaction this operation is being run in
|
|
322
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link Object.<String, module:model/{String: PurgeDataDefaultResponseValue}>} and HTTP response
|
|
323
|
+
*/
|
|
324
|
+
}, {
|
|
325
|
+
key: "get20WithHttpInfo",
|
|
326
|
+
value: function get20WithHttpInfo(id, opts) {
|
|
327
|
+
opts = opts || {};
|
|
328
|
+
var postBody = null;
|
|
329
|
+
// verify the required parameter 'id' is set
|
|
330
|
+
if (id === undefined || id === null) {
|
|
331
|
+
throw new Error("Missing the required parameter 'id' when calling get20");
|
|
332
|
+
}
|
|
333
|
+
var pathParams = {
|
|
334
|
+
'id': id
|
|
335
|
+
};
|
|
336
|
+
var queryParams = {};
|
|
337
|
+
var headerParams = {
|
|
338
|
+
'Authorization': opts['authorization'],
|
|
339
|
+
'zeusportal-postas-app': opts['zeusportalPostasApp'],
|
|
340
|
+
'zeusportal-postas': opts['zeusportalPostas'],
|
|
341
|
+
'zeusportal-postas-site': opts['zeusportalPostasSite'],
|
|
342
|
+
'transactionid': opts['transactionid']
|
|
343
|
+
};
|
|
344
|
+
var formParams = {};
|
|
345
|
+
var authNames = ['NexusGraphAPIAuth', 'NexusGraphAPIKey'];
|
|
346
|
+
var contentTypes = [];
|
|
347
|
+
var accepts = ['application/json'];
|
|
348
|
+
var returnType = {
|
|
349
|
+
'String': _PurgeDataDefaultResponseValue["default"]
|
|
350
|
+
};
|
|
351
|
+
return this.apiClient.callApi('/graph/data/ads/ads/{id}', 'GET', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
/**
|
|
355
|
+
* Gets and object by id
|
|
356
|
+
* @param {Number} id
|
|
357
|
+
* @param {Object} opts Optional parameters
|
|
358
|
+
* @param {String} opts.authorization The authorization token of the logged in user
|
|
359
|
+
* @param {Number} opts.zeusportalPostasApp The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
360
|
+
* @param {Number} opts.zeusportalPostas The id of the organization page this operation is being performed as if the caller chooses to post as an organization page
|
|
361
|
+
* @param {Number} opts.zeusportalPostasSite The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
362
|
+
* @param {String} opts.transactionid The id of the transaction this operation is being run in
|
|
363
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link Object.<String, module:model/{String: PurgeDataDefaultResponseValue}>}
|
|
364
|
+
*/
|
|
365
|
+
}, {
|
|
366
|
+
key: "get20",
|
|
367
|
+
value: function get20(id, opts) {
|
|
368
|
+
return this.get20WithHttpInfo(id, opts).then(function (response_and_data) {
|
|
369
|
+
return response_and_data.data;
|
|
370
|
+
});
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
/**
|
|
374
|
+
* @param {Number} id
|
|
375
|
+
* @param {Object} opts Optional parameters
|
|
376
|
+
* @param {String} [authorization] The authorization token of the logged in user
|
|
377
|
+
* @param {Number} [zeusportalPostasApp] The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
378
|
+
* @param {Number} [zeusportalPostas] The id of the organization page this operation is being performed as if the caller chooses to post as an organization page
|
|
379
|
+
* @param {Number} [zeusportalPostasSite] The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
380
|
+
* @param {String} [transactionid] The id of the transaction this operation is being run in
|
|
381
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link Object.<String, module:model/{String: PurgeDataDefaultResponseValue}>} and HTTP response
|
|
382
|
+
*/
|
|
383
|
+
}, {
|
|
384
|
+
key: "getCampaignWithHttpInfo",
|
|
385
|
+
value: function getCampaignWithHttpInfo(id, opts) {
|
|
386
|
+
opts = opts || {};
|
|
387
|
+
var postBody = null;
|
|
388
|
+
// verify the required parameter 'id' is set
|
|
389
|
+
if (id === undefined || id === null) {
|
|
390
|
+
throw new Error("Missing the required parameter 'id' when calling getCampaign");
|
|
391
|
+
}
|
|
392
|
+
var pathParams = {
|
|
393
|
+
'id': id
|
|
394
|
+
};
|
|
395
|
+
var queryParams = {};
|
|
396
|
+
var headerParams = {
|
|
397
|
+
'Authorization': opts['authorization'],
|
|
398
|
+
'zeusportal-postas-app': opts['zeusportalPostasApp'],
|
|
399
|
+
'zeusportal-postas': opts['zeusportalPostas'],
|
|
400
|
+
'zeusportal-postas-site': opts['zeusportalPostasSite'],
|
|
401
|
+
'transactionid': opts['transactionid']
|
|
402
|
+
};
|
|
403
|
+
var formParams = {};
|
|
404
|
+
var authNames = ['NexusGraphAPIAuth', 'NexusGraphAPIKey'];
|
|
405
|
+
var contentTypes = [];
|
|
406
|
+
var accepts = ['*/*'];
|
|
407
|
+
var returnType = {
|
|
408
|
+
'String': _PurgeDataDefaultResponseValue["default"]
|
|
409
|
+
};
|
|
410
|
+
return this.apiClient.callApi('/graph/data/ads/ads/{id}/campaign', 'GET', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
/**
|
|
414
|
+
* @param {Number} id
|
|
415
|
+
* @param {Object} opts Optional parameters
|
|
416
|
+
* @param {String} opts.authorization The authorization token of the logged in user
|
|
417
|
+
* @param {Number} opts.zeusportalPostasApp The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
418
|
+
* @param {Number} opts.zeusportalPostas The id of the organization page this operation is being performed as if the caller chooses to post as an organization page
|
|
419
|
+
* @param {Number} opts.zeusportalPostasSite The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
420
|
+
* @param {String} opts.transactionid The id of the transaction this operation is being run in
|
|
421
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link Object.<String, module:model/{String: PurgeDataDefaultResponseValue}>}
|
|
422
|
+
*/
|
|
423
|
+
}, {
|
|
424
|
+
key: "getCampaign",
|
|
425
|
+
value: function getCampaign(id, opts) {
|
|
426
|
+
return this.getCampaignWithHttpInfo(id, opts).then(function (response_and_data) {
|
|
427
|
+
return response_and_data.data;
|
|
428
|
+
});
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
/**
|
|
432
|
+
* @param {Number} id
|
|
433
|
+
* @param {Object} opts Optional parameters
|
|
434
|
+
* @param {String} [authorization] The authorization token of the logged in user
|
|
435
|
+
* @param {Number} [zeusportalPostasApp] The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
436
|
+
* @param {Number} [zeusportalPostas] The id of the organization page this operation is being performed as if the caller chooses to post as an organization page
|
|
437
|
+
* @param {Number} [zeusportalPostasSite] The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
438
|
+
* @param {String} [transactionid] The id of the transaction this operation is being run in
|
|
439
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link Object.<String, module:model/{String: PurgeDataDefaultResponseValue}>} and HTTP response
|
|
440
|
+
*/
|
|
441
|
+
}, {
|
|
442
|
+
key: "getFromCatWithHttpInfo",
|
|
443
|
+
value: function getFromCatWithHttpInfo(id, opts) {
|
|
444
|
+
opts = opts || {};
|
|
445
|
+
var postBody = null;
|
|
446
|
+
// verify the required parameter 'id' is set
|
|
447
|
+
if (id === undefined || id === null) {
|
|
448
|
+
throw new Error("Missing the required parameter 'id' when calling getFromCat");
|
|
449
|
+
}
|
|
450
|
+
var pathParams = {
|
|
451
|
+
'id': id
|
|
452
|
+
};
|
|
453
|
+
var queryParams = {};
|
|
454
|
+
var headerParams = {
|
|
455
|
+
'Authorization': opts['authorization'],
|
|
456
|
+
'zeusportal-postas-app': opts['zeusportalPostasApp'],
|
|
457
|
+
'zeusportal-postas': opts['zeusportalPostas'],
|
|
458
|
+
'zeusportal-postas-site': opts['zeusportalPostasSite'],
|
|
459
|
+
'transactionid': opts['transactionid']
|
|
460
|
+
};
|
|
461
|
+
var formParams = {};
|
|
462
|
+
var authNames = ['NexusGraphAPIAuth', 'NexusGraphAPIKey'];
|
|
463
|
+
var contentTypes = [];
|
|
464
|
+
var accepts = ['*/*'];
|
|
465
|
+
var returnType = {
|
|
466
|
+
'String': _PurgeDataDefaultResponseValue["default"]
|
|
467
|
+
};
|
|
468
|
+
return this.apiClient.callApi('/graph/data/ads/campaigns/nextfromcategory/{id}', 'GET', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|
|
469
|
+
}
|
|
470
|
+
|
|
471
|
+
/**
|
|
472
|
+
* @param {Number} id
|
|
473
|
+
* @param {Object} opts Optional parameters
|
|
474
|
+
* @param {String} opts.authorization The authorization token of the logged in user
|
|
475
|
+
* @param {Number} opts.zeusportalPostasApp The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
476
|
+
* @param {Number} opts.zeusportalPostas The id of the organization page this operation is being performed as if the caller chooses to post as an organization page
|
|
477
|
+
* @param {Number} opts.zeusportalPostasSite The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
478
|
+
* @param {String} opts.transactionid The id of the transaction this operation is being run in
|
|
479
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link Object.<String, module:model/{String: PurgeDataDefaultResponseValue}>}
|
|
480
|
+
*/
|
|
481
|
+
}, {
|
|
482
|
+
key: "getFromCat",
|
|
483
|
+
value: function getFromCat(id, opts) {
|
|
484
|
+
return this.getFromCatWithHttpInfo(id, opts).then(function (response_and_data) {
|
|
485
|
+
return response_and_data.data;
|
|
486
|
+
});
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
/**
|
|
490
|
+
* @param {Number} id
|
|
491
|
+
* @param {Object} opts Optional parameters
|
|
492
|
+
* @param {String} [authorization] The authorization token of the logged in user
|
|
493
|
+
* @param {Number} [zeusportalPostasApp] The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
494
|
+
* @param {Number} [zeusportalPostas] The id of the organization page this operation is being performed as if the caller chooses to post as an organization page
|
|
495
|
+
* @param {Number} [zeusportalPostasSite] The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
496
|
+
* @param {String} [transactionid] The id of the transaction this operation is being run in
|
|
497
|
+
* @param {Object.<String, module:model/{String: PurgeDataDefaultResponseValue}>} [requestBody]
|
|
498
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/PurgeDataDefaultResponseValue} and HTTP response
|
|
499
|
+
*/
|
|
500
|
+
}, {
|
|
501
|
+
key: "updateWithHttpInfo",
|
|
502
|
+
value: function updateWithHttpInfo(id, opts) {
|
|
503
|
+
opts = opts || {};
|
|
504
|
+
var postBody = opts['requestBody'];
|
|
505
|
+
// verify the required parameter 'id' is set
|
|
506
|
+
if (id === undefined || id === null) {
|
|
507
|
+
throw new Error("Missing the required parameter 'id' when calling update");
|
|
508
|
+
}
|
|
509
|
+
var pathParams = {
|
|
510
|
+
'id': id
|
|
511
|
+
};
|
|
512
|
+
var queryParams = {};
|
|
513
|
+
var headerParams = {
|
|
514
|
+
'Authorization': opts['authorization'],
|
|
515
|
+
'zeusportal-postas-app': opts['zeusportalPostasApp'],
|
|
516
|
+
'zeusportal-postas': opts['zeusportalPostas'],
|
|
517
|
+
'zeusportal-postas-site': opts['zeusportalPostasSite'],
|
|
518
|
+
'transactionid': opts['transactionid']
|
|
519
|
+
};
|
|
520
|
+
var formParams = {};
|
|
521
|
+
var authNames = ['NexusGraphAPIAuth', 'NexusGraphAPIKey'];
|
|
522
|
+
var contentTypes = [];
|
|
523
|
+
var accepts = ['*/*'];
|
|
524
|
+
var returnType = _PurgeDataDefaultResponseValue["default"];
|
|
525
|
+
return this.apiClient.callApi('/graph/data/ads/campaigns/{id}', 'PUT', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
/**
|
|
529
|
+
* @param {Number} id
|
|
530
|
+
* @param {Object} opts Optional parameters
|
|
531
|
+
* @param {String} opts.authorization The authorization token of the logged in user
|
|
532
|
+
* @param {Number} opts.zeusportalPostasApp The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
533
|
+
* @param {Number} opts.zeusportalPostas The id of the organization page this operation is being performed as if the caller chooses to post as an organization page
|
|
534
|
+
* @param {Number} opts.zeusportalPostasSite The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
535
|
+
* @param {String} opts.transactionid The id of the transaction this operation is being run in
|
|
536
|
+
* @param {Object.<String, module:model/{String: PurgeDataDefaultResponseValue}>} opts.requestBody
|
|
537
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/PurgeDataDefaultResponseValue}
|
|
538
|
+
*/
|
|
539
|
+
}, {
|
|
540
|
+
key: "update",
|
|
541
|
+
value: function update(id, opts) {
|
|
542
|
+
return this.updateWithHttpInfo(id, opts).then(function (response_and_data) {
|
|
543
|
+
return response_and_data.data;
|
|
544
|
+
});
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
/**
|
|
548
|
+
* @param {Number} id
|
|
549
|
+
* @param {Object} opts Optional parameters
|
|
550
|
+
* @param {String} [authorization] The authorization token of the logged in user
|
|
551
|
+
* @param {Number} [zeusportalPostasApp] The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
552
|
+
* @param {Number} [zeusportalPostas] The id of the organization page this operation is being performed as if the caller chooses to post as an organization page
|
|
553
|
+
* @param {Number} [zeusportalPostasSite] The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
554
|
+
* @param {String} [transactionid] The id of the transaction this operation is being run in
|
|
555
|
+
* @param {Object.<String, module:model/{String: PurgeDataDefaultResponseValue}>} [requestBody]
|
|
556
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/PurgeDataDefaultResponseValue} and HTTP response
|
|
557
|
+
*/
|
|
558
|
+
}, {
|
|
559
|
+
key: "update1WithHttpInfo",
|
|
560
|
+
value: function update1WithHttpInfo(id, opts) {
|
|
561
|
+
opts = opts || {};
|
|
562
|
+
var postBody = opts['requestBody'];
|
|
563
|
+
// verify the required parameter 'id' is set
|
|
564
|
+
if (id === undefined || id === null) {
|
|
565
|
+
throw new Error("Missing the required parameter 'id' when calling update1");
|
|
566
|
+
}
|
|
567
|
+
var pathParams = {
|
|
568
|
+
'id': id
|
|
569
|
+
};
|
|
570
|
+
var queryParams = {};
|
|
571
|
+
var headerParams = {
|
|
572
|
+
'Authorization': opts['authorization'],
|
|
573
|
+
'zeusportal-postas-app': opts['zeusportalPostasApp'],
|
|
574
|
+
'zeusportal-postas': opts['zeusportalPostas'],
|
|
575
|
+
'zeusportal-postas-site': opts['zeusportalPostasSite'],
|
|
576
|
+
'transactionid': opts['transactionid']
|
|
577
|
+
};
|
|
578
|
+
var formParams = {};
|
|
579
|
+
var authNames = ['NexusGraphAPIAuth', 'NexusGraphAPIKey'];
|
|
580
|
+
var contentTypes = [];
|
|
581
|
+
var accepts = ['*/*'];
|
|
582
|
+
var returnType = _PurgeDataDefaultResponseValue["default"];
|
|
583
|
+
return this.apiClient.callApi('/graph/data/ads/ads/{id}', 'PUT', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|
|
584
|
+
}
|
|
585
|
+
|
|
586
|
+
/**
|
|
587
|
+
* @param {Number} id
|
|
588
|
+
* @param {Object} opts Optional parameters
|
|
589
|
+
* @param {String} opts.authorization The authorization token of the logged in user
|
|
590
|
+
* @param {Number} opts.zeusportalPostasApp The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
591
|
+
* @param {Number} opts.zeusportalPostas The id of the organization page this operation is being performed as if the caller chooses to post as an organization page
|
|
592
|
+
* @param {Number} opts.zeusportalPostasSite The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
593
|
+
* @param {String} opts.transactionid The id of the transaction this operation is being run in
|
|
594
|
+
* @param {Object.<String, module:model/{String: PurgeDataDefaultResponseValue}>} opts.requestBody
|
|
595
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/PurgeDataDefaultResponseValue}
|
|
596
|
+
*/
|
|
597
|
+
}, {
|
|
598
|
+
key: "update1",
|
|
599
|
+
value: function update1(id, opts) {
|
|
600
|
+
return this.update1WithHttpInfo(id, opts).then(function (response_and_data) {
|
|
601
|
+
return response_and_data.data;
|
|
602
|
+
});
|
|
603
|
+
}
|
|
604
|
+
|
|
605
|
+
/**
|
|
606
|
+
* @param {Number} id
|
|
607
|
+
* @param {Object} opts Optional parameters
|
|
608
|
+
* @param {String} [authorization] The authorization token of the logged in user
|
|
609
|
+
* @param {Number} [zeusportalPostasApp] The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
610
|
+
* @param {Number} [zeusportalPostas] The id of the organization page this operation is being performed as if the caller chooses to post as an organization page
|
|
611
|
+
* @param {Number} [zeusportalPostasSite] The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
612
|
+
* @param {String} [transactionid] The id of the transaction this operation is being run in
|
|
613
|
+
* @param {module:model/PurgeDataDefaultResponseValue} [purgeDataDefaultResponseValue]
|
|
614
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/PurgeDataDefaultResponseValue} and HTTP response
|
|
615
|
+
*/
|
|
616
|
+
}, {
|
|
617
|
+
key: "updateAdsWithHttpInfo",
|
|
618
|
+
value: function updateAdsWithHttpInfo(id, opts) {
|
|
619
|
+
opts = opts || {};
|
|
620
|
+
var postBody = opts['purgeDataDefaultResponseValue'];
|
|
621
|
+
// verify the required parameter 'id' is set
|
|
622
|
+
if (id === undefined || id === null) {
|
|
623
|
+
throw new Error("Missing the required parameter 'id' when calling updateAds");
|
|
624
|
+
}
|
|
625
|
+
var pathParams = {
|
|
626
|
+
'id': id
|
|
627
|
+
};
|
|
628
|
+
var queryParams = {};
|
|
629
|
+
var headerParams = {
|
|
630
|
+
'Authorization': opts['authorization'],
|
|
631
|
+
'zeusportal-postas-app': opts['zeusportalPostasApp'],
|
|
632
|
+
'zeusportal-postas': opts['zeusportalPostas'],
|
|
633
|
+
'zeusportal-postas-site': opts['zeusportalPostasSite'],
|
|
634
|
+
'transactionid': opts['transactionid']
|
|
635
|
+
};
|
|
636
|
+
var formParams = {};
|
|
637
|
+
var authNames = ['NexusGraphAPIAuth', 'NexusGraphAPIKey'];
|
|
638
|
+
var contentTypes = [];
|
|
639
|
+
var accepts = ['*/*'];
|
|
640
|
+
var returnType = _PurgeDataDefaultResponseValue["default"];
|
|
641
|
+
return this.apiClient.callApi('/graph/data/ads/campaigns/{id}/ads', 'POST', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|
|
642
|
+
}
|
|
643
|
+
|
|
644
|
+
/**
|
|
645
|
+
* @param {Number} id
|
|
646
|
+
* @param {Object} opts Optional parameters
|
|
647
|
+
* @param {String} opts.authorization The authorization token of the logged in user
|
|
648
|
+
* @param {Number} opts.zeusportalPostasApp The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
649
|
+
* @param {Number} opts.zeusportalPostas The id of the organization page this operation is being performed as if the caller chooses to post as an organization page
|
|
650
|
+
* @param {Number} opts.zeusportalPostasSite The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
651
|
+
* @param {String} opts.transactionid The id of the transaction this operation is being run in
|
|
652
|
+
* @param {module:model/PurgeDataDefaultResponseValue} opts.purgeDataDefaultResponseValue
|
|
653
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/PurgeDataDefaultResponseValue}
|
|
654
|
+
*/
|
|
655
|
+
}, {
|
|
656
|
+
key: "updateAds",
|
|
657
|
+
value: function updateAds(id, opts) {
|
|
658
|
+
return this.updateAdsWithHttpInfo(id, opts).then(function (response_and_data) {
|
|
659
|
+
return response_and_data.data;
|
|
660
|
+
});
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
/**
|
|
664
|
+
* @param {Number} id
|
|
665
|
+
* @param {Object} opts Optional parameters
|
|
666
|
+
* @param {String} [authorization] The authorization token of the logged in user
|
|
667
|
+
* @param {Number} [zeusportalPostasApp] The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
668
|
+
* @param {Number} [zeusportalPostas] The id of the organization page this operation is being performed as if the caller chooses to post as an organization page
|
|
669
|
+
* @param {Number} [zeusportalPostasSite] The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
670
|
+
* @param {String} [transactionid] The id of the transaction this operation is being run in
|
|
671
|
+
* @param {Array.<module:model/PurgeDataDefaultResponseValue>} [purgeDataDefaultResponseValue]
|
|
672
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing HTTP response
|
|
673
|
+
*/
|
|
674
|
+
}, {
|
|
675
|
+
key: "updateSitesWithHttpInfo",
|
|
676
|
+
value: function updateSitesWithHttpInfo(id, opts) {
|
|
677
|
+
opts = opts || {};
|
|
678
|
+
var postBody = opts['purgeDataDefaultResponseValue'];
|
|
679
|
+
// verify the required parameter 'id' is set
|
|
680
|
+
if (id === undefined || id === null) {
|
|
681
|
+
throw new Error("Missing the required parameter 'id' when calling updateSites");
|
|
682
|
+
}
|
|
683
|
+
var pathParams = {
|
|
684
|
+
'id': id
|
|
685
|
+
};
|
|
686
|
+
var queryParams = {};
|
|
687
|
+
var headerParams = {
|
|
688
|
+
'Authorization': opts['authorization'],
|
|
689
|
+
'zeusportal-postas-app': opts['zeusportalPostasApp'],
|
|
690
|
+
'zeusportal-postas': opts['zeusportalPostas'],
|
|
691
|
+
'zeusportal-postas-site': opts['zeusportalPostasSite'],
|
|
692
|
+
'transactionid': opts['transactionid']
|
|
693
|
+
};
|
|
694
|
+
var formParams = {};
|
|
695
|
+
var authNames = ['NexusGraphAPIAuth', 'NexusGraphAPIKey'];
|
|
696
|
+
var contentTypes = [];
|
|
697
|
+
var accepts = ['*/*'];
|
|
698
|
+
var returnType = null;
|
|
699
|
+
return this.apiClient.callApi('/graph/data/ads/campaigns/{id}/sites', 'PUT', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|
|
700
|
+
}
|
|
701
|
+
|
|
702
|
+
/**
|
|
703
|
+
* @param {Number} id
|
|
704
|
+
* @param {Object} opts Optional parameters
|
|
705
|
+
* @param {String} opts.authorization The authorization token of the logged in user
|
|
706
|
+
* @param {Number} opts.zeusportalPostasApp The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
707
|
+
* @param {Number} opts.zeusportalPostas The id of the organization page this operation is being performed as if the caller chooses to post as an organization page
|
|
708
|
+
* @param {Number} opts.zeusportalPostasSite The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
709
|
+
* @param {String} opts.transactionid The id of the transaction this operation is being run in
|
|
710
|
+
* @param {Array.<module:model/PurgeDataDefaultResponseValue>} opts.purgeDataDefaultResponseValue
|
|
711
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}
|
|
712
|
+
*/
|
|
713
|
+
}, {
|
|
714
|
+
key: "updateSites",
|
|
715
|
+
value: function updateSites(id, opts) {
|
|
716
|
+
return this.updateSitesWithHttpInfo(id, opts).then(function (response_and_data) {
|
|
717
|
+
return response_and_data.data;
|
|
718
|
+
});
|
|
719
|
+
}
|
|
720
|
+
}]);
|
|
721
|
+
return AdManagementApi;
|
|
722
|
+
}();
|