@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,716 @@
|
|
|
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 _GraphObjectSchema = _interopRequireDefault(require("../model/GraphObjectSchema"));
|
|
9
|
+
var _GraphRelationship = _interopRequireDefault(require("../model/GraphRelationship"));
|
|
10
|
+
var _GraphSchema = _interopRequireDefault(require("../model/GraphSchema"));
|
|
11
|
+
var _PurgeDataDefaultResponseValue = _interopRequireDefault(require("../model/PurgeDataDefaultResponseValue"));
|
|
12
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
13
|
+
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); }
|
|
14
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
15
|
+
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); } }
|
|
16
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
17
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
18
|
+
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); } /**
|
|
19
|
+
* gobodo-api
|
|
20
|
+
* REST Interface for Gobodo API
|
|
21
|
+
*
|
|
22
|
+
* The version of the OpenAPI document: 0.1.34
|
|
23
|
+
* Contact: info@gobodo.io
|
|
24
|
+
*
|
|
25
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
26
|
+
* https://openapi-generator.tech
|
|
27
|
+
* Do not edit the class manually.
|
|
28
|
+
*
|
|
29
|
+
*/
|
|
30
|
+
/**
|
|
31
|
+
* Graphs service.
|
|
32
|
+
* @module api/GraphsApi
|
|
33
|
+
* @version 0.1.34
|
|
34
|
+
*/
|
|
35
|
+
var GraphsApi = exports["default"] = /*#__PURE__*/function () {
|
|
36
|
+
/**
|
|
37
|
+
* Constructs a new GraphsApi.
|
|
38
|
+
* @alias module:api/GraphsApi
|
|
39
|
+
* @class
|
|
40
|
+
* @param {module:ApiClient} [apiClient] Optional API client implementation to use,
|
|
41
|
+
* default to {@link module:ApiClient#instance} if unspecified.
|
|
42
|
+
*/
|
|
43
|
+
function GraphsApi(apiClient) {
|
|
44
|
+
_classCallCheck(this, GraphsApi);
|
|
45
|
+
this.apiClient = apiClient || _ApiClient["default"].instance;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* Adds schemas to the graph
|
|
50
|
+
* @param {Number} id
|
|
51
|
+
* @param {Array.<Number>} requestBody Array of schema ids
|
|
52
|
+
* @param {Object} opts Optional parameters
|
|
53
|
+
* @param {String} [authorization] The authorization token of the logged in user
|
|
54
|
+
* @param {Number} [zeusportalPostasApp] The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
55
|
+
* @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
|
|
56
|
+
* @param {Number} [zeusportalPostasSite] The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
57
|
+
* @param {String} [transactionid] The id of the transaction this operation is being run in
|
|
58
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/GraphSchema} and HTTP response
|
|
59
|
+
*/
|
|
60
|
+
_createClass(GraphsApi, [{
|
|
61
|
+
key: "addSchemasWithHttpInfo",
|
|
62
|
+
value: function addSchemasWithHttpInfo(id, requestBody, opts) {
|
|
63
|
+
opts = opts || {};
|
|
64
|
+
var postBody = requestBody;
|
|
65
|
+
// verify the required parameter 'id' is set
|
|
66
|
+
if (id === undefined || id === null) {
|
|
67
|
+
throw new Error("Missing the required parameter 'id' when calling addSchemas");
|
|
68
|
+
}
|
|
69
|
+
// verify the required parameter 'requestBody' is set
|
|
70
|
+
if (requestBody === undefined || requestBody === null) {
|
|
71
|
+
throw new Error("Missing the required parameter 'requestBody' when calling addSchemas");
|
|
72
|
+
}
|
|
73
|
+
var pathParams = {
|
|
74
|
+
'id': id
|
|
75
|
+
};
|
|
76
|
+
var queryParams = {};
|
|
77
|
+
var headerParams = {
|
|
78
|
+
'Authorization': opts['authorization'],
|
|
79
|
+
'zeusportal-postas-app': opts['zeusportalPostasApp'],
|
|
80
|
+
'zeusportal-postas': opts['zeusportalPostas'],
|
|
81
|
+
'zeusportal-postas-site': opts['zeusportalPostasSite'],
|
|
82
|
+
'transactionid': opts['transactionid']
|
|
83
|
+
};
|
|
84
|
+
var formParams = {};
|
|
85
|
+
var authNames = ['NexusGraphAPIAuth', 'NexusGraphAPIKey'];
|
|
86
|
+
var contentTypes = ['application/json'];
|
|
87
|
+
var accepts = ['application/json'];
|
|
88
|
+
var returnType = _GraphSchema["default"];
|
|
89
|
+
return this.apiClient.callApi('/graph/data/graph/{id}/schemas', 'PUT', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
/**
|
|
93
|
+
* Adds schemas to the graph
|
|
94
|
+
* @param {Number} id
|
|
95
|
+
* @param {Array.<Number>} requestBody Array of schema ids
|
|
96
|
+
* @param {Object} opts Optional parameters
|
|
97
|
+
* @param {String} opts.authorization The authorization token of the logged in user
|
|
98
|
+
* @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
|
|
99
|
+
* @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
|
|
100
|
+
* @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
|
|
101
|
+
* @param {String} opts.transactionid The id of the transaction this operation is being run in
|
|
102
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/GraphSchema}
|
|
103
|
+
*/
|
|
104
|
+
}, {
|
|
105
|
+
key: "addSchemas",
|
|
106
|
+
value: function addSchemas(id, requestBody, opts) {
|
|
107
|
+
return this.addSchemasWithHttpInfo(id, requestBody, opts).then(function (response_and_data) {
|
|
108
|
+
return response_and_data.data;
|
|
109
|
+
});
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
/**
|
|
113
|
+
* Adds objects to the graph
|
|
114
|
+
* @param {Number} id
|
|
115
|
+
* @param {Object} opts Optional parameters
|
|
116
|
+
* @param {String} [authorization] The authorization token of the logged in user
|
|
117
|
+
* @param {Number} [zeusportalPostasApp] The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
118
|
+
* @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
|
|
119
|
+
* @param {Number} [zeusportalPostasSite] The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
120
|
+
* @param {String} [transactionid] The id of the transaction this operation is being run in
|
|
121
|
+
* @param {String} [body]
|
|
122
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/GraphObjectSchema} and HTTP response
|
|
123
|
+
*/
|
|
124
|
+
}, {
|
|
125
|
+
key: "createAddObjectsToGraphWithHttpInfo",
|
|
126
|
+
value: function createAddObjectsToGraphWithHttpInfo(id, opts) {
|
|
127
|
+
opts = opts || {};
|
|
128
|
+
var postBody = opts['body'];
|
|
129
|
+
// verify the required parameter 'id' is set
|
|
130
|
+
if (id === undefined || id === null) {
|
|
131
|
+
throw new Error("Missing the required parameter 'id' when calling createAddObjectsToGraph");
|
|
132
|
+
}
|
|
133
|
+
var pathParams = {
|
|
134
|
+
'id': id
|
|
135
|
+
};
|
|
136
|
+
var queryParams = {};
|
|
137
|
+
var headerParams = {
|
|
138
|
+
'Authorization': opts['authorization'],
|
|
139
|
+
'zeusportal-postas-app': opts['zeusportalPostasApp'],
|
|
140
|
+
'zeusportal-postas': opts['zeusportalPostas'],
|
|
141
|
+
'zeusportal-postas-site': opts['zeusportalPostasSite'],
|
|
142
|
+
'transactionid': opts['transactionid']
|
|
143
|
+
};
|
|
144
|
+
var formParams = {};
|
|
145
|
+
var authNames = ['NexusGraphAPIAuth', 'NexusGraphAPIKey'];
|
|
146
|
+
var contentTypes = ['application/json'];
|
|
147
|
+
var accepts = ['application/json'];
|
|
148
|
+
var returnType = _GraphObjectSchema["default"];
|
|
149
|
+
return this.apiClient.callApi('/graph/data/graph/{id}/objects', 'PUT', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
/**
|
|
153
|
+
* Adds objects to the graph
|
|
154
|
+
* @param {Number} id
|
|
155
|
+
* @param {Object} opts Optional parameters
|
|
156
|
+
* @param {String} opts.authorization The authorization token of the logged in user
|
|
157
|
+
* @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
|
|
158
|
+
* @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
|
|
159
|
+
* @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
|
|
160
|
+
* @param {String} opts.transactionid The id of the transaction this operation is being run in
|
|
161
|
+
* @param {String} opts.body
|
|
162
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/GraphObjectSchema}
|
|
163
|
+
*/
|
|
164
|
+
}, {
|
|
165
|
+
key: "createAddObjectsToGraph",
|
|
166
|
+
value: function createAddObjectsToGraph(id, opts) {
|
|
167
|
+
return this.createAddObjectsToGraphWithHttpInfo(id, opts).then(function (response_and_data) {
|
|
168
|
+
return response_and_data.data;
|
|
169
|
+
});
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
/**
|
|
173
|
+
* Root for the API
|
|
174
|
+
* @param {Object} opts Optional parameters
|
|
175
|
+
* @param {String} [authorization] The authorization token of the logged in user
|
|
176
|
+
* @param {Number} [zeusportalPostasApp] The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
177
|
+
* @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
|
|
178
|
+
* @param {Number} [zeusportalPostasSite] The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
179
|
+
* @param {String} [transactionid] The id of the transaction this operation is being run in
|
|
180
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing HTTP response
|
|
181
|
+
*/
|
|
182
|
+
}, {
|
|
183
|
+
key: "get13WithHttpInfo",
|
|
184
|
+
value: function get13WithHttpInfo(opts) {
|
|
185
|
+
opts = opts || {};
|
|
186
|
+
var postBody = null;
|
|
187
|
+
var pathParams = {};
|
|
188
|
+
var queryParams = {};
|
|
189
|
+
var headerParams = {
|
|
190
|
+
'Authorization': opts['authorization'],
|
|
191
|
+
'zeusportal-postas-app': opts['zeusportalPostasApp'],
|
|
192
|
+
'zeusportal-postas': opts['zeusportalPostas'],
|
|
193
|
+
'zeusportal-postas-site': opts['zeusportalPostasSite'],
|
|
194
|
+
'transactionid': opts['transactionid']
|
|
195
|
+
};
|
|
196
|
+
var formParams = {};
|
|
197
|
+
var authNames = ['NexusGraphAPIAuth', 'NexusGraphAPIKey'];
|
|
198
|
+
var contentTypes = [];
|
|
199
|
+
var accepts = ['*/*'];
|
|
200
|
+
var returnType = null;
|
|
201
|
+
return this.apiClient.callApi('/graph/data/graph', 'GET', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
/**
|
|
205
|
+
* Root for the API
|
|
206
|
+
* @param {Object} opts Optional parameters
|
|
207
|
+
* @param {String} opts.authorization The authorization token of the logged in user
|
|
208
|
+
* @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
|
|
209
|
+
* @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
|
|
210
|
+
* @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
|
|
211
|
+
* @param {String} opts.transactionid The id of the transaction this operation is being run in
|
|
212
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}
|
|
213
|
+
*/
|
|
214
|
+
}, {
|
|
215
|
+
key: "get13",
|
|
216
|
+
value: function get13(opts) {
|
|
217
|
+
return this.get13WithHttpInfo(opts).then(function (response_and_data) {
|
|
218
|
+
return response_and_data.data;
|
|
219
|
+
});
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
/**
|
|
223
|
+
* Gets and object by id
|
|
224
|
+
* @param {Number} id
|
|
225
|
+
* @param {Object} opts Optional parameters
|
|
226
|
+
* @param {String} [authorization] The authorization token of the logged in user
|
|
227
|
+
* @param {Number} [zeusportalPostasApp] The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
228
|
+
* @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
|
|
229
|
+
* @param {Number} [zeusportalPostasSite] The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
230
|
+
* @param {String} [transactionid] The id of the transaction this operation is being run in
|
|
231
|
+
* @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
|
|
232
|
+
*/
|
|
233
|
+
}, {
|
|
234
|
+
key: "get14WithHttpInfo",
|
|
235
|
+
value: function get14WithHttpInfo(id, opts) {
|
|
236
|
+
opts = opts || {};
|
|
237
|
+
var postBody = null;
|
|
238
|
+
// verify the required parameter 'id' is set
|
|
239
|
+
if (id === undefined || id === null) {
|
|
240
|
+
throw new Error("Missing the required parameter 'id' when calling get14");
|
|
241
|
+
}
|
|
242
|
+
var pathParams = {
|
|
243
|
+
'id': id
|
|
244
|
+
};
|
|
245
|
+
var queryParams = {};
|
|
246
|
+
var headerParams = {
|
|
247
|
+
'Authorization': opts['authorization'],
|
|
248
|
+
'zeusportal-postas-app': opts['zeusportalPostasApp'],
|
|
249
|
+
'zeusportal-postas': opts['zeusportalPostas'],
|
|
250
|
+
'zeusportal-postas-site': opts['zeusportalPostasSite'],
|
|
251
|
+
'transactionid': opts['transactionid']
|
|
252
|
+
};
|
|
253
|
+
var formParams = {};
|
|
254
|
+
var authNames = ['NexusGraphAPIAuth', 'NexusGraphAPIKey'];
|
|
255
|
+
var contentTypes = [];
|
|
256
|
+
var accepts = ['application/json'];
|
|
257
|
+
var returnType = {
|
|
258
|
+
'String': _PurgeDataDefaultResponseValue["default"]
|
|
259
|
+
};
|
|
260
|
+
return this.apiClient.callApi('/graph/data/graph/{id}', 'GET', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
/**
|
|
264
|
+
* Gets and object by id
|
|
265
|
+
* @param {Number} id
|
|
266
|
+
* @param {Object} opts Optional parameters
|
|
267
|
+
* @param {String} opts.authorization The authorization token of the logged in user
|
|
268
|
+
* @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
|
|
269
|
+
* @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
|
|
270
|
+
* @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
|
|
271
|
+
* @param {String} opts.transactionid The id of the transaction this operation is being run in
|
|
272
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link Object.<String, module:model/{String: PurgeDataDefaultResponseValue}>}
|
|
273
|
+
*/
|
|
274
|
+
}, {
|
|
275
|
+
key: "get14",
|
|
276
|
+
value: function get14(id, opts) {
|
|
277
|
+
return this.get14WithHttpInfo(id, opts).then(function (response_and_data) {
|
|
278
|
+
return response_and_data.data;
|
|
279
|
+
});
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
/**
|
|
283
|
+
* Get objects in the graph
|
|
284
|
+
* @param {Number} id
|
|
285
|
+
* @param {Object} opts Optional parameters
|
|
286
|
+
* @param {String} [authorization] The authorization token of the logged in user
|
|
287
|
+
* @param {Number} [zeusportalPostasApp] The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
288
|
+
* @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
|
|
289
|
+
* @param {Number} [zeusportalPostasSite] The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
290
|
+
* @param {String} [transactionid] The id of the transaction this operation is being run in
|
|
291
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link Array.<module:model/GraphObjectSchema>} and HTTP response
|
|
292
|
+
*/
|
|
293
|
+
}, {
|
|
294
|
+
key: "getObjectsInGraphWithHttpInfo",
|
|
295
|
+
value: function getObjectsInGraphWithHttpInfo(id, opts) {
|
|
296
|
+
opts = opts || {};
|
|
297
|
+
var postBody = null;
|
|
298
|
+
// verify the required parameter 'id' is set
|
|
299
|
+
if (id === undefined || id === null) {
|
|
300
|
+
throw new Error("Missing the required parameter 'id' when calling getObjectsInGraph");
|
|
301
|
+
}
|
|
302
|
+
var pathParams = {
|
|
303
|
+
'id': id
|
|
304
|
+
};
|
|
305
|
+
var queryParams = {};
|
|
306
|
+
var headerParams = {
|
|
307
|
+
'Authorization': opts['authorization'],
|
|
308
|
+
'zeusportal-postas-app': opts['zeusportalPostasApp'],
|
|
309
|
+
'zeusportal-postas': opts['zeusportalPostas'],
|
|
310
|
+
'zeusportal-postas-site': opts['zeusportalPostasSite'],
|
|
311
|
+
'transactionid': opts['transactionid']
|
|
312
|
+
};
|
|
313
|
+
var formParams = {};
|
|
314
|
+
var authNames = ['NexusGraphAPIAuth', 'NexusGraphAPIKey'];
|
|
315
|
+
var contentTypes = [];
|
|
316
|
+
var accepts = ['application/json'];
|
|
317
|
+
var returnType = [_GraphObjectSchema["default"]];
|
|
318
|
+
return this.apiClient.callApi('/graph/data/graph/{id}/objects', 'GET', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
/**
|
|
322
|
+
* Get objects in the graph
|
|
323
|
+
* @param {Number} id
|
|
324
|
+
* @param {Object} opts Optional parameters
|
|
325
|
+
* @param {String} opts.authorization The authorization token of the logged in user
|
|
326
|
+
* @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
|
|
327
|
+
* @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
|
|
328
|
+
* @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
|
|
329
|
+
* @param {String} opts.transactionid The id of the transaction this operation is being run in
|
|
330
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link Array.<module:model/GraphObjectSchema>}
|
|
331
|
+
*/
|
|
332
|
+
}, {
|
|
333
|
+
key: "getObjectsInGraph",
|
|
334
|
+
value: function getObjectsInGraph(id, opts) {
|
|
335
|
+
return this.getObjectsInGraphWithHttpInfo(id, opts).then(function (response_and_data) {
|
|
336
|
+
return response_and_data.data;
|
|
337
|
+
});
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
/**
|
|
341
|
+
* Get objects in the graph with the given tag
|
|
342
|
+
* @param {Number} id
|
|
343
|
+
* @param {String} tag
|
|
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
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link Array.<module:model/GraphObjectSchema>} and HTTP response
|
|
351
|
+
*/
|
|
352
|
+
}, {
|
|
353
|
+
key: "getObjectsInGraphByTagWithHttpInfo",
|
|
354
|
+
value: function getObjectsInGraphByTagWithHttpInfo(id, tag, opts) {
|
|
355
|
+
opts = opts || {};
|
|
356
|
+
var postBody = null;
|
|
357
|
+
// verify the required parameter 'id' is set
|
|
358
|
+
if (id === undefined || id === null) {
|
|
359
|
+
throw new Error("Missing the required parameter 'id' when calling getObjectsInGraphByTag");
|
|
360
|
+
}
|
|
361
|
+
// verify the required parameter 'tag' is set
|
|
362
|
+
if (tag === undefined || tag === null) {
|
|
363
|
+
throw new Error("Missing the required parameter 'tag' when calling getObjectsInGraphByTag");
|
|
364
|
+
}
|
|
365
|
+
var pathParams = {
|
|
366
|
+
'id': id,
|
|
367
|
+
'tag': tag
|
|
368
|
+
};
|
|
369
|
+
var queryParams = {};
|
|
370
|
+
var headerParams = {
|
|
371
|
+
'Authorization': opts['authorization'],
|
|
372
|
+
'zeusportal-postas-app': opts['zeusportalPostasApp'],
|
|
373
|
+
'zeusportal-postas': opts['zeusportalPostas'],
|
|
374
|
+
'zeusportal-postas-site': opts['zeusportalPostasSite'],
|
|
375
|
+
'transactionid': opts['transactionid']
|
|
376
|
+
};
|
|
377
|
+
var formParams = {};
|
|
378
|
+
var authNames = ['NexusGraphAPIAuth', 'NexusGraphAPIKey'];
|
|
379
|
+
var contentTypes = [];
|
|
380
|
+
var accepts = ['application/json'];
|
|
381
|
+
var returnType = [_GraphObjectSchema["default"]];
|
|
382
|
+
return this.apiClient.callApi('/graph/data/graph/{id}/objects/tag/{tag}', 'GET', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
/**
|
|
386
|
+
* Get objects in the graph with the given tag
|
|
387
|
+
* @param {Number} id
|
|
388
|
+
* @param {String} tag
|
|
389
|
+
* @param {Object} opts Optional parameters
|
|
390
|
+
* @param {String} opts.authorization The authorization token of the logged in user
|
|
391
|
+
* @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
|
|
392
|
+
* @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
|
|
393
|
+
* @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
|
|
394
|
+
* @param {String} opts.transactionid The id of the transaction this operation is being run in
|
|
395
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link Array.<module:model/GraphObjectSchema>}
|
|
396
|
+
*/
|
|
397
|
+
}, {
|
|
398
|
+
key: "getObjectsInGraphByTag",
|
|
399
|
+
value: function getObjectsInGraphByTag(id, tag, opts) {
|
|
400
|
+
return this.getObjectsInGraphByTagWithHttpInfo(id, tag, opts).then(function (response_and_data) {
|
|
401
|
+
return response_and_data.data;
|
|
402
|
+
});
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
/**
|
|
406
|
+
* Get objects in the graph with the given object type
|
|
407
|
+
* @param {Number} id
|
|
408
|
+
* @param {String} type
|
|
409
|
+
* @param {Object} opts Optional parameters
|
|
410
|
+
* @param {String} [authorization] The authorization token of the logged in user
|
|
411
|
+
* @param {Number} [zeusportalPostasApp] The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
412
|
+
* @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
|
|
413
|
+
* @param {Number} [zeusportalPostasSite] The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
414
|
+
* @param {String} [transactionid] The id of the transaction this operation is being run in
|
|
415
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link Array.<module:model/GraphObjectSchema>} and HTTP response
|
|
416
|
+
*/
|
|
417
|
+
}, {
|
|
418
|
+
key: "getObjectsInGraphByTypeWithHttpInfo",
|
|
419
|
+
value: function getObjectsInGraphByTypeWithHttpInfo(id, type, opts) {
|
|
420
|
+
opts = opts || {};
|
|
421
|
+
var postBody = null;
|
|
422
|
+
// verify the required parameter 'id' is set
|
|
423
|
+
if (id === undefined || id === null) {
|
|
424
|
+
throw new Error("Missing the required parameter 'id' when calling getObjectsInGraphByType");
|
|
425
|
+
}
|
|
426
|
+
// verify the required parameter 'type' is set
|
|
427
|
+
if (type === undefined || type === null) {
|
|
428
|
+
throw new Error("Missing the required parameter 'type' when calling getObjectsInGraphByType");
|
|
429
|
+
}
|
|
430
|
+
var pathParams = {
|
|
431
|
+
'id': id,
|
|
432
|
+
'type': type
|
|
433
|
+
};
|
|
434
|
+
var queryParams = {};
|
|
435
|
+
var headerParams = {
|
|
436
|
+
'Authorization': opts['authorization'],
|
|
437
|
+
'zeusportal-postas-app': opts['zeusportalPostasApp'],
|
|
438
|
+
'zeusportal-postas': opts['zeusportalPostas'],
|
|
439
|
+
'zeusportal-postas-site': opts['zeusportalPostasSite'],
|
|
440
|
+
'transactionid': opts['transactionid']
|
|
441
|
+
};
|
|
442
|
+
var formParams = {};
|
|
443
|
+
var authNames = ['NexusGraphAPIAuth', 'NexusGraphAPIKey'];
|
|
444
|
+
var contentTypes = [];
|
|
445
|
+
var accepts = ['application/json'];
|
|
446
|
+
var returnType = [_GraphObjectSchema["default"]];
|
|
447
|
+
return this.apiClient.callApi('/graph/data/graph/{id}/objects/type/{type}', 'GET', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
/**
|
|
451
|
+
* Get objects in the graph with the given object type
|
|
452
|
+
* @param {Number} id
|
|
453
|
+
* @param {String} type
|
|
454
|
+
* @param {Object} opts Optional parameters
|
|
455
|
+
* @param {String} opts.authorization The authorization token of the logged in user
|
|
456
|
+
* @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
|
|
457
|
+
* @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
|
|
458
|
+
* @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
|
|
459
|
+
* @param {String} opts.transactionid The id of the transaction this operation is being run in
|
|
460
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link Array.<module:model/GraphObjectSchema>}
|
|
461
|
+
*/
|
|
462
|
+
}, {
|
|
463
|
+
key: "getObjectsInGraphByType",
|
|
464
|
+
value: function getObjectsInGraphByType(id, type, opts) {
|
|
465
|
+
return this.getObjectsInGraphByTypeWithHttpInfo(id, type, opts).then(function (response_and_data) {
|
|
466
|
+
return response_and_data.data;
|
|
467
|
+
});
|
|
468
|
+
}
|
|
469
|
+
|
|
470
|
+
/**
|
|
471
|
+
* Get relationships in the graph
|
|
472
|
+
* @param {Number} id
|
|
473
|
+
* @param {Object} opts Optional parameters
|
|
474
|
+
* @param {String} [authorization] The authorization token of the logged in user
|
|
475
|
+
* @param {Number} [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} [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} [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} [transactionid] The id of the transaction this operation is being run in
|
|
479
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/GraphRelationship} and HTTP response
|
|
480
|
+
*/
|
|
481
|
+
}, {
|
|
482
|
+
key: "getRelationshipsWithHttpInfo",
|
|
483
|
+
value: function getRelationshipsWithHttpInfo(id, opts) {
|
|
484
|
+
opts = opts || {};
|
|
485
|
+
var postBody = null;
|
|
486
|
+
// verify the required parameter 'id' is set
|
|
487
|
+
if (id === undefined || id === null) {
|
|
488
|
+
throw new Error("Missing the required parameter 'id' when calling getRelationships");
|
|
489
|
+
}
|
|
490
|
+
var pathParams = {
|
|
491
|
+
'id': id
|
|
492
|
+
};
|
|
493
|
+
var queryParams = {};
|
|
494
|
+
var headerParams = {
|
|
495
|
+
'Authorization': opts['authorization'],
|
|
496
|
+
'zeusportal-postas-app': opts['zeusportalPostasApp'],
|
|
497
|
+
'zeusportal-postas': opts['zeusportalPostas'],
|
|
498
|
+
'zeusportal-postas-site': opts['zeusportalPostasSite'],
|
|
499
|
+
'transactionid': opts['transactionid']
|
|
500
|
+
};
|
|
501
|
+
var formParams = {};
|
|
502
|
+
var authNames = ['NexusGraphAPIAuth', 'NexusGraphAPIKey'];
|
|
503
|
+
var contentTypes = [];
|
|
504
|
+
var accepts = ['application/json'];
|
|
505
|
+
var returnType = _GraphRelationship["default"];
|
|
506
|
+
return this.apiClient.callApi('/graph/data/graph/{id}/relationships', 'GET', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|
|
507
|
+
}
|
|
508
|
+
|
|
509
|
+
/**
|
|
510
|
+
* Get relationships in the graph
|
|
511
|
+
* @param {Number} id
|
|
512
|
+
* @param {Object} opts Optional parameters
|
|
513
|
+
* @param {String} opts.authorization The authorization token of the logged in user
|
|
514
|
+
* @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
|
|
515
|
+
* @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
|
|
516
|
+
* @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
|
|
517
|
+
* @param {String} opts.transactionid The id of the transaction this operation is being run in
|
|
518
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/GraphRelationship}
|
|
519
|
+
*/
|
|
520
|
+
}, {
|
|
521
|
+
key: "getRelationships",
|
|
522
|
+
value: function getRelationships(id, opts) {
|
|
523
|
+
return this.getRelationshipsWithHttpInfo(id, opts).then(function (response_and_data) {
|
|
524
|
+
return response_and_data.data;
|
|
525
|
+
});
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
/**
|
|
529
|
+
* Get relationships in the graph with the given object type
|
|
530
|
+
* @param {Number} id
|
|
531
|
+
* @param {String} type
|
|
532
|
+
* @param {Object} opts Optional parameters
|
|
533
|
+
* @param {String} [authorization] The authorization token of the logged in user
|
|
534
|
+
* @param {Number} [zeusportalPostasApp] The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
535
|
+
* @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
|
|
536
|
+
* @param {Number} [zeusportalPostasSite] The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
537
|
+
* @param {String} [transactionid] The id of the transaction this operation is being run in
|
|
538
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/GraphRelationship} and HTTP response
|
|
539
|
+
*/
|
|
540
|
+
}, {
|
|
541
|
+
key: "getRelationships1WithHttpInfo",
|
|
542
|
+
value: function getRelationships1WithHttpInfo(id, type, opts) {
|
|
543
|
+
opts = opts || {};
|
|
544
|
+
var postBody = null;
|
|
545
|
+
// verify the required parameter 'id' is set
|
|
546
|
+
if (id === undefined || id === null) {
|
|
547
|
+
throw new Error("Missing the required parameter 'id' when calling getRelationships1");
|
|
548
|
+
}
|
|
549
|
+
// verify the required parameter 'type' is set
|
|
550
|
+
if (type === undefined || type === null) {
|
|
551
|
+
throw new Error("Missing the required parameter 'type' when calling getRelationships1");
|
|
552
|
+
}
|
|
553
|
+
var pathParams = {
|
|
554
|
+
'id': id,
|
|
555
|
+
'type': type
|
|
556
|
+
};
|
|
557
|
+
var queryParams = {};
|
|
558
|
+
var headerParams = {
|
|
559
|
+
'Authorization': opts['authorization'],
|
|
560
|
+
'zeusportal-postas-app': opts['zeusportalPostasApp'],
|
|
561
|
+
'zeusportal-postas': opts['zeusportalPostas'],
|
|
562
|
+
'zeusportal-postas-site': opts['zeusportalPostasSite'],
|
|
563
|
+
'transactionid': opts['transactionid']
|
|
564
|
+
};
|
|
565
|
+
var formParams = {};
|
|
566
|
+
var authNames = ['NexusGraphAPIAuth', 'NexusGraphAPIKey'];
|
|
567
|
+
var contentTypes = [];
|
|
568
|
+
var accepts = ['application/json'];
|
|
569
|
+
var returnType = _GraphRelationship["default"];
|
|
570
|
+
return this.apiClient.callApi('/graph/data/graph/{id}/relationships/{type}', 'GET', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|
|
571
|
+
}
|
|
572
|
+
|
|
573
|
+
/**
|
|
574
|
+
* Get relationships in the graph with the given object type
|
|
575
|
+
* @param {Number} id
|
|
576
|
+
* @param {String} type
|
|
577
|
+
* @param {Object} opts Optional parameters
|
|
578
|
+
* @param {String} opts.authorization The authorization token of the logged in user
|
|
579
|
+
* @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
|
|
580
|
+
* @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
|
|
581
|
+
* @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
|
|
582
|
+
* @param {String} opts.transactionid The id of the transaction this operation is being run in
|
|
583
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/GraphRelationship}
|
|
584
|
+
*/
|
|
585
|
+
}, {
|
|
586
|
+
key: "getRelationships1",
|
|
587
|
+
value: function getRelationships1(id, type, opts) {
|
|
588
|
+
return this.getRelationships1WithHttpInfo(id, type, opts).then(function (response_and_data) {
|
|
589
|
+
return response_and_data.data;
|
|
590
|
+
});
|
|
591
|
+
}
|
|
592
|
+
|
|
593
|
+
/**
|
|
594
|
+
* Get schemas in the graph
|
|
595
|
+
* @param {Number} id
|
|
596
|
+
* @param {Object} opts Optional parameters
|
|
597
|
+
* @param {String} [authorization] The authorization token of the logged in user
|
|
598
|
+
* @param {Number} [zeusportalPostasApp] The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
599
|
+
* @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
|
|
600
|
+
* @param {Number} [zeusportalPostasSite] The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
601
|
+
* @param {String} [transactionid] The id of the transaction this operation is being run in
|
|
602
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/GraphSchema} and HTTP response
|
|
603
|
+
*/
|
|
604
|
+
}, {
|
|
605
|
+
key: "getSchemasWithHttpInfo",
|
|
606
|
+
value: function getSchemasWithHttpInfo(id, opts) {
|
|
607
|
+
opts = opts || {};
|
|
608
|
+
var postBody = null;
|
|
609
|
+
// verify the required parameter 'id' is set
|
|
610
|
+
if (id === undefined || id === null) {
|
|
611
|
+
throw new Error("Missing the required parameter 'id' when calling getSchemas");
|
|
612
|
+
}
|
|
613
|
+
var pathParams = {
|
|
614
|
+
'id': id
|
|
615
|
+
};
|
|
616
|
+
var queryParams = {};
|
|
617
|
+
var headerParams = {
|
|
618
|
+
'Authorization': opts['authorization'],
|
|
619
|
+
'zeusportal-postas-app': opts['zeusportalPostasApp'],
|
|
620
|
+
'zeusportal-postas': opts['zeusportalPostas'],
|
|
621
|
+
'zeusportal-postas-site': opts['zeusportalPostasSite'],
|
|
622
|
+
'transactionid': opts['transactionid']
|
|
623
|
+
};
|
|
624
|
+
var formParams = {};
|
|
625
|
+
var authNames = ['NexusGraphAPIAuth', 'NexusGraphAPIKey'];
|
|
626
|
+
var contentTypes = [];
|
|
627
|
+
var accepts = ['application/json'];
|
|
628
|
+
var returnType = _GraphSchema["default"];
|
|
629
|
+
return this.apiClient.callApi('/graph/data/graph/{id}/schemas', 'GET', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
/**
|
|
633
|
+
* Get schemas in the graph
|
|
634
|
+
* @param {Number} id
|
|
635
|
+
* @param {Object} opts Optional parameters
|
|
636
|
+
* @param {String} opts.authorization The authorization token of the logged in user
|
|
637
|
+
* @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
|
|
638
|
+
* @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
|
|
639
|
+
* @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
|
|
640
|
+
* @param {String} opts.transactionid The id of the transaction this operation is being run in
|
|
641
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/GraphSchema}
|
|
642
|
+
*/
|
|
643
|
+
}, {
|
|
644
|
+
key: "getSchemas",
|
|
645
|
+
value: function getSchemas(id, opts) {
|
|
646
|
+
return this.getSchemasWithHttpInfo(id, opts).then(function (response_and_data) {
|
|
647
|
+
return response_and_data.data;
|
|
648
|
+
});
|
|
649
|
+
}
|
|
650
|
+
|
|
651
|
+
/**
|
|
652
|
+
* Removes schemas to the graph
|
|
653
|
+
* @param {Number} id
|
|
654
|
+
* @param {Array.<Number>} requestBody Array of schema ids
|
|
655
|
+
* @param {Object} opts Optional parameters
|
|
656
|
+
* @param {String} [authorization] The authorization token of the logged in user
|
|
657
|
+
* @param {Number} [zeusportalPostasApp] The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
658
|
+
* @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
|
|
659
|
+
* @param {Number} [zeusportalPostasSite] The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
660
|
+
* @param {String} [transactionid] The id of the transaction this operation is being run in
|
|
661
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing HTTP response
|
|
662
|
+
*/
|
|
663
|
+
}, {
|
|
664
|
+
key: "removeSchemasWithHttpInfo",
|
|
665
|
+
value: function removeSchemasWithHttpInfo(id, requestBody, opts) {
|
|
666
|
+
opts = opts || {};
|
|
667
|
+
var postBody = requestBody;
|
|
668
|
+
// verify the required parameter 'id' is set
|
|
669
|
+
if (id === undefined || id === null) {
|
|
670
|
+
throw new Error("Missing the required parameter 'id' when calling removeSchemas");
|
|
671
|
+
}
|
|
672
|
+
// verify the required parameter 'requestBody' is set
|
|
673
|
+
if (requestBody === undefined || requestBody === null) {
|
|
674
|
+
throw new Error("Missing the required parameter 'requestBody' when calling removeSchemas");
|
|
675
|
+
}
|
|
676
|
+
var pathParams = {
|
|
677
|
+
'id': id
|
|
678
|
+
};
|
|
679
|
+
var queryParams = {};
|
|
680
|
+
var headerParams = {
|
|
681
|
+
'Authorization': opts['authorization'],
|
|
682
|
+
'zeusportal-postas-app': opts['zeusportalPostasApp'],
|
|
683
|
+
'zeusportal-postas': opts['zeusportalPostas'],
|
|
684
|
+
'zeusportal-postas-site': opts['zeusportalPostasSite'],
|
|
685
|
+
'transactionid': opts['transactionid']
|
|
686
|
+
};
|
|
687
|
+
var formParams = {};
|
|
688
|
+
var authNames = ['NexusGraphAPIAuth', 'NexusGraphAPIKey'];
|
|
689
|
+
var contentTypes = ['application/json'];
|
|
690
|
+
var accepts = ['application/json'];
|
|
691
|
+
var returnType = null;
|
|
692
|
+
return this.apiClient.callApi('/graph/data/graph/{id}/schemas', 'DELETE', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|
|
693
|
+
}
|
|
694
|
+
|
|
695
|
+
/**
|
|
696
|
+
* Removes schemas to the graph
|
|
697
|
+
* @param {Number} id
|
|
698
|
+
* @param {Array.<Number>} requestBody Array of schema ids
|
|
699
|
+
* @param {Object} opts Optional parameters
|
|
700
|
+
* @param {String} opts.authorization The authorization token of the logged in user
|
|
701
|
+
* @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
|
|
702
|
+
* @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
|
|
703
|
+
* @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
|
|
704
|
+
* @param {String} opts.transactionid The id of the transaction this operation is being run in
|
|
705
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}
|
|
706
|
+
*/
|
|
707
|
+
}, {
|
|
708
|
+
key: "removeSchemas",
|
|
709
|
+
value: function removeSchemas(id, requestBody, opts) {
|
|
710
|
+
return this.removeSchemasWithHttpInfo(id, requestBody, opts).then(function (response_and_data) {
|
|
711
|
+
return response_and_data.data;
|
|
712
|
+
});
|
|
713
|
+
}
|
|
714
|
+
}]);
|
|
715
|
+
return GraphsApi;
|
|
716
|
+
}();
|