@lssm/example.team-hub 0.0.0-canary-20251217073102 → 0.0.0-canary-20251217083314
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/announcement/announcement.contracts.d.ts +16 -16
- package/dist/announcement/announcement.schema.d.ts +15 -15
- package/dist/entities/index.d.ts +137 -137
- package/dist/events.d.ts +78 -78
- package/dist/ritual/ritual.contracts.d.ts +28 -28
- package/dist/ritual/ritual.schema.d.ts +20 -20
- package/dist/space/space.contracts.d.ts +13 -13
- package/dist/space/space.schema.d.ts +12 -12
- package/dist/task/task.contracts.d.ts +60 -60
- package/dist/task/task.schema.d.ts +19 -19
- package/package.json +10 -10
|
@@ -1,49 +1,49 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _lssm_lib_schema353 from "@lssm/lib.schema";
|
|
2
2
|
|
|
3
3
|
//#region src/space/space.schema.d.ts
|
|
4
4
|
/**
|
|
5
5
|
* Team space/project.
|
|
6
6
|
*/
|
|
7
|
-
declare const SpaceModel:
|
|
7
|
+
declare const SpaceModel: _lssm_lib_schema353.SchemaModel<{
|
|
8
8
|
id: {
|
|
9
|
-
type:
|
|
9
|
+
type: _lssm_lib_schema353.FieldType<string, string>;
|
|
10
10
|
isOptional: false;
|
|
11
11
|
};
|
|
12
12
|
name: {
|
|
13
|
-
type:
|
|
13
|
+
type: _lssm_lib_schema353.FieldType<string, string>;
|
|
14
14
|
isOptional: false;
|
|
15
15
|
};
|
|
16
16
|
description: {
|
|
17
|
-
type:
|
|
17
|
+
type: _lssm_lib_schema353.FieldType<string, string>;
|
|
18
18
|
isOptional: true;
|
|
19
19
|
};
|
|
20
20
|
orgId: {
|
|
21
|
-
type:
|
|
21
|
+
type: _lssm_lib_schema353.FieldType<string, string>;
|
|
22
22
|
isOptional: false;
|
|
23
23
|
};
|
|
24
24
|
ownerId: {
|
|
25
|
-
type:
|
|
25
|
+
type: _lssm_lib_schema353.FieldType<string, string>;
|
|
26
26
|
isOptional: false;
|
|
27
27
|
};
|
|
28
28
|
}>;
|
|
29
29
|
/**
|
|
30
30
|
* Input for creating a space.
|
|
31
31
|
*/
|
|
32
|
-
declare const CreateSpaceInputModel:
|
|
32
|
+
declare const CreateSpaceInputModel: _lssm_lib_schema353.SchemaModel<{
|
|
33
33
|
name: {
|
|
34
|
-
type:
|
|
34
|
+
type: _lssm_lib_schema353.FieldType<string, string>;
|
|
35
35
|
isOptional: false;
|
|
36
36
|
};
|
|
37
37
|
description: {
|
|
38
|
-
type:
|
|
38
|
+
type: _lssm_lib_schema353.FieldType<string, string>;
|
|
39
39
|
isOptional: true;
|
|
40
40
|
};
|
|
41
41
|
orgId: {
|
|
42
|
-
type:
|
|
42
|
+
type: _lssm_lib_schema353.FieldType<string, string>;
|
|
43
43
|
isOptional: false;
|
|
44
44
|
};
|
|
45
45
|
ownerId: {
|
|
46
|
-
type:
|
|
46
|
+
type: _lssm_lib_schema353.FieldType<string, string>;
|
|
47
47
|
isOptional: false;
|
|
48
48
|
};
|
|
49
49
|
}>;
|
|
@@ -1,58 +1,58 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
1
|
+
import * as _lssm_lib_schema251 from "@lssm/lib.schema";
|
|
2
|
+
import * as _lssm_lib_contracts14 from "@lssm/lib.contracts";
|
|
3
3
|
|
|
4
4
|
//#region src/task/task.contracts.d.ts
|
|
5
|
-
declare const ListTasksInputModel:
|
|
5
|
+
declare const ListTasksInputModel: _lssm_lib_schema251.SchemaModel<{
|
|
6
6
|
spaceId: {
|
|
7
|
-
type:
|
|
7
|
+
type: _lssm_lib_schema251.FieldType<string, string>;
|
|
8
8
|
isOptional: true;
|
|
9
9
|
};
|
|
10
10
|
status: {
|
|
11
|
-
type:
|
|
11
|
+
type: _lssm_lib_schema251.FieldType<string, string>;
|
|
12
12
|
isOptional: true;
|
|
13
13
|
};
|
|
14
14
|
assigneeId: {
|
|
15
|
-
type:
|
|
15
|
+
type: _lssm_lib_schema251.FieldType<string, string>;
|
|
16
16
|
isOptional: true;
|
|
17
17
|
};
|
|
18
18
|
limit: {
|
|
19
|
-
type:
|
|
19
|
+
type: _lssm_lib_schema251.FieldType<number, number>;
|
|
20
20
|
isOptional: true;
|
|
21
21
|
};
|
|
22
22
|
offset: {
|
|
23
|
-
type:
|
|
23
|
+
type: _lssm_lib_schema251.FieldType<number, number>;
|
|
24
24
|
isOptional: true;
|
|
25
25
|
};
|
|
26
26
|
}>;
|
|
27
|
-
declare const ListTasksOutputModel:
|
|
27
|
+
declare const ListTasksOutputModel: _lssm_lib_schema251.SchemaModel<{
|
|
28
28
|
tasks: {
|
|
29
|
-
type:
|
|
29
|
+
type: _lssm_lib_schema251.SchemaModel<{
|
|
30
30
|
id: {
|
|
31
|
-
type:
|
|
31
|
+
type: _lssm_lib_schema251.FieldType<string, string>;
|
|
32
32
|
isOptional: false;
|
|
33
33
|
};
|
|
34
34
|
spaceId: {
|
|
35
|
-
type:
|
|
35
|
+
type: _lssm_lib_schema251.FieldType<string, string>;
|
|
36
36
|
isOptional: false;
|
|
37
37
|
};
|
|
38
38
|
title: {
|
|
39
|
-
type:
|
|
39
|
+
type: _lssm_lib_schema251.FieldType<string, string>;
|
|
40
40
|
isOptional: false;
|
|
41
41
|
};
|
|
42
42
|
status: {
|
|
43
|
-
type:
|
|
43
|
+
type: _lssm_lib_schema251.FieldType<string, string>;
|
|
44
44
|
isOptional: false;
|
|
45
45
|
};
|
|
46
46
|
priority: {
|
|
47
|
-
type:
|
|
47
|
+
type: _lssm_lib_schema251.FieldType<string, string>;
|
|
48
48
|
isOptional: false;
|
|
49
49
|
};
|
|
50
50
|
assigneeId: {
|
|
51
|
-
type:
|
|
51
|
+
type: _lssm_lib_schema251.FieldType<string, string>;
|
|
52
52
|
isOptional: true;
|
|
53
53
|
};
|
|
54
54
|
dueDate: {
|
|
55
|
-
type:
|
|
55
|
+
type: _lssm_lib_schema251.FieldType<Date, string>;
|
|
56
56
|
isOptional: true;
|
|
57
57
|
};
|
|
58
58
|
}>;
|
|
@@ -60,60 +60,60 @@ declare const ListTasksOutputModel: _lssm_lib_schema54.SchemaModel<{
|
|
|
60
60
|
isList: boolean;
|
|
61
61
|
};
|
|
62
62
|
total: {
|
|
63
|
-
type:
|
|
63
|
+
type: _lssm_lib_schema251.FieldType<number, number>;
|
|
64
64
|
isOptional: false;
|
|
65
65
|
};
|
|
66
66
|
}>;
|
|
67
|
-
declare const ListTasksOperation:
|
|
67
|
+
declare const ListTasksOperation: _lssm_lib_contracts14.ContractSpec<_lssm_lib_schema251.SchemaModel<{
|
|
68
68
|
spaceId: {
|
|
69
|
-
type:
|
|
69
|
+
type: _lssm_lib_schema251.FieldType<string, string>;
|
|
70
70
|
isOptional: true;
|
|
71
71
|
};
|
|
72
72
|
status: {
|
|
73
|
-
type:
|
|
73
|
+
type: _lssm_lib_schema251.FieldType<string, string>;
|
|
74
74
|
isOptional: true;
|
|
75
75
|
};
|
|
76
76
|
assigneeId: {
|
|
77
|
-
type:
|
|
77
|
+
type: _lssm_lib_schema251.FieldType<string, string>;
|
|
78
78
|
isOptional: true;
|
|
79
79
|
};
|
|
80
80
|
limit: {
|
|
81
|
-
type:
|
|
81
|
+
type: _lssm_lib_schema251.FieldType<number, number>;
|
|
82
82
|
isOptional: true;
|
|
83
83
|
};
|
|
84
84
|
offset: {
|
|
85
|
-
type:
|
|
85
|
+
type: _lssm_lib_schema251.FieldType<number, number>;
|
|
86
86
|
isOptional: true;
|
|
87
87
|
};
|
|
88
|
-
}>,
|
|
88
|
+
}>, _lssm_lib_schema251.SchemaModel<{
|
|
89
89
|
tasks: {
|
|
90
|
-
type:
|
|
90
|
+
type: _lssm_lib_schema251.SchemaModel<{
|
|
91
91
|
id: {
|
|
92
|
-
type:
|
|
92
|
+
type: _lssm_lib_schema251.FieldType<string, string>;
|
|
93
93
|
isOptional: false;
|
|
94
94
|
};
|
|
95
95
|
spaceId: {
|
|
96
|
-
type:
|
|
96
|
+
type: _lssm_lib_schema251.FieldType<string, string>;
|
|
97
97
|
isOptional: false;
|
|
98
98
|
};
|
|
99
99
|
title: {
|
|
100
|
-
type:
|
|
100
|
+
type: _lssm_lib_schema251.FieldType<string, string>;
|
|
101
101
|
isOptional: false;
|
|
102
102
|
};
|
|
103
103
|
status: {
|
|
104
|
-
type:
|
|
104
|
+
type: _lssm_lib_schema251.FieldType<string, string>;
|
|
105
105
|
isOptional: false;
|
|
106
106
|
};
|
|
107
107
|
priority: {
|
|
108
|
-
type:
|
|
108
|
+
type: _lssm_lib_schema251.FieldType<string, string>;
|
|
109
109
|
isOptional: false;
|
|
110
110
|
};
|
|
111
111
|
assigneeId: {
|
|
112
|
-
type:
|
|
112
|
+
type: _lssm_lib_schema251.FieldType<string, string>;
|
|
113
113
|
isOptional: true;
|
|
114
114
|
};
|
|
115
115
|
dueDate: {
|
|
116
|
-
type:
|
|
116
|
+
type: _lssm_lib_schema251.FieldType<Date, string>;
|
|
117
117
|
isOptional: true;
|
|
118
118
|
};
|
|
119
119
|
}>;
|
|
@@ -121,107 +121,107 @@ declare const ListTasksOperation: _lssm_lib_contracts1.ContractSpec<_lssm_lib_sc
|
|
|
121
121
|
isList: boolean;
|
|
122
122
|
};
|
|
123
123
|
total: {
|
|
124
|
-
type:
|
|
124
|
+
type: _lssm_lib_schema251.FieldType<number, number>;
|
|
125
125
|
isOptional: false;
|
|
126
126
|
};
|
|
127
127
|
}>, undefined>;
|
|
128
128
|
/**
|
|
129
129
|
* Create a task.
|
|
130
130
|
*/
|
|
131
|
-
declare const CreateTaskContract:
|
|
131
|
+
declare const CreateTaskContract: _lssm_lib_contracts14.ContractSpec<_lssm_lib_schema251.SchemaModel<{
|
|
132
132
|
spaceId: {
|
|
133
|
-
type:
|
|
133
|
+
type: _lssm_lib_schema251.FieldType<string, string>;
|
|
134
134
|
isOptional: false;
|
|
135
135
|
};
|
|
136
136
|
title: {
|
|
137
|
-
type:
|
|
137
|
+
type: _lssm_lib_schema251.FieldType<string, string>;
|
|
138
138
|
isOptional: false;
|
|
139
139
|
};
|
|
140
140
|
description: {
|
|
141
|
-
type:
|
|
141
|
+
type: _lssm_lib_schema251.FieldType<string, string>;
|
|
142
142
|
isOptional: true;
|
|
143
143
|
};
|
|
144
144
|
priority: {
|
|
145
|
-
type:
|
|
145
|
+
type: _lssm_lib_schema251.FieldType<string, string>;
|
|
146
146
|
isOptional: true;
|
|
147
147
|
};
|
|
148
148
|
assigneeId: {
|
|
149
|
-
type:
|
|
149
|
+
type: _lssm_lib_schema251.FieldType<string, string>;
|
|
150
150
|
isOptional: true;
|
|
151
151
|
};
|
|
152
152
|
dueDate: {
|
|
153
|
-
type:
|
|
153
|
+
type: _lssm_lib_schema251.FieldType<Date, string>;
|
|
154
154
|
isOptional: true;
|
|
155
155
|
};
|
|
156
|
-
}>,
|
|
156
|
+
}>, _lssm_lib_schema251.SchemaModel<{
|
|
157
157
|
id: {
|
|
158
|
-
type:
|
|
158
|
+
type: _lssm_lib_schema251.FieldType<string, string>;
|
|
159
159
|
isOptional: false;
|
|
160
160
|
};
|
|
161
161
|
spaceId: {
|
|
162
|
-
type:
|
|
162
|
+
type: _lssm_lib_schema251.FieldType<string, string>;
|
|
163
163
|
isOptional: false;
|
|
164
164
|
};
|
|
165
165
|
title: {
|
|
166
|
-
type:
|
|
166
|
+
type: _lssm_lib_schema251.FieldType<string, string>;
|
|
167
167
|
isOptional: false;
|
|
168
168
|
};
|
|
169
169
|
status: {
|
|
170
|
-
type:
|
|
170
|
+
type: _lssm_lib_schema251.FieldType<string, string>;
|
|
171
171
|
isOptional: false;
|
|
172
172
|
};
|
|
173
173
|
priority: {
|
|
174
|
-
type:
|
|
174
|
+
type: _lssm_lib_schema251.FieldType<string, string>;
|
|
175
175
|
isOptional: false;
|
|
176
176
|
};
|
|
177
177
|
assigneeId: {
|
|
178
|
-
type:
|
|
178
|
+
type: _lssm_lib_schema251.FieldType<string, string>;
|
|
179
179
|
isOptional: true;
|
|
180
180
|
};
|
|
181
181
|
dueDate: {
|
|
182
|
-
type:
|
|
182
|
+
type: _lssm_lib_schema251.FieldType<Date, string>;
|
|
183
183
|
isOptional: true;
|
|
184
184
|
};
|
|
185
185
|
}>, undefined>;
|
|
186
186
|
/**
|
|
187
187
|
* Update task status.
|
|
188
188
|
*/
|
|
189
|
-
declare const UpdateTaskStatusContract:
|
|
189
|
+
declare const UpdateTaskStatusContract: _lssm_lib_contracts14.ContractSpec<_lssm_lib_schema251.SchemaModel<{
|
|
190
190
|
taskId: {
|
|
191
|
-
type:
|
|
191
|
+
type: _lssm_lib_schema251.FieldType<string, string>;
|
|
192
192
|
isOptional: false;
|
|
193
193
|
};
|
|
194
194
|
status: {
|
|
195
|
-
type:
|
|
195
|
+
type: _lssm_lib_schema251.FieldType<string, string>;
|
|
196
196
|
isOptional: false;
|
|
197
197
|
};
|
|
198
|
-
}>,
|
|
198
|
+
}>, _lssm_lib_schema251.SchemaModel<{
|
|
199
199
|
id: {
|
|
200
|
-
type:
|
|
200
|
+
type: _lssm_lib_schema251.FieldType<string, string>;
|
|
201
201
|
isOptional: false;
|
|
202
202
|
};
|
|
203
203
|
spaceId: {
|
|
204
|
-
type:
|
|
204
|
+
type: _lssm_lib_schema251.FieldType<string, string>;
|
|
205
205
|
isOptional: false;
|
|
206
206
|
};
|
|
207
207
|
title: {
|
|
208
|
-
type:
|
|
208
|
+
type: _lssm_lib_schema251.FieldType<string, string>;
|
|
209
209
|
isOptional: false;
|
|
210
210
|
};
|
|
211
211
|
status: {
|
|
212
|
-
type:
|
|
212
|
+
type: _lssm_lib_schema251.FieldType<string, string>;
|
|
213
213
|
isOptional: false;
|
|
214
214
|
};
|
|
215
215
|
priority: {
|
|
216
|
-
type:
|
|
216
|
+
type: _lssm_lib_schema251.FieldType<string, string>;
|
|
217
217
|
isOptional: false;
|
|
218
218
|
};
|
|
219
219
|
assigneeId: {
|
|
220
|
-
type:
|
|
220
|
+
type: _lssm_lib_schema251.FieldType<string, string>;
|
|
221
221
|
isOptional: true;
|
|
222
222
|
};
|
|
223
223
|
dueDate: {
|
|
224
|
-
type:
|
|
224
|
+
type: _lssm_lib_schema251.FieldType<Date, string>;
|
|
225
225
|
isOptional: true;
|
|
226
226
|
};
|
|
227
227
|
}>, undefined>;
|
|
@@ -1,78 +1,78 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _lssm_lib_schema364 from "@lssm/lib.schema";
|
|
2
2
|
|
|
3
3
|
//#region src/task/task.schema.d.ts
|
|
4
4
|
/**
|
|
5
5
|
* Task in a space.
|
|
6
6
|
*/
|
|
7
|
-
declare const TaskModel:
|
|
7
|
+
declare const TaskModel: _lssm_lib_schema364.SchemaModel<{
|
|
8
8
|
id: {
|
|
9
|
-
type:
|
|
9
|
+
type: _lssm_lib_schema364.FieldType<string, string>;
|
|
10
10
|
isOptional: false;
|
|
11
11
|
};
|
|
12
12
|
spaceId: {
|
|
13
|
-
type:
|
|
13
|
+
type: _lssm_lib_schema364.FieldType<string, string>;
|
|
14
14
|
isOptional: false;
|
|
15
15
|
};
|
|
16
16
|
title: {
|
|
17
|
-
type:
|
|
17
|
+
type: _lssm_lib_schema364.FieldType<string, string>;
|
|
18
18
|
isOptional: false;
|
|
19
19
|
};
|
|
20
20
|
status: {
|
|
21
|
-
type:
|
|
21
|
+
type: _lssm_lib_schema364.FieldType<string, string>;
|
|
22
22
|
isOptional: false;
|
|
23
23
|
};
|
|
24
24
|
priority: {
|
|
25
|
-
type:
|
|
25
|
+
type: _lssm_lib_schema364.FieldType<string, string>;
|
|
26
26
|
isOptional: false;
|
|
27
27
|
};
|
|
28
28
|
assigneeId: {
|
|
29
|
-
type:
|
|
29
|
+
type: _lssm_lib_schema364.FieldType<string, string>;
|
|
30
30
|
isOptional: true;
|
|
31
31
|
};
|
|
32
32
|
dueDate: {
|
|
33
|
-
type:
|
|
33
|
+
type: _lssm_lib_schema364.FieldType<Date, string>;
|
|
34
34
|
isOptional: true;
|
|
35
35
|
};
|
|
36
36
|
}>;
|
|
37
37
|
/**
|
|
38
38
|
* Input for creating a task.
|
|
39
39
|
*/
|
|
40
|
-
declare const CreateTaskInputModel:
|
|
40
|
+
declare const CreateTaskInputModel: _lssm_lib_schema364.SchemaModel<{
|
|
41
41
|
spaceId: {
|
|
42
|
-
type:
|
|
42
|
+
type: _lssm_lib_schema364.FieldType<string, string>;
|
|
43
43
|
isOptional: false;
|
|
44
44
|
};
|
|
45
45
|
title: {
|
|
46
|
-
type:
|
|
46
|
+
type: _lssm_lib_schema364.FieldType<string, string>;
|
|
47
47
|
isOptional: false;
|
|
48
48
|
};
|
|
49
49
|
description: {
|
|
50
|
-
type:
|
|
50
|
+
type: _lssm_lib_schema364.FieldType<string, string>;
|
|
51
51
|
isOptional: true;
|
|
52
52
|
};
|
|
53
53
|
priority: {
|
|
54
|
-
type:
|
|
54
|
+
type: _lssm_lib_schema364.FieldType<string, string>;
|
|
55
55
|
isOptional: true;
|
|
56
56
|
};
|
|
57
57
|
assigneeId: {
|
|
58
|
-
type:
|
|
58
|
+
type: _lssm_lib_schema364.FieldType<string, string>;
|
|
59
59
|
isOptional: true;
|
|
60
60
|
};
|
|
61
61
|
dueDate: {
|
|
62
|
-
type:
|
|
62
|
+
type: _lssm_lib_schema364.FieldType<Date, string>;
|
|
63
63
|
isOptional: true;
|
|
64
64
|
};
|
|
65
65
|
}>;
|
|
66
66
|
/**
|
|
67
67
|
* Input for updating task status.
|
|
68
68
|
*/
|
|
69
|
-
declare const UpdateTaskStatusInputModel:
|
|
69
|
+
declare const UpdateTaskStatusInputModel: _lssm_lib_schema364.SchemaModel<{
|
|
70
70
|
taskId: {
|
|
71
|
-
type:
|
|
71
|
+
type: _lssm_lib_schema364.FieldType<string, string>;
|
|
72
72
|
isOptional: false;
|
|
73
73
|
};
|
|
74
74
|
status: {
|
|
75
|
-
type:
|
|
75
|
+
type: _lssm_lib_schema364.FieldType<string, string>;
|
|
76
76
|
isOptional: false;
|
|
77
77
|
};
|
|
78
78
|
}>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lssm/example.team-hub",
|
|
3
|
-
"version": "0.0.0-canary-
|
|
3
|
+
"version": "0.0.0-canary-20251217083314",
|
|
4
4
|
"description": "Team Hub example with spaces, tasks, rituals, and announcements",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -18,18 +18,18 @@
|
|
|
18
18
|
"lint:check": "eslint src"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@lssm/lib.schema": "0.0.0-canary-
|
|
22
|
-
"@lssm/lib.contracts": "0.0.0-canary-
|
|
23
|
-
"@lssm/lib.bus": "0.0.0-canary-
|
|
24
|
-
"@lssm/lib.identity-rbac": "0.0.0-canary-
|
|
25
|
-
"@lssm/lib.jobs": "0.0.0-canary-
|
|
26
|
-
"@lssm/module.audit-trail": "0.0.0-canary-
|
|
27
|
-
"@lssm/module.notifications": "0.0.0-canary-
|
|
21
|
+
"@lssm/lib.schema": "0.0.0-canary-20251217083314",
|
|
22
|
+
"@lssm/lib.contracts": "0.0.0-canary-20251217083314",
|
|
23
|
+
"@lssm/lib.bus": "0.0.0-canary-20251217083314",
|
|
24
|
+
"@lssm/lib.identity-rbac": "0.0.0-canary-20251217083314",
|
|
25
|
+
"@lssm/lib.jobs": "0.0.0-canary-20251217083314",
|
|
26
|
+
"@lssm/module.audit-trail": "0.0.0-canary-20251217083314",
|
|
27
|
+
"@lssm/module.notifications": "0.0.0-canary-20251217083314",
|
|
28
28
|
"zod": "^4.1.13"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@lssm/tool.typescript": "0.0.0-canary-
|
|
32
|
-
"@lssm/tool.tsdown": "0.0.0-canary-
|
|
31
|
+
"@lssm/tool.typescript": "0.0.0-canary-20251217083314",
|
|
32
|
+
"@lssm/tool.tsdown": "0.0.0-canary-20251217083314",
|
|
33
33
|
"typescript": "^5.9.3"
|
|
34
34
|
},
|
|
35
35
|
"exports": {
|