@lssm/example.crm-pipeline 0.0.0-canary-20251207012602 → 0.0.0-canary-20251207013726
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/.turbo/turbo-build.log +52 -52
- package/CHANGELOG.md +8 -8
- package/dist/contracts/deal.d.ts +199 -199
- package/dist/entities/company.d.ts +28 -28
- package/dist/entities/contact.d.ts +32 -32
- package/dist/entities/deal.d.ts +53 -53
- package/dist/entities/index.d.ts +147 -147
- package/dist/entities/task.d.ts +43 -43
- package/dist/events.d.ts +82 -82
- package/dist/index.d.ts +2 -2
- package/dist/presentations/index.d.ts +2 -2
- package/package.json +1 -1
- package/tsconfig.tsbuildinfo +1 -1
package/dist/entities/task.d.ts
CHANGED
|
@@ -1,64 +1,64 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _lssm_lib_schema453 from "@lssm/lib.schema";
|
|
2
2
|
|
|
3
3
|
//#region src/entities/task.d.ts
|
|
4
4
|
/**
|
|
5
5
|
* Task type enum.
|
|
6
6
|
*/
|
|
7
|
-
declare const TaskTypeEnum:
|
|
7
|
+
declare const TaskTypeEnum: _lssm_lib_schema453.EntityEnumDef;
|
|
8
8
|
/**
|
|
9
9
|
* Task priority enum.
|
|
10
10
|
*/
|
|
11
|
-
declare const TaskPriorityEnum:
|
|
11
|
+
declare const TaskPriorityEnum: _lssm_lib_schema453.EntityEnumDef;
|
|
12
12
|
/**
|
|
13
13
|
* Task status enum.
|
|
14
14
|
*/
|
|
15
|
-
declare const TaskStatusEnum:
|
|
15
|
+
declare const TaskStatusEnum: _lssm_lib_schema453.EntityEnumDef;
|
|
16
16
|
/**
|
|
17
17
|
* Task entity - follow-up activities.
|
|
18
18
|
*/
|
|
19
|
-
declare const TaskEntity:
|
|
20
|
-
id:
|
|
21
|
-
title:
|
|
22
|
-
description:
|
|
23
|
-
type:
|
|
24
|
-
priority:
|
|
25
|
-
status:
|
|
26
|
-
dueDate:
|
|
27
|
-
reminderAt:
|
|
28
|
-
contactId:
|
|
29
|
-
dealId:
|
|
30
|
-
companyId:
|
|
31
|
-
organizationId:
|
|
32
|
-
assignedTo:
|
|
33
|
-
createdBy:
|
|
34
|
-
completedAt:
|
|
35
|
-
completedBy:
|
|
36
|
-
createdAt:
|
|
37
|
-
updatedAt:
|
|
38
|
-
contact:
|
|
39
|
-
deal:
|
|
40
|
-
company:
|
|
19
|
+
declare const TaskEntity: _lssm_lib_schema453.EntitySpec<{
|
|
20
|
+
id: _lssm_lib_schema453.EntityScalarField;
|
|
21
|
+
title: _lssm_lib_schema453.EntityScalarField;
|
|
22
|
+
description: _lssm_lib_schema453.EntityScalarField;
|
|
23
|
+
type: _lssm_lib_schema453.EntityEnumField;
|
|
24
|
+
priority: _lssm_lib_schema453.EntityEnumField;
|
|
25
|
+
status: _lssm_lib_schema453.EntityEnumField;
|
|
26
|
+
dueDate: _lssm_lib_schema453.EntityScalarField;
|
|
27
|
+
reminderAt: _lssm_lib_schema453.EntityScalarField;
|
|
28
|
+
contactId: _lssm_lib_schema453.EntityScalarField;
|
|
29
|
+
dealId: _lssm_lib_schema453.EntityScalarField;
|
|
30
|
+
companyId: _lssm_lib_schema453.EntityScalarField;
|
|
31
|
+
organizationId: _lssm_lib_schema453.EntityScalarField;
|
|
32
|
+
assignedTo: _lssm_lib_schema453.EntityScalarField;
|
|
33
|
+
createdBy: _lssm_lib_schema453.EntityScalarField;
|
|
34
|
+
completedAt: _lssm_lib_schema453.EntityScalarField;
|
|
35
|
+
completedBy: _lssm_lib_schema453.EntityScalarField;
|
|
36
|
+
createdAt: _lssm_lib_schema453.EntityScalarField;
|
|
37
|
+
updatedAt: _lssm_lib_schema453.EntityScalarField;
|
|
38
|
+
contact: _lssm_lib_schema453.EntityRelationField;
|
|
39
|
+
deal: _lssm_lib_schema453.EntityRelationField;
|
|
40
|
+
company: _lssm_lib_schema453.EntityRelationField;
|
|
41
41
|
}>;
|
|
42
42
|
/**
|
|
43
43
|
* Activity entity - interaction history.
|
|
44
44
|
*/
|
|
45
|
-
declare const ActivityEntity:
|
|
46
|
-
id:
|
|
47
|
-
type:
|
|
48
|
-
subject:
|
|
49
|
-
description:
|
|
50
|
-
contactId:
|
|
51
|
-
dealId:
|
|
52
|
-
companyId:
|
|
53
|
-
organizationId:
|
|
54
|
-
performedBy:
|
|
55
|
-
outcome:
|
|
56
|
-
occurredAt:
|
|
57
|
-
duration:
|
|
58
|
-
createdAt:
|
|
59
|
-
contact:
|
|
60
|
-
deal:
|
|
61
|
-
company:
|
|
45
|
+
declare const ActivityEntity: _lssm_lib_schema453.EntitySpec<{
|
|
46
|
+
id: _lssm_lib_schema453.EntityScalarField;
|
|
47
|
+
type: _lssm_lib_schema453.EntityEnumField;
|
|
48
|
+
subject: _lssm_lib_schema453.EntityScalarField;
|
|
49
|
+
description: _lssm_lib_schema453.EntityScalarField;
|
|
50
|
+
contactId: _lssm_lib_schema453.EntityScalarField;
|
|
51
|
+
dealId: _lssm_lib_schema453.EntityScalarField;
|
|
52
|
+
companyId: _lssm_lib_schema453.EntityScalarField;
|
|
53
|
+
organizationId: _lssm_lib_schema453.EntityScalarField;
|
|
54
|
+
performedBy: _lssm_lib_schema453.EntityScalarField;
|
|
55
|
+
outcome: _lssm_lib_schema453.EntityScalarField;
|
|
56
|
+
occurredAt: _lssm_lib_schema453.EntityScalarField;
|
|
57
|
+
duration: _lssm_lib_schema453.EntityScalarField;
|
|
58
|
+
createdAt: _lssm_lib_schema453.EntityScalarField;
|
|
59
|
+
contact: _lssm_lib_schema453.EntityRelationField;
|
|
60
|
+
deal: _lssm_lib_schema453.EntityRelationField;
|
|
61
|
+
company: _lssm_lib_schema453.EntityRelationField;
|
|
62
62
|
}>;
|
|
63
63
|
//#endregion
|
|
64
64
|
export { ActivityEntity, TaskEntity, TaskPriorityEnum, TaskStatusEnum, TaskTypeEnum };
|
package/dist/events.d.ts
CHANGED
|
@@ -1,301 +1,301 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
1
|
+
import * as _lssm_lib_schema495 from "@lssm/lib.schema";
|
|
2
|
+
import * as _lssm_lib_contracts5 from "@lssm/lib.contracts";
|
|
3
3
|
|
|
4
4
|
//#region src/events.d.ts
|
|
5
|
-
declare const ContactCreatedEvent:
|
|
5
|
+
declare const ContactCreatedEvent: _lssm_lib_contracts5.EventSpec<_lssm_lib_schema495.SchemaModel<{
|
|
6
6
|
contactId: {
|
|
7
|
-
type:
|
|
7
|
+
type: _lssm_lib_schema495.FieldType<string, string>;
|
|
8
8
|
isOptional: false;
|
|
9
9
|
};
|
|
10
10
|
email: {
|
|
11
|
-
type:
|
|
11
|
+
type: _lssm_lib_schema495.FieldType<string, string>;
|
|
12
12
|
isOptional: true;
|
|
13
13
|
};
|
|
14
14
|
organizationId: {
|
|
15
|
-
type:
|
|
15
|
+
type: _lssm_lib_schema495.FieldType<string, string>;
|
|
16
16
|
isOptional: false;
|
|
17
17
|
};
|
|
18
18
|
ownerId: {
|
|
19
|
-
type:
|
|
19
|
+
type: _lssm_lib_schema495.FieldType<string, string>;
|
|
20
20
|
isOptional: false;
|
|
21
21
|
};
|
|
22
22
|
createdAt: {
|
|
23
|
-
type:
|
|
23
|
+
type: _lssm_lib_schema495.FieldType<Date, string>;
|
|
24
24
|
isOptional: false;
|
|
25
25
|
};
|
|
26
26
|
}>>;
|
|
27
|
-
declare const DealCreatedEvent:
|
|
27
|
+
declare const DealCreatedEvent: _lssm_lib_contracts5.EventSpec<_lssm_lib_schema495.SchemaModel<{
|
|
28
28
|
dealId: {
|
|
29
|
-
type:
|
|
29
|
+
type: _lssm_lib_schema495.FieldType<string, string>;
|
|
30
30
|
isOptional: false;
|
|
31
31
|
};
|
|
32
32
|
name: {
|
|
33
|
-
type:
|
|
33
|
+
type: _lssm_lib_schema495.FieldType<string, string>;
|
|
34
34
|
isOptional: false;
|
|
35
35
|
};
|
|
36
36
|
value: {
|
|
37
|
-
type:
|
|
37
|
+
type: _lssm_lib_schema495.FieldType<number, number>;
|
|
38
38
|
isOptional: false;
|
|
39
39
|
};
|
|
40
40
|
pipelineId: {
|
|
41
|
-
type:
|
|
41
|
+
type: _lssm_lib_schema495.FieldType<string, string>;
|
|
42
42
|
isOptional: false;
|
|
43
43
|
};
|
|
44
44
|
stageId: {
|
|
45
|
-
type:
|
|
45
|
+
type: _lssm_lib_schema495.FieldType<string, string>;
|
|
46
46
|
isOptional: false;
|
|
47
47
|
};
|
|
48
48
|
ownerId: {
|
|
49
|
-
type:
|
|
49
|
+
type: _lssm_lib_schema495.FieldType<string, string>;
|
|
50
50
|
isOptional: false;
|
|
51
51
|
};
|
|
52
52
|
createdAt: {
|
|
53
|
-
type:
|
|
53
|
+
type: _lssm_lib_schema495.FieldType<Date, string>;
|
|
54
54
|
isOptional: false;
|
|
55
55
|
};
|
|
56
56
|
}>>;
|
|
57
|
-
declare const DealMovedEvent:
|
|
57
|
+
declare const DealMovedEvent: _lssm_lib_contracts5.EventSpec<_lssm_lib_schema495.SchemaModel<{
|
|
58
58
|
dealId: {
|
|
59
|
-
type:
|
|
59
|
+
type: _lssm_lib_schema495.FieldType<string, string>;
|
|
60
60
|
isOptional: false;
|
|
61
61
|
};
|
|
62
62
|
fromStageId: {
|
|
63
|
-
type:
|
|
63
|
+
type: _lssm_lib_schema495.FieldType<string, string>;
|
|
64
64
|
isOptional: false;
|
|
65
65
|
};
|
|
66
66
|
toStageId: {
|
|
67
|
-
type:
|
|
67
|
+
type: _lssm_lib_schema495.FieldType<string, string>;
|
|
68
68
|
isOptional: false;
|
|
69
69
|
};
|
|
70
70
|
movedBy: {
|
|
71
|
-
type:
|
|
71
|
+
type: _lssm_lib_schema495.FieldType<string, string>;
|
|
72
72
|
isOptional: false;
|
|
73
73
|
};
|
|
74
74
|
movedAt: {
|
|
75
|
-
type:
|
|
75
|
+
type: _lssm_lib_schema495.FieldType<Date, string>;
|
|
76
76
|
isOptional: false;
|
|
77
77
|
};
|
|
78
78
|
}>>;
|
|
79
|
-
declare const DealWonEvent:
|
|
79
|
+
declare const DealWonEvent: _lssm_lib_contracts5.EventSpec<_lssm_lib_schema495.SchemaModel<{
|
|
80
80
|
dealId: {
|
|
81
|
-
type:
|
|
81
|
+
type: _lssm_lib_schema495.FieldType<string, string>;
|
|
82
82
|
isOptional: false;
|
|
83
83
|
};
|
|
84
84
|
value: {
|
|
85
|
-
type:
|
|
85
|
+
type: _lssm_lib_schema495.FieldType<number, number>;
|
|
86
86
|
isOptional: false;
|
|
87
87
|
};
|
|
88
88
|
currency: {
|
|
89
|
-
type:
|
|
89
|
+
type: _lssm_lib_schema495.FieldType<string, string>;
|
|
90
90
|
isOptional: false;
|
|
91
91
|
};
|
|
92
92
|
contactId: {
|
|
93
|
-
type:
|
|
93
|
+
type: _lssm_lib_schema495.FieldType<string, string>;
|
|
94
94
|
isOptional: true;
|
|
95
95
|
};
|
|
96
96
|
companyId: {
|
|
97
|
-
type:
|
|
97
|
+
type: _lssm_lib_schema495.FieldType<string, string>;
|
|
98
98
|
isOptional: true;
|
|
99
99
|
};
|
|
100
100
|
ownerId: {
|
|
101
|
-
type:
|
|
101
|
+
type: _lssm_lib_schema495.FieldType<string, string>;
|
|
102
102
|
isOptional: false;
|
|
103
103
|
};
|
|
104
104
|
wonAt: {
|
|
105
|
-
type:
|
|
105
|
+
type: _lssm_lib_schema495.FieldType<Date, string>;
|
|
106
106
|
isOptional: false;
|
|
107
107
|
};
|
|
108
108
|
}>>;
|
|
109
|
-
declare const DealLostEvent:
|
|
109
|
+
declare const DealLostEvent: _lssm_lib_contracts5.EventSpec<_lssm_lib_schema495.SchemaModel<{
|
|
110
110
|
dealId: {
|
|
111
|
-
type:
|
|
111
|
+
type: _lssm_lib_schema495.FieldType<string, string>;
|
|
112
112
|
isOptional: false;
|
|
113
113
|
};
|
|
114
114
|
value: {
|
|
115
|
-
type:
|
|
115
|
+
type: _lssm_lib_schema495.FieldType<number, number>;
|
|
116
116
|
isOptional: false;
|
|
117
117
|
};
|
|
118
118
|
reason: {
|
|
119
|
-
type:
|
|
119
|
+
type: _lssm_lib_schema495.FieldType<string, string>;
|
|
120
120
|
isOptional: false;
|
|
121
121
|
};
|
|
122
122
|
ownerId: {
|
|
123
|
-
type:
|
|
123
|
+
type: _lssm_lib_schema495.FieldType<string, string>;
|
|
124
124
|
isOptional: false;
|
|
125
125
|
};
|
|
126
126
|
lostAt: {
|
|
127
|
-
type:
|
|
127
|
+
type: _lssm_lib_schema495.FieldType<Date, string>;
|
|
128
128
|
isOptional: false;
|
|
129
129
|
};
|
|
130
130
|
}>>;
|
|
131
|
-
declare const TaskCompletedEvent:
|
|
131
|
+
declare const TaskCompletedEvent: _lssm_lib_contracts5.EventSpec<_lssm_lib_schema495.SchemaModel<{
|
|
132
132
|
taskId: {
|
|
133
|
-
type:
|
|
133
|
+
type: _lssm_lib_schema495.FieldType<string, string>;
|
|
134
134
|
isOptional: false;
|
|
135
135
|
};
|
|
136
136
|
type: {
|
|
137
|
-
type:
|
|
137
|
+
type: _lssm_lib_schema495.FieldType<string, string>;
|
|
138
138
|
isOptional: false;
|
|
139
139
|
};
|
|
140
140
|
assignedTo: {
|
|
141
|
-
type:
|
|
141
|
+
type: _lssm_lib_schema495.FieldType<string, string>;
|
|
142
142
|
isOptional: false;
|
|
143
143
|
};
|
|
144
144
|
completedBy: {
|
|
145
|
-
type:
|
|
145
|
+
type: _lssm_lib_schema495.FieldType<string, string>;
|
|
146
146
|
isOptional: false;
|
|
147
147
|
};
|
|
148
148
|
completedAt: {
|
|
149
|
-
type:
|
|
149
|
+
type: _lssm_lib_schema495.FieldType<Date, string>;
|
|
150
150
|
isOptional: false;
|
|
151
151
|
};
|
|
152
152
|
}>>;
|
|
153
153
|
declare const CrmPipelineEvents: {
|
|
154
|
-
ContactCreatedEvent:
|
|
154
|
+
ContactCreatedEvent: _lssm_lib_contracts5.EventSpec<_lssm_lib_schema495.SchemaModel<{
|
|
155
155
|
contactId: {
|
|
156
|
-
type:
|
|
156
|
+
type: _lssm_lib_schema495.FieldType<string, string>;
|
|
157
157
|
isOptional: false;
|
|
158
158
|
};
|
|
159
159
|
email: {
|
|
160
|
-
type:
|
|
160
|
+
type: _lssm_lib_schema495.FieldType<string, string>;
|
|
161
161
|
isOptional: true;
|
|
162
162
|
};
|
|
163
163
|
organizationId: {
|
|
164
|
-
type:
|
|
164
|
+
type: _lssm_lib_schema495.FieldType<string, string>;
|
|
165
165
|
isOptional: false;
|
|
166
166
|
};
|
|
167
167
|
ownerId: {
|
|
168
|
-
type:
|
|
168
|
+
type: _lssm_lib_schema495.FieldType<string, string>;
|
|
169
169
|
isOptional: false;
|
|
170
170
|
};
|
|
171
171
|
createdAt: {
|
|
172
|
-
type:
|
|
172
|
+
type: _lssm_lib_schema495.FieldType<Date, string>;
|
|
173
173
|
isOptional: false;
|
|
174
174
|
};
|
|
175
175
|
}>>;
|
|
176
|
-
DealCreatedEvent:
|
|
176
|
+
DealCreatedEvent: _lssm_lib_contracts5.EventSpec<_lssm_lib_schema495.SchemaModel<{
|
|
177
177
|
dealId: {
|
|
178
|
-
type:
|
|
178
|
+
type: _lssm_lib_schema495.FieldType<string, string>;
|
|
179
179
|
isOptional: false;
|
|
180
180
|
};
|
|
181
181
|
name: {
|
|
182
|
-
type:
|
|
182
|
+
type: _lssm_lib_schema495.FieldType<string, string>;
|
|
183
183
|
isOptional: false;
|
|
184
184
|
};
|
|
185
185
|
value: {
|
|
186
|
-
type:
|
|
186
|
+
type: _lssm_lib_schema495.FieldType<number, number>;
|
|
187
187
|
isOptional: false;
|
|
188
188
|
};
|
|
189
189
|
pipelineId: {
|
|
190
|
-
type:
|
|
190
|
+
type: _lssm_lib_schema495.FieldType<string, string>;
|
|
191
191
|
isOptional: false;
|
|
192
192
|
};
|
|
193
193
|
stageId: {
|
|
194
|
-
type:
|
|
194
|
+
type: _lssm_lib_schema495.FieldType<string, string>;
|
|
195
195
|
isOptional: false;
|
|
196
196
|
};
|
|
197
197
|
ownerId: {
|
|
198
|
-
type:
|
|
198
|
+
type: _lssm_lib_schema495.FieldType<string, string>;
|
|
199
199
|
isOptional: false;
|
|
200
200
|
};
|
|
201
201
|
createdAt: {
|
|
202
|
-
type:
|
|
202
|
+
type: _lssm_lib_schema495.FieldType<Date, string>;
|
|
203
203
|
isOptional: false;
|
|
204
204
|
};
|
|
205
205
|
}>>;
|
|
206
|
-
DealMovedEvent:
|
|
206
|
+
DealMovedEvent: _lssm_lib_contracts5.EventSpec<_lssm_lib_schema495.SchemaModel<{
|
|
207
207
|
dealId: {
|
|
208
|
-
type:
|
|
208
|
+
type: _lssm_lib_schema495.FieldType<string, string>;
|
|
209
209
|
isOptional: false;
|
|
210
210
|
};
|
|
211
211
|
fromStageId: {
|
|
212
|
-
type:
|
|
212
|
+
type: _lssm_lib_schema495.FieldType<string, string>;
|
|
213
213
|
isOptional: false;
|
|
214
214
|
};
|
|
215
215
|
toStageId: {
|
|
216
|
-
type:
|
|
216
|
+
type: _lssm_lib_schema495.FieldType<string, string>;
|
|
217
217
|
isOptional: false;
|
|
218
218
|
};
|
|
219
219
|
movedBy: {
|
|
220
|
-
type:
|
|
220
|
+
type: _lssm_lib_schema495.FieldType<string, string>;
|
|
221
221
|
isOptional: false;
|
|
222
222
|
};
|
|
223
223
|
movedAt: {
|
|
224
|
-
type:
|
|
224
|
+
type: _lssm_lib_schema495.FieldType<Date, string>;
|
|
225
225
|
isOptional: false;
|
|
226
226
|
};
|
|
227
227
|
}>>;
|
|
228
|
-
DealWonEvent:
|
|
228
|
+
DealWonEvent: _lssm_lib_contracts5.EventSpec<_lssm_lib_schema495.SchemaModel<{
|
|
229
229
|
dealId: {
|
|
230
|
-
type:
|
|
230
|
+
type: _lssm_lib_schema495.FieldType<string, string>;
|
|
231
231
|
isOptional: false;
|
|
232
232
|
};
|
|
233
233
|
value: {
|
|
234
|
-
type:
|
|
234
|
+
type: _lssm_lib_schema495.FieldType<number, number>;
|
|
235
235
|
isOptional: false;
|
|
236
236
|
};
|
|
237
237
|
currency: {
|
|
238
|
-
type:
|
|
238
|
+
type: _lssm_lib_schema495.FieldType<string, string>;
|
|
239
239
|
isOptional: false;
|
|
240
240
|
};
|
|
241
241
|
contactId: {
|
|
242
|
-
type:
|
|
242
|
+
type: _lssm_lib_schema495.FieldType<string, string>;
|
|
243
243
|
isOptional: true;
|
|
244
244
|
};
|
|
245
245
|
companyId: {
|
|
246
|
-
type:
|
|
246
|
+
type: _lssm_lib_schema495.FieldType<string, string>;
|
|
247
247
|
isOptional: true;
|
|
248
248
|
};
|
|
249
249
|
ownerId: {
|
|
250
|
-
type:
|
|
250
|
+
type: _lssm_lib_schema495.FieldType<string, string>;
|
|
251
251
|
isOptional: false;
|
|
252
252
|
};
|
|
253
253
|
wonAt: {
|
|
254
|
-
type:
|
|
254
|
+
type: _lssm_lib_schema495.FieldType<Date, string>;
|
|
255
255
|
isOptional: false;
|
|
256
256
|
};
|
|
257
257
|
}>>;
|
|
258
|
-
DealLostEvent:
|
|
258
|
+
DealLostEvent: _lssm_lib_contracts5.EventSpec<_lssm_lib_schema495.SchemaModel<{
|
|
259
259
|
dealId: {
|
|
260
|
-
type:
|
|
260
|
+
type: _lssm_lib_schema495.FieldType<string, string>;
|
|
261
261
|
isOptional: false;
|
|
262
262
|
};
|
|
263
263
|
value: {
|
|
264
|
-
type:
|
|
264
|
+
type: _lssm_lib_schema495.FieldType<number, number>;
|
|
265
265
|
isOptional: false;
|
|
266
266
|
};
|
|
267
267
|
reason: {
|
|
268
|
-
type:
|
|
268
|
+
type: _lssm_lib_schema495.FieldType<string, string>;
|
|
269
269
|
isOptional: false;
|
|
270
270
|
};
|
|
271
271
|
ownerId: {
|
|
272
|
-
type:
|
|
272
|
+
type: _lssm_lib_schema495.FieldType<string, string>;
|
|
273
273
|
isOptional: false;
|
|
274
274
|
};
|
|
275
275
|
lostAt: {
|
|
276
|
-
type:
|
|
276
|
+
type: _lssm_lib_schema495.FieldType<Date, string>;
|
|
277
277
|
isOptional: false;
|
|
278
278
|
};
|
|
279
279
|
}>>;
|
|
280
|
-
TaskCompletedEvent:
|
|
280
|
+
TaskCompletedEvent: _lssm_lib_contracts5.EventSpec<_lssm_lib_schema495.SchemaModel<{
|
|
281
281
|
taskId: {
|
|
282
|
-
type:
|
|
282
|
+
type: _lssm_lib_schema495.FieldType<string, string>;
|
|
283
283
|
isOptional: false;
|
|
284
284
|
};
|
|
285
285
|
type: {
|
|
286
|
-
type:
|
|
286
|
+
type: _lssm_lib_schema495.FieldType<string, string>;
|
|
287
287
|
isOptional: false;
|
|
288
288
|
};
|
|
289
289
|
assignedTo: {
|
|
290
|
-
type:
|
|
290
|
+
type: _lssm_lib_schema495.FieldType<string, string>;
|
|
291
291
|
isOptional: false;
|
|
292
292
|
};
|
|
293
293
|
completedBy: {
|
|
294
|
-
type:
|
|
294
|
+
type: _lssm_lib_schema495.FieldType<string, string>;
|
|
295
295
|
isOptional: false;
|
|
296
296
|
};
|
|
297
297
|
completedAt: {
|
|
298
|
-
type:
|
|
298
|
+
type: _lssm_lib_schema495.FieldType<Date, string>;
|
|
299
299
|
isOptional: false;
|
|
300
300
|
};
|
|
301
301
|
}>>;
|
package/dist/index.d.ts
CHANGED
|
@@ -11,14 +11,14 @@ import { CreateDealInput, Deal, ListDealsInput, ListDealsOutput, LoseDealInput,
|
|
|
11
11
|
import { DealCardPresentation, DealDetailPresentation, DealListPresentation, PipelineKanbanPresentation } from "./presentations/pipeline.js";
|
|
12
12
|
import { CrmDashboardPresentation, PipelineMetricsPresentation } from "./presentations/dashboard.js";
|
|
13
13
|
import { CrmPipelinePresentations } from "./presentations/index.js";
|
|
14
|
-
import * as
|
|
14
|
+
import * as _lssm_lib_schema248 from "@lssm/lib.schema";
|
|
15
15
|
|
|
16
16
|
//#region src/index.d.ts
|
|
17
17
|
/**
|
|
18
18
|
* Complete schema composition for CRM Pipeline.
|
|
19
19
|
*/
|
|
20
20
|
declare const schemaComposition: {
|
|
21
|
-
modules:
|
|
21
|
+
modules: _lssm_lib_schema248.ModuleSchemaContribution[];
|
|
22
22
|
provider: "postgresql";
|
|
23
23
|
outputPath: string;
|
|
24
24
|
};
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { DealCardPresentation, DealDetailPresentation, DealListPresentation, PipelineKanbanPresentation } from "./pipeline.js";
|
|
2
2
|
import { CrmDashboardPresentation, PipelineMetricsPresentation } from "./dashboard.js";
|
|
3
|
-
import * as
|
|
3
|
+
import * as _lssm_lib_contracts4 from "@lssm/lib.contracts";
|
|
4
4
|
|
|
5
5
|
//#region src/presentations/index.d.ts
|
|
6
|
-
declare const CrmPipelinePresentations:
|
|
6
|
+
declare const CrmPipelinePresentations: _lssm_lib_contracts4.PresentationDescriptorV2[];
|
|
7
7
|
//#endregion
|
|
8
8
|
export { CrmDashboardPresentation, CrmPipelinePresentations, DealCardPresentation, DealDetailPresentation, DealListPresentation, PipelineKanbanPresentation, PipelineMetricsPresentation };
|
package/package.json
CHANGED