@danielgenarog/shared-contracts 1.0.7 → 1.0.9
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/core/business/business/business.schema.d.ts +68 -34
- package/dist/core/business/business/business.schema.d.ts.map +1 -1
- package/dist/core/business/business/business.schema.js +2 -1
- package/dist/core/business/business/business.schema.js.map +1 -1
- package/dist/core/business/style/style.schema.d.ts +41 -3
- package/dist/core/business/style/style.schema.d.ts.map +1 -1
- package/dist/core/business/style/style.schema.js +6 -4
- package/dist/core/business/style/style.schema.js.map +1 -1
- package/dist/index.d.ts +3 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -76,6 +76,43 @@ export declare const ResBusinessSchema: z.ZodObject<{
|
|
|
76
76
|
}, z.core.$strip>>;
|
|
77
77
|
element_id: z.ZodString;
|
|
78
78
|
}, z.core.$strip>>>;
|
|
79
|
+
style: z.ZodObject<{
|
|
80
|
+
style: z.ZodObject<{
|
|
81
|
+
theme: z.ZodEnum<{
|
|
82
|
+
default: "default";
|
|
83
|
+
minimalist: "minimalist";
|
|
84
|
+
borderless: "borderless";
|
|
85
|
+
light: "light";
|
|
86
|
+
dark: "dark";
|
|
87
|
+
}>;
|
|
88
|
+
name: z.ZodObject<{
|
|
89
|
+
color: z.ZodOptional<z.ZodString>;
|
|
90
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
91
|
+
noborder: z.ZodOptional<z.ZodBoolean>;
|
|
92
|
+
text_position: z.ZodOptional<z.ZodString>;
|
|
93
|
+
className: z.ZodOptional<z.ZodString>;
|
|
94
|
+
}, z.core.$strip>;
|
|
95
|
+
description: z.ZodObject<{
|
|
96
|
+
color: z.ZodOptional<z.ZodString>;
|
|
97
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
98
|
+
noborder: z.ZodOptional<z.ZodBoolean>;
|
|
99
|
+
text_position: z.ZodOptional<z.ZodString>;
|
|
100
|
+
className: z.ZodOptional<z.ZodString>;
|
|
101
|
+
}, z.core.$strip>;
|
|
102
|
+
logo: z.ZodObject<{
|
|
103
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
104
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
105
|
+
noborder: z.ZodOptional<z.ZodBoolean>;
|
|
106
|
+
centered: z.ZodOptional<z.ZodBoolean>;
|
|
107
|
+
variant: z.ZodOptional<z.ZodEnum<{
|
|
108
|
+
default: "default";
|
|
109
|
+
surface: "surface";
|
|
110
|
+
outline: "outline";
|
|
111
|
+
noborder: "noborder";
|
|
112
|
+
}>>;
|
|
113
|
+
}, z.core.$strip>;
|
|
114
|
+
}, z.core.$strip>;
|
|
115
|
+
}, z.core.$strip>;
|
|
79
116
|
}, z.core.$strip>;
|
|
80
117
|
export type ResBusiness = z.infer<typeof ResBusinessSchema>;
|
|
81
118
|
export declare const CreateBusinessSchema: z.ZodObject<{
|
|
@@ -135,41 +172,38 @@ export declare const CreateBusinessSchema: z.ZodObject<{
|
|
|
135
172
|
}, z.core.$strip>>;
|
|
136
173
|
}, z.core.$strip>>>;
|
|
137
174
|
style: z.ZodObject<{
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
175
|
+
theme: z.ZodEnum<{
|
|
176
|
+
default: "default";
|
|
177
|
+
minimalist: "minimalist";
|
|
178
|
+
borderless: "borderless";
|
|
179
|
+
light: "light";
|
|
180
|
+
dark: "dark";
|
|
181
|
+
}>;
|
|
182
|
+
name: z.ZodObject<{
|
|
183
|
+
color: z.ZodOptional<z.ZodString>;
|
|
184
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
185
|
+
noborder: z.ZodOptional<z.ZodBoolean>;
|
|
186
|
+
text_position: z.ZodOptional<z.ZodString>;
|
|
187
|
+
className: z.ZodOptional<z.ZodString>;
|
|
188
|
+
}, z.core.$strip>;
|
|
189
|
+
description: z.ZodObject<{
|
|
190
|
+
color: z.ZodOptional<z.ZodString>;
|
|
191
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
192
|
+
noborder: z.ZodOptional<z.ZodBoolean>;
|
|
193
|
+
text_position: z.ZodOptional<z.ZodString>;
|
|
194
|
+
className: z.ZodOptional<z.ZodString>;
|
|
195
|
+
}, z.core.$strip>;
|
|
196
|
+
logo: z.ZodObject<{
|
|
197
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
198
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
199
|
+
noborder: z.ZodOptional<z.ZodBoolean>;
|
|
200
|
+
centered: z.ZodOptional<z.ZodBoolean>;
|
|
201
|
+
variant: z.ZodOptional<z.ZodEnum<{
|
|
141
202
|
default: "default";
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
}>;
|
|
147
|
-
name: z.ZodObject<{
|
|
148
|
-
color: z.ZodOptional<z.ZodString>;
|
|
149
|
-
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
150
|
-
noborder: z.ZodOptional<z.ZodBoolean>;
|
|
151
|
-
text_position: z.ZodOptional<z.ZodString>;
|
|
152
|
-
className: z.ZodOptional<z.ZodString>;
|
|
153
|
-
}, z.core.$strip>;
|
|
154
|
-
description: z.ZodObject<{
|
|
155
|
-
color: z.ZodOptional<z.ZodString>;
|
|
156
|
-
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
157
|
-
noborder: z.ZodOptional<z.ZodBoolean>;
|
|
158
|
-
text_position: z.ZodOptional<z.ZodString>;
|
|
159
|
-
className: z.ZodOptional<z.ZodString>;
|
|
160
|
-
}, z.core.$strip>;
|
|
161
|
-
logo: z.ZodObject<{
|
|
162
|
-
width: z.ZodOptional<z.ZodNumber>;
|
|
163
|
-
height: z.ZodOptional<z.ZodNumber>;
|
|
164
|
-
noborder: z.ZodOptional<z.ZodBoolean>;
|
|
165
|
-
centered: z.ZodOptional<z.ZodBoolean>;
|
|
166
|
-
variant: z.ZodOptional<z.ZodEnum<{
|
|
167
|
-
default: "default";
|
|
168
|
-
surface: "surface";
|
|
169
|
-
outline: "outline";
|
|
170
|
-
noborder: "noborder";
|
|
171
|
-
}>>;
|
|
172
|
-
}, z.core.$strip>;
|
|
203
|
+
surface: "surface";
|
|
204
|
+
outline: "outline";
|
|
205
|
+
noborder: "noborder";
|
|
206
|
+
}>>;
|
|
173
207
|
}, z.core.$strip>;
|
|
174
208
|
}, z.core.$strip>;
|
|
175
209
|
}, z.core.$strip>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"business.schema.d.ts","sourceRoot":"","sources":["../../../../src/core/business/business/business.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,eAAO,MAAM,kBAAkB;;;;;;;EAO7B,CAAA;AAEF,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAA;AAE7D,eAAO,MAAM,cAAc;;;;;;;;;;;;;;iBAOzB,CAAA;AACF,MAAM,MAAM,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAA;AAErD,eAAO,MAAM,iBAAiB
|
|
1
|
+
{"version":3,"file":"business.schema.d.ts","sourceRoot":"","sources":["../../../../src/core/business/business/business.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,eAAO,MAAM,kBAAkB;;;;;;;EAO7B,CAAA;AAEF,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAA;AAE7D,eAAO,MAAM,cAAc;;;;;;;;;;;;;;iBAOzB,CAAA;AACF,MAAM,MAAM,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAA;AAErD,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAK5B,CAAA;AACF,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAA;AAE3D,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAI/B,CAAA;AACF,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAA;AAEjE,eAAO,MAAM,cAAc,EAAC,MAAM,CAAC,YAAY,EAAC,MAAM,CAOrD,CAAA"}
|
|
@@ -25,11 +25,12 @@ exports.ResBusinessSchema = exports.BusinessSchema.extend({
|
|
|
25
25
|
business_id: zod_1.z.string(),
|
|
26
26
|
slug: zod_1.z.string(),
|
|
27
27
|
elements: zod_1.z.array(elements_schema_1.ResElementSchema).optional(),
|
|
28
|
+
style: style_schema_1.StyleSchema
|
|
28
29
|
});
|
|
29
30
|
exports.CreateBusinessSchema = exports.BusinessSchema.extend({
|
|
30
31
|
theme: theme_schema_1.ThemeOptionSchema,
|
|
31
32
|
elements: zod_1.z.array(elements_schema_1.ElementSchema).optional(),
|
|
32
|
-
style: style_schema_1.
|
|
33
|
+
style: style_schema_1.IStyleSchema
|
|
33
34
|
});
|
|
34
35
|
exports.DEFAULT_LABELS = {
|
|
35
36
|
restaurant: "Restaurante",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"business.schema.js","sourceRoot":"","sources":["../../../../src/core/business/business/business.schema.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AACxB,wDAA0D;AAC1D,iEAA+E;AAC/E,
|
|
1
|
+
{"version":3,"file":"business.schema.js","sourceRoot":"","sources":["../../../../src/core/business/business/business.schema.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AACxB,wDAA0D;AAC1D,iEAA+E;AAC/E,wDAAkE;AAErD,QAAA,kBAAkB,GAAG,OAAC,CAAC,IAAI,CAAC;IACvC,YAAY;IACZ,KAAK;IACL,MAAM;IACN,OAAO;IACP,YAAY;IACZ,KAAK;CACN,CAAC,CAAA;AAIW,QAAA,cAAc,GAAG,OAAC,CAAC,MAAM,CAAC;IACnC,OAAO,EAAE,OAAC,CAAC,MAAM,EAAE;IACnB,IAAI,EAAE,0BAAkB;IACxB,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE;IAChB,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE;IACvB,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE;IACvB,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE;CACnB,CAAC,CAAA;AAGW,QAAA,iBAAiB,GAAG,sBAAc,CAAC,MAAM,CAAC;IACnD,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE;IACvB,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE;IAChB,QAAQ,EAAE,OAAC,CAAC,KAAK,CAAC,kCAAgB,CAAC,CAAC,QAAQ,EAAE;IAC9C,KAAK,EAAE,0BAAW;CACrB,CAAC,CAAA;AAGW,QAAA,oBAAoB,GAAG,sBAAc,CAAC,MAAM,CAAC;IACtD,KAAK,EAAE,gCAAiB;IACxB,QAAQ,EAAE,OAAC,CAAC,KAAK,CAAC,+BAAa,CAAC,CAAC,QAAQ,EAAE;IAC3C,KAAK,EAAE,2BAAY;CACtB,CAAC,CAAA;AAGW,QAAA,cAAc,GAA+B;IACxD,UAAU,EAAC,aAAa;IACxB,GAAG,EAAC,KAAK;IACT,UAAU,EAAC,YAAY;IACvB,IAAI,EAAC,MAAM;IACX,GAAG,EAAC,UAAU;IACd,KAAK,EAAC,OAAO;CACd,CAAA"}
|
|
@@ -19,7 +19,7 @@ export declare const StyleLogoSchema: z.ZodObject<{
|
|
|
19
19
|
noborder: "noborder";
|
|
20
20
|
}>>;
|
|
21
21
|
}, z.core.$strip>;
|
|
22
|
-
export declare const
|
|
22
|
+
export declare const IStyleSchema: z.ZodObject<{
|
|
23
23
|
theme: z.ZodEnum<{
|
|
24
24
|
default: "default";
|
|
25
25
|
minimalist: "minimalist";
|
|
@@ -54,9 +54,8 @@ export declare const IStyle: z.ZodObject<{
|
|
|
54
54
|
}>>;
|
|
55
55
|
}, z.core.$strip>;
|
|
56
56
|
}, z.core.$strip>;
|
|
57
|
-
export type IStyle = z.infer<typeof
|
|
57
|
+
export type IStyle = z.infer<typeof IStyleSchema>;
|
|
58
58
|
export declare const StyleSchema: z.ZodObject<{
|
|
59
|
-
style_id: z.ZodString;
|
|
60
59
|
style: z.ZodObject<{
|
|
61
60
|
theme: z.ZodEnum<{
|
|
62
61
|
default: "default";
|
|
@@ -94,4 +93,43 @@ export declare const StyleSchema: z.ZodObject<{
|
|
|
94
93
|
}, z.core.$strip>;
|
|
95
94
|
}, z.core.$strip>;
|
|
96
95
|
export type Style = z.infer<typeof StyleSchema>;
|
|
96
|
+
export declare const ResStyleSchema: z.ZodObject<{
|
|
97
|
+
style: z.ZodObject<{
|
|
98
|
+
theme: z.ZodEnum<{
|
|
99
|
+
default: "default";
|
|
100
|
+
minimalist: "minimalist";
|
|
101
|
+
borderless: "borderless";
|
|
102
|
+
light: "light";
|
|
103
|
+
dark: "dark";
|
|
104
|
+
}>;
|
|
105
|
+
name: z.ZodObject<{
|
|
106
|
+
color: z.ZodOptional<z.ZodString>;
|
|
107
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
108
|
+
noborder: z.ZodOptional<z.ZodBoolean>;
|
|
109
|
+
text_position: z.ZodOptional<z.ZodString>;
|
|
110
|
+
className: z.ZodOptional<z.ZodString>;
|
|
111
|
+
}, z.core.$strip>;
|
|
112
|
+
description: z.ZodObject<{
|
|
113
|
+
color: z.ZodOptional<z.ZodString>;
|
|
114
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
115
|
+
noborder: z.ZodOptional<z.ZodBoolean>;
|
|
116
|
+
text_position: z.ZodOptional<z.ZodString>;
|
|
117
|
+
className: z.ZodOptional<z.ZodString>;
|
|
118
|
+
}, z.core.$strip>;
|
|
119
|
+
logo: z.ZodObject<{
|
|
120
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
121
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
122
|
+
noborder: z.ZodOptional<z.ZodBoolean>;
|
|
123
|
+
centered: z.ZodOptional<z.ZodBoolean>;
|
|
124
|
+
variant: z.ZodOptional<z.ZodEnum<{
|
|
125
|
+
default: "default";
|
|
126
|
+
surface: "surface";
|
|
127
|
+
outline: "outline";
|
|
128
|
+
noborder: "noborder";
|
|
129
|
+
}>>;
|
|
130
|
+
}, z.core.$strip>;
|
|
131
|
+
}, z.core.$strip>;
|
|
132
|
+
style_id: z.ZodString;
|
|
133
|
+
}, z.core.$strip>;
|
|
134
|
+
export type ResStyle = z.infer<typeof ResStyleSchema>;
|
|
97
135
|
//# sourceMappingURL=style.schema.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"style.schema.d.ts","sourceRoot":"","sources":["../../../../src/core/business/style/style.schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAIpB,eAAO,MAAM,iBAAiB;;;;;;iBAM5B,CAAA;AACF,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAA;AAC3D,eAAO,MAAM,eAAe;;;;;;;;;;;iBAM1B,CAAA;AACF,eAAO,MAAM,
|
|
1
|
+
{"version":3,"file":"style.schema.d.ts","sourceRoot":"","sources":["../../../../src/core/business/style/style.schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAIpB,eAAO,MAAM,iBAAiB;;;;;;iBAM5B,CAAA;AACF,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAA;AAC3D,eAAO,MAAM,eAAe;;;;;;;;;;;iBAM1B,CAAA;AACF,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAKvB,CAAA;AACF,MAAM,MAAM,MAAM,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,YAAY,CAAC,CAAA;AAEjD,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAEtB,CAAA;AACF,MAAM,MAAM,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC,CAAA;AAC/C,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAEzB,CAAA;AACF,MAAM,MAAM,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAA"}
|
|
@@ -3,7 +3,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.StyleSchema = exports.
|
|
6
|
+
exports.ResStyleSchema = exports.StyleSchema = exports.IStyleSchema = exports.StyleLogoSchema = exports.textOptionsSchema = void 0;
|
|
7
7
|
const zod_1 = __importDefault(require("zod"));
|
|
8
8
|
const theme_schema_1 = require("../theme/theme.schema");
|
|
9
9
|
const variants_schema_1 = require("../variants/variants.schema");
|
|
@@ -21,14 +21,16 @@ exports.StyleLogoSchema = zod_1.default.object({
|
|
|
21
21
|
centered: zod_1.default.boolean().optional(),
|
|
22
22
|
variant: variants_schema_1.Variant.optional(),
|
|
23
23
|
});
|
|
24
|
-
exports.
|
|
24
|
+
exports.IStyleSchema = zod_1.default.object({
|
|
25
25
|
theme: theme_schema_1.ThemeOptionSchema,
|
|
26
26
|
name: exports.textOptionsSchema,
|
|
27
27
|
description: exports.textOptionsSchema,
|
|
28
28
|
logo: exports.StyleLogoSchema
|
|
29
29
|
});
|
|
30
30
|
exports.StyleSchema = zod_1.default.object({
|
|
31
|
-
|
|
32
|
-
|
|
31
|
+
style: exports.IStyleSchema
|
|
32
|
+
});
|
|
33
|
+
exports.ResStyleSchema = exports.StyleSchema.extend({
|
|
34
|
+
style_id: zod_1.default.string()
|
|
33
35
|
});
|
|
34
36
|
//# sourceMappingURL=style.schema.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"style.schema.js","sourceRoot":"","sources":["../../../../src/core/business/style/style.schema.ts"],"names":[],"mappings":";;;;;;AAAA,8CAAoB;AACpB,wDAA0D;AAC1D,iEAAsD;AAEzC,QAAA,iBAAiB,GAAG,aAAC,CAAC,MAAM,CAAC;IACtC,KAAK,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC5B,eAAe,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACtC,QAAQ,EAAE,aAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IAChC,aAAa,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACpC,SAAS,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CACnC,CAAC,CAAA;AAEW,QAAA,eAAe,GAAG,aAAC,CAAC,MAAM,CAAC;IACpC,KAAK,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC5B,MAAM,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC7B,QAAQ,EAAE,aAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IAChC,QAAQ,EAAE,aAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IAChC,OAAO,EAAE,yBAAO,CAAC,QAAQ,EAAE;CAC9B,CAAC,CAAA;AACW,QAAA,
|
|
1
|
+
{"version":3,"file":"style.schema.js","sourceRoot":"","sources":["../../../../src/core/business/style/style.schema.ts"],"names":[],"mappings":";;;;;;AAAA,8CAAoB;AACpB,wDAA0D;AAC1D,iEAAsD;AAEzC,QAAA,iBAAiB,GAAG,aAAC,CAAC,MAAM,CAAC;IACtC,KAAK,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC5B,eAAe,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACtC,QAAQ,EAAE,aAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IAChC,aAAa,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACpC,SAAS,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CACnC,CAAC,CAAA;AAEW,QAAA,eAAe,GAAG,aAAC,CAAC,MAAM,CAAC;IACpC,KAAK,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC5B,MAAM,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC7B,QAAQ,EAAE,aAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IAChC,QAAQ,EAAE,aAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IAChC,OAAO,EAAE,yBAAO,CAAC,QAAQ,EAAE;CAC9B,CAAC,CAAA;AACW,QAAA,YAAY,GAAG,aAAC,CAAC,MAAM,CAAC;IACjC,KAAK,EAAE,gCAAiB;IACxB,IAAI,EAAE,yBAAiB;IACvB,WAAW,EAAE,yBAAiB;IAC9B,IAAI,EAAE,uBAAe;CACxB,CAAC,CAAA;AAGW,QAAA,WAAW,GAAG,aAAC,CAAC,MAAM,CAAC;IAChC,KAAK,EAAE,oBAAY;CACtB,CAAC,CAAA;AAEW,QAAA,cAAc,GAAG,mBAAW,CAAC,MAAM,CAAC;IAC7C,QAAQ,EAAE,aAAC,CAAC,MAAM,EAAE;CACvB,CAAC,CAAA"}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
+
export * from "./core/users/user/user.schema";
|
|
2
|
+
export * from "./core/users/role/role.schema";
|
|
1
3
|
export * from "./core/business/business/business.schema";
|
|
2
4
|
export * from "./core/business/elements/elements.schema";
|
|
3
5
|
export * from "./core/business/modules/modules.constants";
|
|
4
6
|
export * from "./core/business/modules/modules.schema";
|
|
5
|
-
export * from "./core/business/style/style.schema";
|
|
6
7
|
export * from "./core/business/social-kind/social-kind.schema";
|
|
8
|
+
export * from "./core/business/style/style.schema";
|
|
7
9
|
export * from "./core/business/theme/theme.schema";
|
|
8
10
|
export * from "./core/business/variants/variants.schema";
|
|
9
|
-
export * from "./core/users/role/role.schema";
|
|
10
|
-
export * from "./core/users/user/user.schema";
|
|
11
11
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,0CAA0C,CAAC;AACzD,cAAc,0CAA0C,CAAC;AACzD,cAAc,2CAA2C,CAAC;AAC1D,cAAc,wCAAwC,CAAC;AACvD,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,+BAA+B,CAAC;AAC9C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,0CAA0C,CAAC;AACzD,cAAc,0CAA0C,CAAC;AACzD,cAAc,2CAA2C,CAAC;AAC1D,cAAc,wCAAwC,CAAC;AACvD,cAAc,gDAAgD,CAAC;AAC/D,cAAc,oCAAoC,CAAC;AACnD,cAAc,oCAAoC,CAAC;AACnD,cAAc,0CAA0C,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -14,14 +14,14 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./core/users/user/user.schema"), exports);
|
|
18
|
+
__exportStar(require("./core/users/role/role.schema"), exports);
|
|
17
19
|
__exportStar(require("./core/business/business/business.schema"), exports);
|
|
18
20
|
__exportStar(require("./core/business/elements/elements.schema"), exports);
|
|
19
21
|
__exportStar(require("./core/business/modules/modules.constants"), exports);
|
|
20
22
|
__exportStar(require("./core/business/modules/modules.schema"), exports);
|
|
21
|
-
__exportStar(require("./core/business/style/style.schema"), exports);
|
|
22
23
|
__exportStar(require("./core/business/social-kind/social-kind.schema"), exports);
|
|
24
|
+
__exportStar(require("./core/business/style/style.schema"), exports);
|
|
23
25
|
__exportStar(require("./core/business/theme/theme.schema"), exports);
|
|
24
26
|
__exportStar(require("./core/business/variants/variants.schema"), exports);
|
|
25
|
-
__exportStar(require("./core/users/role/role.schema"), exports);
|
|
26
|
-
__exportStar(require("./core/users/user/user.schema"), exports);
|
|
27
27
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2EAAyD;AACzD,2EAAyD;AACzD,4EAA0D;AAC1D,yEAAuD;AACvD,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,gEAA8C;AAC9C,gEAA8C;AAC9C,2EAAyD;AACzD,2EAAyD;AACzD,4EAA0D;AAC1D,yEAAuD;AACvD,iFAA+D;AAC/D,qEAAmD;AACnD,qEAAmD;AACnD,2EAAyD"}
|