@fenixalliance/abs-api-client 1.0.13 → 1.0.15

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 (196) hide show
  1. package/clients/accountingService/core/OpenAPI.js +1 -1
  2. package/clients/accountingService/core/OpenAPI.ts +1 -1
  3. package/clients/authService/core/ApiError.js +20 -0
  4. package/clients/authService/core/ApiError.ts +25 -0
  5. package/clients/authService/core/ApiRequestOptions.js +2 -0
  6. package/clients/authService/core/ApiRequestOptions.ts +17 -0
  7. package/clients/authService/core/ApiResult.js +2 -0
  8. package/clients/authService/core/ApiResult.ts +11 -0
  9. package/clients/authService/core/CancelablePromise.js +104 -0
  10. package/clients/authService/core/CancelablePromise.ts +131 -0
  11. package/clients/authService/core/OpenAPI.js +14 -0
  12. package/clients/authService/core/OpenAPI.ts +32 -0
  13. package/clients/authService/core/request.js +294 -0
  14. package/clients/authService/core/request.ts +322 -0
  15. package/clients/authService/index.js +28 -0
  16. package/clients/authService/index.ts +48 -0
  17. package/clients/authService/models/AccessTokenResponse.js +2 -0
  18. package/clients/authService/models/AccessTokenResponse.ts +11 -0
  19. package/clients/authService/models/AccountHolderCreateDto.js +12 -0
  20. package/clients/authService/models/AccountHolderCreateDto.ts +41 -0
  21. package/clients/authService/models/AccountHolderCreateDtoEnvelope.js +2 -0
  22. package/clients/authService/models/AccountHolderCreateDtoEnvelope.ts +14 -0
  23. package/clients/authService/models/ApiAuthorizationResult.js +2 -0
  24. package/clients/authService/models/ApiAuthorizationResult.ts +17 -0
  25. package/clients/authService/models/ApiAuthorizationResultEnvelope.js +2 -0
  26. package/clients/authService/models/ApiAuthorizationResultEnvelope.ts +14 -0
  27. package/clients/authService/models/EnrollmentId.js +2 -0
  28. package/clients/authService/models/EnrollmentId.ts +5 -0
  29. package/clients/authService/models/ErrorEnvelope.js +2 -0
  30. package/clients/authService/models/ErrorEnvelope.ts +12 -0
  31. package/clients/authService/models/ForgotPasswordRequest.js +2 -0
  32. package/clients/authService/models/ForgotPasswordRequest.ts +8 -0
  33. package/clients/authService/models/HttpValidationProblemDetails.js +2 -0
  34. package/clients/authService/models/HttpValidationProblemDetails.ts +5 -0
  35. package/clients/authService/models/InfoRequest.js +2 -0
  36. package/clients/authService/models/InfoRequest.ts +10 -0
  37. package/clients/authService/models/InfoResponse.js +2 -0
  38. package/clients/authService/models/InfoResponse.ts +9 -0
  39. package/clients/authService/models/JsonWebKey.js +2 -0
  40. package/clients/authService/models/JsonWebKey.ts +13 -0
  41. package/clients/authService/models/JsonWebKeySet.js +2 -0
  42. package/clients/authService/models/JsonWebKeySet.ts +9 -0
  43. package/clients/authService/models/JsonWebKeySetEnvelope.js +2 -0
  44. package/clients/authService/models/JsonWebKeySetEnvelope.ts +14 -0
  45. package/clients/authService/models/JsonWebToken.js +2 -0
  46. package/clients/authService/models/JsonWebToken.ts +15 -0
  47. package/clients/authService/models/JsonWebTokenEnvelope.js +2 -0
  48. package/clients/authService/models/JsonWebTokenEnvelope.ts +14 -0
  49. package/clients/authService/models/JsonWebTokenHeader.js +2 -0
  50. package/clients/authService/models/JsonWebTokenHeader.ts +11 -0
  51. package/clients/authService/models/JsonWebTokenPayload.js +2 -0
  52. package/clients/authService/models/JsonWebTokenPayload.ts +17 -0
  53. package/clients/authService/models/LoginRequest.js +2 -0
  54. package/clients/authService/models/LoginRequest.ts +11 -0
  55. package/clients/authService/models/OAuthTokenRequest.js +2 -0
  56. package/clients/authService/models/OAuthTokenRequest.ts +12 -0
  57. package/clients/authService/models/OpenIdConfiguration.js +2 -0
  58. package/clients/authService/models/OpenIdConfiguration.ts +19 -0
  59. package/clients/authService/models/OpenIdConfigurationEnvelope.js +2 -0
  60. package/clients/authService/models/OpenIdConfigurationEnvelope.ts +14 -0
  61. package/clients/authService/models/RefreshRequest.js +2 -0
  62. package/clients/authService/models/RefreshRequest.ts +8 -0
  63. package/clients/authService/models/RegisterRequest.js +2 -0
  64. package/clients/authService/models/RegisterRequest.ts +9 -0
  65. package/clients/authService/models/ResendConfirmationEmailRequest.js +2 -0
  66. package/clients/authService/models/ResendConfirmationEmailRequest.ts +8 -0
  67. package/clients/authService/models/ResetPasswordRequest.js +2 -0
  68. package/clients/authService/models/ResetPasswordRequest.ts +10 -0
  69. package/clients/authService/models/SigninModel.js +2 -0
  70. package/clients/authService/models/SigninModel.ts +9 -0
  71. package/clients/authService/models/StringListEnvelope.js +2 -0
  72. package/clients/authService/models/StringListEnvelope.ts +13 -0
  73. package/clients/authService/models/TenantId.js +2 -0
  74. package/clients/authService/models/TenantId.ts +5 -0
  75. package/clients/authService/models/TwoFactorRequest.js +2 -0
  76. package/clients/authService/models/TwoFactorRequest.ts +12 -0
  77. package/clients/authService/models/TwoFactorResponse.js +2 -0
  78. package/clients/authService/models/TwoFactorResponse.ts +12 -0
  79. package/clients/authService/models/UserId.js +2 -0
  80. package/clients/authService/models/UserId.ts +5 -0
  81. package/clients/authService/services/ApplicationsService.js +112 -0
  82. package/clients/authService/services/ApplicationsService.ts +132 -0
  83. package/clients/authService/services/AuthService.js +246 -0
  84. package/clients/authService/services/AuthService.ts +293 -0
  85. package/clients/authService/services/CheckerService.js +22 -0
  86. package/clients/authService/services/CheckerService.ts +25 -0
  87. package/clients/authService/services/OAuthService.js +152 -0
  88. package/clients/authService/services/OAuthService.ts +183 -0
  89. package/clients/authService/services/ResourceService.js +22 -0
  90. package/clients/authService/services/ResourceService.ts +25 -0
  91. package/clients/authService/services/UserInfoService.js +36 -0
  92. package/clients/authService/services/UserInfoService.ts +41 -0
  93. package/clients/cartService/core/OpenAPI.js +1 -1
  94. package/clients/cartService/core/OpenAPI.ts +1 -1
  95. package/clients/catalogService/core/OpenAPI.js +1 -1
  96. package/clients/catalogService/core/OpenAPI.ts +1 -1
  97. package/clients/contentService/core/OpenAPI.js +1 -1
  98. package/clients/contentService/core/OpenAPI.ts +1 -1
  99. package/clients/contentService/services/PortalsService.js +26 -14
  100. package/clients/contentService/services/PortalsService.ts +26 -14
  101. package/clients/crmService/core/OpenAPI.js +1 -1
  102. package/clients/crmService/core/OpenAPI.ts +1 -1
  103. package/clients/dealsService/core/OpenAPI.js +1 -1
  104. package/clients/dealsService/core/OpenAPI.ts +1 -1
  105. package/clients/forexService/core/OpenAPI.js +1 -1
  106. package/clients/forexService/core/OpenAPI.ts +1 -1
  107. package/clients/globeService/core/OpenAPI.js +1 -1
  108. package/clients/globeService/core/OpenAPI.ts +1 -1
  109. package/clients/globeService/index.js +5 -1
  110. package/clients/globeService/index.ts +4 -0
  111. package/clients/globeService/models/Error.js +2 -0
  112. package/clients/globeService/models/Error.ts +10 -0
  113. package/clients/globeService/models/PaymentResponse.js +21 -0
  114. package/clients/globeService/models/PaymentResponse.ts +34 -0
  115. package/clients/globeService/models/ResponseStatus.js +2 -0
  116. package/clients/globeService/models/ResponseStatus.ts +12 -0
  117. package/clients/globeService/services/MigrationsService.js +26 -0
  118. package/clients/globeService/services/MigrationsService.ts +30 -0
  119. package/clients/holderService/core/OpenAPI.js +1 -1
  120. package/clients/holderService/core/OpenAPI.ts +1 -1
  121. package/clients/hrmsService/core/OpenAPI.js +1 -1
  122. package/clients/hrmsService/core/OpenAPI.ts +1 -1
  123. package/clients/identityService/core/OpenAPI.js +1 -1
  124. package/clients/identityService/core/OpenAPI.ts +1 -1
  125. package/clients/inventoryService/core/OpenAPI.js +1 -1
  126. package/clients/inventoryService/core/OpenAPI.ts +1 -1
  127. package/clients/invoicingService/core/OpenAPI.js +1 -1
  128. package/clients/invoicingService/core/OpenAPI.ts +1 -1
  129. package/clients/learningService/core/OpenAPI.js +1 -1
  130. package/clients/learningService/core/OpenAPI.ts +1 -1
  131. package/clients/marketingService/core/OpenAPI.js +1 -1
  132. package/clients/marketingService/core/OpenAPI.ts +1 -1
  133. package/clients/ordersService/core/OpenAPI.js +1 -1
  134. package/clients/ordersService/core/OpenAPI.ts +1 -1
  135. package/clients/paymentsService/core/OpenAPI.js +1 -1
  136. package/clients/paymentsService/core/OpenAPI.ts +1 -1
  137. package/clients/pricingService/core/OpenAPI.js +1 -1
  138. package/clients/pricingService/core/OpenAPI.ts +1 -1
  139. package/clients/projectsService/core/OpenAPI.js +1 -1
  140. package/clients/projectsService/core/OpenAPI.ts +1 -1
  141. package/clients/quotesService/core/OpenAPI.js +1 -1
  142. package/clients/quotesService/core/OpenAPI.ts +1 -1
  143. package/clients/salesService/core/OpenAPI.js +1 -1
  144. package/clients/salesService/core/OpenAPI.ts +1 -1
  145. package/clients/securityService/core/OpenAPI.js +1 -1
  146. package/clients/securityService/core/OpenAPI.ts +1 -1
  147. package/clients/shipmentsService/core/OpenAPI.js +1 -1
  148. package/clients/shipmentsService/core/OpenAPI.ts +1 -1
  149. package/clients/socialService/core/OpenAPI.js +1 -1
  150. package/clients/socialService/core/OpenAPI.ts +1 -1
  151. package/clients/socialService/services/SocialProfilesService.js +72 -24
  152. package/clients/socialService/services/SocialProfilesService.ts +72 -24
  153. package/clients/storageService/core/OpenAPI.js +1 -1
  154. package/clients/storageService/core/OpenAPI.ts +1 -1
  155. package/clients/supportService/core/OpenAPI.js +1 -1
  156. package/clients/supportService/core/OpenAPI.ts +1 -1
  157. package/clients/systemService/core/OpenAPI.js +1 -1
  158. package/clients/systemService/core/OpenAPI.ts +1 -1
  159. package/clients/systemService/index.js +5 -1
  160. package/clients/systemService/index.ts +10 -0
  161. package/clients/systemService/models/AdditionalAttribute.js +2 -0
  162. package/clients/systemService/models/AdditionalAttribute.ts +9 -0
  163. package/clients/systemService/models/LicenseAttributes.js +2 -0
  164. package/clients/systemService/models/LicenseAttributes.ts +5 -0
  165. package/clients/systemService/models/LicenseAttributesListEnvelope.js +2 -0
  166. package/clients/systemService/models/LicenseAttributesListEnvelope.ts +14 -0
  167. package/clients/systemService/models/LicenseFeature.js +2 -0
  168. package/clients/systemService/models/LicenseFeature.ts +9 -0
  169. package/clients/systemService/models/LicenseKey.js +2 -0
  170. package/clients/systemService/models/LicenseKey.ts +8 -0
  171. package/clients/systemService/models/LicenseKeyRequest.js +12 -0
  172. package/clients/systemService/models/LicenseKeyRequest.ts +28 -0
  173. package/clients/systemService/models/LicenseValidationError.js +2 -0
  174. package/clients/systemService/models/LicenseValidationError.ts +9 -0
  175. package/clients/systemService/models/LicenseValidationErrorListEnvelope.js +2 -0
  176. package/clients/systemService/models/LicenseValidationErrorListEnvelope.ts +14 -0
  177. package/clients/systemService/models/StringEnvelope.js +2 -0
  178. package/clients/systemService/models/StringEnvelope.ts +13 -0
  179. package/clients/systemService/services/LicensesService.js +108 -0
  180. package/clients/systemService/services/LicensesService.ts +131 -0
  181. package/clients/tenantService/core/OpenAPI.js +1 -1
  182. package/clients/tenantService/core/OpenAPI.ts +1 -1
  183. package/clients/timeTrackerService/core/OpenAPI.js +1 -1
  184. package/clients/timeTrackerService/core/OpenAPI.ts +1 -1
  185. package/clients/walletsService/core/OpenAPI.js +1 -1
  186. package/clients/walletsService/core/OpenAPI.ts +1 -1
  187. package/clients/walletsService/services/WalletsService.js +65 -21
  188. package/clients/walletsService/services/WalletsService.ts +65 -21
  189. package/package.json +1 -1
  190. package/schemas/authService/schema.s.js +6 -0
  191. package/schemas/authService/schema.s.ts +894 -0
  192. package/schemas/contentService/schema.s.ts +120 -48
  193. package/schemas/globeService/schema.s.ts +64 -0
  194. package/schemas/socialService/schema.s.ts +1046 -990
  195. package/schemas/systemService/schema.s.ts +238 -0
  196. package/schemas/walletsService/schema.s.ts +971 -774
