@gobodo/gobodo-api 0.1.52 → 0.1.58

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.
Files changed (209) hide show
  1. package/README.md +73 -9
  2. package/dist/ApiClient.js +3 -3
  3. package/dist/api/ActionTypesApi.js +2 -2
  4. package/dist/api/AdCampaignsApi.js +2 -2
  5. package/dist/api/AdManagementApi.js +2 -2
  6. package/dist/api/AdminDataManagementApi.js +2 -2
  7. package/dist/api/AdsApi.js +2 -2
  8. package/dist/api/AttachmentsApi.js +2 -2
  9. package/dist/api/AuthenticationApi.js +2 -2
  10. package/dist/api/CategoriesApi.js +2 -2
  11. package/dist/api/CommentsApi.js +2 -2
  12. package/dist/api/ContentManagementApi.js +2 -2
  13. package/dist/api/ConversationsApi.js +2 -2
  14. package/dist/api/DataSheetImportsApi.js +2 -2
  15. package/dist/api/DefaultApi.js +8 -348
  16. package/dist/api/DocumentsApi.js +2 -2
  17. package/dist/api/EmailsApi.js +282 -0
  18. package/dist/api/EntryPartsApi.js +2 -2
  19. package/dist/api/FacebookApi.js +2 -2
  20. package/dist/api/FieldsApi.js +2 -2
  21. package/dist/api/FilesApi.js +2 -2
  22. package/dist/api/FormsApi.js +2 -2
  23. package/dist/api/FunctionsApi.js +946 -10
  24. package/dist/api/GeocodeApi.js +2 -2
  25. package/dist/api/GoogleApi.js +2 -2
  26. package/dist/api/GraphActionTypesApi.js +511 -0
  27. package/dist/api/GraphActionsApi.js +2 -2
  28. package/dist/api/GraphObjectTypesApi.js +134 -9
  29. package/dist/api/GraphObjectsApi.js +2 -2
  30. package/dist/api/GraphRelationshipTypesApi.js +127 -2
  31. package/dist/api/GraphRelationshipsApi.js +2 -2
  32. package/dist/api/GraphSchemasApi.js +2 -2
  33. package/dist/api/GraphTraversalApi.js +2 -2
  34. package/dist/api/GraphsApi.js +2 -2
  35. package/dist/api/GroupsApi.js +2 -2
  36. package/dist/api/IAMApi.js +2 -2
  37. package/dist/api/ImagesApi.js +2 -2
  38. package/dist/api/InvitesApi.js +2 -2
  39. package/dist/api/LikesApi.js +2 -2
  40. package/dist/api/LinkedINApi.js +2 -2
  41. package/dist/api/LiveMeetingsApi.js +2 -2
  42. package/dist/api/MeetingEventsApi.js +2 -2
  43. package/dist/api/NotificationsApi.js +735 -0
  44. package/dist/api/PagesApi.js +2 -2
  45. package/dist/api/PhoneNumbersApi.js +322 -0
  46. package/dist/api/PostsApi.js +2 -2
  47. package/dist/api/PrivateMessagesApi.js +2 -2
  48. package/dist/api/PublicationsApi.js +2 -2
  49. package/dist/api/ScreensApi.js +2 -2
  50. package/dist/api/SocialIntegrationApi.js +2 -2
  51. package/dist/api/StripeAccountsApi.js +2 -2
  52. package/dist/api/TagsApi.js +2 -2
  53. package/dist/api/TemplatesApi.js +2 -2
  54. package/dist/api/ThemeMappingsApi.js +2 -2
  55. package/dist/api/TopicsApi.js +457 -0
  56. package/dist/api/TransactionsApi.js +2 -2
  57. package/dist/api/TwitterApi.js +2 -2
  58. package/dist/api/UserTagsApi.js +2 -2
  59. package/dist/api/UsersApi.js +2 -2
  60. package/dist/api/UtilsApi.js +2 -2
  61. package/dist/api/VideosApi.js +2 -2
  62. package/dist/index.js +147 -7
  63. package/dist/model/APIClient.js +9 -9
  64. package/dist/model/AccountSessionInput.js +2 -2
  65. package/dist/model/AccountSessionResponse.js +2 -2
  66. package/dist/model/ApplicationPaymentAccountResponse.js +2 -2
  67. package/dist/model/ApplicationPaymentAccountResponseFailureException.js +2 -32
  68. package/dist/model/ApplicationPaymentAccountResponseFailureExceptionStackTraceInner.js +2 -2
  69. package/dist/model/Article.js +2 -2
  70. package/dist/model/AuthResponse.js +2 -2
  71. package/dist/model/Balance.js +37 -37
  72. package/dist/model/BalanceDetails.js +2 -2
  73. package/dist/model/BalanceResponse.js +2 -2
  74. package/dist/model/BankAccountInfo.js +2 -2
  75. package/dist/model/CardInfo.js +2 -2
  76. package/dist/model/Comment.js +14 -14
  77. package/dist/model/Coordinates.js +2 -2
  78. package/dist/model/CreateAccountResponse.js +2 -2
  79. package/dist/model/CreateFunctionInput.js +169 -0
  80. package/dist/model/CreateStripeAccountInput.js +2 -2
  81. package/dist/model/CreateStripeCustomerInput.js +2 -2
  82. package/dist/model/CreateTopicInput.js +139 -0
  83. package/dist/model/CreateTopicListenerInput.js +125 -0
  84. package/dist/model/CustomerResponse.js +2 -2
  85. package/dist/model/DataObject.js +2 -2
  86. package/dist/model/DataSheetImport.js +10 -10
  87. package/dist/model/DataSheetImportPrivacySettings.js +2 -2
  88. package/dist/model/DataSheetImportSummary.js +2 -2
  89. package/dist/model/DeviceRegistrationRequest.js +200 -0
  90. package/dist/model/Document.js +2 -2
  91. package/dist/model/DocumentPart.js +21 -21
  92. package/dist/model/DocumentPartType.js +10 -10
  93. package/dist/model/DocumentType.js +18 -18
  94. package/dist/model/EmailAddress.js +142 -0
  95. package/dist/model/FieldMapping.js +2 -2
  96. package/dist/model/Fields.js +25 -25
  97. package/dist/model/File.js +9 -9
  98. package/dist/model/FileAttachmentUploadObject.js +9 -9
  99. package/dist/model/Filter.js +2 -2
  100. package/dist/model/FilterManager.js +2 -2
  101. package/dist/model/Form.js +2 -2
  102. package/dist/model/FormSection.js +2 -2
  103. package/dist/model/FormSubmission.js +2 -2
  104. package/dist/model/FunctionConfigInput.js +333 -0
  105. package/dist/model/FunctionEnvironmentConfig.js +169 -0
  106. package/dist/model/Geocode.js +2 -2
  107. package/dist/model/GeocodePayload.js +2 -2
  108. package/dist/model/GeolocationInput.js +2 -2
  109. package/dist/model/GetFunctionConfig.js +365 -0
  110. package/dist/model/GetFunctionEnvironmentConfig.js +171 -0
  111. package/dist/model/GetFunctionResponse.js +199 -0
  112. package/dist/model/Graph.js +37 -37
  113. package/dist/model/GraphAction.js +11 -11
  114. package/dist/model/GraphDatabaseService.js +2 -2
  115. package/dist/model/GraphGeocode.js +2 -2
  116. package/dist/model/GraphIteratorEntryPart.js +2 -2
  117. package/dist/model/GraphObject.js +27 -27
  118. package/dist/model/GraphObjectPayload.js +2 -2
  119. package/dist/model/GraphObjectSchema.js +36 -36
  120. package/dist/model/GraphObjectType.js +18 -18
  121. package/dist/model/GraphObjectTypeSchema.js +18 -18
  122. package/dist/model/GraphOwner.js +2 -2
  123. package/dist/model/GraphRelationship.js +11 -11
  124. package/dist/model/GraphRelationshipPayload.js +2 -2
  125. package/dist/model/GraphRelationshipType.js +2 -2
  126. package/dist/model/GraphSchema.js +38 -38
  127. package/dist/model/GraphTraversalInput.js +2 -2
  128. package/dist/model/Image.js +23 -23
  129. package/dist/model/ImageUploadObject.js +23 -23
  130. package/dist/model/InputPart.js +2 -2
  131. package/dist/model/InputPartHeaders.js +88 -0
  132. package/dist/model/InputPartMediaType.js +2 -2
  133. package/dist/model/Link.js +26 -26
  134. package/dist/model/LiveStreamInfo.js +2 -2
  135. package/dist/model/MeetingEvent.js +41 -41
  136. package/dist/model/MeetingEventTimezone.js +2 -2
  137. package/dist/model/MeetingInfo.js +2 -2
  138. package/dist/model/Member.js +14 -14
  139. package/dist/model/MemberGroupCategory.js +2 -2
  140. package/dist/model/MemberList.js +2 -2
  141. package/dist/model/MessageGroup.js +9 -9
  142. package/dist/model/MultipartBody.js +2 -2
  143. package/dist/model/Notification.js +210 -0
  144. package/dist/model/NotificationInput.js +187 -0
  145. package/dist/model/NotificationResponse.js +185 -0
  146. package/dist/model/Objecttype.js +17 -17
  147. package/dist/model/Page.js +2 -2
  148. package/dist/model/PageSchema.js +10 -10
  149. package/dist/model/Pageable.js +2 -2
  150. package/dist/model/Path.js +2 -2
  151. package/dist/model/PaymentAccountObject.js +2 -2
  152. package/dist/model/PaymentIntentInput.js +2 -2
  153. package/dist/model/PaymentIntentResponse.js +2 -2
  154. package/dist/model/PaymentMethod.js +9 -9
  155. package/dist/model/PaymentMethodInput.js +2 -2
  156. package/dist/model/PaymentMethodResponse.js +2 -2
  157. package/dist/model/PaymentMethodsResponse.js +2 -2
  158. package/dist/model/Payout.js +11 -11
  159. package/dist/model/PayoutInput.js +2 -2
  160. package/dist/model/PayoutResponse.js +2 -2
  161. package/dist/model/PhoneNumber.js +178 -0
  162. package/dist/model/Post.js +2 -2
  163. package/dist/model/PrivateMessage.js +2 -2
  164. package/dist/model/PrivateMessageConversation.js +36 -36
  165. package/dist/model/PrivateMessageConversationSchema.js +2 -2
  166. package/dist/model/Profile.js +2 -2
  167. package/dist/model/Profiletype.js +2 -2
  168. package/dist/model/PropertyContainer.js +9 -9
  169. package/dist/model/PurgeDataDefaultResponse.js +144 -0
  170. package/dist/model/PurgeDataDefaultResponseValue.js +2 -2
  171. package/dist/model/RelationshipMapping.js +2 -2
  172. package/dist/model/ScreenSchema.js +27 -27
  173. package/dist/model/SimulcastInfo.js +2 -2
  174. package/dist/model/SkinField.js +25 -25
  175. package/dist/model/SocialGroup.js +2 -2
  176. package/dist/model/SocialGroupType.js +16 -16
  177. package/dist/model/Sort.js +2 -2
  178. package/dist/model/SourceTypes.js +2 -2
  179. package/dist/model/StatusUpdate.js +2 -2
  180. package/dist/model/StreetAddress.js +2 -2
  181. package/dist/model/StripeAccount.js +2 -2
  182. package/dist/model/StripeCustomerAccount.js +2 -2
  183. package/dist/model/Template.js +22 -22
  184. package/dist/model/TemplateSchema.js +22 -22
  185. package/dist/model/ThemeMapping.js +10 -10
  186. package/dist/model/ThemeMappingPayload.js +9 -9
  187. package/dist/model/TopicInfoResponse.js +183 -0
  188. package/dist/model/TopicMessageInput.js +123 -0
  189. package/dist/model/TopicSubscriptionResponse.js +151 -0
  190. package/dist/model/Transaction.js +2 -2
  191. package/dist/model/Transfer.js +13 -13
  192. package/dist/model/TransferInput.js +2 -2
  193. package/dist/model/TransferResponse.js +2 -2
  194. package/dist/model/TransferResponsePaymentMethodDetails.js +13 -13
  195. package/dist/model/TraversalRelationResponse.js +2 -2
  196. package/dist/model/User.js +14 -14
  197. package/dist/model/UserDataPayload.js +14 -14
  198. package/dist/model/UserDomain.js +2 -2
  199. package/dist/model/UserInvite.js +13 -13
  200. package/dist/model/UserInviteInput.js +2 -2
  201. package/dist/model/UserSchema.js +14 -14
  202. package/dist/model/UserTag.js +2 -2
  203. package/dist/model/Userid.js +2 -2
  204. package/dist/model/Video.js +30 -30
  205. package/dist/model/VideoLiveUrl.js +2 -2
  206. package/dist/model/VideoSchema.js +38 -38
  207. package/dist/model/VideoUploadObject.js +30 -30
  208. package/dist/model/ZeusPortalCategory.js +2 -2
  209. package/package.json +1 -1
