@objectstack/spec 0.2.0 → 0.3.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.
- package/README.md +127 -5
- package/dist/ai/index.d.ts +14 -0
- package/dist/ai/index.d.ts.map +1 -0
- package/dist/ai/index.js +29 -0
- package/dist/ai/model-registry.zod.d.ts +1389 -0
- package/dist/ai/model-registry.zod.d.ts.map +1 -0
- package/dist/ai/model-registry.zod.js +164 -0
- package/dist/ai/nlq.zod.d.ts +1126 -0
- package/dist/ai/nlq.zod.d.ts.map +1 -0
- package/dist/ai/nlq.zod.js +246 -0
- package/dist/ai/rag-pipeline.zod.d.ts +1034 -0
- package/dist/ai/rag-pipeline.zod.d.ts.map +1 -0
- package/dist/ai/rag-pipeline.zod.js +244 -0
- package/dist/api/index.d.ts +9 -0
- package/dist/api/index.d.ts.map +1 -0
- package/dist/api/index.js +24 -0
- package/dist/data/index.d.ts +21 -0
- package/dist/data/index.d.ts.map +1 -0
- package/dist/data/index.js +36 -0
- package/dist/data/query.zod.d.ts +386 -3
- package/dist/data/query.zod.d.ts.map +1 -1
- package/dist/data/query.zod.js +386 -3
- package/dist/data/validation.zod.d.ts +349 -0
- package/dist/data/validation.zod.d.ts.map +1 -1
- package/dist/data/validation.zod.js +395 -0
- package/dist/index.d.ts +36 -41
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +64 -49
- package/dist/system/auth-protocol.d.ts +175 -0
- package/dist/system/auth-protocol.d.ts.map +1 -0
- package/dist/system/auth-protocol.js +60 -0
- package/dist/system/auth.zod.d.ts +1097 -65
- package/dist/system/auth.zod.d.ts.map +1 -1
- package/dist/system/auth.zod.js +135 -1
- package/dist/system/identity.zod.d.ts +234 -180
- package/dist/system/identity.zod.d.ts.map +1 -1
- package/dist/system/identity.zod.js +168 -51
- package/dist/system/index.d.ts +28 -0
- package/dist/system/index.d.ts.map +1 -0
- package/dist/system/index.js +43 -0
- package/dist/system/manifest.zod.d.ts +10 -10
- package/dist/system/organization.zod.d.ts +179 -0
- package/dist/system/organization.zod.d.ts.map +1 -0
- package/dist/system/organization.zod.js +129 -0
- package/dist/ui/action.zod.d.ts +2 -2
- package/dist/ui/index.d.ts +17 -0
- package/dist/ui/index.d.ts.map +1 -0
- package/dist/ui/index.js +32 -0
- package/dist/ui/theme.zod.d.ts +6 -6
- package/json-schema/Account.json +87 -0
- package/json-schema/AuthConfig.json +235 -0
- package/json-schema/ChunkingStrategy.json +133 -0
- package/json-schema/DatabaseMapping.json +48 -0
- package/json-schema/DocumentChunk.json +97 -0
- package/json-schema/DocumentLoaderConfig.json +69 -0
- package/json-schema/DocumentMetadata.json +61 -0
- package/json-schema/EmbeddingModel.json +57 -0
- package/json-schema/EnterpriseAuthConfig.json +172 -0
- package/json-schema/Entity.json +55 -0
- package/json-schema/FieldSynonymConfig.json +39 -0
- package/json-schema/Invitation.json +69 -0
- package/json-schema/InvitationStatus.json +15 -0
- package/json-schema/LDAPConfig.json +22 -5
- package/json-schema/Member.json +46 -0
- package/json-schema/ModelCapability.json +47 -0
- package/json-schema/ModelConfig.json +181 -0
- package/json-schema/ModelLimits.json +45 -0
- package/json-schema/ModelPricing.json +28 -0
- package/json-schema/ModelProvider.json +19 -0
- package/json-schema/ModelRegistry.json +427 -0
- package/json-schema/ModelRegistryEntry.json +239 -0
- package/json-schema/ModelSelectionCriteria.json +50 -0
- package/json-schema/NLQAnalytics.json +106 -0
- package/json-schema/NLQFieldMapping.json +40 -0
- package/json-schema/NLQModelConfig.json +78 -0
- package/json-schema/NLQParseResult.json +252 -0
- package/json-schema/NLQRequest.json +110 -0
- package/json-schema/NLQResponse.json +288 -0
- package/json-schema/NLQTrainingExample.json +120 -0
- package/json-schema/OIDCConfig.json +18 -3
- package/json-schema/Organization.json +52 -0
- package/json-schema/PromptTemplate.json +163 -0
- package/json-schema/PromptVariable.json +56 -0
- package/json-schema/QueryContext.json +72 -0
- package/json-schema/QueryIntent.json +21 -0
- package/json-schema/QueryTemplate.json +81 -0
- package/json-schema/RAGPipelineConfig.json +552 -0
- package/json-schema/RAGPipelineStatus.json +66 -0
- package/json-schema/RAGQueryRequest.json +64 -0
- package/json-schema/RAGQueryResponse.json +108 -0
- package/json-schema/RerankingConfig.json +34 -0
- package/json-schema/RetrievalStrategy.json +121 -0
- package/json-schema/SAMLConfig.json +17 -3
- package/json-schema/Session.json +63 -0
- package/json-schema/StandardAuthProvider.json +235 -0
- package/json-schema/Timeframe.json +68 -0
- package/json-schema/User.json +51 -0
- package/json-schema/VectorStoreConfig.json +82 -0
- package/json-schema/VectorStoreProvider.json +21 -0
- package/json-schema/VerificationToken.json +36 -0
- package/package.json +27 -1
- package/json-schema/AuthProtocol.json +0 -17
- package/json-schema/AuthProvider.json +0 -171
|
@@ -125,6 +125,65 @@ export declare const FormatValidationSchema: z.ZodObject<{
|
|
|
125
125
|
/**
|
|
126
126
|
* 5. Cross-Field Validation
|
|
127
127
|
* Validates relationships between multiple fields.
|
|
128
|
+
*
|
|
129
|
+
* ## Use Cases
|
|
130
|
+
* - Date range validations (end_date > start_date)
|
|
131
|
+
* - Amount comparisons (discount < total)
|
|
132
|
+
* - Complex business rules involving multiple fields
|
|
133
|
+
*
|
|
134
|
+
* ## Salesforce Examples
|
|
135
|
+
*
|
|
136
|
+
* ### Example 1: Close Date Must Be In Current or Future Month
|
|
137
|
+
* **Salesforce Formula:**
|
|
138
|
+
* ```
|
|
139
|
+
* MONTH(CloseDate) < MONTH(TODAY()) ||
|
|
140
|
+
* YEAR(CloseDate) < YEAR(TODAY())
|
|
141
|
+
* ```
|
|
142
|
+
*
|
|
143
|
+
* **ObjectStack Equivalent:**
|
|
144
|
+
* ```typescript
|
|
145
|
+
* {
|
|
146
|
+
* type: 'cross_field',
|
|
147
|
+
* name: 'close_date_future',
|
|
148
|
+
* condition: 'MONTH(close_date) >= MONTH(TODAY()) AND YEAR(close_date) >= YEAR(TODAY())',
|
|
149
|
+
* fields: ['close_date'],
|
|
150
|
+
* message: 'Close Date must be in the current or a future month'
|
|
151
|
+
* }
|
|
152
|
+
* ```
|
|
153
|
+
*
|
|
154
|
+
* ### Example 2: Discount Validation
|
|
155
|
+
* **Salesforce Formula:**
|
|
156
|
+
* ```
|
|
157
|
+
* Discount__c > (Amount__c * 0.40)
|
|
158
|
+
* ```
|
|
159
|
+
*
|
|
160
|
+
* **ObjectStack Equivalent:**
|
|
161
|
+
* ```typescript
|
|
162
|
+
* {
|
|
163
|
+
* type: 'cross_field',
|
|
164
|
+
* name: 'discount_limit',
|
|
165
|
+
* condition: 'discount > (amount * 0.40)',
|
|
166
|
+
* fields: ['discount', 'amount'],
|
|
167
|
+
* message: 'Discount cannot exceed 40% of the amount'
|
|
168
|
+
* }
|
|
169
|
+
* ```
|
|
170
|
+
*
|
|
171
|
+
* ### Example 3: Opportunity Must Have Products
|
|
172
|
+
* **Salesforce Formula:**
|
|
173
|
+
* ```
|
|
174
|
+
* ISBLANK(Products__c) && ISPICKVAL(StageName, "Closed Won")
|
|
175
|
+
* ```
|
|
176
|
+
*
|
|
177
|
+
* **ObjectStack Equivalent:**
|
|
178
|
+
* ```typescript
|
|
179
|
+
* {
|
|
180
|
+
* type: 'cross_field',
|
|
181
|
+
* name: 'products_required_for_won',
|
|
182
|
+
* condition: 'products = null AND stage = "closed_won"',
|
|
183
|
+
* fields: ['products', 'stage'],
|
|
184
|
+
* message: 'Opportunity must have products to be marked as Closed Won'
|
|
185
|
+
* }
|
|
186
|
+
* ```
|
|
128
187
|
*/
|
|
129
188
|
export declare const CrossFieldValidationSchema: z.ZodObject<{
|
|
130
189
|
name: z.ZodString;
|
|
@@ -155,6 +214,124 @@ export declare const CrossFieldValidationSchema: z.ZodObject<{
|
|
|
155
214
|
/**
|
|
156
215
|
* 6. Async Validation
|
|
157
216
|
* Remote validation via API call or database query.
|
|
217
|
+
*
|
|
218
|
+
* ## Use Cases
|
|
219
|
+
*
|
|
220
|
+
* ### 1. Email Uniqueness Check
|
|
221
|
+
* Check if an email address is already registered in the system.
|
|
222
|
+
* ```typescript
|
|
223
|
+
* {
|
|
224
|
+
* type: 'async',
|
|
225
|
+
* name: 'unique_email',
|
|
226
|
+
* field: 'email',
|
|
227
|
+
* validatorUrl: '/api/users/check-email',
|
|
228
|
+
* message: 'This email address is already registered',
|
|
229
|
+
* debounce: 500, // Wait 500ms after user stops typing
|
|
230
|
+
* timeout: 3000
|
|
231
|
+
* }
|
|
232
|
+
* ```
|
|
233
|
+
*
|
|
234
|
+
* ### 2. Username Availability
|
|
235
|
+
* Verify username is available before form submission.
|
|
236
|
+
* ```typescript
|
|
237
|
+
* {
|
|
238
|
+
* type: 'async',
|
|
239
|
+
* name: 'username_available',
|
|
240
|
+
* field: 'username',
|
|
241
|
+
* validatorUrl: '/api/users/check-username',
|
|
242
|
+
* message: 'This username is already taken',
|
|
243
|
+
* debounce: 300,
|
|
244
|
+
* timeout: 2000
|
|
245
|
+
* }
|
|
246
|
+
* ```
|
|
247
|
+
*
|
|
248
|
+
* ### 3. Tax ID Validation
|
|
249
|
+
* Validate tax ID with government API (e.g., IRS, HMRC).
|
|
250
|
+
* ```typescript
|
|
251
|
+
* {
|
|
252
|
+
* type: 'async',
|
|
253
|
+
* name: 'validate_tax_id',
|
|
254
|
+
* field: 'tax_id',
|
|
255
|
+
* validatorFunction: 'validateTaxIdWithIRS',
|
|
256
|
+
* message: 'Invalid Tax ID number',
|
|
257
|
+
* timeout: 10000, // Government APIs may be slow
|
|
258
|
+
* params: { country: 'US', format: 'EIN' }
|
|
259
|
+
* }
|
|
260
|
+
* ```
|
|
261
|
+
*
|
|
262
|
+
* ### 4. Credit Card Validation
|
|
263
|
+
* Verify credit card with payment gateway without charging.
|
|
264
|
+
* ```typescript
|
|
265
|
+
* {
|
|
266
|
+
* type: 'async',
|
|
267
|
+
* name: 'validate_card',
|
|
268
|
+
* field: 'card_number',
|
|
269
|
+
* validatorUrl: 'https://api.stripe.com/v1/tokens/validate',
|
|
270
|
+
* message: 'Invalid credit card number',
|
|
271
|
+
* timeout: 5000,
|
|
272
|
+
* params: {
|
|
273
|
+
* mode: 'validate_only',
|
|
274
|
+
* checkFunds: false
|
|
275
|
+
* }
|
|
276
|
+
* }
|
|
277
|
+
* ```
|
|
278
|
+
*
|
|
279
|
+
* ### 5. Address Validation
|
|
280
|
+
* Validate and standardize addresses using geocoding services.
|
|
281
|
+
* ```typescript
|
|
282
|
+
* {
|
|
283
|
+
* type: 'async',
|
|
284
|
+
* name: 'validate_address',
|
|
285
|
+
* field: 'street_address',
|
|
286
|
+
* validatorFunction: 'validateAddressWithGoogleMaps',
|
|
287
|
+
* message: 'Unable to verify address',
|
|
288
|
+
* timeout: 4000,
|
|
289
|
+
* params: {
|
|
290
|
+
* includeFields: ['city', 'state', 'zip'],
|
|
291
|
+
* strictMode: true,
|
|
292
|
+
* country: 'US'
|
|
293
|
+
* }
|
|
294
|
+
* }
|
|
295
|
+
* ```
|
|
296
|
+
*
|
|
297
|
+
* ### 6. Domain Name Availability
|
|
298
|
+
* Check if domain name is available for registration.
|
|
299
|
+
* ```typescript
|
|
300
|
+
* {
|
|
301
|
+
* type: 'async',
|
|
302
|
+
* name: 'domain_available',
|
|
303
|
+
* field: 'domain_name',
|
|
304
|
+
* validatorUrl: '/api/domains/check-availability',
|
|
305
|
+
* message: 'This domain is already taken or reserved',
|
|
306
|
+
* debounce: 500,
|
|
307
|
+
* timeout: 2000
|
|
308
|
+
* }
|
|
309
|
+
* ```
|
|
310
|
+
*
|
|
311
|
+
* ### 7. Coupon Code Validation
|
|
312
|
+
* Verify coupon code is valid and not expired.
|
|
313
|
+
* ```typescript
|
|
314
|
+
* {
|
|
315
|
+
* type: 'async',
|
|
316
|
+
* name: 'validate_coupon',
|
|
317
|
+
* field: 'coupon_code',
|
|
318
|
+
* validatorUrl: '/api/coupons/validate',
|
|
319
|
+
* message: 'Invalid or expired coupon code',
|
|
320
|
+
* timeout: 2000,
|
|
321
|
+
* params: {
|
|
322
|
+
* checkExpiration: true,
|
|
323
|
+
* checkUsageLimit: true,
|
|
324
|
+
* userId: '{{current_user_id}}'
|
|
325
|
+
* }
|
|
326
|
+
* }
|
|
327
|
+
* ```
|
|
328
|
+
*
|
|
329
|
+
* ## Best Practices
|
|
330
|
+
* - Always set a reasonable `timeout` (default is 5000ms)
|
|
331
|
+
* - Use `debounce` for fields that are typed (300-500ms recommended)
|
|
332
|
+
* - Implement proper error handling on the server side
|
|
333
|
+
* - Cache validation results when appropriate
|
|
334
|
+
* - Consider rate limiting for external API calls
|
|
158
335
|
*/
|
|
159
336
|
export declare const AsyncValidationSchema: z.ZodObject<{
|
|
160
337
|
name: z.ZodString;
|
|
@@ -234,6 +411,178 @@ export declare const ValidationRuleSchema: z.ZodType<any>;
|
|
|
234
411
|
/**
|
|
235
412
|
* 8. Conditional Validation
|
|
236
413
|
* Validation that only applies when a condition is met.
|
|
414
|
+
*
|
|
415
|
+
* ## Overview
|
|
416
|
+
* Conditional validations follow the pattern: "Validate X only if Y is true"
|
|
417
|
+
* This allows for context-aware validation rules that adapt to different scenarios.
|
|
418
|
+
*
|
|
419
|
+
* ## Use Cases
|
|
420
|
+
*
|
|
421
|
+
* ### 1. Validate Based on Record Type
|
|
422
|
+
* Apply different validation rules based on the type of record.
|
|
423
|
+
* ```typescript
|
|
424
|
+
* {
|
|
425
|
+
* type: 'conditional',
|
|
426
|
+
* name: 'enterprise_approval_required',
|
|
427
|
+
* when: 'account_type = "enterprise"',
|
|
428
|
+
* message: 'Enterprise validation',
|
|
429
|
+
* then: {
|
|
430
|
+
* type: 'script',
|
|
431
|
+
* name: 'require_approval',
|
|
432
|
+
* message: 'Enterprise accounts require manager approval',
|
|
433
|
+
* condition: 'approval_status = null'
|
|
434
|
+
* }
|
|
435
|
+
* }
|
|
436
|
+
* ```
|
|
437
|
+
*
|
|
438
|
+
* ### 2. Conditional Field Requirements
|
|
439
|
+
* Require certain fields only when specific conditions are met.
|
|
440
|
+
* ```typescript
|
|
441
|
+
* {
|
|
442
|
+
* type: 'conditional',
|
|
443
|
+
* name: 'shipping_address_when_required',
|
|
444
|
+
* when: 'requires_shipping = true',
|
|
445
|
+
* message: 'Shipping validation',
|
|
446
|
+
* then: {
|
|
447
|
+
* type: 'script',
|
|
448
|
+
* name: 'shipping_address_required',
|
|
449
|
+
* message: 'Shipping address is required for physical products',
|
|
450
|
+
* condition: 'shipping_address = null OR shipping_address = ""'
|
|
451
|
+
* }
|
|
452
|
+
* }
|
|
453
|
+
* ```
|
|
454
|
+
*
|
|
455
|
+
* ### 3. Amount-Based Validation
|
|
456
|
+
* Apply different rules based on transaction amount.
|
|
457
|
+
* ```typescript
|
|
458
|
+
* {
|
|
459
|
+
* type: 'conditional',
|
|
460
|
+
* name: 'high_value_approval',
|
|
461
|
+
* when: 'order_total > 10000',
|
|
462
|
+
* message: 'High value order validation',
|
|
463
|
+
* then: {
|
|
464
|
+
* type: 'script',
|
|
465
|
+
* name: 'manager_approval_required',
|
|
466
|
+
* message: 'Orders over $10,000 require manager approval',
|
|
467
|
+
* condition: 'manager_approval_id = null'
|
|
468
|
+
* },
|
|
469
|
+
* otherwise: {
|
|
470
|
+
* type: 'script',
|
|
471
|
+
* name: 'standard_validation',
|
|
472
|
+
* message: 'Payment method is required',
|
|
473
|
+
* condition: 'payment_method = null'
|
|
474
|
+
* }
|
|
475
|
+
* }
|
|
476
|
+
* ```
|
|
477
|
+
*
|
|
478
|
+
* ### 4. Regional Compliance
|
|
479
|
+
* Apply region-specific validation rules.
|
|
480
|
+
* ```typescript
|
|
481
|
+
* {
|
|
482
|
+
* type: 'conditional',
|
|
483
|
+
* name: 'regional_compliance',
|
|
484
|
+
* when: 'region = "EU"',
|
|
485
|
+
* message: 'EU compliance validation',
|
|
486
|
+
* then: {
|
|
487
|
+
* type: 'script',
|
|
488
|
+
* name: 'gdpr_consent',
|
|
489
|
+
* message: 'GDPR consent is required for EU customers',
|
|
490
|
+
* condition: 'gdpr_consent_given = false'
|
|
491
|
+
* },
|
|
492
|
+
* otherwise: {
|
|
493
|
+
* type: 'script',
|
|
494
|
+
* name: 'tos_acceptance',
|
|
495
|
+
* message: 'Terms of Service acceptance required',
|
|
496
|
+
* condition: 'tos_accepted = false'
|
|
497
|
+
* }
|
|
498
|
+
* }
|
|
499
|
+
* ```
|
|
500
|
+
*
|
|
501
|
+
* ### 5. Nested Conditional Validation
|
|
502
|
+
* Create complex validation logic with nested conditions.
|
|
503
|
+
* ```typescript
|
|
504
|
+
* {
|
|
505
|
+
* type: 'conditional',
|
|
506
|
+
* name: 'country_state_validation',
|
|
507
|
+
* when: 'country = "US"',
|
|
508
|
+
* message: 'US-specific validation',
|
|
509
|
+
* then: {
|
|
510
|
+
* type: 'conditional',
|
|
511
|
+
* name: 'california_validation',
|
|
512
|
+
* when: 'state = "CA"',
|
|
513
|
+
* message: 'California-specific validation',
|
|
514
|
+
* then: {
|
|
515
|
+
* type: 'script',
|
|
516
|
+
* name: 'ca_tax_id_required',
|
|
517
|
+
* message: 'California requires a valid tax ID',
|
|
518
|
+
* condition: 'tax_id = null OR NOT(REGEX(tax_id, "^\\d{2}-\\d{7}$"))'
|
|
519
|
+
* }
|
|
520
|
+
* }
|
|
521
|
+
* }
|
|
522
|
+
* ```
|
|
523
|
+
*
|
|
524
|
+
* ### 6. Tax Validation for Taxable Items
|
|
525
|
+
* Only validate tax fields when the item is taxable.
|
|
526
|
+
* ```typescript
|
|
527
|
+
* {
|
|
528
|
+
* type: 'conditional',
|
|
529
|
+
* name: 'tax_field_validation',
|
|
530
|
+
* when: 'is_taxable = true',
|
|
531
|
+
* message: 'Tax validation',
|
|
532
|
+
* then: {
|
|
533
|
+
* type: 'script',
|
|
534
|
+
* name: 'tax_code_required',
|
|
535
|
+
* message: 'Tax code is required for taxable items',
|
|
536
|
+
* condition: 'tax_code = null OR tax_code = ""'
|
|
537
|
+
* }
|
|
538
|
+
* }
|
|
539
|
+
* ```
|
|
540
|
+
*
|
|
541
|
+
* ### 7. Role-Based Validation
|
|
542
|
+
* Apply validation based on user role.
|
|
543
|
+
* ```typescript
|
|
544
|
+
* {
|
|
545
|
+
* type: 'conditional',
|
|
546
|
+
* name: 'role_based_approval_limit',
|
|
547
|
+
* when: 'user_role = "manager"',
|
|
548
|
+
* message: 'Manager approval limits',
|
|
549
|
+
* then: {
|
|
550
|
+
* type: 'script',
|
|
551
|
+
* name: 'manager_limit',
|
|
552
|
+
* message: 'Managers can approve up to $50,000',
|
|
553
|
+
* condition: 'approval_amount > 50000'
|
|
554
|
+
* }
|
|
555
|
+
* }
|
|
556
|
+
* ```
|
|
557
|
+
*
|
|
558
|
+
* ## Salesforce Pattern Comparison
|
|
559
|
+
*
|
|
560
|
+
* Salesforce doesn't have explicit "conditional validation" rules but achieves similar
|
|
561
|
+
* behavior using formula logic. ObjectStack makes this pattern explicit and composable.
|
|
562
|
+
*
|
|
563
|
+
* **Salesforce Approach:**
|
|
564
|
+
* ```
|
|
565
|
+
* IF(
|
|
566
|
+
* ISPICKVAL(Type, "Enterprise"),
|
|
567
|
+
* AND(Amount > 100000, ISBLANK(Approval__c)),
|
|
568
|
+
* FALSE
|
|
569
|
+
* )
|
|
570
|
+
* ```
|
|
571
|
+
*
|
|
572
|
+
* **ObjectStack Approach:**
|
|
573
|
+
* ```typescript
|
|
574
|
+
* {
|
|
575
|
+
* type: 'conditional',
|
|
576
|
+
* name: 'enterprise_high_value',
|
|
577
|
+
* when: 'type = "enterprise"',
|
|
578
|
+
* then: {
|
|
579
|
+
* type: 'cross_field',
|
|
580
|
+
* name: 'amount_approval',
|
|
581
|
+
* condition: 'amount > 100000 AND approval = null',
|
|
582
|
+
* fields: ['amount', 'approval']
|
|
583
|
+
* }
|
|
584
|
+
* }
|
|
585
|
+
* ```
|
|
237
586
|
*/
|
|
238
587
|
export declare const ConditionalValidationSchema: z.ZodObject<{
|
|
239
588
|
name: z.ZodString;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"validation.zod.d.ts","sourceRoot":"","sources":["../../src/data/validation.zod.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"validation.zod.d.ts","sourceRoot":"","sources":["../../src/data/validation.zod.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AA2DxB;;;GAGG;AACH,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;EAGjC,CAAC;AAEH;;;GAGG;AACH,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAKrC,CAAC;AAEH;;;GAGG;AACH,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;EAIvC,CAAC;AAEH;;;GAGG;AACH,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAKjC,CAAC;AAEH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8DG;AACH,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;EAIrC,CAAC;AAEH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAyHG;AACH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAQhC,CAAC;AAEH;;;GAGG;AACH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAKhC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,oBAAoB,EAAE,CAAC,CAAC,OAAO,CAAC,GAAG,CAW/C,CAAC;AAEF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+KG;AACH,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAKtC,CAAC;AAEH,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAClE,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,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAClF,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,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AACpE,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AACrE,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC"}
|