@lssm/lib.identity-rbac 0.0.0-canary-20251217060804 → 0.0.0-canary-20251217060834
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/contracts/organization.d.ts +185 -185
- package/dist/contracts/rbac.d.ts +118 -118
- package/dist/contracts/user.d.ts +134 -134
- package/dist/entities/index.d.ts +160 -160
- package/dist/entities/organization.d.ts +59 -59
- package/dist/entities/rbac.d.ts +63 -63
- package/dist/entities/user.d.ts +67 -67
- package/package.json +5 -5
package/dist/contracts/user.d.ts
CHANGED
|
@@ -1,135 +1,135 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _lssm_lib_schema141 from "@lssm/lib.schema";
|
|
2
2
|
import { SchemaModel } from "@lssm/lib.schema";
|
|
3
3
|
import * as _lssm_lib_contracts29 from "@lssm/lib.contracts";
|
|
4
4
|
|
|
5
5
|
//#region src/contracts/user.d.ts
|
|
6
6
|
declare const UserProfileModel: SchemaModel<{
|
|
7
7
|
id: {
|
|
8
|
-
type:
|
|
8
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
9
9
|
isOptional: false;
|
|
10
10
|
};
|
|
11
11
|
email: {
|
|
12
|
-
type:
|
|
12
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
13
13
|
isOptional: false;
|
|
14
14
|
};
|
|
15
15
|
emailVerified: {
|
|
16
|
-
type:
|
|
16
|
+
type: _lssm_lib_schema141.FieldType<boolean, boolean>;
|
|
17
17
|
isOptional: false;
|
|
18
18
|
};
|
|
19
19
|
name: {
|
|
20
|
-
type:
|
|
20
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
21
21
|
isOptional: true;
|
|
22
22
|
};
|
|
23
23
|
firstName: {
|
|
24
|
-
type:
|
|
24
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
25
25
|
isOptional: true;
|
|
26
26
|
};
|
|
27
27
|
lastName: {
|
|
28
|
-
type:
|
|
28
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
29
29
|
isOptional: true;
|
|
30
30
|
};
|
|
31
31
|
locale: {
|
|
32
|
-
type:
|
|
32
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
33
33
|
isOptional: true;
|
|
34
34
|
};
|
|
35
35
|
timezone: {
|
|
36
|
-
type:
|
|
36
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
37
37
|
isOptional: true;
|
|
38
38
|
};
|
|
39
39
|
imageUrl: {
|
|
40
|
-
type:
|
|
40
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
41
41
|
isOptional: true;
|
|
42
42
|
};
|
|
43
43
|
role: {
|
|
44
|
-
type:
|
|
44
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
45
45
|
isOptional: true;
|
|
46
46
|
};
|
|
47
47
|
onboardingCompleted: {
|
|
48
|
-
type:
|
|
48
|
+
type: _lssm_lib_schema141.FieldType<boolean, boolean>;
|
|
49
49
|
isOptional: false;
|
|
50
50
|
};
|
|
51
51
|
createdAt: {
|
|
52
|
-
type:
|
|
52
|
+
type: _lssm_lib_schema141.FieldType<Date, string>;
|
|
53
53
|
isOptional: false;
|
|
54
54
|
};
|
|
55
55
|
}>;
|
|
56
56
|
declare const CreateUserInputModel: SchemaModel<{
|
|
57
57
|
email: {
|
|
58
|
-
type:
|
|
58
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
59
59
|
isOptional: false;
|
|
60
60
|
};
|
|
61
61
|
name: {
|
|
62
|
-
type:
|
|
62
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
63
63
|
isOptional: true;
|
|
64
64
|
};
|
|
65
65
|
firstName: {
|
|
66
|
-
type:
|
|
66
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
67
67
|
isOptional: true;
|
|
68
68
|
};
|
|
69
69
|
lastName: {
|
|
70
|
-
type:
|
|
70
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
71
71
|
isOptional: true;
|
|
72
72
|
};
|
|
73
73
|
password: {
|
|
74
|
-
type:
|
|
74
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
75
75
|
isOptional: true;
|
|
76
76
|
};
|
|
77
77
|
}>;
|
|
78
78
|
declare const UpdateUserInputModel: SchemaModel<{
|
|
79
79
|
name: {
|
|
80
|
-
type:
|
|
80
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
81
81
|
isOptional: true;
|
|
82
82
|
};
|
|
83
83
|
firstName: {
|
|
84
|
-
type:
|
|
84
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
85
85
|
isOptional: true;
|
|
86
86
|
};
|
|
87
87
|
lastName: {
|
|
88
|
-
type:
|
|
88
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
89
89
|
isOptional: true;
|
|
90
90
|
};
|
|
91
91
|
locale: {
|
|
92
|
-
type:
|
|
92
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
93
93
|
isOptional: true;
|
|
94
94
|
};
|
|
95
95
|
timezone: {
|
|
96
|
-
type:
|
|
96
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
97
97
|
isOptional: true;
|
|
98
98
|
};
|
|
99
99
|
imageUrl: {
|
|
100
|
-
type:
|
|
100
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
101
101
|
isOptional: true;
|
|
102
102
|
};
|
|
103
103
|
}>;
|
|
104
104
|
declare const DeleteUserInputModel: SchemaModel<{
|
|
105
105
|
confirmEmail: {
|
|
106
|
-
type:
|
|
106
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
107
107
|
isOptional: false;
|
|
108
108
|
};
|
|
109
109
|
}>;
|
|
110
110
|
declare const SuccessResultModel: SchemaModel<{
|
|
111
111
|
success: {
|
|
112
|
-
type:
|
|
112
|
+
type: _lssm_lib_schema141.FieldType<boolean, boolean>;
|
|
113
113
|
isOptional: false;
|
|
114
114
|
};
|
|
115
115
|
}>;
|
|
116
116
|
declare const UserDeletedPayloadModel: SchemaModel<{
|
|
117
117
|
userId: {
|
|
118
|
-
type:
|
|
118
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
119
119
|
isOptional: false;
|
|
120
120
|
};
|
|
121
121
|
}>;
|
|
122
122
|
declare const ListUsersInputModel: SchemaModel<{
|
|
123
123
|
limit: {
|
|
124
|
-
type:
|
|
124
|
+
type: _lssm_lib_schema141.FieldType<number, number>;
|
|
125
125
|
isOptional: true;
|
|
126
126
|
};
|
|
127
127
|
offset: {
|
|
128
|
-
type:
|
|
128
|
+
type: _lssm_lib_schema141.FieldType<number, number>;
|
|
129
129
|
isOptional: true;
|
|
130
130
|
};
|
|
131
131
|
search: {
|
|
132
|
-
type:
|
|
132
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
133
133
|
isOptional: true;
|
|
134
134
|
};
|
|
135
135
|
}>;
|
|
@@ -137,51 +137,51 @@ declare const ListUsersOutputModel: SchemaModel<{
|
|
|
137
137
|
users: {
|
|
138
138
|
type: SchemaModel<{
|
|
139
139
|
id: {
|
|
140
|
-
type:
|
|
140
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
141
141
|
isOptional: false;
|
|
142
142
|
};
|
|
143
143
|
email: {
|
|
144
|
-
type:
|
|
144
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
145
145
|
isOptional: false;
|
|
146
146
|
};
|
|
147
147
|
emailVerified: {
|
|
148
|
-
type:
|
|
148
|
+
type: _lssm_lib_schema141.FieldType<boolean, boolean>;
|
|
149
149
|
isOptional: false;
|
|
150
150
|
};
|
|
151
151
|
name: {
|
|
152
|
-
type:
|
|
152
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
153
153
|
isOptional: true;
|
|
154
154
|
};
|
|
155
155
|
firstName: {
|
|
156
|
-
type:
|
|
156
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
157
157
|
isOptional: true;
|
|
158
158
|
};
|
|
159
159
|
lastName: {
|
|
160
|
-
type:
|
|
160
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
161
161
|
isOptional: true;
|
|
162
162
|
};
|
|
163
163
|
locale: {
|
|
164
|
-
type:
|
|
164
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
165
165
|
isOptional: true;
|
|
166
166
|
};
|
|
167
167
|
timezone: {
|
|
168
|
-
type:
|
|
168
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
169
169
|
isOptional: true;
|
|
170
170
|
};
|
|
171
171
|
imageUrl: {
|
|
172
|
-
type:
|
|
172
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
173
173
|
isOptional: true;
|
|
174
174
|
};
|
|
175
175
|
role: {
|
|
176
|
-
type:
|
|
176
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
177
177
|
isOptional: true;
|
|
178
178
|
};
|
|
179
179
|
onboardingCompleted: {
|
|
180
|
-
type:
|
|
180
|
+
type: _lssm_lib_schema141.FieldType<boolean, boolean>;
|
|
181
181
|
isOptional: false;
|
|
182
182
|
};
|
|
183
183
|
createdAt: {
|
|
184
|
-
type:
|
|
184
|
+
type: _lssm_lib_schema141.FieldType<Date, string>;
|
|
185
185
|
isOptional: false;
|
|
186
186
|
};
|
|
187
187
|
}>;
|
|
@@ -189,7 +189,7 @@ declare const ListUsersOutputModel: SchemaModel<{
|
|
|
189
189
|
isArray: true;
|
|
190
190
|
};
|
|
191
191
|
total: {
|
|
192
|
-
type:
|
|
192
|
+
type: _lssm_lib_schema141.FieldType<number, number>;
|
|
193
193
|
isOptional: false;
|
|
194
194
|
};
|
|
195
195
|
}>;
|
|
@@ -198,72 +198,72 @@ declare const ListUsersOutputModel: SchemaModel<{
|
|
|
198
198
|
*/
|
|
199
199
|
declare const CreateUserContract: _lssm_lib_contracts29.ContractSpec<SchemaModel<{
|
|
200
200
|
email: {
|
|
201
|
-
type:
|
|
201
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
202
202
|
isOptional: false;
|
|
203
203
|
};
|
|
204
204
|
name: {
|
|
205
|
-
type:
|
|
205
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
206
206
|
isOptional: true;
|
|
207
207
|
};
|
|
208
208
|
firstName: {
|
|
209
|
-
type:
|
|
209
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
210
210
|
isOptional: true;
|
|
211
211
|
};
|
|
212
212
|
lastName: {
|
|
213
|
-
type:
|
|
213
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
214
214
|
isOptional: true;
|
|
215
215
|
};
|
|
216
216
|
password: {
|
|
217
|
-
type:
|
|
217
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
218
218
|
isOptional: true;
|
|
219
219
|
};
|
|
220
220
|
}>, SchemaModel<{
|
|
221
221
|
id: {
|
|
222
|
-
type:
|
|
222
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
223
223
|
isOptional: false;
|
|
224
224
|
};
|
|
225
225
|
email: {
|
|
226
|
-
type:
|
|
226
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
227
227
|
isOptional: false;
|
|
228
228
|
};
|
|
229
229
|
emailVerified: {
|
|
230
|
-
type:
|
|
230
|
+
type: _lssm_lib_schema141.FieldType<boolean, boolean>;
|
|
231
231
|
isOptional: false;
|
|
232
232
|
};
|
|
233
233
|
name: {
|
|
234
|
-
type:
|
|
234
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
235
235
|
isOptional: true;
|
|
236
236
|
};
|
|
237
237
|
firstName: {
|
|
238
|
-
type:
|
|
238
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
239
239
|
isOptional: true;
|
|
240
240
|
};
|
|
241
241
|
lastName: {
|
|
242
|
-
type:
|
|
242
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
243
243
|
isOptional: true;
|
|
244
244
|
};
|
|
245
245
|
locale: {
|
|
246
|
-
type:
|
|
246
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
247
247
|
isOptional: true;
|
|
248
248
|
};
|
|
249
249
|
timezone: {
|
|
250
|
-
type:
|
|
250
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
251
251
|
isOptional: true;
|
|
252
252
|
};
|
|
253
253
|
imageUrl: {
|
|
254
|
-
type:
|
|
254
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
255
255
|
isOptional: true;
|
|
256
256
|
};
|
|
257
257
|
role: {
|
|
258
|
-
type:
|
|
258
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
259
259
|
isOptional: true;
|
|
260
260
|
};
|
|
261
261
|
onboardingCompleted: {
|
|
262
|
-
type:
|
|
262
|
+
type: _lssm_lib_schema141.FieldType<boolean, boolean>;
|
|
263
263
|
isOptional: false;
|
|
264
264
|
};
|
|
265
265
|
createdAt: {
|
|
266
|
-
type:
|
|
266
|
+
type: _lssm_lib_schema141.FieldType<Date, string>;
|
|
267
267
|
isOptional: false;
|
|
268
268
|
};
|
|
269
269
|
}>, {
|
|
@@ -272,51 +272,51 @@ declare const CreateUserContract: _lssm_lib_contracts29.ContractSpec<SchemaModel
|
|
|
272
272
|
when: string;
|
|
273
273
|
payload: SchemaModel<{
|
|
274
274
|
id: {
|
|
275
|
-
type:
|
|
275
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
276
276
|
isOptional: false;
|
|
277
277
|
};
|
|
278
278
|
email: {
|
|
279
|
-
type:
|
|
279
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
280
280
|
isOptional: false;
|
|
281
281
|
};
|
|
282
282
|
emailVerified: {
|
|
283
|
-
type:
|
|
283
|
+
type: _lssm_lib_schema141.FieldType<boolean, boolean>;
|
|
284
284
|
isOptional: false;
|
|
285
285
|
};
|
|
286
286
|
name: {
|
|
287
|
-
type:
|
|
287
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
288
288
|
isOptional: true;
|
|
289
289
|
};
|
|
290
290
|
firstName: {
|
|
291
|
-
type:
|
|
291
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
292
292
|
isOptional: true;
|
|
293
293
|
};
|
|
294
294
|
lastName: {
|
|
295
|
-
type:
|
|
295
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
296
296
|
isOptional: true;
|
|
297
297
|
};
|
|
298
298
|
locale: {
|
|
299
|
-
type:
|
|
299
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
300
300
|
isOptional: true;
|
|
301
301
|
};
|
|
302
302
|
timezone: {
|
|
303
|
-
type:
|
|
303
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
304
304
|
isOptional: true;
|
|
305
305
|
};
|
|
306
306
|
imageUrl: {
|
|
307
|
-
type:
|
|
307
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
308
308
|
isOptional: true;
|
|
309
309
|
};
|
|
310
310
|
role: {
|
|
311
|
-
type:
|
|
311
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
312
312
|
isOptional: true;
|
|
313
313
|
};
|
|
314
314
|
onboardingCompleted: {
|
|
315
|
-
type:
|
|
315
|
+
type: _lssm_lib_schema141.FieldType<boolean, boolean>;
|
|
316
316
|
isOptional: false;
|
|
317
317
|
};
|
|
318
318
|
createdAt: {
|
|
319
|
-
type:
|
|
319
|
+
type: _lssm_lib_schema141.FieldType<Date, string>;
|
|
320
320
|
isOptional: false;
|
|
321
321
|
};
|
|
322
322
|
}>;
|
|
@@ -324,53 +324,53 @@ declare const CreateUserContract: _lssm_lib_contracts29.ContractSpec<SchemaModel
|
|
|
324
324
|
/**
|
|
325
325
|
* Get the current user's profile.
|
|
326
326
|
*/
|
|
327
|
-
declare const GetCurrentUserContract: _lssm_lib_contracts29.ContractSpec<
|
|
327
|
+
declare const GetCurrentUserContract: _lssm_lib_contracts29.ContractSpec<_lssm_lib_schema141.AnySchemaModel, SchemaModel<{
|
|
328
328
|
id: {
|
|
329
|
-
type:
|
|
329
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
330
330
|
isOptional: false;
|
|
331
331
|
};
|
|
332
332
|
email: {
|
|
333
|
-
type:
|
|
333
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
334
334
|
isOptional: false;
|
|
335
335
|
};
|
|
336
336
|
emailVerified: {
|
|
337
|
-
type:
|
|
337
|
+
type: _lssm_lib_schema141.FieldType<boolean, boolean>;
|
|
338
338
|
isOptional: false;
|
|
339
339
|
};
|
|
340
340
|
name: {
|
|
341
|
-
type:
|
|
341
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
342
342
|
isOptional: true;
|
|
343
343
|
};
|
|
344
344
|
firstName: {
|
|
345
|
-
type:
|
|
345
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
346
346
|
isOptional: true;
|
|
347
347
|
};
|
|
348
348
|
lastName: {
|
|
349
|
-
type:
|
|
349
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
350
350
|
isOptional: true;
|
|
351
351
|
};
|
|
352
352
|
locale: {
|
|
353
|
-
type:
|
|
353
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
354
354
|
isOptional: true;
|
|
355
355
|
};
|
|
356
356
|
timezone: {
|
|
357
|
-
type:
|
|
357
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
358
358
|
isOptional: true;
|
|
359
359
|
};
|
|
360
360
|
imageUrl: {
|
|
361
|
-
type:
|
|
361
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
362
362
|
isOptional: true;
|
|
363
363
|
};
|
|
364
364
|
role: {
|
|
365
|
-
type:
|
|
365
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
366
366
|
isOptional: true;
|
|
367
367
|
};
|
|
368
368
|
onboardingCompleted: {
|
|
369
|
-
type:
|
|
369
|
+
type: _lssm_lib_schema141.FieldType<boolean, boolean>;
|
|
370
370
|
isOptional: false;
|
|
371
371
|
};
|
|
372
372
|
createdAt: {
|
|
373
|
-
type:
|
|
373
|
+
type: _lssm_lib_schema141.FieldType<Date, string>;
|
|
374
374
|
isOptional: false;
|
|
375
375
|
};
|
|
376
376
|
}>, undefined>;
|
|
@@ -379,76 +379,76 @@ declare const GetCurrentUserContract: _lssm_lib_contracts29.ContractSpec<_lssm_l
|
|
|
379
379
|
*/
|
|
380
380
|
declare const UpdateUserContract: _lssm_lib_contracts29.ContractSpec<SchemaModel<{
|
|
381
381
|
name: {
|
|
382
|
-
type:
|
|
382
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
383
383
|
isOptional: true;
|
|
384
384
|
};
|
|
385
385
|
firstName: {
|
|
386
|
-
type:
|
|
386
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
387
387
|
isOptional: true;
|
|
388
388
|
};
|
|
389
389
|
lastName: {
|
|
390
|
-
type:
|
|
390
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
391
391
|
isOptional: true;
|
|
392
392
|
};
|
|
393
393
|
locale: {
|
|
394
|
-
type:
|
|
394
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
395
395
|
isOptional: true;
|
|
396
396
|
};
|
|
397
397
|
timezone: {
|
|
398
|
-
type:
|
|
398
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
399
399
|
isOptional: true;
|
|
400
400
|
};
|
|
401
401
|
imageUrl: {
|
|
402
|
-
type:
|
|
402
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
403
403
|
isOptional: true;
|
|
404
404
|
};
|
|
405
405
|
}>, SchemaModel<{
|
|
406
406
|
id: {
|
|
407
|
-
type:
|
|
407
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
408
408
|
isOptional: false;
|
|
409
409
|
};
|
|
410
410
|
email: {
|
|
411
|
-
type:
|
|
411
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
412
412
|
isOptional: false;
|
|
413
413
|
};
|
|
414
414
|
emailVerified: {
|
|
415
|
-
type:
|
|
415
|
+
type: _lssm_lib_schema141.FieldType<boolean, boolean>;
|
|
416
416
|
isOptional: false;
|
|
417
417
|
};
|
|
418
418
|
name: {
|
|
419
|
-
type:
|
|
419
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
420
420
|
isOptional: true;
|
|
421
421
|
};
|
|
422
422
|
firstName: {
|
|
423
|
-
type:
|
|
423
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
424
424
|
isOptional: true;
|
|
425
425
|
};
|
|
426
426
|
lastName: {
|
|
427
|
-
type:
|
|
427
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
428
428
|
isOptional: true;
|
|
429
429
|
};
|
|
430
430
|
locale: {
|
|
431
|
-
type:
|
|
431
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
432
432
|
isOptional: true;
|
|
433
433
|
};
|
|
434
434
|
timezone: {
|
|
435
|
-
type:
|
|
435
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
436
436
|
isOptional: true;
|
|
437
437
|
};
|
|
438
438
|
imageUrl: {
|
|
439
|
-
type:
|
|
439
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
440
440
|
isOptional: true;
|
|
441
441
|
};
|
|
442
442
|
role: {
|
|
443
|
-
type:
|
|
443
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
444
444
|
isOptional: true;
|
|
445
445
|
};
|
|
446
446
|
onboardingCompleted: {
|
|
447
|
-
type:
|
|
447
|
+
type: _lssm_lib_schema141.FieldType<boolean, boolean>;
|
|
448
448
|
isOptional: false;
|
|
449
449
|
};
|
|
450
450
|
createdAt: {
|
|
451
|
-
type:
|
|
451
|
+
type: _lssm_lib_schema141.FieldType<Date, string>;
|
|
452
452
|
isOptional: false;
|
|
453
453
|
};
|
|
454
454
|
}>, {
|
|
@@ -457,51 +457,51 @@ declare const UpdateUserContract: _lssm_lib_contracts29.ContractSpec<SchemaModel
|
|
|
457
457
|
when: string;
|
|
458
458
|
payload: SchemaModel<{
|
|
459
459
|
id: {
|
|
460
|
-
type:
|
|
460
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
461
461
|
isOptional: false;
|
|
462
462
|
};
|
|
463
463
|
email: {
|
|
464
|
-
type:
|
|
464
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
465
465
|
isOptional: false;
|
|
466
466
|
};
|
|
467
467
|
emailVerified: {
|
|
468
|
-
type:
|
|
468
|
+
type: _lssm_lib_schema141.FieldType<boolean, boolean>;
|
|
469
469
|
isOptional: false;
|
|
470
470
|
};
|
|
471
471
|
name: {
|
|
472
|
-
type:
|
|
472
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
473
473
|
isOptional: true;
|
|
474
474
|
};
|
|
475
475
|
firstName: {
|
|
476
|
-
type:
|
|
476
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
477
477
|
isOptional: true;
|
|
478
478
|
};
|
|
479
479
|
lastName: {
|
|
480
|
-
type:
|
|
480
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
481
481
|
isOptional: true;
|
|
482
482
|
};
|
|
483
483
|
locale: {
|
|
484
|
-
type:
|
|
484
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
485
485
|
isOptional: true;
|
|
486
486
|
};
|
|
487
487
|
timezone: {
|
|
488
|
-
type:
|
|
488
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
489
489
|
isOptional: true;
|
|
490
490
|
};
|
|
491
491
|
imageUrl: {
|
|
492
|
-
type:
|
|
492
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
493
493
|
isOptional: true;
|
|
494
494
|
};
|
|
495
495
|
role: {
|
|
496
|
-
type:
|
|
496
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
497
497
|
isOptional: true;
|
|
498
498
|
};
|
|
499
499
|
onboardingCompleted: {
|
|
500
|
-
type:
|
|
500
|
+
type: _lssm_lib_schema141.FieldType<boolean, boolean>;
|
|
501
501
|
isOptional: false;
|
|
502
502
|
};
|
|
503
503
|
createdAt: {
|
|
504
|
-
type:
|
|
504
|
+
type: _lssm_lib_schema141.FieldType<Date, string>;
|
|
505
505
|
isOptional: false;
|
|
506
506
|
};
|
|
507
507
|
}>;
|
|
@@ -511,12 +511,12 @@ declare const UpdateUserContract: _lssm_lib_contracts29.ContractSpec<SchemaModel
|
|
|
511
511
|
*/
|
|
512
512
|
declare const DeleteUserContract: _lssm_lib_contracts29.ContractSpec<SchemaModel<{
|
|
513
513
|
confirmEmail: {
|
|
514
|
-
type:
|
|
514
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
515
515
|
isOptional: false;
|
|
516
516
|
};
|
|
517
517
|
}>, SchemaModel<{
|
|
518
518
|
success: {
|
|
519
|
-
type:
|
|
519
|
+
type: _lssm_lib_schema141.FieldType<boolean, boolean>;
|
|
520
520
|
isOptional: false;
|
|
521
521
|
};
|
|
522
522
|
}>, {
|
|
@@ -525,7 +525,7 @@ declare const DeleteUserContract: _lssm_lib_contracts29.ContractSpec<SchemaModel
|
|
|
525
525
|
when: string;
|
|
526
526
|
payload: SchemaModel<{
|
|
527
527
|
userId: {
|
|
528
|
-
type:
|
|
528
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
529
529
|
isOptional: false;
|
|
530
530
|
};
|
|
531
531
|
}>;
|
|
@@ -535,66 +535,66 @@ declare const DeleteUserContract: _lssm_lib_contracts29.ContractSpec<SchemaModel
|
|
|
535
535
|
*/
|
|
536
536
|
declare const ListUsersContract: _lssm_lib_contracts29.ContractSpec<SchemaModel<{
|
|
537
537
|
limit: {
|
|
538
|
-
type:
|
|
538
|
+
type: _lssm_lib_schema141.FieldType<number, number>;
|
|
539
539
|
isOptional: true;
|
|
540
540
|
};
|
|
541
541
|
offset: {
|
|
542
|
-
type:
|
|
542
|
+
type: _lssm_lib_schema141.FieldType<number, number>;
|
|
543
543
|
isOptional: true;
|
|
544
544
|
};
|
|
545
545
|
search: {
|
|
546
|
-
type:
|
|
546
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
547
547
|
isOptional: true;
|
|
548
548
|
};
|
|
549
549
|
}>, SchemaModel<{
|
|
550
550
|
users: {
|
|
551
551
|
type: SchemaModel<{
|
|
552
552
|
id: {
|
|
553
|
-
type:
|
|
553
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
554
554
|
isOptional: false;
|
|
555
555
|
};
|
|
556
556
|
email: {
|
|
557
|
-
type:
|
|
557
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
558
558
|
isOptional: false;
|
|
559
559
|
};
|
|
560
560
|
emailVerified: {
|
|
561
|
-
type:
|
|
561
|
+
type: _lssm_lib_schema141.FieldType<boolean, boolean>;
|
|
562
562
|
isOptional: false;
|
|
563
563
|
};
|
|
564
564
|
name: {
|
|
565
|
-
type:
|
|
565
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
566
566
|
isOptional: true;
|
|
567
567
|
};
|
|
568
568
|
firstName: {
|
|
569
|
-
type:
|
|
569
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
570
570
|
isOptional: true;
|
|
571
571
|
};
|
|
572
572
|
lastName: {
|
|
573
|
-
type:
|
|
573
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
574
574
|
isOptional: true;
|
|
575
575
|
};
|
|
576
576
|
locale: {
|
|
577
|
-
type:
|
|
577
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
578
578
|
isOptional: true;
|
|
579
579
|
};
|
|
580
580
|
timezone: {
|
|
581
|
-
type:
|
|
581
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
582
582
|
isOptional: true;
|
|
583
583
|
};
|
|
584
584
|
imageUrl: {
|
|
585
|
-
type:
|
|
585
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
586
586
|
isOptional: true;
|
|
587
587
|
};
|
|
588
588
|
role: {
|
|
589
|
-
type:
|
|
589
|
+
type: _lssm_lib_schema141.FieldType<string, string>;
|
|
590
590
|
isOptional: true;
|
|
591
591
|
};
|
|
592
592
|
onboardingCompleted: {
|
|
593
|
-
type:
|
|
593
|
+
type: _lssm_lib_schema141.FieldType<boolean, boolean>;
|
|
594
594
|
isOptional: false;
|
|
595
595
|
};
|
|
596
596
|
createdAt: {
|
|
597
|
-
type:
|
|
597
|
+
type: _lssm_lib_schema141.FieldType<Date, string>;
|
|
598
598
|
isOptional: false;
|
|
599
599
|
};
|
|
600
600
|
}>;
|
|
@@ -602,7 +602,7 @@ declare const ListUsersContract: _lssm_lib_contracts29.ContractSpec<SchemaModel<
|
|
|
602
602
|
isArray: true;
|
|
603
603
|
};
|
|
604
604
|
total: {
|
|
605
|
-
type:
|
|
605
|
+
type: _lssm_lib_schema141.FieldType<number, number>;
|
|
606
606
|
isOptional: false;
|
|
607
607
|
};
|
|
608
608
|
}>, undefined>;
|