@rippling/rippling-sdk 0.2.0-alpha.24 → 0.2.0-alpha.25
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/client.d.mts +2 -2
- package/client.d.mts.map +1 -1
- package/client.d.ts +2 -2
- package/client.d.ts.map +1 -1
- package/client.js.map +1 -1
- package/client.mjs.map +1 -1
- package/functions.d.mts +3 -0
- package/functions.d.mts.map +1 -1
- package/functions.d.ts +3 -0
- package/functions.d.ts.map +1 -1
- package/functions.js.map +1 -1
- package/functions.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/index.d.mts +1 -1
- package/resources/index.d.mts.map +1 -1
- package/resources/index.d.ts +1 -1
- package/resources/index.d.ts.map +1 -1
- package/resources/index.js.map +1 -1
- package/resources/index.mjs.map +1 -1
- package/resources/shiftassignments.d.mts +12 -6
- package/resources/shiftassignments.d.mts.map +1 -1
- package/resources/shiftassignments.d.ts +12 -6
- package/resources/shiftassignments.d.ts.map +1 -1
- package/resources/supergroups/exclusion-members.d.mts +2 -0
- package/resources/supergroups/exclusion-members.d.mts.map +1 -1
- package/resources/supergroups/exclusion-members.d.ts +2 -0
- package/resources/supergroups/exclusion-members.d.ts.map +1 -1
- package/resources/supergroups/exclusion-members.js +1 -0
- package/resources/supergroups/exclusion-members.js.map +1 -1
- package/resources/supergroups/exclusion-members.mjs +1 -0
- package/resources/supergroups/exclusion-members.mjs.map +1 -1
- package/resources/supergroups/inclusion-members.d.mts +2 -0
- package/resources/supergroups/inclusion-members.d.mts.map +1 -1
- package/resources/supergroups/inclusion-members.d.ts +2 -0
- package/resources/supergroups/inclusion-members.d.ts.map +1 -1
- package/resources/supergroups/inclusion-members.js +1 -0
- package/resources/supergroups/inclusion-members.js.map +1 -1
- package/resources/supergroups/inclusion-members.mjs +1 -0
- package/resources/supergroups/inclusion-members.mjs.map +1 -1
- package/resources/supergroups/members.d.mts +13 -0
- package/resources/supergroups/members.d.mts.map +1 -1
- package/resources/supergroups/members.d.ts +13 -0
- package/resources/supergroups/members.d.ts.map +1 -1
- package/resources/supergroups/members.js +1 -0
- package/resources/supergroups/members.js.map +1 -1
- package/resources/supergroups/members.mjs +1 -0
- package/resources/supergroups/members.mjs.map +1 -1
- package/resources/unassignedshifts.d.mts +348 -17
- package/resources/unassignedshifts.d.mts.map +1 -1
- package/resources/unassignedshifts.d.ts +348 -17
- package/resources/unassignedshifts.d.ts.map +1 -1
- package/resources/unassignedshifts.js +6 -0
- package/resources/unassignedshifts.js.map +1 -1
- package/resources/unassignedshifts.mjs +6 -0
- package/resources/unassignedshifts.mjs.map +1 -1
- package/src/client.ts +4 -0
- package/src/functions.ts +6 -0
- package/src/resources/index.ts +2 -0
- package/src/resources/shiftassignments.ts +12 -6
- package/src/resources/supergroups/exclusion-members.ts +3 -0
- package/src/resources/supergroups/inclusion-members.ts +3 -0
- package/src/resources/supergroups/members.ts +16 -0
- package/src/resources/unassignedshifts.ts +422 -19
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -15,6 +15,10 @@ export declare class Unassignedshifts extends APIResource {
|
|
|
15
15
|
* - Sortable fields: `id`, `created_at`, `updated_at`
|
|
16
16
|
*/
|
|
17
17
|
list(query?: UnassignedshiftListParams | null | undefined, options?: RequestOptions): PagePromise<UnassignedshiftListResponsesPageCursorURL, UnassignedshiftListResponse>;
|
|
18
|
+
/**
|
|
19
|
+
* Create a new unassigned shift
|
|
20
|
+
*/
|
|
21
|
+
create(body: UnassignedshiftCreateParams, options?: RequestOptions): APIPromise<UnassignedshiftCreateResponse>;
|
|
18
22
|
/**
|
|
19
23
|
* Retrieve a specific unassigned shift
|
|
20
24
|
*/
|
|
@@ -26,18 +30,10 @@ export interface UnassignedshiftListResponse {
|
|
|
26
30
|
* Identifier field
|
|
27
31
|
*/
|
|
28
32
|
id: string;
|
|
29
|
-
/**
|
|
30
|
-
* The number of assigned shifts
|
|
31
|
-
*/
|
|
32
|
-
assigned_count: number;
|
|
33
33
|
/**
|
|
34
34
|
* Record creation date
|
|
35
35
|
*/
|
|
36
36
|
created_at: string;
|
|
37
|
-
/**
|
|
38
|
-
* Whether the shift is open or empty
|
|
39
|
-
*/
|
|
40
|
-
is_open: boolean;
|
|
41
37
|
/**
|
|
42
38
|
* Whether the shift is published
|
|
43
39
|
*/
|
|
@@ -58,10 +54,19 @@ export interface UnassignedshiftListResponse {
|
|
|
58
54
|
* Record update date
|
|
59
55
|
*/
|
|
60
56
|
updated_at: string;
|
|
57
|
+
/**
|
|
58
|
+
* The number of assigned shifts
|
|
59
|
+
*/
|
|
60
|
+
assigned_count?: number;
|
|
61
61
|
/**
|
|
62
62
|
* The IDs of the assigned shifts that are part of this unassigned shift
|
|
63
63
|
*/
|
|
64
64
|
assigned_shift_ids?: Array<string>;
|
|
65
|
+
/**
|
|
66
|
+
* Configuration for an open shift. If present, this is an open shift (workers can
|
|
67
|
+
* sign up). If absent/None, this is an empty shift (placeholder).
|
|
68
|
+
*/
|
|
69
|
+
open_shift_config?: unknown;
|
|
65
70
|
/**
|
|
66
71
|
* The published version of the shift
|
|
67
72
|
*/
|
|
@@ -269,6 +274,255 @@ export declare namespace UnassignedshiftListResponse {
|
|
|
269
274
|
}
|
|
270
275
|
}
|
|
271
276
|
}
|
|
277
|
+
export interface UnassignedshiftCreateResponse {
|
|
278
|
+
/**
|
|
279
|
+
* Identifier field
|
|
280
|
+
*/
|
|
281
|
+
id: string;
|
|
282
|
+
/**
|
|
283
|
+
* Record creation date
|
|
284
|
+
*/
|
|
285
|
+
created_at: string;
|
|
286
|
+
/**
|
|
287
|
+
* Whether the shift is published
|
|
288
|
+
*/
|
|
289
|
+
is_published: boolean;
|
|
290
|
+
/**
|
|
291
|
+
* The ID of the schedule
|
|
292
|
+
*/
|
|
293
|
+
schedule_id: string;
|
|
294
|
+
/**
|
|
295
|
+
* The data of the shift
|
|
296
|
+
*/
|
|
297
|
+
shift_data: UnassignedshiftCreateResponse.ShiftData;
|
|
298
|
+
/**
|
|
299
|
+
* The target count of the shift
|
|
300
|
+
*/
|
|
301
|
+
target_count: number;
|
|
302
|
+
/**
|
|
303
|
+
* Record update date
|
|
304
|
+
*/
|
|
305
|
+
updated_at: string;
|
|
306
|
+
/**
|
|
307
|
+
* The number of assigned shifts
|
|
308
|
+
*/
|
|
309
|
+
assigned_count?: number;
|
|
310
|
+
/**
|
|
311
|
+
* The IDs of the assigned shifts that are part of this unassigned shift
|
|
312
|
+
*/
|
|
313
|
+
assigned_shift_ids?: Array<string>;
|
|
314
|
+
/**
|
|
315
|
+
* Configuration for an open shift. If present, this is an open shift (workers can
|
|
316
|
+
* sign up). If absent/None, this is an empty shift (placeholder).
|
|
317
|
+
*/
|
|
318
|
+
open_shift_config?: unknown;
|
|
319
|
+
/**
|
|
320
|
+
* The published version of the shift
|
|
321
|
+
*/
|
|
322
|
+
published_version?: UnassignedshiftCreateResponse.PublishedVersion;
|
|
323
|
+
/**
|
|
324
|
+
* The schedule
|
|
325
|
+
*
|
|
326
|
+
* Expandable field
|
|
327
|
+
*/
|
|
328
|
+
schedule?: UnassignedshiftCreateResponse.Schedule;
|
|
329
|
+
}
|
|
330
|
+
export declare namespace UnassignedshiftCreateResponse {
|
|
331
|
+
/**
|
|
332
|
+
* The data of the shift
|
|
333
|
+
*/
|
|
334
|
+
interface ShiftData {
|
|
335
|
+
/**
|
|
336
|
+
* The end time of the shift
|
|
337
|
+
*/
|
|
338
|
+
end_time: string;
|
|
339
|
+
/**
|
|
340
|
+
* The start time of the shift
|
|
341
|
+
*/
|
|
342
|
+
start_time: string;
|
|
343
|
+
/**
|
|
344
|
+
* The breaks of the shift
|
|
345
|
+
*/
|
|
346
|
+
shift_breaks?: Array<ShiftData.ShiftBreak>;
|
|
347
|
+
/**
|
|
348
|
+
* The segments of the shift
|
|
349
|
+
*/
|
|
350
|
+
shift_segments?: Array<ShiftData.ShiftSegment>;
|
|
351
|
+
}
|
|
352
|
+
namespace ShiftData {
|
|
353
|
+
interface ShiftBreak {
|
|
354
|
+
/**
|
|
355
|
+
* The duration of the shift break in minutes (input only for creation)
|
|
356
|
+
*/
|
|
357
|
+
duration_minutes: number;
|
|
358
|
+
/**
|
|
359
|
+
* The start time of the shift break
|
|
360
|
+
*/
|
|
361
|
+
start_time: string;
|
|
362
|
+
/**
|
|
363
|
+
* The type of the shift break
|
|
364
|
+
*/
|
|
365
|
+
type: 'MEAL' | 'REST';
|
|
366
|
+
/**
|
|
367
|
+
* The end time of the shift break (calculated from start_time + duration_minutes)
|
|
368
|
+
*/
|
|
369
|
+
end_time?: string;
|
|
370
|
+
}
|
|
371
|
+
interface ShiftSegment {
|
|
372
|
+
/**
|
|
373
|
+
* The duration of the shift segment in minutes (input only for creation)
|
|
374
|
+
*/
|
|
375
|
+
duration_minutes: number;
|
|
376
|
+
/**
|
|
377
|
+
* The start time of the shift segment
|
|
378
|
+
*/
|
|
379
|
+
start_time: string;
|
|
380
|
+
/**
|
|
381
|
+
* The end time of the shift segment (calculated from start_time +
|
|
382
|
+
* duration_minutes)
|
|
383
|
+
*/
|
|
384
|
+
end_time?: string;
|
|
385
|
+
/**
|
|
386
|
+
* The IDs of the job codes associated with the shift segment
|
|
387
|
+
*/
|
|
388
|
+
job_codes_id?: Array<string>;
|
|
389
|
+
}
|
|
390
|
+
}
|
|
391
|
+
/**
|
|
392
|
+
* The published version of the shift
|
|
393
|
+
*/
|
|
394
|
+
interface PublishedVersion {
|
|
395
|
+
/**
|
|
396
|
+
* The end time of the shift
|
|
397
|
+
*/
|
|
398
|
+
end_time: string;
|
|
399
|
+
/**
|
|
400
|
+
* The start time of the shift
|
|
401
|
+
*/
|
|
402
|
+
start_time: string;
|
|
403
|
+
/**
|
|
404
|
+
* The breaks of the shift
|
|
405
|
+
*/
|
|
406
|
+
shift_breaks?: Array<PublishedVersion.ShiftBreak>;
|
|
407
|
+
/**
|
|
408
|
+
* The segments of the shift
|
|
409
|
+
*/
|
|
410
|
+
shift_segments?: Array<PublishedVersion.ShiftSegment>;
|
|
411
|
+
}
|
|
412
|
+
namespace PublishedVersion {
|
|
413
|
+
interface ShiftBreak {
|
|
414
|
+
/**
|
|
415
|
+
* The duration of the shift break in minutes (input only for creation)
|
|
416
|
+
*/
|
|
417
|
+
duration_minutes: number;
|
|
418
|
+
/**
|
|
419
|
+
* The start time of the shift break
|
|
420
|
+
*/
|
|
421
|
+
start_time: string;
|
|
422
|
+
/**
|
|
423
|
+
* The type of the shift break
|
|
424
|
+
*/
|
|
425
|
+
type: 'MEAL' | 'REST';
|
|
426
|
+
/**
|
|
427
|
+
* The end time of the shift break (calculated from start_time + duration_minutes)
|
|
428
|
+
*/
|
|
429
|
+
end_time?: string;
|
|
430
|
+
}
|
|
431
|
+
interface ShiftSegment {
|
|
432
|
+
/**
|
|
433
|
+
* The duration of the shift segment in minutes (input only for creation)
|
|
434
|
+
*/
|
|
435
|
+
duration_minutes: number;
|
|
436
|
+
/**
|
|
437
|
+
* The start time of the shift segment
|
|
438
|
+
*/
|
|
439
|
+
start_time: string;
|
|
440
|
+
/**
|
|
441
|
+
* The end time of the shift segment (calculated from start_time +
|
|
442
|
+
* duration_minutes)
|
|
443
|
+
*/
|
|
444
|
+
end_time?: string;
|
|
445
|
+
/**
|
|
446
|
+
* The IDs of the job codes associated with the shift segment
|
|
447
|
+
*/
|
|
448
|
+
job_codes_id?: Array<string>;
|
|
449
|
+
}
|
|
450
|
+
}
|
|
451
|
+
/**
|
|
452
|
+
* The schedule
|
|
453
|
+
*
|
|
454
|
+
* Expandable field
|
|
455
|
+
*/
|
|
456
|
+
interface Schedule {
|
|
457
|
+
/**
|
|
458
|
+
* Identifier field
|
|
459
|
+
*/
|
|
460
|
+
id: string;
|
|
461
|
+
/**
|
|
462
|
+
* Record creation date
|
|
463
|
+
*/
|
|
464
|
+
created_at: string;
|
|
465
|
+
/**
|
|
466
|
+
* Record update date
|
|
467
|
+
*/
|
|
468
|
+
updated_at: string;
|
|
469
|
+
/**
|
|
470
|
+
* Whether the requesting role can edit the schedule.
|
|
471
|
+
*/
|
|
472
|
+
can_edit?: boolean;
|
|
473
|
+
/**
|
|
474
|
+
* The managers of the schedule.
|
|
475
|
+
*
|
|
476
|
+
* Expandable field
|
|
477
|
+
*/
|
|
478
|
+
managers?: Array<WorkersAPI.Worker>;
|
|
479
|
+
/**
|
|
480
|
+
* The IDs of the managers of the schedule.
|
|
481
|
+
*/
|
|
482
|
+
managers_id?: Array<string>;
|
|
483
|
+
/**
|
|
484
|
+
* The members of the schedule.
|
|
485
|
+
*
|
|
486
|
+
* Expandable field
|
|
487
|
+
*/
|
|
488
|
+
members?: Array<WorkersAPI.Worker>;
|
|
489
|
+
/**
|
|
490
|
+
* The IDs of the members of the schedule.
|
|
491
|
+
*/
|
|
492
|
+
members_id?: Array<string>;
|
|
493
|
+
/**
|
|
494
|
+
* The name of the schedule.
|
|
495
|
+
*/
|
|
496
|
+
name?: string;
|
|
497
|
+
/**
|
|
498
|
+
* The observers of the schedule.
|
|
499
|
+
*
|
|
500
|
+
* Expandable field
|
|
501
|
+
*/
|
|
502
|
+
observers?: Array<WorkersAPI.Worker>;
|
|
503
|
+
/**
|
|
504
|
+
* The IDs of the observers of the schedule.
|
|
505
|
+
*/
|
|
506
|
+
observers_id?: Array<string>;
|
|
507
|
+
/**
|
|
508
|
+
* The settings of the schedule.
|
|
509
|
+
*/
|
|
510
|
+
settings?: Schedule.Settings;
|
|
511
|
+
}
|
|
512
|
+
namespace Schedule {
|
|
513
|
+
/**
|
|
514
|
+
* The settings of the schedule.
|
|
515
|
+
*/
|
|
516
|
+
interface Settings {
|
|
517
|
+
/**
|
|
518
|
+
* The IANA timezone identifier for the schedule (e.g., 'America/New_York').
|
|
519
|
+
* Accepted values are defined by the tz database, listed here:
|
|
520
|
+
* https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
|
|
521
|
+
*/
|
|
522
|
+
timezone?: string;
|
|
523
|
+
}
|
|
524
|
+
}
|
|
525
|
+
}
|
|
272
526
|
/**
|
|
273
527
|
* Meta information for the response.
|
|
274
528
|
*/
|
|
@@ -277,18 +531,10 @@ export interface UnassignedshiftRetrieveResponse extends BusinessPartnersAPI.Met
|
|
|
277
531
|
* Identifier field
|
|
278
532
|
*/
|
|
279
533
|
id: string;
|
|
280
|
-
/**
|
|
281
|
-
* The number of assigned shifts
|
|
282
|
-
*/
|
|
283
|
-
assigned_count: number;
|
|
284
534
|
/**
|
|
285
535
|
* Record creation date
|
|
286
536
|
*/
|
|
287
537
|
created_at: string;
|
|
288
|
-
/**
|
|
289
|
-
* Whether the shift is open or empty
|
|
290
|
-
*/
|
|
291
|
-
is_open: boolean;
|
|
292
538
|
/**
|
|
293
539
|
* Whether the shift is published
|
|
294
540
|
*/
|
|
@@ -309,10 +555,19 @@ export interface UnassignedshiftRetrieveResponse extends BusinessPartnersAPI.Met
|
|
|
309
555
|
* Record update date
|
|
310
556
|
*/
|
|
311
557
|
updated_at: string;
|
|
558
|
+
/**
|
|
559
|
+
* The number of assigned shifts
|
|
560
|
+
*/
|
|
561
|
+
assigned_count?: number;
|
|
312
562
|
/**
|
|
313
563
|
* The IDs of the assigned shifts that are part of this unassigned shift
|
|
314
564
|
*/
|
|
315
565
|
assigned_shift_ids?: Array<string>;
|
|
566
|
+
/**
|
|
567
|
+
* Configuration for an open shift. If present, this is an open shift (workers can
|
|
568
|
+
* sign up). If absent/None, this is an empty shift (placeholder).
|
|
569
|
+
*/
|
|
570
|
+
open_shift_config?: unknown;
|
|
316
571
|
/**
|
|
317
572
|
* The published version of the shift
|
|
318
573
|
*/
|
|
@@ -526,10 +781,86 @@ export interface UnassignedshiftListParams {
|
|
|
526
781
|
filter?: string;
|
|
527
782
|
order_by?: string;
|
|
528
783
|
}
|
|
784
|
+
export interface UnassignedshiftCreateParams {
|
|
785
|
+
/**
|
|
786
|
+
* Whether the shift is published
|
|
787
|
+
*/
|
|
788
|
+
is_published: boolean;
|
|
789
|
+
/**
|
|
790
|
+
* The ID of the schedule
|
|
791
|
+
*/
|
|
792
|
+
schedule_id: string;
|
|
793
|
+
/**
|
|
794
|
+
* The data of the shift
|
|
795
|
+
*/
|
|
796
|
+
shift_data: UnassignedshiftCreateParams.ShiftData;
|
|
797
|
+
/**
|
|
798
|
+
* The target count of the shift
|
|
799
|
+
*/
|
|
800
|
+
target_count: number;
|
|
801
|
+
/**
|
|
802
|
+
* Configuration for an open shift. If present, this is an open shift (workers can
|
|
803
|
+
* sign up). If absent/None, this is an empty shift (placeholder).
|
|
804
|
+
*/
|
|
805
|
+
open_shift_config?: unknown;
|
|
806
|
+
}
|
|
807
|
+
export declare namespace UnassignedshiftCreateParams {
|
|
808
|
+
/**
|
|
809
|
+
* The data of the shift
|
|
810
|
+
*/
|
|
811
|
+
interface ShiftData {
|
|
812
|
+
/**
|
|
813
|
+
* The end time of the shift
|
|
814
|
+
*/
|
|
815
|
+
end_time: string;
|
|
816
|
+
/**
|
|
817
|
+
* The start time of the shift
|
|
818
|
+
*/
|
|
819
|
+
start_time: string;
|
|
820
|
+
/**
|
|
821
|
+
* The breaks of the shift
|
|
822
|
+
*/
|
|
823
|
+
shift_breaks?: Array<ShiftData.ShiftBreak>;
|
|
824
|
+
/**
|
|
825
|
+
* The segments of the shift
|
|
826
|
+
*/
|
|
827
|
+
shift_segments?: Array<ShiftData.ShiftSegment>;
|
|
828
|
+
}
|
|
829
|
+
namespace ShiftData {
|
|
830
|
+
interface ShiftBreak {
|
|
831
|
+
/**
|
|
832
|
+
* The duration of the shift break in minutes (input only for creation)
|
|
833
|
+
*/
|
|
834
|
+
duration_minutes: number;
|
|
835
|
+
/**
|
|
836
|
+
* The start time of the shift break
|
|
837
|
+
*/
|
|
838
|
+
start_time: string;
|
|
839
|
+
/**
|
|
840
|
+
* The type of the shift break
|
|
841
|
+
*/
|
|
842
|
+
type: 'MEAL' | 'REST';
|
|
843
|
+
}
|
|
844
|
+
interface ShiftSegment {
|
|
845
|
+
/**
|
|
846
|
+
* The duration of the shift segment in minutes (input only for creation)
|
|
847
|
+
*/
|
|
848
|
+
duration_minutes: number;
|
|
849
|
+
/**
|
|
850
|
+
* The start time of the shift segment
|
|
851
|
+
*/
|
|
852
|
+
start_time: string;
|
|
853
|
+
/**
|
|
854
|
+
* The IDs of the job codes associated with the shift segment
|
|
855
|
+
*/
|
|
856
|
+
job_codes_id?: Array<string>;
|
|
857
|
+
}
|
|
858
|
+
}
|
|
859
|
+
}
|
|
529
860
|
export interface UnassignedshiftRetrieveParams {
|
|
530
861
|
expand?: string;
|
|
531
862
|
}
|
|
532
863
|
export declare namespace Unassignedshifts {
|
|
533
|
-
export { type UnassignedshiftListResponse as UnassignedshiftListResponse, type UnassignedshiftRetrieveResponse as UnassignedshiftRetrieveResponse, type UnassignedshiftListResponsesPageCursorURL as UnassignedshiftListResponsesPageCursorURL, type UnassignedshiftListParams as UnassignedshiftListParams, type UnassignedshiftRetrieveParams as UnassignedshiftRetrieveParams, };
|
|
864
|
+
export { type UnassignedshiftListResponse as UnassignedshiftListResponse, type UnassignedshiftCreateResponse as UnassignedshiftCreateResponse, type UnassignedshiftRetrieveResponse as UnassignedshiftRetrieveResponse, type UnassignedshiftListResponsesPageCursorURL as UnassignedshiftListResponsesPageCursorURL, type UnassignedshiftListParams as UnassignedshiftListParams, type UnassignedshiftCreateParams as UnassignedshiftCreateParams, type UnassignedshiftRetrieveParams as UnassignedshiftRetrieveParams, };
|
|
534
865
|
}
|
|
535
866
|
//# sourceMappingURL=unassignedshifts.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"unassignedshifts.d.mts","sourceRoot":"","sources":["../src/resources/unassignedshifts.ts"],"names":[],"mappings":"OAEO,EAAE,WAAW,EAAE;OACf,KAAK,mBAAmB;OACxB,KAAK,UAAU;OACf,EAAE,UAAU,EAAE;OACd,EAAE,aAAa,EAAE,WAAW,EAAE;OAC9B,EAAE,cAAc,EAAE;AAGzB,qBAAa,gBAAiB,SAAQ,WAAW;IAC/C;;;;;;;;OAQG;IACH,IAAI,CACF,KAAK,GAAE,yBAAyB,GAAG,IAAI,GAAG,SAAc,EACxD,OAAO,CAAC,EAAE,cAAc,GACvB,WAAW,CAAC,yCAAyC,EAAE,2BAA2B,CAAC;IAOtF;;OAEG;IACH,QAAQ,CACN,EAAE,EAAE,MAAM,EACV,KAAK,GAAE,6BAA6B,GAAG,IAAI,GAAG,SAAc,EAC5D,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAAC,+BAA+B,CAAC;CAG/C;AAED,MAAM,MAAM,yCAAyC,GAAG,aAAa,CAAC,2BAA2B,CAAC,CAAC;AAEnG,MAAM,WAAW,2BAA2B;IAC1C;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IAEX;;OAEG;IACH,cAAc,EAAE,MAAM,CAAC;IAEvB;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,OAAO,EAAE,OAAO,CAAC;IAEjB;;OAEG;IACH,YAAY,EAAE,OAAO,CAAC;IAEtB;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;IAEpB;;OAEG;IACH,UAAU,EAAE,2BAA2B,CAAC,SAAS,CAAC;IAElD;;OAEG;IACH,YAAY,EAAE,MAAM,CAAC;IAErB;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,kBAAkB,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IAEnC;;OAEG;IACH,iBAAiB,CAAC,EAAE,2BAA2B,CAAC,gBAAgB,CAAC;IAEjE;;;;OAIG;IACH,QAAQ,CAAC,EAAE,2BAA2B,CAAC,QAAQ,CAAC;CACjD;AAED,yBAAiB,2BAA2B,CAAC;IAC3C;;OAEG;IACH,UAAiB,SAAS;QACxB;;WAEG;QACH,QAAQ,EAAE,MAAM,CAAC;QAEjB;;WAEG;QACH,UAAU,EAAE,MAAM,CAAC;QAEnB;;WAEG;QACH,YAAY,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,UAAU,CAAC,CAAC;QAE3C;;WAEG;QACH,cAAc,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,YAAY,CAAC,CAAC;KAChD;IAED,UAAiB,SAAS,CAAC;QACzB,UAAiB,UAAU;YACzB;;eAEG;YACH,gBAAgB,EAAE,MAAM,CAAC;YAEzB;;eAEG;YACH,UAAU,EAAE,MAAM,CAAC;YAEnB;;eAEG;YACH,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC;YAEtB;;eAEG;YACH,QAAQ,CAAC,EAAE,MAAM,CAAC;SACnB;QAED,UAAiB,YAAY;YAC3B;;eAEG;YACH,gBAAgB,EAAE,MAAM,CAAC;YAEzB;;eAEG;YACH,UAAU,EAAE,MAAM,CAAC;YAEnB;;;eAGG;YACH,QAAQ,CAAC,EAAE,MAAM,CAAC;YAElB;;eAEG;YACH,YAAY,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;SAC9B;KACF;IAED;;OAEG;IACH,UAAiB,gBAAgB;QAC/B;;WAEG;QACH,QAAQ,EAAE,MAAM,CAAC;QAEjB;;WAEG;QACH,UAAU,EAAE,MAAM,CAAC;QAEnB;;WAEG;QACH,YAAY,CAAC,EAAE,KAAK,CAAC,gBAAgB,CAAC,UAAU,CAAC,CAAC;QAElD;;WAEG;QACH,cAAc,CAAC,EAAE,KAAK,CAAC,gBAAgB,CAAC,YAAY,CAAC,CAAC;KACvD;IAED,UAAiB,gBAAgB,CAAC;QAChC,UAAiB,UAAU;YACzB;;eAEG;YACH,gBAAgB,EAAE,MAAM,CAAC;YAEzB;;eAEG;YACH,UAAU,EAAE,MAAM,CAAC;YAEnB;;eAEG;YACH,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC;YAEtB;;eAEG;YACH,QAAQ,CAAC,EAAE,MAAM,CAAC;SACnB;QAED,UAAiB,YAAY;YAC3B;;eAEG;YACH,gBAAgB,EAAE,MAAM,CAAC;YAEzB;;eAEG;YACH,UAAU,EAAE,MAAM,CAAC;YAEnB;;;eAGG;YACH,QAAQ,CAAC,EAAE,MAAM,CAAC;YAElB;;eAEG;YACH,YAAY,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;SAC9B;KACF;IAED;;;;OAIG;IACH,UAAiB,QAAQ;QACvB;;WAEG;QACH,EAAE,EAAE,MAAM,CAAC;QAEX;;WAEG;QACH,UAAU,EAAE,MAAM,CAAC;QAEnB;;WAEG;QACH,UAAU,EAAE,MAAM,CAAC;QAEnB;;WAEG;QACH,QAAQ,CAAC,EAAE,OAAO,CAAC;QAEnB;;;;WAIG;QACH,QAAQ,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC,MAAM,CAAC,CAAC;QAEpC;;WAEG;QACH,WAAW,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;QAE5B;;;;WAIG;QACH,OAAO,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC,MAAM,CAAC,CAAC;QAEnC;;WAEG;QACH,UAAU,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;QAE3B;;WAEG;QACH,IAAI,CAAC,EAAE,MAAM,CAAC;QAEd;;;;WAIG;QACH,SAAS,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC,MAAM,CAAC,CAAC;QAErC;;WAEG;QACH,YAAY,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;QAE7B;;WAEG;QACH,QAAQ,CAAC,EAAE,QAAQ,CAAC,QAAQ,CAAC;KAC9B;IAED,UAAiB,QAAQ,CAAC;QACxB;;WAEG;QACH,UAAiB,QAAQ;YACvB;;;;eAIG;YACH,QAAQ,CAAC,EAAE,MAAM,CAAC;SACnB;KACF;CACF;AAED;;GAEG;AACH,MAAM,WAAW,+BAAgC,SAAQ,mBAAmB,CAAC,IAAI;IAC/E;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IAEX;;OAEG;IACH,cAAc,EAAE,MAAM,CAAC;IAEvB;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,OAAO,EAAE,OAAO,CAAC;IAEjB;;OAEG;IACH,YAAY,EAAE,OAAO,CAAC;IAEtB;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;IAEpB;;OAEG;IACH,UAAU,EAAE,+BAA+B,CAAC,SAAS,CAAC;IAEtD;;OAEG;IACH,YAAY,EAAE,MAAM,CAAC;IAErB;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,kBAAkB,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IAEnC;;OAEG;IACH,iBAAiB,CAAC,EAAE,+BAA+B,CAAC,gBAAgB,CAAC;IAErE;;;;OAIG;IACH,QAAQ,CAAC,EAAE,+BAA+B,CAAC,QAAQ,CAAC;CACrD;AAED,yBAAiB,+BAA+B,CAAC;IAC/C;;OAEG;IACH,UAAiB,SAAS;QACxB;;WAEG;QACH,QAAQ,EAAE,MAAM,CAAC;QAEjB;;WAEG;QACH,UAAU,EAAE,MAAM,CAAC;QAEnB;;WAEG;QACH,YAAY,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,UAAU,CAAC,CAAC;QAE3C;;WAEG;QACH,cAAc,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,YAAY,CAAC,CAAC;KAChD;IAED,UAAiB,SAAS,CAAC;QACzB,UAAiB,UAAU;YACzB;;eAEG;YACH,gBAAgB,EAAE,MAAM,CAAC;YAEzB;;eAEG;YACH,UAAU,EAAE,MAAM,CAAC;YAEnB;;eAEG;YACH,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC;YAEtB;;eAEG;YACH,QAAQ,CAAC,EAAE,MAAM,CAAC;SACnB;QAED,UAAiB,YAAY;YAC3B;;eAEG;YACH,gBAAgB,EAAE,MAAM,CAAC;YAEzB;;eAEG;YACH,UAAU,EAAE,MAAM,CAAC;YAEnB;;;eAGG;YACH,QAAQ,CAAC,EAAE,MAAM,CAAC;YAElB;;eAEG;YACH,YAAY,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;SAC9B;KACF;IAED;;OAEG;IACH,UAAiB,gBAAgB;QAC/B;;WAEG;QACH,QAAQ,EAAE,MAAM,CAAC;QAEjB;;WAEG;QACH,UAAU,EAAE,MAAM,CAAC;QAEnB;;WAEG;QACH,YAAY,CAAC,EAAE,KAAK,CAAC,gBAAgB,CAAC,UAAU,CAAC,CAAC;QAElD;;WAEG;QACH,cAAc,CAAC,EAAE,KAAK,CAAC,gBAAgB,CAAC,YAAY,CAAC,CAAC;KACvD;IAED,UAAiB,gBAAgB,CAAC;QAChC,UAAiB,UAAU;YACzB;;eAEG;YACH,gBAAgB,EAAE,MAAM,CAAC;YAEzB;;eAEG;YACH,UAAU,EAAE,MAAM,CAAC;YAEnB;;eAEG;YACH,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC;YAEtB;;eAEG;YACH,QAAQ,CAAC,EAAE,MAAM,CAAC;SACnB;QAED,UAAiB,YAAY;YAC3B;;eAEG;YACH,gBAAgB,EAAE,MAAM,CAAC;YAEzB;;eAEG;YACH,UAAU,EAAE,MAAM,CAAC;YAEnB;;;eAGG;YACH,QAAQ,CAAC,EAAE,MAAM,CAAC;YAElB;;eAEG;YACH,YAAY,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;SAC9B;KACF;IAED;;;;OAIG;IACH,UAAiB,QAAQ;QACvB;;WAEG;QACH,EAAE,EAAE,MAAM,CAAC;QAEX;;WAEG;QACH,UAAU,EAAE,MAAM,CAAC;QAEnB;;WAEG;QACH,UAAU,EAAE,MAAM,CAAC;QAEnB;;WAEG;QACH,QAAQ,CAAC,EAAE,OAAO,CAAC;QAEnB;;;;WAIG;QACH,QAAQ,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC,MAAM,CAAC,CAAC;QAEpC;;WAEG;QACH,WAAW,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;QAE5B;;;;WAIG;QACH,OAAO,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC,MAAM,CAAC,CAAC;QAEnC;;WAEG;QACH,UAAU,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;QAE3B;;WAEG;QACH,IAAI,CAAC,EAAE,MAAM,CAAC;QAEd;;;;WAIG;QACH,SAAS,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC,MAAM,CAAC,CAAC;QAErC;;WAEG;QACH,YAAY,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;QAE7B;;WAEG;QACH,QAAQ,CAAC,EAAE,QAAQ,CAAC,QAAQ,CAAC;KAC9B;IAED,UAAiB,QAAQ,CAAC;QACxB;;WAEG;QACH,UAAiB,QAAQ;YACvB;;;;eAIG;YACH,QAAQ,CAAC,EAAE,MAAM,CAAC;SACnB;KACF;CACF;AAED,MAAM,WAAW,yBAAyB;IACxC,MAAM,CAAC,EAAE,MAAM,CAAC;IAEhB,MAAM,CAAC,EAAE,MAAM,CAAC;IAEhB,MAAM,CAAC,EAAE,MAAM,CAAC;IAEhB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,MAAM,WAAW,6BAA6B;IAC5C,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,CAAC,OAAO,WAAW,gBAAgB,CAAC;IACxC,OAAO,EACL,KAAK,2BAA2B,IAAI,2BAA2B,EAC/D,KAAK,+BAA+B,IAAI,+BAA+B,EACvE,KAAK,yCAAyC,IAAI,yCAAyC,EAC3F,KAAK,yBAAyB,IAAI,yBAAyB,EAC3D,KAAK,6BAA6B,IAAI,6BAA6B,GACpE,CAAC;CACH"}
|
|
1
|
+
{"version":3,"file":"unassignedshifts.d.mts","sourceRoot":"","sources":["../src/resources/unassignedshifts.ts"],"names":[],"mappings":"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"}
|