@lssm/module.learning-journey 0.0.0-canary-20251217063201 → 0.0.0-canary-20251217072406
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/dist/contracts/index.js +6 -1
- package/dist/contracts/models.d.ts +118 -118
- package/dist/contracts/models.js +389 -1
- package/dist/contracts/onboarding.d.ts +167 -167
- package/dist/contracts/onboarding.js +404 -1
- package/dist/contracts/operations.d.ts +70 -70
- package/dist/contracts/operations.js +151 -1
- package/dist/contracts/shared.js +5 -1
- package/dist/docs/index.js +1 -1
- package/dist/docs/learning-journey.docblock.js +61 -5
- package/dist/engines/index.js +5 -1
- package/dist/engines/srs.js +219 -1
- package/dist/engines/streak.js +193 -1
- package/dist/engines/xp.js +212 -1
- package/dist/entities/ai.d.ts +200 -200
- package/dist/entities/ai.js +376 -1
- package/dist/entities/course.d.ts +150 -150
- package/dist/entities/course.js +316 -1
- package/dist/entities/flashcard.d.ts +145 -145
- package/dist/entities/flashcard.js +249 -1
- package/dist/entities/gamification.d.ts +198 -198
- package/dist/entities/gamification.js +392 -1
- package/dist/entities/index.d.ts +605 -605
- package/dist/entities/index.js +44 -1
- package/dist/entities/learner.d.ts +192 -192
- package/dist/entities/learner.js +365 -1
- package/dist/entities/onboarding.d.ts +165 -165
- package/dist/entities/onboarding.js +307 -1
- package/dist/entities/quiz.d.ts +185 -185
- package/dist/entities/quiz.js +370 -1
- package/dist/events.d.ts +213 -213
- package/dist/events.js +583 -1
- package/dist/index.js +22 -1
- package/dist/learning-journey.feature.js +148 -1
- package/dist/libs/contracts/dist/capabilities/openbanking.js +88 -1
- package/dist/libs/contracts/dist/client/index.js +5 -1
- package/dist/libs/contracts/dist/client/react/feature-render.js +2 -1
- package/dist/libs/contracts/dist/client/react/form-render.js +4 -1
- package/dist/libs/contracts/dist/client/react/index.js +4 -1
- package/dist/libs/contracts/dist/contract-registry/index.js +1 -1
- package/dist/libs/contracts/dist/contract-registry/schemas.js +60 -1
- package/dist/libs/contracts/dist/docs/PUBLISHING.docblock.js +16 -76
- package/dist/libs/contracts/dist/docs/accessibility_wcag_compliance_specs.docblock.js +16 -350
- package/dist/libs/contracts/dist/docs/index.js +29 -1
- package/dist/libs/contracts/dist/docs/presentations.js +71 -1
- package/dist/libs/contracts/dist/docs/registry.js +44 -1
- package/dist/libs/contracts/dist/docs/tech/PHASE_1_QUICKSTART.docblock.js +16 -383
- package/dist/libs/contracts/dist/docs/tech/PHASE_2_AI_NATIVE_OPERATIONS.docblock.js +16 -68
- package/dist/libs/contracts/dist/docs/tech/PHASE_3_AUTO_EVOLUTION.docblock.js +16 -140
- package/dist/libs/contracts/dist/docs/tech/PHASE_4_PERSONALIZATION_ENGINE.docblock.js +16 -86
- package/dist/libs/contracts/dist/docs/tech/PHASE_5_ZERO_TOUCH_OPERATIONS.docblock.js +16 -1
- package/dist/libs/contracts/dist/docs/tech/auth/better-auth-nextjs.docblock.js +24 -2
- package/dist/libs/contracts/dist/docs/tech/contracts/openapi-export.docblock.js +21 -2
- package/dist/libs/contracts/dist/docs/tech/lifecycle-stage-system.docblock.js +16 -213
- package/dist/libs/contracts/dist/docs/tech/llm/llm-integration.docblock.js +73 -5
- package/dist/libs/contracts/dist/docs/tech/mcp-endpoints.docblock.js +37 -1
- package/dist/libs/contracts/dist/docs/tech/presentation-runtime.docblock.js +16 -1
- package/dist/libs/contracts/dist/docs/tech/schema/README.docblock.js +20 -262
- package/dist/libs/contracts/dist/docs/tech/studio/learning-events.docblock.js +48 -1
- package/dist/libs/contracts/dist/docs/tech/studio/learning-journeys.docblock.js +24 -2
- package/dist/libs/contracts/dist/docs/tech/studio/platform-admin-panel.docblock.js +23 -2
- package/dist/libs/contracts/dist/docs/tech/studio/project-access-teams.docblock.js +25 -16
- package/dist/libs/contracts/dist/docs/tech/studio/project-routing.docblock.js +67 -1
- package/dist/libs/contracts/dist/docs/tech/studio/sandbox-unlogged.docblock.js +22 -2
- package/dist/libs/contracts/dist/docs/tech/studio/team-invitations.docblock.js +40 -36
- package/dist/libs/contracts/dist/docs/tech/studio/workspace-ops.docblock.js +47 -1
- package/dist/libs/contracts/dist/docs/tech/studio/workspaces.docblock.js +23 -2
- package/dist/libs/contracts/dist/docs/tech/telemetry-ingest.docblock.js +36 -3
- package/dist/libs/contracts/dist/docs/tech/templates/runtime.docblock.js +20 -1
- package/dist/libs/contracts/dist/docs/tech/vscode-extension.docblock.js +36 -3
- package/dist/libs/contracts/dist/docs/tech/workflows/overview.docblock.js +20 -1
- package/dist/libs/contracts/dist/events.js +10 -1
- package/dist/libs/contracts/dist/experiments/evaluator.js +1 -1
- package/dist/libs/contracts/dist/index.js +71 -1
- package/dist/libs/contracts/dist/install.js +2 -1
- package/dist/libs/contracts/dist/integrations/contracts.js +377 -1
- package/dist/libs/contracts/dist/integrations/index.js +18 -1
- package/dist/libs/contracts/dist/integrations/openbanking/contracts/accounts.js +228 -1
- package/dist/libs/contracts/dist/integrations/openbanking/contracts/balances.js +159 -1
- package/dist/libs/contracts/dist/integrations/openbanking/contracts/index.js +3 -1
- package/dist/libs/contracts/dist/integrations/openbanking/contracts/transactions.js +210 -1
- package/dist/libs/contracts/dist/integrations/openbanking/models.js +242 -1
- package/dist/libs/contracts/dist/integrations/openbanking/telemetry.js +13 -1
- package/dist/libs/contracts/dist/integrations/providers/elevenlabs.js +52 -1
- package/dist/libs/contracts/dist/integrations/providers/gcs-storage.js +75 -1
- package/dist/libs/contracts/dist/integrations/providers/gmail.js +87 -1
- package/dist/libs/contracts/dist/integrations/providers/google-calendar.js +66 -1
- package/dist/libs/contracts/dist/integrations/providers/index.js +11 -1
- package/dist/libs/contracts/dist/integrations/providers/mistral.js +68 -1
- package/dist/libs/contracts/dist/integrations/providers/postmark.js +68 -1
- package/dist/libs/contracts/dist/integrations/providers/powens.js +116 -1
- package/dist/libs/contracts/dist/integrations/providers/qdrant.js +73 -1
- package/dist/libs/contracts/dist/integrations/providers/registry.js +10 -1
- package/dist/libs/contracts/dist/integrations/providers/stripe.js +83 -1
- package/dist/libs/contracts/dist/integrations/providers/twilio-sms.js +61 -1
- package/dist/libs/contracts/dist/jsonschema.js +1 -1
- package/dist/libs/contracts/dist/knowledge/contracts.js +306 -1
- package/dist/libs/contracts/dist/knowledge/index.js +7 -1
- package/dist/libs/contracts/dist/knowledge/spaces/email-threads.js +34 -1
- package/dist/libs/contracts/dist/knowledge/spaces/financial-docs.js +34 -1
- package/dist/libs/contracts/dist/knowledge/spaces/financial-overview.js +38 -1
- package/dist/libs/contracts/dist/knowledge/spaces/index.js +6 -1
- package/dist/libs/contracts/dist/knowledge/spaces/product-canon.js +34 -1
- package/dist/libs/contracts/dist/knowledge/spaces/support-faq.js +37 -1
- package/dist/libs/contracts/dist/knowledge/spaces/uploaded-docs.js +34 -1
- package/dist/libs/contracts/dist/llm/exporters.js +19 -1
- package/dist/libs/contracts/dist/llm/index.js +2 -1
- package/dist/libs/contracts/dist/llm/prompts.js +1 -1
- package/dist/libs/contracts/dist/onboarding-base.js +196 -1
- package/dist/libs/contracts/dist/openapi.js +1 -1
- package/dist/libs/contracts/dist/ownership.js +21 -1
- package/dist/libs/contracts/dist/presentations.js +1 -1
- package/dist/libs/contracts/dist/presentations.v2.js +11 -1
- package/dist/libs/contracts/dist/prompt.js +1 -1
- package/dist/libs/contracts/dist/promptRegistry.js +1 -1
- package/dist/libs/contracts/dist/regenerator/index.js +1 -1
- package/dist/libs/contracts/dist/regenerator/service.js +6 -1
- package/dist/libs/contracts/dist/registry.js +2 -1
- package/dist/libs/contracts/dist/resources.js +1 -1
- package/dist/libs/contracts/dist/schema/dist/EnumType.js +2 -1
- package/dist/libs/contracts/dist/schema/dist/FieldType.js +49 -1
- package/dist/libs/contracts/dist/schema/dist/ScalarTypeEnum.js +236 -1
- package/dist/libs/contracts/dist/schema/dist/SchemaModel.js +34 -1
- package/dist/libs/contracts/dist/schema/dist/entity/defineEntity.js +1 -1
- package/dist/libs/contracts/dist/schema/dist/entity/index.js +2 -1
- package/dist/libs/contracts/dist/schema/dist/entity/types.js +1 -1
- package/dist/libs/contracts/dist/schema/dist/index.js +6 -1
- package/dist/libs/contracts/dist/server/graphql-pothos.js +6 -1
- package/dist/libs/contracts/dist/server/index.js +8 -1
- package/dist/libs/contracts/dist/server/mcp/createMcpServer.js +4 -1
- package/dist/libs/contracts/dist/server/mcp/registerPresentations.js +2 -1
- package/dist/libs/contracts/dist/server/mcp/registerPrompts.js +1 -1
- package/dist/libs/contracts/dist/server/mcp/registerResources.js +2 -1
- package/dist/libs/contracts/dist/server/mcp/registerTools.js +1 -1
- package/dist/libs/contracts/dist/server/provider-mcp.js +1 -1
- package/dist/libs/contracts/dist/server/rest-elysia.js +1 -1
- package/dist/libs/contracts/dist/server/rest-express.js +1 -1
- package/dist/libs/contracts/dist/server/rest-generic.js +1 -1
- package/dist/libs/contracts/dist/server/rest-next-app.js +1 -1
- package/dist/libs/contracts/dist/server/rest-next-pages.js +1 -1
- package/dist/libs/contracts/dist/spec.js +34 -1
- package/dist/libs/contracts/dist/telemetry/index.js +1 -1
- package/dist/libs/contracts/dist/telemetry/tracker.js +1 -1
- package/dist/libs/contracts/dist/tests/index.js +1 -1
- package/dist/libs/contracts/dist/tests/runner.js +2 -1
- package/dist/libs/contracts/dist/workflow/index.js +1 -1
- package/dist/libs/contracts/dist/workflow/runner.js +1 -1
- package/dist/libs/schema/dist/EnumType.js +2 -1
- package/dist/libs/schema/dist/FieldType.js +49 -1
- package/dist/libs/schema/dist/ScalarTypeEnum.js +236 -1
- package/dist/libs/schema/dist/SchemaModel.js +39 -1
- package/dist/libs/schema/dist/entity/defineEntity.js +236 -1
- package/dist/libs/schema/dist/entity/index.js +2 -1
- package/dist/libs/schema/dist/entity/types.js +1 -1
- package/dist/libs/schema/dist/index.js +6 -1
- package/package.json +5 -5
|
@@ -1,224 +1,224 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _lssm_lib_schema1073 from "@lssm/lib.schema";
|
|
2
2
|
import * as _lssm_lib_contracts36 from "@lssm/lib.contracts";
|
|
3
3
|
|
|
4
4
|
//#region src/contracts/onboarding.d.ts
|
|
5
|
-
declare const OnboardingStepModel:
|
|
5
|
+
declare const OnboardingStepModel: _lssm_lib_schema1073.SchemaModel<{
|
|
6
6
|
id: {
|
|
7
|
-
type:
|
|
7
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
8
8
|
isOptional: false;
|
|
9
9
|
};
|
|
10
10
|
trackId: {
|
|
11
|
-
type:
|
|
11
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
12
12
|
isOptional: false;
|
|
13
13
|
};
|
|
14
14
|
title: {
|
|
15
|
-
type:
|
|
15
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
16
16
|
isOptional: false;
|
|
17
17
|
};
|
|
18
18
|
description: {
|
|
19
|
-
type:
|
|
19
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
20
20
|
isOptional: true;
|
|
21
21
|
};
|
|
22
22
|
instructions: {
|
|
23
|
-
type:
|
|
23
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
24
24
|
isOptional: true;
|
|
25
25
|
};
|
|
26
26
|
helpUrl: {
|
|
27
|
-
type:
|
|
27
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
28
28
|
isOptional: true;
|
|
29
29
|
};
|
|
30
30
|
order: {
|
|
31
|
-
type:
|
|
31
|
+
type: _lssm_lib_schema1073.FieldType<number, number>;
|
|
32
32
|
isOptional: false;
|
|
33
33
|
};
|
|
34
34
|
completionEvent: {
|
|
35
|
-
type:
|
|
35
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
36
36
|
isOptional: false;
|
|
37
37
|
};
|
|
38
38
|
completionCondition: {
|
|
39
|
-
type:
|
|
39
|
+
type: _lssm_lib_schema1073.SchemaModel<{
|
|
40
40
|
eventName: {
|
|
41
|
-
type:
|
|
41
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
42
42
|
isOptional: false;
|
|
43
43
|
};
|
|
44
44
|
eventVersion: {
|
|
45
|
-
type:
|
|
45
|
+
type: _lssm_lib_schema1073.FieldType<number, number>;
|
|
46
46
|
isOptional: true;
|
|
47
47
|
};
|
|
48
48
|
sourceModule: {
|
|
49
|
-
type:
|
|
49
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
50
50
|
isOptional: true;
|
|
51
51
|
};
|
|
52
52
|
payloadFilter: {
|
|
53
|
-
type:
|
|
53
|
+
type: _lssm_lib_schema1073.FieldType<unknown, unknown>;
|
|
54
54
|
isOptional: true;
|
|
55
55
|
};
|
|
56
56
|
}>;
|
|
57
57
|
isOptional: true;
|
|
58
58
|
};
|
|
59
59
|
xpReward: {
|
|
60
|
-
type:
|
|
60
|
+
type: _lssm_lib_schema1073.FieldType<number, number>;
|
|
61
61
|
isOptional: true;
|
|
62
62
|
};
|
|
63
63
|
isRequired: {
|
|
64
|
-
type:
|
|
64
|
+
type: _lssm_lib_schema1073.FieldType<boolean, boolean>;
|
|
65
65
|
isOptional: true;
|
|
66
66
|
};
|
|
67
67
|
canSkip: {
|
|
68
|
-
type:
|
|
68
|
+
type: _lssm_lib_schema1073.FieldType<boolean, boolean>;
|
|
69
69
|
isOptional: true;
|
|
70
70
|
};
|
|
71
71
|
actionUrl: {
|
|
72
|
-
type:
|
|
72
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
73
73
|
isOptional: true;
|
|
74
74
|
};
|
|
75
75
|
actionLabel: {
|
|
76
|
-
type:
|
|
76
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
77
77
|
isOptional: true;
|
|
78
78
|
};
|
|
79
79
|
metadata: {
|
|
80
|
-
type:
|
|
80
|
+
type: _lssm_lib_schema1073.FieldType<unknown, unknown>;
|
|
81
81
|
isOptional: true;
|
|
82
82
|
};
|
|
83
83
|
}>;
|
|
84
|
-
declare const OnboardingTrackModel:
|
|
84
|
+
declare const OnboardingTrackModel: _lssm_lib_schema1073.SchemaModel<{
|
|
85
85
|
id: {
|
|
86
|
-
type:
|
|
86
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
87
87
|
isOptional: false;
|
|
88
88
|
};
|
|
89
89
|
productId: {
|
|
90
|
-
type:
|
|
90
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
91
91
|
isOptional: true;
|
|
92
92
|
};
|
|
93
93
|
name: {
|
|
94
|
-
type:
|
|
94
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
95
95
|
isOptional: false;
|
|
96
96
|
};
|
|
97
97
|
description: {
|
|
98
|
-
type:
|
|
98
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
99
99
|
isOptional: true;
|
|
100
100
|
};
|
|
101
101
|
targetUserSegment: {
|
|
102
|
-
type:
|
|
102
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
103
103
|
isOptional: true;
|
|
104
104
|
};
|
|
105
105
|
targetRole: {
|
|
106
|
-
type:
|
|
106
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
107
107
|
isOptional: true;
|
|
108
108
|
};
|
|
109
109
|
isActive: {
|
|
110
|
-
type:
|
|
110
|
+
type: _lssm_lib_schema1073.FieldType<boolean, boolean>;
|
|
111
111
|
isOptional: true;
|
|
112
112
|
};
|
|
113
113
|
isRequired: {
|
|
114
|
-
type:
|
|
114
|
+
type: _lssm_lib_schema1073.FieldType<boolean, boolean>;
|
|
115
115
|
isOptional: true;
|
|
116
116
|
};
|
|
117
117
|
canSkip: {
|
|
118
|
-
type:
|
|
118
|
+
type: _lssm_lib_schema1073.FieldType<boolean, boolean>;
|
|
119
119
|
isOptional: true;
|
|
120
120
|
};
|
|
121
121
|
totalXp: {
|
|
122
|
-
type:
|
|
122
|
+
type: _lssm_lib_schema1073.FieldType<number, number>;
|
|
123
123
|
isOptional: true;
|
|
124
124
|
};
|
|
125
125
|
completionXpBonus: {
|
|
126
|
-
type:
|
|
126
|
+
type: _lssm_lib_schema1073.FieldType<number, number>;
|
|
127
127
|
isOptional: true;
|
|
128
128
|
};
|
|
129
129
|
completionBadgeKey: {
|
|
130
|
-
type:
|
|
130
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
131
131
|
isOptional: true;
|
|
132
132
|
};
|
|
133
133
|
streakHoursWindow: {
|
|
134
|
-
type:
|
|
134
|
+
type: _lssm_lib_schema1073.FieldType<number, number>;
|
|
135
135
|
isOptional: true;
|
|
136
136
|
};
|
|
137
137
|
streakBonusXp: {
|
|
138
|
-
type:
|
|
138
|
+
type: _lssm_lib_schema1073.FieldType<number, number>;
|
|
139
139
|
isOptional: true;
|
|
140
140
|
};
|
|
141
141
|
metadata: {
|
|
142
|
-
type:
|
|
142
|
+
type: _lssm_lib_schema1073.FieldType<unknown, unknown>;
|
|
143
143
|
isOptional: true;
|
|
144
144
|
};
|
|
145
145
|
steps: {
|
|
146
|
-
type:
|
|
146
|
+
type: _lssm_lib_schema1073.SchemaModel<{
|
|
147
147
|
id: {
|
|
148
|
-
type:
|
|
148
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
149
149
|
isOptional: false;
|
|
150
150
|
};
|
|
151
151
|
trackId: {
|
|
152
|
-
type:
|
|
152
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
153
153
|
isOptional: false;
|
|
154
154
|
};
|
|
155
155
|
title: {
|
|
156
|
-
type:
|
|
156
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
157
157
|
isOptional: false;
|
|
158
158
|
};
|
|
159
159
|
description: {
|
|
160
|
-
type:
|
|
160
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
161
161
|
isOptional: true;
|
|
162
162
|
};
|
|
163
163
|
instructions: {
|
|
164
|
-
type:
|
|
164
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
165
165
|
isOptional: true;
|
|
166
166
|
};
|
|
167
167
|
helpUrl: {
|
|
168
|
-
type:
|
|
168
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
169
169
|
isOptional: true;
|
|
170
170
|
};
|
|
171
171
|
order: {
|
|
172
|
-
type:
|
|
172
|
+
type: _lssm_lib_schema1073.FieldType<number, number>;
|
|
173
173
|
isOptional: false;
|
|
174
174
|
};
|
|
175
175
|
completionEvent: {
|
|
176
|
-
type:
|
|
176
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
177
177
|
isOptional: false;
|
|
178
178
|
};
|
|
179
179
|
completionCondition: {
|
|
180
|
-
type:
|
|
180
|
+
type: _lssm_lib_schema1073.SchemaModel<{
|
|
181
181
|
eventName: {
|
|
182
|
-
type:
|
|
182
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
183
183
|
isOptional: false;
|
|
184
184
|
};
|
|
185
185
|
eventVersion: {
|
|
186
|
-
type:
|
|
186
|
+
type: _lssm_lib_schema1073.FieldType<number, number>;
|
|
187
187
|
isOptional: true;
|
|
188
188
|
};
|
|
189
189
|
sourceModule: {
|
|
190
|
-
type:
|
|
190
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
191
191
|
isOptional: true;
|
|
192
192
|
};
|
|
193
193
|
payloadFilter: {
|
|
194
|
-
type:
|
|
194
|
+
type: _lssm_lib_schema1073.FieldType<unknown, unknown>;
|
|
195
195
|
isOptional: true;
|
|
196
196
|
};
|
|
197
197
|
}>;
|
|
198
198
|
isOptional: true;
|
|
199
199
|
};
|
|
200
200
|
xpReward: {
|
|
201
|
-
type:
|
|
201
|
+
type: _lssm_lib_schema1073.FieldType<number, number>;
|
|
202
202
|
isOptional: true;
|
|
203
203
|
};
|
|
204
204
|
isRequired: {
|
|
205
|
-
type:
|
|
205
|
+
type: _lssm_lib_schema1073.FieldType<boolean, boolean>;
|
|
206
206
|
isOptional: true;
|
|
207
207
|
};
|
|
208
208
|
canSkip: {
|
|
209
|
-
type:
|
|
209
|
+
type: _lssm_lib_schema1073.FieldType<boolean, boolean>;
|
|
210
210
|
isOptional: true;
|
|
211
211
|
};
|
|
212
212
|
actionUrl: {
|
|
213
|
-
type:
|
|
213
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
214
214
|
isOptional: true;
|
|
215
215
|
};
|
|
216
216
|
actionLabel: {
|
|
217
|
-
type:
|
|
217
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
218
218
|
isOptional: true;
|
|
219
219
|
};
|
|
220
220
|
metadata: {
|
|
221
|
-
type:
|
|
221
|
+
type: _lssm_lib_schema1073.FieldType<unknown, unknown>;
|
|
222
222
|
isOptional: true;
|
|
223
223
|
};
|
|
224
224
|
}>;
|
|
@@ -226,89 +226,89 @@ declare const OnboardingTrackModel: _lssm_lib_schema1434.SchemaModel<{
|
|
|
226
226
|
isOptional: false;
|
|
227
227
|
};
|
|
228
228
|
}>;
|
|
229
|
-
declare const OnboardingStepProgressModel:
|
|
229
|
+
declare const OnboardingStepProgressModel: _lssm_lib_schema1073.SchemaModel<{
|
|
230
230
|
stepId: {
|
|
231
|
-
type:
|
|
231
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
232
232
|
isOptional: false;
|
|
233
233
|
};
|
|
234
234
|
status: {
|
|
235
|
-
type:
|
|
235
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
236
236
|
isOptional: false;
|
|
237
237
|
};
|
|
238
238
|
xpEarned: {
|
|
239
|
-
type:
|
|
239
|
+
type: _lssm_lib_schema1073.FieldType<number, number>;
|
|
240
240
|
isOptional: true;
|
|
241
241
|
};
|
|
242
242
|
triggeringEvent: {
|
|
243
|
-
type:
|
|
243
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
244
244
|
isOptional: true;
|
|
245
245
|
};
|
|
246
246
|
eventPayload: {
|
|
247
|
-
type:
|
|
247
|
+
type: _lssm_lib_schema1073.FieldType<unknown, unknown>;
|
|
248
248
|
isOptional: true;
|
|
249
249
|
};
|
|
250
250
|
completedAt: {
|
|
251
|
-
type:
|
|
251
|
+
type: _lssm_lib_schema1073.FieldType<Date, string>;
|
|
252
252
|
isOptional: true;
|
|
253
253
|
};
|
|
254
254
|
}>;
|
|
255
|
-
declare const OnboardingProgressModel:
|
|
255
|
+
declare const OnboardingProgressModel: _lssm_lib_schema1073.SchemaModel<{
|
|
256
256
|
learnerId: {
|
|
257
|
-
type:
|
|
257
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
258
258
|
isOptional: true;
|
|
259
259
|
};
|
|
260
260
|
trackId: {
|
|
261
|
-
type:
|
|
261
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
262
262
|
isOptional: false;
|
|
263
263
|
};
|
|
264
264
|
progress: {
|
|
265
|
-
type:
|
|
265
|
+
type: _lssm_lib_schema1073.FieldType<number, number>;
|
|
266
266
|
isOptional: false;
|
|
267
267
|
};
|
|
268
268
|
isCompleted: {
|
|
269
|
-
type:
|
|
269
|
+
type: _lssm_lib_schema1073.FieldType<boolean, boolean>;
|
|
270
270
|
isOptional: false;
|
|
271
271
|
};
|
|
272
272
|
xpEarned: {
|
|
273
|
-
type:
|
|
273
|
+
type: _lssm_lib_schema1073.FieldType<number, number>;
|
|
274
274
|
isOptional: true;
|
|
275
275
|
};
|
|
276
276
|
startedAt: {
|
|
277
|
-
type:
|
|
277
|
+
type: _lssm_lib_schema1073.FieldType<Date, string>;
|
|
278
278
|
isOptional: true;
|
|
279
279
|
};
|
|
280
280
|
completedAt: {
|
|
281
|
-
type:
|
|
281
|
+
type: _lssm_lib_schema1073.FieldType<Date, string>;
|
|
282
282
|
isOptional: true;
|
|
283
283
|
};
|
|
284
284
|
lastActivityAt: {
|
|
285
|
-
type:
|
|
285
|
+
type: _lssm_lib_schema1073.FieldType<Date, string>;
|
|
286
286
|
isOptional: true;
|
|
287
287
|
};
|
|
288
288
|
steps: {
|
|
289
|
-
type:
|
|
289
|
+
type: _lssm_lib_schema1073.SchemaModel<{
|
|
290
290
|
stepId: {
|
|
291
|
-
type:
|
|
291
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
292
292
|
isOptional: false;
|
|
293
293
|
};
|
|
294
294
|
status: {
|
|
295
|
-
type:
|
|
295
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
296
296
|
isOptional: false;
|
|
297
297
|
};
|
|
298
298
|
xpEarned: {
|
|
299
|
-
type:
|
|
299
|
+
type: _lssm_lib_schema1073.FieldType<number, number>;
|
|
300
300
|
isOptional: true;
|
|
301
301
|
};
|
|
302
302
|
triggeringEvent: {
|
|
303
|
-
type:
|
|
303
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
304
304
|
isOptional: true;
|
|
305
305
|
};
|
|
306
306
|
eventPayload: {
|
|
307
|
-
type:
|
|
307
|
+
type: _lssm_lib_schema1073.FieldType<unknown, unknown>;
|
|
308
308
|
isOptional: true;
|
|
309
309
|
};
|
|
310
310
|
completedAt: {
|
|
311
|
-
type:
|
|
311
|
+
type: _lssm_lib_schema1073.FieldType<Date, string>;
|
|
312
312
|
isOptional: true;
|
|
313
313
|
};
|
|
314
314
|
}>;
|
|
@@ -316,164 +316,164 @@ declare const OnboardingProgressModel: _lssm_lib_schema1434.SchemaModel<{
|
|
|
316
316
|
isOptional: true;
|
|
317
317
|
};
|
|
318
318
|
}>;
|
|
319
|
-
declare const ListOnboardingTracksContract: _lssm_lib_contracts36.ContractSpec<
|
|
319
|
+
declare const ListOnboardingTracksContract: _lssm_lib_contracts36.ContractSpec<_lssm_lib_schema1073.SchemaModel<{
|
|
320
320
|
learnerId: {
|
|
321
|
-
type:
|
|
321
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
322
322
|
isOptional: true;
|
|
323
323
|
};
|
|
324
324
|
productId: {
|
|
325
|
-
type:
|
|
325
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
326
326
|
isOptional: true;
|
|
327
327
|
};
|
|
328
328
|
trackIds: {
|
|
329
|
-
type:
|
|
329
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
330
330
|
isArray: true;
|
|
331
331
|
isOptional: true;
|
|
332
332
|
};
|
|
333
333
|
includeProgress: {
|
|
334
|
-
type:
|
|
334
|
+
type: _lssm_lib_schema1073.FieldType<boolean, boolean>;
|
|
335
335
|
isOptional: true;
|
|
336
336
|
};
|
|
337
|
-
}>,
|
|
337
|
+
}>, _lssm_lib_schema1073.SchemaModel<{
|
|
338
338
|
tracks: {
|
|
339
|
-
type:
|
|
339
|
+
type: _lssm_lib_schema1073.SchemaModel<{
|
|
340
340
|
id: {
|
|
341
|
-
type:
|
|
341
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
342
342
|
isOptional: false;
|
|
343
343
|
};
|
|
344
344
|
productId: {
|
|
345
|
-
type:
|
|
345
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
346
346
|
isOptional: true;
|
|
347
347
|
};
|
|
348
348
|
name: {
|
|
349
|
-
type:
|
|
349
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
350
350
|
isOptional: false;
|
|
351
351
|
};
|
|
352
352
|
description: {
|
|
353
|
-
type:
|
|
353
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
354
354
|
isOptional: true;
|
|
355
355
|
};
|
|
356
356
|
targetUserSegment: {
|
|
357
|
-
type:
|
|
357
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
358
358
|
isOptional: true;
|
|
359
359
|
};
|
|
360
360
|
targetRole: {
|
|
361
|
-
type:
|
|
361
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
362
362
|
isOptional: true;
|
|
363
363
|
};
|
|
364
364
|
isActive: {
|
|
365
|
-
type:
|
|
365
|
+
type: _lssm_lib_schema1073.FieldType<boolean, boolean>;
|
|
366
366
|
isOptional: true;
|
|
367
367
|
};
|
|
368
368
|
isRequired: {
|
|
369
|
-
type:
|
|
369
|
+
type: _lssm_lib_schema1073.FieldType<boolean, boolean>;
|
|
370
370
|
isOptional: true;
|
|
371
371
|
};
|
|
372
372
|
canSkip: {
|
|
373
|
-
type:
|
|
373
|
+
type: _lssm_lib_schema1073.FieldType<boolean, boolean>;
|
|
374
374
|
isOptional: true;
|
|
375
375
|
};
|
|
376
376
|
totalXp: {
|
|
377
|
-
type:
|
|
377
|
+
type: _lssm_lib_schema1073.FieldType<number, number>;
|
|
378
378
|
isOptional: true;
|
|
379
379
|
};
|
|
380
380
|
completionXpBonus: {
|
|
381
|
-
type:
|
|
381
|
+
type: _lssm_lib_schema1073.FieldType<number, number>;
|
|
382
382
|
isOptional: true;
|
|
383
383
|
};
|
|
384
384
|
completionBadgeKey: {
|
|
385
|
-
type:
|
|
385
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
386
386
|
isOptional: true;
|
|
387
387
|
};
|
|
388
388
|
streakHoursWindow: {
|
|
389
|
-
type:
|
|
389
|
+
type: _lssm_lib_schema1073.FieldType<number, number>;
|
|
390
390
|
isOptional: true;
|
|
391
391
|
};
|
|
392
392
|
streakBonusXp: {
|
|
393
|
-
type:
|
|
393
|
+
type: _lssm_lib_schema1073.FieldType<number, number>;
|
|
394
394
|
isOptional: true;
|
|
395
395
|
};
|
|
396
396
|
metadata: {
|
|
397
|
-
type:
|
|
397
|
+
type: _lssm_lib_schema1073.FieldType<unknown, unknown>;
|
|
398
398
|
isOptional: true;
|
|
399
399
|
};
|
|
400
400
|
steps: {
|
|
401
|
-
type:
|
|
401
|
+
type: _lssm_lib_schema1073.SchemaModel<{
|
|
402
402
|
id: {
|
|
403
|
-
type:
|
|
403
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
404
404
|
isOptional: false;
|
|
405
405
|
};
|
|
406
406
|
trackId: {
|
|
407
|
-
type:
|
|
407
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
408
408
|
isOptional: false;
|
|
409
409
|
};
|
|
410
410
|
title: {
|
|
411
|
-
type:
|
|
411
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
412
412
|
isOptional: false;
|
|
413
413
|
};
|
|
414
414
|
description: {
|
|
415
|
-
type:
|
|
415
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
416
416
|
isOptional: true;
|
|
417
417
|
};
|
|
418
418
|
instructions: {
|
|
419
|
-
type:
|
|
419
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
420
420
|
isOptional: true;
|
|
421
421
|
};
|
|
422
422
|
helpUrl: {
|
|
423
|
-
type:
|
|
423
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
424
424
|
isOptional: true;
|
|
425
425
|
};
|
|
426
426
|
order: {
|
|
427
|
-
type:
|
|
427
|
+
type: _lssm_lib_schema1073.FieldType<number, number>;
|
|
428
428
|
isOptional: false;
|
|
429
429
|
};
|
|
430
430
|
completionEvent: {
|
|
431
|
-
type:
|
|
431
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
432
432
|
isOptional: false;
|
|
433
433
|
};
|
|
434
434
|
completionCondition: {
|
|
435
|
-
type:
|
|
435
|
+
type: _lssm_lib_schema1073.SchemaModel<{
|
|
436
436
|
eventName: {
|
|
437
|
-
type:
|
|
437
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
438
438
|
isOptional: false;
|
|
439
439
|
};
|
|
440
440
|
eventVersion: {
|
|
441
|
-
type:
|
|
441
|
+
type: _lssm_lib_schema1073.FieldType<number, number>;
|
|
442
442
|
isOptional: true;
|
|
443
443
|
};
|
|
444
444
|
sourceModule: {
|
|
445
|
-
type:
|
|
445
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
446
446
|
isOptional: true;
|
|
447
447
|
};
|
|
448
448
|
payloadFilter: {
|
|
449
|
-
type:
|
|
449
|
+
type: _lssm_lib_schema1073.FieldType<unknown, unknown>;
|
|
450
450
|
isOptional: true;
|
|
451
451
|
};
|
|
452
452
|
}>;
|
|
453
453
|
isOptional: true;
|
|
454
454
|
};
|
|
455
455
|
xpReward: {
|
|
456
|
-
type:
|
|
456
|
+
type: _lssm_lib_schema1073.FieldType<number, number>;
|
|
457
457
|
isOptional: true;
|
|
458
458
|
};
|
|
459
459
|
isRequired: {
|
|
460
|
-
type:
|
|
460
|
+
type: _lssm_lib_schema1073.FieldType<boolean, boolean>;
|
|
461
461
|
isOptional: true;
|
|
462
462
|
};
|
|
463
463
|
canSkip: {
|
|
464
|
-
type:
|
|
464
|
+
type: _lssm_lib_schema1073.FieldType<boolean, boolean>;
|
|
465
465
|
isOptional: true;
|
|
466
466
|
};
|
|
467
467
|
actionUrl: {
|
|
468
|
-
type:
|
|
468
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
469
469
|
isOptional: true;
|
|
470
470
|
};
|
|
471
471
|
actionLabel: {
|
|
472
|
-
type:
|
|
472
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
473
473
|
isOptional: true;
|
|
474
474
|
};
|
|
475
475
|
metadata: {
|
|
476
|
-
type:
|
|
476
|
+
type: _lssm_lib_schema1073.FieldType<unknown, unknown>;
|
|
477
477
|
isOptional: true;
|
|
478
478
|
};
|
|
479
479
|
}>;
|
|
@@ -485,63 +485,63 @@ declare const ListOnboardingTracksContract: _lssm_lib_contracts36.ContractSpec<_
|
|
|
485
485
|
isOptional: false;
|
|
486
486
|
};
|
|
487
487
|
progress: {
|
|
488
|
-
type:
|
|
488
|
+
type: _lssm_lib_schema1073.SchemaModel<{
|
|
489
489
|
learnerId: {
|
|
490
|
-
type:
|
|
490
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
491
491
|
isOptional: true;
|
|
492
492
|
};
|
|
493
493
|
trackId: {
|
|
494
|
-
type:
|
|
494
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
495
495
|
isOptional: false;
|
|
496
496
|
};
|
|
497
497
|
progress: {
|
|
498
|
-
type:
|
|
498
|
+
type: _lssm_lib_schema1073.FieldType<number, number>;
|
|
499
499
|
isOptional: false;
|
|
500
500
|
};
|
|
501
501
|
isCompleted: {
|
|
502
|
-
type:
|
|
502
|
+
type: _lssm_lib_schema1073.FieldType<boolean, boolean>;
|
|
503
503
|
isOptional: false;
|
|
504
504
|
};
|
|
505
505
|
xpEarned: {
|
|
506
|
-
type:
|
|
506
|
+
type: _lssm_lib_schema1073.FieldType<number, number>;
|
|
507
507
|
isOptional: true;
|
|
508
508
|
};
|
|
509
509
|
startedAt: {
|
|
510
|
-
type:
|
|
510
|
+
type: _lssm_lib_schema1073.FieldType<Date, string>;
|
|
511
511
|
isOptional: true;
|
|
512
512
|
};
|
|
513
513
|
completedAt: {
|
|
514
|
-
type:
|
|
514
|
+
type: _lssm_lib_schema1073.FieldType<Date, string>;
|
|
515
515
|
isOptional: true;
|
|
516
516
|
};
|
|
517
517
|
lastActivityAt: {
|
|
518
|
-
type:
|
|
518
|
+
type: _lssm_lib_schema1073.FieldType<Date, string>;
|
|
519
519
|
isOptional: true;
|
|
520
520
|
};
|
|
521
521
|
steps: {
|
|
522
|
-
type:
|
|
522
|
+
type: _lssm_lib_schema1073.SchemaModel<{
|
|
523
523
|
stepId: {
|
|
524
|
-
type:
|
|
524
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
525
525
|
isOptional: false;
|
|
526
526
|
};
|
|
527
527
|
status: {
|
|
528
|
-
type:
|
|
528
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
529
529
|
isOptional: false;
|
|
530
530
|
};
|
|
531
531
|
xpEarned: {
|
|
532
|
-
type:
|
|
532
|
+
type: _lssm_lib_schema1073.FieldType<number, number>;
|
|
533
533
|
isOptional: true;
|
|
534
534
|
};
|
|
535
535
|
triggeringEvent: {
|
|
536
|
-
type:
|
|
536
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
537
537
|
isOptional: true;
|
|
538
538
|
};
|
|
539
539
|
eventPayload: {
|
|
540
|
-
type:
|
|
540
|
+
type: _lssm_lib_schema1073.FieldType<unknown, unknown>;
|
|
541
541
|
isOptional: true;
|
|
542
542
|
};
|
|
543
543
|
completedAt: {
|
|
544
|
-
type:
|
|
544
|
+
type: _lssm_lib_schema1073.FieldType<Date, string>;
|
|
545
545
|
isOptional: true;
|
|
546
546
|
};
|
|
547
547
|
}>;
|
|
@@ -553,72 +553,72 @@ declare const ListOnboardingTracksContract: _lssm_lib_contracts36.ContractSpec<_
|
|
|
553
553
|
isOptional: true;
|
|
554
554
|
};
|
|
555
555
|
}>, undefined>;
|
|
556
|
-
declare const GetOnboardingProgressContract: _lssm_lib_contracts36.ContractSpec<
|
|
556
|
+
declare const GetOnboardingProgressContract: _lssm_lib_contracts36.ContractSpec<_lssm_lib_schema1073.SchemaModel<{
|
|
557
557
|
trackId: {
|
|
558
|
-
type:
|
|
558
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
559
559
|
isOptional: false;
|
|
560
560
|
};
|
|
561
561
|
learnerId: {
|
|
562
|
-
type:
|
|
562
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
563
563
|
isOptional: true;
|
|
564
564
|
};
|
|
565
|
-
}>,
|
|
565
|
+
}>, _lssm_lib_schema1073.SchemaModel<{
|
|
566
566
|
learnerId: {
|
|
567
|
-
type:
|
|
567
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
568
568
|
isOptional: true;
|
|
569
569
|
};
|
|
570
570
|
trackId: {
|
|
571
|
-
type:
|
|
571
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
572
572
|
isOptional: false;
|
|
573
573
|
};
|
|
574
574
|
progress: {
|
|
575
|
-
type:
|
|
575
|
+
type: _lssm_lib_schema1073.FieldType<number, number>;
|
|
576
576
|
isOptional: false;
|
|
577
577
|
};
|
|
578
578
|
isCompleted: {
|
|
579
|
-
type:
|
|
579
|
+
type: _lssm_lib_schema1073.FieldType<boolean, boolean>;
|
|
580
580
|
isOptional: false;
|
|
581
581
|
};
|
|
582
582
|
xpEarned: {
|
|
583
|
-
type:
|
|
583
|
+
type: _lssm_lib_schema1073.FieldType<number, number>;
|
|
584
584
|
isOptional: true;
|
|
585
585
|
};
|
|
586
586
|
startedAt: {
|
|
587
|
-
type:
|
|
587
|
+
type: _lssm_lib_schema1073.FieldType<Date, string>;
|
|
588
588
|
isOptional: true;
|
|
589
589
|
};
|
|
590
590
|
completedAt: {
|
|
591
|
-
type:
|
|
591
|
+
type: _lssm_lib_schema1073.FieldType<Date, string>;
|
|
592
592
|
isOptional: true;
|
|
593
593
|
};
|
|
594
594
|
lastActivityAt: {
|
|
595
|
-
type:
|
|
595
|
+
type: _lssm_lib_schema1073.FieldType<Date, string>;
|
|
596
596
|
isOptional: true;
|
|
597
597
|
};
|
|
598
598
|
steps: {
|
|
599
|
-
type:
|
|
599
|
+
type: _lssm_lib_schema1073.SchemaModel<{
|
|
600
600
|
stepId: {
|
|
601
|
-
type:
|
|
601
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
602
602
|
isOptional: false;
|
|
603
603
|
};
|
|
604
604
|
status: {
|
|
605
|
-
type:
|
|
605
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
606
606
|
isOptional: false;
|
|
607
607
|
};
|
|
608
608
|
xpEarned: {
|
|
609
|
-
type:
|
|
609
|
+
type: _lssm_lib_schema1073.FieldType<number, number>;
|
|
610
610
|
isOptional: true;
|
|
611
611
|
};
|
|
612
612
|
triggeringEvent: {
|
|
613
|
-
type:
|
|
613
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
614
614
|
isOptional: true;
|
|
615
615
|
};
|
|
616
616
|
eventPayload: {
|
|
617
|
-
type:
|
|
617
|
+
type: _lssm_lib_schema1073.FieldType<unknown, unknown>;
|
|
618
618
|
isOptional: true;
|
|
619
619
|
};
|
|
620
620
|
completedAt: {
|
|
621
|
-
type:
|
|
621
|
+
type: _lssm_lib_schema1073.FieldType<Date, string>;
|
|
622
622
|
isOptional: true;
|
|
623
623
|
};
|
|
624
624
|
}>;
|
|
@@ -626,38 +626,38 @@ declare const GetOnboardingProgressContract: _lssm_lib_contracts36.ContractSpec<
|
|
|
626
626
|
isOptional: true;
|
|
627
627
|
};
|
|
628
628
|
}>, undefined>;
|
|
629
|
-
declare const RecordOnboardingEventContract: _lssm_lib_contracts36.ContractSpec<
|
|
629
|
+
declare const RecordOnboardingEventContract: _lssm_lib_contracts36.ContractSpec<_lssm_lib_schema1073.SchemaModel<{
|
|
630
630
|
learnerId: {
|
|
631
|
-
type:
|
|
631
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
632
632
|
isOptional: false;
|
|
633
633
|
};
|
|
634
634
|
trackId: {
|
|
635
|
-
type:
|
|
635
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
636
636
|
isOptional: true;
|
|
637
637
|
};
|
|
638
638
|
eventName: {
|
|
639
|
-
type:
|
|
639
|
+
type: _lssm_lib_schema1073.FieldType<string, string>;
|
|
640
640
|
isOptional: false;
|
|
641
641
|
};
|
|
642
642
|
eventVersion: {
|
|
643
|
-
type:
|
|
643
|
+
type: _lssm_lib_schema1073.FieldType<number, number>;
|
|
644
644
|
isOptional: true;
|
|
645
645
|
};
|
|
646
646
|
eventPayload: {
|
|
647
|
-
type:
|
|
647
|
+
type: _lssm_lib_schema1073.FieldType<unknown, unknown>;
|
|
648
648
|
isOptional: true;
|
|
649
649
|
};
|
|
650
650
|
occurredAt: {
|
|
651
|
-
type:
|
|
651
|
+
type: _lssm_lib_schema1073.FieldType<Date, string>;
|
|
652
652
|
isOptional: true;
|
|
653
653
|
};
|
|
654
|
-
}>,
|
|
654
|
+
}>, _lssm_lib_schema1073.SchemaModel<{
|
|
655
655
|
success: {
|
|
656
|
-
type:
|
|
656
|
+
type: _lssm_lib_schema1073.FieldType<boolean, boolean>;
|
|
657
657
|
isOptional: false;
|
|
658
658
|
};
|
|
659
659
|
xpEarned: {
|
|
660
|
-
type:
|
|
660
|
+
type: _lssm_lib_schema1073.FieldType<number, number>;
|
|
661
661
|
isOptional: true;
|
|
662
662
|
};
|
|
663
663
|
}>, undefined>;
|