@shakerquiz/utilities 4.0.71 → 4.0.73
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 +1 -1
- package/source/entities/registration-cancellation.js +7 -0
- package/source/entities/registration-confirmation.js +10 -0
- package/source/entities/registration-promotion.js +8 -0
- package/source/entities/registration-reservation.js +8 -0
- package/source/entities/segment.js +55 -33
package/package.json
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export const RegistrationConfirmation = /** @type {const} */ ({
|
|
2
|
+
'Expired': 'Expired',
|
|
3
|
+
'Prohibited': 'Prohibited',
|
|
4
|
+
'Rejected': 'Rejected',
|
|
5
|
+
'Fulfilled': 'Fulfilled',
|
|
6
|
+
'Active': 'Active',
|
|
7
|
+
'Scheduled': 'Scheduled',
|
|
8
|
+
})
|
|
9
|
+
|
|
10
|
+
export const RegistrationConfirmations = Object.values(RegistrationConfirmation)
|
|
@@ -278,6 +278,39 @@ export const Segments = Object.freeze(
|
|
|
278
278
|
kind: 'Property',
|
|
279
279
|
}),
|
|
280
280
|
),
|
|
281
|
+
Object.freeze(
|
|
282
|
+
/** @type {const} */ ({
|
|
283
|
+
key: 'creation',
|
|
284
|
+
cardinality: '1',
|
|
285
|
+
singular: 'creation',
|
|
286
|
+
plural: 'creations',
|
|
287
|
+
service: null,
|
|
288
|
+
pattern: null,
|
|
289
|
+
kind: 'Operation',
|
|
290
|
+
}),
|
|
291
|
+
),
|
|
292
|
+
Object.freeze(
|
|
293
|
+
/** @type {const} */ ({
|
|
294
|
+
key: 'confirmation',
|
|
295
|
+
cardinality: '1',
|
|
296
|
+
singular: 'confirmation',
|
|
297
|
+
plural: 'confirmations',
|
|
298
|
+
service: null,
|
|
299
|
+
pattern: null,
|
|
300
|
+
kind: 'Operation',
|
|
301
|
+
}),
|
|
302
|
+
),
|
|
303
|
+
Object.freeze(
|
|
304
|
+
/** @type {const} */ ({
|
|
305
|
+
key: 'cancellation',
|
|
306
|
+
cardinality: '1',
|
|
307
|
+
singular: 'cancellation',
|
|
308
|
+
plural: 'cancellations',
|
|
309
|
+
service: null,
|
|
310
|
+
pattern: null,
|
|
311
|
+
kind: 'Operation',
|
|
312
|
+
}),
|
|
313
|
+
),
|
|
281
314
|
Object.freeze(
|
|
282
315
|
/** @type {const} */ ({
|
|
283
316
|
key: 'lineup',
|
|
@@ -300,6 +333,28 @@ export const Segments = Object.freeze(
|
|
|
300
333
|
kind: 'Property',
|
|
301
334
|
}),
|
|
302
335
|
),
|
|
336
|
+
Object.freeze(
|
|
337
|
+
/** @type {const} */ ({
|
|
338
|
+
key: 'promotion',
|
|
339
|
+
cardinality: '1',
|
|
340
|
+
singular: 'promotion',
|
|
341
|
+
plural: 'promotions',
|
|
342
|
+
service: null,
|
|
343
|
+
pattern: null,
|
|
344
|
+
kind: 'Operation',
|
|
345
|
+
}),
|
|
346
|
+
),
|
|
347
|
+
Object.freeze(
|
|
348
|
+
/** @type {const} */ ({
|
|
349
|
+
key: 'reservation',
|
|
350
|
+
cardinality: '1',
|
|
351
|
+
singular: 'reservation',
|
|
352
|
+
plural: 'reservations',
|
|
353
|
+
service: null,
|
|
354
|
+
pattern: null,
|
|
355
|
+
kind: 'Operation',
|
|
356
|
+
}),
|
|
357
|
+
),
|
|
303
358
|
Object.freeze(
|
|
304
359
|
/** @type {const} */ ({
|
|
305
360
|
key: 'telegram',
|
|
@@ -432,39 +487,6 @@ export const Segments = Object.freeze(
|
|
|
432
487
|
kind: 'Property',
|
|
433
488
|
}),
|
|
434
489
|
),
|
|
435
|
-
Object.freeze(
|
|
436
|
-
/** @type {const} */ ({
|
|
437
|
-
key: 'creation',
|
|
438
|
-
cardinality: '1',
|
|
439
|
-
singular: 'creation',
|
|
440
|
-
plural: 'creations',
|
|
441
|
-
service: null,
|
|
442
|
-
pattern: null,
|
|
443
|
-
kind: 'Operation',
|
|
444
|
-
}),
|
|
445
|
-
),
|
|
446
|
-
Object.freeze(
|
|
447
|
-
/** @type {const} */ ({
|
|
448
|
-
key: 'confirmation',
|
|
449
|
-
cardinality: '1',
|
|
450
|
-
singular: 'confirmation',
|
|
451
|
-
plural: 'confirmations',
|
|
452
|
-
service: null,
|
|
453
|
-
pattern: null,
|
|
454
|
-
kind: 'Operation',
|
|
455
|
-
}),
|
|
456
|
-
),
|
|
457
|
-
Object.freeze(
|
|
458
|
-
/** @type {const} */ ({
|
|
459
|
-
key: 'cancellation',
|
|
460
|
-
cardinality: '1',
|
|
461
|
-
singular: 'cancellation',
|
|
462
|
-
plural: 'cancellations',
|
|
463
|
-
service: null,
|
|
464
|
-
pattern: null,
|
|
465
|
-
kind: 'Operation',
|
|
466
|
-
}),
|
|
467
|
-
),
|
|
468
490
|
]),
|
|
469
491
|
)
|
|
470
492
|
|