@deepintel-ltd/farmpro-contracts 1.0.3 → 1.1.0

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.
@@ -0,0 +1,437 @@
1
+ import { z } from 'zod';
2
+ /**
3
+ * Category schemas - JSON:API compliant
4
+ * Categories are universal and can be used for tasks, budgets, and expenses
5
+ */
6
+ export declare const categoryAttributesSchema: z.ZodObject<{
7
+ name: z.ZodString;
8
+ farmId: z.ZodNullable<z.ZodString>;
9
+ isDefault: z.ZodBoolean;
10
+ } & {
11
+ createdAt: z.ZodString;
12
+ updatedAt: z.ZodString;
13
+ }, "strip", z.ZodTypeAny, {
14
+ createdAt: string;
15
+ updatedAt: string;
16
+ name: string;
17
+ farmId: string | null;
18
+ isDefault: boolean;
19
+ }, {
20
+ createdAt: string;
21
+ updatedAt: string;
22
+ name: string;
23
+ farmId: string | null;
24
+ isDefault: boolean;
25
+ }>;
26
+ export declare const createCategoryAttributesSchema: z.ZodObject<{
27
+ name: z.ZodString;
28
+ farmId: z.ZodOptional<z.ZodString>;
29
+ isDefault: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
30
+ }, "strip", z.ZodTypeAny, {
31
+ name: string;
32
+ isDefault: boolean;
33
+ farmId?: string | undefined;
34
+ }, {
35
+ name: string;
36
+ farmId?: string | undefined;
37
+ isDefault?: boolean | undefined;
38
+ }>;
39
+ export declare const updateCategoryAttributesSchema: z.ZodObject<{
40
+ name: z.ZodOptional<z.ZodString>;
41
+ isDefault: z.ZodOptional<z.ZodBoolean>;
42
+ }, "strip", z.ZodTypeAny, {
43
+ name?: string | undefined;
44
+ isDefault?: boolean | undefined;
45
+ }, {
46
+ name?: string | undefined;
47
+ isDefault?: boolean | undefined;
48
+ }>;
49
+ export declare const createCategorySchema: z.ZodObject<{
50
+ type: z.ZodLiteral<"categories">;
51
+ attributes: z.ZodObject<{
52
+ name: z.ZodString;
53
+ farmId: z.ZodOptional<z.ZodString>;
54
+ isDefault: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
55
+ }, "strip", z.ZodTypeAny, {
56
+ name: string;
57
+ isDefault: boolean;
58
+ farmId?: string | undefined;
59
+ }, {
60
+ name: string;
61
+ farmId?: string | undefined;
62
+ isDefault?: boolean | undefined;
63
+ }>;
64
+ }, "strip", z.ZodTypeAny, {
65
+ type: "categories";
66
+ attributes: {
67
+ name: string;
68
+ isDefault: boolean;
69
+ farmId?: string | undefined;
70
+ };
71
+ }, {
72
+ type: "categories";
73
+ attributes: {
74
+ name: string;
75
+ farmId?: string | undefined;
76
+ isDefault?: boolean | undefined;
77
+ };
78
+ }>;
79
+ export declare const updateCategorySchema: z.ZodObject<{
80
+ type: z.ZodLiteral<"categories">;
81
+ id: z.ZodString;
82
+ attributes: z.ZodObject<{
83
+ name: z.ZodOptional<z.ZodString>;
84
+ isDefault: z.ZodOptional<z.ZodBoolean>;
85
+ }, "strip", z.ZodTypeAny, {
86
+ name?: string | undefined;
87
+ isDefault?: boolean | undefined;
88
+ }, {
89
+ name?: string | undefined;
90
+ isDefault?: boolean | undefined;
91
+ }>;
92
+ }, "strip", z.ZodTypeAny, {
93
+ type: "categories";
94
+ id: string;
95
+ attributes: {
96
+ name?: string | undefined;
97
+ isDefault?: boolean | undefined;
98
+ };
99
+ }, {
100
+ type: "categories";
101
+ id: string;
102
+ attributes: {
103
+ name?: string | undefined;
104
+ isDefault?: boolean | undefined;
105
+ };
106
+ }>;
107
+ export declare const categoryResourceSchema: z.ZodObject<{
108
+ type: z.ZodLiteral<string>;
109
+ id: z.ZodString;
110
+ attributes: z.ZodObject<{
111
+ name: z.ZodString;
112
+ farmId: z.ZodNullable<z.ZodString>;
113
+ isDefault: z.ZodBoolean;
114
+ } & {
115
+ createdAt: z.ZodString;
116
+ updatedAt: z.ZodString;
117
+ }, "strip", z.ZodTypeAny, {
118
+ createdAt: string;
119
+ updatedAt: string;
120
+ name: string;
121
+ farmId: string | null;
122
+ isDefault: boolean;
123
+ }, {
124
+ createdAt: string;
125
+ updatedAt: string;
126
+ name: string;
127
+ farmId: string | null;
128
+ isDefault: boolean;
129
+ }>;
130
+ relationships: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
131
+ links: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
132
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
133
+ }, "strip", z.ZodTypeAny, {
134
+ type: string;
135
+ id: string;
136
+ attributes: {
137
+ createdAt: string;
138
+ updatedAt: string;
139
+ name: string;
140
+ farmId: string | null;
141
+ isDefault: boolean;
142
+ };
143
+ relationships?: Record<string, unknown> | undefined;
144
+ links?: Record<string, string> | undefined;
145
+ meta?: Record<string, unknown> | undefined;
146
+ }, {
147
+ type: string;
148
+ id: string;
149
+ attributes: {
150
+ createdAt: string;
151
+ updatedAt: string;
152
+ name: string;
153
+ farmId: string | null;
154
+ isDefault: boolean;
155
+ };
156
+ relationships?: Record<string, unknown> | undefined;
157
+ links?: Record<string, string> | undefined;
158
+ meta?: Record<string, unknown> | undefined;
159
+ }>;
160
+ export declare const categoryResponseSchema: z.ZodObject<{
161
+ data: z.ZodObject<{
162
+ type: z.ZodLiteral<string>;
163
+ id: z.ZodString;
164
+ attributes: z.ZodObject<{
165
+ name: z.ZodString;
166
+ farmId: z.ZodNullable<z.ZodString>;
167
+ isDefault: z.ZodBoolean;
168
+ } & {
169
+ createdAt: z.ZodString;
170
+ updatedAt: z.ZodString;
171
+ }, "strip", z.ZodTypeAny, {
172
+ createdAt: string;
173
+ updatedAt: string;
174
+ name: string;
175
+ farmId: string | null;
176
+ isDefault: boolean;
177
+ }, {
178
+ createdAt: string;
179
+ updatedAt: string;
180
+ name: string;
181
+ farmId: string | null;
182
+ isDefault: boolean;
183
+ }>;
184
+ relationships: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
185
+ links: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
186
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
187
+ }, "strip", z.ZodTypeAny, {
188
+ type: string;
189
+ id: string;
190
+ attributes: {
191
+ createdAt: string;
192
+ updatedAt: string;
193
+ name: string;
194
+ farmId: string | null;
195
+ isDefault: boolean;
196
+ };
197
+ relationships?: Record<string, unknown> | undefined;
198
+ links?: Record<string, string> | undefined;
199
+ meta?: Record<string, unknown> | undefined;
200
+ }, {
201
+ type: string;
202
+ id: string;
203
+ attributes: {
204
+ createdAt: string;
205
+ updatedAt: string;
206
+ name: string;
207
+ farmId: string | null;
208
+ isDefault: boolean;
209
+ };
210
+ relationships?: Record<string, unknown> | undefined;
211
+ links?: Record<string, string> | undefined;
212
+ meta?: Record<string, unknown> | undefined;
213
+ }>;
214
+ included: z.ZodOptional<z.ZodArray<z.ZodObject<{
215
+ type: z.ZodString;
216
+ id: z.ZodString;
217
+ attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
218
+ relationships: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
219
+ links: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
220
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
221
+ }, "strip", z.ZodTypeAny, {
222
+ type: string;
223
+ id: string;
224
+ attributes?: Record<string, unknown> | undefined;
225
+ relationships?: Record<string, unknown> | undefined;
226
+ links?: Record<string, string> | undefined;
227
+ meta?: Record<string, unknown> | undefined;
228
+ }, {
229
+ type: string;
230
+ id: string;
231
+ attributes?: Record<string, unknown> | undefined;
232
+ relationships?: Record<string, unknown> | undefined;
233
+ links?: Record<string, string> | undefined;
234
+ meta?: Record<string, unknown> | undefined;
235
+ }>, "many">>;
236
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
237
+ links: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
238
+ }, "strip", z.ZodTypeAny, {
239
+ data: {
240
+ type: string;
241
+ id: string;
242
+ attributes: {
243
+ createdAt: string;
244
+ updatedAt: string;
245
+ name: string;
246
+ farmId: string | null;
247
+ isDefault: boolean;
248
+ };
249
+ relationships?: Record<string, unknown> | undefined;
250
+ links?: Record<string, string> | undefined;
251
+ meta?: Record<string, unknown> | undefined;
252
+ };
253
+ links?: Record<string, string> | undefined;
254
+ meta?: Record<string, unknown> | undefined;
255
+ included?: {
256
+ type: string;
257
+ id: string;
258
+ attributes?: Record<string, unknown> | undefined;
259
+ relationships?: Record<string, unknown> | undefined;
260
+ links?: Record<string, string> | undefined;
261
+ meta?: Record<string, unknown> | undefined;
262
+ }[] | undefined;
263
+ }, {
264
+ data: {
265
+ type: string;
266
+ id: string;
267
+ attributes: {
268
+ createdAt: string;
269
+ updatedAt: string;
270
+ name: string;
271
+ farmId: string | null;
272
+ isDefault: boolean;
273
+ };
274
+ relationships?: Record<string, unknown> | undefined;
275
+ links?: Record<string, string> | undefined;
276
+ meta?: Record<string, unknown> | undefined;
277
+ };
278
+ links?: Record<string, string> | undefined;
279
+ meta?: Record<string, unknown> | undefined;
280
+ included?: {
281
+ type: string;
282
+ id: string;
283
+ attributes?: Record<string, unknown> | undefined;
284
+ relationships?: Record<string, unknown> | undefined;
285
+ links?: Record<string, string> | undefined;
286
+ meta?: Record<string, unknown> | undefined;
287
+ }[] | undefined;
288
+ }>;
289
+ export declare const categoryListResponseSchema: z.ZodObject<{
290
+ data: z.ZodArray<z.ZodObject<{
291
+ type: z.ZodLiteral<string>;
292
+ id: z.ZodString;
293
+ attributes: z.ZodObject<{
294
+ name: z.ZodString;
295
+ farmId: z.ZodNullable<z.ZodString>;
296
+ isDefault: z.ZodBoolean;
297
+ } & {
298
+ createdAt: z.ZodString;
299
+ updatedAt: z.ZodString;
300
+ }, "strip", z.ZodTypeAny, {
301
+ createdAt: string;
302
+ updatedAt: string;
303
+ name: string;
304
+ farmId: string | null;
305
+ isDefault: boolean;
306
+ }, {
307
+ createdAt: string;
308
+ updatedAt: string;
309
+ name: string;
310
+ farmId: string | null;
311
+ isDefault: boolean;
312
+ }>;
313
+ relationships: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
314
+ links: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
315
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
316
+ }, "strip", z.ZodTypeAny, {
317
+ type: string;
318
+ id: string;
319
+ attributes: {
320
+ createdAt: string;
321
+ updatedAt: string;
322
+ name: string;
323
+ farmId: string | null;
324
+ isDefault: boolean;
325
+ };
326
+ relationships?: Record<string, unknown> | undefined;
327
+ links?: Record<string, string> | undefined;
328
+ meta?: Record<string, unknown> | undefined;
329
+ }, {
330
+ type: string;
331
+ id: string;
332
+ attributes: {
333
+ createdAt: string;
334
+ updatedAt: string;
335
+ name: string;
336
+ farmId: string | null;
337
+ isDefault: boolean;
338
+ };
339
+ relationships?: Record<string, unknown> | undefined;
340
+ links?: Record<string, string> | undefined;
341
+ meta?: Record<string, unknown> | undefined;
342
+ }>, "many">;
343
+ included: z.ZodOptional<z.ZodArray<z.ZodObject<{
344
+ type: z.ZodString;
345
+ id: z.ZodString;
346
+ attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
347
+ relationships: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
348
+ links: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
349
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
350
+ }, "strip", z.ZodTypeAny, {
351
+ type: string;
352
+ id: string;
353
+ attributes?: Record<string, unknown> | undefined;
354
+ relationships?: Record<string, unknown> | undefined;
355
+ links?: Record<string, string> | undefined;
356
+ meta?: Record<string, unknown> | undefined;
357
+ }, {
358
+ type: string;
359
+ id: string;
360
+ attributes?: Record<string, unknown> | undefined;
361
+ relationships?: Record<string, unknown> | undefined;
362
+ links?: Record<string, string> | undefined;
363
+ meta?: Record<string, unknown> | undefined;
364
+ }>, "many">>;
365
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
366
+ links: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
367
+ }, "strip", z.ZodTypeAny, {
368
+ data: {
369
+ type: string;
370
+ id: string;
371
+ attributes: {
372
+ createdAt: string;
373
+ updatedAt: string;
374
+ name: string;
375
+ farmId: string | null;
376
+ isDefault: boolean;
377
+ };
378
+ relationships?: Record<string, unknown> | undefined;
379
+ links?: Record<string, string> | undefined;
380
+ meta?: Record<string, unknown> | undefined;
381
+ }[];
382
+ links?: Record<string, string> | undefined;
383
+ meta?: Record<string, unknown> | undefined;
384
+ included?: {
385
+ type: string;
386
+ id: string;
387
+ attributes?: Record<string, unknown> | undefined;
388
+ relationships?: Record<string, unknown> | undefined;
389
+ links?: Record<string, string> | undefined;
390
+ meta?: Record<string, unknown> | undefined;
391
+ }[] | undefined;
392
+ }, {
393
+ data: {
394
+ type: string;
395
+ id: string;
396
+ attributes: {
397
+ createdAt: string;
398
+ updatedAt: string;
399
+ name: string;
400
+ farmId: string | null;
401
+ isDefault: boolean;
402
+ };
403
+ relationships?: Record<string, unknown> | undefined;
404
+ links?: Record<string, string> | undefined;
405
+ meta?: Record<string, unknown> | undefined;
406
+ }[];
407
+ links?: Record<string, string> | undefined;
408
+ meta?: Record<string, unknown> | undefined;
409
+ included?: {
410
+ type: string;
411
+ id: string;
412
+ attributes?: Record<string, unknown> | undefined;
413
+ relationships?: Record<string, unknown> | undefined;
414
+ links?: Record<string, string> | undefined;
415
+ meta?: Record<string, unknown> | undefined;
416
+ }[] | undefined;
417
+ }>;
418
+ export declare const getCategoriesQuerySchema: z.ZodObject<{
419
+ farmId: z.ZodOptional<z.ZodString>;
420
+ includeDefaults: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
421
+ }, "strip", z.ZodTypeAny, {
422
+ includeDefaults: boolean;
423
+ farmId?: string | undefined;
424
+ }, {
425
+ farmId?: string | undefined;
426
+ includeDefaults?: boolean | undefined;
427
+ }>;
428
+ export type CreateCategoryAttributes = z.infer<typeof createCategoryAttributesSchema>;
429
+ export type UpdateCategoryAttributes = z.infer<typeof updateCategoryAttributesSchema>;
430
+ export type CreateCategoryInput = z.infer<typeof createCategorySchema>;
431
+ export type UpdateCategoryInput = z.infer<typeof updateCategorySchema>;
432
+ export type CategoryAttributes = z.infer<typeof categoryAttributesSchema>;
433
+ export type CategoryResource = z.infer<typeof categoryResourceSchema>;
434
+ export type CategoryResponse = z.infer<typeof categoryResponseSchema>;
435
+ export type CategoryListResponse = z.infer<typeof categoryListResponseSchema>;
436
+ export type GetCategoriesQuery = z.infer<typeof getCategoriesQuerySchema>;
437
+ //# sourceMappingURL=categories.schemas.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"categories.schemas.d.ts","sourceRoot":"","sources":["../../src/schemas/categories.schemas.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAQxB;;;GAGG;AAGH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;EAIX,CAAC;AAG3B,eAAO,MAAM,8BAA8B;;;;;;;;;;;;EAIzC,CAAC;AAGH,eAAO,MAAM,8BAA8B;;;;;;;;;EAGzC,CAAC;AAGH,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAG/B,CAAC;AAGH,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;EAI/B,CAAC;AAGH,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAsE,CAAC;AAG1G,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAsD,CAAC;AAC1F,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA0D,CAAC;AAGlG,eAAO,MAAM,wBAAwB;;;;;;;;;EAGnC,CAAC;AAGH,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,8BAA8B,CAAC,CAAC;AACtF,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,8BAA8B,CAAC,CAAC;AACtF,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AACvE,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AACvE,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAC1E,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AACtE,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AACtE,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAC;AAC9E,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC"}
@@ -0,0 +1,47 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.getCategoriesQuerySchema = exports.categoryListResponseSchema = exports.categoryResponseSchema = exports.categoryResourceSchema = exports.updateCategorySchema = exports.createCategorySchema = exports.updateCategoryAttributesSchema = exports.createCategoryAttributesSchema = exports.categoryAttributesSchema = void 0;
4
+ const zod_1 = require("zod");
5
+ const common_schemas_1 = require("./common.schemas");
6
+ /**
7
+ * Category schemas - JSON:API compliant
8
+ * Categories are universal and can be used for tasks, budgets, and expenses
9
+ */
10
+ // Category attributes schema (for JSON:API attributes object)
11
+ exports.categoryAttributesSchema = zod_1.z.object({
12
+ name: zod_1.z.string(),
13
+ farmId: zod_1.z.string().uuid().nullable(),
14
+ isDefault: zod_1.z.boolean(),
15
+ }).merge(common_schemas_1.timestampsSchema);
16
+ // Category attributes for creation (input)
17
+ exports.createCategoryAttributesSchema = zod_1.z.object({
18
+ name: zod_1.z.string().min(1).max(100),
19
+ farmId: zod_1.z.string().uuid().optional(), // Optional - if not provided, creates system default
20
+ isDefault: zod_1.z.boolean().optional().default(false),
21
+ });
22
+ // Category attributes for update (input)
23
+ exports.updateCategoryAttributesSchema = zod_1.z.object({
24
+ name: zod_1.z.string().min(1).max(100).optional(),
25
+ isDefault: zod_1.z.boolean().optional(),
26
+ });
27
+ // Create category input (JSON:API format)
28
+ exports.createCategorySchema = zod_1.z.object({
29
+ type: zod_1.z.literal('categories'),
30
+ attributes: exports.createCategoryAttributesSchema,
31
+ });
32
+ // Update category input (JSON:API format)
33
+ exports.updateCategorySchema = zod_1.z.object({
34
+ type: zod_1.z.literal('categories'),
35
+ id: zod_1.z.string().uuid(),
36
+ attributes: exports.updateCategoryAttributesSchema,
37
+ });
38
+ // Category resource (JSON:API resource object)
39
+ exports.categoryResourceSchema = (0, common_schemas_1.createJsonApiResourceSchema)('categories', exports.categoryAttributesSchema);
40
+ // Category responses (JSON:API format)
41
+ exports.categoryResponseSchema = (0, common_schemas_1.jsonApiSingleResponseSchema)(exports.categoryResourceSchema);
42
+ exports.categoryListResponseSchema = (0, common_schemas_1.jsonApiCollectionResponseSchema)(exports.categoryResourceSchema);
43
+ // Get categories query parameters
44
+ exports.getCategoriesQuerySchema = zod_1.z.object({
45
+ farmId: zod_1.z.string().uuid().optional(),
46
+ includeDefaults: zod_1.z.boolean().optional().default(true),
47
+ });