@lssm/example.saas-boilerplate 0.0.0-canary-20251220021406 → 0.0.0-canary-20251220041653
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$colon$bundle.log +147 -147
- package/.turbo/turbo-build.log +147 -147
- package/CHANGELOG.md +8 -8
- package/dist/billing/billing.contracts.d.ts +42 -42
- package/dist/billing/billing.contracts.d.ts.map +1 -1
- package/dist/billing/billing.entity.d.ts +41 -41
- package/dist/billing/billing.entity.d.ts.map +1 -1
- package/dist/billing/billing.enum.d.ts +3 -3
- package/dist/billing/billing.enum.d.ts.map +1 -1
- package/dist/billing/billing.event.d.ts +21 -21
- package/dist/billing/billing.event.d.ts.map +1 -1
- package/dist/billing/billing.schema.d.ts +47 -47
- package/dist/project/project.contracts.d.ts +103 -103
- package/dist/project/project.contracts.d.ts.map +1 -1
- package/dist/project/project.entity.d.ts +24 -24
- package/dist/project/project.enum.d.ts +3 -3
- package/dist/project/project.event.d.ts +22 -22
- package/dist/project/project.event.d.ts.map +1 -1
- package/dist/project/project.schema.d.ts +54 -54
- package/dist/settings/settings.entity.d.ts +24 -24
- package/dist/settings/settings.enum.d.ts +2 -2
- package/package.json +10 -10
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -1,89 +1,89 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
1
|
+
import * as _lssm_lib_schema0 from "@lssm/lib.schema";
|
|
2
|
+
import * as _lssm_lib_contracts0 from "@lssm/lib.contracts";
|
|
3
3
|
|
|
4
4
|
//#region src/project/project.event.d.ts
|
|
5
5
|
/**
|
|
6
6
|
* Event: A new project has been created.
|
|
7
7
|
*/
|
|
8
|
-
declare const ProjectCreatedEvent:
|
|
8
|
+
declare const ProjectCreatedEvent: _lssm_lib_contracts0.EventSpec<_lssm_lib_schema0.SchemaModel<{
|
|
9
9
|
projectId: {
|
|
10
|
-
type:
|
|
10
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
11
11
|
isOptional: false;
|
|
12
12
|
};
|
|
13
13
|
name: {
|
|
14
|
-
type:
|
|
14
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
15
15
|
isOptional: false;
|
|
16
16
|
};
|
|
17
17
|
organizationId: {
|
|
18
|
-
type:
|
|
18
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
19
19
|
isOptional: false;
|
|
20
20
|
};
|
|
21
21
|
createdBy: {
|
|
22
|
-
type:
|
|
22
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
23
23
|
isOptional: false;
|
|
24
24
|
};
|
|
25
25
|
createdAt: {
|
|
26
|
-
type:
|
|
26
|
+
type: _lssm_lib_schema0.FieldType<Date, string>;
|
|
27
27
|
isOptional: false;
|
|
28
28
|
};
|
|
29
29
|
}>>;
|
|
30
30
|
/**
|
|
31
31
|
* Event: A project has been updated.
|
|
32
32
|
*/
|
|
33
|
-
declare const ProjectUpdatedEvent:
|
|
33
|
+
declare const ProjectUpdatedEvent: _lssm_lib_contracts0.EventSpec<_lssm_lib_schema0.SchemaModel<{
|
|
34
34
|
projectId: {
|
|
35
|
-
type:
|
|
35
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
36
36
|
isOptional: false;
|
|
37
37
|
};
|
|
38
38
|
updatedFields: {
|
|
39
|
-
type:
|
|
39
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
40
40
|
isArray: true;
|
|
41
41
|
isOptional: false;
|
|
42
42
|
};
|
|
43
43
|
updatedBy: {
|
|
44
|
-
type:
|
|
44
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
45
45
|
isOptional: false;
|
|
46
46
|
};
|
|
47
47
|
updatedAt: {
|
|
48
|
-
type:
|
|
48
|
+
type: _lssm_lib_schema0.FieldType<Date, string>;
|
|
49
49
|
isOptional: false;
|
|
50
50
|
};
|
|
51
51
|
}>>;
|
|
52
52
|
/**
|
|
53
53
|
* Event: A project has been deleted.
|
|
54
54
|
*/
|
|
55
|
-
declare const ProjectDeletedEvent:
|
|
55
|
+
declare const ProjectDeletedEvent: _lssm_lib_contracts0.EventSpec<_lssm_lib_schema0.SchemaModel<{
|
|
56
56
|
projectId: {
|
|
57
|
-
type:
|
|
57
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
58
58
|
isOptional: false;
|
|
59
59
|
};
|
|
60
60
|
organizationId: {
|
|
61
|
-
type:
|
|
61
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
62
62
|
isOptional: false;
|
|
63
63
|
};
|
|
64
64
|
deletedBy: {
|
|
65
|
-
type:
|
|
65
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
66
66
|
isOptional: false;
|
|
67
67
|
};
|
|
68
68
|
deletedAt: {
|
|
69
|
-
type:
|
|
69
|
+
type: _lssm_lib_schema0.FieldType<Date, string>;
|
|
70
70
|
isOptional: false;
|
|
71
71
|
};
|
|
72
72
|
}>>;
|
|
73
73
|
/**
|
|
74
74
|
* Event: A project has been archived.
|
|
75
75
|
*/
|
|
76
|
-
declare const ProjectArchivedEvent:
|
|
76
|
+
declare const ProjectArchivedEvent: _lssm_lib_contracts0.EventSpec<_lssm_lib_schema0.SchemaModel<{
|
|
77
77
|
projectId: {
|
|
78
|
-
type:
|
|
78
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
79
79
|
isOptional: false;
|
|
80
80
|
};
|
|
81
81
|
archivedBy: {
|
|
82
|
-
type:
|
|
82
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
83
83
|
isOptional: false;
|
|
84
84
|
};
|
|
85
85
|
archivedAt: {
|
|
86
|
-
type:
|
|
86
|
+
type: _lssm_lib_schema0.FieldType<Date, string>;
|
|
87
87
|
isOptional: false;
|
|
88
88
|
};
|
|
89
89
|
}>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"project.event.d.ts","names":[],"sources":["../../src/project/project.event.ts"],"sourcesContent":[],"mappings":";;;;;;;cAwEa,qBAAmB,
|
|
1
|
+
{"version":3,"file":"project.event.d.ts","names":[],"sources":["../../src/project/project.event.ts"],"sourcesContent":[],"mappings":";;;;;;;cAwEa,qBAAmB,oBAAA,CAAA,4BAAA;EAAnB,SAAA,EAAA;IAKX,IAAA,EAAA,iBAAA,CAAA,SAAA,CAAA,MAAA,EAAA,MAAA,CAAA;;;;;;;EAL8B,cAAA,EAAA;IAAA,IAAA,6BAAA,CAAA,MAAA,EAAA,MAAA,CAAA;IAUnB,UAAA,EAAA,KAAA;EAKX,CAAA;;;;;;IAL8B,IAAA,6BAAA,KAAA,EAAA,MAAA,CAAA;IAAA,UAAA,EAAA,KAAA;EAUnB,CAAA;CAKX,CAAA,CAAA;;;;cAfW,qBAAmB,oBAAA,CAAA,4BAAA;;IAUA,IAAA,EAL9B,iBAAA,CAAA,SAK8B,CAAA,MAAA,EAAA,MAAA,CAAA;IAAA,UAAA,EAAA,KAAA;EAUnB,CAAA;EAKX,aAAA,EAAA;;;;;EAL+B,SAAA,EAAA;IAAA,IAAA,6BAAA,CAAA,MAAA,EAAA,MAAA,CAAA;;;;;;;;;;;cAVpB,qBAAmB,oBAAA,CAAA,4BAAA;;UAK9B,iBAAA,CAAA;;;;;;;;;;;;;;;;;;;cAKW,sBAAoB,oBAAA,CAAA,4BAAA;;UAK/B,iBAAA,CAAA"}
|
|
@@ -1,78 +1,78 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _lssm_lib_schema168 from "@lssm/lib.schema";
|
|
2
2
|
|
|
3
3
|
//#region src/project/project.schema.d.ts
|
|
4
4
|
/**
|
|
5
5
|
* A project within an organization.
|
|
6
6
|
*/
|
|
7
|
-
declare const ProjectModel:
|
|
7
|
+
declare const ProjectModel: _lssm_lib_schema168.SchemaModel<{
|
|
8
8
|
id: {
|
|
9
|
-
type:
|
|
9
|
+
type: _lssm_lib_schema168.FieldType<string, string>;
|
|
10
10
|
isOptional: false;
|
|
11
11
|
};
|
|
12
12
|
name: {
|
|
13
|
-
type:
|
|
13
|
+
type: _lssm_lib_schema168.FieldType<string, string>;
|
|
14
14
|
isOptional: false;
|
|
15
15
|
};
|
|
16
16
|
description: {
|
|
17
|
-
type:
|
|
17
|
+
type: _lssm_lib_schema168.FieldType<string, string>;
|
|
18
18
|
isOptional: true;
|
|
19
19
|
};
|
|
20
20
|
slug: {
|
|
21
|
-
type:
|
|
21
|
+
type: _lssm_lib_schema168.FieldType<string, string>;
|
|
22
22
|
isOptional: true;
|
|
23
23
|
};
|
|
24
24
|
organizationId: {
|
|
25
|
-
type:
|
|
25
|
+
type: _lssm_lib_schema168.FieldType<string, string>;
|
|
26
26
|
isOptional: false;
|
|
27
27
|
};
|
|
28
28
|
createdBy: {
|
|
29
|
-
type:
|
|
29
|
+
type: _lssm_lib_schema168.FieldType<string, string>;
|
|
30
30
|
isOptional: false;
|
|
31
31
|
};
|
|
32
32
|
status: {
|
|
33
|
-
type:
|
|
33
|
+
type: _lssm_lib_schema168.EnumType<[string, string, string, string]>;
|
|
34
34
|
isOptional: false;
|
|
35
35
|
};
|
|
36
36
|
isPublic: {
|
|
37
|
-
type:
|
|
37
|
+
type: _lssm_lib_schema168.FieldType<boolean, boolean>;
|
|
38
38
|
isOptional: false;
|
|
39
39
|
};
|
|
40
40
|
tags: {
|
|
41
|
-
type:
|
|
41
|
+
type: _lssm_lib_schema168.FieldType<string, string>;
|
|
42
42
|
isArray: true;
|
|
43
43
|
isOptional: false;
|
|
44
44
|
};
|
|
45
45
|
createdAt: {
|
|
46
|
-
type:
|
|
46
|
+
type: _lssm_lib_schema168.FieldType<Date, string>;
|
|
47
47
|
isOptional: false;
|
|
48
48
|
};
|
|
49
49
|
updatedAt: {
|
|
50
|
-
type:
|
|
50
|
+
type: _lssm_lib_schema168.FieldType<Date, string>;
|
|
51
51
|
isOptional: false;
|
|
52
52
|
};
|
|
53
53
|
}>;
|
|
54
54
|
/**
|
|
55
55
|
* Input for creating a project.
|
|
56
56
|
*/
|
|
57
|
-
declare const CreateProjectInputModel:
|
|
57
|
+
declare const CreateProjectInputModel: _lssm_lib_schema168.SchemaModel<{
|
|
58
58
|
name: {
|
|
59
|
-
type:
|
|
59
|
+
type: _lssm_lib_schema168.FieldType<string, string>;
|
|
60
60
|
isOptional: false;
|
|
61
61
|
};
|
|
62
62
|
description: {
|
|
63
|
-
type:
|
|
63
|
+
type: _lssm_lib_schema168.FieldType<string, string>;
|
|
64
64
|
isOptional: true;
|
|
65
65
|
};
|
|
66
66
|
slug: {
|
|
67
|
-
type:
|
|
67
|
+
type: _lssm_lib_schema168.FieldType<string, string>;
|
|
68
68
|
isOptional: true;
|
|
69
69
|
};
|
|
70
70
|
isPublic: {
|
|
71
|
-
type:
|
|
71
|
+
type: _lssm_lib_schema168.FieldType<boolean, boolean>;
|
|
72
72
|
isOptional: true;
|
|
73
73
|
};
|
|
74
74
|
tags: {
|
|
75
|
-
type:
|
|
75
|
+
type: _lssm_lib_schema168.FieldType<string, string>;
|
|
76
76
|
isArray: true;
|
|
77
77
|
isOptional: true;
|
|
78
78
|
};
|
|
@@ -80,92 +80,92 @@ declare const CreateProjectInputModel: _lssm_lib_schema293.SchemaModel<{
|
|
|
80
80
|
/**
|
|
81
81
|
* Input for updating a project.
|
|
82
82
|
*/
|
|
83
|
-
declare const UpdateProjectInputModel:
|
|
83
|
+
declare const UpdateProjectInputModel: _lssm_lib_schema168.SchemaModel<{
|
|
84
84
|
projectId: {
|
|
85
|
-
type:
|
|
85
|
+
type: _lssm_lib_schema168.FieldType<string, string>;
|
|
86
86
|
isOptional: false;
|
|
87
87
|
};
|
|
88
88
|
name: {
|
|
89
|
-
type:
|
|
89
|
+
type: _lssm_lib_schema168.FieldType<string, string>;
|
|
90
90
|
isOptional: true;
|
|
91
91
|
};
|
|
92
92
|
description: {
|
|
93
|
-
type:
|
|
93
|
+
type: _lssm_lib_schema168.FieldType<string, string>;
|
|
94
94
|
isOptional: true;
|
|
95
95
|
};
|
|
96
96
|
slug: {
|
|
97
|
-
type:
|
|
97
|
+
type: _lssm_lib_schema168.FieldType<string, string>;
|
|
98
98
|
isOptional: true;
|
|
99
99
|
};
|
|
100
100
|
isPublic: {
|
|
101
|
-
type:
|
|
101
|
+
type: _lssm_lib_schema168.FieldType<boolean, boolean>;
|
|
102
102
|
isOptional: true;
|
|
103
103
|
};
|
|
104
104
|
tags: {
|
|
105
|
-
type:
|
|
105
|
+
type: _lssm_lib_schema168.FieldType<string, string>;
|
|
106
106
|
isArray: true;
|
|
107
107
|
isOptional: true;
|
|
108
108
|
};
|
|
109
109
|
status: {
|
|
110
|
-
type:
|
|
110
|
+
type: _lssm_lib_schema168.EnumType<[string, string, string, string]>;
|
|
111
111
|
isOptional: true;
|
|
112
112
|
};
|
|
113
113
|
}>;
|
|
114
114
|
/**
|
|
115
115
|
* Input for getting a project.
|
|
116
116
|
*/
|
|
117
|
-
declare const GetProjectInputModel:
|
|
117
|
+
declare const GetProjectInputModel: _lssm_lib_schema168.SchemaModel<{
|
|
118
118
|
projectId: {
|
|
119
|
-
type:
|
|
119
|
+
type: _lssm_lib_schema168.FieldType<string, string>;
|
|
120
120
|
isOptional: false;
|
|
121
121
|
};
|
|
122
122
|
}>;
|
|
123
123
|
/**
|
|
124
124
|
* Input for deleting a project.
|
|
125
125
|
*/
|
|
126
|
-
declare const DeleteProjectInputModel:
|
|
126
|
+
declare const DeleteProjectInputModel: _lssm_lib_schema168.SchemaModel<{
|
|
127
127
|
projectId: {
|
|
128
|
-
type:
|
|
128
|
+
type: _lssm_lib_schema168.FieldType<string, string>;
|
|
129
129
|
isOptional: false;
|
|
130
130
|
};
|
|
131
131
|
}>;
|
|
132
132
|
/**
|
|
133
133
|
* Output for delete operation.
|
|
134
134
|
*/
|
|
135
|
-
declare const DeleteProjectOutputModel:
|
|
135
|
+
declare const DeleteProjectOutputModel: _lssm_lib_schema168.SchemaModel<{
|
|
136
136
|
success: {
|
|
137
|
-
type:
|
|
137
|
+
type: _lssm_lib_schema168.FieldType<boolean, boolean>;
|
|
138
138
|
isOptional: false;
|
|
139
139
|
};
|
|
140
140
|
}>;
|
|
141
141
|
/**
|
|
142
142
|
* Payload for project deleted event.
|
|
143
143
|
*/
|
|
144
|
-
declare const ProjectDeletedPayloadModel:
|
|
144
|
+
declare const ProjectDeletedPayloadModel: _lssm_lib_schema168.SchemaModel<{
|
|
145
145
|
projectId: {
|
|
146
|
-
type:
|
|
146
|
+
type: _lssm_lib_schema168.FieldType<string, string>;
|
|
147
147
|
isOptional: false;
|
|
148
148
|
};
|
|
149
149
|
}>;
|
|
150
150
|
/**
|
|
151
151
|
* Input for listing projects.
|
|
152
152
|
*/
|
|
153
|
-
declare const ListProjectsInputModel:
|
|
153
|
+
declare const ListProjectsInputModel: _lssm_lib_schema168.SchemaModel<{
|
|
154
154
|
status: {
|
|
155
|
-
type:
|
|
155
|
+
type: _lssm_lib_schema168.EnumType<[string, string, string, string]>;
|
|
156
156
|
isOptional: true;
|
|
157
157
|
};
|
|
158
158
|
search: {
|
|
159
|
-
type:
|
|
159
|
+
type: _lssm_lib_schema168.FieldType<string, string>;
|
|
160
160
|
isOptional: true;
|
|
161
161
|
};
|
|
162
162
|
limit: {
|
|
163
|
-
type:
|
|
163
|
+
type: _lssm_lib_schema168.FieldType<number, number>;
|
|
164
164
|
isOptional: true;
|
|
165
165
|
defaultValue: number;
|
|
166
166
|
};
|
|
167
167
|
offset: {
|
|
168
|
-
type:
|
|
168
|
+
type: _lssm_lib_schema168.FieldType<number, number>;
|
|
169
169
|
isOptional: true;
|
|
170
170
|
defaultValue: number;
|
|
171
171
|
};
|
|
@@ -173,52 +173,52 @@ declare const ListProjectsInputModel: _lssm_lib_schema293.SchemaModel<{
|
|
|
173
173
|
/**
|
|
174
174
|
* Output for listing projects.
|
|
175
175
|
*/
|
|
176
|
-
declare const ListProjectsOutputModel:
|
|
176
|
+
declare const ListProjectsOutputModel: _lssm_lib_schema168.SchemaModel<{
|
|
177
177
|
projects: {
|
|
178
|
-
type:
|
|
178
|
+
type: _lssm_lib_schema168.SchemaModel<{
|
|
179
179
|
id: {
|
|
180
|
-
type:
|
|
180
|
+
type: _lssm_lib_schema168.FieldType<string, string>;
|
|
181
181
|
isOptional: false;
|
|
182
182
|
};
|
|
183
183
|
name: {
|
|
184
|
-
type:
|
|
184
|
+
type: _lssm_lib_schema168.FieldType<string, string>;
|
|
185
185
|
isOptional: false;
|
|
186
186
|
};
|
|
187
187
|
description: {
|
|
188
|
-
type:
|
|
188
|
+
type: _lssm_lib_schema168.FieldType<string, string>;
|
|
189
189
|
isOptional: true;
|
|
190
190
|
};
|
|
191
191
|
slug: {
|
|
192
|
-
type:
|
|
192
|
+
type: _lssm_lib_schema168.FieldType<string, string>;
|
|
193
193
|
isOptional: true;
|
|
194
194
|
};
|
|
195
195
|
organizationId: {
|
|
196
|
-
type:
|
|
196
|
+
type: _lssm_lib_schema168.FieldType<string, string>;
|
|
197
197
|
isOptional: false;
|
|
198
198
|
};
|
|
199
199
|
createdBy: {
|
|
200
|
-
type:
|
|
200
|
+
type: _lssm_lib_schema168.FieldType<string, string>;
|
|
201
201
|
isOptional: false;
|
|
202
202
|
};
|
|
203
203
|
status: {
|
|
204
|
-
type:
|
|
204
|
+
type: _lssm_lib_schema168.EnumType<[string, string, string, string]>;
|
|
205
205
|
isOptional: false;
|
|
206
206
|
};
|
|
207
207
|
isPublic: {
|
|
208
|
-
type:
|
|
208
|
+
type: _lssm_lib_schema168.FieldType<boolean, boolean>;
|
|
209
209
|
isOptional: false;
|
|
210
210
|
};
|
|
211
211
|
tags: {
|
|
212
|
-
type:
|
|
212
|
+
type: _lssm_lib_schema168.FieldType<string, string>;
|
|
213
213
|
isArray: true;
|
|
214
214
|
isOptional: false;
|
|
215
215
|
};
|
|
216
216
|
createdAt: {
|
|
217
|
-
type:
|
|
217
|
+
type: _lssm_lib_schema168.FieldType<Date, string>;
|
|
218
218
|
isOptional: false;
|
|
219
219
|
};
|
|
220
220
|
updatedAt: {
|
|
221
|
-
type:
|
|
221
|
+
type: _lssm_lib_schema168.FieldType<Date, string>;
|
|
222
222
|
isOptional: false;
|
|
223
223
|
};
|
|
224
224
|
}>;
|
|
@@ -226,7 +226,7 @@ declare const ListProjectsOutputModel: _lssm_lib_schema293.SchemaModel<{
|
|
|
226
226
|
isOptional: false;
|
|
227
227
|
};
|
|
228
228
|
total: {
|
|
229
|
-
type:
|
|
229
|
+
type: _lssm_lib_schema168.FieldType<number, number>;
|
|
230
230
|
isOptional: false;
|
|
231
231
|
};
|
|
232
232
|
}>;
|
|
@@ -1,36 +1,36 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _lssm_lib_schema145 from "@lssm/lib.schema";
|
|
2
2
|
|
|
3
3
|
//#region src/settings/settings.entity.d.ts
|
|
4
4
|
/**
|
|
5
5
|
* Settings entity - key-value configuration store.
|
|
6
6
|
*/
|
|
7
|
-
declare const SettingsEntity:
|
|
8
|
-
id:
|
|
9
|
-
key:
|
|
10
|
-
scope:
|
|
11
|
-
scopeId:
|
|
12
|
-
value:
|
|
13
|
-
valueType:
|
|
14
|
-
schema:
|
|
15
|
-
description:
|
|
16
|
-
isSecret:
|
|
17
|
-
createdAt:
|
|
18
|
-
updatedAt:
|
|
7
|
+
declare const SettingsEntity: _lssm_lib_schema145.EntitySpec<{
|
|
8
|
+
id: _lssm_lib_schema145.EntityScalarField;
|
|
9
|
+
key: _lssm_lib_schema145.EntityScalarField;
|
|
10
|
+
scope: _lssm_lib_schema145.EntityEnumField;
|
|
11
|
+
scopeId: _lssm_lib_schema145.EntityScalarField;
|
|
12
|
+
value: _lssm_lib_schema145.EntityScalarField;
|
|
13
|
+
valueType: _lssm_lib_schema145.EntityScalarField;
|
|
14
|
+
schema: _lssm_lib_schema145.EntityScalarField;
|
|
15
|
+
description: _lssm_lib_schema145.EntityScalarField;
|
|
16
|
+
isSecret: _lssm_lib_schema145.EntityScalarField;
|
|
17
|
+
createdAt: _lssm_lib_schema145.EntityScalarField;
|
|
18
|
+
updatedAt: _lssm_lib_schema145.EntityScalarField;
|
|
19
19
|
}>;
|
|
20
20
|
/**
|
|
21
21
|
* FeatureFlag entity - feature toggles.
|
|
22
22
|
*/
|
|
23
|
-
declare const FeatureFlagEntity:
|
|
24
|
-
id:
|
|
25
|
-
key:
|
|
26
|
-
name:
|
|
27
|
-
description:
|
|
28
|
-
enabled:
|
|
29
|
-
defaultValue:
|
|
30
|
-
rules:
|
|
31
|
-
rolloutPercentage:
|
|
32
|
-
createdAt:
|
|
33
|
-
updatedAt:
|
|
23
|
+
declare const FeatureFlagEntity: _lssm_lib_schema145.EntitySpec<{
|
|
24
|
+
id: _lssm_lib_schema145.EntityScalarField;
|
|
25
|
+
key: _lssm_lib_schema145.EntityScalarField;
|
|
26
|
+
name: _lssm_lib_schema145.EntityScalarField;
|
|
27
|
+
description: _lssm_lib_schema145.EntityScalarField;
|
|
28
|
+
enabled: _lssm_lib_schema145.EntityScalarField;
|
|
29
|
+
defaultValue: _lssm_lib_schema145.EntityScalarField;
|
|
30
|
+
rules: _lssm_lib_schema145.EntityScalarField;
|
|
31
|
+
rolloutPercentage: _lssm_lib_schema145.EntityScalarField;
|
|
32
|
+
createdAt: _lssm_lib_schema145.EntityScalarField;
|
|
33
|
+
updatedAt: _lssm_lib_schema145.EntityScalarField;
|
|
34
34
|
}>;
|
|
35
35
|
//#endregion
|
|
36
36
|
export { FeatureFlagEntity, SettingsEntity };
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _lssm_lib_schema221 from "@lssm/lib.schema";
|
|
2
2
|
|
|
3
3
|
//#region src/settings/settings.enum.d.ts
|
|
4
4
|
/**
|
|
5
5
|
* Settings scope enum.
|
|
6
6
|
*/
|
|
7
|
-
declare const SettingsScopeEnum:
|
|
7
|
+
declare const SettingsScopeEnum: _lssm_lib_schema221.EntityEnumDef;
|
|
8
8
|
//#endregion
|
|
9
9
|
export { SettingsScopeEnum };
|
|
10
10
|
//# sourceMappingURL=settings.enum.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lssm/example.saas-boilerplate",
|
|
3
|
-
"version": "0.0.0-canary-
|
|
3
|
+
"version": "0.0.0-canary-20251220041653",
|
|
4
4
|
"description": "SaaS Boilerplate - Users, Orgs, Projects, Billing, Settings",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -51,18 +51,18 @@
|
|
|
51
51
|
"test": "bun run"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@lssm/lib.schema": "0.0.0-canary-
|
|
55
|
-
"@lssm/lib.contracts": "0.0.0-canary-
|
|
56
|
-
"@lssm/lib.bus": "0.0.0-canary-
|
|
57
|
-
"@lssm/lib.identity-rbac": "0.0.0-canary-
|
|
58
|
-
"@lssm/lib.jobs": "0.0.0-canary-
|
|
59
|
-
"@lssm/module.audit-trail": "0.0.0-canary-
|
|
60
|
-
"@lssm/module.notifications": "0.0.0-canary-
|
|
54
|
+
"@lssm/lib.schema": "0.0.0-canary-20251220041653",
|
|
55
|
+
"@lssm/lib.contracts": "0.0.0-canary-20251220041653",
|
|
56
|
+
"@lssm/lib.bus": "0.0.0-canary-20251220041653",
|
|
57
|
+
"@lssm/lib.identity-rbac": "0.0.0-canary-20251220041653",
|
|
58
|
+
"@lssm/lib.jobs": "0.0.0-canary-20251220041653",
|
|
59
|
+
"@lssm/module.audit-trail": "0.0.0-canary-20251220041653",
|
|
60
|
+
"@lssm/module.notifications": "0.0.0-canary-20251220041653",
|
|
61
61
|
"zod": "^4.1.13"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
|
-
"@lssm/tool.tsdown": "0.0.0-canary-
|
|
65
|
-
"@lssm/tool.typescript": "0.0.0-canary-
|
|
64
|
+
"@lssm/tool.tsdown": "0.0.0-canary-20251220041653",
|
|
65
|
+
"@lssm/tool.typescript": "0.0.0-canary-20251220041653",
|
|
66
66
|
"tsdown": "^0.18.1",
|
|
67
67
|
"typescript": "^5.9.3"
|
|
68
68
|
},
|