@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,415 @@
|
|
|
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 _GraphTraversalInput = _interopRequireDefault(require("../model/GraphTraversalInput"));
|
|
10
|
+
var _Path = _interopRequireDefault(require("../model/Path"));
|
|
11
|
+
var _TraversalRelationResponse = _interopRequireDefault(require("../model/TraversalRelationResponse"));
|
|
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
|
+
* GraphTraversal service.
|
|
32
|
+
* @module api/GraphTraversalApi
|
|
33
|
+
* @version 0.1.34
|
|
34
|
+
*/
|
|
35
|
+
var GraphTraversalApi = exports["default"] = /*#__PURE__*/function () {
|
|
36
|
+
/**
|
|
37
|
+
* Constructs a new GraphTraversalApi.
|
|
38
|
+
* @alias module:api/GraphTraversalApi
|
|
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 GraphTraversalApi(apiClient) {
|
|
44
|
+
_classCallCheck(this, GraphTraversalApi);
|
|
45
|
+
this.apiClient = apiClient || _ApiClient["default"].instance;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* Traverses the graph and returns a list of discovered paths
|
|
50
|
+
* Traverses the graph based on the traversal query provided
|
|
51
|
+
* @param {module:model/GraphTraversalInput} graphTraversalInput The traversal query to execute
|
|
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 Array.<module:model/Path>} and HTTP response
|
|
59
|
+
*/
|
|
60
|
+
_createClass(GraphTraversalApi, [{
|
|
61
|
+
key: "traverseWithHttpInfo",
|
|
62
|
+
value: function traverseWithHttpInfo(graphTraversalInput, opts) {
|
|
63
|
+
opts = opts || {};
|
|
64
|
+
var postBody = graphTraversalInput;
|
|
65
|
+
// verify the required parameter 'graphTraversalInput' is set
|
|
66
|
+
if (graphTraversalInput === undefined || graphTraversalInput === null) {
|
|
67
|
+
throw new Error("Missing the required parameter 'graphTraversalInput' when calling traverse");
|
|
68
|
+
}
|
|
69
|
+
var pathParams = {};
|
|
70
|
+
var queryParams = {};
|
|
71
|
+
var headerParams = {
|
|
72
|
+
'Authorization': opts['authorization'],
|
|
73
|
+
'zeusportal-postas-app': opts['zeusportalPostasApp'],
|
|
74
|
+
'zeusportal-postas': opts['zeusportalPostas'],
|
|
75
|
+
'zeusportal-postas-site': opts['zeusportalPostasSite'],
|
|
76
|
+
'transactionid': opts['transactionid']
|
|
77
|
+
};
|
|
78
|
+
var formParams = {};
|
|
79
|
+
var authNames = ['NexusGraphAPIAuth', 'NexusGraphAPIKey'];
|
|
80
|
+
var contentTypes = ['application/json'];
|
|
81
|
+
var accepts = ['application/json'];
|
|
82
|
+
var returnType = [_Path["default"]];
|
|
83
|
+
return this.apiClient.callApi('/graph/data/traverse', 'POST', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
/**
|
|
87
|
+
* Traverses the graph and returns a list of discovered paths
|
|
88
|
+
* Traverses the graph based on the traversal query provided
|
|
89
|
+
* @param {module:model/GraphTraversalInput} graphTraversalInput The traversal query to execute
|
|
90
|
+
* @param {Object} opts Optional parameters
|
|
91
|
+
* @param {String} opts.authorization The authorization token of the logged in user
|
|
92
|
+
* @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
|
|
93
|
+
* @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
|
|
94
|
+
* @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
|
|
95
|
+
* @param {String} opts.transactionid The id of the transaction this operation is being run in
|
|
96
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link Array.<module:model/Path>}
|
|
97
|
+
*/
|
|
98
|
+
}, {
|
|
99
|
+
key: "traverse",
|
|
100
|
+
value: function traverse(graphTraversalInput, opts) {
|
|
101
|
+
return this.traverseWithHttpInfo(graphTraversalInput, opts).then(function (response_and_data) {
|
|
102
|
+
return response_and_data.data;
|
|
103
|
+
});
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
/**
|
|
107
|
+
* Traverses the graph from this object and returns a list of discovered paths
|
|
108
|
+
* @param {Number} id The id of the object being traversed from
|
|
109
|
+
* @param {module:model/GraphTraversalInput} graphTraversalInput The traversal query to execute
|
|
110
|
+
* @param {Object} opts Optional parameters
|
|
111
|
+
* @param {String} [authorization] The authorization token of the logged in user
|
|
112
|
+
* @param {Number} [zeusportalPostasApp] The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
113
|
+
* @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
|
|
114
|
+
* @param {Number} [zeusportalPostasSite] The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
115
|
+
* @param {String} [transactionid] The id of the transaction this operation is being run in
|
|
116
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link Array.<module:model/Path>} and HTTP response
|
|
117
|
+
*/
|
|
118
|
+
}, {
|
|
119
|
+
key: "traverseFromWithHttpInfo",
|
|
120
|
+
value: function traverseFromWithHttpInfo(id, graphTraversalInput, opts) {
|
|
121
|
+
opts = opts || {};
|
|
122
|
+
var postBody = graphTraversalInput;
|
|
123
|
+
// verify the required parameter 'id' is set
|
|
124
|
+
if (id === undefined || id === null) {
|
|
125
|
+
throw new Error("Missing the required parameter 'id' when calling traverseFrom");
|
|
126
|
+
}
|
|
127
|
+
// verify the required parameter 'graphTraversalInput' is set
|
|
128
|
+
if (graphTraversalInput === undefined || graphTraversalInput === null) {
|
|
129
|
+
throw new Error("Missing the required parameter 'graphTraversalInput' when calling traverseFrom");
|
|
130
|
+
}
|
|
131
|
+
var pathParams = {
|
|
132
|
+
'id': id
|
|
133
|
+
};
|
|
134
|
+
var queryParams = {};
|
|
135
|
+
var headerParams = {
|
|
136
|
+
'Authorization': opts['authorization'],
|
|
137
|
+
'zeusportal-postas-app': opts['zeusportalPostasApp'],
|
|
138
|
+
'zeusportal-postas': opts['zeusportalPostas'],
|
|
139
|
+
'zeusportal-postas-site': opts['zeusportalPostasSite'],
|
|
140
|
+
'transactionid': opts['transactionid']
|
|
141
|
+
};
|
|
142
|
+
var formParams = {};
|
|
143
|
+
var authNames = ['NexusGraphAPIAuth', 'NexusGraphAPIKey'];
|
|
144
|
+
var contentTypes = ['application/json'];
|
|
145
|
+
var accepts = ['application/json'];
|
|
146
|
+
var returnType = [_Path["default"]];
|
|
147
|
+
return this.apiClient.callApi('/graph/data/traverse/{id}/traverse', 'POST', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
/**
|
|
151
|
+
* Traverses the graph from this object and returns a list of discovered paths
|
|
152
|
+
* @param {Number} id The id of the object being traversed from
|
|
153
|
+
* @param {module:model/GraphTraversalInput} graphTraversalInput The traversal query to execute
|
|
154
|
+
* @param {Object} opts Optional parameters
|
|
155
|
+
* @param {String} opts.authorization The authorization token of the logged in user
|
|
156
|
+
* @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
|
|
157
|
+
* @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
|
|
158
|
+
* @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
|
|
159
|
+
* @param {String} opts.transactionid The id of the transaction this operation is being run in
|
|
160
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link Array.<module:model/Path>}
|
|
161
|
+
*/
|
|
162
|
+
}, {
|
|
163
|
+
key: "traverseFrom",
|
|
164
|
+
value: function traverseFrom(id, graphTraversalInput, opts) {
|
|
165
|
+
return this.traverseFromWithHttpInfo(id, graphTraversalInput, opts).then(function (response_and_data) {
|
|
166
|
+
return response_and_data.data;
|
|
167
|
+
});
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
/**
|
|
171
|
+
* Traverses the graph from this object and returns a list of discovered objects
|
|
172
|
+
* @param {Number} id The id of the object being traversed from
|
|
173
|
+
* @param {module:model/GraphTraversalInput} graphTraversalInput The traversal query to execute
|
|
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 data of type {@link Array.<module:model/GraphObjectSchema>} and HTTP response
|
|
181
|
+
*/
|
|
182
|
+
}, {
|
|
183
|
+
key: "traverseFromFindObjectsWithHttpInfo",
|
|
184
|
+
value: function traverseFromFindObjectsWithHttpInfo(id, graphTraversalInput, opts) {
|
|
185
|
+
opts = opts || {};
|
|
186
|
+
var postBody = graphTraversalInput;
|
|
187
|
+
// verify the required parameter 'id' is set
|
|
188
|
+
if (id === undefined || id === null) {
|
|
189
|
+
throw new Error("Missing the required parameter 'id' when calling traverseFromFindObjects");
|
|
190
|
+
}
|
|
191
|
+
// verify the required parameter 'graphTraversalInput' is set
|
|
192
|
+
if (graphTraversalInput === undefined || graphTraversalInput === null) {
|
|
193
|
+
throw new Error("Missing the required parameter 'graphTraversalInput' when calling traverseFromFindObjects");
|
|
194
|
+
}
|
|
195
|
+
var pathParams = {
|
|
196
|
+
'id': id
|
|
197
|
+
};
|
|
198
|
+
var queryParams = {};
|
|
199
|
+
var headerParams = {
|
|
200
|
+
'Authorization': opts['authorization'],
|
|
201
|
+
'zeusportal-postas-app': opts['zeusportalPostasApp'],
|
|
202
|
+
'zeusportal-postas': opts['zeusportalPostas'],
|
|
203
|
+
'zeusportal-postas-site': opts['zeusportalPostasSite'],
|
|
204
|
+
'transactionid': opts['transactionid']
|
|
205
|
+
};
|
|
206
|
+
var formParams = {};
|
|
207
|
+
var authNames = ['NexusGraphAPIAuth', 'NexusGraphAPIKey'];
|
|
208
|
+
var contentTypes = ['application/json'];
|
|
209
|
+
var accepts = ['application/json'];
|
|
210
|
+
var returnType = [_GraphObjectSchema["default"]];
|
|
211
|
+
return this.apiClient.callApi('/graph/data/traverse/{id}/traverseobjects', 'POST', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
/**
|
|
215
|
+
* Traverses the graph from this object and returns a list of discovered objects
|
|
216
|
+
* @param {Number} id The id of the object being traversed from
|
|
217
|
+
* @param {module:model/GraphTraversalInput} graphTraversalInput The traversal query to execute
|
|
218
|
+
* @param {Object} opts Optional parameters
|
|
219
|
+
* @param {String} opts.authorization The authorization token of the logged in user
|
|
220
|
+
* @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
|
|
221
|
+
* @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
|
|
222
|
+
* @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
|
|
223
|
+
* @param {String} opts.transactionid The id of the transaction this operation is being run in
|
|
224
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link Array.<module:model/GraphObjectSchema>}
|
|
225
|
+
*/
|
|
226
|
+
}, {
|
|
227
|
+
key: "traverseFromFindObjects",
|
|
228
|
+
value: function traverseFromFindObjects(id, graphTraversalInput, opts) {
|
|
229
|
+
return this.traverseFromFindObjectsWithHttpInfo(id, graphTraversalInput, opts).then(function (response_and_data) {
|
|
230
|
+
return response_and_data.data;
|
|
231
|
+
});
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
/**
|
|
235
|
+
* Traverses the graph from this object and returns a list of discovered relationships
|
|
236
|
+
* @param {Number} id The id of the object being traversed from
|
|
237
|
+
* @param {module:model/GraphTraversalInput} graphTraversalInput The traversal query to execute
|
|
238
|
+
* @param {Object} opts Optional parameters
|
|
239
|
+
* @param {String} [authorization] The authorization token of the logged in user
|
|
240
|
+
* @param {Number} [zeusportalPostasApp] The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
241
|
+
* @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
|
|
242
|
+
* @param {Number} [zeusportalPostasSite] The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
243
|
+
* @param {String} [transactionid] The id of the transaction this operation is being run in
|
|
244
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/TraversalRelationResponse} and HTTP response
|
|
245
|
+
*/
|
|
246
|
+
}, {
|
|
247
|
+
key: "traverseFromFindRelationshipsWithHttpInfo",
|
|
248
|
+
value: function traverseFromFindRelationshipsWithHttpInfo(id, graphTraversalInput, opts) {
|
|
249
|
+
opts = opts || {};
|
|
250
|
+
var postBody = graphTraversalInput;
|
|
251
|
+
// verify the required parameter 'id' is set
|
|
252
|
+
if (id === undefined || id === null) {
|
|
253
|
+
throw new Error("Missing the required parameter 'id' when calling traverseFromFindRelationships");
|
|
254
|
+
}
|
|
255
|
+
// verify the required parameter 'graphTraversalInput' is set
|
|
256
|
+
if (graphTraversalInput === undefined || graphTraversalInput === null) {
|
|
257
|
+
throw new Error("Missing the required parameter 'graphTraversalInput' when calling traverseFromFindRelationships");
|
|
258
|
+
}
|
|
259
|
+
var pathParams = {
|
|
260
|
+
'id': id
|
|
261
|
+
};
|
|
262
|
+
var queryParams = {};
|
|
263
|
+
var headerParams = {
|
|
264
|
+
'Authorization': opts['authorization'],
|
|
265
|
+
'zeusportal-postas-app': opts['zeusportalPostasApp'],
|
|
266
|
+
'zeusportal-postas': opts['zeusportalPostas'],
|
|
267
|
+
'zeusportal-postas-site': opts['zeusportalPostasSite'],
|
|
268
|
+
'transactionid': opts['transactionid']
|
|
269
|
+
};
|
|
270
|
+
var formParams = {};
|
|
271
|
+
var authNames = ['NexusGraphAPIAuth', 'NexusGraphAPIKey'];
|
|
272
|
+
var contentTypes = ['application/json'];
|
|
273
|
+
var accepts = ['application/json'];
|
|
274
|
+
var returnType = _TraversalRelationResponse["default"];
|
|
275
|
+
return this.apiClient.callApi('/graph/data/traverse/{id}/traverserelationships', 'POST', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
/**
|
|
279
|
+
* Traverses the graph from this object and returns a list of discovered relationships
|
|
280
|
+
* @param {Number} id The id of the object being traversed from
|
|
281
|
+
* @param {module:model/GraphTraversalInput} graphTraversalInput The traversal query to execute
|
|
282
|
+
* @param {Object} opts Optional parameters
|
|
283
|
+
* @param {String} opts.authorization The authorization token of the logged in user
|
|
284
|
+
* @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
|
|
285
|
+
* @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
|
|
286
|
+
* @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
|
|
287
|
+
* @param {String} opts.transactionid The id of the transaction this operation is being run in
|
|
288
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/TraversalRelationResponse}
|
|
289
|
+
*/
|
|
290
|
+
}, {
|
|
291
|
+
key: "traverseFromFindRelationships",
|
|
292
|
+
value: function traverseFromFindRelationships(id, graphTraversalInput, opts) {
|
|
293
|
+
return this.traverseFromFindRelationshipsWithHttpInfo(id, graphTraversalInput, opts).then(function (response_and_data) {
|
|
294
|
+
return response_and_data.data;
|
|
295
|
+
});
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
/**
|
|
299
|
+
* Traverses the graph based on the traversal query provided and returns the discovered objects
|
|
300
|
+
* Traverses the graph based on the traversal query provided
|
|
301
|
+
* @param {module:model/GraphTraversalInput} graphTraversalInput The traversal query to execute
|
|
302
|
+
* @param {Object} opts Optional parameters
|
|
303
|
+
* @param {String} [authorization] The authorization token of the logged in user
|
|
304
|
+
* @param {Number} [zeusportalPostasApp] The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
305
|
+
* @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
|
|
306
|
+
* @param {Number} [zeusportalPostasSite] The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
307
|
+
* @param {String} [transactionid] The id of the transaction this operation is being run in
|
|
308
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link Array.<module:model/GraphObjectSchema>} and HTTP response
|
|
309
|
+
*/
|
|
310
|
+
}, {
|
|
311
|
+
key: "traverseObjectsWithHttpInfo",
|
|
312
|
+
value: function traverseObjectsWithHttpInfo(graphTraversalInput, opts) {
|
|
313
|
+
opts = opts || {};
|
|
314
|
+
var postBody = graphTraversalInput;
|
|
315
|
+
// verify the required parameter 'graphTraversalInput' is set
|
|
316
|
+
if (graphTraversalInput === undefined || graphTraversalInput === null) {
|
|
317
|
+
throw new Error("Missing the required parameter 'graphTraversalInput' when calling traverseObjects");
|
|
318
|
+
}
|
|
319
|
+
var pathParams = {};
|
|
320
|
+
var queryParams = {};
|
|
321
|
+
var headerParams = {
|
|
322
|
+
'Authorization': opts['authorization'],
|
|
323
|
+
'zeusportal-postas-app': opts['zeusportalPostasApp'],
|
|
324
|
+
'zeusportal-postas': opts['zeusportalPostas'],
|
|
325
|
+
'zeusportal-postas-site': opts['zeusportalPostasSite'],
|
|
326
|
+
'transactionid': opts['transactionid']
|
|
327
|
+
};
|
|
328
|
+
var formParams = {};
|
|
329
|
+
var authNames = ['NexusGraphAPIAuth', 'NexusGraphAPIKey'];
|
|
330
|
+
var contentTypes = ['application/json'];
|
|
331
|
+
var accepts = ['application/json'];
|
|
332
|
+
var returnType = [_GraphObjectSchema["default"]];
|
|
333
|
+
return this.apiClient.callApi('/graph/data/traverse/objects', 'POST', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
/**
|
|
337
|
+
* Traverses the graph based on the traversal query provided and returns the discovered objects
|
|
338
|
+
* Traverses the graph based on the traversal query provided
|
|
339
|
+
* @param {module:model/GraphTraversalInput} graphTraversalInput The traversal query to execute
|
|
340
|
+
* @param {Object} opts Optional parameters
|
|
341
|
+
* @param {String} opts.authorization The authorization token of the logged in user
|
|
342
|
+
* @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
|
|
343
|
+
* @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
|
|
344
|
+
* @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
|
|
345
|
+
* @param {String} opts.transactionid The id of the transaction this operation is being run in
|
|
346
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link Array.<module:model/GraphObjectSchema>}
|
|
347
|
+
*/
|
|
348
|
+
}, {
|
|
349
|
+
key: "traverseObjects",
|
|
350
|
+
value: function traverseObjects(graphTraversalInput, opts) {
|
|
351
|
+
return this.traverseObjectsWithHttpInfo(graphTraversalInput, opts).then(function (response_and_data) {
|
|
352
|
+
return response_and_data.data;
|
|
353
|
+
});
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
/**
|
|
357
|
+
* Traverses the graph based on the traversal query provided and returns the discovered relationships
|
|
358
|
+
* Traverses the graph based on the traversal query provided
|
|
359
|
+
* @param {module:model/GraphTraversalInput} graphTraversalInput The traversal query to execute
|
|
360
|
+
* @param {Object} opts Optional parameters
|
|
361
|
+
* @param {String} [authorization] The authorization token of the logged in user
|
|
362
|
+
* @param {Number} [zeusportalPostasApp] The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
363
|
+
* @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
|
|
364
|
+
* @param {Number} [zeusportalPostasSite] The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
365
|
+
* @param {String} [transactionid] The id of the transaction this operation is being run in
|
|
366
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/TraversalRelationResponse} and HTTP response
|
|
367
|
+
*/
|
|
368
|
+
}, {
|
|
369
|
+
key: "traverseRelationshipsWithHttpInfo",
|
|
370
|
+
value: function traverseRelationshipsWithHttpInfo(graphTraversalInput, opts) {
|
|
371
|
+
opts = opts || {};
|
|
372
|
+
var postBody = graphTraversalInput;
|
|
373
|
+
// verify the required parameter 'graphTraversalInput' is set
|
|
374
|
+
if (graphTraversalInput === undefined || graphTraversalInput === null) {
|
|
375
|
+
throw new Error("Missing the required parameter 'graphTraversalInput' when calling traverseRelationships");
|
|
376
|
+
}
|
|
377
|
+
var pathParams = {};
|
|
378
|
+
var queryParams = {};
|
|
379
|
+
var headerParams = {
|
|
380
|
+
'Authorization': opts['authorization'],
|
|
381
|
+
'zeusportal-postas-app': opts['zeusportalPostasApp'],
|
|
382
|
+
'zeusportal-postas': opts['zeusportalPostas'],
|
|
383
|
+
'zeusportal-postas-site': opts['zeusportalPostasSite'],
|
|
384
|
+
'transactionid': opts['transactionid']
|
|
385
|
+
};
|
|
386
|
+
var formParams = {};
|
|
387
|
+
var authNames = ['NexusGraphAPIAuth', 'NexusGraphAPIKey'];
|
|
388
|
+
var contentTypes = ['application/json'];
|
|
389
|
+
var accepts = ['application/json'];
|
|
390
|
+
var returnType = _TraversalRelationResponse["default"];
|
|
391
|
+
return this.apiClient.callApi('/graph/data/traverse/relationships', 'POST', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
/**
|
|
395
|
+
* Traverses the graph based on the traversal query provided and returns the discovered relationships
|
|
396
|
+
* Traverses the graph based on the traversal query provided
|
|
397
|
+
* @param {module:model/GraphTraversalInput} graphTraversalInput The traversal query to execute
|
|
398
|
+
* @param {Object} opts Optional parameters
|
|
399
|
+
* @param {String} opts.authorization The authorization token of the logged in user
|
|
400
|
+
* @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
|
|
401
|
+
* @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
|
|
402
|
+
* @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
|
|
403
|
+
* @param {String} opts.transactionid The id of the transaction this operation is being run in
|
|
404
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/TraversalRelationResponse}
|
|
405
|
+
*/
|
|
406
|
+
}, {
|
|
407
|
+
key: "traverseRelationships",
|
|
408
|
+
value: function traverseRelationships(graphTraversalInput, opts) {
|
|
409
|
+
return this.traverseRelationshipsWithHttpInfo(graphTraversalInput, opts).then(function (response_and_data) {
|
|
410
|
+
return response_and_data.data;
|
|
411
|
+
});
|
|
412
|
+
}
|
|
413
|
+
}]);
|
|
414
|
+
return GraphTraversalApi;
|
|
415
|
+
}();
|