@@ -19,11 +19,13 @@ import { OpenAPI } from '../core/OpenAPI';
19
19
  import { request as __request } from '../core/request';
20
20
  export class SocialProfilesService {
21
21
  /**
22
+ * Get Social Profiles
23
+ * Get a list of social profiles.
22
24
  * @param xApiVersion
23
25
  * @returns SocialProfileDtoListEnvelope OK
24
26
  * @throws ApiError
25
27
  */
26
- public static getApiV2SocialServiceSocialProfiles(
28
+ public static getSocialProfilesAsync(
27
29
  xApiVersion?: string,
28
30
  ): CancelablePromise<SocialProfileDtoListEnvelope> {
29
31
  return __request(OpenAPI, {
@@ -39,11 +41,13 @@ export class SocialProfilesService {
39
41
  });
40
42
  }
41
43
  /**
44
+ * Count Social Profiles
45
+ * Count social profiles.
42
46
  * @param xApiVersion
43
47
  * @returns Int32Envelope OK
44
48
  * @throws ApiError
45
49
  */
46
- public static getApiV2SocialServiceSocialProfilesCount(
50
+ public static countSocialProfilesAsync(
47
51
  xApiVersion?: string,
48
52
  ): CancelablePromise<Int32Envelope> {
49
53
  return __request(OpenAPI, {
@@ -59,12 +63,14 @@ export class SocialProfilesService {
59
63
  });
60
64
  }
61
65
  /**
66
+ * Get Social Profile
67
+ * Get a social profile by ID.
62
68
  * @param socialProfileId
63
69
  * @param xApiVersion
64
70
  * @returns SocialProfileDtoEnvelope OK
65
71
  * @throws ApiError
66
72
  */
67
- public static getApiV2SocialServiceSocialProfiles1(
73
+ public static getSocialProfileAsync(
68
74
  socialProfileId: string,
69
75
  xApiVersion?: string,
70
76
  ): CancelablePromise<SocialProfileDtoEnvelope> {
@@ -84,12 +90,14 @@ export class SocialProfilesService {
84
90
  });
85
91
  }
86
92
  /**
93
+ * Get Followers
94
+ * Get a list of followers for a social profile.
87
95
  * @param socialProfileId
88
96
  * @param xApiVersion
89
97
  * @returns FollowRecordDtoListEnvelope OK
90
98
  * @throws ApiError
91
99
  */
92
- public static getApiV2SocialServiceSocialProfilesFollowers(
100
+ public static getFollowersAsync(
93
101
  socialProfileId: string,
94
102
  xApiVersion?: string,
95
103
  ): CancelablePromise<FollowRecordDtoListEnvelope> {
@@ -109,12 +117,14 @@ export class SocialProfilesService {
109
117
  });
110
118
  }
111
119
  /**
120
+ * Count Followers
121
+ * Count followers for a social profile.
112
122
  * @param socialProfileId
113
123
  * @param xApiVersion
114
124
  * @returns Int32Envelope OK
115
125
  * @throws ApiError
116
126
  */
117
- public static getApiV2SocialServiceSocialProfilesFollowersCount(
127
+ public static countFollowersAsync(
118
128
  socialProfileId: string,
119
129
  xApiVersion?: string,
120
130
  ): CancelablePromise<Int32Envelope> {
@@ -134,12 +144,14 @@ export class SocialProfilesService {
134
144
  });
135
145
  }
136
146
  /**
147
+ * Get Followers
148
+ * Get a list of followers for a social profile.
137
149
  * @param socialProfileId
138
150
  * @param xApiVersion
139
151
  * @returns SocialProfileDtoListEnvelope OK
140
152
  * @throws ApiError
141
153
  */
142
- public static getApiV2SocialServiceSocialProfilesFollowersProfiles(
154
+ public static getFollowersAsync1(
143
155
  socialProfileId: string,
144
156
  xApiVersion?: string,
145
157
  ): CancelablePromise<SocialProfileDtoListEnvelope> {
@@ -159,12 +171,14 @@ export class SocialProfilesService {
159
171
  });
160
172
  }
161
173
  /**
174
+ * Count Followers
175
+ * Count followers for a social profile.
162
176
  * @param socialProfileId
163
177
  * @param xApiVersion
164
178
  * @returns Int32Envelope OK
165
179
  * @throws ApiError
166
180
  */
167
- public static getApiV2SocialServiceSocialProfilesFollowersProfilesCount(
181
+ public static countFollowersAsync1(
168
182
  socialProfileId: string,
169
183
  xApiVersion?: string,
170
184
  ): CancelablePromise<Int32Envelope> {
@@ -184,12 +198,14 @@ export class SocialProfilesService {
184
198
  });
185
199
  }
186
200
  /**
201
+ * Get Follows
202
+ * Get a list of follows for a social profile.
187
203
  * @param socialProfileId
188
204
  * @param xApiVersion
189
205
  * @returns FollowRecordDtoListEnvelope OK
190
206
  * @throws ApiError
191
207
  */
192
- public static getApiV2SocialServiceSocialProfilesFollows(
208
+ public static getFollowsAsync(
193
209
  socialProfileId: string,
194
210
  xApiVersion?: string,
195
211
  ): CancelablePromise<FollowRecordDtoListEnvelope> {
@@ -209,12 +225,14 @@ export class SocialProfilesService {
209
225
  });
210
226
  }
211
227
  /**
228
+ * Count Follows
229
+ * Count follows for a social profile.
212
230
  * @param socialProfileId
213
231
  * @param xApiVersion
214
232
  * @returns Int32Envelope OK
215
233
  * @throws ApiError
216
234
  */
217
- public static getApiV2SocialServiceSocialProfilesFollowsCount(
235
+ public static countFollowsAsync(
218
236
  socialProfileId: string,
219
237
  xApiVersion?: string,
220
238
  ): CancelablePromise<Int32Envelope> {
@@ -234,12 +252,14 @@ export class SocialProfilesService {
234
252
  });
235
253
  }
236
254
  /**
255
+ * Get Follows
256
+ * Get a list of follows for a social profile.
237
257
  * @param socialProfileId
238
258
  * @param xApiVersion
239
259
  * @returns SocialProfileDtoListEnvelope OK
240
260
  * @throws ApiError
241
261
  */
242
- public static getApiV2SocialServiceSocialProfilesFollowsProfiles(
262
+ public static getFollowsAsync1(
243
263
  socialProfileId: string,
244
264
  xApiVersion?: string,
245
265
  ): CancelablePromise<SocialProfileDtoListEnvelope> {
@@ -259,12 +279,14 @@ export class SocialProfilesService {
259
279
  });
260
280
  }
261
281
  /**
282
+ * Count Follows
283
+ * Count follows for a social profile.
262
284
  * @param socialProfileId
263
285
  * @param xApiVersion
264
286
  * @returns Int32Envelope OK
265
287
  * @throws ApiError
266
288
  */
267
- public static getApiV2SocialServiceSocialProfilesFollowsProfilesCount(
289
+ public static countFollowsAsync1(
268
290
  socialProfileId: string,
269
291
  xApiVersion?: string,
270
292
  ): CancelablePromise<Int32Envelope> {
@@ -284,13 +306,15 @@ export class SocialProfilesService {
284
306
  });
285
307
  }
286
308
  /**
309
+ * Check if Follow Exists
310
+ * Check if a follow record exists between two social profiles.
287
311
  * @param socialProfileId
288
312
  * @param followedSocialProfileId
289
313
  * @param xApiVersion
290
314
  * @returns BooleanEnvelope OK
291
315
  * @throws ApiError
292
316
  */
293
- public static getApiV2SocialServiceSocialProfilesFollows1(
317
+ public static followExistsAsync(
294
318
  socialProfileId: string,
295
319
  followedSocialProfileId: string,
296
320
  xApiVersion?: string,
@@ -312,13 +336,15 @@ export class SocialProfilesService {
312
336
  });
313
337
  }
314
338
  /**
339
+ * Follow
340
+ * Follow a social profile.
315
341
  * @param socialProfileId
316
342
  * @param followedSocialProfileId
317
343
  * @param xApiVersion
318
344
  * @returns EmptyEnvelope OK
319
345
  * @throws ApiError
320
346
  */
321
- public static postApiV2SocialServiceSocialProfilesFollows(
347
+ public static followAsync(
322
348
  socialProfileId: string,
323
349
  followedSocialProfileId: string,
324
350
  xApiVersion?: string,
@@ -340,13 +366,15 @@ export class SocialProfilesService {
340
366
  });
341
367
  }
342
368
  /**
369
+ * Unfollow
370
+ * Unfollow a social profile.
343
371
  * @param socialProfileId
344
372
  * @param followedSocialProfileId
345
373
  * @param xApiVersion
346
374
  * @returns EmptyEnvelope OK
347
375
  * @throws ApiError
348
376
  */
349
- public static deleteApiV2SocialServiceSocialProfilesFollows(
377
+ public static unfollowAsync(
350
378
  socialProfileId: string,
351
379
  followedSocialProfileId: string,
352
380
  xApiVersion?: string,
@@ -368,12 +396,14 @@ export class SocialProfilesService {
368
396
  });
369
397
  }
370
398
  /**
399
+ * Get Notifications
400
+ * Get a list of notifications for a social profile.
371
401
  * @param socialProfileId
372
402
  * @param xApiVersion
373
403
  * @returns NotificationDtoListEnvelope OK
374
404
  * @throws ApiError
375
405
  */
376
- public static getApiV2SocialServiceSocialProfilesNotifications(
406
+ public static getNotificationsAsync(
377
407
  socialProfileId: string,
378
408
  xApiVersion?: string,
379
409
  ): CancelablePromise<NotificationDtoListEnvelope> {
@@ -393,12 +423,14 @@ export class SocialProfilesService {
393
423
  });
394
424
  }
395
425
  /**
426
+ * Count Notifications
427
+ * Count notifications for a social profile.
396
428
  * @param socialProfileId
397
429
  * @param xApiVersion
398
430
  * @returns Int32Envelope OK
399
431
  * @throws ApiError
400
432
  */
401
- public static getApiV2SocialServiceSocialProfilesNotificationsCount(
433
+ public static countNotificationsAsync(
402
434
  socialProfileId: string,
403
435
  xApiVersion?: string,
404
436
  ): CancelablePromise<Int32Envelope> {
@@ -418,12 +450,14 @@ export class SocialProfilesService {
418
450
  });
419
451
  }
420
452
  /**
453
+ * Get Conversations
454
+ * Get a list of conversations for a social profile.
421
455
  * @param socialProfileId
422
456
  * @param xApiVersion
423
457
  * @returns ConversationDtoListEnvelope OK
424
458
  * @throws ApiError
425
459
  */
426
- public static getApiV2SocialServiceSocialProfilesConversations(
460
+ public static getConversationsAsync(
427
461
  socialProfileId: string,
428
462
  xApiVersion?: string,
429
463
  ): CancelablePromise<ConversationDtoListEnvelope> {
@@ -443,13 +477,15 @@ export class SocialProfilesService {
443
477
  });
444
478
  }
445
479
  /**
480
+ * Create Conversation
481
+ * Create a new conversation.
446
482
  * @param socialProfileId
447
483
  * @param xApiVersion
448
484
  * @param requestBody
449
485
  * @returns EmptyEnvelope OK
450
486
  * @throws ApiError
451
487
  */
452
- public static postApiV2SocialServiceSocialProfilesConversations(
488
+ public static createConversationAsync(
453
489
  socialProfileId: string,
454
490
  xApiVersion?: string,
455
491
  requestBody?: ConversationCreateDto,
@@ -472,12 +508,14 @@ export class SocialProfilesService {
472
508
  });
473
509
  }
474
510
  /**
511
+ * Count Conversations
512
+ * Count conversations for a social profile.
475
513
  * @param socialProfileId
476
514
  * @param xApiVersion
477
515
  * @returns Int32Envelope OK
478
516
  * @throws ApiError
479
517
  */
480
- public static getApiV2SocialServiceSocialProfilesConversationsCount(
518
+ public static countConversationsAsync(
481
519
  socialProfileId: string,
482
520
  xApiVersion?: string,
483
521
  ): CancelablePromise<Int32Envelope> {
@@ -497,12 +535,14 @@ export class SocialProfilesService {
497
535
  });
498
536
  }
499
537
  /**
538
+ * Get Messages
539
+ * Get a list of messages for a conversation.
500
540
  * @param conversationId
501
541
  * @param xApiVersion
502
542
  * @returns PrivateMessageDtoListEnvelope OK
503
543
  * @throws ApiError
504
544
  */
505
- public static getApiV2SocialServiceSocialProfilesMessages(
545
+ public static getMessagesAsync(
506
546
  conversationId: string,
507
547
  xApiVersion?: string,
508
548
  ): CancelablePromise<PrivateMessageDtoListEnvelope> {
@@ -522,6 +562,8 @@ export class SocialProfilesService {
522
562
  });
523
563
  }
524
564
  /**
565
+ * Create Message
566
+ * Create a new message.
525
567
  * @param socialProfileId
526
568
  * @param conversationId
527
569
  * @param xApiVersion
@@ -529,7 +571,7 @@ export class SocialProfilesService {
529
571
  * @returns EmptyEnvelope OK
530
572
  * @throws ApiError
531
573
  */
532
- public static postApiV2SocialServiceSocialProfilesMessages(
574
+ public static createMessageAsync(
533
575
  socialProfileId: string,
534
576
  conversationId: string,
535
577
  xApiVersion?: string,
@@ -556,12 +598,14 @@ export class SocialProfilesService {
556
598
  });
557
599
  }
558
600
  /**
601
+ * Count Messages
602
+ * Count messages for a conversation.
559
603
  * @param conversationId
560
604
  * @param xApiVersion
561
605
  * @returns Int32Envelope OK
562
606
  * @throws ApiError
563
607
  */
564
- public static getApiV2SocialServiceSocialProfilesMessagesCount(
608
+ public static countMessagesAsync(
565
609
  conversationId: string,
566
610
  xApiVersion?: string,
567
611
  ): CancelablePromise<Int32Envelope> {
@@ -581,6 +625,8 @@ export class SocialProfilesService {
581
625
  });
582
626
  }
583
627
  /**
628
+ * Update Message
629
+ * Update a message.
584
630
  * @param socialProfileId
585
631
  * @param conversationId
586
632
  * @param messageId
@@ -589,7 +635,7 @@ export class SocialProfilesService {
589
635
  * @returns EmptyEnvelope OK
590
636
  * @throws ApiError
591
637
  */
592
- public static putApiV2SocialServiceSocialProfilesMessages(
638
+ public static updateMessageAsync(
593
639
  socialProfileId: string,
594
640
  conversationId: string,
595
641
  messageId: string,
@@ -618,6 +664,8 @@ export class SocialProfilesService {
618
664
  });
619
665
  }
620
666
  /**
667
+ * Delete Message
668
+ * Delete a message.
621
669
  * @param socialProfileId
622
670
  * @param conversationId
623
671
  * @param messageId
@@ -625,7 +673,7 @@ export class SocialProfilesService {
625
673
  * @returns EmptyEnvelope OK
626
674
  * @throws ApiError
627
675
  */
628
- public static deleteApiV2SocialServiceSocialProfilesMessages(
676
+ public static deleteMessageAsync(
629
677
  socialProfileId: string,
630
678
  conversationId: string,
631
679
  messageId: string,
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.OpenAPI = void 0;
4
4
  exports.OpenAPI = {
5
5
  BASE: '',
6
- VERSION: '2.0.0.0',
6
+ VERSION: '2.0.1.4089',
7
7
  WITH_CREDENTIALS: false,
8
8
  CREDENTIALS: 'include',
9
9
  TOKEN: undefined,
@@ -21,7 +21,7 @@ export type OpenAPIConfig = {
21
21
 
22
22
  export const OpenAPI: OpenAPIConfig = {
23
23
  BASE: '',
24
- VERSION: '2.0.0.0',
24
+ VERSION: '2.0.1.4089',
25
25
  WITH_CREDENTIALS: false,
26
26
  CREDENTIALS: 'include',
27
27
  TOKEN: undefined,
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.OpenAPI = void 0;
4
4
  exports.OpenAPI = {
5
5
  BASE: '',
6
- VERSION: '2.0.0.0',
6
+ VERSION: '2.0.1.4089',
7
7
  WITH_CREDENTIALS: false,
8
8
  CREDENTIALS: 'include',
9
9
  TOKEN: undefined,
@@ -21,7 +21,7 @@ export type OpenAPIConfig = {
21
21
 
22
22
  export const OpenAPI: OpenAPIConfig = {
23
23
  BASE: '',
24
- VERSION: '2.0.0.0',
24
+ VERSION: '2.0.1.4089',
25
25
  WITH_CREDENTIALS: false,
26
26
  CREDENTIALS: 'include',
27
27
  TOKEN: undefined,
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.OpenAPI = void 0;
4
4
  exports.OpenAPI = {
5
5
  BASE: '',
6
- VERSION: '2.0.0.0',
6
+ VERSION: '2.0.1.4089',
7
7
  WITH_CREDENTIALS: false,
8
8
  CREDENTIALS: 'include',
9
9
  TOKEN: undefined,
@@ -21,7 +21,7 @@ export type OpenAPIConfig = {
21
21
 
22
22
  export const OpenAPI: OpenAPIConfig = {
23
23
  BASE: '',
24
- VERSION: '2.0.0.0',
24
+ VERSION: '2.0.1.4089',
25
25
  WITH_CREDENTIALS: false,
26
26
  CREDENTIALS: 'include',
27
27
  TOKEN: undefined,
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UsersService = exports.TenantsService = exports.ModulesService = exports.MigrationsService = exports.LicensingService = exports.AntiforgeryService = exports.UserSettingsDto = exports.UserDto = exports.SocialProfileDto = exports.Module = exports.ExtendedUserDto = exports.AccountHolderCreateDto = exports.OpenAPI = exports.CancelError = exports.CancelablePromise = exports.ApiError = void 0;
3
+ exports.UsersService = exports.TenantsService = exports.ModulesService = exports.MigrationsService = exports.LicensingService = exports.LicensesService = exports.AntiforgeryService = exports.UserSettingsDto = exports.UserDto = exports.SocialProfileDto = exports.Module = exports.LicenseKeyRequest = exports.ExtendedUserDto = exports.AccountHolderCreateDto = exports.OpenAPI = exports.CancelError = exports.CancelablePromise = exports.ApiError = void 0;
4
4
  /* generated using openapi-typescript-codegen -- do no edit */
5
5
  /* istanbul ignore file */
6
6
  /* tslint:disable */
@@ -16,6 +16,8 @@ var AccountHolderCreateDto_1 = require("./models/AccountHolderCreateDto");
16
16
  Object.defineProperty(exports, "AccountHolderCreateDto", { enumerable: true, get: function () { return AccountHolderCreateDto_1.AccountHolderCreateDto; } });
17
17
  var ExtendedUserDto_1 = require("./models/ExtendedUserDto");
18
18
  Object.defineProperty(exports, "ExtendedUserDto", { enumerable: true, get: function () { return ExtendedUserDto_1.ExtendedUserDto; } });
19
+ var LicenseKeyRequest_1 = require("./models/LicenseKeyRequest");
20
+ Object.defineProperty(exports, "LicenseKeyRequest", { enumerable: true, get: function () { return LicenseKeyRequest_1.LicenseKeyRequest; } });
19
21
  var Module_1 = require("./models/Module");
20
22
  Object.defineProperty(exports, "Module", { enumerable: true, get: function () { return Module_1.Module; } });
21
23
  var SocialProfileDto_1 = require("./models/SocialProfileDto");
@@ -26,6 +28,8 @@ var UserSettingsDto_1 = require("./models/UserSettingsDto");
26
28
  Object.defineProperty(exports, "UserSettingsDto", { enumerable: true, get: function () { return UserSettingsDto_1.UserSettingsDto; } });
27
29
  var AntiforgeryService_1 = require("./services/AntiforgeryService");
28
30
  Object.defineProperty(exports, "AntiforgeryService", { enumerable: true, get: function () { return AntiforgeryService_1.AntiforgeryService; } });
31
+ var LicensesService_1 = require("./services/LicensesService");
32
+ Object.defineProperty(exports, "LicensesService", { enumerable: true, get: function () { return LicensesService_1.LicensesService; } });
29
33
  var LicensingService_1 = require("./services/LicensingService");
30
34
  Object.defineProperty(exports, "LicensingService", { enumerable: true, get: function () { return LicensingService_1.LicensingService; } });
31
35
  var MigrationsService_1 = require("./services/MigrationsService");
@@ -9,6 +9,7 @@ export type { OpenAPIConfig } from './core/OpenAPI';
9
9
 
10
10
  export { AccountHolderCreateDto } from './models/AccountHolderCreateDto';
11
11
  export type { AccountHolderUpdateDto } from './models/AccountHolderUpdateDto';
12
+ export type { AdditionalAttribute } from './models/AdditionalAttribute';
12
13
  export type { BooleanEnvelope } from './models/BooleanEnvelope';
13
14
  export type { CartDto } from './models/CartDto';
14
15
  export type { EmptyEnvelope } from './models/EmptyEnvelope';
@@ -25,10 +26,18 @@ export type { ISwaggerContact } from './models/ISwaggerContact';
25
26
  export type { ISwaggerEndpoint } from './models/ISwaggerEndpoint';
26
27
  export type { ISwaggerLicense } from './models/ISwaggerLicense';
27
28
  export type { ISwaggerSpec } from './models/ISwaggerSpec';
29
+ export type { LicenseAttributes } from './models/LicenseAttributes';
30
+ export type { LicenseAttributesListEnvelope } from './models/LicenseAttributesListEnvelope';
31
+ export type { LicenseFeature } from './models/LicenseFeature';
32
+ export type { LicenseKey } from './models/LicenseKey';
33
+ export { LicenseKeyRequest } from './models/LicenseKeyRequest';
34
+ export type { LicenseValidationError } from './models/LicenseValidationError';
35
+ export type { LicenseValidationErrorListEnvelope } from './models/LicenseValidationErrorListEnvelope';
28
36
  export type { LicenseValidationRequest } from './models/LicenseValidationRequest';
29
37
  export { Module } from './models/Module';
30
38
  export type { ModuleListEnvelope } from './models/ModuleListEnvelope';
31
39
  export { SocialProfileDto } from './models/SocialProfileDto';
40
+ export type { StringEnvelope } from './models/StringEnvelope';
32
41
  export type { StringListEnvelope } from './models/StringListEnvelope';
33
42
  export type { StudioModule } from './models/StudioModule';
34
43
  export type { StudioModuleListEnvelope } from './models/StudioModuleListEnvelope';
@@ -49,6 +58,7 @@ export { UserSettingsDto } from './models/UserSettingsDto';
49
58
  export type { WalletDto } from './models/WalletDto';
50
59
 
51
60
  export { AntiforgeryService } from './services/AntiforgeryService';
61
+ export { LicensesService } from './services/LicensesService';
52
62
  export { LicensingService } from './services/LicensingService';
53
63
  export { MigrationsService } from './services/MigrationsService';
54
64
  export { ModulesService } from './services/ModulesService';
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,9 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ export type AdditionalAttribute = {
6
+ key?: string | null;
7
+ value?: string | null;
8
+ };
9
+
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,5 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ export type LicenseAttributes = Record<string, any>;
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,14 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ import type { LicenseAttributes } from './LicenseAttributes';
6
+ export type LicenseAttributesListEnvelope = {
7
+ readonly isSuccess?: boolean;
8
+ errorMessage?: string | null;
9
+ correlationId?: string | null;
10
+ readonly timestamp?: string;
11
+ readonly activityId?: string | null;
12
+ result?: Array<LicenseAttributes> | null;
13
+ };
14
+
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,9 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ export type LicenseFeature = {
6
+ key?: string | null;
7
+ value?: string | null;
8
+ };
9
+
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,8 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ export type LicenseKey = {
6
+ key?: string | null;
7
+ };
8
+
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.LicenseKeyRequest = void 0;
4
+ var LicenseKeyRequest;
5
+ (function (LicenseKeyRequest) {
6
+ let licenseType;
7
+ (function (licenseType) {
8
+ licenseType[licenseType["_1"] = 1] = "_1";
9
+ licenseType[licenseType["_2"] = 2] = "_2";
10
+ licenseType[licenseType["_3"] = 3] = "_3";
11
+ })(licenseType = LicenseKeyRequest.licenseType || (LicenseKeyRequest.licenseType = {}));
12
+ })(LicenseKeyRequest = exports.LicenseKeyRequest || (exports.LicenseKeyRequest = {}));
@@ -0,0 +1,28 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ import type { AdditionalAttribute } from './AdditionalAttribute';
6
+ import type { LicenseFeature } from './LicenseFeature';
7
+ export type LicenseKeyRequest = {
8
+ userId?: string;
9
+ tenantId?: string | null;
10
+ orderId?: string | null;
11
+ paymentId?: string | null;
12
+ invoiceId?: string | null;
13
+ enrollmentId?: string | null;
14
+ entitlementId?: string | null;
15
+ seats?: number;
16
+ licenseType?: LicenseKeyRequest.licenseType;
17
+ expirationDate?: string;
18
+ features?: Array<LicenseFeature> | null;
19
+ additionalAttributes?: Array<AdditionalAttribute> | null;
20
+ };
21
+ export namespace LicenseKeyRequest {
22
+ export enum licenseType {
23
+ '_1' = 1,
24
+ '_2' = 2,
25
+ '_3' = 3,
26
+ }
27
+ }
28
+
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,9 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ export type LicenseValidationError = {
6
+ message?: string | null;
7
+ howToResolve?: string | null;
8
+ };
9
+
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,14 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ import type { LicenseValidationError } from './LicenseValidationError';
6
+ export type LicenseValidationErrorListEnvelope = {
7
+ readonly isSuccess?: boolean;
8
+ errorMessage?: string | null;
9
+ correlationId?: string | null;
10
+ readonly timestamp?: string;
11
+ readonly activityId?: string | null;
12
+ result?: Array<LicenseValidationError> | null;
13
+ };
14
+
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });