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