@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,88 @@
|
|
|
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 _Authorization = _interopRequireDefault(require("../model/Authorization"));
|
|
9
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
10
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
11
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
12
|
+
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
13
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
14
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
15
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } /**
|
|
16
|
+
* gobodo-api
|
|
17
|
+
* REST Interface for Gobodo API
|
|
18
|
+
*
|
|
19
|
+
* The version of the OpenAPI document: 0.1.34
|
|
20
|
+
* Contact: info@gobodo.io
|
|
21
|
+
*
|
|
22
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
23
|
+
* https://openapi-generator.tech
|
|
24
|
+
* Do not edit the class manually.
|
|
25
|
+
*
|
|
26
|
+
*/
|
|
27
|
+
/**
|
|
28
|
+
* LinkedIN service.
|
|
29
|
+
* @module api/LinkedINApi
|
|
30
|
+
* @version 0.1.34
|
|
31
|
+
*/
|
|
32
|
+
var LinkedINApi = exports["default"] = /*#__PURE__*/function () {
|
|
33
|
+
/**
|
|
34
|
+
* Constructs a new LinkedINApi.
|
|
35
|
+
* @alias module:api/LinkedINApi
|
|
36
|
+
* @class
|
|
37
|
+
* @param {module:ApiClient} [apiClient] Optional API client implementation to use,
|
|
38
|
+
* default to {@link module:ApiClient#instance} if unspecified.
|
|
39
|
+
*/
|
|
40
|
+
function LinkedINApi(apiClient) {
|
|
41
|
+
_classCallCheck(this, LinkedINApi);
|
|
42
|
+
this.apiClient = apiClient || _ApiClient["default"].instance;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
/**
|
|
46
|
+
* @param {Object} opts Optional parameters
|
|
47
|
+
* @param {String} [apiKey] The Api Key of the client accessing the api
|
|
48
|
+
* @param {String} [authorization]
|
|
49
|
+
* @param {String} [createIfNotUser]
|
|
50
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/Authorization} and HTTP response
|
|
51
|
+
*/
|
|
52
|
+
_createClass(LinkedINApi, [{
|
|
53
|
+
key: "loginLinkedInWithHttpInfo",
|
|
54
|
+
value: function loginLinkedInWithHttpInfo(opts) {
|
|
55
|
+
opts = opts || {};
|
|
56
|
+
var postBody = null;
|
|
57
|
+
var pathParams = {};
|
|
58
|
+
var queryParams = {};
|
|
59
|
+
var headerParams = {
|
|
60
|
+
'apiKey': opts['apiKey'],
|
|
61
|
+
'Authorization': opts['authorization'],
|
|
62
|
+
'CreateIfNotUser': opts['createIfNotUser']
|
|
63
|
+
};
|
|
64
|
+
var formParams = {};
|
|
65
|
+
var authNames = ['NexusGraphAPIKey'];
|
|
66
|
+
var contentTypes = [];
|
|
67
|
+
var accepts = ['application/json'];
|
|
68
|
+
var returnType = _Authorization["default"];
|
|
69
|
+
return this.apiClient.callApi('/graph/data/auth_linkedin', 'POST', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
/**
|
|
73
|
+
* @param {Object} opts Optional parameters
|
|
74
|
+
* @param {String} opts.apiKey The Api Key of the client accessing the api
|
|
75
|
+
* @param {String} opts.authorization
|
|
76
|
+
* @param {String} opts.createIfNotUser
|
|
77
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/Authorization}
|
|
78
|
+
*/
|
|
79
|
+
}, {
|
|
80
|
+
key: "loginLinkedIn",
|
|
81
|
+
value: function loginLinkedIn(opts) {
|
|
82
|
+
return this.loginLinkedInWithHttpInfo(opts).then(function (response_and_data) {
|
|
83
|
+
return response_and_data.data;
|
|
84
|
+
});
|
|
85
|
+
}
|
|
86
|
+
}]);
|
|
87
|
+
return LinkedINApi;
|
|
88
|
+
}();
|
|
@@ -0,0 +1,175 @@
|
|
|
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 _MeetingInfo = _interopRequireDefault(require("../model/MeetingInfo"));
|
|
9
|
+
var _PurgeDataDefaultResponseValue = _interopRequireDefault(require("../model/PurgeDataDefaultResponseValue"));
|
|
10
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
11
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
12
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
13
|
+
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
14
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
15
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
16
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } /**
|
|
17
|
+
* gobodo-api
|
|
18
|
+
* REST Interface for Gobodo API
|
|
19
|
+
*
|
|
20
|
+
* The version of the OpenAPI document: 0.1.34
|
|
21
|
+
* Contact: info@gobodo.io
|
|
22
|
+
*
|
|
23
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
24
|
+
* https://openapi-generator.tech
|
|
25
|
+
* Do not edit the class manually.
|
|
26
|
+
*
|
|
27
|
+
*/
|
|
28
|
+
/**
|
|
29
|
+
* LiveMeetings service.
|
|
30
|
+
* @module api/LiveMeetingsApi
|
|
31
|
+
* @version 0.1.34
|
|
32
|
+
*/
|
|
33
|
+
var LiveMeetingsApi = exports["default"] = /*#__PURE__*/function () {
|
|
34
|
+
/**
|
|
35
|
+
* Constructs a new LiveMeetingsApi.
|
|
36
|
+
* @alias module:api/LiveMeetingsApi
|
|
37
|
+
* @class
|
|
38
|
+
* @param {module:ApiClient} [apiClient] Optional API client implementation to use,
|
|
39
|
+
* default to {@link module:ApiClient#instance} if unspecified.
|
|
40
|
+
*/
|
|
41
|
+
function LiveMeetingsApi(apiClient) {
|
|
42
|
+
_classCallCheck(this, LiveMeetingsApi);
|
|
43
|
+
this.apiClient = apiClient || _ApiClient["default"].instance;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* Adds a live meeting to the object
|
|
48
|
+
* Adds live meeting details to the object
|
|
49
|
+
* @param {Number} objectid The id of the object we are attaching the live meeting to
|
|
50
|
+
* @param {module:model/MeetingInfo} meetingInfo Contains the info to create the live meeting
|
|
51
|
+
* @param {Object} opts Optional parameters
|
|
52
|
+
* @param {String} [authorization] The authorization token of the logged in user
|
|
53
|
+
* @param {Number} [zeusportalPostasApp] The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
54
|
+
* @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
|
|
55
|
+
* @param {Number} [zeusportalPostasSite] The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
56
|
+
* @param {String} [transactionid] The id of the transaction this operation is being run in
|
|
57
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing HTTP response
|
|
58
|
+
*/
|
|
59
|
+
_createClass(LiveMeetingsApi, [{
|
|
60
|
+
key: "addLiveMeetingWithHttpInfo",
|
|
61
|
+
value: function addLiveMeetingWithHttpInfo(objectid, meetingInfo, opts) {
|
|
62
|
+
opts = opts || {};
|
|
63
|
+
var postBody = meetingInfo;
|
|
64
|
+
// verify the required parameter 'objectid' is set
|
|
65
|
+
if (objectid === undefined || objectid === null) {
|
|
66
|
+
throw new Error("Missing the required parameter 'objectid' when calling addLiveMeeting");
|
|
67
|
+
}
|
|
68
|
+
// verify the required parameter 'meetingInfo' is set
|
|
69
|
+
if (meetingInfo === undefined || meetingInfo === null) {
|
|
70
|
+
throw new Error("Missing the required parameter 'meetingInfo' when calling addLiveMeeting");
|
|
71
|
+
}
|
|
72
|
+
var pathParams = {
|
|
73
|
+
'objectid': objectid
|
|
74
|
+
};
|
|
75
|
+
var queryParams = {};
|
|
76
|
+
var headerParams = {
|
|
77
|
+
'Authorization': opts['authorization'],
|
|
78
|
+
'zeusportal-postas-app': opts['zeusportalPostasApp'],
|
|
79
|
+
'zeusportal-postas': opts['zeusportalPostas'],
|
|
80
|
+
'zeusportal-postas-site': opts['zeusportalPostasSite'],
|
|
81
|
+
'transactionid': opts['transactionid']
|
|
82
|
+
};
|
|
83
|
+
var formParams = {};
|
|
84
|
+
var authNames = ['NexusGraphAPIAuth', 'NexusGraphAPIKey'];
|
|
85
|
+
var contentTypes = ['application/json'];
|
|
86
|
+
var accepts = ['application/json'];
|
|
87
|
+
var returnType = null;
|
|
88
|
+
return this.apiClient.callApi('/graph/data/live/{objectid}/add', 'PUT', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
/**
|
|
92
|
+
* Adds a live meeting to the object
|
|
93
|
+
* Adds live meeting details to the object
|
|
94
|
+
* @param {Number} objectid The id of the object we are attaching the live meeting to
|
|
95
|
+
* @param {module:model/MeetingInfo} meetingInfo Contains the info to create the live meeting
|
|
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}
|
|
103
|
+
*/
|
|
104
|
+
}, {
|
|
105
|
+
key: "addLiveMeeting",
|
|
106
|
+
value: function addLiveMeeting(objectid, meetingInfo, opts) {
|
|
107
|
+
return this.addLiveMeetingWithHttpInfo(objectid, meetingInfo, opts).then(function (response_and_data) {
|
|
108
|
+
return response_and_data.data;
|
|
109
|
+
});
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
/**
|
|
113
|
+
* Adds a live meeting to the object
|
|
114
|
+
* Adds live meeting details to the object
|
|
115
|
+
* @param {Number} objectid The id of the object we are streaming
|
|
116
|
+
* @param {Object} opts Optional parameters
|
|
117
|
+
* @param {String} [authorization] The authorization token of the logged in user
|
|
118
|
+
* @param {Number} [zeusportalPostasApp] The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
119
|
+
* @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
|
|
120
|
+
* @param {Number} [zeusportalPostasSite] The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
121
|
+
* @param {String} [transactionid] The id of the transaction this operation is being run in
|
|
122
|
+
* @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
|
|
123
|
+
*/
|
|
124
|
+
}, {
|
|
125
|
+
key: "addLiveStreamWithHttpInfo",
|
|
126
|
+
value: function addLiveStreamWithHttpInfo(objectid, opts) {
|
|
127
|
+
opts = opts || {};
|
|
128
|
+
var postBody = null;
|
|
129
|
+
// verify the required parameter 'objectid' is set
|
|
130
|
+
if (objectid === undefined || objectid === null) {
|
|
131
|
+
throw new Error("Missing the required parameter 'objectid' when calling addLiveStream");
|
|
132
|
+
}
|
|
133
|
+
var pathParams = {
|
|
134
|
+
'objectid': objectid
|
|
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 = [];
|
|
147
|
+
var accepts = ['application/json'];
|
|
148
|
+
var returnType = {
|
|
149
|
+
'String': _PurgeDataDefaultResponseValue["default"]
|
|
150
|
+
};
|
|
151
|
+
return this.apiClient.callApi('/graph/data/live/{objectid}/stream', 'PUT', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
/**
|
|
155
|
+
* Adds a live meeting to the object
|
|
156
|
+
* Adds live meeting details to the object
|
|
157
|
+
* @param {Number} objectid The id of the object we are streaming
|
|
158
|
+
* @param {Object} opts Optional parameters
|
|
159
|
+
* @param {String} opts.authorization The authorization token of the logged in user
|
|
160
|
+
* @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
|
|
161
|
+
* @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
|
|
162
|
+
* @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
|
|
163
|
+
* @param {String} opts.transactionid The id of the transaction this operation is being run in
|
|
164
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link Object.<String, module:model/{String: PurgeDataDefaultResponseValue}>}
|
|
165
|
+
*/
|
|
166
|
+
}, {
|
|
167
|
+
key: "addLiveStream",
|
|
168
|
+
value: function addLiveStream(objectid, opts) {
|
|
169
|
+
return this.addLiveStreamWithHttpInfo(objectid, opts).then(function (response_and_data) {
|
|
170
|
+
return response_and_data.data;
|
|
171
|
+
});
|
|
172
|
+
}
|
|
173
|
+
}]);
|
|
174
|
+
return LiveMeetingsApi;
|
|
175
|
+
}();
|
|
@@ -0,0 +1,358 @@
|
|
|
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 _MeetingEvent = _interopRequireDefault(require("../model/MeetingEvent"));
|
|
9
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
10
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
11
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
12
|
+
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
13
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
14
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
15
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } /**
|
|
16
|
+
* gobodo-api
|
|
17
|
+
* REST Interface for Gobodo API
|
|
18
|
+
*
|
|
19
|
+
* The version of the OpenAPI document: 0.1.34
|
|
20
|
+
* Contact: info@gobodo.io
|
|
21
|
+
*
|
|
22
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
23
|
+
* https://openapi-generator.tech
|
|
24
|
+
* Do not edit the class manually.
|
|
25
|
+
*
|
|
26
|
+
*/
|
|
27
|
+
/**
|
|
28
|
+
* MeetingEvents service.
|
|
29
|
+
* @module api/MeetingEventsApi
|
|
30
|
+
* @version 0.1.34
|
|
31
|
+
*/
|
|
32
|
+
var MeetingEventsApi = exports["default"] = /*#__PURE__*/function () {
|
|
33
|
+
/**
|
|
34
|
+
* Constructs a new MeetingEventsApi.
|
|
35
|
+
* @alias module:api/MeetingEventsApi
|
|
36
|
+
* @class
|
|
37
|
+
* @param {module:ApiClient} [apiClient] Optional API client implementation to use,
|
|
38
|
+
* default to {@link module:ApiClient#instance} if unspecified.
|
|
39
|
+
*/
|
|
40
|
+
function MeetingEventsApi(apiClient) {
|
|
41
|
+
_classCallCheck(this, MeetingEventsApi);
|
|
42
|
+
this.apiClient = apiClient || _ApiClient["default"].instance;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
/**
|
|
46
|
+
* Delete's the object with the id
|
|
47
|
+
* @param {Number} id The id of the object to delete
|
|
48
|
+
* @param {Object} opts Optional parameters
|
|
49
|
+
* @param {String} [authorization] The authorization token of the logged in user
|
|
50
|
+
* @param {Number} [zeusportalPostasApp] The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
51
|
+
* @param {Number} [zeusportalPostas] The id of the organization page this operation is being performed as if the caller chooses to post as an organization page
|
|
52
|
+
* @param {Number} [zeusportalPostasSite] The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
53
|
+
* @param {String} [transactionid] The id of the transaction this operation is being run in
|
|
54
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing HTTP response
|
|
55
|
+
*/
|
|
56
|
+
_createClass(MeetingEventsApi, [{
|
|
57
|
+
key: "deleteObjectWithHttpInfo",
|
|
58
|
+
value: function deleteObjectWithHttpInfo(id, opts) {
|
|
59
|
+
opts = opts || {};
|
|
60
|
+
var postBody = null;
|
|
61
|
+
// verify the required parameter 'id' is set
|
|
62
|
+
if (id === undefined || id === null) {
|
|
63
|
+
throw new Error("Missing the required parameter 'id' when calling deleteObject");
|
|
64
|
+
}
|
|
65
|
+
var pathParams = {
|
|
66
|
+
'id': id
|
|
67
|
+
};
|
|
68
|
+
var queryParams = {};
|
|
69
|
+
var headerParams = {
|
|
70
|
+
'Authorization': opts['authorization'],
|
|
71
|
+
'zeusportal-postas-app': opts['zeusportalPostasApp'],
|
|
72
|
+
'zeusportal-postas': opts['zeusportalPostas'],
|
|
73
|
+
'zeusportal-postas-site': opts['zeusportalPostasSite'],
|
|
74
|
+
'transactionid': opts['transactionid']
|
|
75
|
+
};
|
|
76
|
+
var formParams = {};
|
|
77
|
+
var authNames = ['NexusGraphAPIAuth', 'NexusGraphAPIKey'];
|
|
78
|
+
var contentTypes = [];
|
|
79
|
+
var accepts = ['application/json'];
|
|
80
|
+
var returnType = null;
|
|
81
|
+
return this.apiClient.callApi('/graph/data/object/{id}', 'DELETE', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
/**
|
|
85
|
+
* Delete's the object with the id
|
|
86
|
+
* @param {Number} id The id of the object to delete
|
|
87
|
+
* @param {Object} opts Optional parameters
|
|
88
|
+
* @param {String} opts.authorization The authorization token of the logged in user
|
|
89
|
+
* @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
|
|
90
|
+
* @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
|
|
91
|
+
* @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
|
|
92
|
+
* @param {String} opts.transactionid The id of the transaction this operation is being run in
|
|
93
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}
|
|
94
|
+
*/
|
|
95
|
+
}, {
|
|
96
|
+
key: "deleteObject",
|
|
97
|
+
value: function deleteObject(id, opts) {
|
|
98
|
+
return this.deleteObjectWithHttpInfo(id, opts).then(function (response_and_data) {
|
|
99
|
+
return response_and_data.data;
|
|
100
|
+
});
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
/**
|
|
104
|
+
* Get Events
|
|
105
|
+
* Returns a listing of meeting events contained in or attached to this object
|
|
106
|
+
* @param {Number} id The id of the object that we are retrieving events for
|
|
107
|
+
* @param {Object} opts Optional parameters
|
|
108
|
+
* @param {String} [authorization] The authorization token of the logged in user
|
|
109
|
+
* @param {Number} [zeusportalPostasApp] The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
110
|
+
* @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
|
|
111
|
+
* @param {Number} [zeusportalPostasSite] The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
112
|
+
* @param {String} [transactionid] The id of the transaction this operation is being run in
|
|
113
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link Array.<module:model/MeetingEvent>} and HTTP response
|
|
114
|
+
*/
|
|
115
|
+
}, {
|
|
116
|
+
key: "getEventsWithHttpInfo",
|
|
117
|
+
value: function getEventsWithHttpInfo(id, opts) {
|
|
118
|
+
opts = opts || {};
|
|
119
|
+
var postBody = null;
|
|
120
|
+
// verify the required parameter 'id' is set
|
|
121
|
+
if (id === undefined || id === null) {
|
|
122
|
+
throw new Error("Missing the required parameter 'id' when calling getEvents");
|
|
123
|
+
}
|
|
124
|
+
var pathParams = {
|
|
125
|
+
'id': id
|
|
126
|
+
};
|
|
127
|
+
var queryParams = {};
|
|
128
|
+
var headerParams = {
|
|
129
|
+
'Authorization': opts['authorization'],
|
|
130
|
+
'zeusportal-postas-app': opts['zeusportalPostasApp'],
|
|
131
|
+
'zeusportal-postas': opts['zeusportalPostas'],
|
|
132
|
+
'zeusportal-postas-site': opts['zeusportalPostasSite'],
|
|
133
|
+
'transactionid': opts['transactionid']
|
|
134
|
+
};
|
|
135
|
+
var formParams = {};
|
|
136
|
+
var authNames = ['NexusGraphAPIAuth', 'NexusGraphAPIKey'];
|
|
137
|
+
var contentTypes = [];
|
|
138
|
+
var accepts = ['application/json'];
|
|
139
|
+
var returnType = [_MeetingEvent["default"]];
|
|
140
|
+
return this.apiClient.callApi('/graph/data/object/{id}/events', 'GET', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
/**
|
|
144
|
+
* Get Events
|
|
145
|
+
* Returns a listing of meeting events contained in or attached to this object
|
|
146
|
+
* @param {Number} id The id of the object that we are retrieving events for
|
|
147
|
+
* @param {Object} opts Optional parameters
|
|
148
|
+
* @param {String} opts.authorization The authorization token of the logged in user
|
|
149
|
+
* @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
|
|
150
|
+
* @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
|
|
151
|
+
* @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
|
|
152
|
+
* @param {String} opts.transactionid The id of the transaction this operation is being run in
|
|
153
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link Array.<module:model/MeetingEvent>}
|
|
154
|
+
*/
|
|
155
|
+
}, {
|
|
156
|
+
key: "getEvents",
|
|
157
|
+
value: function getEvents(id, opts) {
|
|
158
|
+
return this.getEventsWithHttpInfo(id, opts).then(function (response_and_data) {
|
|
159
|
+
return response_and_data.data;
|
|
160
|
+
});
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
/**
|
|
164
|
+
* Get Events Date Range
|
|
165
|
+
* Returns a listing of meeting events contained in or attached to this object within the specified date range
|
|
166
|
+
* @param {Number} id The id of the object that we are retrieving events for
|
|
167
|
+
* @param {Number} startdate The unix epoch time for the start time of the event
|
|
168
|
+
* @param {Number} enddate The unix epoch time for the end time of the event
|
|
169
|
+
* @param {Object} opts Optional parameters
|
|
170
|
+
* @param {String} [authorization] The authorization token of the logged in user
|
|
171
|
+
* @param {Number} [zeusportalPostasApp] The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
172
|
+
* @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
|
|
173
|
+
* @param {Number} [zeusportalPostasSite] The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
174
|
+
* @param {String} [transactionid] The id of the transaction this operation is being run in
|
|
175
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link Array.<module:model/MeetingEvent>} and HTTP response
|
|
176
|
+
*/
|
|
177
|
+
}, {
|
|
178
|
+
key: "getEventsDateRangeWithHttpInfo",
|
|
179
|
+
value: function getEventsDateRangeWithHttpInfo(id, startdate, enddate, opts) {
|
|
180
|
+
opts = opts || {};
|
|
181
|
+
var postBody = null;
|
|
182
|
+
// verify the required parameter 'id' is set
|
|
183
|
+
if (id === undefined || id === null) {
|
|
184
|
+
throw new Error("Missing the required parameter 'id' when calling getEventsDateRange");
|
|
185
|
+
}
|
|
186
|
+
// verify the required parameter 'startdate' is set
|
|
187
|
+
if (startdate === undefined || startdate === null) {
|
|
188
|
+
throw new Error("Missing the required parameter 'startdate' when calling getEventsDateRange");
|
|
189
|
+
}
|
|
190
|
+
// verify the required parameter 'enddate' is set
|
|
191
|
+
if (enddate === undefined || enddate === null) {
|
|
192
|
+
throw new Error("Missing the required parameter 'enddate' when calling getEventsDateRange");
|
|
193
|
+
}
|
|
194
|
+
var pathParams = {
|
|
195
|
+
'id': id,
|
|
196
|
+
'startdate': startdate,
|
|
197
|
+
'enddate': enddate
|
|
198
|
+
};
|
|
199
|
+
var queryParams = {};
|
|
200
|
+
var headerParams = {
|
|
201
|
+
'Authorization': opts['authorization'],
|
|
202
|
+
'zeusportal-postas-app': opts['zeusportalPostasApp'],
|
|
203
|
+
'zeusportal-postas': opts['zeusportalPostas'],
|
|
204
|
+
'zeusportal-postas-site': opts['zeusportalPostasSite'],
|
|
205
|
+
'transactionid': opts['transactionid']
|
|
206
|
+
};
|
|
207
|
+
var formParams = {};
|
|
208
|
+
var authNames = ['NexusGraphAPIAuth', 'NexusGraphAPIKey'];
|
|
209
|
+
var contentTypes = [];
|
|
210
|
+
var accepts = ['application/json'];
|
|
211
|
+
var returnType = [_MeetingEvent["default"]];
|
|
212
|
+
return this.apiClient.callApi('/graph/data/object/{id}/events/{startdate}:{enddate}', 'GET', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
/**
|
|
216
|
+
* Get Events Date Range
|
|
217
|
+
* Returns a listing of meeting events contained in or attached to this object within the specified date range
|
|
218
|
+
* @param {Number} id The id of the object that we are retrieving events for
|
|
219
|
+
* @param {Number} startdate The unix epoch time for the start time of the event
|
|
220
|
+
* @param {Number} enddate The unix epoch time for the end time of the event
|
|
221
|
+
* @param {Object} opts Optional parameters
|
|
222
|
+
* @param {String} opts.authorization The authorization token of the logged in user
|
|
223
|
+
* @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
|
|
224
|
+
* @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
|
|
225
|
+
* @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
|
|
226
|
+
* @param {String} opts.transactionid The id of the transaction this operation is being run in
|
|
227
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link Array.<module:model/MeetingEvent>}
|
|
228
|
+
*/
|
|
229
|
+
}, {
|
|
230
|
+
key: "getEventsDateRange",
|
|
231
|
+
value: function getEventsDateRange(id, startdate, enddate, opts) {
|
|
232
|
+
return this.getEventsDateRangeWithHttpInfo(id, startdate, enddate, opts).then(function (response_and_data) {
|
|
233
|
+
return response_and_data.data;
|
|
234
|
+
});
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
/**
|
|
238
|
+
* Get Events Future
|
|
239
|
+
* Returns a listing of future meeting events contained in or attached to this object
|
|
240
|
+
* @param {Number} id The id of the object that we are retrieving events for
|
|
241
|
+
* @param {Object} opts Optional parameters
|
|
242
|
+
* @param {String} [authorization] The authorization token of the logged in user
|
|
243
|
+
* @param {Number} [zeusportalPostasApp] The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
244
|
+
* @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
|
|
245
|
+
* @param {Number} [zeusportalPostasSite] The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
246
|
+
* @param {String} [transactionid] The id of the transaction this operation is being run in
|
|
247
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link Array.<module:model/MeetingEvent>} and HTTP response
|
|
248
|
+
*/
|
|
249
|
+
}, {
|
|
250
|
+
key: "getEventsFutureWithHttpInfo",
|
|
251
|
+
value: function getEventsFutureWithHttpInfo(id, opts) {
|
|
252
|
+
opts = opts || {};
|
|
253
|
+
var postBody = null;
|
|
254
|
+
// verify the required parameter 'id' is set
|
|
255
|
+
if (id === undefined || id === null) {
|
|
256
|
+
throw new Error("Missing the required parameter 'id' when calling getEventsFuture");
|
|
257
|
+
}
|
|
258
|
+
var pathParams = {
|
|
259
|
+
'id': id
|
|
260
|
+
};
|
|
261
|
+
var queryParams = {};
|
|
262
|
+
var headerParams = {
|
|
263
|
+
'Authorization': opts['authorization'],
|
|
264
|
+
'zeusportal-postas-app': opts['zeusportalPostasApp'],
|
|
265
|
+
'zeusportal-postas': opts['zeusportalPostas'],
|
|
266
|
+
'zeusportal-postas-site': opts['zeusportalPostasSite'],
|
|
267
|
+
'transactionid': opts['transactionid']
|
|
268
|
+
};
|
|
269
|
+
var formParams = {};
|
|
270
|
+
var authNames = ['NexusGraphAPIAuth', 'NexusGraphAPIKey'];
|
|
271
|
+
var contentTypes = [];
|
|
272
|
+
var accepts = ['application/json'];
|
|
273
|
+
var returnType = [_MeetingEvent["default"]];
|
|
274
|
+
return this.apiClient.callApi('/graph/data/object/{id}/events/future', 'GET', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
/**
|
|
278
|
+
* Get Events Future
|
|
279
|
+
* Returns a listing of future meeting events contained in or attached to this object
|
|
280
|
+
* @param {Number} id The id of the object that we are retrieving events for
|
|
281
|
+
* @param {Object} opts Optional parameters
|
|
282
|
+
* @param {String} opts.authorization The authorization token of the logged in user
|
|
283
|
+
* @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
|
|
284
|
+
* @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
|
|
285
|
+
* @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
|
|
286
|
+
* @param {String} opts.transactionid The id of the transaction this operation is being run in
|
|
287
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link Array.<module:model/MeetingEvent>}
|
|
288
|
+
*/
|
|
289
|
+
}, {
|
|
290
|
+
key: "getEventsFuture",
|
|
291
|
+
value: function getEventsFuture(id, opts) {
|
|
292
|
+
return this.getEventsFutureWithHttpInfo(id, opts).then(function (response_and_data) {
|
|
293
|
+
return response_and_data.data;
|
|
294
|
+
});
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
/**
|
|
298
|
+
* Get Events
|
|
299
|
+
* Returns a listing of past meeting events contained in or attached to this object
|
|
300
|
+
* @param {Number} id The id of the object that we are retrieving events for
|
|
301
|
+
* @param {Object} opts Optional parameters
|
|
302
|
+
* @param {String} [authorization] The authorization token of the logged in user
|
|
303
|
+
* @param {Number} [zeusportalPostasApp] The id of the application this operation is being performed as if the caller chooses to post as an organization page
|
|
304
|
+
* @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
|
|
305
|
+
* @param {Number} [zeusportalPostasSite] The id of the site this operation is being performed as if the caller chooses to post as an organization page
|
|
306
|
+
* @param {String} [transactionid] The id of the transaction this operation is being run in
|
|
307
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link Array.<module:model/MeetingEvent>} and HTTP response
|
|
308
|
+
*/
|
|
309
|
+
}, {
|
|
310
|
+
key: "getEventsPastWithHttpInfo",
|
|
311
|
+
value: function getEventsPastWithHttpInfo(id, opts) {
|
|
312
|
+
opts = opts || {};
|
|
313
|
+
var postBody = null;
|
|
314
|
+
// verify the required parameter 'id' is set
|
|
315
|
+
if (id === undefined || id === null) {
|
|
316
|
+
throw new Error("Missing the required parameter 'id' when calling getEventsPast");
|
|
317
|
+
}
|
|
318
|
+
var pathParams = {
|
|
319
|
+
'id': id
|
|
320
|
+
};
|
|
321
|
+
var queryParams = {};
|
|
322
|
+
var headerParams = {
|
|
323
|
+
'Authorization': opts['authorization'],
|
|
324
|
+
'zeusportal-postas-app': opts['zeusportalPostasApp'],
|
|
325
|
+
'zeusportal-postas': opts['zeusportalPostas'],
|
|
326
|
+
'zeusportal-postas-site': opts['zeusportalPostasSite'],
|
|
327
|
+
'transactionid': opts['transactionid']
|
|
328
|
+
};
|
|
329
|
+
var formParams = {};
|
|
330
|
+
var authNames = ['NexusGraphAPIAuth', 'NexusGraphAPIKey'];
|
|
331
|
+
var contentTypes = [];
|
|
332
|
+
var accepts = ['application/json'];
|
|
333
|
+
var returnType = [_MeetingEvent["default"]];
|
|
334
|
+
return this.apiClient.callApi('/graph/data/object/{id}/events/past', 'GET', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
/**
|
|
338
|
+
* Get Events
|
|
339
|
+
* Returns a listing of past meeting events contained in or attached to this object
|
|
340
|
+
* @param {Number} id The id of the object that we are retrieving events for
|
|
341
|
+
* @param {Object} opts Optional parameters
|
|
342
|
+
* @param {String} opts.authorization The authorization token of the logged in user
|
|
343
|
+
* @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
|
|
344
|
+
* @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
|
|
345
|
+
* @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
|
|
346
|
+
* @param {String} opts.transactionid The id of the transaction this operation is being run in
|
|
347
|
+
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link Array.<module:model/MeetingEvent>}
|
|
348
|
+
*/
|
|
349
|
+
}, {
|
|
350
|
+
key: "getEventsPast",
|
|
351
|
+
value: function getEventsPast(id, opts) {
|
|
352
|
+
return this.getEventsPastWithHttpInfo(id, opts).then(function (response_and_data) {
|
|
353
|
+
return response_and_data.data;
|
|
354
|
+
});
|
|
355
|
+
}
|
|
356
|
+
}]);
|
|
357
|
+
return MeetingEventsApi;
|
|
358
|
+
}();
|