@easyedu/js-lsm-api 1.117.0 → 1.118.0
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/.openapi-generator/FILES +4 -0
- package/README.md +4 -2
- package/dist/apis/IntegrationApi.d.ts +2 -0
- package/dist/apis/IntegrationApi.js +3 -1
- package/dist/esm/apis/IntegrationApi.d.ts +2 -0
- package/dist/esm/apis/IntegrationApi.js +3 -1
- package/dist/esm/models/CustomWebhookIntegration.d.ts +2 -0
- package/dist/esm/models/CustomWebhookIntegration.js +3 -1
- package/dist/esm/models/IntegrationEvent.d.ts +2 -0
- package/dist/esm/models/IntegrationEvent.js +3 -1
- package/dist/esm/models/IntegrationEventData.d.ts +16 -2
- package/dist/esm/models/IntegrationEventData.js +10 -0
- package/dist/esm/models/IntegrationEventInvitation.d.ts +71 -0
- package/dist/esm/models/IntegrationEventInvitation.js +71 -0
- package/dist/esm/models/IntegrationEventUser.d.ts +50 -0
- package/dist/esm/models/IntegrationEventUser.js +55 -0
- package/dist/esm/models/PostCustomWebhookIntegration.d.ts +2 -0
- package/dist/esm/models/PostCustomWebhookIntegration.js +3 -1
- package/dist/esm/models/PostZapierSubscription.d.ts +2 -0
- package/dist/esm/models/PostZapierSubscription.js +3 -1
- package/dist/esm/models/PutCustomWebhookIntegration.d.ts +2 -0
- package/dist/esm/models/PutCustomWebhookIntegration.js +3 -1
- package/dist/esm/models/ZapierSubscription.d.ts +2 -0
- package/dist/esm/models/ZapierSubscription.js +3 -1
- package/dist/esm/models/index.d.ts +2 -0
- package/dist/esm/models/index.js +2 -0
- package/dist/models/CustomWebhookIntegration.d.ts +2 -0
- package/dist/models/CustomWebhookIntegration.js +3 -1
- package/dist/models/IntegrationEvent.d.ts +2 -0
- package/dist/models/IntegrationEvent.js +3 -1
- package/dist/models/IntegrationEventData.d.ts +16 -2
- package/dist/models/IntegrationEventData.js +10 -0
- package/dist/models/IntegrationEventInvitation.d.ts +71 -0
- package/dist/models/IntegrationEventInvitation.js +79 -0
- package/dist/models/IntegrationEventUser.d.ts +50 -0
- package/dist/models/IntegrationEventUser.js +62 -0
- package/dist/models/PostCustomWebhookIntegration.d.ts +2 -0
- package/dist/models/PostCustomWebhookIntegration.js +3 -1
- package/dist/models/PostZapierSubscription.d.ts +2 -0
- package/dist/models/PostZapierSubscription.js +3 -1
- package/dist/models/PutCustomWebhookIntegration.d.ts +2 -0
- package/dist/models/PutCustomWebhookIntegration.js +3 -1
- package/dist/models/ZapierSubscription.d.ts +2 -0
- package/dist/models/ZapierSubscription.js +3 -1
- package/dist/models/index.d.ts +2 -0
- package/dist/models/index.js +2 -0
- package/docs/IntegrationApi.md +2 -2
- package/docs/IntegrationEventData.md +4 -0
- package/docs/IntegrationEventInvitation.md +45 -0
- package/docs/IntegrationEventUser.md +41 -0
- package/package.json +1 -1
- package/src/apis/IntegrationApi.ts +3 -1
- package/src/models/CustomWebhookIntegration.ts +3 -1
- package/src/models/IntegrationEvent.ts +3 -1
- package/src/models/IntegrationEventData.ts +34 -2
- package/src/models/IntegrationEventInvitation.ts +130 -0
- package/src/models/IntegrationEventUser.ts +93 -0
- package/src/models/PostCustomWebhookIntegration.ts +3 -1
- package/src/models/PostZapierSubscription.ts +3 -1
- package/src/models/PutCustomWebhookIntegration.ts +3 -1
- package/src/models/ZapierSubscription.ts +3 -1
- package/src/models/index.ts +2 -0
package/.openapi-generator/FILES
CHANGED
|
@@ -186,8 +186,10 @@ docs/IntegrationEventCertificate.md
|
|
|
186
186
|
docs/IntegrationEventCourse.md
|
|
187
187
|
docs/IntegrationEventData.md
|
|
188
188
|
docs/IntegrationEventEnrollment.md
|
|
189
|
+
docs/IntegrationEventInvitation.md
|
|
189
190
|
docs/IntegrationEventLearner.md
|
|
190
191
|
docs/IntegrationEventPortal.md
|
|
192
|
+
docs/IntegrationEventUser.md
|
|
191
193
|
docs/LearnerExperienceApi.md
|
|
192
194
|
docs/LearnerExperienceVersion.md
|
|
193
195
|
docs/LibraryQuizCriteriaPreviewQuestion.md
|
|
@@ -566,8 +568,10 @@ src/models/IntegrationEventCertificate.ts
|
|
|
566
568
|
src/models/IntegrationEventCourse.ts
|
|
567
569
|
src/models/IntegrationEventData.ts
|
|
568
570
|
src/models/IntegrationEventEnrollment.ts
|
|
571
|
+
src/models/IntegrationEventInvitation.ts
|
|
569
572
|
src/models/IntegrationEventLearner.ts
|
|
570
573
|
src/models/IntegrationEventPortal.ts
|
|
574
|
+
src/models/IntegrationEventUser.ts
|
|
571
575
|
src/models/LearnerExperienceVersion.ts
|
|
572
576
|
src/models/LibraryQuizCriteriaPreviewQuestion.ts
|
|
573
577
|
src/models/LibraryQuizCriterion.ts
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @easyedu/js-lsm-api@1.
|
|
1
|
+
# @easyedu/js-lsm-api@1.118.0
|
|
2
2
|
|
|
3
3
|
A TypeScript SDK client for the sbzw93t49b.execute-api.us-east-2.amazonaws.com API.
|
|
4
4
|
|
|
@@ -572,8 +572,10 @@ All URIs are relative to *https://sbzw93t49b.execute-api.us-east-2.amazonaws.com
|
|
|
572
572
|
- [IntegrationEventCourse](docs/IntegrationEventCourse.md)
|
|
573
573
|
- [IntegrationEventData](docs/IntegrationEventData.md)
|
|
574
574
|
- [IntegrationEventEnrollment](docs/IntegrationEventEnrollment.md)
|
|
575
|
+
- [IntegrationEventInvitation](docs/IntegrationEventInvitation.md)
|
|
575
576
|
- [IntegrationEventLearner](docs/IntegrationEventLearner.md)
|
|
576
577
|
- [IntegrationEventPortal](docs/IntegrationEventPortal.md)
|
|
578
|
+
- [IntegrationEventUser](docs/IntegrationEventUser.md)
|
|
577
579
|
- [LearnerExperienceVersion](docs/LearnerExperienceVersion.md)
|
|
578
580
|
- [LibraryQuizCriteriaPreviewQuestion](docs/LibraryQuizCriteriaPreviewQuestion.md)
|
|
579
581
|
- [LibraryQuizCriterion](docs/LibraryQuizCriterion.md)
|
|
@@ -752,7 +754,7 @@ and is automatically generated by the
|
|
|
752
754
|
[OpenAPI Generator](https://openapi-generator.tech) project:
|
|
753
755
|
|
|
754
756
|
- API version: `1.0.0`
|
|
755
|
-
- Package version: `1.
|
|
757
|
+
- Package version: `1.118.0`
|
|
756
758
|
- Generator version: `7.22.0`
|
|
757
759
|
- Build package: `org.openapitools.codegen.languages.TypeScriptFetchClientCodegen`
|
|
758
760
|
|
|
@@ -350,5 +350,7 @@ export declare const GetZapierEventsEventTypeEnum: {
|
|
|
350
350
|
readonly ComEdaxuEnrollmentEnrolledV1: "com.edaxu.enrollment.enrolled.v1";
|
|
351
351
|
readonly ComEdaxuEnrollmentCompletedV1: "com.edaxu.enrollment.completed.v1";
|
|
352
352
|
readonly ComEdaxuCertificateIssuedV1: "com.edaxu.certificate.issued.v1";
|
|
353
|
+
readonly ComEdaxuPortalUserInvitedV1: "com.edaxu.portal.user_invited.v1";
|
|
354
|
+
readonly ComEdaxuPortalUserJoinedV1: "com.edaxu.portal.user_joined.v1";
|
|
353
355
|
};
|
|
354
356
|
export type GetZapierEventsEventTypeEnum = typeof GetZapierEventsEventTypeEnum[keyof typeof GetZapierEventsEventTypeEnum];
|
|
@@ -945,5 +945,7 @@ exports.IntegrationApi = IntegrationApi;
|
|
|
945
945
|
exports.GetZapierEventsEventTypeEnum = {
|
|
946
946
|
ComEdaxuEnrollmentEnrolledV1: 'com.edaxu.enrollment.enrolled.v1',
|
|
947
947
|
ComEdaxuEnrollmentCompletedV1: 'com.edaxu.enrollment.completed.v1',
|
|
948
|
-
ComEdaxuCertificateIssuedV1: 'com.edaxu.certificate.issued.v1'
|
|
948
|
+
ComEdaxuCertificateIssuedV1: 'com.edaxu.certificate.issued.v1',
|
|
949
|
+
ComEdaxuPortalUserInvitedV1: 'com.edaxu.portal.user_invited.v1',
|
|
950
|
+
ComEdaxuPortalUserJoinedV1: 'com.edaxu.portal.user_joined.v1'
|
|
949
951
|
};
|
|
@@ -350,5 +350,7 @@ export declare const GetZapierEventsEventTypeEnum: {
|
|
|
350
350
|
readonly ComEdaxuEnrollmentEnrolledV1: "com.edaxu.enrollment.enrolled.v1";
|
|
351
351
|
readonly ComEdaxuEnrollmentCompletedV1: "com.edaxu.enrollment.completed.v1";
|
|
352
352
|
readonly ComEdaxuCertificateIssuedV1: "com.edaxu.certificate.issued.v1";
|
|
353
|
+
readonly ComEdaxuPortalUserInvitedV1: "com.edaxu.portal.user_invited.v1";
|
|
354
|
+
readonly ComEdaxuPortalUserJoinedV1: "com.edaxu.portal.user_joined.v1";
|
|
353
355
|
};
|
|
354
356
|
export type GetZapierEventsEventTypeEnum = typeof GetZapierEventsEventTypeEnum[keyof typeof GetZapierEventsEventTypeEnum];
|
|
@@ -941,5 +941,7 @@ export class IntegrationApi extends runtime.BaseAPI {
|
|
|
941
941
|
export const GetZapierEventsEventTypeEnum = {
|
|
942
942
|
ComEdaxuEnrollmentEnrolledV1: 'com.edaxu.enrollment.enrolled.v1',
|
|
943
943
|
ComEdaxuEnrollmentCompletedV1: 'com.edaxu.enrollment.completed.v1',
|
|
944
|
-
ComEdaxuCertificateIssuedV1: 'com.edaxu.certificate.issued.v1'
|
|
944
|
+
ComEdaxuCertificateIssuedV1: 'com.edaxu.certificate.issued.v1',
|
|
945
|
+
ComEdaxuPortalUserInvitedV1: 'com.edaxu.portal.user_invited.v1',
|
|
946
|
+
ComEdaxuPortalUserJoinedV1: 'com.edaxu.portal.user_joined.v1'
|
|
945
947
|
};
|
|
@@ -71,6 +71,8 @@ export declare const CustomWebhookIntegrationEventTypesEnum: {
|
|
|
71
71
|
readonly ComEdaxuEnrollmentEnrolledV1: "com.edaxu.enrollment.enrolled.v1";
|
|
72
72
|
readonly ComEdaxuEnrollmentCompletedV1: "com.edaxu.enrollment.completed.v1";
|
|
73
73
|
readonly ComEdaxuCertificateIssuedV1: "com.edaxu.certificate.issued.v1";
|
|
74
|
+
readonly ComEdaxuPortalUserInvitedV1: "com.edaxu.portal.user_invited.v1";
|
|
75
|
+
readonly ComEdaxuPortalUserJoinedV1: "com.edaxu.portal.user_joined.v1";
|
|
74
76
|
};
|
|
75
77
|
export type CustomWebhookIntegrationEventTypesEnum = typeof CustomWebhookIntegrationEventTypesEnum[keyof typeof CustomWebhookIntegrationEventTypesEnum];
|
|
76
78
|
/**
|
|
@@ -17,7 +17,9 @@
|
|
|
17
17
|
export const CustomWebhookIntegrationEventTypesEnum = {
|
|
18
18
|
ComEdaxuEnrollmentEnrolledV1: 'com.edaxu.enrollment.enrolled.v1',
|
|
19
19
|
ComEdaxuEnrollmentCompletedV1: 'com.edaxu.enrollment.completed.v1',
|
|
20
|
-
ComEdaxuCertificateIssuedV1: 'com.edaxu.certificate.issued.v1'
|
|
20
|
+
ComEdaxuCertificateIssuedV1: 'com.edaxu.certificate.issued.v1',
|
|
21
|
+
ComEdaxuPortalUserInvitedV1: 'com.edaxu.portal.user_invited.v1',
|
|
22
|
+
ComEdaxuPortalUserJoinedV1: 'com.edaxu.portal.user_joined.v1'
|
|
21
23
|
};
|
|
22
24
|
/**
|
|
23
25
|
* Check if a given object implements the CustomWebhookIntegration interface.
|
|
@@ -79,6 +79,8 @@ export declare const IntegrationEventTypeEnum: {
|
|
|
79
79
|
readonly ComEdaxuEnrollmentEnrolledV1: "com.edaxu.enrollment.enrolled.v1";
|
|
80
80
|
readonly ComEdaxuEnrollmentCompletedV1: "com.edaxu.enrollment.completed.v1";
|
|
81
81
|
readonly ComEdaxuCertificateIssuedV1: "com.edaxu.certificate.issued.v1";
|
|
82
|
+
readonly ComEdaxuPortalUserInvitedV1: "com.edaxu.portal.user_invited.v1";
|
|
83
|
+
readonly ComEdaxuPortalUserJoinedV1: "com.edaxu.portal.user_joined.v1";
|
|
82
84
|
};
|
|
83
85
|
export type IntegrationEventTypeEnum = typeof IntegrationEventTypeEnum[keyof typeof IntegrationEventTypeEnum];
|
|
84
86
|
/**
|
|
@@ -24,7 +24,9 @@ export const IntegrationEventSpecversionEnum = {
|
|
|
24
24
|
export const IntegrationEventTypeEnum = {
|
|
25
25
|
ComEdaxuEnrollmentEnrolledV1: 'com.edaxu.enrollment.enrolled.v1',
|
|
26
26
|
ComEdaxuEnrollmentCompletedV1: 'com.edaxu.enrollment.completed.v1',
|
|
27
|
-
ComEdaxuCertificateIssuedV1: 'com.edaxu.certificate.issued.v1'
|
|
27
|
+
ComEdaxuCertificateIssuedV1: 'com.edaxu.certificate.issued.v1',
|
|
28
|
+
ComEdaxuPortalUserInvitedV1: 'com.edaxu.portal.user_invited.v1',
|
|
29
|
+
ComEdaxuPortalUserJoinedV1: 'com.edaxu.portal.user_joined.v1'
|
|
28
30
|
};
|
|
29
31
|
/**
|
|
30
32
|
* @export
|
|
@@ -9,11 +9,13 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import type { IntegrationEventUser } from './IntegrationEventUser';
|
|
12
13
|
import type { IntegrationEventLearner } from './IntegrationEventLearner';
|
|
13
14
|
import type { IntegrationEventCertificate } from './IntegrationEventCertificate';
|
|
14
15
|
import type { IntegrationEventEnrollment } from './IntegrationEventEnrollment';
|
|
15
16
|
import type { IntegrationEventPortal } from './IntegrationEventPortal';
|
|
16
17
|
import type { IntegrationEventCourse } from './IntegrationEventCourse';
|
|
18
|
+
import type { IntegrationEventInvitation } from './IntegrationEventInvitation';
|
|
17
19
|
/**
|
|
18
20
|
*
|
|
19
21
|
* @export
|
|
@@ -31,13 +33,19 @@ export interface IntegrationEventData {
|
|
|
31
33
|
* @type {IntegrationEventLearner}
|
|
32
34
|
* @memberof IntegrationEventData
|
|
33
35
|
*/
|
|
34
|
-
learner: IntegrationEventLearner;
|
|
36
|
+
learner: IntegrationEventLearner | null;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {IntegrationEventUser}
|
|
40
|
+
* @memberof IntegrationEventData
|
|
41
|
+
*/
|
|
42
|
+
user: IntegrationEventUser | null;
|
|
35
43
|
/**
|
|
36
44
|
*
|
|
37
45
|
* @type {IntegrationEventCourse}
|
|
38
46
|
* @memberof IntegrationEventData
|
|
39
47
|
*/
|
|
40
|
-
course: IntegrationEventCourse;
|
|
48
|
+
course: IntegrationEventCourse | null;
|
|
41
49
|
/**
|
|
42
50
|
*
|
|
43
51
|
* @type {IntegrationEventEnrollment}
|
|
@@ -50,6 +58,12 @@ export interface IntegrationEventData {
|
|
|
50
58
|
* @memberof IntegrationEventData
|
|
51
59
|
*/
|
|
52
60
|
certificate: IntegrationEventCertificate | null;
|
|
61
|
+
/**
|
|
62
|
+
*
|
|
63
|
+
* @type {IntegrationEventInvitation}
|
|
64
|
+
* @memberof IntegrationEventData
|
|
65
|
+
*/
|
|
66
|
+
invitation: IntegrationEventInvitation | null;
|
|
53
67
|
}
|
|
54
68
|
/**
|
|
55
69
|
* Check if a given object implements the IntegrationEventData interface.
|
|
@@ -11,11 +11,13 @@
|
|
|
11
11
|
* https://openapi-generator.tech
|
|
12
12
|
* Do not edit the class manually.
|
|
13
13
|
*/
|
|
14
|
+
import { IntegrationEventUserFromJSON, IntegrationEventUserToJSON, } from './IntegrationEventUser';
|
|
14
15
|
import { IntegrationEventLearnerFromJSON, IntegrationEventLearnerToJSON, } from './IntegrationEventLearner';
|
|
15
16
|
import { IntegrationEventCertificateFromJSON, IntegrationEventCertificateToJSON, } from './IntegrationEventCertificate';
|
|
16
17
|
import { IntegrationEventEnrollmentFromJSON, IntegrationEventEnrollmentToJSON, } from './IntegrationEventEnrollment';
|
|
17
18
|
import { IntegrationEventPortalFromJSON, IntegrationEventPortalToJSON, } from './IntegrationEventPortal';
|
|
18
19
|
import { IntegrationEventCourseFromJSON, IntegrationEventCourseToJSON, } from './IntegrationEventCourse';
|
|
20
|
+
import { IntegrationEventInvitationFromJSON, IntegrationEventInvitationToJSON, } from './IntegrationEventInvitation';
|
|
19
21
|
/**
|
|
20
22
|
* Check if a given object implements the IntegrationEventData interface.
|
|
21
23
|
*/
|
|
@@ -24,12 +26,16 @@ export function instanceOfIntegrationEventData(value) {
|
|
|
24
26
|
return false;
|
|
25
27
|
if (!('learner' in value) || value['learner'] === undefined)
|
|
26
28
|
return false;
|
|
29
|
+
if (!('user' in value) || value['user'] === undefined)
|
|
30
|
+
return false;
|
|
27
31
|
if (!('course' in value) || value['course'] === undefined)
|
|
28
32
|
return false;
|
|
29
33
|
if (!('enrollment' in value) || value['enrollment'] === undefined)
|
|
30
34
|
return false;
|
|
31
35
|
if (!('certificate' in value) || value['certificate'] === undefined)
|
|
32
36
|
return false;
|
|
37
|
+
if (!('invitation' in value) || value['invitation'] === undefined)
|
|
38
|
+
return false;
|
|
33
39
|
return true;
|
|
34
40
|
}
|
|
35
41
|
export function IntegrationEventDataFromJSON(json) {
|
|
@@ -42,9 +48,11 @@ export function IntegrationEventDataFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
42
48
|
return {
|
|
43
49
|
'portal': IntegrationEventPortalFromJSON(json['portal']),
|
|
44
50
|
'learner': IntegrationEventLearnerFromJSON(json['learner']),
|
|
51
|
+
'user': IntegrationEventUserFromJSON(json['user']),
|
|
45
52
|
'course': IntegrationEventCourseFromJSON(json['course']),
|
|
46
53
|
'enrollment': IntegrationEventEnrollmentFromJSON(json['enrollment']),
|
|
47
54
|
'certificate': IntegrationEventCertificateFromJSON(json['certificate']),
|
|
55
|
+
'invitation': IntegrationEventInvitationFromJSON(json['invitation']),
|
|
48
56
|
};
|
|
49
57
|
}
|
|
50
58
|
export function IntegrationEventDataToJSON(json) {
|
|
@@ -57,8 +65,10 @@ export function IntegrationEventDataToJSONTyped(value, ignoreDiscriminator = fal
|
|
|
57
65
|
return {
|
|
58
66
|
'portal': IntegrationEventPortalToJSON(value['portal']),
|
|
59
67
|
'learner': IntegrationEventLearnerToJSON(value['learner']),
|
|
68
|
+
'user': IntegrationEventUserToJSON(value['user']),
|
|
60
69
|
'course': IntegrationEventCourseToJSON(value['course']),
|
|
61
70
|
'enrollment': IntegrationEventEnrollmentToJSON(value['enrollment']),
|
|
62
71
|
'certificate': IntegrationEventCertificateToJSON(value['certificate']),
|
|
72
|
+
'invitation': IntegrationEventInvitationToJSON(value['invitation']),
|
|
63
73
|
};
|
|
64
74
|
}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* LMS API
|
|
3
|
+
* LMS API
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { IntegrationEventUser } from './IntegrationEventUser';
|
|
13
|
+
/**
|
|
14
|
+
* Portal invitation lifecycle details for the affected user.
|
|
15
|
+
* @export
|
|
16
|
+
* @interface IntegrationEventInvitation
|
|
17
|
+
*/
|
|
18
|
+
export interface IntegrationEventInvitation {
|
|
19
|
+
/**
|
|
20
|
+
* Stable invitation ID.
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof IntegrationEventInvitation
|
|
23
|
+
*/
|
|
24
|
+
id: string;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {IntegrationEventInvitationStatusEnum}
|
|
28
|
+
* @memberof IntegrationEventInvitation
|
|
29
|
+
*/
|
|
30
|
+
status: IntegrationEventInvitationStatusEnum;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {Date}
|
|
34
|
+
* @memberof IntegrationEventInvitation
|
|
35
|
+
*/
|
|
36
|
+
invitedAt: Date;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {Date}
|
|
40
|
+
* @memberof IntegrationEventInvitation
|
|
41
|
+
*/
|
|
42
|
+
expiresAt: Date;
|
|
43
|
+
/**
|
|
44
|
+
*
|
|
45
|
+
* @type {Date}
|
|
46
|
+
* @memberof IntegrationEventInvitation
|
|
47
|
+
*/
|
|
48
|
+
acceptedAt: Date | null;
|
|
49
|
+
/**
|
|
50
|
+
*
|
|
51
|
+
* @type {IntegrationEventUser}
|
|
52
|
+
* @memberof IntegrationEventInvitation
|
|
53
|
+
*/
|
|
54
|
+
invitedBy: IntegrationEventUser | null;
|
|
55
|
+
}
|
|
56
|
+
/**
|
|
57
|
+
* @export
|
|
58
|
+
*/
|
|
59
|
+
export declare const IntegrationEventInvitationStatusEnum: {
|
|
60
|
+
readonly Pending: "pending";
|
|
61
|
+
readonly Accepted: "accepted";
|
|
62
|
+
};
|
|
63
|
+
export type IntegrationEventInvitationStatusEnum = typeof IntegrationEventInvitationStatusEnum[keyof typeof IntegrationEventInvitationStatusEnum];
|
|
64
|
+
/**
|
|
65
|
+
* Check if a given object implements the IntegrationEventInvitation interface.
|
|
66
|
+
*/
|
|
67
|
+
export declare function instanceOfIntegrationEventInvitation(value: object): value is IntegrationEventInvitation;
|
|
68
|
+
export declare function IntegrationEventInvitationFromJSON(json: any): IntegrationEventInvitation;
|
|
69
|
+
export declare function IntegrationEventInvitationFromJSONTyped(json: any, ignoreDiscriminator: boolean): IntegrationEventInvitation;
|
|
70
|
+
export declare function IntegrationEventInvitationToJSON(json: any): IntegrationEventInvitation;
|
|
71
|
+
export declare function IntegrationEventInvitationToJSONTyped(value?: IntegrationEventInvitation | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* LMS API
|
|
5
|
+
* LMS API
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
import { IntegrationEventUserFromJSON, IntegrationEventUserToJSON, } from './IntegrationEventUser';
|
|
15
|
+
/**
|
|
16
|
+
* @export
|
|
17
|
+
*/
|
|
18
|
+
export const IntegrationEventInvitationStatusEnum = {
|
|
19
|
+
Pending: 'pending',
|
|
20
|
+
Accepted: 'accepted'
|
|
21
|
+
};
|
|
22
|
+
/**
|
|
23
|
+
* Check if a given object implements the IntegrationEventInvitation interface.
|
|
24
|
+
*/
|
|
25
|
+
export function instanceOfIntegrationEventInvitation(value) {
|
|
26
|
+
if (!('id' in value) || value['id'] === undefined)
|
|
27
|
+
return false;
|
|
28
|
+
if (!('status' in value) || value['status'] === undefined)
|
|
29
|
+
return false;
|
|
30
|
+
if (!('invitedAt' in value) || value['invitedAt'] === undefined)
|
|
31
|
+
return false;
|
|
32
|
+
if (!('expiresAt' in value) || value['expiresAt'] === undefined)
|
|
33
|
+
return false;
|
|
34
|
+
if (!('acceptedAt' in value) || value['acceptedAt'] === undefined)
|
|
35
|
+
return false;
|
|
36
|
+
if (!('invitedBy' in value) || value['invitedBy'] === undefined)
|
|
37
|
+
return false;
|
|
38
|
+
return true;
|
|
39
|
+
}
|
|
40
|
+
export function IntegrationEventInvitationFromJSON(json) {
|
|
41
|
+
return IntegrationEventInvitationFromJSONTyped(json, false);
|
|
42
|
+
}
|
|
43
|
+
export function IntegrationEventInvitationFromJSONTyped(json, ignoreDiscriminator) {
|
|
44
|
+
if (json == null) {
|
|
45
|
+
return json;
|
|
46
|
+
}
|
|
47
|
+
return {
|
|
48
|
+
'id': json['id'],
|
|
49
|
+
'status': json['status'],
|
|
50
|
+
'invitedAt': (new Date(json['invited_at'])),
|
|
51
|
+
'expiresAt': (new Date(json['expires_at'])),
|
|
52
|
+
'acceptedAt': (json['accepted_at'] == null ? null : new Date(json['accepted_at'])),
|
|
53
|
+
'invitedBy': IntegrationEventUserFromJSON(json['invited_by']),
|
|
54
|
+
};
|
|
55
|
+
}
|
|
56
|
+
export function IntegrationEventInvitationToJSON(json) {
|
|
57
|
+
return IntegrationEventInvitationToJSONTyped(json, false);
|
|
58
|
+
}
|
|
59
|
+
export function IntegrationEventInvitationToJSONTyped(value, ignoreDiscriminator = false) {
|
|
60
|
+
if (value == null) {
|
|
61
|
+
return value;
|
|
62
|
+
}
|
|
63
|
+
return {
|
|
64
|
+
'id': value['id'],
|
|
65
|
+
'status': value['status'],
|
|
66
|
+
'invited_at': value['invitedAt'].toISOString(),
|
|
67
|
+
'expires_at': value['expiresAt'].toISOString(),
|
|
68
|
+
'accepted_at': value['acceptedAt'] == null ? value['acceptedAt'] : value['acceptedAt'].toISOString(),
|
|
69
|
+
'invited_by': IntegrationEventUserToJSON(value['invitedBy']),
|
|
70
|
+
};
|
|
71
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* LMS API
|
|
3
|
+
* LMS API
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
* User affected by a portal membership lifecycle event.
|
|
14
|
+
* @export
|
|
15
|
+
* @interface IntegrationEventUser
|
|
16
|
+
*/
|
|
17
|
+
export interface IntegrationEventUser {
|
|
18
|
+
/**
|
|
19
|
+
* Stable external user ID.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof IntegrationEventUser
|
|
22
|
+
*/
|
|
23
|
+
id: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof IntegrationEventUser
|
|
28
|
+
*/
|
|
29
|
+
email: string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof IntegrationEventUser
|
|
34
|
+
*/
|
|
35
|
+
firstName: string;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof IntegrationEventUser
|
|
40
|
+
*/
|
|
41
|
+
lastName: string;
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* Check if a given object implements the IntegrationEventUser interface.
|
|
45
|
+
*/
|
|
46
|
+
export declare function instanceOfIntegrationEventUser(value: object): value is IntegrationEventUser;
|
|
47
|
+
export declare function IntegrationEventUserFromJSON(json: any): IntegrationEventUser;
|
|
48
|
+
export declare function IntegrationEventUserFromJSONTyped(json: any, ignoreDiscriminator: boolean): IntegrationEventUser;
|
|
49
|
+
export declare function IntegrationEventUserToJSON(json: any): IntegrationEventUser;
|
|
50
|
+
export declare function IntegrationEventUserToJSONTyped(value?: IntegrationEventUser | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* LMS API
|
|
5
|
+
* LMS API
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
/**
|
|
15
|
+
* Check if a given object implements the IntegrationEventUser interface.
|
|
16
|
+
*/
|
|
17
|
+
export function instanceOfIntegrationEventUser(value) {
|
|
18
|
+
if (!('id' in value) || value['id'] === undefined)
|
|
19
|
+
return false;
|
|
20
|
+
if (!('email' in value) || value['email'] === undefined)
|
|
21
|
+
return false;
|
|
22
|
+
if (!('firstName' in value) || value['firstName'] === undefined)
|
|
23
|
+
return false;
|
|
24
|
+
if (!('lastName' in value) || value['lastName'] === undefined)
|
|
25
|
+
return false;
|
|
26
|
+
return true;
|
|
27
|
+
}
|
|
28
|
+
export function IntegrationEventUserFromJSON(json) {
|
|
29
|
+
return IntegrationEventUserFromJSONTyped(json, false);
|
|
30
|
+
}
|
|
31
|
+
export function IntegrationEventUserFromJSONTyped(json, ignoreDiscriminator) {
|
|
32
|
+
if (json == null) {
|
|
33
|
+
return json;
|
|
34
|
+
}
|
|
35
|
+
return {
|
|
36
|
+
'id': json['id'],
|
|
37
|
+
'email': json['email'],
|
|
38
|
+
'firstName': json['first_name'],
|
|
39
|
+
'lastName': json['last_name'],
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
export function IntegrationEventUserToJSON(json) {
|
|
43
|
+
return IntegrationEventUserToJSONTyped(json, false);
|
|
44
|
+
}
|
|
45
|
+
export function IntegrationEventUserToJSONTyped(value, ignoreDiscriminator = false) {
|
|
46
|
+
if (value == null) {
|
|
47
|
+
return value;
|
|
48
|
+
}
|
|
49
|
+
return {
|
|
50
|
+
'id': value['id'],
|
|
51
|
+
'email': value['email'],
|
|
52
|
+
'first_name': value['firstName'],
|
|
53
|
+
'last_name': value['lastName'],
|
|
54
|
+
};
|
|
55
|
+
}
|
|
@@ -53,6 +53,8 @@ export declare const PostCustomWebhookIntegrationEventTypesEnum: {
|
|
|
53
53
|
readonly ComEdaxuEnrollmentEnrolledV1: "com.edaxu.enrollment.enrolled.v1";
|
|
54
54
|
readonly ComEdaxuEnrollmentCompletedV1: "com.edaxu.enrollment.completed.v1";
|
|
55
55
|
readonly ComEdaxuCertificateIssuedV1: "com.edaxu.certificate.issued.v1";
|
|
56
|
+
readonly ComEdaxuPortalUserInvitedV1: "com.edaxu.portal.user_invited.v1";
|
|
57
|
+
readonly ComEdaxuPortalUserJoinedV1: "com.edaxu.portal.user_joined.v1";
|
|
56
58
|
};
|
|
57
59
|
export type PostCustomWebhookIntegrationEventTypesEnum = typeof PostCustomWebhookIntegrationEventTypesEnum[keyof typeof PostCustomWebhookIntegrationEventTypesEnum];
|
|
58
60
|
/**
|
|
@@ -17,7 +17,9 @@
|
|
|
17
17
|
export const PostCustomWebhookIntegrationEventTypesEnum = {
|
|
18
18
|
ComEdaxuEnrollmentEnrolledV1: 'com.edaxu.enrollment.enrolled.v1',
|
|
19
19
|
ComEdaxuEnrollmentCompletedV1: 'com.edaxu.enrollment.completed.v1',
|
|
20
|
-
ComEdaxuCertificateIssuedV1: 'com.edaxu.certificate.issued.v1'
|
|
20
|
+
ComEdaxuCertificateIssuedV1: 'com.edaxu.certificate.issued.v1',
|
|
21
|
+
ComEdaxuPortalUserInvitedV1: 'com.edaxu.portal.user_invited.v1',
|
|
22
|
+
ComEdaxuPortalUserJoinedV1: 'com.edaxu.portal.user_joined.v1'
|
|
21
23
|
};
|
|
22
24
|
/**
|
|
23
25
|
* Check if a given object implements the PostCustomWebhookIntegration interface.
|
|
@@ -41,6 +41,8 @@ export declare const PostZapierSubscriptionEventTypeEnum: {
|
|
|
41
41
|
readonly ComEdaxuEnrollmentEnrolledV1: "com.edaxu.enrollment.enrolled.v1";
|
|
42
42
|
readonly ComEdaxuEnrollmentCompletedV1: "com.edaxu.enrollment.completed.v1";
|
|
43
43
|
readonly ComEdaxuCertificateIssuedV1: "com.edaxu.certificate.issued.v1";
|
|
44
|
+
readonly ComEdaxuPortalUserInvitedV1: "com.edaxu.portal.user_invited.v1";
|
|
45
|
+
readonly ComEdaxuPortalUserJoinedV1: "com.edaxu.portal.user_joined.v1";
|
|
44
46
|
};
|
|
45
47
|
export type PostZapierSubscriptionEventTypeEnum = typeof PostZapierSubscriptionEventTypeEnum[keyof typeof PostZapierSubscriptionEventTypeEnum];
|
|
46
48
|
/**
|
|
@@ -17,7 +17,9 @@
|
|
|
17
17
|
export const PostZapierSubscriptionEventTypeEnum = {
|
|
18
18
|
ComEdaxuEnrollmentEnrolledV1: 'com.edaxu.enrollment.enrolled.v1',
|
|
19
19
|
ComEdaxuEnrollmentCompletedV1: 'com.edaxu.enrollment.completed.v1',
|
|
20
|
-
ComEdaxuCertificateIssuedV1: 'com.edaxu.certificate.issued.v1'
|
|
20
|
+
ComEdaxuCertificateIssuedV1: 'com.edaxu.certificate.issued.v1',
|
|
21
|
+
ComEdaxuPortalUserInvitedV1: 'com.edaxu.portal.user_invited.v1',
|
|
22
|
+
ComEdaxuPortalUserJoinedV1: 'com.edaxu.portal.user_joined.v1'
|
|
21
23
|
};
|
|
22
24
|
/**
|
|
23
25
|
* Check if a given object implements the PostZapierSubscription interface.
|
|
@@ -53,6 +53,8 @@ export declare const PutCustomWebhookIntegrationEventTypesEnum: {
|
|
|
53
53
|
readonly ComEdaxuEnrollmentEnrolledV1: "com.edaxu.enrollment.enrolled.v1";
|
|
54
54
|
readonly ComEdaxuEnrollmentCompletedV1: "com.edaxu.enrollment.completed.v1";
|
|
55
55
|
readonly ComEdaxuCertificateIssuedV1: "com.edaxu.certificate.issued.v1";
|
|
56
|
+
readonly ComEdaxuPortalUserInvitedV1: "com.edaxu.portal.user_invited.v1";
|
|
57
|
+
readonly ComEdaxuPortalUserJoinedV1: "com.edaxu.portal.user_joined.v1";
|
|
56
58
|
};
|
|
57
59
|
export type PutCustomWebhookIntegrationEventTypesEnum = typeof PutCustomWebhookIntegrationEventTypesEnum[keyof typeof PutCustomWebhookIntegrationEventTypesEnum];
|
|
58
60
|
/**
|
|
@@ -17,7 +17,9 @@
|
|
|
17
17
|
export const PutCustomWebhookIntegrationEventTypesEnum = {
|
|
18
18
|
ComEdaxuEnrollmentEnrolledV1: 'com.edaxu.enrollment.enrolled.v1',
|
|
19
19
|
ComEdaxuEnrollmentCompletedV1: 'com.edaxu.enrollment.completed.v1',
|
|
20
|
-
ComEdaxuCertificateIssuedV1: 'com.edaxu.certificate.issued.v1'
|
|
20
|
+
ComEdaxuCertificateIssuedV1: 'com.edaxu.certificate.issued.v1',
|
|
21
|
+
ComEdaxuPortalUserInvitedV1: 'com.edaxu.portal.user_invited.v1',
|
|
22
|
+
ComEdaxuPortalUserJoinedV1: 'com.edaxu.portal.user_joined.v1'
|
|
21
23
|
};
|
|
22
24
|
/**
|
|
23
25
|
* Check if a given object implements the PutCustomWebhookIntegration interface.
|
|
@@ -41,6 +41,8 @@ export declare const ZapierSubscriptionEventTypeEnum: {
|
|
|
41
41
|
readonly ComEdaxuEnrollmentEnrolledV1: "com.edaxu.enrollment.enrolled.v1";
|
|
42
42
|
readonly ComEdaxuEnrollmentCompletedV1: "com.edaxu.enrollment.completed.v1";
|
|
43
43
|
readonly ComEdaxuCertificateIssuedV1: "com.edaxu.certificate.issued.v1";
|
|
44
|
+
readonly ComEdaxuPortalUserInvitedV1: "com.edaxu.portal.user_invited.v1";
|
|
45
|
+
readonly ComEdaxuPortalUserJoinedV1: "com.edaxu.portal.user_joined.v1";
|
|
44
46
|
};
|
|
45
47
|
export type ZapierSubscriptionEventTypeEnum = typeof ZapierSubscriptionEventTypeEnum[keyof typeof ZapierSubscriptionEventTypeEnum];
|
|
46
48
|
/**
|
|
@@ -17,7 +17,9 @@
|
|
|
17
17
|
export const ZapierSubscriptionEventTypeEnum = {
|
|
18
18
|
ComEdaxuEnrollmentEnrolledV1: 'com.edaxu.enrollment.enrolled.v1',
|
|
19
19
|
ComEdaxuEnrollmentCompletedV1: 'com.edaxu.enrollment.completed.v1',
|
|
20
|
-
ComEdaxuCertificateIssuedV1: 'com.edaxu.certificate.issued.v1'
|
|
20
|
+
ComEdaxuCertificateIssuedV1: 'com.edaxu.certificate.issued.v1',
|
|
21
|
+
ComEdaxuPortalUserInvitedV1: 'com.edaxu.portal.user_invited.v1',
|
|
22
|
+
ComEdaxuPortalUserJoinedV1: 'com.edaxu.portal.user_joined.v1'
|
|
21
23
|
};
|
|
22
24
|
/**
|
|
23
25
|
* Check if a given object implements the ZapierSubscription interface.
|
|
@@ -170,8 +170,10 @@ export * from './IntegrationEventCertificate';
|
|
|
170
170
|
export * from './IntegrationEventCourse';
|
|
171
171
|
export * from './IntegrationEventData';
|
|
172
172
|
export * from './IntegrationEventEnrollment';
|
|
173
|
+
export * from './IntegrationEventInvitation';
|
|
173
174
|
export * from './IntegrationEventLearner';
|
|
174
175
|
export * from './IntegrationEventPortal';
|
|
176
|
+
export * from './IntegrationEventUser';
|
|
175
177
|
export * from './LearnerExperienceVersion';
|
|
176
178
|
export * from './LibraryQuizCriteriaPreviewQuestion';
|
|
177
179
|
export * from './LibraryQuizCriterion';
|
package/dist/esm/models/index.js
CHANGED
|
@@ -172,8 +172,10 @@ export * from './IntegrationEventCertificate';
|
|
|
172
172
|
export * from './IntegrationEventCourse';
|
|
173
173
|
export * from './IntegrationEventData';
|
|
174
174
|
export * from './IntegrationEventEnrollment';
|
|
175
|
+
export * from './IntegrationEventInvitation';
|
|
175
176
|
export * from './IntegrationEventLearner';
|
|
176
177
|
export * from './IntegrationEventPortal';
|
|
178
|
+
export * from './IntegrationEventUser';
|
|
177
179
|
export * from './LearnerExperienceVersion';
|
|
178
180
|
export * from './LibraryQuizCriteriaPreviewQuestion';
|
|
179
181
|
export * from './LibraryQuizCriterion';
|
|
@@ -71,6 +71,8 @@ export declare const CustomWebhookIntegrationEventTypesEnum: {
|
|
|
71
71
|
readonly ComEdaxuEnrollmentEnrolledV1: "com.edaxu.enrollment.enrolled.v1";
|
|
72
72
|
readonly ComEdaxuEnrollmentCompletedV1: "com.edaxu.enrollment.completed.v1";
|
|
73
73
|
readonly ComEdaxuCertificateIssuedV1: "com.edaxu.certificate.issued.v1";
|
|
74
|
+
readonly ComEdaxuPortalUserInvitedV1: "com.edaxu.portal.user_invited.v1";
|
|
75
|
+
readonly ComEdaxuPortalUserJoinedV1: "com.edaxu.portal.user_joined.v1";
|
|
74
76
|
};
|
|
75
77
|
export type CustomWebhookIntegrationEventTypesEnum = typeof CustomWebhookIntegrationEventTypesEnum[keyof typeof CustomWebhookIntegrationEventTypesEnum];
|
|
76
78
|
/**
|
|
@@ -25,7 +25,9 @@ exports.CustomWebhookIntegrationToJSONTyped = CustomWebhookIntegrationToJSONType
|
|
|
25
25
|
exports.CustomWebhookIntegrationEventTypesEnum = {
|
|
26
26
|
ComEdaxuEnrollmentEnrolledV1: 'com.edaxu.enrollment.enrolled.v1',
|
|
27
27
|
ComEdaxuEnrollmentCompletedV1: 'com.edaxu.enrollment.completed.v1',
|
|
28
|
-
ComEdaxuCertificateIssuedV1: 'com.edaxu.certificate.issued.v1'
|
|
28
|
+
ComEdaxuCertificateIssuedV1: 'com.edaxu.certificate.issued.v1',
|
|
29
|
+
ComEdaxuPortalUserInvitedV1: 'com.edaxu.portal.user_invited.v1',
|
|
30
|
+
ComEdaxuPortalUserJoinedV1: 'com.edaxu.portal.user_joined.v1'
|
|
29
31
|
};
|
|
30
32
|
/**
|
|
31
33
|
* Check if a given object implements the CustomWebhookIntegration interface.
|
|
@@ -79,6 +79,8 @@ export declare const IntegrationEventTypeEnum: {
|
|
|
79
79
|
readonly ComEdaxuEnrollmentEnrolledV1: "com.edaxu.enrollment.enrolled.v1";
|
|
80
80
|
readonly ComEdaxuEnrollmentCompletedV1: "com.edaxu.enrollment.completed.v1";
|
|
81
81
|
readonly ComEdaxuCertificateIssuedV1: "com.edaxu.certificate.issued.v1";
|
|
82
|
+
readonly ComEdaxuPortalUserInvitedV1: "com.edaxu.portal.user_invited.v1";
|
|
83
|
+
readonly ComEdaxuPortalUserJoinedV1: "com.edaxu.portal.user_joined.v1";
|
|
82
84
|
};
|
|
83
85
|
export type IntegrationEventTypeEnum = typeof IntegrationEventTypeEnum[keyof typeof IntegrationEventTypeEnum];
|
|
84
86
|
/**
|
|
@@ -32,7 +32,9 @@ exports.IntegrationEventSpecversionEnum = {
|
|
|
32
32
|
exports.IntegrationEventTypeEnum = {
|
|
33
33
|
ComEdaxuEnrollmentEnrolledV1: 'com.edaxu.enrollment.enrolled.v1',
|
|
34
34
|
ComEdaxuEnrollmentCompletedV1: 'com.edaxu.enrollment.completed.v1',
|
|
35
|
-
ComEdaxuCertificateIssuedV1: 'com.edaxu.certificate.issued.v1'
|
|
35
|
+
ComEdaxuCertificateIssuedV1: 'com.edaxu.certificate.issued.v1',
|
|
36
|
+
ComEdaxuPortalUserInvitedV1: 'com.edaxu.portal.user_invited.v1',
|
|
37
|
+
ComEdaxuPortalUserJoinedV1: 'com.edaxu.portal.user_joined.v1'
|
|
36
38
|
};
|
|
37
39
|
/**
|
|
38
40
|
* @export
|