@lssm/example.saas-boilerplate 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 +71 -71
- package/CHANGELOG.md +8 -8
- package/dist/contracts/billing.d.ts +89 -89
- package/dist/contracts/project.d.ts +157 -157
- package/dist/entities/billing.d.ts +41 -41
- package/dist/entities/index.d.ts +85 -85
- package/dist/entities/project.d.ts +24 -24
- package/dist/entities/settings.d.ts +25 -25
- package/dist/events.d.ts +80 -80
- package/dist/presentations/index.d.ts +2 -2
- package/package.json +1 -1
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -1,199 +1,199 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
1
|
+
import * as _lssm_lib_schema128 from "@lssm/lib.schema";
|
|
2
|
+
import * as _lssm_lib_contracts3 from "@lssm/lib.contracts";
|
|
3
3
|
|
|
4
4
|
//#region src/contracts/project.d.ts
|
|
5
|
-
declare const ProjectStatusFilterEnum:
|
|
6
|
-
declare const ProjectModel:
|
|
5
|
+
declare const ProjectStatusFilterEnum: _lssm_lib_schema128.EnumType<[string, string, string, string]>;
|
|
6
|
+
declare const ProjectModel: _lssm_lib_schema128.SchemaModel<{
|
|
7
7
|
id: {
|
|
8
|
-
type:
|
|
8
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
9
9
|
isOptional: false;
|
|
10
10
|
};
|
|
11
11
|
name: {
|
|
12
|
-
type:
|
|
12
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
13
13
|
isOptional: false;
|
|
14
14
|
};
|
|
15
15
|
description: {
|
|
16
|
-
type:
|
|
16
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
17
17
|
isOptional: true;
|
|
18
18
|
};
|
|
19
19
|
slug: {
|
|
20
|
-
type:
|
|
20
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
21
21
|
isOptional: true;
|
|
22
22
|
};
|
|
23
23
|
organizationId: {
|
|
24
|
-
type:
|
|
24
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
25
25
|
isOptional: false;
|
|
26
26
|
};
|
|
27
27
|
createdBy: {
|
|
28
|
-
type:
|
|
28
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
29
29
|
isOptional: false;
|
|
30
30
|
};
|
|
31
31
|
status: {
|
|
32
|
-
type:
|
|
32
|
+
type: _lssm_lib_schema128.EnumType<[string, string, string, string]>;
|
|
33
33
|
isOptional: false;
|
|
34
34
|
};
|
|
35
35
|
isPublic: {
|
|
36
|
-
type:
|
|
36
|
+
type: _lssm_lib_schema128.FieldType<boolean, boolean>;
|
|
37
37
|
isOptional: false;
|
|
38
38
|
};
|
|
39
39
|
tags: {
|
|
40
|
-
type:
|
|
40
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
41
41
|
isArray: true;
|
|
42
42
|
isOptional: false;
|
|
43
43
|
};
|
|
44
44
|
createdAt: {
|
|
45
|
-
type:
|
|
45
|
+
type: _lssm_lib_schema128.FieldType<Date, string>;
|
|
46
46
|
isOptional: false;
|
|
47
47
|
};
|
|
48
48
|
updatedAt: {
|
|
49
|
-
type:
|
|
49
|
+
type: _lssm_lib_schema128.FieldType<Date, string>;
|
|
50
50
|
isOptional: false;
|
|
51
51
|
};
|
|
52
52
|
}>;
|
|
53
|
-
declare const CreateProjectInputModel:
|
|
53
|
+
declare const CreateProjectInputModel: _lssm_lib_schema128.SchemaModel<{
|
|
54
54
|
name: {
|
|
55
|
-
type:
|
|
55
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
56
56
|
isOptional: false;
|
|
57
57
|
};
|
|
58
58
|
description: {
|
|
59
|
-
type:
|
|
59
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
60
60
|
isOptional: true;
|
|
61
61
|
};
|
|
62
62
|
slug: {
|
|
63
|
-
type:
|
|
63
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
64
64
|
isOptional: true;
|
|
65
65
|
};
|
|
66
66
|
isPublic: {
|
|
67
|
-
type:
|
|
67
|
+
type: _lssm_lib_schema128.FieldType<boolean, boolean>;
|
|
68
68
|
isOptional: true;
|
|
69
69
|
};
|
|
70
70
|
tags: {
|
|
71
|
-
type:
|
|
71
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
72
72
|
isArray: true;
|
|
73
73
|
isOptional: true;
|
|
74
74
|
};
|
|
75
75
|
}>;
|
|
76
|
-
declare const UpdateProjectInputModel:
|
|
76
|
+
declare const UpdateProjectInputModel: _lssm_lib_schema128.SchemaModel<{
|
|
77
77
|
projectId: {
|
|
78
|
-
type:
|
|
78
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
79
79
|
isOptional: false;
|
|
80
80
|
};
|
|
81
81
|
name: {
|
|
82
|
-
type:
|
|
82
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
83
83
|
isOptional: true;
|
|
84
84
|
};
|
|
85
85
|
description: {
|
|
86
|
-
type:
|
|
86
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
87
87
|
isOptional: true;
|
|
88
88
|
};
|
|
89
89
|
slug: {
|
|
90
|
-
type:
|
|
90
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
91
91
|
isOptional: true;
|
|
92
92
|
};
|
|
93
93
|
isPublic: {
|
|
94
|
-
type:
|
|
94
|
+
type: _lssm_lib_schema128.FieldType<boolean, boolean>;
|
|
95
95
|
isOptional: true;
|
|
96
96
|
};
|
|
97
97
|
tags: {
|
|
98
|
-
type:
|
|
98
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
99
99
|
isArray: true;
|
|
100
100
|
isOptional: true;
|
|
101
101
|
};
|
|
102
102
|
status: {
|
|
103
|
-
type:
|
|
103
|
+
type: _lssm_lib_schema128.EnumType<[string, string, string, string]>;
|
|
104
104
|
isOptional: true;
|
|
105
105
|
};
|
|
106
106
|
}>;
|
|
107
|
-
declare const GetProjectInputModel:
|
|
107
|
+
declare const GetProjectInputModel: _lssm_lib_schema128.SchemaModel<{
|
|
108
108
|
projectId: {
|
|
109
|
-
type:
|
|
109
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
110
110
|
isOptional: false;
|
|
111
111
|
};
|
|
112
112
|
}>;
|
|
113
|
-
declare const DeleteProjectInputModel:
|
|
113
|
+
declare const DeleteProjectInputModel: _lssm_lib_schema128.SchemaModel<{
|
|
114
114
|
projectId: {
|
|
115
|
-
type:
|
|
115
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
116
116
|
isOptional: false;
|
|
117
117
|
};
|
|
118
118
|
}>;
|
|
119
|
-
declare const DeleteProjectOutputModel:
|
|
119
|
+
declare const DeleteProjectOutputModel: _lssm_lib_schema128.SchemaModel<{
|
|
120
120
|
success: {
|
|
121
|
-
type:
|
|
121
|
+
type: _lssm_lib_schema128.FieldType<boolean, boolean>;
|
|
122
122
|
isOptional: false;
|
|
123
123
|
};
|
|
124
124
|
}>;
|
|
125
|
-
declare const ProjectDeletedPayloadModel:
|
|
125
|
+
declare const ProjectDeletedPayloadModel: _lssm_lib_schema128.SchemaModel<{
|
|
126
126
|
projectId: {
|
|
127
|
-
type:
|
|
127
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
128
128
|
isOptional: false;
|
|
129
129
|
};
|
|
130
130
|
}>;
|
|
131
|
-
declare const ListProjectsInputModel:
|
|
131
|
+
declare const ListProjectsInputModel: _lssm_lib_schema128.SchemaModel<{
|
|
132
132
|
status: {
|
|
133
|
-
type:
|
|
133
|
+
type: _lssm_lib_schema128.EnumType<[string, string, string, string]>;
|
|
134
134
|
isOptional: true;
|
|
135
135
|
};
|
|
136
136
|
search: {
|
|
137
|
-
type:
|
|
137
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
138
138
|
isOptional: true;
|
|
139
139
|
};
|
|
140
140
|
limit: {
|
|
141
|
-
type:
|
|
141
|
+
type: _lssm_lib_schema128.FieldType<number, number>;
|
|
142
142
|
isOptional: true;
|
|
143
143
|
defaultValue: number;
|
|
144
144
|
};
|
|
145
145
|
offset: {
|
|
146
|
-
type:
|
|
146
|
+
type: _lssm_lib_schema128.FieldType<number, number>;
|
|
147
147
|
isOptional: true;
|
|
148
148
|
defaultValue: number;
|
|
149
149
|
};
|
|
150
150
|
}>;
|
|
151
|
-
declare const ListProjectsOutputModel:
|
|
151
|
+
declare const ListProjectsOutputModel: _lssm_lib_schema128.SchemaModel<{
|
|
152
152
|
projects: {
|
|
153
|
-
type:
|
|
153
|
+
type: _lssm_lib_schema128.SchemaModel<{
|
|
154
154
|
id: {
|
|
155
|
-
type:
|
|
155
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
156
156
|
isOptional: false;
|
|
157
157
|
};
|
|
158
158
|
name: {
|
|
159
|
-
type:
|
|
159
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
160
160
|
isOptional: false;
|
|
161
161
|
};
|
|
162
162
|
description: {
|
|
163
|
-
type:
|
|
163
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
164
164
|
isOptional: true;
|
|
165
165
|
};
|
|
166
166
|
slug: {
|
|
167
|
-
type:
|
|
167
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
168
168
|
isOptional: true;
|
|
169
169
|
};
|
|
170
170
|
organizationId: {
|
|
171
|
-
type:
|
|
171
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
172
172
|
isOptional: false;
|
|
173
173
|
};
|
|
174
174
|
createdBy: {
|
|
175
|
-
type:
|
|
175
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
176
176
|
isOptional: false;
|
|
177
177
|
};
|
|
178
178
|
status: {
|
|
179
|
-
type:
|
|
179
|
+
type: _lssm_lib_schema128.EnumType<[string, string, string, string]>;
|
|
180
180
|
isOptional: false;
|
|
181
181
|
};
|
|
182
182
|
isPublic: {
|
|
183
|
-
type:
|
|
183
|
+
type: _lssm_lib_schema128.FieldType<boolean, boolean>;
|
|
184
184
|
isOptional: false;
|
|
185
185
|
};
|
|
186
186
|
tags: {
|
|
187
|
-
type:
|
|
187
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
188
188
|
isArray: true;
|
|
189
189
|
isOptional: false;
|
|
190
190
|
};
|
|
191
191
|
createdAt: {
|
|
192
|
-
type:
|
|
192
|
+
type: _lssm_lib_schema128.FieldType<Date, string>;
|
|
193
193
|
isOptional: false;
|
|
194
194
|
};
|
|
195
195
|
updatedAt: {
|
|
196
|
-
type:
|
|
196
|
+
type: _lssm_lib_schema128.FieldType<Date, string>;
|
|
197
197
|
isOptional: false;
|
|
198
198
|
};
|
|
199
199
|
}>;
|
|
@@ -201,129 +201,129 @@ declare const ListProjectsOutputModel: _lssm_lib_schema337.SchemaModel<{
|
|
|
201
201
|
isOptional: false;
|
|
202
202
|
};
|
|
203
203
|
total: {
|
|
204
|
-
type:
|
|
204
|
+
type: _lssm_lib_schema128.FieldType<number, number>;
|
|
205
205
|
isOptional: false;
|
|
206
206
|
};
|
|
207
207
|
}>;
|
|
208
208
|
/**
|
|
209
209
|
* Create a new project.
|
|
210
210
|
*/
|
|
211
|
-
declare const CreateProjectContract:
|
|
211
|
+
declare const CreateProjectContract: _lssm_lib_contracts3.ContractSpec<_lssm_lib_schema128.SchemaModel<{
|
|
212
212
|
name: {
|
|
213
|
-
type:
|
|
213
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
214
214
|
isOptional: false;
|
|
215
215
|
};
|
|
216
216
|
description: {
|
|
217
|
-
type:
|
|
217
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
218
218
|
isOptional: true;
|
|
219
219
|
};
|
|
220
220
|
slug: {
|
|
221
|
-
type:
|
|
221
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
222
222
|
isOptional: true;
|
|
223
223
|
};
|
|
224
224
|
isPublic: {
|
|
225
|
-
type:
|
|
225
|
+
type: _lssm_lib_schema128.FieldType<boolean, boolean>;
|
|
226
226
|
isOptional: true;
|
|
227
227
|
};
|
|
228
228
|
tags: {
|
|
229
|
-
type:
|
|
229
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
230
230
|
isArray: true;
|
|
231
231
|
isOptional: true;
|
|
232
232
|
};
|
|
233
|
-
}>,
|
|
233
|
+
}>, _lssm_lib_schema128.SchemaModel<{
|
|
234
234
|
id: {
|
|
235
|
-
type:
|
|
235
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
236
236
|
isOptional: false;
|
|
237
237
|
};
|
|
238
238
|
name: {
|
|
239
|
-
type:
|
|
239
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
240
240
|
isOptional: false;
|
|
241
241
|
};
|
|
242
242
|
description: {
|
|
243
|
-
type:
|
|
243
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
244
244
|
isOptional: true;
|
|
245
245
|
};
|
|
246
246
|
slug: {
|
|
247
|
-
type:
|
|
247
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
248
248
|
isOptional: true;
|
|
249
249
|
};
|
|
250
250
|
organizationId: {
|
|
251
|
-
type:
|
|
251
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
252
252
|
isOptional: false;
|
|
253
253
|
};
|
|
254
254
|
createdBy: {
|
|
255
|
-
type:
|
|
255
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
256
256
|
isOptional: false;
|
|
257
257
|
};
|
|
258
258
|
status: {
|
|
259
|
-
type:
|
|
259
|
+
type: _lssm_lib_schema128.EnumType<[string, string, string, string]>;
|
|
260
260
|
isOptional: false;
|
|
261
261
|
};
|
|
262
262
|
isPublic: {
|
|
263
|
-
type:
|
|
263
|
+
type: _lssm_lib_schema128.FieldType<boolean, boolean>;
|
|
264
264
|
isOptional: false;
|
|
265
265
|
};
|
|
266
266
|
tags: {
|
|
267
|
-
type:
|
|
267
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
268
268
|
isArray: true;
|
|
269
269
|
isOptional: false;
|
|
270
270
|
};
|
|
271
271
|
createdAt: {
|
|
272
|
-
type:
|
|
272
|
+
type: _lssm_lib_schema128.FieldType<Date, string>;
|
|
273
273
|
isOptional: false;
|
|
274
274
|
};
|
|
275
275
|
updatedAt: {
|
|
276
|
-
type:
|
|
276
|
+
type: _lssm_lib_schema128.FieldType<Date, string>;
|
|
277
277
|
isOptional: false;
|
|
278
278
|
};
|
|
279
279
|
}>, {
|
|
280
280
|
name: string;
|
|
281
281
|
version: number;
|
|
282
282
|
when: string;
|
|
283
|
-
payload:
|
|
283
|
+
payload: _lssm_lib_schema128.SchemaModel<{
|
|
284
284
|
id: {
|
|
285
|
-
type:
|
|
285
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
286
286
|
isOptional: false;
|
|
287
287
|
};
|
|
288
288
|
name: {
|
|
289
|
-
type:
|
|
289
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
290
290
|
isOptional: false;
|
|
291
291
|
};
|
|
292
292
|
description: {
|
|
293
|
-
type:
|
|
293
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
294
294
|
isOptional: true;
|
|
295
295
|
};
|
|
296
296
|
slug: {
|
|
297
|
-
type:
|
|
297
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
298
298
|
isOptional: true;
|
|
299
299
|
};
|
|
300
300
|
organizationId: {
|
|
301
|
-
type:
|
|
301
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
302
302
|
isOptional: false;
|
|
303
303
|
};
|
|
304
304
|
createdBy: {
|
|
305
|
-
type:
|
|
305
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
306
306
|
isOptional: false;
|
|
307
307
|
};
|
|
308
308
|
status: {
|
|
309
|
-
type:
|
|
309
|
+
type: _lssm_lib_schema128.EnumType<[string, string, string, string]>;
|
|
310
310
|
isOptional: false;
|
|
311
311
|
};
|
|
312
312
|
isPublic: {
|
|
313
|
-
type:
|
|
313
|
+
type: _lssm_lib_schema128.FieldType<boolean, boolean>;
|
|
314
314
|
isOptional: false;
|
|
315
315
|
};
|
|
316
316
|
tags: {
|
|
317
|
-
type:
|
|
317
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
318
318
|
isArray: true;
|
|
319
319
|
isOptional: false;
|
|
320
320
|
};
|
|
321
321
|
createdAt: {
|
|
322
|
-
type:
|
|
322
|
+
type: _lssm_lib_schema128.FieldType<Date, string>;
|
|
323
323
|
isOptional: false;
|
|
324
324
|
};
|
|
325
325
|
updatedAt: {
|
|
326
|
-
type:
|
|
326
|
+
type: _lssm_lib_schema128.FieldType<Date, string>;
|
|
327
327
|
isOptional: false;
|
|
328
328
|
};
|
|
329
329
|
}>;
|
|
@@ -331,185 +331,185 @@ declare const CreateProjectContract: _lssm_lib_contracts18.ContractSpec<_lssm_li
|
|
|
331
331
|
/**
|
|
332
332
|
* Get project by ID.
|
|
333
333
|
*/
|
|
334
|
-
declare const GetProjectContract:
|
|
334
|
+
declare const GetProjectContract: _lssm_lib_contracts3.ContractSpec<_lssm_lib_schema128.SchemaModel<{
|
|
335
335
|
projectId: {
|
|
336
|
-
type:
|
|
336
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
337
337
|
isOptional: false;
|
|
338
338
|
};
|
|
339
|
-
}>,
|
|
339
|
+
}>, _lssm_lib_schema128.SchemaModel<{
|
|
340
340
|
id: {
|
|
341
|
-
type:
|
|
341
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
342
342
|
isOptional: false;
|
|
343
343
|
};
|
|
344
344
|
name: {
|
|
345
|
-
type:
|
|
345
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
346
346
|
isOptional: false;
|
|
347
347
|
};
|
|
348
348
|
description: {
|
|
349
|
-
type:
|
|
349
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
350
350
|
isOptional: true;
|
|
351
351
|
};
|
|
352
352
|
slug: {
|
|
353
|
-
type:
|
|
353
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
354
354
|
isOptional: true;
|
|
355
355
|
};
|
|
356
356
|
organizationId: {
|
|
357
|
-
type:
|
|
357
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
358
358
|
isOptional: false;
|
|
359
359
|
};
|
|
360
360
|
createdBy: {
|
|
361
|
-
type:
|
|
361
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
362
362
|
isOptional: false;
|
|
363
363
|
};
|
|
364
364
|
status: {
|
|
365
|
-
type:
|
|
365
|
+
type: _lssm_lib_schema128.EnumType<[string, string, string, string]>;
|
|
366
366
|
isOptional: false;
|
|
367
367
|
};
|
|
368
368
|
isPublic: {
|
|
369
|
-
type:
|
|
369
|
+
type: _lssm_lib_schema128.FieldType<boolean, boolean>;
|
|
370
370
|
isOptional: false;
|
|
371
371
|
};
|
|
372
372
|
tags: {
|
|
373
|
-
type:
|
|
373
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
374
374
|
isArray: true;
|
|
375
375
|
isOptional: false;
|
|
376
376
|
};
|
|
377
377
|
createdAt: {
|
|
378
|
-
type:
|
|
378
|
+
type: _lssm_lib_schema128.FieldType<Date, string>;
|
|
379
379
|
isOptional: false;
|
|
380
380
|
};
|
|
381
381
|
updatedAt: {
|
|
382
|
-
type:
|
|
382
|
+
type: _lssm_lib_schema128.FieldType<Date, string>;
|
|
383
383
|
isOptional: false;
|
|
384
384
|
};
|
|
385
385
|
}>, undefined>;
|
|
386
386
|
/**
|
|
387
387
|
* Update a project.
|
|
388
388
|
*/
|
|
389
|
-
declare const UpdateProjectContract:
|
|
389
|
+
declare const UpdateProjectContract: _lssm_lib_contracts3.ContractSpec<_lssm_lib_schema128.SchemaModel<{
|
|
390
390
|
projectId: {
|
|
391
|
-
type:
|
|
391
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
392
392
|
isOptional: false;
|
|
393
393
|
};
|
|
394
394
|
name: {
|
|
395
|
-
type:
|
|
395
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
396
396
|
isOptional: true;
|
|
397
397
|
};
|
|
398
398
|
description: {
|
|
399
|
-
type:
|
|
399
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
400
400
|
isOptional: true;
|
|
401
401
|
};
|
|
402
402
|
slug: {
|
|
403
|
-
type:
|
|
403
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
404
404
|
isOptional: true;
|
|
405
405
|
};
|
|
406
406
|
isPublic: {
|
|
407
|
-
type:
|
|
407
|
+
type: _lssm_lib_schema128.FieldType<boolean, boolean>;
|
|
408
408
|
isOptional: true;
|
|
409
409
|
};
|
|
410
410
|
tags: {
|
|
411
|
-
type:
|
|
411
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
412
412
|
isArray: true;
|
|
413
413
|
isOptional: true;
|
|
414
414
|
};
|
|
415
415
|
status: {
|
|
416
|
-
type:
|
|
416
|
+
type: _lssm_lib_schema128.EnumType<[string, string, string, string]>;
|
|
417
417
|
isOptional: true;
|
|
418
418
|
};
|
|
419
|
-
}>,
|
|
419
|
+
}>, _lssm_lib_schema128.SchemaModel<{
|
|
420
420
|
id: {
|
|
421
|
-
type:
|
|
421
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
422
422
|
isOptional: false;
|
|
423
423
|
};
|
|
424
424
|
name: {
|
|
425
|
-
type:
|
|
425
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
426
426
|
isOptional: false;
|
|
427
427
|
};
|
|
428
428
|
description: {
|
|
429
|
-
type:
|
|
429
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
430
430
|
isOptional: true;
|
|
431
431
|
};
|
|
432
432
|
slug: {
|
|
433
|
-
type:
|
|
433
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
434
434
|
isOptional: true;
|
|
435
435
|
};
|
|
436
436
|
organizationId: {
|
|
437
|
-
type:
|
|
437
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
438
438
|
isOptional: false;
|
|
439
439
|
};
|
|
440
440
|
createdBy: {
|
|
441
|
-
type:
|
|
441
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
442
442
|
isOptional: false;
|
|
443
443
|
};
|
|
444
444
|
status: {
|
|
445
|
-
type:
|
|
445
|
+
type: _lssm_lib_schema128.EnumType<[string, string, string, string]>;
|
|
446
446
|
isOptional: false;
|
|
447
447
|
};
|
|
448
448
|
isPublic: {
|
|
449
|
-
type:
|
|
449
|
+
type: _lssm_lib_schema128.FieldType<boolean, boolean>;
|
|
450
450
|
isOptional: false;
|
|
451
451
|
};
|
|
452
452
|
tags: {
|
|
453
|
-
type:
|
|
453
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
454
454
|
isArray: true;
|
|
455
455
|
isOptional: false;
|
|
456
456
|
};
|
|
457
457
|
createdAt: {
|
|
458
|
-
type:
|
|
458
|
+
type: _lssm_lib_schema128.FieldType<Date, string>;
|
|
459
459
|
isOptional: false;
|
|
460
460
|
};
|
|
461
461
|
updatedAt: {
|
|
462
|
-
type:
|
|
462
|
+
type: _lssm_lib_schema128.FieldType<Date, string>;
|
|
463
463
|
isOptional: false;
|
|
464
464
|
};
|
|
465
465
|
}>, {
|
|
466
466
|
name: string;
|
|
467
467
|
version: number;
|
|
468
468
|
when: string;
|
|
469
|
-
payload:
|
|
469
|
+
payload: _lssm_lib_schema128.SchemaModel<{
|
|
470
470
|
id: {
|
|
471
|
-
type:
|
|
471
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
472
472
|
isOptional: false;
|
|
473
473
|
};
|
|
474
474
|
name: {
|
|
475
|
-
type:
|
|
475
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
476
476
|
isOptional: false;
|
|
477
477
|
};
|
|
478
478
|
description: {
|
|
479
|
-
type:
|
|
479
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
480
480
|
isOptional: true;
|
|
481
481
|
};
|
|
482
482
|
slug: {
|
|
483
|
-
type:
|
|
483
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
484
484
|
isOptional: true;
|
|
485
485
|
};
|
|
486
486
|
organizationId: {
|
|
487
|
-
type:
|
|
487
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
488
488
|
isOptional: false;
|
|
489
489
|
};
|
|
490
490
|
createdBy: {
|
|
491
|
-
type:
|
|
491
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
492
492
|
isOptional: false;
|
|
493
493
|
};
|
|
494
494
|
status: {
|
|
495
|
-
type:
|
|
495
|
+
type: _lssm_lib_schema128.EnumType<[string, string, string, string]>;
|
|
496
496
|
isOptional: false;
|
|
497
497
|
};
|
|
498
498
|
isPublic: {
|
|
499
|
-
type:
|
|
499
|
+
type: _lssm_lib_schema128.FieldType<boolean, boolean>;
|
|
500
500
|
isOptional: false;
|
|
501
501
|
};
|
|
502
502
|
tags: {
|
|
503
|
-
type:
|
|
503
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
504
504
|
isArray: true;
|
|
505
505
|
isOptional: false;
|
|
506
506
|
};
|
|
507
507
|
createdAt: {
|
|
508
|
-
type:
|
|
508
|
+
type: _lssm_lib_schema128.FieldType<Date, string>;
|
|
509
509
|
isOptional: false;
|
|
510
510
|
};
|
|
511
511
|
updatedAt: {
|
|
512
|
-
type:
|
|
512
|
+
type: _lssm_lib_schema128.FieldType<Date, string>;
|
|
513
513
|
isOptional: false;
|
|
514
514
|
};
|
|
515
515
|
}>;
|
|
@@ -517,23 +517,23 @@ declare const UpdateProjectContract: _lssm_lib_contracts18.ContractSpec<_lssm_li
|
|
|
517
517
|
/**
|
|
518
518
|
* Delete a project.
|
|
519
519
|
*/
|
|
520
|
-
declare const DeleteProjectContract:
|
|
520
|
+
declare const DeleteProjectContract: _lssm_lib_contracts3.ContractSpec<_lssm_lib_schema128.SchemaModel<{
|
|
521
521
|
projectId: {
|
|
522
|
-
type:
|
|
522
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
523
523
|
isOptional: false;
|
|
524
524
|
};
|
|
525
|
-
}>,
|
|
525
|
+
}>, _lssm_lib_schema128.SchemaModel<{
|
|
526
526
|
success: {
|
|
527
|
-
type:
|
|
527
|
+
type: _lssm_lib_schema128.FieldType<boolean, boolean>;
|
|
528
528
|
isOptional: false;
|
|
529
529
|
};
|
|
530
530
|
}>, {
|
|
531
531
|
name: string;
|
|
532
532
|
version: number;
|
|
533
533
|
when: string;
|
|
534
|
-
payload:
|
|
534
|
+
payload: _lssm_lib_schema128.SchemaModel<{
|
|
535
535
|
projectId: {
|
|
536
|
-
type:
|
|
536
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
537
537
|
isOptional: false;
|
|
538
538
|
};
|
|
539
539
|
}>;
|
|
@@ -541,71 +541,71 @@ declare const DeleteProjectContract: _lssm_lib_contracts18.ContractSpec<_lssm_li
|
|
|
541
541
|
/**
|
|
542
542
|
* List organization projects.
|
|
543
543
|
*/
|
|
544
|
-
declare const ListProjectsContract:
|
|
544
|
+
declare const ListProjectsContract: _lssm_lib_contracts3.ContractSpec<_lssm_lib_schema128.SchemaModel<{
|
|
545
545
|
status: {
|
|
546
|
-
type:
|
|
546
|
+
type: _lssm_lib_schema128.EnumType<[string, string, string, string]>;
|
|
547
547
|
isOptional: true;
|
|
548
548
|
};
|
|
549
549
|
search: {
|
|
550
|
-
type:
|
|
550
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
551
551
|
isOptional: true;
|
|
552
552
|
};
|
|
553
553
|
limit: {
|
|
554
|
-
type:
|
|
554
|
+
type: _lssm_lib_schema128.FieldType<number, number>;
|
|
555
555
|
isOptional: true;
|
|
556
556
|
defaultValue: number;
|
|
557
557
|
};
|
|
558
558
|
offset: {
|
|
559
|
-
type:
|
|
559
|
+
type: _lssm_lib_schema128.FieldType<number, number>;
|
|
560
560
|
isOptional: true;
|
|
561
561
|
defaultValue: number;
|
|
562
562
|
};
|
|
563
|
-
}>,
|
|
563
|
+
}>, _lssm_lib_schema128.SchemaModel<{
|
|
564
564
|
projects: {
|
|
565
|
-
type:
|
|
565
|
+
type: _lssm_lib_schema128.SchemaModel<{
|
|
566
566
|
id: {
|
|
567
|
-
type:
|
|
567
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
568
568
|
isOptional: false;
|
|
569
569
|
};
|
|
570
570
|
name: {
|
|
571
|
-
type:
|
|
571
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
572
572
|
isOptional: false;
|
|
573
573
|
};
|
|
574
574
|
description: {
|
|
575
|
-
type:
|
|
575
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
576
576
|
isOptional: true;
|
|
577
577
|
};
|
|
578
578
|
slug: {
|
|
579
|
-
type:
|
|
579
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
580
580
|
isOptional: true;
|
|
581
581
|
};
|
|
582
582
|
organizationId: {
|
|
583
|
-
type:
|
|
583
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
584
584
|
isOptional: false;
|
|
585
585
|
};
|
|
586
586
|
createdBy: {
|
|
587
|
-
type:
|
|
587
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
588
588
|
isOptional: false;
|
|
589
589
|
};
|
|
590
590
|
status: {
|
|
591
|
-
type:
|
|
591
|
+
type: _lssm_lib_schema128.EnumType<[string, string, string, string]>;
|
|
592
592
|
isOptional: false;
|
|
593
593
|
};
|
|
594
594
|
isPublic: {
|
|
595
|
-
type:
|
|
595
|
+
type: _lssm_lib_schema128.FieldType<boolean, boolean>;
|
|
596
596
|
isOptional: false;
|
|
597
597
|
};
|
|
598
598
|
tags: {
|
|
599
|
-
type:
|
|
599
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
600
600
|
isArray: true;
|
|
601
601
|
isOptional: false;
|
|
602
602
|
};
|
|
603
603
|
createdAt: {
|
|
604
|
-
type:
|
|
604
|
+
type: _lssm_lib_schema128.FieldType<Date, string>;
|
|
605
605
|
isOptional: false;
|
|
606
606
|
};
|
|
607
607
|
updatedAt: {
|
|
608
|
-
type:
|
|
608
|
+
type: _lssm_lib_schema128.FieldType<Date, string>;
|
|
609
609
|
isOptional: false;
|
|
610
610
|
};
|
|
611
611
|
}>;
|
|
@@ -613,7 +613,7 @@ declare const ListProjectsContract: _lssm_lib_contracts18.ContractSpec<_lssm_lib
|
|
|
613
613
|
isOptional: false;
|
|
614
614
|
};
|
|
615
615
|
total: {
|
|
616
|
-
type:
|
|
616
|
+
type: _lssm_lib_schema128.FieldType<number, number>;
|
|
617
617
|
isOptional: false;
|
|
618
618
|
};
|
|
619
619
|
}>, undefined>;
|