@shakerquiz/utilities 4.0.35 → 4.0.36

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@shakerquiz/utilities",
4
- "version": "4.0.35",
4
+ "version": "4.0.36",
5
5
  "author": "yurkimus <yurkimus@gmail.com>",
6
6
  "license": "ISC",
7
7
  "repository": {
@@ -92,6 +92,7 @@ export const RouteCardinality = Object.freeze(
92
92
  'chatapp/registration': '1/1',
93
93
  'chatapp/registration/mailing': '1/1',
94
94
  'bitrix/registration': '1/1',
95
+ 'source': '1',
95
96
  }),
96
97
  )
97
98
 
@@ -187,6 +188,7 @@ export const RoutePathname = Object.freeze(
187
188
  'chatapp/registration': 'chatapp/registration/:registration',
188
189
  'chatapp/registration/mailing': 'chatapp/registration/:registration/mailing',
189
190
  'bitrix/registration': 'bitrix/registration/:registration',
191
+ 'source': 'source',
190
192
  }),
191
193
  )
192
194
 
@@ -446,6 +448,7 @@ export const RouteParameters = Object.freeze(
446
448
  'bitrix/registration': [
447
449
  ':registration',
448
450
  ],
451
+ 'source': [],
449
452
  }),
450
453
  )
451
454
 
@@ -541,6 +544,7 @@ export const PathnameRoute = Object.freeze(
541
544
  'chatapp/registration/:registration': 'chatapp/registration',
542
545
  'chatapp/registration/:registration/mailing': 'chatapp/registration/mailing',
543
546
  'bitrix/registration/:registration': 'bitrix/registration',
547
+ 'source': 'source',
544
548
  }),
545
549
  )
546
550
 
@@ -800,6 +804,7 @@ export const PathnameParameters = Object.freeze(
800
804
  'bitrix/registration/:registration': [
801
805
  ':registration',
802
806
  ],
807
+ 'source': [],
803
808
  }),
804
809
  )
805
810
 
@@ -912,6 +917,7 @@ export const RouteBreakdown = Object.freeze(
912
917
  'chatapp/registration': 'chatapp/registration',
913
918
  'chatapp/registration/mailing': 'chatapp/registration/mailing',
914
919
  'bitrix/registration': 'bitrix/registration',
920
+ 'source': 'source',
915
921
  }),
916
922
  )
917
923
 
@@ -1007,6 +1013,7 @@ export const RouteService = Object.freeze(
1007
1013
  'chatapp/registration': 'Chatapp',
1008
1014
  'chatapp/registration/mailing': 'Chatapp',
1009
1015
  'bitrix/registration': 'Bitrix',
1016
+ 'source': 'Updates',
1010
1017
  }),
1011
1018
  )
1012
1019
 
@@ -1128,5 +1135,8 @@ export const ServiceRoutes = Object.freeze(
1128
1135
  'Bitrix': [
1129
1136
  'bitrix/registration',
1130
1137
  ],
1138
+ 'Updates': [
1139
+ 'source',
1140
+ ],
1131
1141
  }),
1132
1142
  )
@@ -39,6 +39,7 @@ export const Keys = Object.freeze(
39
39
  'chatapp',
40
40
  'bitrix',
41
41
  'webhook',
42
+ 'source',
42
43
  ]),
43
44
  )
44
45
 
@@ -90,6 +90,7 @@ export const Routes = Object.freeze(
90
90
  'chatapp/registration',
91
91
  'chatapp/registration/mailing',
92
92
  'bitrix/registration',
93
+ 'source',
93
94
  ]),
94
95
  )
95
96
 
@@ -355,6 +355,15 @@ export const Segments = Object.freeze(
355
355
  pattern: undefined,
356
356
  }),
357
357
  ),
358
+ Object.freeze(
359
+ /** @type {const} */ ({
360
+ key: Key['source'],
361
+ cardinality: '1',
362
+ relation: undefined,
363
+ service: Service['Updates'],
364
+ pattern: undefined,
365
+ }),
366
+ ),
358
367
  ]),
359
368
  )
360
369