@exyconn/common 1.0.0 → 2.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.
- package/README.md +121 -36
- package/dist/client/index.d.mts +3 -2
- package/dist/client/index.d.ts +3 -2
- package/dist/client/index.js +5059 -231
- package/dist/client/index.js.map +1 -1
- package/dist/client/index.mjs +4951 -232
- package/dist/client/index.mjs.map +1 -1
- package/dist/client/utils/index.d.mts +123 -1
- package/dist/client/utils/index.d.ts +123 -1
- package/dist/client/utils/index.js +207 -0
- package/dist/client/utils/index.js.map +1 -1
- package/dist/client/utils/index.mjs +204 -1
- package/dist/client/utils/index.mjs.map +1 -1
- package/dist/index-BcxL4_V4.d.ts +2946 -0
- package/dist/{index-iTKxFa78.d.ts → index-DEzgM15j.d.ts} +10 -2
- package/dist/{index-ClWtDfwk.d.ts → index-DNFVgQx8.d.ts} +544 -2
- package/dist/{index-CcrANHAQ.d.mts → index-DbV04Dx8.d.mts} +10 -2
- package/dist/{index-DSW6JfD-.d.mts → index-DfqEP6Oe.d.mts} +544 -2
- package/dist/index-bvvCev9Q.d.mts +2946 -0
- package/dist/index.d.mts +433 -7
- package/dist/index.d.ts +433 -7
- package/dist/index.js +6101 -220
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6083 -221
- package/dist/index.mjs.map +1 -1
- package/dist/server/index.d.mts +1 -1
- package/dist/server/index.d.ts +1 -1
- package/dist/server/index.js +197 -0
- package/dist/server/index.js.map +1 -1
- package/dist/server/index.mjs +194 -2
- package/dist/server/index.mjs.map +1 -1
- package/dist/server/utils/index.d.mts +73 -1
- package/dist/server/utils/index.d.ts +73 -1
- package/dist/server/utils/index.js +199 -0
- package/dist/server/utils/index.js.map +1 -1
- package/dist/server/utils/index.mjs +195 -1
- package/dist/server/utils/index.mjs.map +1 -1
- package/dist/shared/index.d.mts +1 -1
- package/dist/shared/index.d.ts +1 -1
- package/dist/shared/index.js +296 -0
- package/dist/shared/index.js.map +1 -1
- package/dist/shared/index.mjs +274 -1
- package/dist/shared/index.mjs.map +1 -1
- package/package.json +41 -4
- package/dist/index-BNdT-2X4.d.ts +0 -229
- package/dist/index-Du0LLt9f.d.mts +0 -229
|
@@ -268,6 +268,508 @@ declare const TOKEN_TYPES: {
|
|
|
268
268
|
};
|
|
269
269
|
type TokenType = (typeof TOKEN_TYPES)[keyof typeof TOKEN_TYPES];
|
|
270
270
|
|
|
271
|
+
/**
|
|
272
|
+
* Order/Transaction status
|
|
273
|
+
*/
|
|
274
|
+
declare const ORDER_STATUS: {
|
|
275
|
+
readonly PENDING: "pending";
|
|
276
|
+
readonly CONFIRMED: "confirmed";
|
|
277
|
+
readonly PROCESSING: "processing";
|
|
278
|
+
readonly SHIPPED: "shipped";
|
|
279
|
+
readonly DELIVERED: "delivered";
|
|
280
|
+
readonly CANCELLED: "cancelled";
|
|
281
|
+
readonly REFUNDED: "refunded";
|
|
282
|
+
readonly FAILED: "failed";
|
|
283
|
+
readonly ON_HOLD: "on_hold";
|
|
284
|
+
};
|
|
285
|
+
type OrderStatus = (typeof ORDER_STATUS)[keyof typeof ORDER_STATUS];
|
|
286
|
+
/**
|
|
287
|
+
* Payment status
|
|
288
|
+
*/
|
|
289
|
+
declare const PAYMENT_STATUS: {
|
|
290
|
+
readonly PENDING: "pending";
|
|
291
|
+
readonly PROCESSING: "processing";
|
|
292
|
+
readonly COMPLETED: "completed";
|
|
293
|
+
readonly FAILED: "failed";
|
|
294
|
+
readonly CANCELLED: "cancelled";
|
|
295
|
+
readonly REFUNDED: "refunded";
|
|
296
|
+
readonly PARTIALLY_REFUNDED: "partially_refunded";
|
|
297
|
+
readonly DISPUTED: "disputed";
|
|
298
|
+
};
|
|
299
|
+
type PaymentStatus = (typeof PAYMENT_STATUS)[keyof typeof PAYMENT_STATUS];
|
|
300
|
+
/**
|
|
301
|
+
* Task/Ticket status
|
|
302
|
+
*/
|
|
303
|
+
declare const TASK_STATUS: {
|
|
304
|
+
readonly TODO: "todo";
|
|
305
|
+
readonly IN_PROGRESS: "in_progress";
|
|
306
|
+
readonly IN_REVIEW: "in_review";
|
|
307
|
+
readonly DONE: "done";
|
|
308
|
+
readonly BLOCKED: "blocked";
|
|
309
|
+
readonly CANCELLED: "cancelled";
|
|
310
|
+
readonly ON_HOLD: "on_hold";
|
|
311
|
+
};
|
|
312
|
+
type TaskStatus = (typeof TASK_STATUS)[keyof typeof TASK_STATUS];
|
|
313
|
+
/**
|
|
314
|
+
* Subscription status
|
|
315
|
+
*/
|
|
316
|
+
declare const SUBSCRIPTION_STATUS: {
|
|
317
|
+
readonly ACTIVE: "active";
|
|
318
|
+
readonly TRIAL: "trial";
|
|
319
|
+
readonly PAST_DUE: "past_due";
|
|
320
|
+
readonly CANCELLED: "cancelled";
|
|
321
|
+
readonly EXPIRED: "expired";
|
|
322
|
+
readonly PAUSED: "paused";
|
|
323
|
+
readonly PENDING: "pending";
|
|
324
|
+
};
|
|
325
|
+
type SubscriptionStatus = (typeof SUBSCRIPTION_STATUS)[keyof typeof SUBSCRIPTION_STATUS];
|
|
326
|
+
/**
|
|
327
|
+
* Sort direction
|
|
328
|
+
*/
|
|
329
|
+
declare const SORT_DIRECTION: {
|
|
330
|
+
readonly ASC: "asc";
|
|
331
|
+
readonly DESC: "desc";
|
|
332
|
+
};
|
|
333
|
+
type SortDirection = (typeof SORT_DIRECTION)[keyof typeof SORT_DIRECTION];
|
|
334
|
+
/**
|
|
335
|
+
* Common sort options
|
|
336
|
+
*/
|
|
337
|
+
declare const SORT: {
|
|
338
|
+
readonly NEWEST: "newest";
|
|
339
|
+
readonly OLDEST: "oldest";
|
|
340
|
+
readonly CREATED_AT_ASC: "created_at_asc";
|
|
341
|
+
readonly CREATED_AT_DESC: "created_at_desc";
|
|
342
|
+
readonly UPDATED_AT_ASC: "updated_at_asc";
|
|
343
|
+
readonly UPDATED_AT_DESC: "updated_at_desc";
|
|
344
|
+
readonly NAME_ASC: "name_asc";
|
|
345
|
+
readonly NAME_DESC: "name_desc";
|
|
346
|
+
readonly TITLE_ASC: "title_asc";
|
|
347
|
+
readonly TITLE_DESC: "title_desc";
|
|
348
|
+
readonly ALPHABETICAL: "alphabetical";
|
|
349
|
+
readonly REVERSE_ALPHABETICAL: "reverse_alphabetical";
|
|
350
|
+
readonly PRICE_ASC: "price_asc";
|
|
351
|
+
readonly PRICE_DESC: "price_desc";
|
|
352
|
+
readonly AMOUNT_ASC: "amount_asc";
|
|
353
|
+
readonly AMOUNT_DESC: "amount_desc";
|
|
354
|
+
readonly POPULAR: "popular";
|
|
355
|
+
readonly TRENDING: "trending";
|
|
356
|
+
readonly MOST_VIEWED: "most_viewed";
|
|
357
|
+
readonly MOST_LIKED: "most_liked";
|
|
358
|
+
readonly MOST_COMMENTED: "most_commented";
|
|
359
|
+
readonly TOP_RATED: "top_rated";
|
|
360
|
+
readonly RELEVANCE: "relevance";
|
|
361
|
+
readonly BEST_MATCH: "best_match";
|
|
362
|
+
readonly CUSTOM: "custom";
|
|
363
|
+
readonly MANUAL: "manual";
|
|
364
|
+
readonly RANDOM: "random";
|
|
365
|
+
};
|
|
366
|
+
type Sort = (typeof SORT)[keyof typeof SORT];
|
|
367
|
+
/**
|
|
368
|
+
* User roles
|
|
369
|
+
*/
|
|
370
|
+
declare const ROLE: {
|
|
371
|
+
readonly SUPER_ADMIN: "super_admin";
|
|
372
|
+
readonly ADMIN: "admin";
|
|
373
|
+
readonly MODERATOR: "moderator";
|
|
374
|
+
readonly SUPPORT: "support";
|
|
375
|
+
readonly USER: "user";
|
|
376
|
+
readonly MEMBER: "member";
|
|
377
|
+
readonly GUEST: "guest";
|
|
378
|
+
readonly OWNER: "owner";
|
|
379
|
+
readonly MANAGER: "manager";
|
|
380
|
+
readonly EDITOR: "editor";
|
|
381
|
+
readonly VIEWER: "viewer";
|
|
382
|
+
readonly CONTRIBUTOR: "contributor";
|
|
383
|
+
readonly TEAM_LEAD: "team_lead";
|
|
384
|
+
readonly TEAM_MEMBER: "team_member";
|
|
385
|
+
readonly API_USER: "api_user";
|
|
386
|
+
readonly SERVICE: "service";
|
|
387
|
+
readonly BOT: "bot";
|
|
388
|
+
};
|
|
389
|
+
type Role = (typeof ROLE)[keyof typeof ROLE];
|
|
390
|
+
/**
|
|
391
|
+
* Permission levels (hierarchical)
|
|
392
|
+
*/
|
|
393
|
+
declare const PERMISSION_LEVEL: {
|
|
394
|
+
readonly NONE: 0;
|
|
395
|
+
readonly READ: 1;
|
|
396
|
+
readonly WRITE: 2;
|
|
397
|
+
readonly DELETE: 3;
|
|
398
|
+
readonly ADMIN: 4;
|
|
399
|
+
readonly SUPER_ADMIN: 5;
|
|
400
|
+
};
|
|
401
|
+
type PermissionLevel = (typeof PERMISSION_LEVEL)[keyof typeof PERMISSION_LEVEL];
|
|
402
|
+
declare const PRIORITY: {
|
|
403
|
+
readonly LOWEST: "lowest";
|
|
404
|
+
readonly LOW: "low";
|
|
405
|
+
readonly MEDIUM: "medium";
|
|
406
|
+
readonly HIGH: "high";
|
|
407
|
+
readonly HIGHEST: "highest";
|
|
408
|
+
readonly URGENT: "urgent";
|
|
409
|
+
readonly CRITICAL: "critical";
|
|
410
|
+
};
|
|
411
|
+
type Priority = (typeof PRIORITY)[keyof typeof PRIORITY];
|
|
412
|
+
declare const VISIBILITY: {
|
|
413
|
+
readonly PUBLIC: "public";
|
|
414
|
+
readonly PRIVATE: "private";
|
|
415
|
+
readonly INTERNAL: "internal";
|
|
416
|
+
readonly RESTRICTED: "restricted";
|
|
417
|
+
readonly HIDDEN: "hidden";
|
|
418
|
+
readonly UNLISTED: "unlisted";
|
|
419
|
+
};
|
|
420
|
+
type Visibility = (typeof VISIBILITY)[keyof typeof VISIBILITY];
|
|
421
|
+
/**
|
|
422
|
+
* Responsive breakpoints (pixels)
|
|
423
|
+
* Following Tailwind CSS conventions
|
|
424
|
+
*/
|
|
425
|
+
declare const BREAKPOINTS: {
|
|
426
|
+
readonly xs: 0;
|
|
427
|
+
readonly sm: 640;
|
|
428
|
+
readonly md: 768;
|
|
429
|
+
readonly lg: 1024;
|
|
430
|
+
readonly xl: 1280;
|
|
431
|
+
readonly '2xl': 1536;
|
|
432
|
+
};
|
|
433
|
+
type Breakpoint = keyof typeof BREAKPOINTS;
|
|
434
|
+
/**
|
|
435
|
+
* Media query strings for breakpoints
|
|
436
|
+
*/
|
|
437
|
+
declare const MEDIA_QUERIES: {
|
|
438
|
+
readonly xs: "(min-width: 0px)";
|
|
439
|
+
readonly sm: "(min-width: 640px)";
|
|
440
|
+
readonly md: "(min-width: 768px)";
|
|
441
|
+
readonly lg: "(min-width: 1024px)";
|
|
442
|
+
readonly xl: "(min-width: 1280px)";
|
|
443
|
+
readonly '2xl': "(min-width: 1536px)";
|
|
444
|
+
};
|
|
445
|
+
/**
|
|
446
|
+
* Max-width media queries
|
|
447
|
+
*/
|
|
448
|
+
declare const MEDIA_QUERIES_MAX: {
|
|
449
|
+
readonly xs: "(max-width: 639px)";
|
|
450
|
+
readonly sm: "(max-width: 767px)";
|
|
451
|
+
readonly md: "(max-width: 1023px)";
|
|
452
|
+
readonly lg: "(max-width: 1279px)";
|
|
453
|
+
readonly xl: "(max-width: 1535px)";
|
|
454
|
+
readonly '2xl': "(max-width: 9999px)";
|
|
455
|
+
};
|
|
456
|
+
/**
|
|
457
|
+
* Container max widths for each breakpoint
|
|
458
|
+
*/
|
|
459
|
+
declare const CONTAINER_WIDTHS: {
|
|
460
|
+
readonly sm: 640;
|
|
461
|
+
readonly md: 768;
|
|
462
|
+
readonly lg: 1024;
|
|
463
|
+
readonly xl: 1280;
|
|
464
|
+
readonly '2xl': 1536;
|
|
465
|
+
};
|
|
466
|
+
declare const FILE_TYPE: {
|
|
467
|
+
readonly IMAGE: "image";
|
|
468
|
+
readonly VIDEO: "video";
|
|
469
|
+
readonly AUDIO: "audio";
|
|
470
|
+
readonly DOCUMENT: "document";
|
|
471
|
+
readonly SPREADSHEET: "spreadsheet";
|
|
472
|
+
readonly PRESENTATION: "presentation";
|
|
473
|
+
readonly ARCHIVE: "archive";
|
|
474
|
+
readonly CODE: "code";
|
|
475
|
+
readonly OTHER: "other";
|
|
476
|
+
};
|
|
477
|
+
type FileType = (typeof FILE_TYPE)[keyof typeof FILE_TYPE];
|
|
478
|
+
declare const NOTIFICATION_TYPE: {
|
|
479
|
+
readonly INFO: "info";
|
|
480
|
+
readonly SUCCESS: "success";
|
|
481
|
+
readonly WARNING: "warning";
|
|
482
|
+
readonly ERROR: "error";
|
|
483
|
+
readonly ALERT: "alert";
|
|
484
|
+
};
|
|
485
|
+
type NotificationType = (typeof NOTIFICATION_TYPE)[keyof typeof NOTIFICATION_TYPE];
|
|
486
|
+
declare const THEME: {
|
|
487
|
+
readonly LIGHT: "light";
|
|
488
|
+
readonly DARK: "dark";
|
|
489
|
+
readonly SYSTEM: "system";
|
|
490
|
+
};
|
|
491
|
+
type Theme = (typeof THEME)[keyof typeof THEME];
|
|
492
|
+
declare const LOCALE: {
|
|
493
|
+
readonly EN_US: "en-US";
|
|
494
|
+
readonly EN_GB: "en-GB";
|
|
495
|
+
readonly ES_ES: "es-ES";
|
|
496
|
+
readonly FR_FR: "fr-FR";
|
|
497
|
+
readonly DE_DE: "de-DE";
|
|
498
|
+
readonly IT_IT: "it-IT";
|
|
499
|
+
readonly PT_BR: "pt-BR";
|
|
500
|
+
readonly JA_JP: "ja-JP";
|
|
501
|
+
readonly ZH_CN: "zh-CN";
|
|
502
|
+
readonly ZH_TW: "zh-TW";
|
|
503
|
+
readonly KO_KR: "ko-KR";
|
|
504
|
+
readonly HI_IN: "hi-IN";
|
|
505
|
+
readonly AR_SA: "ar-SA";
|
|
506
|
+
readonly RU_RU: "ru-RU";
|
|
507
|
+
};
|
|
508
|
+
type Locale = (typeof LOCALE)[keyof typeof LOCALE];
|
|
509
|
+
declare const DATE_FORMAT: {
|
|
510
|
+
readonly ISO: "yyyy-MM-dd";
|
|
511
|
+
readonly US: "MM/dd/yyyy";
|
|
512
|
+
readonly EU: "dd/MM/yyyy";
|
|
513
|
+
readonly LONG: "MMMM d, yyyy";
|
|
514
|
+
readonly SHORT: "MMM d, yyyy";
|
|
515
|
+
readonly WITH_TIME: "yyyy-MM-dd HH:mm:ss";
|
|
516
|
+
readonly RELATIVE: "relative";
|
|
517
|
+
};
|
|
518
|
+
type DateFormat = (typeof DATE_FORMAT)[keyof typeof DATE_FORMAT];
|
|
519
|
+
declare const INTERVAL: {
|
|
520
|
+
readonly DAILY: "daily";
|
|
521
|
+
readonly WEEKLY: "weekly";
|
|
522
|
+
readonly BIWEEKLY: "biweekly";
|
|
523
|
+
readonly MONTHLY: "monthly";
|
|
524
|
+
readonly QUARTERLY: "quarterly";
|
|
525
|
+
readonly YEARLY: "yearly";
|
|
526
|
+
readonly ONCE: "once";
|
|
527
|
+
};
|
|
528
|
+
type Interval = (typeof INTERVAL)[keyof typeof INTERVAL];
|
|
529
|
+
declare const GENDER: {
|
|
530
|
+
readonly MALE: "male";
|
|
531
|
+
readonly FEMALE: "female";
|
|
532
|
+
readonly OTHER: "other";
|
|
533
|
+
readonly PREFER_NOT_TO_SAY: "prefer_not_to_say";
|
|
534
|
+
};
|
|
535
|
+
type Gender = (typeof GENDER)[keyof typeof GENDER];
|
|
536
|
+
declare const ENUMS: {
|
|
537
|
+
readonly STATUS: {
|
|
538
|
+
readonly ACTIVE: "active";
|
|
539
|
+
readonly INACTIVE: "inactive";
|
|
540
|
+
readonly PENDING: "pending";
|
|
541
|
+
readonly APPROVED: "approved";
|
|
542
|
+
readonly REJECTED: "rejected";
|
|
543
|
+
readonly ARCHIVED: "archived";
|
|
544
|
+
readonly DELETED: "deleted";
|
|
545
|
+
readonly DRAFT: "draft";
|
|
546
|
+
readonly PUBLISHED: "published";
|
|
547
|
+
readonly SUSPENDED: "suspended";
|
|
548
|
+
readonly EXPIRED: "expired";
|
|
549
|
+
readonly CANCELLED: "cancelled";
|
|
550
|
+
};
|
|
551
|
+
readonly USER_STATUS: {
|
|
552
|
+
readonly ACTIVE: "active";
|
|
553
|
+
readonly INACTIVE: "inactive";
|
|
554
|
+
readonly PENDING: "pending";
|
|
555
|
+
readonly SUSPENDED: "suspended";
|
|
556
|
+
readonly BANNED: "banned";
|
|
557
|
+
readonly DELETED: "deleted";
|
|
558
|
+
readonly UNVERIFIED: "unverified";
|
|
559
|
+
readonly VERIFIED: "verified";
|
|
560
|
+
};
|
|
561
|
+
readonly ORDER_STATUS: {
|
|
562
|
+
readonly PENDING: "pending";
|
|
563
|
+
readonly CONFIRMED: "confirmed";
|
|
564
|
+
readonly PROCESSING: "processing";
|
|
565
|
+
readonly SHIPPED: "shipped";
|
|
566
|
+
readonly DELIVERED: "delivered";
|
|
567
|
+
readonly CANCELLED: "cancelled";
|
|
568
|
+
readonly REFUNDED: "refunded";
|
|
569
|
+
readonly FAILED: "failed";
|
|
570
|
+
readonly ON_HOLD: "on_hold";
|
|
571
|
+
};
|
|
572
|
+
readonly PAYMENT_STATUS: {
|
|
573
|
+
readonly PENDING: "pending";
|
|
574
|
+
readonly PROCESSING: "processing";
|
|
575
|
+
readonly COMPLETED: "completed";
|
|
576
|
+
readonly FAILED: "failed";
|
|
577
|
+
readonly CANCELLED: "cancelled";
|
|
578
|
+
readonly REFUNDED: "refunded";
|
|
579
|
+
readonly PARTIALLY_REFUNDED: "partially_refunded";
|
|
580
|
+
readonly DISPUTED: "disputed";
|
|
581
|
+
};
|
|
582
|
+
readonly TASK_STATUS: {
|
|
583
|
+
readonly TODO: "todo";
|
|
584
|
+
readonly IN_PROGRESS: "in_progress";
|
|
585
|
+
readonly IN_REVIEW: "in_review";
|
|
586
|
+
readonly DONE: "done";
|
|
587
|
+
readonly BLOCKED: "blocked";
|
|
588
|
+
readonly CANCELLED: "cancelled";
|
|
589
|
+
readonly ON_HOLD: "on_hold";
|
|
590
|
+
};
|
|
591
|
+
readonly SUBSCRIPTION_STATUS: {
|
|
592
|
+
readonly ACTIVE: "active";
|
|
593
|
+
readonly TRIAL: "trial";
|
|
594
|
+
readonly PAST_DUE: "past_due";
|
|
595
|
+
readonly CANCELLED: "cancelled";
|
|
596
|
+
readonly EXPIRED: "expired";
|
|
597
|
+
readonly PAUSED: "paused";
|
|
598
|
+
readonly PENDING: "pending";
|
|
599
|
+
};
|
|
600
|
+
readonly SORT_DIRECTION: {
|
|
601
|
+
readonly ASC: "asc";
|
|
602
|
+
readonly DESC: "desc";
|
|
603
|
+
};
|
|
604
|
+
readonly SORT: {
|
|
605
|
+
readonly NEWEST: "newest";
|
|
606
|
+
readonly OLDEST: "oldest";
|
|
607
|
+
readonly CREATED_AT_ASC: "created_at_asc";
|
|
608
|
+
readonly CREATED_AT_DESC: "created_at_desc";
|
|
609
|
+
readonly UPDATED_AT_ASC: "updated_at_asc";
|
|
610
|
+
readonly UPDATED_AT_DESC: "updated_at_desc";
|
|
611
|
+
readonly NAME_ASC: "name_asc";
|
|
612
|
+
readonly NAME_DESC: "name_desc";
|
|
613
|
+
readonly TITLE_ASC: "title_asc";
|
|
614
|
+
readonly TITLE_DESC: "title_desc";
|
|
615
|
+
readonly ALPHABETICAL: "alphabetical";
|
|
616
|
+
readonly REVERSE_ALPHABETICAL: "reverse_alphabetical";
|
|
617
|
+
readonly PRICE_ASC: "price_asc";
|
|
618
|
+
readonly PRICE_DESC: "price_desc";
|
|
619
|
+
readonly AMOUNT_ASC: "amount_asc";
|
|
620
|
+
readonly AMOUNT_DESC: "amount_desc";
|
|
621
|
+
readonly POPULAR: "popular";
|
|
622
|
+
readonly TRENDING: "trending";
|
|
623
|
+
readonly MOST_VIEWED: "most_viewed";
|
|
624
|
+
readonly MOST_LIKED: "most_liked";
|
|
625
|
+
readonly MOST_COMMENTED: "most_commented";
|
|
626
|
+
readonly TOP_RATED: "top_rated";
|
|
627
|
+
readonly RELEVANCE: "relevance";
|
|
628
|
+
readonly BEST_MATCH: "best_match";
|
|
629
|
+
readonly CUSTOM: "custom";
|
|
630
|
+
readonly MANUAL: "manual";
|
|
631
|
+
readonly RANDOM: "random";
|
|
632
|
+
};
|
|
633
|
+
readonly ROLE: {
|
|
634
|
+
readonly SUPER_ADMIN: "super_admin";
|
|
635
|
+
readonly ADMIN: "admin";
|
|
636
|
+
readonly MODERATOR: "moderator";
|
|
637
|
+
readonly SUPPORT: "support";
|
|
638
|
+
readonly USER: "user";
|
|
639
|
+
readonly MEMBER: "member";
|
|
640
|
+
readonly GUEST: "guest";
|
|
641
|
+
readonly OWNER: "owner";
|
|
642
|
+
readonly MANAGER: "manager";
|
|
643
|
+
readonly EDITOR: "editor";
|
|
644
|
+
readonly VIEWER: "viewer";
|
|
645
|
+
readonly CONTRIBUTOR: "contributor";
|
|
646
|
+
readonly TEAM_LEAD: "team_lead";
|
|
647
|
+
readonly TEAM_MEMBER: "team_member";
|
|
648
|
+
readonly API_USER: "api_user";
|
|
649
|
+
readonly SERVICE: "service";
|
|
650
|
+
readonly BOT: "bot";
|
|
651
|
+
};
|
|
652
|
+
readonly PERMISSION_LEVEL: {
|
|
653
|
+
readonly NONE: 0;
|
|
654
|
+
readonly READ: 1;
|
|
655
|
+
readonly WRITE: 2;
|
|
656
|
+
readonly DELETE: 3;
|
|
657
|
+
readonly ADMIN: 4;
|
|
658
|
+
readonly SUPER_ADMIN: 5;
|
|
659
|
+
};
|
|
660
|
+
readonly PRIORITY: {
|
|
661
|
+
readonly LOWEST: "lowest";
|
|
662
|
+
readonly LOW: "low";
|
|
663
|
+
readonly MEDIUM: "medium";
|
|
664
|
+
readonly HIGH: "high";
|
|
665
|
+
readonly HIGHEST: "highest";
|
|
666
|
+
readonly URGENT: "urgent";
|
|
667
|
+
readonly CRITICAL: "critical";
|
|
668
|
+
};
|
|
669
|
+
readonly VISIBILITY: {
|
|
670
|
+
readonly PUBLIC: "public";
|
|
671
|
+
readonly PRIVATE: "private";
|
|
672
|
+
readonly INTERNAL: "internal";
|
|
673
|
+
readonly RESTRICTED: "restricted";
|
|
674
|
+
readonly HIDDEN: "hidden";
|
|
675
|
+
readonly UNLISTED: "unlisted";
|
|
676
|
+
};
|
|
677
|
+
readonly BREAKPOINTS: {
|
|
678
|
+
readonly xs: 0;
|
|
679
|
+
readonly sm: 640;
|
|
680
|
+
readonly md: 768;
|
|
681
|
+
readonly lg: 1024;
|
|
682
|
+
readonly xl: 1280;
|
|
683
|
+
readonly '2xl': 1536;
|
|
684
|
+
};
|
|
685
|
+
readonly MEDIA_QUERIES: {
|
|
686
|
+
readonly xs: "(min-width: 0px)";
|
|
687
|
+
readonly sm: "(min-width: 640px)";
|
|
688
|
+
readonly md: "(min-width: 768px)";
|
|
689
|
+
readonly lg: "(min-width: 1024px)";
|
|
690
|
+
readonly xl: "(min-width: 1280px)";
|
|
691
|
+
readonly '2xl': "(min-width: 1536px)";
|
|
692
|
+
};
|
|
693
|
+
readonly MEDIA_QUERIES_MAX: {
|
|
694
|
+
readonly xs: "(max-width: 639px)";
|
|
695
|
+
readonly sm: "(max-width: 767px)";
|
|
696
|
+
readonly md: "(max-width: 1023px)";
|
|
697
|
+
readonly lg: "(max-width: 1279px)";
|
|
698
|
+
readonly xl: "(max-width: 1535px)";
|
|
699
|
+
readonly '2xl': "(max-width: 9999px)";
|
|
700
|
+
};
|
|
701
|
+
readonly CONTAINER_WIDTHS: {
|
|
702
|
+
readonly sm: 640;
|
|
703
|
+
readonly md: 768;
|
|
704
|
+
readonly lg: 1024;
|
|
705
|
+
readonly xl: 1280;
|
|
706
|
+
readonly '2xl': 1536;
|
|
707
|
+
};
|
|
708
|
+
readonly FILE_TYPE: {
|
|
709
|
+
readonly IMAGE: "image";
|
|
710
|
+
readonly VIDEO: "video";
|
|
711
|
+
readonly AUDIO: "audio";
|
|
712
|
+
readonly DOCUMENT: "document";
|
|
713
|
+
readonly SPREADSHEET: "spreadsheet";
|
|
714
|
+
readonly PRESENTATION: "presentation";
|
|
715
|
+
readonly ARCHIVE: "archive";
|
|
716
|
+
readonly CODE: "code";
|
|
717
|
+
readonly OTHER: "other";
|
|
718
|
+
};
|
|
719
|
+
readonly NOTIFICATION_TYPE: {
|
|
720
|
+
readonly INFO: "info";
|
|
721
|
+
readonly SUCCESS: "success";
|
|
722
|
+
readonly WARNING: "warning";
|
|
723
|
+
readonly ERROR: "error";
|
|
724
|
+
readonly ALERT: "alert";
|
|
725
|
+
};
|
|
726
|
+
readonly THEME: {
|
|
727
|
+
readonly LIGHT: "light";
|
|
728
|
+
readonly DARK: "dark";
|
|
729
|
+
readonly SYSTEM: "system";
|
|
730
|
+
};
|
|
731
|
+
readonly LOCALE: {
|
|
732
|
+
readonly EN_US: "en-US";
|
|
733
|
+
readonly EN_GB: "en-GB";
|
|
734
|
+
readonly ES_ES: "es-ES";
|
|
735
|
+
readonly FR_FR: "fr-FR";
|
|
736
|
+
readonly DE_DE: "de-DE";
|
|
737
|
+
readonly IT_IT: "it-IT";
|
|
738
|
+
readonly PT_BR: "pt-BR";
|
|
739
|
+
readonly JA_JP: "ja-JP";
|
|
740
|
+
readonly ZH_CN: "zh-CN";
|
|
741
|
+
readonly ZH_TW: "zh-TW";
|
|
742
|
+
readonly KO_KR: "ko-KR";
|
|
743
|
+
readonly HI_IN: "hi-IN";
|
|
744
|
+
readonly AR_SA: "ar-SA";
|
|
745
|
+
readonly RU_RU: "ru-RU";
|
|
746
|
+
};
|
|
747
|
+
readonly DATE_FORMAT: {
|
|
748
|
+
readonly ISO: "yyyy-MM-dd";
|
|
749
|
+
readonly US: "MM/dd/yyyy";
|
|
750
|
+
readonly EU: "dd/MM/yyyy";
|
|
751
|
+
readonly LONG: "MMMM d, yyyy";
|
|
752
|
+
readonly SHORT: "MMM d, yyyy";
|
|
753
|
+
readonly WITH_TIME: "yyyy-MM-dd HH:mm:ss";
|
|
754
|
+
readonly RELATIVE: "relative";
|
|
755
|
+
};
|
|
756
|
+
readonly INTERVAL: {
|
|
757
|
+
readonly DAILY: "daily";
|
|
758
|
+
readonly WEEKLY: "weekly";
|
|
759
|
+
readonly BIWEEKLY: "biweekly";
|
|
760
|
+
readonly MONTHLY: "monthly";
|
|
761
|
+
readonly QUARTERLY: "quarterly";
|
|
762
|
+
readonly YEARLY: "yearly";
|
|
763
|
+
readonly ONCE: "once";
|
|
764
|
+
};
|
|
765
|
+
readonly GENDER: {
|
|
766
|
+
readonly MALE: "male";
|
|
767
|
+
readonly FEMALE: "female";
|
|
768
|
+
readonly OTHER: "other";
|
|
769
|
+
readonly PREFER_NOT_TO_SAY: "prefer_not_to_say";
|
|
770
|
+
};
|
|
771
|
+
};
|
|
772
|
+
|
|
271
773
|
/**
|
|
272
774
|
* Enhanced Date/Time utilities using date-fns with timezone support
|
|
273
775
|
* Deep level date handling for all common operations
|
|
@@ -664,46 +1166,84 @@ declare const index_ApiSuccessResponse: typeof ApiSuccessResponse;
|
|
|
664
1166
|
type index_AuditableEntity = AuditableEntity;
|
|
665
1167
|
type index_AuthResponse = AuthResponse;
|
|
666
1168
|
type index_AuthTokens = AuthTokens;
|
|
1169
|
+
declare const index_BREAKPOINTS: typeof BREAKPOINTS;
|
|
667
1170
|
type index_BaseEntity = BaseEntity;
|
|
668
1171
|
declare const index_BaseFilterParams: typeof BaseFilterParams;
|
|
669
1172
|
type index_BaseUser = BaseUser;
|
|
1173
|
+
type index_Breakpoint = Breakpoint;
|
|
1174
|
+
declare const index_CONTAINER_WIDTHS: typeof CONTAINER_WIDTHS;
|
|
670
1175
|
type index_ChangePasswordRequest = ChangePasswordRequest;
|
|
671
1176
|
declare const index_CreateResponse: typeof CreateResponse;
|
|
1177
|
+
declare const index_DATE_FORMAT: typeof DATE_FORMAT;
|
|
672
1178
|
declare const index_DATE_FORMATS: typeof DATE_FORMATS;
|
|
1179
|
+
type index_DateFormat = DateFormat;
|
|
673
1180
|
type index_DateInput = DateInput;
|
|
674
1181
|
declare const index_DeleteResponse: typeof DeleteResponse;
|
|
1182
|
+
declare const index_ENUMS: typeof ENUMS;
|
|
675
1183
|
type index_EnvConfig = EnvConfig;
|
|
1184
|
+
declare const index_FILE_TYPE: typeof FILE_TYPE;
|
|
1185
|
+
type index_FileType = FileType;
|
|
676
1186
|
declare const index_FilterWithPagination: typeof FilterWithPagination;
|
|
677
1187
|
type index_ForgotPasswordRequest = ForgotPasswordRequest;
|
|
1188
|
+
declare const index_GENDER: typeof GENDER;
|
|
1189
|
+
type index_Gender = Gender;
|
|
678
1190
|
declare const index_GetResponse: typeof GetResponse;
|
|
679
1191
|
declare const index_HTTP_STATUS: typeof HTTP_STATUS;
|
|
680
1192
|
declare const index_HTTP_STATUS_MESSAGES: typeof HTTP_STATUS_MESSAGES;
|
|
681
1193
|
type index_HttpStatusCode = HttpStatusCode;
|
|
682
1194
|
type index_ID = ID;
|
|
1195
|
+
declare const index_INTERVAL: typeof INTERVAL;
|
|
1196
|
+
type index_Interval = Interval;
|
|
683
1197
|
type index_JwtPayload = JwtPayload;
|
|
684
1198
|
type index_KeyValuePair<T = string> = KeyValuePair<T>;
|
|
1199
|
+
declare const index_LOCALE: typeof LOCALE;
|
|
685
1200
|
declare const index_ListResponse: typeof ListResponse;
|
|
1201
|
+
type index_Locale = Locale;
|
|
686
1202
|
type index_LoginCredentials = LoginCredentials;
|
|
1203
|
+
declare const index_MEDIA_QUERIES: typeof MEDIA_QUERIES;
|
|
1204
|
+
declare const index_MEDIA_QUERIES_MAX: typeof MEDIA_QUERIES_MAX;
|
|
1205
|
+
declare const index_NOTIFICATION_TYPE: typeof NOTIFICATION_TYPE;
|
|
1206
|
+
type index_NotificationType = NotificationType;
|
|
687
1207
|
type index_Nullable<T> = Nullable<T>;
|
|
1208
|
+
declare const index_ORDER_STATUS: typeof ORDER_STATUS;
|
|
688
1209
|
type index_ObjectId = ObjectId;
|
|
689
1210
|
type index_Optional<T, K extends keyof T> = Optional<T, K>;
|
|
1211
|
+
type index_OrderStatus = OrderStatus;
|
|
690
1212
|
type index_OrganizationEntity = OrganizationEntity;
|
|
691
1213
|
declare const index_PAGINATION: typeof PAGINATION;
|
|
1214
|
+
declare const index_PAYMENT_STATUS: typeof PAYMENT_STATUS;
|
|
1215
|
+
declare const index_PERMISSION_LEVEL: typeof PERMISSION_LEVEL;
|
|
1216
|
+
declare const index_PRIORITY: typeof PRIORITY;
|
|
692
1217
|
declare const index_PaginatedResponse: typeof PaginatedResponse;
|
|
693
1218
|
declare const index_PaginationMeta: typeof PaginationMeta;
|
|
694
1219
|
declare const index_PaginationParams: typeof PaginationParams;
|
|
1220
|
+
type index_PaymentStatus = PaymentStatus;
|
|
1221
|
+
type index_PermissionLevel = PermissionLevel;
|
|
1222
|
+
type index_Priority = Priority;
|
|
1223
|
+
declare const index_ROLE: typeof ROLE;
|
|
695
1224
|
declare const index_ROLES: typeof ROLES;
|
|
696
1225
|
type index_RegisterCredentials = RegisterCredentials;
|
|
697
1226
|
type index_RequiredFields<T, K extends keyof T> = RequiredFields<T, K>;
|
|
698
1227
|
type index_ResetPasswordRequest = ResetPasswordRequest;
|
|
1228
|
+
type index_Role = Role;
|
|
699
1229
|
type index_RoleValue = RoleValue;
|
|
1230
|
+
declare const index_SORT: typeof SORT;
|
|
1231
|
+
declare const index_SORT_DIRECTION: typeof SORT_DIRECTION;
|
|
700
1232
|
declare const index_STATUS: typeof STATUS;
|
|
1233
|
+
declare const index_SUBSCRIPTION_STATUS: typeof SUBSCRIPTION_STATUS;
|
|
701
1234
|
type index_SelectOption<T = string> = SelectOption<T>;
|
|
702
1235
|
type index_SoftDeleteEntity = SoftDeleteEntity;
|
|
1236
|
+
type index_Sort = Sort;
|
|
703
1237
|
type index_SortConfig = SortConfig;
|
|
1238
|
+
type index_SortDirection = SortDirection;
|
|
704
1239
|
type index_SortOrder = SortOrder;
|
|
705
1240
|
type index_StatusValue = StatusValue;
|
|
1241
|
+
type index_SubscriptionStatus = SubscriptionStatus;
|
|
1242
|
+
declare const index_TASK_STATUS: typeof TASK_STATUS;
|
|
1243
|
+
declare const index_THEME: typeof THEME;
|
|
706
1244
|
declare const index_TOKEN_TYPES: typeof TOKEN_TYPES;
|
|
1245
|
+
type index_TaskStatus = TaskStatus;
|
|
1246
|
+
type index_Theme = Theme;
|
|
707
1247
|
type index_Timestamps = Timestamps;
|
|
708
1248
|
type index_TokenType = TokenType;
|
|
709
1249
|
declare const index_USER_STATUS: typeof USER_STATUS;
|
|
@@ -714,6 +1254,8 @@ type index_UserWithRole = UserWithRole;
|
|
|
714
1254
|
declare const index_VALIDATION_MESSAGES: typeof VALIDATION_MESSAGES;
|
|
715
1255
|
declare const index_VALIDATION_PATTERNS: typeof VALIDATION_PATTERNS;
|
|
716
1256
|
declare const index_VALIDATION_RULES: typeof VALIDATION_RULES;
|
|
1257
|
+
declare const index_VISIBILITY: typeof VISIBILITY;
|
|
1258
|
+
type index_Visibility = Visibility;
|
|
717
1259
|
declare const index_addDays: typeof addDays;
|
|
718
1260
|
declare const index_addHours: typeof addHours;
|
|
719
1261
|
declare const index_addMinutes: typeof addMinutes;
|
|
@@ -827,7 +1369,7 @@ declare const index_toTimezone: typeof toTimezone;
|
|
|
827
1369
|
declare const index_toZonedTime: typeof toZonedTime;
|
|
828
1370
|
declare const index_validateEnv: typeof validateEnv;
|
|
829
1371
|
declare namespace index {
|
|
830
|
-
export { index_ApiErrorResponse as ApiErrorResponse, index_ApiResponse as ApiResponse, index_ApiSuccessResponse as ApiSuccessResponse, type index_AuditableEntity as AuditableEntity, type index_AuthResponse as AuthResponse, type index_AuthTokens as AuthTokens, type index_BaseEntity as BaseEntity, index_BaseFilterParams as BaseFilterParams, type index_BaseUser as BaseUser, type index_ChangePasswordRequest as ChangePasswordRequest, index_CreateResponse as CreateResponse, index_DATE_FORMATS as DATE_FORMATS, type index_DateInput as DateInput, index_DeleteResponse as DeleteResponse, type index_EnvConfig as EnvConfig, index_FilterWithPagination as FilterWithPagination, type index_ForgotPasswordRequest as ForgotPasswordRequest, index_GetResponse as GetResponse, index_HTTP_STATUS as HTTP_STATUS, index_HTTP_STATUS_MESSAGES as HTTP_STATUS_MESSAGES, type index_HttpStatusCode as HttpStatusCode, type index_ID as ID, type index_JwtPayload as JwtPayload, type index_KeyValuePair as KeyValuePair, index_ListResponse as ListResponse, type index_LoginCredentials as LoginCredentials, type index_Nullable as Nullable, type index_ObjectId as ObjectId, type index_Optional as Optional, type index_OrganizationEntity as OrganizationEntity, index_PAGINATION as PAGINATION, index_PaginatedResponse as PaginatedResponse, index_PaginationMeta as PaginationMeta, index_PaginationParams as PaginationParams, index_ROLES as ROLES, type index_RegisterCredentials as RegisterCredentials, type index_RequiredFields as RequiredFields, type index_ResetPasswordRequest as ResetPasswordRequest, type index_RoleValue as RoleValue, index_STATUS as STATUS, type index_SelectOption as SelectOption, type index_SoftDeleteEntity as SoftDeleteEntity, type index_SortConfig as SortConfig, type index_SortOrder as SortOrder, type index_StatusValue as StatusValue, index_TOKEN_TYPES as TOKEN_TYPES, type index_Timestamps as Timestamps, type index_TokenType as TokenType, index_USER_STATUS as USER_STATUS, index_UpdateResponse as UpdateResponse, type index_UserRole as UserRole, type index_UserStatusValue as UserStatusValue, type index_UserWithRole as UserWithRole, index_VALIDATION_MESSAGES as VALIDATION_MESSAGES, index_VALIDATION_PATTERNS as VALIDATION_PATTERNS, index_VALIDATION_RULES as VALIDATION_RULES, index_addDays as addDays, index_addHours as addHours, index_addMinutes as addMinutes, index_addMonths as addMonths, index_addTime as addTime, index_addWeeks as addWeeks, index_addYears as addYears, index_combineDateAndTime as combineDateAndTime, _default as dateTime, index_daysSince as daysSince, index_daysUntil as daysUntil, index_differenceInDays as differenceInDays, index_differenceInHours as differenceInHours, index_differenceInMinutes as differenceInMinutes, index_differenceInMonths as differenceInMonths, index_differenceInSeconds as differenceInSeconds, index_differenceInWeeks as differenceInWeeks, index_differenceInYears as differenceInYears, index_doDateRangesOverlap as doDateRangesOverlap, index_eachDayOfInterval as eachDayOfInterval, index_eachMonthOfInterval as eachMonthOfInterval, index_eachWeekOfInterval as eachWeekOfInterval, index_endOfDay as endOfDay, index_endOfMonth as endOfMonth, index_endOfWeek as endOfWeek, index_endOfYear as endOfYear, index_format as format, index_formatDate as formatDate, index_formatDateInTimezone as formatDateInTimezone, index_formatDateRange as formatDateRange, index_formatDateTime as formatDateTime, index_formatDistance as formatDistance, index_formatDistanceToNow as formatDistanceToNow, index_formatDuration as formatDuration, index_formatInTimeZone as formatInTimeZone, index_formatRelative as formatRelative, index_formatRelativeTime as formatRelativeTime, index_formatSmartDate as formatSmartDate, index_fromTimezone as fromTimezone, index_fromZonedTime as fromZonedTime, index_getAge as getAge, index_getDate as getDate, index_getDateDifference as getDateDifference, index_getDay as getDay, index_getDayBoundaries as getDayBoundaries, index_getDaysInRange as getDaysInRange, index_getEnv as getEnv, index_getEnvOptional as getEnvOptional, index_getHours as getHours, index_getMinutes as getMinutes, index_getMonth as getMonth, index_getMonthBoundaries as getMonthBoundaries, index_getMonthsInRange as getMonthsInRange, index_getSeconds as getSeconds, index_getTimezoneDifference as getTimezoneDifference, index_getWeekBoundaries as getWeekBoundaries, index_getWeeksInRange as getWeeksInRange, index_getYear as getYear, index_getYearBoundaries as getYearBoundaries, index_intervalToDuration as intervalToDuration, index_isAfter as isAfter, index_isBefore as isBefore, index_isDateBetween as isDateBetween, index_isDev as isDev, index_isEqual as isEqual, index_isFuture as isFuture, index_isPast as isPast, index_isProd as isProd, index_isSameDay as isSameDay, index_isSameMonth as isSameMonth, index_isSameWeek as isSameWeek, index_isSameYear as isSameYear, index_isTest as isTest, index_isThisMonth as isThisMonth, index_isThisWeek as isThisWeek, index_isThisYear as isThisYear, index_isToday as isToday, index_isTomorrow as isTomorrow, index_isValid as isValid, index_isValidDate as isValidDate, index_isValidEmail as isValidEmail, index_isValidPassword as isValidPassword, index_isValidPhone as isValidPhone, index_isValidSlug as isValidSlug, index_isValidUrl as isValidUrl, index_isValidUsername as isValidUsername, index_isWeekday as isWeekday, index_isWeekend as isWeekend, index_isYesterday as isYesterday, index_nowInTimezone as nowInTimezone, index_parseDate as parseDate, index_parseISO as parseISO, index_setHours as setHours, index_setMinutes as setMinutes, index_setSeconds as setSeconds, index_setTime as setTime, index_startOfDay as startOfDay, index_startOfMonth as startOfMonth, index_startOfWeek as startOfWeek, index_startOfYear as startOfYear, index_subDays as subDays, index_subHours as subHours, index_subMinutes as subMinutes, index_subMonths as subMonths, index_subWeeks as subWeeks, index_subYears as subYears, index_subtractTime as subtractTime, index_toDateInputValue as toDateInputValue, index_toDateTimeInputValue as toDateTimeInputValue, index_toTimeInputValue as toTimeInputValue, index_toTimezone as toTimezone, index_toZonedTime as toZonedTime, index_validateEnv as validateEnv };
|
|
1372
|
+
export { index_ApiErrorResponse as ApiErrorResponse, index_ApiResponse as ApiResponse, index_ApiSuccessResponse as ApiSuccessResponse, type index_AuditableEntity as AuditableEntity, type index_AuthResponse as AuthResponse, type index_AuthTokens as AuthTokens, index_BREAKPOINTS as BREAKPOINTS, type index_BaseEntity as BaseEntity, index_BaseFilterParams as BaseFilterParams, type index_BaseUser as BaseUser, type index_Breakpoint as Breakpoint, index_CONTAINER_WIDTHS as CONTAINER_WIDTHS, type index_ChangePasswordRequest as ChangePasswordRequest, index_CreateResponse as CreateResponse, index_DATE_FORMAT as DATE_FORMAT, index_DATE_FORMATS as DATE_FORMATS, type index_DateFormat as DateFormat, type index_DateInput as DateInput, index_DeleteResponse as DeleteResponse, index_ENUMS as ENUMS, ENUMS as ENUMS_DEFAULT, type index_EnvConfig as EnvConfig, index_FILE_TYPE as FILE_TYPE, type index_FileType as FileType, index_FilterWithPagination as FilterWithPagination, type index_ForgotPasswordRequest as ForgotPasswordRequest, index_GENDER as GENDER, type index_Gender as Gender, index_GetResponse as GetResponse, index_HTTP_STATUS as HTTP_STATUS, index_HTTP_STATUS_MESSAGES as HTTP_STATUS_MESSAGES, type index_HttpStatusCode as HttpStatusCode, type index_ID as ID, index_INTERVAL as INTERVAL, type index_Interval as Interval, type index_JwtPayload as JwtPayload, type index_KeyValuePair as KeyValuePair, index_LOCALE as LOCALE, index_ListResponse as ListResponse, type index_Locale as Locale, type index_LoginCredentials as LoginCredentials, index_MEDIA_QUERIES as MEDIA_QUERIES, index_MEDIA_QUERIES_MAX as MEDIA_QUERIES_MAX, index_NOTIFICATION_TYPE as NOTIFICATION_TYPE, type index_NotificationType as NotificationType, type index_Nullable as Nullable, index_ORDER_STATUS as ORDER_STATUS, type index_ObjectId as ObjectId, type index_Optional as Optional, type index_OrderStatus as OrderStatus, type index_OrganizationEntity as OrganizationEntity, index_PAGINATION as PAGINATION, index_PAYMENT_STATUS as PAYMENT_STATUS, index_PERMISSION_LEVEL as PERMISSION_LEVEL, index_PRIORITY as PRIORITY, index_PaginatedResponse as PaginatedResponse, index_PaginationMeta as PaginationMeta, index_PaginationParams as PaginationParams, type index_PaymentStatus as PaymentStatus, type index_PermissionLevel as PermissionLevel, type index_Priority as Priority, index_ROLE as ROLE, index_ROLES as ROLES, type index_RegisterCredentials as RegisterCredentials, type index_RequiredFields as RequiredFields, type index_ResetPasswordRequest as ResetPasswordRequest, type index_Role as Role, type index_RoleValue as RoleValue, index_SORT as SORT, index_SORT_DIRECTION as SORT_DIRECTION, index_STATUS as STATUS, index_SUBSCRIPTION_STATUS as SUBSCRIPTION_STATUS, type index_SelectOption as SelectOption, type index_SoftDeleteEntity as SoftDeleteEntity, type index_Sort as Sort, type index_SortConfig as SortConfig, type index_SortDirection as SortDirection, type index_SortOrder as SortOrder, type index_StatusValue as StatusValue, type index_SubscriptionStatus as SubscriptionStatus, index_TASK_STATUS as TASK_STATUS, index_THEME as THEME, index_TOKEN_TYPES as TOKEN_TYPES, type index_TaskStatus as TaskStatus, type index_Theme as Theme, type index_Timestamps as Timestamps, type index_TokenType as TokenType, index_USER_STATUS as USER_STATUS, index_UpdateResponse as UpdateResponse, type index_UserRole as UserRole, type index_UserStatusValue as UserStatusValue, type index_UserWithRole as UserWithRole, index_VALIDATION_MESSAGES as VALIDATION_MESSAGES, index_VALIDATION_PATTERNS as VALIDATION_PATTERNS, index_VALIDATION_RULES as VALIDATION_RULES, index_VISIBILITY as VISIBILITY, type index_Visibility as Visibility, index_addDays as addDays, index_addHours as addHours, index_addMinutes as addMinutes, index_addMonths as addMonths, index_addTime as addTime, index_addWeeks as addWeeks, index_addYears as addYears, index_combineDateAndTime as combineDateAndTime, _default as dateTime, index_daysSince as daysSince, index_daysUntil as daysUntil, index_differenceInDays as differenceInDays, index_differenceInHours as differenceInHours, index_differenceInMinutes as differenceInMinutes, index_differenceInMonths as differenceInMonths, index_differenceInSeconds as differenceInSeconds, index_differenceInWeeks as differenceInWeeks, index_differenceInYears as differenceInYears, index_doDateRangesOverlap as doDateRangesOverlap, index_eachDayOfInterval as eachDayOfInterval, index_eachMonthOfInterval as eachMonthOfInterval, index_eachWeekOfInterval as eachWeekOfInterval, index_endOfDay as endOfDay, index_endOfMonth as endOfMonth, index_endOfWeek as endOfWeek, index_endOfYear as endOfYear, index_format as format, index_formatDate as formatDate, index_formatDateInTimezone as formatDateInTimezone, index_formatDateRange as formatDateRange, index_formatDateTime as formatDateTime, index_formatDistance as formatDistance, index_formatDistanceToNow as formatDistanceToNow, index_formatDuration as formatDuration, index_formatInTimeZone as formatInTimeZone, index_formatRelative as formatRelative, index_formatRelativeTime as formatRelativeTime, index_formatSmartDate as formatSmartDate, index_fromTimezone as fromTimezone, index_fromZonedTime as fromZonedTime, index_getAge as getAge, index_getDate as getDate, index_getDateDifference as getDateDifference, index_getDay as getDay, index_getDayBoundaries as getDayBoundaries, index_getDaysInRange as getDaysInRange, index_getEnv as getEnv, index_getEnvOptional as getEnvOptional, index_getHours as getHours, index_getMinutes as getMinutes, index_getMonth as getMonth, index_getMonthBoundaries as getMonthBoundaries, index_getMonthsInRange as getMonthsInRange, index_getSeconds as getSeconds, index_getTimezoneDifference as getTimezoneDifference, index_getWeekBoundaries as getWeekBoundaries, index_getWeeksInRange as getWeeksInRange, index_getYear as getYear, index_getYearBoundaries as getYearBoundaries, index_intervalToDuration as intervalToDuration, index_isAfter as isAfter, index_isBefore as isBefore, index_isDateBetween as isDateBetween, index_isDev as isDev, index_isEqual as isEqual, index_isFuture as isFuture, index_isPast as isPast, index_isProd as isProd, index_isSameDay as isSameDay, index_isSameMonth as isSameMonth, index_isSameWeek as isSameWeek, index_isSameYear as isSameYear, index_isTest as isTest, index_isThisMonth as isThisMonth, index_isThisWeek as isThisWeek, index_isThisYear as isThisYear, index_isToday as isToday, index_isTomorrow as isTomorrow, index_isValid as isValid, index_isValidDate as isValidDate, index_isValidEmail as isValidEmail, index_isValidPassword as isValidPassword, index_isValidPhone as isValidPhone, index_isValidSlug as isValidSlug, index_isValidUrl as isValidUrl, index_isValidUsername as isValidUsername, index_isWeekday as isWeekday, index_isWeekend as isWeekend, index_isYesterday as isYesterday, index_nowInTimezone as nowInTimezone, index_parseDate as parseDate, index_parseISO as parseISO, index_setHours as setHours, index_setMinutes as setMinutes, index_setSeconds as setSeconds, index_setTime as setTime, index_startOfDay as startOfDay, index_startOfMonth as startOfMonth, index_startOfWeek as startOfWeek, index_startOfYear as startOfYear, index_subDays as subDays, index_subHours as subHours, index_subMinutes as subMinutes, index_subMonths as subMonths, index_subWeeks as subWeeks, index_subYears as subYears, index_subtractTime as subtractTime, index_toDateInputValue as toDateInputValue, index_toDateTimeInputValue as toDateTimeInputValue, index_toTimeInputValue as toTimeInputValue, index_toTimezone as toTimezone, index_toZonedTime as toZonedTime, index_validateEnv as validateEnv };
|
|
831
1373
|
}
|
|
832
1374
|
|
|
833
|
-
export {
|
|
1375
|
+
export { TASK_STATUS as $, type AuthTokens as A, type BaseUser as B, type ChangePasswordRequest as C, type Breakpoint as D, type EnvConfig as E, type ForgotPasswordRequest as F, type FileType as G, type NotificationType as H, type ID as I, type JwtPayload as J, type KeyValuePair as K, type LoginCredentials as L, type Theme as M, type Nullable as N, type OrganizationEntity as O, type PaymentStatus as P, type Locale as Q, type RegisterCredentials as R, type SoftDeleteEntity as S, type Timestamps as T, type UserWithRole as U, type Visibility as V, type DateFormat as W, type Interval as X, type Gender as Y, ORDER_STATUS as Z, PAYMENT_STATUS as _, type UserRole as a, toDateInputValue as a$, SUBSCRIPTION_STATUS as a0, SORT_DIRECTION as a1, SORT as a2, ROLE as a3, PERMISSION_LEVEL as a4, PRIORITY as a5, VISIBILITY as a6, BREAKPOINTS as a7, MEDIA_QUERIES as a8, MEDIA_QUERIES_MAX as a9, formatDate as aA, formatDateTime as aB, formatDateInTimezone as aC, formatRelativeTime as aD, formatSmartDate as aE, formatDateRange as aF, toTimezone as aG, fromTimezone as aH, nowInTimezone as aI, getTimezoneDifference as aJ, addTime as aK, subtractTime as aL, getDateDifference as aM, getDaysInRange as aN, getWeeksInRange as aO, getMonthsInRange as aP, getDayBoundaries as aQ, getWeekBoundaries as aR, getMonthBoundaries as aS, getYearBoundaries as aT, isDateBetween as aU, doDateRangesOverlap as aV, getAge as aW, isWeekend as aX, isWeekday as aY, daysUntil as aZ, daysSince as a_, CONTAINER_WIDTHS as aa, FILE_TYPE as ab, NOTIFICATION_TYPE as ac, THEME as ad, LOCALE as ae, DATE_FORMAT as af, INTERVAL as ag, GENDER as ah, ENUMS as ai, HTTP_STATUS as aj, type HttpStatusCode as ak, HTTP_STATUS_MESSAGES as al, STATUS as am, type StatusValue as an, USER_STATUS as ao, type UserStatusValue as ap, ROLES as aq, type RoleValue as ar, PAGINATION as as, TOKEN_TYPES as at, type TokenType as au, _default as av, type DateInput as aw, parseDate as ax, isValidDate as ay, DATE_FORMATS as az, type AuthResponse as b, toDateTimeInputValue as b0, toTimeInputValue as b1, setTime as b2, combineDateAndTime as b3, VALIDATION_PATTERNS as b4, isValidEmail as b5, isValidPassword as b6, isValidPhone as b7, isValidUrl as b8, isValidUsername as b9, isValidSlug as ba, VALIDATION_MESSAGES as bb, VALIDATION_RULES as bc, type ResetPasswordRequest as c, type BaseEntity as d, type AuditableEntity as e, type ObjectId as f, type Optional as g, type RequiredFields as h, index as i, type SelectOption as j, type SortOrder as k, type SortConfig as l, getEnv as m, getEnvOptional as n, isProd as o, isDev as p, isTest as q, type OrderStatus as r, type TaskStatus as s, type SubscriptionStatus as t, type SortDirection as u, validateEnv as v, type Sort as w, type Role as x, type PermissionLevel as y, type Priority as z };
|