package/README.md CHANGED
@@ -4,8 +4,8 @@ GobodoGobodoApi - JavaScript client for @gobodo/gobodo-api
4
4
  REST Interface for Gobodo API
5
5
  This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
6
6
 
7
- - API version: 0.1.52
8
- - Package version: 0.1.52
7
+ - API version: 0.1.58
8
+ - Package version: 0.1.58
9
9
  - Build package: org.openapitools.codegen.languages.JavascriptClientCodegen
10
10
 
11
11
  ## Installation
@@ -251,18 +251,12 @@ Class | Method | HTTP request | Description
251
251
  *GobodoGobodoApi.DataSheetImportsApi* | [**runDataSheetImport**](docs/DataSheetImportsApi.md#runDataSheetImport) | **POST** /graph/data/datasheetimport/{dsimportid}/run | Run a datasheet import
252
252
  *GobodoGobodoApi.DataSheetImportsApi* | [**setDataSheetImportPrivacy**](docs/DataSheetImportsApi.md#setDataSheetImportPrivacy) | **PUT** /graph/data/datasheetimport/{dsimportid}/privacy | Sets the privacy settings of the generated objects from the import
253
253
  *GobodoGobodoApi.DataSheetImportsApi* | [**updateDataSheetImportFile**](docs/DataSheetImportsApi.md#updateDataSheetImportFile) | **PUT** /graph/data/datasheetimport/{dsimportid}/datasheet | Updates the file used by a datasheet import
254
- *GobodoGobodoApi.DefaultApi* | [**addEndObjectTypes**](docs/DefaultApi.md#addEndObjectTypes) | **PUT** /graph/data/actiontype/{id}/endobjecttypes |
255
254
  *GobodoGobodoApi.DefaultApi* | [**createApiClient**](docs/DefaultApi.md#createApiClient) | **POST** /graph/data/api/clients |
256
255
  *GobodoGobodoApi.DefaultApi* | [**doEndPoint**](docs/DefaultApi.md#doEndPoint) | **GET** /graph/data |
257
256
  *GobodoGobodoApi.DefaultApi* | [**get21**](docs/DefaultApi.md#get21) | **GET** /graph/data/api/clients |
258
257
  *GobodoGobodoApi.DefaultApi* | [**get22**](docs/DefaultApi.md#get22) | **GET** /graph/data/api/clients/{id} |
259
- *GobodoGobodoApi.DefaultApi* | [**get5**](docs/DefaultApi.md#get5) | **GET** /graph/data/actiontype |
260
- *GobodoGobodoApi.DefaultApi* | [**get6**](docs/DefaultApi.md#get6) | **GET** /graph/data/actiontype/{id} |
261
258
  *GobodoGobodoApi.DefaultApi* | [**getApiClientById**](docs/DefaultApi.md#getApiClientById) | **GET** /graph/data/api/clients/{key} | Gets an api client by id
262
- *GobodoGobodoApi.DefaultApi* | [**getEndObjectTypes**](docs/DefaultApi.md#getEndObjectTypes) | **GET** /graph/data/actiontype/{id}/endobjecttypes |
263
- *GobodoGobodoApi.DefaultApi* | [**getFields**](docs/DefaultApi.md#getFields) | **GET** /graph/data/actiontype/{id}/fields |
264
259
  *GobodoGobodoApi.DefaultApi* | [**resetSecretKey**](docs/DefaultApi.md#resetSecretKey) | **PUT** /graph/data/api/clients/{key}/resetSecretkey | Resets the secret key of the API Client
265
- *GobodoGobodoApi.DefaultApi* | [**updateTemplate**](docs/DefaultApi.md#updateTemplate) | **PUT** /graph/data/actiontype/{id}/template |
266
260
  *GobodoGobodoApi.DocumentsApi* | [**addDocumentPart**](docs/DocumentsApi.md#addDocumentPart) | **POST** /graph/data/articles/{docid}/entryparts |
267
261
  *GobodoGobodoApi.DocumentsApi* | [**changeStatus**](docs/DocumentsApi.md#changeStatus) | **PUT** /graph/data/articles/{id}/status |
268
262
  *GobodoGobodoApi.DocumentsApi* | [**copyDocument**](docs/DocumentsApi.md#copyDocument) | **POST** /graph/data/articles/{docid}/copy |
@@ -276,6 +270,10 @@ Class | Method | HTTP request | Description
276
270
  *GobodoGobodoApi.DocumentsApi* | [**getDocumentPartByPageNumber**](docs/DocumentsApi.md#getDocumentPartByPageNumber) | **GET** /graph/data/articles/{id}/entryparts/{pagenum} |
277
271
  *GobodoGobodoApi.DocumentsApi* | [**getDocumentParts**](docs/DocumentsApi.md#getDocumentParts) | **GET** /graph/data/articles/{id}/entryparts |
278
272
  *GobodoGobodoApi.DocumentsApi* | [**getDocumentsByType**](docs/DocumentsApi.md#getDocumentsByType) | **GET** /graph/data/articles/entrytype/{typeid} |
273
+ *GobodoGobodoApi.EmailsApi* | [**createEmailForPage**](docs/EmailsApi.md#createEmailForPage) | **POST** /graph/data/emails/page/{pageId} | Creates an email address for a page
274
+ *GobodoGobodoApi.EmailsApi* | [**createEmailForUser**](docs/EmailsApi.md#createEmailForUser) | **POST** /graph/data/emails/user/{userId} | Creates an email address for a user
275
+ *GobodoGobodoApi.EmailsApi* | [**getEmailsByPage**](docs/EmailsApi.md#getEmailsByPage) | **GET** /graph/data/emails/page/{pageId} | Returns all email addresses for a given page
276
+ *GobodoGobodoApi.EmailsApi* | [**getEmailsByUser**](docs/EmailsApi.md#getEmailsByUser) | **GET** /graph/data/emails/user/{userid} | Returns all email addresses for a given user
279
277
  *GobodoGobodoApi.EntryPartsApi* | [**changeDocPartType**](docs/EntryPartsApi.md#changeDocPartType) | **PUT** /graph/data/entryparts/{docpartid}/changetype/{typeid} |
280
278
  *GobodoGobodoApi.EntryPartsApi* | [**copyDocumentPart**](docs/EntryPartsApi.md#copyDocumentPart) | **POST** /graph/data/entryparts/{docpartid}/copy |
281
279
  *GobodoGobodoApi.EntryPartsApi* | [**createChildDocumentPart**](docs/EntryPartsApi.md#createChildDocumentPart) | **POST** /graph/data/entryparts/{docpartid}/entryparts |
@@ -312,13 +310,36 @@ Class | Method | HTTP request | Description
312
310
  *GobodoGobodoApi.FormsApi* | [**getRelProperty1**](docs/FormsApi.md#getRelProperty1) | **GET** /graph/data/forms/submissions/{id}/properties/{prop} | Get Property
313
311
  *GobodoGobodoApi.FormsApi* | [**setRelProperties1**](docs/FormsApi.md#setRelProperties1) | **PUT** /graph/data/forms/submissions/{id}/properties | Set Multiple Properties
314
312
  *GobodoGobodoApi.FormsApi* | [**setRelProperty1**](docs/FormsApi.md#setRelProperty1) | **PUT** /graph/data/forms/submissions/{id}/properties/{prop} | Update Property
313
+ *GobodoGobodoApi.FunctionsApi* | [**addFunctionConfig**](docs/FunctionsApi.md#addFunctionConfig) | **POST** /graph/data/functions/{functionid}/{environment} | Adds a function config
314
+ *GobodoGobodoApi.FunctionsApi* | [**addMethodToActionType**](docs/FunctionsApi.md#addMethodToActionType) | **POST** /graph/data/functions/actiontype/{actiontypeid}/method | Adds a method to an action type
315
+ *GobodoGobodoApi.FunctionsApi* | [**addMethodToObjectType**](docs/FunctionsApi.md#addMethodToObjectType) | **POST** /graph/data/functions/objecttype/{objecttypeid}/method | Adds a method to an object type
316
+ *GobodoGobodoApi.FunctionsApi* | [**addMethodToRelationshipType**](docs/FunctionsApi.md#addMethodToRelationshipType) | **POST** /graph/data/functions/relationshiptype/{reltypeid}/method | Adds a method to an relationship type
317
+ *GobodoGobodoApi.FunctionsApi* | [**createFunction**](docs/FunctionsApi.md#createFunction) | **POST** /graph/data/functions | Creates a new function
318
+ *GobodoGobodoApi.FunctionsApi* | [**deleteFunction**](docs/FunctionsApi.md#deleteFunction) | **DELETE** /graph/data/functions/{functionid} | Deletes a function
315
319
  *GobodoGobodoApi.FunctionsApi* | [**doPostFunction**](docs/FunctionsApi.md#doPostFunction) | **POST** /graph/data/object/{id}/function/{function} |
320
+ *GobodoGobodoApi.FunctionsApi* | [**editFunction**](docs/FunctionsApi.md#editFunction) | **PUT** /graph/data/functions/{functionid} | Modifies a function
321
+ *GobodoGobodoApi.FunctionsApi* | [**editFunctionConfig**](docs/FunctionsApi.md#editFunctionConfig) | **PUT** /graph/data/functions/functionconfig/{functionconfigid} | Edits a function config
322
+ *GobodoGobodoApi.FunctionsApi* | [**getActionTypeMethods**](docs/FunctionsApi.md#getActionTypeMethods) | **GET** /graph/data/functions/actiontype/{actiontypeid}/methods | Retrieves the methods associated with the ActionType
323
+ *GobodoGobodoApi.FunctionsApi* | [**getFunction**](docs/FunctionsApi.md#getFunction) | **GET** /graph/data/functions/{functionid} | Returns a function
324
+ *GobodoGobodoApi.FunctionsApi* | [**getFunctionConfig**](docs/FunctionsApi.md#getFunctionConfig) | **GET** /graph/data/functions/{functionid}/{environment} | Returns the function for the given environment
325
+ *GobodoGobodoApi.FunctionsApi* | [**getFunctionSubscriptions**](docs/FunctionsApi.md#getFunctionSubscriptions) | **GET** /graph/data/functions/{functionid}/subscriptions | Gets the subscriptions of the function
326
+ *GobodoGobodoApi.FunctionsApi* | [**getObjectTypeMethods**](docs/FunctionsApi.md#getObjectTypeMethods) | **GET** /graph/data/functions/objecttype/{objecttypeid}/methods | Retrieves the methods associated with the Object Type
327
+ *GobodoGobodoApi.FunctionsApi* | [**getRelationshipTypeMethods**](docs/FunctionsApi.md#getRelationshipTypeMethods) | **GET** /graph/data/functions/relationshiptype/{reltypeid}/methods | Retrieves the methods associated with the Object Type
328
+ *GobodoGobodoApi.FunctionsApi* | [**subscribeToTopic**](docs/FunctionsApi.md#subscribeToTopic) | **PUT** /graph/data/functions/{functionid}/subscriptions | Subscribes to a topic
316
329
  *GobodoGobodoApi.GeocodeApi* | [**createGeocodes**](docs/GeocodeApi.md#createGeocodes) | **POST** /graph/data/object/{id}/geocode |
317
330
  *GobodoGobodoApi.GeocodeApi* | [**deleteGeocode**](docs/GeocodeApi.md#deleteGeocode) | **DELETE** /graph/data/object/{id}/geocode/{geocodeid} |
318
331
  *GobodoGobodoApi.GeocodeApi* | [**get2**](docs/GeocodeApi.md#get2) | **GET** /graph/data/geocode |
319
332
  *GobodoGobodoApi.GeocodeApi* | [**get3**](docs/GeocodeApi.md#get3) | **GET** /graph/data/geocode/{id} |
320
333
  *GobodoGobodoApi.GeocodeApi* | [**getGeocodes**](docs/GeocodeApi.md#getGeocodes) | **GET** /graph/data/object/{id}/geocode |
321
334
  *GobodoGobodoApi.GoogleApi* | [**loginGoogle**](docs/GoogleApi.md#loginGoogle) | **POST** /graph/data/auth_google |
335
+ *GobodoGobodoApi.GraphActionTypesApi* | [**addEndObjectTypes**](docs/GraphActionTypesApi.md#addEndObjectTypes) | **PUT** /graph/data/actiontype/{id}/endobjecttypes |
336
+ *GobodoGobodoApi.GraphActionTypesApi* | [**addMethodToActionType**](docs/GraphActionTypesApi.md#addMethodToActionType) | **POST** /graph/data/functions/actiontype/{actiontypeid}/method | Adds a method to an action type
337
+ *GobodoGobodoApi.GraphActionTypesApi* | [**get5**](docs/GraphActionTypesApi.md#get5) | **GET** /graph/data/actiontype |
338
+ *GobodoGobodoApi.GraphActionTypesApi* | [**get6**](docs/GraphActionTypesApi.md#get6) | **GET** /graph/data/actiontype/{id} |
339
+ *GobodoGobodoApi.GraphActionTypesApi* | [**getActionTypeMethods**](docs/GraphActionTypesApi.md#getActionTypeMethods) | **GET** /graph/data/functions/actiontype/{actiontypeid}/methods | Retrieves the methods associated with the ActionType
340
+ *GobodoGobodoApi.GraphActionTypesApi* | [**getEndObjectTypes**](docs/GraphActionTypesApi.md#getEndObjectTypes) | **GET** /graph/data/actiontype/{id}/endobjecttypes |
341
+ *GobodoGobodoApi.GraphActionTypesApi* | [**getFields**](docs/GraphActionTypesApi.md#getFields) | **GET** /graph/data/actiontype/{id}/fields |
342
+ *GobodoGobodoApi.GraphActionTypesApi* | [**updateTemplate**](docs/GraphActionTypesApi.md#updateTemplate) | **PUT** /graph/data/actiontype/{id}/template |
322
343
  *GobodoGobodoApi.GraphActionsApi* | [**createActions**](docs/GraphActionsApi.md#createActions) | **POST** /graph/data/object/{id}/actions |
323
344
  *GobodoGobodoApi.GraphActionsApi* | [**createBulkActions**](docs/GraphActionsApi.md#createBulkActions) | **POST** /graph/data/action | Perform multiple actions in a single bulk operation
324
345
  *GobodoGobodoApi.GraphActionsApi* | [**deleteAction**](docs/GraphActionsApi.md#deleteAction) | **DELETE** /graph/data/action/{id} | Delete Action
@@ -330,6 +351,7 @@ Class | Method | HTTP request | Description
330
351
  *GobodoGobodoApi.GraphActionsApi* | [**getActionsByType**](docs/GraphActionsApi.md#getActionsByType) | **GET** /graph/data/object/{id}/actions/{actiontypeid} | Get Actions By Type
331
352
  *GobodoGobodoApi.GraphActionsApi* | [**setActionProperties**](docs/GraphActionsApi.md#setActionProperties) | **PUT** /graph/data/action/{id}/properties | Set Multiple Properties
332
353
  *GobodoGobodoApi.GraphActionsApi* | [**setActionProperty**](docs/GraphActionsApi.md#setActionProperty) | **PUT** /graph/data/action/{id}/properties/{prop} | Update Property
354
+ *GobodoGobodoApi.GraphObjectTypesApi* | [**addMethodToObjectType**](docs/GraphObjectTypesApi.md#addMethodToObjectType) | **POST** /graph/data/functions/objecttype/{objecttypeid}/method | Adds a method to an object type
333
355
  *GobodoGobodoApi.GraphObjectTypesApi* | [**addPolicies**](docs/GraphObjectTypesApi.md#addPolicies) | **POST** /graph/data/objecttype/{id}/policies |
334
356
  *GobodoGobodoApi.GraphObjectTypesApi* | [**get10**](docs/GraphObjectTypesApi.md#get10) | **GET** /graph/data/objecttype/{id} |
335
357
  *GobodoGobodoApi.GraphObjectTypesApi* | [**get8**](docs/GraphObjectTypesApi.md#get8) | **GET** /graph/data/objecttype |
@@ -338,6 +360,7 @@ Class | Method | HTTP request | Description
338
360
  *GobodoGobodoApi.GraphObjectTypesApi* | [**getDefaultObjectTypes**](docs/GraphObjectTypesApi.md#getDefaultObjectTypes) | **GET** /graph/data/objecttype/default |
339
361
  *GobodoGobodoApi.GraphObjectTypesApi* | [**getFields1**](docs/GraphObjectTypesApi.md#getFields1) | **GET** /graph/data/objecttype/{id}/fields |
340
362
  *GobodoGobodoApi.GraphObjectTypesApi* | [**getMyObjectTypes**](docs/GraphObjectTypesApi.md#getMyObjectTypes) | **GET** /graph/data/objecttype/mine |
363
+ *GobodoGobodoApi.GraphObjectTypesApi* | [**getObjectTypeMethods**](docs/GraphObjectTypesApi.md#getObjectTypeMethods) | **GET** /graph/data/functions/objecttype/{objecttypeid}/methods | Retrieves the methods associated with the Object Type
341
364
  *GobodoGobodoApi.GraphObjectTypesApi* | [**updateTemplate1**](docs/GraphObjectTypesApi.md#updateTemplate1) | **PUT** /graph/data/objecttype/{id}/template |
342
365
  *GobodoGobodoApi.GraphObjectsApi* | [**addLiveMeeting**](docs/GraphObjectsApi.md#addLiveMeeting) | **PUT** /graph/data/live/{objectid}/add | Adds a live meeting to the object
343
366
  *GobodoGobodoApi.GraphObjectsApi* | [**addLiveStream**](docs/GraphObjectsApi.md#addLiveStream) | **PUT** /graph/data/live/{objectid}/stream | Adds a live meeting to the object
@@ -404,6 +427,7 @@ Class | Method | HTTP request | Description
404
427
  *GobodoGobodoApi.GraphObjectsApi* | [**view**](docs/GraphObjectsApi.md#view) | **PUT** /graph/data/object/{objectid}/view | Marks the object as viewed
405
428
  *GobodoGobodoApi.GraphObjectsApi* | [**viewPost**](docs/GraphObjectsApi.md#viewPost) | **POST** /graph/data/object/{id}/view | Marks the object as viewed (HTTP Post Operation)
406
429
  *GobodoGobodoApi.GraphRelationshipTypesApi* | [**addEndObjectTypes1**](docs/GraphRelationshipTypesApi.md#addEndObjectTypes1) | **PUT** /graph/data/relationshiptype/{id}/endobjecttypes |
430
+ *GobodoGobodoApi.GraphRelationshipTypesApi* | [**addMethodToRelationshipType**](docs/GraphRelationshipTypesApi.md#addMethodToRelationshipType) | **POST** /graph/data/functions/relationshiptype/{reltypeid}/method | Adds a method to an relationship type
407
431
  *GobodoGobodoApi.GraphRelationshipTypesApi* | [**addStartObjectTypes**](docs/GraphRelationshipTypesApi.md#addStartObjectTypes) | **PUT** /graph/data/relationshiptype/{id}/startobjecttypes |
408
432
  *GobodoGobodoApi.GraphRelationshipTypesApi* | [**createRelationshipType**](docs/GraphRelationshipTypesApi.md#createRelationshipType) | **POST** /graph/data/relationshiptype | Create relationshp type
409
433
  *GobodoGobodoApi.GraphRelationshipTypesApi* | [**get12**](docs/GraphRelationshipTypesApi.md#get12) | **GET** /graph/data/relationshiptype |
@@ -413,6 +437,7 @@ Class | Method | HTTP request | Description
413
437
  *GobodoGobodoApi.GraphRelationshipTypesApi* | [**getRelationshipTypeByClassName**](docs/GraphRelationshipTypesApi.md#getRelationshipTypeByClassName) | **GET** /graph/data/relationshiptype/class/{classname} |
414
438
  *GobodoGobodoApi.GraphRelationshipTypesApi* | [**getRelationshipTypeById**](docs/GraphRelationshipTypesApi.md#getRelationshipTypeById) | **GET** /graph/data/relationshiptype/{id} |
415
439
  *GobodoGobodoApi.GraphRelationshipTypesApi* | [**getRelationshipTypeByKey**](docs/GraphRelationshipTypesApi.md#getRelationshipTypeByKey) | **GET** /graph/data/relationshiptype/{key} |
440
+ *GobodoGobodoApi.GraphRelationshipTypesApi* | [**getRelationshipTypeMethods**](docs/GraphRelationshipTypesApi.md#getRelationshipTypeMethods) | **GET** /graph/data/functions/relationshiptype/{reltypeid}/methods | Retrieves the methods associated with the Object Type
416
441
  *GobodoGobodoApi.GraphRelationshipTypesApi* | [**getRelationshipsByTypeIn**](docs/GraphRelationshipTypesApi.md#getRelationshipsByTypeIn) | **GET** /graph/data/object/{id}/relationships/in/{reltypeid} | Get Incoming Relationships By Type
417
442
  *GobodoGobodoApi.GraphRelationshipTypesApi* | [**getRelationshipsByTypeOut**](docs/GraphRelationshipTypesApi.md#getRelationshipsByTypeOut) | **GET** /graph/data/object/{id}/relationships/out/{reltypeid} | Get Outgoing Relationships By Type
418
443
  *GobodoGobodoApi.GraphRelationshipTypesApi* | [**getStartObjectTypes**](docs/GraphRelationshipTypesApi.md#getStartObjectTypes) | **GET** /graph/data/relationshiptype/{id}/startobjecttypes |
@@ -525,6 +550,18 @@ Class | Method | HTTP request | Description
525
550
  *GobodoGobodoApi.MeetingEventsApi* | [**getEventsDateRange**](docs/MeetingEventsApi.md#getEventsDateRange) | **GET** /graph/data/object/{id}/events/{startdate}:{enddate} | Get Events Date Range
526
551
  *GobodoGobodoApi.MeetingEventsApi* | [**getEventsFuture**](docs/MeetingEventsApi.md#getEventsFuture) | **GET** /graph/data/object/{id}/events/future | Get Events Future
527
552
  *GobodoGobodoApi.MeetingEventsApi* | [**getEventsPast**](docs/MeetingEventsApi.md#getEventsPast) | **GET** /graph/data/object/{id}/events/past | Get Events
553
+ *GobodoGobodoApi.NotificationsApi* | [**createNotification**](docs/NotificationsApi.md#createNotification) | **POST** /graph/data/notifications/{recipientId} | Creates a notification
554
+ *GobodoGobodoApi.NotificationsApi* | [**createNotificationAssociatedWith**](docs/NotificationsApi.md#createNotificationAssociatedWith) | **POST** /graph/data/notifications/{recipientId}/{objectId} | Creates a notification
555
+ *GobodoGobodoApi.NotificationsApi* | [**getAllNotifications**](docs/NotificationsApi.md#getAllNotifications) | **GET** /graph/data/notifications | Returns all notifications for the logged in user
556
+ *GobodoGobodoApi.NotificationsApi* | [**getAllNotificationsByUser**](docs/NotificationsApi.md#getAllNotificationsByUser) | **GET** /graph/data/notifications/user/{userId} | Returns all notifications for a given user
557
+ *GobodoGobodoApi.NotificationsApi* | [**getNotification**](docs/NotificationsApi.md#getNotification) | **GET** /graph/data/notifications/{id} | Returns a notification by id
558
+ *GobodoGobodoApi.NotificationsApi* | [**getUnreadNotificationCount**](docs/NotificationsApi.md#getUnreadNotificationCount) | **GET** /graph/data/notifications/unread/count | Returns the number of unread notifications for the logged in user
559
+ *GobodoGobodoApi.NotificationsApi* | [**getUnreadNotifications**](docs/NotificationsApi.md#getUnreadNotifications) | **GET** /graph/data/notifications/unread | Returns all unread notifications for the logged in user
560
+ *GobodoGobodoApi.NotificationsApi* | [**listRegisteredDevices**](docs/NotificationsApi.md#listRegisteredDevices) | **GET** /graph/data/notificationmanagement/devices |
561
+ *GobodoGobodoApi.NotificationsApi* | [**listRegisteredTokens**](docs/NotificationsApi.md#listRegisteredTokens) | **GET** /graph/data/notificationmanagement/tokens |
562
+ *GobodoGobodoApi.NotificationsApi* | [**registerDevice**](docs/NotificationsApi.md#registerDevice) | **POST** /graph/data/notificationmanagement/register |
563
+ *GobodoGobodoApi.NotificationsApi* | [**unregisterDevice**](docs/NotificationsApi.md#unregisterDevice) | **DELETE** /graph/data/notificationmanagement/unregister/{deviceId} |
564
+ *GobodoGobodoApi.NotificationsApi* | [**unregisterNotificationToken**](docs/NotificationsApi.md#unregisterNotificationToken) | **DELETE** /graph/data/notificationmanagement/unregistertoken/{token} |
528
565
  *GobodoGobodoApi.PagesApi* | [**createPage**](docs/PagesApi.md#createPage) | **POST** /graph/data/pages | Create Page
529
566
  *GobodoGobodoApi.PagesApi* | [**deleteObject**](docs/PagesApi.md#deleteObject) | **DELETE** /graph/data/object/{id} |
530
567
  *GobodoGobodoApi.PagesApi* | [**editPage**](docs/PagesApi.md#editPage) | **PUT** /graph/data/pages/{id} | Edit Page
@@ -534,6 +571,11 @@ Class | Method | HTTP request | Description
534
571
  *GobodoGobodoApi.PagesApi* | [**setPageProfilePicture**](docs/PagesApi.md#setPageProfilePicture) | **PUT** /graph/data/pages/{id}/profilepicture | Edit Page
535
572
  *GobodoGobodoApi.PagesApi* | [**setPageProperties**](docs/PagesApi.md#setPageProperties) | **PUT** /graph/data/pages/{id}/properties | Set Multiple Properties
536
573
  *GobodoGobodoApi.PagesApi* | [**setPageProperty**](docs/PagesApi.md#setPageProperty) | **PUT** /graph/data/pages/{id}/properties/{prop} | Update Property
574
+ *GobodoGobodoApi.PhoneNumbersApi* | [**createPhoneNumberForPage**](docs/PhoneNumbersApi.md#createPhoneNumberForPage) | **POST** /graph/data/phoneNumbers/page/{pageId} | Creates a phone number for a page
575
+ *GobodoGobodoApi.PhoneNumbersApi* | [**createPhoneNumberForUser**](docs/PhoneNumbersApi.md#createPhoneNumberForUser) | **POST** /graph/data/phoneNumbers/user/{userId} | Creates a phone number for a user
576
+ *GobodoGobodoApi.PhoneNumbersApi* | [**getPhoneNumber**](docs/PhoneNumbersApi.md#getPhoneNumber) | **GET** /graph/data/phoneNumbers/{id} | Returns a phone number by id
577
+ *GobodoGobodoApi.PhoneNumbersApi* | [**getPhoneNumbersByPage**](docs/PhoneNumbersApi.md#getPhoneNumbersByPage) | **GET** /graph/data/phoneNumbers/page/{pageId} | Returns all email addresses for a given page
578
+ *GobodoGobodoApi.PhoneNumbersApi* | [**getPhoneNumbersByUser**](docs/PhoneNumbersApi.md#getPhoneNumbersByUser) | **GET** /graph/data/phoneNumbers/user/{userid} | Returns all email addresses for a given user
537
579
  *GobodoGobodoApi.PostsApi* | [**createPost**](docs/PostsApi.md#createPost) | **POST** /graph/data/posts |
538
580
  *GobodoGobodoApi.PostsApi* | [**deleteObject**](docs/PostsApi.md#deleteObject) | **DELETE** /graph/data/object/{id} |
539
581
  *GobodoGobodoApi.PostsApi* | [**get42**](docs/PostsApi.md#get42) | **GET** /graph/data/posts |
@@ -609,6 +651,13 @@ Class | Method | HTTP request | Description
609
651
  *GobodoGobodoApi.ThemeMappingsApi* | [**addUrlPatterns**](docs/ThemeMappingsApi.md#addUrlPatterns) | **PUT** /graph/data/themes/{themeid}/urlpatterns |
610
652
  *GobodoGobodoApi.ThemeMappingsApi* | [**createTheme**](docs/ThemeMappingsApi.md#createTheme) | **POST** /graph/data/themes | Create a Theme Mapping
611
653
  *GobodoGobodoApi.ThemeMappingsApi* | [**get45**](docs/ThemeMappingsApi.md#get45) | **GET** /graph/data/themes/{themeid} |
654
+ *GobodoGobodoApi.TopicsApi* | [**createTopic**](docs/TopicsApi.md#createTopic) | **POST** /graph/data/topics | Creates a new topic
655
+ *GobodoGobodoApi.TopicsApi* | [**deleteTopic**](docs/TopicsApi.md#deleteTopic) | **DELETE** /graph/data/topics/{topicName} | Deletes a topic
656
+ *GobodoGobodoApi.TopicsApi* | [**getSubscription**](docs/TopicsApi.md#getSubscription) | **GET** /graph/data/topics/subscription/{subscriptionId} | Gets a subscription by key
657
+ *GobodoGobodoApi.TopicsApi* | [**getTopicByName**](docs/TopicsApi.md#getTopicByName) | **GET** /graph/data/topics/{topicName} | Gets a topic by name
658
+ *GobodoGobodoApi.TopicsApi* | [**getTopicSubscriptions**](docs/TopicsApi.md#getTopicSubscriptions) | **GET** /graph/data/topics/{topicName}/subscriptions | Gets subscriptions for a topic
659
+ *GobodoGobodoApi.TopicsApi* | [**registerListeners**](docs/TopicsApi.md#registerListeners) | **PUT** /graph/data/topics | Registers listeners
660
+ *GobodoGobodoApi.TopicsApi* | [**sendMessage**](docs/TopicsApi.md#sendMessage) | **POST** /graph/data/topics/message | Sends a message to a topic
612
661
  *GobodoGobodoApi.TransactionsApi* | [**beginTx**](docs/TransactionsApi.md#beginTx) | **POST** /graph/data/transaction | Start a new transaction
613
662
  *GobodoGobodoApi.TransactionsApi* | [**commit**](docs/TransactionsApi.md#commit) | **POST** /graph/data/transaction/{id}/commit | Commits a transaction
614
663
  *GobodoGobodoApi.TransactionsApi* | [**failTx**](docs/TransactionsApi.md#failTx) | **DELETE** /graph/data/transaction/{id} | Marks a transaction for failure
@@ -655,7 +704,6 @@ Class | Method | HTTP request | Description
655
704
  - [GobodoGobodoApi.ApplicationPaymentAccountResponse](docs/ApplicationPaymentAccountResponse.md)
656
705
  - [GobodoGobodoApi.ApplicationPaymentAccountResponseFailureException](docs/ApplicationPaymentAccountResponseFailureException.md)
657
706
  - [GobodoGobodoApi.ApplicationPaymentAccountResponseFailureExceptionStackTraceInner](docs/ApplicationPaymentAccountResponseFailureExceptionStackTraceInner.md)
658
- - [GobodoGobodoApi.ApplicationPaymentAccountResponseFailureExceptionSuppressedInner](docs/ApplicationPaymentAccountResponseFailureExceptionSuppressedInner.md)
659
707
  - [GobodoGobodoApi.Article](docs/Article.md)
660
708
  - [GobodoGobodoApi.AuthResponse](docs/AuthResponse.md)
661
709
  - [GobodoGobodoApi.Balance](docs/Balance.md)
@@ -666,17 +714,22 @@ Class | Method | HTTP request | Description
666
714
  - [GobodoGobodoApi.Comment](docs/Comment.md)
667
715
  - [GobodoGobodoApi.Coordinates](docs/Coordinates.md)
668
716
  - [GobodoGobodoApi.CreateAccountResponse](docs/CreateAccountResponse.md)
717
+ - [GobodoGobodoApi.CreateFunctionInput](docs/CreateFunctionInput.md)
669
718
  - [GobodoGobodoApi.CreateStripeAccountInput](docs/CreateStripeAccountInput.md)
670
719
  - [GobodoGobodoApi.CreateStripeCustomerInput](docs/CreateStripeCustomerInput.md)
720
+ - [GobodoGobodoApi.CreateTopicInput](docs/CreateTopicInput.md)
721
+ - [GobodoGobodoApi.CreateTopicListenerInput](docs/CreateTopicListenerInput.md)
671
722
  - [GobodoGobodoApi.CustomerResponse](docs/CustomerResponse.md)
672
723
  - [GobodoGobodoApi.DataObject](docs/DataObject.md)
673
724
  - [GobodoGobodoApi.DataSheetImport](docs/DataSheetImport.md)
674
725
  - [GobodoGobodoApi.DataSheetImportPrivacySettings](docs/DataSheetImportPrivacySettings.md)
675
726
  - [GobodoGobodoApi.DataSheetImportSummary](docs/DataSheetImportSummary.md)
727
+ - [GobodoGobodoApi.DeviceRegistrationRequest](docs/DeviceRegistrationRequest.md)
676
728
  - [GobodoGobodoApi.Document](docs/Document.md)
677
729
  - [GobodoGobodoApi.DocumentPart](docs/DocumentPart.md)
678
730
  - [GobodoGobodoApi.DocumentPartType](docs/DocumentPartType.md)
679
731
  - [GobodoGobodoApi.DocumentType](docs/DocumentType.md)
732
+ - [GobodoGobodoApi.EmailAddress](docs/EmailAddress.md)
680
733
  - [GobodoGobodoApi.FieldMapping](docs/FieldMapping.md)
681
734
  - [GobodoGobodoApi.Fields](docs/Fields.md)
682
735
  - [GobodoGobodoApi.File](docs/File.md)
@@ -686,9 +739,14 @@ Class | Method | HTTP request | Description
686
739
  - [GobodoGobodoApi.Form](docs/Form.md)
687
740
  - [GobodoGobodoApi.FormSection](docs/FormSection.md)
688
741
  - [GobodoGobodoApi.FormSubmission](docs/FormSubmission.md)
742
+ - [GobodoGobodoApi.FunctionConfigInput](docs/FunctionConfigInput.md)
743
+ - [GobodoGobodoApi.FunctionEnvironmentConfig](docs/FunctionEnvironmentConfig.md)
689
744
  - [GobodoGobodoApi.Geocode](docs/Geocode.md)
690
745
  - [GobodoGobodoApi.GeocodePayload](docs/GeocodePayload.md)
691
746
  - [GobodoGobodoApi.GeolocationInput](docs/GeolocationInput.md)
747
+ - [GobodoGobodoApi.GetFunctionConfig](docs/GetFunctionConfig.md)
748
+ - [GobodoGobodoApi.GetFunctionEnvironmentConfig](docs/GetFunctionEnvironmentConfig.md)
749
+ - [GobodoGobodoApi.GetFunctionResponse](docs/GetFunctionResponse.md)
692
750
  - [GobodoGobodoApi.Graph](docs/Graph.md)
693
751
  - [GobodoGobodoApi.GraphAction](docs/GraphAction.md)
694
752
  - [GobodoGobodoApi.GraphDatabaseService](docs/GraphDatabaseService.md)
@@ -719,6 +777,8 @@ Class | Method | HTTP request | Description
719
777
  - [GobodoGobodoApi.MemberList](docs/MemberList.md)
720
778
  - [GobodoGobodoApi.MessageGroup](docs/MessageGroup.md)
721
779
  - [GobodoGobodoApi.MultipartBody](docs/MultipartBody.md)
780
+ - [GobodoGobodoApi.NotificationInput](docs/NotificationInput.md)
781
+ - [GobodoGobodoApi.NotificationResponse](docs/NotificationResponse.md)
722
782
  - [GobodoGobodoApi.Objecttype](docs/Objecttype.md)
723
783
  - [GobodoGobodoApi.Page](docs/Page.md)
724
784
  - [GobodoGobodoApi.PageSchema](docs/PageSchema.md)
@@ -734,6 +794,7 @@ Class | Method | HTTP request | Description
734
794
  - [GobodoGobodoApi.Payout](docs/Payout.md)
735
795
  - [GobodoGobodoApi.PayoutInput](docs/PayoutInput.md)
736
796
  - [GobodoGobodoApi.PayoutResponse](docs/PayoutResponse.md)
797
+ - [GobodoGobodoApi.PhoneNumber](docs/PhoneNumber.md)
737
798
  - [GobodoGobodoApi.Post](docs/Post.md)
738
799
  - [GobodoGobodoApi.PrivateMessage](docs/PrivateMessage.md)
739
800
  - [GobodoGobodoApi.PrivateMessageConversation](docs/PrivateMessageConversation.md)
@@ -758,6 +819,9 @@ Class | Method | HTTP request | Description
758
819
  - [GobodoGobodoApi.TemplateSchema](docs/TemplateSchema.md)
759
820
  - [GobodoGobodoApi.ThemeMapping](docs/ThemeMapping.md)
760
821
  - [GobodoGobodoApi.ThemeMappingPayload](docs/ThemeMappingPayload.md)
822
+ - [GobodoGobodoApi.TopicInfoResponse](docs/TopicInfoResponse.md)
823
+ - [GobodoGobodoApi.TopicMessageInput](docs/TopicMessageInput.md)
824
+ - [GobodoGobodoApi.TopicSubscriptionResponse](docs/TopicSubscriptionResponse.md)
761
825
  - [GobodoGobodoApi.Transaction](docs/Transaction.md)
762
826
  - [GobodoGobodoApi.Transfer](docs/Transfer.md)
763
827
  - [GobodoGobodoApi.TransferInput](docs/TransferInput.md)
package/dist/ApiClient.js CHANGED
@@ -16,7 +16,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
16
16
  * gobodo-api
17
17
  * REST Interface for Gobodo API
18
18
  *
19
- * The version of the OpenAPI document: 0.1.52
19
+ * The version of the OpenAPI document: 0.1.58
20
20
  * Contact: info@gobodo.io
21
21
  *
22
22
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -26,7 +26,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
26
26
  */
27
27
  /**
28
28
  * @module ApiClient
29
- * @version 0.1.52
29
+ * @version 0.1.58
30
30
  */
31
31
  /**
32
32
  * Manages low level client-server communications, parameter marshalling, etc. There should not be any need for an
@@ -74,7 +74,7 @@ var ApiClient = /*#__PURE__*/function () {
74
74
  * @default {}
75
75
  */
76
76
  this.defaultHeaders = {
77
- 'User-Agent': 'OpenAPI-Generator/0.1.52/Javascript'
77
+ 'User-Agent': 'OpenAPI-Generator/0.1.58/Javascript'
78
78
  };
79
79
 
80
80
  /**
@@ -16,7 +16,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
16
16
  * gobodo-api
17
17
  * REST Interface for Gobodo API
18
18
  *
19
- * The version of the OpenAPI document: 0.1.52
19
+ * The version of the OpenAPI document: 0.1.58
20
20
  * Contact: info@gobodo.io
21
21
  *
22
22
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -27,7 +27,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
27
27
  /**
28
28
  * ActionTypes service.
29
29
  * @module api/ActionTypesApi
30
- * @version 0.1.52
30
+ * @version 0.1.58
31
31
  */
32
32
  var ActionTypesApi = exports["default"] = /*#__PURE__*/function () {
33
33
  /**
@@ -16,7 +16,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
16
16
  * gobodo-api
17
17
  * REST Interface for Gobodo API
18
18
  *
19
- * The version of the OpenAPI document: 0.1.52
19
+ * The version of the OpenAPI document: 0.1.58
20
20
  * Contact: info@gobodo.io
21
21
  *
22
22
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -27,7 +27,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
27
27
  /**
28
28
  * AdCampaigns service.
29
29
  * @module api/AdCampaignsApi
30
- * @version 0.1.52
30
+ * @version 0.1.58
31
31
  */
32
32
  var AdCampaignsApi = exports["default"] = /*#__PURE__*/function () {
33
33
  /**
@@ -16,7 +16,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
16
16
  * gobodo-api
17
17
  * REST Interface for Gobodo API
18
18
  *
19
- * The version of the OpenAPI document: 0.1.52
19
+ * The version of the OpenAPI document: 0.1.58
20
20
  * Contact: info@gobodo.io
21
21
  *
22
22
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -27,7 +27,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
27
27
  /**
28
28
  * AdManagement service.
29
29
  * @module api/AdManagementApi
30
- * @version 0.1.52
30
+ * @version 0.1.58
31
31
  */
32
32
  var AdManagementApi = exports["default"] = /*#__PURE__*/function () {
33
33
  /**
@@ -16,7 +16,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
16
16
  * gobodo-api
17
17
  * REST Interface for Gobodo API
18
18
  *
19
- * The version of the OpenAPI document: 0.1.52
19
+ * The version of the OpenAPI document: 0.1.58
20
20
  * Contact: info@gobodo.io
21
21
  *
22
22
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -27,7 +27,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
27
27
  /**
28
28
  * AdminDataManagement service.
29
29
  * @module api/AdminDataManagementApi
30
- * @version 0.1.52
30
+ * @version 0.1.58
31
31
  */
32
32
  var AdminDataManagementApi = exports["default"] = /*#__PURE__*/function () {
33
33
  /**
@@ -16,7 +16,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
16
16
  * gobodo-api
17
17
  * REST Interface for Gobodo API
18
18
  *
19
- * The version of the OpenAPI document: 0.1.52
19
+ * The version of the OpenAPI document: 0.1.58
20
20
  * Contact: info@gobodo.io
21
21
  *
22
22
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -27,7 +27,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
27
27
  /**
28
28
  * Ads service.
29
29
  * @module api/AdsApi
30
- * @version 0.1.52
30
+ * @version 0.1.58
31
31
  */
32
32
  var AdsApi = exports["default"] = /*#__PURE__*/function () {
33
33
  /**
@@ -19,7 +19,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
19
19
  * gobodo-api
20
20
  * REST Interface for Gobodo API
21
21
  *
22
- * The version of the OpenAPI document: 0.1.52
22
+ * The version of the OpenAPI document: 0.1.58
23
23
  * Contact: info@gobodo.io
24
24
  *
25
25
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -30,7 +30,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
30
30
  /**
31
31
  * Attachments service.
32
32
  * @module api/AttachmentsApi
33
- * @version 0.1.52
33
+ * @version 0.1.58
34
34
  */
35
35
  var AttachmentsApi = exports["default"] = /*#__PURE__*/function () {
36
36
  /**
@@ -16,7 +16,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
16
16
  * gobodo-api
17
17
  * REST Interface for Gobodo API
18
18
  *
19
- * The version of the OpenAPI document: 0.1.52
19
+ * The version of the OpenAPI document: 0.1.58
20
20
  * Contact: info@gobodo.io
21
21
  *
22
22
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -27,7 +27,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
27
27
  /**
28
28
  * Authentication service.
29
29
  * @module api/AuthenticationApi
30
- * @version 0.1.52
30
+ * @version 0.1.58
31
31
  */
32
32
  var AuthenticationApi = exports["default"] = /*#__PURE__*/function () {
33
33
  /**
@@ -17,7 +17,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
17
17
  * gobodo-api
18
18
  * REST Interface for Gobodo API
19
19
  *
20
- * The version of the OpenAPI document: 0.1.52
20
+ * The version of the OpenAPI document: 0.1.58
21
21
  * Contact: info@gobodo.io
22
22
  *
23
23
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,7 +28,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
28
28
  /**
29
29
  * Categories service.
30
30
  * @module api/CategoriesApi
31
- * @version 0.1.52
31
+ * @version 0.1.58
32
32
  */
33
33
  var CategoriesApi = exports["default"] = /*#__PURE__*/function () {
34
34
  /**
@@ -16,7 +16,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
16
16
  * gobodo-api
17
17
  * REST Interface for Gobodo API
18
18
  *
19
- * The version of the OpenAPI document: 0.1.52
19
+ * The version of the OpenAPI document: 0.1.58
20
20
  * Contact: info@gobodo.io
21
21
  *
22
22
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -27,7 +27,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
27
27
  /**
28
28
  * Comments service.
29
29
  * @module api/CommentsApi
30
- * @version 0.1.52
30
+ * @version 0.1.58
31
31
  */
32
32
  var CommentsApi = exports["default"] = /*#__PURE__*/function () {
33
33
  /**
@@ -19,7 +19,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
19
19
  * gobodo-api
20
20
  * REST Interface for Gobodo API
21
21
  *
22
- * The version of the OpenAPI document: 0.1.52
22
+ * The version of the OpenAPI document: 0.1.58
23
23
  * Contact: info@gobodo.io
24
24
  *
25
25
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -30,7 +30,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
30
30
  /**
31
31
  * ContentManagement service.
32
32
  * @module api/ContentManagementApi
33
- * @version 0.1.52
33
+ * @version 0.1.58
34
34
  */
35
35
  var ContentManagementApi = exports["default"] = /*#__PURE__*/function () {
36
36
  /**
@@ -19,7 +19,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
19
19
  * gobodo-api
20
20
  * REST Interface for Gobodo API
21
21
  *
22
- * The version of the OpenAPI document: 0.1.52
22
+ * The version of the OpenAPI document: 0.1.58
23
23
  * Contact: info@gobodo.io
24
24
  *
25
25
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -30,7 +30,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
30
30
  /**
31
31
  * Conversations service.
32
32
  * @module api/ConversationsApi
33
- * @version 0.1.52
33
+ * @version 0.1.58
34
34
  */
35
35
  var ConversationsApi = exports["default"] = /*#__PURE__*/function () {
36
36
  /**
@@ -21,7 +21,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
21
21
  * gobodo-api
22
22
  * REST Interface for Gobodo API
23
23
  *
24
- * The version of the OpenAPI document: 0.1.52
24
+ * The version of the OpenAPI document: 0.1.58
25
25
  * Contact: info@gobodo.io
26
26
  *
27
27
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32,7 +32,7 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
32
32
  /**
33
33
  * DataSheetImports service.
34
34
  * @module api/DataSheetImportsApi
35
- * @version 0.1.52
35
+ * @version 0.1.58
36
36
  */
37
37
  var DataSheetImportsApi = exports["default"] = /*#__PURE__*/function () {
38
38
  /**