@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,459 @@
|
|
|
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 _GraphSchema = _interopRequireDefault(require("../model/GraphSchema"));
|
|
9
|
+
var _PurgeDataDefaultResponseValue = _interopRequireDefault(require("../model/PurgeDataDefaultResponseValue"));
|
|
10
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
11
|
+
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); }
|
|
12
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
13
|
+
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); } }
|
|
14
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
15
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
16
|
+
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); } /**
|
|
17
|
+
* gobodo-api
|
|
18
|
+
* REST Interface for Gobodo API
|
|
19
|
+
*
|
|
20
|
+
* The version of the OpenAPI document: 0.1.34
|
|
21
|
+
* Contact: info@gobodo.io
|
|
22
|
+
*
|
|
23
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
24
|
+
* https://openapi-generator.tech
|
|
25
|
+
* Do not edit the class manually.
|
|
26
|
+
*
|
|
27
|
+
*/
|
|
28
|
+
/**
|
|
29
|
+
* GraphSchemas service.
|
|
30
|
+
* @module api/GraphSchemasApi
|
|
31
|
+
* @version 0.1.34
|
|
32
|
+
*/
|
|
33
|
+
var GraphSchemasApi = exports["default"] = /*#__PURE__*/function () {
|
|
34
|
+
/**
|
|
35
|
+
* Constructs a new GraphSchemasApi.
|
|
36
|
+
* @alias module:api/GraphSchemasApi
|
|
37
|
+
* @class
|
|
38
|
+
* @param {module:ApiClient} [apiClient] Optional API client implementation to use,
|
|
39
|
+
* default to {@link module:ApiClient#instance} if unspecified.
|
|
40
|
+
*/
|
|
41
|
+
function GraphSchemasApi(apiClient) {
|
|
42
|
+
_classCallCheck(this, GraphSchemasApi);
|
|
43
|
+
this.apiClient = apiClient || _ApiClient["default"].instance;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* Adds schemas to the graph
|
|
48
|
+
* @param {Number} id
|
|
49
|
+
* @param {Array.<Number>} requestBody Array of schema ids
|
|
50
|
+
* @param {Object} opts Optional parameters
|
|
51
|
+
* @param {String} [authorization] The authorization token of the logged in user
|
|
52
|
+
* @param {Number} [zeusportalPostasApp] The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
53
|
+
* @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
|
|
54
|
+
* @param {Number} [zeusportalPostasSite] The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
55
|
+
* @param {String} [transactionid] The id of the transaction this operation is being run in
|
|
56
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/GraphSchema} and HTTP response
|
|
57
|
+
*/
|
|
58
|
+
_createClass(GraphSchemasApi, [{
|
|
59
|
+
key: "addSchemasWithHttpInfo",
|
|
60
|
+
value: function addSchemasWithHttpInfo(id, requestBody, opts) {
|
|
61
|
+
opts = opts || {};
|
|
62
|
+
var postBody = requestBody;
|
|
63
|
+
// verify the required parameter 'id' is set
|
|
64
|
+
if (id === undefined || id === null) {
|
|
65
|
+
throw new Error("Missing the required parameter 'id' when calling addSchemas");
|
|
66
|
+
}
|
|
67
|
+
// verify the required parameter 'requestBody' is set
|
|
68
|
+
if (requestBody === undefined || requestBody === null) {
|
|
69
|
+
throw new Error("Missing the required parameter 'requestBody' when calling addSchemas");
|
|
70
|
+
}
|
|
71
|
+
var pathParams = {
|
|
72
|
+
'id': id
|
|
73
|
+
};
|
|
74
|
+
var queryParams = {};
|
|
75
|
+
var headerParams = {
|
|
76
|
+
'Authorization': opts['authorization'],
|
|
77
|
+
'zeusportal-postas-app': opts['zeusportalPostasApp'],
|
|
78
|
+
'zeusportal-postas': opts['zeusportalPostas'],
|
|
79
|
+
'zeusportal-postas-site': opts['zeusportalPostasSite'],
|
|
80
|
+
'transactionid': opts['transactionid']
|
|
81
|
+
};
|
|
82
|
+
var formParams = {};
|
|
83
|
+
var authNames = ['NexusGraphAPIAuth', 'NexusGraphAPIKey'];
|
|
84
|
+
var contentTypes = ['application/json'];
|
|
85
|
+
var accepts = ['application/json'];
|
|
86
|
+
var returnType = _GraphSchema["default"];
|
|
87
|
+
return this.apiClient.callApi('/graph/data/graph/{id}/schemas', 'PUT', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
/**
|
|
91
|
+
* Adds schemas to the graph
|
|
92
|
+
* @param {Number} id
|
|
93
|
+
* @param {Array.<Number>} requestBody Array of schema ids
|
|
94
|
+
* @param {Object} opts Optional parameters
|
|
95
|
+
* @param {String} opts.authorization The authorization token of the logged in user
|
|
96
|
+
* @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
|
|
97
|
+
* @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
|
|
98
|
+
* @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
|
|
99
|
+
* @param {String} opts.transactionid The id of the transaction this operation is being run in
|
|
100
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/GraphSchema}
|
|
101
|
+
*/
|
|
102
|
+
}, {
|
|
103
|
+
key: "addSchemas",
|
|
104
|
+
value: function addSchemas(id, requestBody, opts) {
|
|
105
|
+
return this.addSchemasWithHttpInfo(id, requestBody, opts).then(function (response_and_data) {
|
|
106
|
+
return response_and_data.data;
|
|
107
|
+
});
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
/**
|
|
111
|
+
* Root for the API
|
|
112
|
+
* @param {Object} opts Optional parameters
|
|
113
|
+
* @param {String} [authorization] The authorization token of the logged in user
|
|
114
|
+
* @param {Number} [zeusportalPostasApp] The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
115
|
+
* @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
|
|
116
|
+
* @param {Number} [zeusportalPostasSite] The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
117
|
+
* @param {String} [transactionid] The id of the transaction this operation is being run in
|
|
118
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing HTTP response
|
|
119
|
+
*/
|
|
120
|
+
}, {
|
|
121
|
+
key: "get15WithHttpInfo",
|
|
122
|
+
value: function get15WithHttpInfo(opts) {
|
|
123
|
+
opts = opts || {};
|
|
124
|
+
var postBody = null;
|
|
125
|
+
var pathParams = {};
|
|
126
|
+
var queryParams = {};
|
|
127
|
+
var headerParams = {
|
|
128
|
+
'Authorization': opts['authorization'],
|
|
129
|
+
'zeusportal-postas-app': opts['zeusportalPostasApp'],
|
|
130
|
+
'zeusportal-postas': opts['zeusportalPostas'],
|
|
131
|
+
'zeusportal-postas-site': opts['zeusportalPostasSite'],
|
|
132
|
+
'transactionid': opts['transactionid']
|
|
133
|
+
};
|
|
134
|
+
var formParams = {};
|
|
135
|
+
var authNames = ['NexusGraphAPIAuth', 'NexusGraphAPIKey'];
|
|
136
|
+
var contentTypes = [];
|
|
137
|
+
var accepts = ['*/*'];
|
|
138
|
+
var returnType = null;
|
|
139
|
+
return this.apiClient.callApi('/graph/data/schema', 'GET', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
/**
|
|
143
|
+
* Root for the API
|
|
144
|
+
* @param {Object} opts Optional parameters
|
|
145
|
+
* @param {String} opts.authorization The authorization token of the logged in user
|
|
146
|
+
* @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
|
|
147
|
+
* @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
|
|
148
|
+
* @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
|
|
149
|
+
* @param {String} opts.transactionid The id of the transaction this operation is being run in
|
|
150
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}
|
|
151
|
+
*/
|
|
152
|
+
}, {
|
|
153
|
+
key: "get15",
|
|
154
|
+
value: function get15(opts) {
|
|
155
|
+
return this.get15WithHttpInfo(opts).then(function (response_and_data) {
|
|
156
|
+
return response_and_data.data;
|
|
157
|
+
});
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
/**
|
|
161
|
+
* Gets and object by id
|
|
162
|
+
* @param {Number} id
|
|
163
|
+
* @param {Object} opts Optional parameters
|
|
164
|
+
* @param {String} [authorization] The authorization token of the logged in user
|
|
165
|
+
* @param {Number} [zeusportalPostasApp] The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
166
|
+
* @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
|
|
167
|
+
* @param {Number} [zeusportalPostasSite] The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
168
|
+
* @param {String} [transactionid] The id of the transaction this operation is being run in
|
|
169
|
+
* @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
|
|
170
|
+
*/
|
|
171
|
+
}, {
|
|
172
|
+
key: "get16WithHttpInfo",
|
|
173
|
+
value: function get16WithHttpInfo(id, opts) {
|
|
174
|
+
opts = opts || {};
|
|
175
|
+
var postBody = null;
|
|
176
|
+
// verify the required parameter 'id' is set
|
|
177
|
+
if (id === undefined || id === null) {
|
|
178
|
+
throw new Error("Missing the required parameter 'id' when calling get16");
|
|
179
|
+
}
|
|
180
|
+
var pathParams = {
|
|
181
|
+
'id': id
|
|
182
|
+
};
|
|
183
|
+
var queryParams = {};
|
|
184
|
+
var headerParams = {
|
|
185
|
+
'Authorization': opts['authorization'],
|
|
186
|
+
'zeusportal-postas-app': opts['zeusportalPostasApp'],
|
|
187
|
+
'zeusportal-postas': opts['zeusportalPostas'],
|
|
188
|
+
'zeusportal-postas-site': opts['zeusportalPostasSite'],
|
|
189
|
+
'transactionid': opts['transactionid']
|
|
190
|
+
};
|
|
191
|
+
var formParams = {};
|
|
192
|
+
var authNames = ['NexusGraphAPIAuth', 'NexusGraphAPIKey'];
|
|
193
|
+
var contentTypes = [];
|
|
194
|
+
var accepts = ['application/json'];
|
|
195
|
+
var returnType = {
|
|
196
|
+
'String': _PurgeDataDefaultResponseValue["default"]
|
|
197
|
+
};
|
|
198
|
+
return this.apiClient.callApi('/graph/data/schema/{id}', 'GET', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
/**
|
|
202
|
+
* Gets and object by id
|
|
203
|
+
* @param {Number} id
|
|
204
|
+
* @param {Object} opts Optional parameters
|
|
205
|
+
* @param {String} opts.authorization The authorization token of the logged in user
|
|
206
|
+
* @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
|
|
207
|
+
* @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
|
|
208
|
+
* @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
|
|
209
|
+
* @param {String} opts.transactionid The id of the transaction this operation is being run in
|
|
210
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link Object.<String, module:model/{String: PurgeDataDefaultResponseValue}>}
|
|
211
|
+
*/
|
|
212
|
+
}, {
|
|
213
|
+
key: "get16",
|
|
214
|
+
value: function get16(id, opts) {
|
|
215
|
+
return this.get16WithHttpInfo(id, opts).then(function (response_and_data) {
|
|
216
|
+
return response_and_data.data;
|
|
217
|
+
});
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
/**
|
|
221
|
+
* Get schemas in the graph
|
|
222
|
+
* @param {Number} id
|
|
223
|
+
* @param {Object} opts Optional parameters
|
|
224
|
+
* @param {String} [authorization] The authorization token of the logged in user
|
|
225
|
+
* @param {Number} [zeusportalPostasApp] The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
226
|
+
* @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
|
|
227
|
+
* @param {Number} [zeusportalPostasSite] The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
228
|
+
* @param {String} [transactionid] The id of the transaction this operation is being run in
|
|
229
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/GraphSchema} and HTTP response
|
|
230
|
+
*/
|
|
231
|
+
}, {
|
|
232
|
+
key: "getSchemasWithHttpInfo",
|
|
233
|
+
value: function getSchemasWithHttpInfo(id, opts) {
|
|
234
|
+
opts = opts || {};
|
|
235
|
+
var postBody = null;
|
|
236
|
+
// verify the required parameter 'id' is set
|
|
237
|
+
if (id === undefined || id === null) {
|
|
238
|
+
throw new Error("Missing the required parameter 'id' when calling getSchemas");
|
|
239
|
+
}
|
|
240
|
+
var pathParams = {
|
|
241
|
+
'id': id
|
|
242
|
+
};
|
|
243
|
+
var queryParams = {};
|
|
244
|
+
var headerParams = {
|
|
245
|
+
'Authorization': opts['authorization'],
|
|
246
|
+
'zeusportal-postas-app': opts['zeusportalPostasApp'],
|
|
247
|
+
'zeusportal-postas': opts['zeusportalPostas'],
|
|
248
|
+
'zeusportal-postas-site': opts['zeusportalPostasSite'],
|
|
249
|
+
'transactionid': opts['transactionid']
|
|
250
|
+
};
|
|
251
|
+
var formParams = {};
|
|
252
|
+
var authNames = ['NexusGraphAPIAuth', 'NexusGraphAPIKey'];
|
|
253
|
+
var contentTypes = [];
|
|
254
|
+
var accepts = ['application/json'];
|
|
255
|
+
var returnType = _GraphSchema["default"];
|
|
256
|
+
return this.apiClient.callApi('/graph/data/graph/{id}/schemas', 'GET', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
/**
|
|
260
|
+
* Get schemas in the graph
|
|
261
|
+
* @param {Number} id
|
|
262
|
+
* @param {Object} opts Optional parameters
|
|
263
|
+
* @param {String} opts.authorization The authorization token of the logged in user
|
|
264
|
+
* @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
|
|
265
|
+
* @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
|
|
266
|
+
* @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
|
|
267
|
+
* @param {String} opts.transactionid The id of the transaction this operation is being run in
|
|
268
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/GraphSchema}
|
|
269
|
+
*/
|
|
270
|
+
}, {
|
|
271
|
+
key: "getSchemas",
|
|
272
|
+
value: function getSchemas(id, opts) {
|
|
273
|
+
return this.getSchemasWithHttpInfo(id, opts).then(function (response_and_data) {
|
|
274
|
+
return response_and_data.data;
|
|
275
|
+
});
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
/**
|
|
279
|
+
* Removes schemas to the graph
|
|
280
|
+
* @param {Number} id
|
|
281
|
+
* @param {Array.<Number>} requestBody Array of schema ids
|
|
282
|
+
* @param {Object} opts Optional parameters
|
|
283
|
+
* @param {String} [authorization] The authorization token of the logged in user
|
|
284
|
+
* @param {Number} [zeusportalPostasApp] The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
285
|
+
* @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
|
|
286
|
+
* @param {Number} [zeusportalPostasSite] The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
287
|
+
* @param {String} [transactionid] The id of the transaction this operation is being run in
|
|
288
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing HTTP response
|
|
289
|
+
*/
|
|
290
|
+
}, {
|
|
291
|
+
key: "removeSchemasWithHttpInfo",
|
|
292
|
+
value: function removeSchemasWithHttpInfo(id, requestBody, opts) {
|
|
293
|
+
opts = opts || {};
|
|
294
|
+
var postBody = requestBody;
|
|
295
|
+
// verify the required parameter 'id' is set
|
|
296
|
+
if (id === undefined || id === null) {
|
|
297
|
+
throw new Error("Missing the required parameter 'id' when calling removeSchemas");
|
|
298
|
+
}
|
|
299
|
+
// verify the required parameter 'requestBody' is set
|
|
300
|
+
if (requestBody === undefined || requestBody === null) {
|
|
301
|
+
throw new Error("Missing the required parameter 'requestBody' when calling removeSchemas");
|
|
302
|
+
}
|
|
303
|
+
var pathParams = {
|
|
304
|
+
'id': id
|
|
305
|
+
};
|
|
306
|
+
var queryParams = {};
|
|
307
|
+
var headerParams = {
|
|
308
|
+
'Authorization': opts['authorization'],
|
|
309
|
+
'zeusportal-postas-app': opts['zeusportalPostasApp'],
|
|
310
|
+
'zeusportal-postas': opts['zeusportalPostas'],
|
|
311
|
+
'zeusportal-postas-site': opts['zeusportalPostasSite'],
|
|
312
|
+
'transactionid': opts['transactionid']
|
|
313
|
+
};
|
|
314
|
+
var formParams = {};
|
|
315
|
+
var authNames = ['NexusGraphAPIAuth', 'NexusGraphAPIKey'];
|
|
316
|
+
var contentTypes = ['application/json'];
|
|
317
|
+
var accepts = ['application/json'];
|
|
318
|
+
var returnType = null;
|
|
319
|
+
return this.apiClient.callApi('/graph/data/graph/{id}/schemas', 'DELETE', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
/**
|
|
323
|
+
* Removes schemas to the graph
|
|
324
|
+
* @param {Number} id
|
|
325
|
+
* @param {Array.<Number>} requestBody Array of schema ids
|
|
326
|
+
* @param {Object} opts Optional parameters
|
|
327
|
+
* @param {String} opts.authorization The authorization token of the logged in user
|
|
328
|
+
* @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
|
|
329
|
+
* @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
|
|
330
|
+
* @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
|
|
331
|
+
* @param {String} opts.transactionid The id of the transaction this operation is being run in
|
|
332
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}
|
|
333
|
+
*/
|
|
334
|
+
}, {
|
|
335
|
+
key: "removeSchemas",
|
|
336
|
+
value: function removeSchemas(id, requestBody, opts) {
|
|
337
|
+
return this.removeSchemasWithHttpInfo(id, requestBody, opts).then(function (response_and_data) {
|
|
338
|
+
return response_and_data.data;
|
|
339
|
+
});
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
/**
|
|
343
|
+
* @param {Number} id
|
|
344
|
+
* @param {Object} opts Optional parameters
|
|
345
|
+
* @param {String} [authorization] The authorization token of the logged in user
|
|
346
|
+
* @param {Number} [zeusportalPostasApp] The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
347
|
+
* @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
|
|
348
|
+
* @param {Number} [zeusportalPostasSite] The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
349
|
+
* @param {String} [transactionid] The id of the transaction this operation is being run in
|
|
350
|
+
* @param {String} [body]
|
|
351
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/PurgeDataDefaultResponseValue} and HTTP response
|
|
352
|
+
*/
|
|
353
|
+
}, {
|
|
354
|
+
key: "updateObjectTypesWithHttpInfo",
|
|
355
|
+
value: function updateObjectTypesWithHttpInfo(id, opts) {
|
|
356
|
+
opts = opts || {};
|
|
357
|
+
var postBody = opts['body'];
|
|
358
|
+
// verify the required parameter 'id' is set
|
|
359
|
+
if (id === undefined || id === null) {
|
|
360
|
+
throw new Error("Missing the required parameter 'id' when calling updateObjectTypes");
|
|
361
|
+
}
|
|
362
|
+
var pathParams = {
|
|
363
|
+
'id': id
|
|
364
|
+
};
|
|
365
|
+
var queryParams = {};
|
|
366
|
+
var headerParams = {
|
|
367
|
+
'Authorization': opts['authorization'],
|
|
368
|
+
'zeusportal-postas-app': opts['zeusportalPostasApp'],
|
|
369
|
+
'zeusportal-postas': opts['zeusportalPostas'],
|
|
370
|
+
'zeusportal-postas-site': opts['zeusportalPostasSite'],
|
|
371
|
+
'transactionid': opts['transactionid']
|
|
372
|
+
};
|
|
373
|
+
var formParams = {};
|
|
374
|
+
var authNames = ['NexusGraphAPIAuth', 'NexusGraphAPIKey'];
|
|
375
|
+
var contentTypes = ['application/json'];
|
|
376
|
+
var accepts = ['application/json'];
|
|
377
|
+
var returnType = _PurgeDataDefaultResponseValue["default"];
|
|
378
|
+
return this.apiClient.callApi('/graph/data/schema/{id}/objecttypes', 'PUT', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
/**
|
|
382
|
+
* @param {Number} id
|
|
383
|
+
* @param {Object} opts Optional parameters
|
|
384
|
+
* @param {String} opts.authorization The authorization token of the logged in user
|
|
385
|
+
* @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
|
|
386
|
+
* @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
|
|
387
|
+
* @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
|
|
388
|
+
* @param {String} opts.transactionid The id of the transaction this operation is being run in
|
|
389
|
+
* @param {String} opts.body
|
|
390
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/PurgeDataDefaultResponseValue}
|
|
391
|
+
*/
|
|
392
|
+
}, {
|
|
393
|
+
key: "updateObjectTypes",
|
|
394
|
+
value: function updateObjectTypes(id, opts) {
|
|
395
|
+
return this.updateObjectTypesWithHttpInfo(id, opts).then(function (response_and_data) {
|
|
396
|
+
return response_and_data.data;
|
|
397
|
+
});
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
/**
|
|
401
|
+
* @param {Number} id
|
|
402
|
+
* @param {Object} opts Optional parameters
|
|
403
|
+
* @param {String} [authorization] The authorization token of the logged in user
|
|
404
|
+
* @param {Number} [zeusportalPostasApp] The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
405
|
+
* @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
|
|
406
|
+
* @param {Number} [zeusportalPostasSite] The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
407
|
+
* @param {String} [transactionid] The id of the transaction this operation is being run in
|
|
408
|
+
* @param {String} [body]
|
|
409
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/PurgeDataDefaultResponseValue} and HTTP response
|
|
410
|
+
*/
|
|
411
|
+
}, {
|
|
412
|
+
key: "updateTemplate3WithHttpInfo",
|
|
413
|
+
value: function updateTemplate3WithHttpInfo(id, opts) {
|
|
414
|
+
opts = opts || {};
|
|
415
|
+
var postBody = opts['body'];
|
|
416
|
+
// verify the required parameter 'id' is set
|
|
417
|
+
if (id === undefined || id === null) {
|
|
418
|
+
throw new Error("Missing the required parameter 'id' when calling updateTemplate3");
|
|
419
|
+
}
|
|
420
|
+
var pathParams = {
|
|
421
|
+
'id': id
|
|
422
|
+
};
|
|
423
|
+
var queryParams = {};
|
|
424
|
+
var headerParams = {
|
|
425
|
+
'Authorization': opts['authorization'],
|
|
426
|
+
'zeusportal-postas-app': opts['zeusportalPostasApp'],
|
|
427
|
+
'zeusportal-postas': opts['zeusportalPostas'],
|
|
428
|
+
'zeusportal-postas-site': opts['zeusportalPostasSite'],
|
|
429
|
+
'transactionid': opts['transactionid']
|
|
430
|
+
};
|
|
431
|
+
var formParams = {};
|
|
432
|
+
var authNames = ['NexusGraphAPIAuth', 'NexusGraphAPIKey'];
|
|
433
|
+
var contentTypes = ['application/json'];
|
|
434
|
+
var accepts = ['application/json'];
|
|
435
|
+
var returnType = _PurgeDataDefaultResponseValue["default"];
|
|
436
|
+
return this.apiClient.callApi('/graph/data/schema/{id}/template', 'PUT', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
/**
|
|
440
|
+
* @param {Number} id
|
|
441
|
+
* @param {Object} opts Optional parameters
|
|
442
|
+
* @param {String} opts.authorization The authorization token of the logged in user
|
|
443
|
+
* @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
|
|
444
|
+
* @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
|
|
445
|
+
* @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
|
|
446
|
+
* @param {String} opts.transactionid The id of the transaction this operation is being run in
|
|
447
|
+
* @param {String} opts.body
|
|
448
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/PurgeDataDefaultResponseValue}
|
|
449
|
+
*/
|
|
450
|
+
}, {
|
|
451
|
+
key: "updateTemplate3",
|
|
452
|
+
value: function updateTemplate3(id, opts) {
|
|
453
|
+
return this.updateTemplate3WithHttpInfo(id, opts).then(function (response_and_data) {
|
|
454
|
+
return response_and_data.data;
|
|
455
|
+
});
|
|
456
|
+
}
|
|
457
|
+
}]);
|
|
458
|
+
return GraphSchemasApi;
|
|
459
|
+
}();
|