@bimetal/calendar-rules 0.34.0 → 0.36.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/LICENSE +57 -129
- package/README.md +17 -7
- package/dist/.tsbuildinfo +1 -1
- package/dist/calendar-rules.d.ts +42 -2
- package/dist/calendar-rules.d.ts.map +1 -1
- package/dist/calendar-rules.js +103 -47
- package/dist/calendar-rules.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +5 -1
- package/dist/index.js.map +1 -1
- package/dist/store-integration.d.ts +2 -0
- package/dist/store-integration.d.ts.map +1 -1
- package/dist/store-integration.js +34 -4
- package/dist/store-integration.js.map +1 -1
- package/dist/types.d.ts +1 -0
- package/dist/types.d.ts.map +1 -1
- package/dist/utils.js +2 -2
- package/dist/utils.js.map +1 -1
- package/package.json +7 -7
package/LICENSE
CHANGED
|
@@ -1,129 +1,57 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
the
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
Personal use for research, experiment, and testing for
|
|
59
|
-
the benefit of public knowledge, personal study, private
|
|
60
|
-
entertainment, hobby projects, amateur pursuits, or religious
|
|
61
|
-
observance, without any anticipated commercial application,
|
|
62
|
-
is use for a permitted purpose.
|
|
63
|
-
|
|
64
|
-
## Noncommercial Organizations
|
|
65
|
-
|
|
66
|
-
Use by any charitable organization, educational institution,
|
|
67
|
-
public research organization, public safety or health
|
|
68
|
-
organization, environmental protection organization,
|
|
69
|
-
or government institution is use for a permitted purpose
|
|
70
|
-
regardless of the source of funding or obligations resulting
|
|
71
|
-
from the funding.
|
|
72
|
-
|
|
73
|
-
## Fair Use
|
|
74
|
-
|
|
75
|
-
You may have "fair use" rights for the software under the
|
|
76
|
-
law. These terms do not limit them.
|
|
77
|
-
|
|
78
|
-
## No Other Rights
|
|
79
|
-
|
|
80
|
-
These terms do not allow you to sublicense or transfer any of
|
|
81
|
-
your licenses to anyone else, or prevent the licensor from
|
|
82
|
-
granting licenses to anyone else. These terms do not imply
|
|
83
|
-
any other licenses.
|
|
84
|
-
|
|
85
|
-
## Patent Defense
|
|
86
|
-
|
|
87
|
-
If you make any written claim that the software infringes or
|
|
88
|
-
contributes to infringement of any patent, your patent license
|
|
89
|
-
for the software granted under these terms ends immediately. If
|
|
90
|
-
your company makes such a claim, your patent license ends
|
|
91
|
-
immediately for work on behalf of your company.
|
|
92
|
-
|
|
93
|
-
## Violations
|
|
94
|
-
|
|
95
|
-
The first time you are notified in writing that you have
|
|
96
|
-
violated any of these terms, or any agreement made under them,
|
|
97
|
-
you have 32 calendar days to come into compliance. If you come
|
|
98
|
-
into compliance, your licenses revive and continue as if you had
|
|
99
|
-
never violated.
|
|
100
|
-
|
|
101
|
-
## No Liability
|
|
102
|
-
|
|
103
|
-
***As far as the law allows, the software comes as is, without
|
|
104
|
-
any warranty or condition, and the licensor will not be liable
|
|
105
|
-
to you for any damages arising out of these terms or the use
|
|
106
|
-
or nature of the software, under any kind of legal claim.***
|
|
107
|
-
|
|
108
|
-
## Definitions
|
|
109
|
-
|
|
110
|
-
The **licensor** is the individual or entity offering these
|
|
111
|
-
terms, and the **software** is the software the licensor makes
|
|
112
|
-
available under these terms.
|
|
113
|
-
|
|
114
|
-
**You** refers to the individual or entity agreeing to these
|
|
115
|
-
terms.
|
|
116
|
-
|
|
117
|
-
**Your company** is any legal entity, sole proprietorship,
|
|
118
|
-
or other kind of organization that you work for, plus all
|
|
119
|
-
organizations that have control over, are under the control of,
|
|
120
|
-
or are under common control with that organization. **Control**
|
|
121
|
-
means ownership of substantially all the assets of an entity,
|
|
122
|
-
or the power to direct its management and policies by vote,
|
|
123
|
-
contract, or otherwise. Control can be direct or indirect.
|
|
124
|
-
|
|
125
|
-
**Your licenses** are all the licenses granted to you for the
|
|
126
|
-
software under these terms.
|
|
127
|
-
|
|
128
|
-
**Use** means anything you do with the software requiring one
|
|
129
|
-
of your licenses.
|
|
1
|
+
Copyright 2026 Andreas Biederbeck
|
|
2
|
+
|
|
3
|
+
Apache License
|
|
4
|
+
|
|
5
|
+
Version 2.0, January 2004
|
|
6
|
+
|
|
7
|
+
http://www.apache.org/licenses/
|
|
8
|
+
|
|
9
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
10
|
+
|
|
11
|
+
1. Definitions.
|
|
12
|
+
|
|
13
|
+
"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
|
|
14
|
+
|
|
15
|
+
"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
|
|
16
|
+
|
|
17
|
+
"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
|
|
18
|
+
|
|
19
|
+
"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
|
|
20
|
+
|
|
21
|
+
"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
|
|
22
|
+
|
|
23
|
+
"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
|
|
24
|
+
|
|
25
|
+
"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
|
|
26
|
+
|
|
27
|
+
"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
|
|
28
|
+
|
|
29
|
+
"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
|
|
30
|
+
|
|
31
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
|
|
32
|
+
|
|
33
|
+
2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
|
|
34
|
+
|
|
35
|
+
3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
|
|
36
|
+
|
|
37
|
+
4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
|
|
38
|
+
|
|
39
|
+
You must give any other recipients of the Work or Derivative Works a copy of this License; and
|
|
40
|
+
|
|
41
|
+
You must cause any modified files to carry prominent notices stating that You changed the files; and
|
|
42
|
+
|
|
43
|
+
You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
|
|
44
|
+
|
|
45
|
+
If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
|
|
46
|
+
|
|
47
|
+
5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
|
|
48
|
+
|
|
49
|
+
6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
|
|
50
|
+
|
|
51
|
+
7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
|
|
52
|
+
|
|
53
|
+
8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
|
|
54
|
+
|
|
55
|
+
9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
|
|
56
|
+
|
|
57
|
+
END OF TERMS AND CONDITIONS
|
package/README.md
CHANGED
|
@@ -10,8 +10,8 @@ npm install @bimetal/calendar-rules
|
|
|
10
10
|
|
|
11
11
|
## Built-in Rules
|
|
12
12
|
|
|
13
|
-
- **`noOverlap
|
|
14
|
-
- **`warnOnOverlap
|
|
13
|
+
- **`noOverlap`** — a `CalendarRule` value; rejects overlapping events
|
|
14
|
+
- **`warnOnOverlap`** — a `CalendarRule` value; same check, but warning instead of error
|
|
15
15
|
- **`workingHoursOnly`** — rejects events outside `config.workingHours`
|
|
16
16
|
- **`minDuration(minutes)`**, **`maxDuration(minutes)`** — duration guards
|
|
17
17
|
- **`minGranularityDuration`** — derives min duration from `config.granularity`
|
|
@@ -36,7 +36,7 @@ npm install @bimetal/calendar-rules
|
|
|
36
36
|
|
|
37
37
|
## Example
|
|
38
38
|
|
|
39
|
-
```typescript
|
|
39
|
+
```typescript check
|
|
40
40
|
import { createCalendarStore, createEvent } from '@bimetal/calendar-data';
|
|
41
41
|
import {
|
|
42
42
|
createRuleEngine,
|
|
@@ -44,13 +44,23 @@ import {
|
|
|
44
44
|
workingHoursOnly,
|
|
45
45
|
withRules,
|
|
46
46
|
} from '@bimetal/calendar-rules';
|
|
47
|
-
import { defaultConfig } from '@bimetal/core';
|
|
47
|
+
import { defaultConfig } from '@bimetal/calendar-core';
|
|
48
|
+
import { createDateTime, createTimeRange, Month } from '@bimetal/temporal';
|
|
48
49
|
|
|
49
50
|
const store = createCalendarStore();
|
|
50
|
-
const engine = createRuleEngine([noOverlap
|
|
51
|
+
const engine = createRuleEngine([noOverlap, workingHoursOnly]);
|
|
51
52
|
const guarded = withRules(store, engine, defaultConfig);
|
|
52
53
|
|
|
53
|
-
await guarded.dispatch(createEvent(
|
|
54
|
+
await guarded.dispatch(createEvent({
|
|
55
|
+
id: 'e1',
|
|
56
|
+
title: 'Standup',
|
|
57
|
+
allDay: false,
|
|
58
|
+
metadata: {},
|
|
59
|
+
timeRange: createTimeRange(
|
|
60
|
+
createDateTime(2026, Month.June, 17, 9, 0, 'UTC'),
|
|
61
|
+
createDateTime(2026, Month.June, 17, 10, 0, 'UTC'),
|
|
62
|
+
),
|
|
63
|
+
})); // throws RuleViolationError on conflict
|
|
54
64
|
```
|
|
55
65
|
|
|
56
66
|
## Note on Domain Filtering
|
|
@@ -63,4 +73,4 @@ This package contains the calendar-specific portion of the (removed) `@bimetal/r
|
|
|
63
73
|
|
|
64
74
|
## License
|
|
65
75
|
|
|
66
|
-
|
|
76
|
+
Apache License 2.0
|
package/dist/.tsbuildinfo
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"fileNames":["../../../../node_modules/typescript/lib/lib.es5.d.ts","../../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../../node_modules/typescript/lib/lib.es2023.d.ts","../../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../../node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../../node_modules/typescript/lib/lib.esnext.float16.d.ts","../../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../engine/core/dist/types.d.ts","../../../engine/core/dist/errors.d.ts","../../../engine/core/dist/constants.d.ts","../../../engine/core/dist/datetime.d.ts","../../../engine/core/dist/date-strings.d.ts","../../../engine/core/dist/time-range.d.ts","../../../engine/core/dist/duration.d.ts","../../../engine/core/dist/granularity.d.ts","../../../engine/core/dist/format.d.ts","../../../engine/core/dist/index.d.ts","../../calendar-core/dist/types.d.ts","../../calendar-core/dist/grid.d.ts","../../calendar-core/dist/visible-range.d.ts","../../calendar-core/dist/format.d.ts","../../calendar-core/dist/segmentation.d.ts","../../calendar-core/dist/layout.d.ts","../../calendar-core/dist/axis.d.ts","../../calendar-core/dist/domains.d.ts","../../calendar-core/dist/interactions.d.ts","../../calendar-core/dist/recurrence.d.ts","../../calendar-core/dist/recurrence-instance.d.ts","../../calendar-core/dist/config.d.ts","../../calendar-core/dist/index.d.ts","../../../engine/event-sourcing/dist/types.d.ts","../../../engine/event-sourcing/dist/wrap-intent.d.ts","../../../engine/event-sourcing/dist/create-domain-store.d.ts","../../../engine/event-sourcing/dist/aggregate-helpers.d.ts","../../../engine/event-sourcing/dist/errors.d.ts","../../../engine/event-sourcing/dist/id.d.ts","../../../engine/event-sourcing/dist/validation.d.ts","../../../engine/event-sourcing/dist/diagnostics.d.ts","../../../engine/event-sourcing/dist/in-memory-store.d.ts","../../../engine/event-sourcing/dist/validate-envelopes.d.ts","../../../engine/event-sourcing/dist/event-bus.d.ts","../../../engine/event-sourcing/dist/topic.d.ts","../../../engine/event-sourcing/dist/broker-bridge.d.ts","../../../engine/event-sourcing/dist/in-memory-snapshot-store.d.ts","../../../engine/event-sourcing/dist/index.d.ts","../../calendar-data/dist/types.d.ts","../../calendar-data/dist/in-memory-snapshot-store.d.ts","../../calendar-data/dist/commands.d.ts","../../calendar-data/dist/aggregate.d.ts","../../calendar-data/dist/projection.d.ts","../../calendar-data/dist/store.d.ts","../../calendar-data/dist/index.d.ts","../../../engine/rule-engine/dist/types.d.ts","../../../engine/rule-engine/dist/engine.d.ts","../../../engine/rule-engine/dist/index.d.ts","../src/types.ts","../src/utils.ts","../src/calendar-rules.ts","../src/store-integration.ts","../src/index.ts","../../../../node_modules/@types/alpinejs/index.d.ts","../../../../node_modules/@types/node/compatibility/iterators.d.ts","../../../../node_modules/@types/node/globals.typedarray.d.ts","../../../../node_modules/@types/node/buffer.buffer.d.ts","../../../../node_modules/@types/node/globals.d.ts","../../../../node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../../node_modules/@types/node/web-globals/blob.d.ts","../../../../node_modules/@types/node/web-globals/console.d.ts","../../../../node_modules/@types/node/web-globals/crypto.d.ts","../../../../node_modules/@types/node/web-globals/domexception.d.ts","../../../../node_modules/@types/node/web-globals/encoding.d.ts","../../../../node_modules/@types/node/web-globals/events.d.ts","../../../../node_modules/undici-types/utility.d.ts","../../../../node_modules/undici-types/header.d.ts","../../../../node_modules/undici-types/readable.d.ts","../../../../node_modules/undici-types/fetch.d.ts","../../../../node_modules/undici-types/formdata.d.ts","../../../../node_modules/undici-types/connector.d.ts","../../../../node_modules/undici-types/client-stats.d.ts","../../../../node_modules/undici-types/client.d.ts","../../../../node_modules/undici-types/errors.d.ts","../../../../node_modules/undici-types/dispatcher.d.ts","../../../../node_modules/undici-types/global-dispatcher.d.ts","../../../../node_modules/undici-types/global-origin.d.ts","../../../../node_modules/undici-types/pool-stats.d.ts","../../../../node_modules/undici-types/pool.d.ts","../../../../node_modules/undici-types/handlers.d.ts","../../../../node_modules/undici-types/balanced-pool.d.ts","../../../../node_modules/undici-types/round-robin-pool.d.ts","../../../../node_modules/undici-types/h2c-client.d.ts","../../../../node_modules/undici-types/agent.d.ts","../../../../node_modules/undici-types/mock-interceptor.d.ts","../../../../node_modules/undici-types/mock-call-history.d.ts","../../../../node_modules/undici-types/mock-agent.d.ts","../../../../node_modules/undici-types/mock-client.d.ts","../../../../node_modules/undici-types/mock-pool.d.ts","../../../../node_modules/undici-types/snapshot-agent.d.ts","../../../../node_modules/undici-types/mock-errors.d.ts","../../../../node_modules/undici-types/proxy-agent.d.ts","../../../../node_modules/undici-types/socks5-proxy-agent.d.ts","../../../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../../../node_modules/undici-types/retry-handler.d.ts","../../../../node_modules/undici-types/retry-agent.d.ts","../../../../node_modules/undici-types/api.d.ts","../../../../node_modules/undici-types/cache-interceptor.d.ts","../../../../node_modules/undici-types/interceptors.d.ts","../../../../node_modules/undici-types/util.d.ts","../../../../node_modules/undici-types/cookies.d.ts","../../../../node_modules/undici-types/patch.d.ts","../../../../node_modules/undici-types/websocket.d.ts","../../../../node_modules/undici-types/eventsource.d.ts","../../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../../node_modules/undici-types/content-type.d.ts","../../../../node_modules/undici-types/cache.d.ts","../../../../node_modules/undici-types/index.d.ts","../../../../node_modules/@types/node/web-globals/fetch.d.ts","../../../../node_modules/@types/node/web-globals/importmeta.d.ts","../../../../node_modules/@types/node/web-globals/messaging.d.ts","../../../../node_modules/@types/node/web-globals/navigator.d.ts","../../../../node_modules/@types/node/web-globals/performance.d.ts","../../../../node_modules/@types/node/web-globals/storage.d.ts","../../../../node_modules/@types/node/web-globals/streams.d.ts","../../../../node_modules/@types/node/web-globals/timers.d.ts","../../../../node_modules/@types/node/web-globals/url.d.ts","../../../../node_modules/@types/node/assert.d.ts","../../../../node_modules/@types/node/assert/strict.d.ts","../../../../node_modules/@types/node/async_hooks.d.ts","../../../../node_modules/@types/node/buffer.d.ts","../../../../node_modules/@types/node/child_process.d.ts","../../../../node_modules/@types/node/cluster.d.ts","../../../../node_modules/@types/node/console.d.ts","../../../../node_modules/@types/node/constants.d.ts","../../../../node_modules/@types/node/crypto.d.ts","../../../../node_modules/@types/node/dgram.d.ts","../../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../../node_modules/@types/node/dns.d.ts","../../../../node_modules/@types/node/dns/promises.d.ts","../../../../node_modules/@types/node/domain.d.ts","../../../../node_modules/@types/node/events.d.ts","../../../../node_modules/@types/node/fs.d.ts","../../../../node_modules/@types/node/fs/promises.d.ts","../../../../node_modules/@types/node/http.d.ts","../../../../node_modules/@types/node/http2.d.ts","../../../../node_modules/@types/node/https.d.ts","../../../../node_modules/@types/node/inspector.d.ts","../../../../node_modules/@types/node/inspector.generated.d.ts","../../../../node_modules/@types/node/inspector/promises.d.ts","../../../../node_modules/@types/node/module.d.ts","../../../../node_modules/@types/node/net.d.ts","../../../../node_modules/buffer/index.d.ts","../../../../node_modules/@types/node/os.d.ts","../../../../node_modules/@types/node/path.d.ts","../../../../node_modules/@types/node/path/posix.d.ts","../../../../node_modules/@types/node/path/win32.d.ts","../../../../node_modules/@types/node/perf_hooks.d.ts","../../../../node_modules/@types/node/process.d.ts","../../../../node_modules/@types/node/punycode.d.ts","../../../../node_modules/@types/node/querystring.d.ts","../../../../node_modules/@types/node/quic.d.ts","../../../../node_modules/@types/node/readline.d.ts","../../../../node_modules/@types/node/readline/promises.d.ts","../../../../node_modules/@types/node/repl.d.ts","../../../../node_modules/@types/node/sea.d.ts","../../../../node_modules/@types/node/sqlite.d.ts","../../../../node_modules/@types/node/stream.d.ts","../../../../node_modules/@types/node/stream/consumers.d.ts","../../../../node_modules/@types/node/stream/promises.d.ts","../../../../node_modules/@types/node/stream/web.d.ts","../../../../node_modules/@types/node/string_decoder.d.ts","../../../../node_modules/@types/node/test.d.ts","../../../../node_modules/@types/node/test/reporters.d.ts","../../../../node_modules/@types/node/timers.d.ts","../../../../node_modules/@types/node/timers/promises.d.ts","../../../../node_modules/@types/node/tls.d.ts","../../../../node_modules/@types/node/trace_events.d.ts","../../../../node_modules/@types/node/tty.d.ts","../../../../node_modules/@types/node/url.d.ts","../../../../node_modules/@types/node/util.d.ts","../../../../node_modules/@types/node/util/types.d.ts","../../../../node_modules/@types/node/v8.d.ts","../../../../node_modules/@types/node/vm.d.ts","../../../../node_modules/@types/node/wasi.d.ts","../../../../node_modules/@types/node/worker_threads.d.ts","../../../../node_modules/@types/node/zlib.d.ts","../../../../node_modules/@types/node/index.d.ts","../../../../node_modules/@types/amqplib/properties.d.ts","../../../../node_modules/@types/amqplib/index.d.ts","../../../../node_modules/@types/aria-query/index.d.ts","../../../../node_modules/@babel/types/lib/index.d.ts","../../../../node_modules/@types/babel__generator/index.d.ts","../../../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../../../node_modules/@types/babel__template/index.d.ts","../../../../node_modules/@types/babel__traverse/index.d.ts","../../../../node_modules/@types/babel__core/index.d.ts","../../../../node_modules/@types/better-sqlite3/index.d.ts","../../../../node_modules/@types/connect/index.d.ts","../../../../node_modules/@types/body-parser/index.d.ts","../../../../node_modules/@types/deep-eql/index.d.ts","../../../../node_modules/assertion-error/index.d.ts","../../../../node_modules/@types/chai/index.d.ts","../../../../node_modules/@types/ms/index.d.ts","../../../../node_modules/@types/debug/index.d.ts","../../../../node_modules/@types/estree/index.d.ts","../../../../node_modules/@types/estree-jsx/index.d.ts","../../../../node_modules/@types/send/index.d.ts","../../../../node_modules/@types/qs/index.d.ts","../../../../node_modules/@types/range-parser/index.d.ts","../../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../../node_modules/@types/http-errors/index.d.ts","../../../../node_modules/@types/serve-static/index.d.ts","../../../../node_modules/@types/express/index.d.ts","../../../../node_modules/@types/google-protobuf/index.d.ts","../../../../node_modules/@types/unist/index.d.ts","../../../../node_modules/@types/hast/index.d.ts","../../../../node_modules/@types/mdast/index.d.ts","../../../../node_modules/@types/react/global.d.ts","../../../../node_modules/csstype/index.d.ts","../../../../node_modules/@types/react/index.d.ts","../../../../node_modules/@types/react-dom/index.d.ts","../../../../node_modules/@types/trusted-types/lib/index.d.ts","../../../../node_modules/@types/trusted-types/index.d.ts","../../../../node_modules/@types/whatwg-mimetype/index.d.ts","../../../../node_modules/@types/ws/index.d.ts"],"fileIdsList":[[120,184,192,196,199,201,202,203,216,245],[120,184,192,196,199,201,202,203,216],[120,184,192,195,196,199,201,202,203,216,241,242],[120,184,192,196,199,201,202,203,216,245,246,247,248,249],[120,184,192,196,199,201,202,203,216,245,247],[120,184,192,196,199,201,202,203,216,241],[120,184,192,196,198,199,201,202,203,216,241,252],[120,184,192,196,199,201,202,203,216,254,255],[120,184,192,196,198,199,201,202,203,216,241],[120,184,192,196,199,201,202,203,216,257],[120,184,192,196,199,201,202,203,216,259,260],[120,184,192,195,196,198,199,201,202,203,216,241,261,262,263],[120,184,192,196,199,201,202,203,216,253,264,266],[120,184,192,196,199,201,202,203,216,269],[120,181,182,184,192,196,199,201,202,203,216],[120,183,184,192,196,199,201,202,203,216],[184,192,196,199,201,202,203,216],[120,184,192,196,199,201,202,203,216,224],[120,184,185,190,192,195,196,199,201,202,203,205,216,221,233],[120,184,185,186,192,195,196,199,201,202,203,216],[120,184,187,192,196,199,201,202,203,216,234],[120,184,188,189,192,196,199,201,202,203,207,216],[120,184,189,192,196,199,201,202,203,216,221,230],[120,184,190,192,195,196,199,201,202,203,205,216],[120,183,184,191,192,196,199,201,202,203,216],[120,184,192,193,196,199,201,202,203,216],[120,184,192,194,195,196,199,201,202,203,216],[120,183,184,192,195,196,199,201,202,203,216],[120,184,192,195,196,197,199,201,202,203,216,221,233],[120,184,192,195,196,197,199,201,202,203,216,221,224],[120,171,184,192,195,196,198,199,201,202,203,205,216,221,233],[120,184,192,195,196,198,199,201,202,203,205,216,221,230,233],[120,184,192,196,198,199,200,201,202,203,216,221,230,233],[118,119,120,121,122,123,124,125,126,127,128,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240],[120,184,192,195,196,199,201,202,203,216],[120,184,192,196,199,201,203,216],[120,184,192,196,199,201,202,203,204,216,233],[120,184,192,195,196,199,201,202,203,205,216,221],[120,184,192,196,199,201,202,203,207,216],[120,184,192,196,199,201,202,203,208,216],[120,184,192,195,196,199,201,202,203,211,216],[120,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240],[120,184,192,196,199,201,202,203,213,216],[120,184,192,196,199,201,202,203,214,216],[120,184,189,192,196,199,201,202,203,205,216,224],[120,184,192,195,196,199,201,202,203,216,217],[120,184,192,196,199,201,202,203,216,218,234,237],[120,184,192,195,196,199,201,202,203,216,221,223,224],[120,184,192,196,199,201,202,203,216,222,224],[120,184,192,196,199,201,202,203,216,224,234],[120,184,192,196,199,201,202,203,216,225],[120,181,184,192,196,199,201,202,203,216,221,227,233],[120,184,192,196,199,201,202,203,216,221,226],[120,184,192,195,196,199,201,202,203,216,228,229],[120,184,192,196,199,201,202,203,216,228,229],[120,184,189,192,196,199,201,202,203,205,216,221,230],[120,184,192,196,199,201,202,203,216,231],[120,184,192,196,199,201,202,203,205,216,232],[120,184,192,196,198,199,201,202,203,214,216,233],[120,184,192,196,199,201,202,203,216,234,235],[120,184,189,192,196,199,201,202,203,216,235],[120,184,192,196,199,201,202,203,216,221,236],[120,184,192,196,199,201,202,203,204,216,237],[120,184,192,196,199,201,202,203,216,238],[120,184,187,192,196,199,201,202,203,216],[120,184,189,192,196,199,201,202,203,216],[120,184,192,196,199,201,202,203,216,234],[120,171,184,192,196,199,201,202,203,216],[120,184,192,196,199,201,202,203,216,233],[120,184,192,196,199,201,202,203,216,239],[120,184,192,196,199,201,202,203,211,216],[120,184,192,196,199,201,202,203,216,229],[120,171,184,192,195,196,197,199,201,202,203,211,216,221,224,233,236,237,239],[120,184,192,196,199,201,202,203,216,221,240],[120,184,192,196,199,201,202,203,216,274],[120,184,192,196,199,201,202,203,216,272,273],[120,184,192,196,199,201,202,203,216,221,241],[120,184,192,196,198,199,201,202,203,216,241,265],[120,184,192,196,199,201,202,203,216,276],[120,184,192,195,196,198,199,200,201,202,203,205,216,221,230,233,240,241],[120,135,138,141,142,184,192,196,199,201,202,203,216,233],[120,138,184,192,196,199,201,202,203,216,221,233],[120,138,142,184,192,196,199,201,202,203,216,233],[120,184,192,196,199,201,202,203,216,221],[120,132,184,192,196,199,201,202,203,216],[120,136,184,192,196,199,201,202,203,216],[120,134,135,138,184,192,196,199,201,202,203,216,233],[120,184,192,196,199,201,202,203,205,216,230],[120,132,184,192,196,199,201,202,203,216,241],[120,134,138,184,192,196,199,201,202,203,205,216,233],[120,129,130,131,133,137,184,192,195,196,199,201,202,203,216,221,233],[120,138,147,155,184,192,196,199,201,202,203,216],[120,130,136,184,192,196,199,201,202,203,216],[120,138,165,166,184,192,196,199,201,202,203,216],[120,130,133,138,184,192,196,199,201,202,203,216,224,233,241],[120,138,184,192,196,199,201,202,203,216],[120,134,138,184,192,196,199,201,202,203,216,233],[120,129,184,192,196,199,201,202,203,216],[120,132,133,134,136,137,138,139,140,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,166,167,168,169,170,184,192,196,199,201,202,203,216],[120,138,158,161,184,192,196,199,201,202,203,216],[120,138,147,148,149,184,192,196,199,201,202,203,216],[120,136,138,148,150,184,192,196,199,201,202,203,216],[120,137,184,192,196,199,201,202,203,216],[120,130,132,138,184,192,196,199,201,202,203,216],[120,138,142,148,150,184,192,196,199,201,202,203,216],[120,142,184,192,196,199,201,202,203,216],[120,136,138,141,184,192,196,199,201,202,203,216,233],[120,130,134,138,147,184,192,196,199,201,202,203,216],[120,138,158,184,192,196,199,201,202,203,216],[120,150,184,192,196,199,201,202,203,216],[120,130,134,138,142,184,192,196,199,201,202,203,216],[120,132,138,165,184,192,196,199,201,202,203,216,224,239,241],[73,120,184,192,196,199,201,202,203,216],[74,120,184,192,196,199,201,202,203,216],[73,74,120,184,192,196,199,201,202,203,216],[73,74,75,76,77,78,79,80,81,82,83,84,85,120,184,192,196,199,201,202,203,216],[101,102,120,184,192,196,199,201,202,203,216],[86,102,120,184,192,196,199,201,202,203,216],[102,120,184,192,196,199,201,202,203,216],[101,102,103,104,105,106,107,120,184,192,196,199,201,202,203,216],[86,101,120,184,192,196,199,201,202,203,216],[86,108,112,113,120,184,192,196,199,201,202,203,216],[111,112,113,114,115,120,184,192,196,199,201,202,203,216],[86,101,108,112,120,184,192,196,199,201,202,203,216],[86,108,111,120,184,192,196,199,201,202,203,216],[86,108,112,120,184,192,196,199,201,202,203,216],[64,120,184,192,196,199,201,202,203,216],[64,65,66,67,68,69,70,71,72,120,184,192,196,199,201,202,203,216],[87,120,184,192,196,199,201,202,203,216],[87,94,120,184,192,196,199,201,202,203,216],[87,88,89,90,91,92,93,94,95,96,97,98,99,100,120,184,192,196,199,201,202,203,216],[109,120,184,192,196,199,201,202,203,216],[109,110,120,184,192,196,199,201,202,203,216]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"4245fee526a7d1754529d19227ecbf3be066ff79ebb6a380d78e41648f2f224d","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},"cf26ef0bfa6ecdfb6c6d3779342d49efb0ee23ec2615450dd5734433e08bc27d","af1d08ad27c74802dfcdbf3d330244f6fc5788299845a006686538b66f9833e1","c8d50640061a6230888848ffd49c5779b1bcf402e9f4beda5d89ec4c2abcb539","8d872a45abc0b7f80777900fa6d56118d9164efa7b55d53b351d37fac640dfdc","43224ad98c16e34ccf3edb9488bd895e2fe5332cdf0daab02e18e47935d10312","0392da4726a758d03ee55a15dc4424a246e3b517f091fc0a60de3811fc89e11c","70552c3d0b0f65e587e0588102c594d67a15405d6e9dc12fe8aa66a03cb299fe","b68625e443c4c7693517ec8b10cb29adca73bc7f954f16da89bb3bd54861d605","777a8dba9366f037fb208685916c0f7cee5a39665ca1ee658fc4273b30b08d4c","b0a777fb18feff9622775d1c0a19b9d16fdb055f6ec2b50537fa501edb9dd153","a8296c2726b004bc065b73ecb0a30cf6357ce3730276008d1eba2dc3feb58e04","bc8b7ade013e7a6208eec8e18a8592b45153c27656ae7b1fba500989649b1d55","b43d0633418cc49efa06a603d9e3fb7991736b06bd99161693e9a29d2d61c6ef","fe95135b512c8e827cf706477780798084423c559cfab45a2230bcd54407b9ab","0182348257ff748730e45e40824a208176f809006eff6a556ea8aff98110b8fc","d42b2886fdec5ff0bd4f1a0d3bf639ee62ea3eedb7b2f2e5c956bf5b283837ff","220169607cc22543025b120af22620dc4931cdfb557833d4fa43edef193fed4e","e8655c2e9fe357896b8a430cfb186d1efb4f2f34317dd011cb9cfba8df6a2010","d0c816ca0aa6e43e5f00ac30e361192f256fa9861853b4215881c4d24565fc58","d49ffe24cf53b68b6263085367a4818d76a2b7ba4e8a6041b19849b8b27fb8d9","14f680cda04bcc590431bdb66c63ac9b0c3b082842b035509b603957fb9e9d15","b0bcee95a3a1097da02dd11f3fad00269d9d4d5258638bc2ba1776c4fdbc86a7","abf7c0d5f8d27288eeee6cab1630c1b341ebb367ddfa451deb0415ee790468fc","52491e0ca4af2e8632cba1e35866e92072666e7c67f88c1d868136b311eede2a","98e32045a66fc1149ec1376399c67f0695df6a7521cefa601cdf268824148dbf","a11ac470852f75e37f9ee1b19ebe4460910d73e09ba7f64ab680fb6536565031","71dbc598080174b9bffbf6296bd410a5e20359fab4fada0c9fc7e457d025b57c","eedcb9d5cb4359a781662caed3fe1f272c0837d9d6f6e4be5dc5f47891d232ec","acb314e7ae9f9f2dd28ef4f0f1d916e8ad65a01521235b925111046edebbc45d","52f90291f47d74a00a30007fcdea55ddee4c9b9bb71f9225eb11de834bcfcfd1","df8bca724310793c45b8e6df8d77744b55a5986fd2dceb74bbfb2361890eed61","b178d3182f441bedf19f95be51e48cf68243cabf2629c90e3ebfcd084110de18","23a0f5bf62c18f6c534e09ade0109d26491a00d2ce90c3f09dbe6d1fca05a334","91a9e7fe477539623392444a3d866e27ff0ed28cf220026ac4c7ca169007fae0","1795a3dd93df189f4f60b4052ef2c26fdfc631984712f5a49e9fffabf5b925fe","8d1852dc8f23b7e6900704a99ef67750adb37ba526876fbb66f2abbfd95bc46e","68c6bba43ac9b6477d7843d770ae1d14ac495f52ae6d9f1f99cf44024623804c","65452ec0ca1ecca1dd6c6a9c6664bd2f4bb514422f79632b52668ae0f57cd82a","506ba0f3a0161ba730c00b65e59ba7d2412d549d57e28b596b19ecf2a0afd0ba","0d76ecc4fe95cce6ca4b4cfe1e6b604e0a69c0e72ab46053f9a6d875a2017af2","55175285e5ca752970c3d7dae7407248a2bf71571619204cddff674e996069a1","27208324bed279a6d8a7c3b6600cfed472181c9727d1ad62152b528bf49da71d","1fdf0d8a3ce018e82f6bba8fe2d5f8599443a804251ccdb37622d1d7caba23cb","75b8356cfeeea984e3854d5506eb16a3da409540f3acc8b7c4c2ed7204906b68","9a2288ca5f92c1f3be20442dcbdd2a7ce0aa1e2f8507f7264450c661fe4fb1d6","e37ff2a2bad93b4820cf703008b965f3c40e00cae63fff2de4c8691693a07e43","d1537bb90c7b43698ff136fc2a0fb62f361b7184023c95281cf7a33046660a50","39aa5838393944bf2620a869d1030cae4d38bb1ec810b6495276efc7811931a5",{"version":"d496cf8490a9b93af5d1f7778bee80a21db1b9b00ba87f1ff8b9546a2a9b7296","signature":"0cf211d430710919168e9c21289b6bf659d6994846490d582d949ce5c5ebe9f5"},{"version":"ee31570559126cc4f4f5798041a116327f6351354fe6fb0168df89f81523d7b1","signature":"5500409204c4c14bfa14e22829a7065ad81deaa1eb4c90ff65912d26a5a9308a"},{"version":"45911451101b79062214a239fc1875ef7ed0babcddeed8ce58cd570419c82e0e","signature":"dc1159f6eeb375bbc8e3250a98d4328c2a4af225b3de8bb7914fa2bcf7bcdc0b"},{"version":"0f13aeeab0e3afd80567a6dda8787dfa69b61c62fe1fc58a973b338d6b501d79","signature":"39eb74853b5aeb5766b876e2cc1c0b15475f53f2b2e95859d534c3237988a924"},{"version":"02313e04838dbcac669c1b41848685f1bb9c7c1f4ffce46e1641c57279af2daf","signature":"573d0a341f873d13fc551852f2d6217bfca56b498bbe404dd9a7a5da167bddbc"},{"version":"6e5da9faab20faaecae9de78547333a59f775ac44950758a141fb7a671ad0b80","impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"0ccdaa19852d25ecd84eec365c3bfa16e7859cadecf6e9ca6d0dbbbee439743f","affectsGlobalScope":true,"impliedFormat":1},{"version":"cc2110f7decca6bfb9392e30421cfa1436479e4a6756e8fec6cbc22625d4f881","affectsGlobalScope":true,"impliedFormat":1},{"version":"096116f8fedc1765d5bd6ef360c257b4a9048e5415054b3bf3c41b07f8951b0b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5e01375c9e124a83b52ee4b3244ed1a4d214a6cfb54ac73e164a823a4a7860a","affectsGlobalScope":true,"impliedFormat":1},{"version":"f90ae2bbce1505e67f2f6502392e318f5714bae82d2d969185c4a6cecc8af2fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b58e207b93a8f1c88bbf2a95ddc686ac83962b13830fe8ad3f404ffc7051fb4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1fefabcb2b06736a66d2904074d56268753654805e829989a46a0161cd8412c5","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"c18a99f01eb788d849ad032b31cafd49de0b19e083fe775370834c5675d7df8e","affectsGlobalScope":true,"impliedFormat":1},{"version":"5247874c2a23b9a62d178ae84f2db6a1d54e6c9a2e7e057e178cc5eea13757fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"156a859e21ef3244d13afeeba4e49760a6afa035c149dda52f0c45ea8903b338","impliedFormat":1},{"version":"10ec5e82144dfac6f04fa5d1d6c11763b3e4dbbac6d99101427219ab3e2ae887","impliedFormat":1},{"version":"615754924717c0b1e293e083b83503c0a872717ad5aa60ed7f1a699eb1b4ea5c","impliedFormat":1},{"version":"14e9acf826baba0ef4b5665704084896e7bcc06f65a9ab13af7e93d27d6b7069","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"21adf13435b9b748529c8cedf80f884e5130b9684188120a686cd2b26a2059c7","impliedFormat":1},{"version":"eec76bf6b9346f3f95fa402621b889489e96930e72295b0369022f332e9b4a6a","impliedFormat":1},{"version":"0ecd58f413f9bc3b7d4383eae31b0c8fc576985cd7404d6f99f8c643543ade74","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"9c32412007b5662fd34a8eb04292fb5314ec370d7016d1c2fb8aa193c807fe22","impliedFormat":1},{"version":"7fd1b31fd35876b0aa650811c25ec2c97a3c6387e5473eb18004bed86cdd76b6","impliedFormat":1},{"version":"4d327f7d72ad0918275cea3eee49a6a8dc8114ae1d5b7f3f5d0774de75f7439a","impliedFormat":1},{"version":"6ebe8ebb8659aaa9d1acbf3710d7dae3e923e97610238b9511c25dc39023a166","impliedFormat":1},{"version":"e85d7f8068f6a26710bff0cc8c0fc5e47f71089c3780fbede05857331d2ddec9","impliedFormat":1},{"version":"7befaf0e76b5671be1d47b77fcc65f2b0aad91cc26529df1904f4a7c46d216e9","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"5b03a034c72146b61573aab280f295b015b9168470f2df05f6080a2122f9b4df","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d","impliedFormat":1},{"version":"d33ce35e3f9cfcc1d94eca415bdd3bde94d5b153ffdd33e6c4455c029986c630","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"8aee8b6d4f9f62cf3776cda1305fb18763e2aade7e13cea5bbe699112df85214","impliedFormat":1},{"version":"98498b101803bb3dde9f76a56e65c14b75db1cc8bec5f4db72be541570f74fc5","impliedFormat":1},{"version":"4dc59f6e1dbf3d5f66660fceabe6c174d3261b37b696ae1854f0dbaf255fc753","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"436d7b4543b340b0f3eef4310d524242e41369b9652aa9c70428767c4dcac455","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"12950411eeab8563b349cb7959543d92d8d02c289ed893d78499a19becb5a8cc","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"114f493b30f364255290472111b5a4791d5902c308645670cd0401429cbc6930","impliedFormat":1},{"version":"c3f5289820990ab66b70c7fb5b63cb674001009ff84b13de40619619a9c8175f","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3275d55fac10b799c9546804126239baf020d220136163f763b55a74e50e750","affectsGlobalScope":true,"impliedFormat":1},{"version":"fa68a0a3b7cb32c00e39ee3cd31f8f15b80cac97dce51b6ee7fc14a1e8deb30b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c36e755bced82df7fb6ce8169265d0a7bb046ab4e2cb6d0da0cb72b22033e89","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"7a93de4ff8a63bafe62ba86b89af1df0ccb5e40bb85b0c67d6bbcfdcf96bf3d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"90e85f9bc549dfe2b5749b45fe734144e96cd5d04b38eae244028794e142a77e","affectsGlobalScope":true,"impliedFormat":1},{"version":"e0a5deeb610b2a50a6350bd23df6490036a1773a8a71d70f2f9549ab009e67ee","affectsGlobalScope":true,"impliedFormat":1},{"version":"d2ae155afe8a01cc0ae612d99117cf8ef16692ba7c4366590156fdec1bcf2d8c","impliedFormat":1},{"version":"3f5e5d9be35913db9fea42a63f3df0b7e3c8703b97670a2125587b4dbbd56d7c","impliedFormat":1},{"version":"8caeb65fdc3bfe0d13f86f67324fcb2d858ed1c55f1f0cce892eb1acfb9f3239","impliedFormat":1},{"version":"57c23df0b5f7a8e26363a3849b0bc7763f6b241207157c8e40089d1df4116f35","affectsGlobalScope":true,"impliedFormat":1},{"version":"3b8bc0c17b54081b0878673989216229e575d67a10874e84566a21025a2461ee","impliedFormat":1},{"version":"5b0db5a58b73498792a29bfebc333438e61906fef75da898b410e24e52229e6f","impliedFormat":1},{"version":"dbe055b2b29a7bab2c1ca8f259436306adb43f469dca7e639a02cd3695d3f621","impliedFormat":1},{"version":"1678b04557dca52feab73cc67610918a7f5e25bfdba3e7fa081acd625d93106d","impliedFormat":1},{"version":"e3905f6902f0b69e5eefc230daa69fdd4ab707a973ec2d086d65af1b3ea47ef0","impliedFormat":1},{"version":"2ea729503db9793f2691162fec3dd1118cab62e96d025f8eeb376d43ec293395","impliedFormat":1},{"version":"9ec87fea42b92894b0f209931a880789d43c3397d09dd99c631ae40a2f7071d1","impliedFormat":1},{"version":"c68e88cdfadfb6c8ba5fc38e58a3a166b0beae77b1f05b7d921150a32a5ffb8d","impliedFormat":1},{"version":"2bc7aa4fba46df0bd495425a7c8201437a7d465f83854fac859df2d67f664df3","impliedFormat":1},{"version":"41d17e1ad9a002feb11c8cdd2777e5bbc0cdb1e3f595d237e4dded0b6949983b","impliedFormat":1},{"version":"1fede9296beac11ce8e6b425396a1791f64341f2be85deebb6286faf6e16306e","affectsGlobalScope":true,"impliedFormat":1},{"version":"80219a97fd3ce5f91af5c355a264844027a899b3d9a3cd41cf6f3bc5947edc95","impliedFormat":1},{"version":"89444c76f16bf7994e230d98e1bc3f01d654de04ef02f60430d9a98d5b450a8b","impliedFormat":1},{"version":"0eb5d0cbf09de5d34542b977fd6a933bb2e0817bffe8e1a541b2f1ad1b9af1ff","impliedFormat":1},{"version":"fac3e88881b35d3a757ed891ac912b2674792c25e2a1a74e1f5fbc72d19a9792","impliedFormat":1},{"version":"2c2bdaa1d8ead9f68628d6d9d250e46ee8e81aa4898b4769a36956ae15e060fe","impliedFormat":1},{"version":"c32c840c62d8bd7aeb3147aa6754cd2d922b990a6b6634530cb2ebdce5adc8e9","impliedFormat":1},{"version":"e1c1a0b4d1ead0de9eca52203aeb1f771f21e6238d6fcd15aa56ac2a02f1b7bf","impliedFormat":1},{"version":"82b91e4e42e6c41bc7fc1b6c2dc5eba6a2ba98375eb1f210e6ff6bba2d54177e","impliedFormat":1},{"version":"6fe28249ac0c7bc19a79aa9264baf00efbd080e868dbe1d3052033ad1c64f206","affectsGlobalScope":true,"impliedFormat":1},{"version":"cbed824fec91efefc7bbdcb8b43d1a531fdbebd0e2ef19481501ff365a93cb70","impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"d0716593b3f2b0451bcf0c24cfa86dec2235c325c89f201934248b7c742715fc","impliedFormat":1},{"version":"ec501101c2a96133a6c695f934c8f6642149cc728571b29cbb7b770984c1088e","impliedFormat":1},{"version":"b214ebcf76c51b115453f69729ee8aa7b7f8eccdae2a922b568a45c2d7ff52f7","impliedFormat":1},{"version":"429c9cdfa7d126255779efd7e6d9057ced2d69c81859bbab32073bad52e9ba76","impliedFormat":1},{"version":"2991bca2cc0f0628a278df2a2ccdb8d6cbcb700f3761abbed62bba137d5b1790","impliedFormat":1},{"version":"c51b3c3f6c5aa5b121124f4b593996826aab90667f95de88c1ff13c1736e11ba","affectsGlobalScope":true,"impliedFormat":1},{"version":"230763250f20449fa7b3c9273e1967adb0023dc890d4be1553faca658ee65971","impliedFormat":1},{"version":"c3e9078b60cb329d1221f5878e88cecfa3e74460550e605a58fcfb41a66029ff","impliedFormat":1},{"version":"a74edb3bab7394a9dbde529d60632be590def2f5f01024dbd85441587fbfbbe0","impliedFormat":1},{"version":"0ea59f7d3e51440baa64f429253759b106cfcbaf51e474cae606e02265b37cf8","impliedFormat":1},{"version":"bc18a1991ba681f03e13285fa1d7b99b03b67ee671b7bc936254467177543890","impliedFormat":1},{"version":"00049ccc87f3f37726db03c01ca68fe74fd9c0109b68c29eb9923ebec2c76b13","impliedFormat":1},{"version":"fa94bbf532b7af8f394b95fa310980d6e20bd2d4c871c6a6cb9f70f03750a44b","impliedFormat":1},{"version":"7fde0e1be5c8be204ffbf428abfcf01da2eb0f130e1bc3f539eb7275f4fd1f58","impliedFormat":1},{"version":"e284328553df5f425a5d33d36a0c3fa66b46af9d097cad6f4d2e8696dfdeb0f1","affectsGlobalScope":true,"impliedFormat":1},{"version":"7fa2214bb0d64701bc6f9ce8cde2fd2ff8c571e0b23065fa04a8a5a6beb91511","impliedFormat":1},{"version":"f1c93e046fb3d9b7f8249629f4b63dc068dd839b824dd0aa39a5e68476dc9420","impliedFormat":1},{"version":"016b29bf4926b80255a108c53a1451717350059da04fcae64d1075f5e93bbb39","impliedFormat":1},{"version":"841983e39bd4cbb463be385e92fda11057cab368bf27100a801c492f1d86cbaa","impliedFormat":1},{"version":"3856f7d31d0c47ec0dded3ec552519a3cd6639c1ad7be279dd1b31abffd8cc85","impliedFormat":1},{"version":"e16b319e5aca1031168de823c4946ff8e29629c4c8cc0ec0fcfe2a8ab2155043","impliedFormat":1},{"version":"e4156ddb25aa0e3b5303d372f26957b36778f0f6bbd4326359269873295e3058","affectsGlobalScope":true,"impliedFormat":1},{"version":"cc1b433a84cae05ddc5672d4823170af78606ad21ecef60dbc4570190cbf1357","impliedFormat":1},{"version":"9d3821bc75c59577e52643324cec92fc2145642e8d17cf7ee07a3181f21d985d","impliedFormat":1},{"version":"7f78cfb2b343838612c192cb251746e3a7c62ac7675726a47e130d9b213f6580","impliedFormat":1},{"version":"201db9cf1687fab1adf5282fcba861f382b32303dc4f67c89d59655e78a25461","impliedFormat":1},{"version":"2c3c5c0f54055e87640f5d233716fd889f3034fc7911d603b642369b0dbeb2a7","impliedFormat":1},{"version":"0a20eaf2e4b1e3c1e1f87f7bccb0c936375b23b022baeea750519b7c9bc6ce83","impliedFormat":1},{"version":"b484ec11ba00e3a2235562a41898d55372ccabe607986c6fa4f4aba72093749f","impliedFormat":1},{"version":"a16b91b27bd6b706c687c88cbc8a7d4ee98e5ed6043026d6b84bda923c0aed67","impliedFormat":1},{"version":"4ebf086fa2e5ef2b65133a944cb3f8ab518a22087727dfbfc802a3654c396f2f","impliedFormat":1},{"version":"99ab6d0d660ce4d21efb52288a39fd35bb3f556980ec5463b1ae8f304a3bbc85","impliedFormat":1},{"version":"6eeded8c7e352be6e0efb83f4935ec752513c4d22043b52522b90849a49a3a11","impliedFormat":1},{"version":"6c1ad90050ffbb151cacc68e2d06ea1a26a945659391e32651f5d42b86fd7f2c","impliedFormat":1},{"version":"55cdbeebe76a1fa18bbd7e7bf73350a2173926bd3085bb050cf5a5397025ee4e","impliedFormat":1},{"version":"0c51e46ad16a1d483119debc7227cd8fb6f8534408802cef1ce23d298b5a2dd5","impliedFormat":1},{"version":"cd1ac3689ea594fc7fc0e632de1e009106506055603f6457a361e87e15624f80","impliedFormat":1},{"version":"ae77d81a5541a8abb938a0efedf9ac4bea36fb3a24cc28cfa11c598863aba571","impliedFormat":1},{"version":"556ccd493ec36c7d7cb130d51be66e147b91cc1415be383d71da0f1e49f742a9","impliedFormat":1},{"version":"b6d03c9cfe2cf0ba4c673c209fcd7c46c815b2619fd2aad59fc4229aaef2ed43","impliedFormat":1},{"version":"95aba78013d782537cc5e23868e736bec5d377b918990e28ed56110e3ae8b958","impliedFormat":1},{"version":"670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","impliedFormat":1},{"version":"13b77ab19ef7aadd86a1e54f2f08ea23a6d74e102909e3c00d31f231ed040f62","impliedFormat":1},{"version":"069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","impliedFormat":1},{"version":"c2a6a737189ced24ffe0634e9239b087e4c26378d0490f95141b9b9b042b746c","impliedFormat":1},{"version":"104c67f0da1bdf0d94865419247e20eded83ce7f9911a1aa75fc675c077ca66e","impliedFormat":1},{"version":"cc0d0b339f31ce0ab3b7a5b714d8e578ce698f1e13d7f8c60bfb766baeb1d35c","impliedFormat":1},{"version":"427fe2004642504828c1476d0af4270e6ad4db6de78c0b5da3e4c5ca95052a99","impliedFormat":1},{"version":"2eeffcee5c1661ddca53353929558037b8cf305ffb86a803512982f99bcab50d","impliedFormat":99},{"version":"9afb4cb864d297e4092a79ee2871b5d3143ea14153f62ef0bb04ede25f432030","affectsGlobalScope":true,"impliedFormat":99},{"version":"fb893a0dfc3c9fb0f9ca93d0648694dd95f33cbad2c0f2c629f842981dfd4e2e","impliedFormat":1},{"version":"89e326922cadcc2331d7e851011cf9f0456a681aaf3c95b48b81f8d80e8cdfba","impliedFormat":1},{"version":"151ff381ef9ff8da2da9b9663ebf657eac35c4c9a19183420c05728f31a6761d","impliedFormat":1},{"version":"5d08a179b846f5ee674624b349ebebe2121c455e3a265dc93da4e8d9e89722b4","impliedFormat":1},{"version":"d34aa8df2d0b18fb56b1d772ff9b3c7aea7256cf0d692f969be6e1d27b74d660","impliedFormat":1},{"version":"93a3b8e57c68e348fc4054b245bd7cf4893225f56c991028844b693c2fa8c03c","impliedFormat":1},{"version":"2f5747b1508ccf83fad0c251ba1e5da2f5a30b78b09ffa1cfaf633045160afed","impliedFormat":1},{"version":"6823ccc7b5b77bbf898d878dbcad18aa45e0fa96bdd0abd0de98d514845d9ed9","affectsGlobalScope":true,"impliedFormat":1},{"version":"b71c603a539078a5e3a039b20f2b0a0d1708967530cf97dec8850a9ca45baa2b","impliedFormat":1},{"version":"168d88e14e0d81fe170e0dadd38ae9d217476c11435ea640ddb9b7382bdb6c1f","impliedFormat":1},{"version":"8e04cf0688e0d921111659c2b55851957017148fa7b977b02727477d155b3c47","impliedFormat":1},{"version":"4f817d326453d8d578758889131c3cab8665a0aa252df1ea254a83b653422efa","impliedFormat":1},{"version":"89121c1bf2990f5219bfd802a3e7fc557de447c62058d6af68d6b6348d64499a","impliedFormat":1},{"version":"79b4369233a12c6fa4a07301ecb7085802c98f3a77cf9ab97eee27e1656f82e6","impliedFormat":1},{"version":"d4a22007b481fe2a2e6bfd3a42c00cd62d41edb36d30fc4697df2692e9891fc8","impliedFormat":1},{"version":"7e29f41b158de217f94cb9676bf9cbd0cd9b5a46e1985141ed36e075c52bf6ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac51dd7d31333793807a6abaa5ae168512b6131bd41d9c5b98477fc3b7800f9f","impliedFormat":1},{"version":"dc782ff85b2cb10075ecffc158af7bfb27ff97bf8491c917efea0c3d622d5ac4","impliedFormat":1},{"version":"be1cc4d94ea60cbe567bc29ed479d42587bf1e6cba490f123d329976b0fe4ee5","impliedFormat":1},{"version":"15fe687c59d62741b4494d5e623d497d55eb38966ecf5bea7f36e48fc3fbe15e","impliedFormat":1},{"version":"2c3b8be03577c98530ef9cb1a76e2c812636a871f367e9edf4c5f3ce702b77f8","affectsGlobalScope":true,"impliedFormat":1},{"version":"18942319aff2c9619e05c379641b571f0958506472a4b539f906be08fcccf806","impliedFormat":1},{"version":"1ba59c8bbeed2cb75b239bb12041582fa3e8ef32f8d0bd0ec802e38442d3f317","impliedFormat":1}],"root":[[112,116]],"options":{"composite":true,"declaration":true,"declarationMap":true,"module":99,"noFallthroughCasesInSwitch":true,"noUncheckedSideEffectImports":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":10,"tsBuildInfoFile":"./.tsbuildinfo","verbatimModuleSyntax":true},"referencedMap":[[247,1],[245,2],[117,2],[243,3],[242,2],[244,2],[250,4],[246,1],[248,5],[249,1],[251,6],[253,7],[256,8],[252,9],[258,10],[254,2],[260,11],[259,2],[264,12],[267,13],[268,2],[270,14],[265,2],[271,14],[257,2],[181,15],[182,15],[183,16],[120,17],[184,18],[185,19],[186,20],[118,2],[187,21],[188,22],[189,23],[190,24],[191,25],[192,26],[193,26],[194,27],[195,28],[196,29],[197,30],[121,2],[119,2],[198,31],[199,32],[200,33],[241,34],[201,35],[202,36],[203,35],[204,37],[205,38],[207,39],[208,40],[209,40],[210,40],[211,41],[212,42],[213,43],[214,44],[215,45],[216,46],[217,46],[218,47],[219,2],[220,2],[221,48],[222,49],[223,48],[224,50],[225,51],[226,52],[227,53],[228,54],[229,55],[230,56],[231,57],[232,58],[233,59],[234,60],[235,61],[236,62],[237,63],[238,64],[122,35],[123,2],[124,65],[125,66],[126,2],[127,67],[128,2],[172,68],[173,69],[174,70],[175,70],[176,71],[177,2],[178,18],[179,72],[180,69],[239,73],[240,74],[262,2],[263,2],[275,75],[272,2],[274,76],[261,77],[266,78],[277,79],[276,2],[269,2],[278,2],[279,80],[255,2],[206,2],[273,2],[62,2],[63,2],[12,2],[11,2],[2,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[3,2],[21,2],[22,2],[4,2],[23,2],[27,2],[24,2],[25,2],[26,2],[28,2],[29,2],[30,2],[5,2],[31,2],[32,2],[33,2],[34,2],[6,2],[38,2],[35,2],[36,2],[37,2],[39,2],[7,2],[40,2],[45,2],[46,2],[41,2],[42,2],[43,2],[44,2],[8,2],[50,2],[47,2],[48,2],[49,2],[51,2],[9,2],[52,2],[53,2],[54,2],[56,2],[55,2],[57,2],[58,2],[10,2],[59,2],[1,2],[60,2],[61,2],[147,81],[160,82],[144,83],[161,84],[170,85],[135,86],[136,87],[134,88],[169,6],[164,89],[168,90],[138,91],[157,92],[137,93],[167,94],[132,95],[133,89],[139,96],[140,2],[146,97],[143,96],[130,98],[171,99],[162,100],[150,101],[149,96],[151,102],[154,103],[148,104],[152,105],[165,6],[141,106],[142,107],[155,108],[131,84],[159,109],[158,96],[145,107],[153,110],[156,111],[163,2],[129,2],[166,112],[80,113],[85,114],[81,113],[77,2],[75,115],[86,116],[82,115],[79,115],[84,114],[83,115],[78,115],[74,113],[76,115],[105,117],[104,118],[103,119],[108,120],[106,117],[107,117],[102,121],[114,122],[116,123],[115,124],[112,125],[113,126],[66,2],[68,127],[67,127],[70,127],[65,2],[72,127],[71,127],[73,128],[69,127],[64,2],[90,129],[99,129],[89,129],[94,129],[91,129],[97,129],[92,2],[100,129],[95,130],[101,131],[98,129],[87,2],[96,129],[93,2],[88,129],[110,132],[111,133],[109,2]],"latestChangedDtsFile":"./index.d.ts","version":"5.8.3"}
|
|
1
|
+
{"fileNames":["../../../../node_modules/typescript/lib/lib.es5.d.ts","../../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../../node_modules/typescript/lib/lib.es2023.d.ts","../../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../../node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../../node_modules/typescript/lib/lib.esnext.float16.d.ts","../../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../engine/temporal/dist/types.d.ts","../../../engine/temporal/dist/vocabulary.d.ts","../../../engine/temporal/dist/errors.d.ts","../../../engine/temporal/dist/constants.d.ts","../../../engine/temporal/dist/datetime.d.ts","../../../engine/temporal/dist/date-strings.d.ts","../../../engine/temporal/dist/time-range.d.ts","../../../engine/temporal/dist/duration.d.ts","../../../engine/temporal/dist/granularity.d.ts","../../../engine/temporal/dist/format.d.ts","../../../engine/temporal/dist/index.d.ts","../../calendar-core/dist/types.d.ts","../../calendar-core/dist/grid.d.ts","../../calendar-core/dist/visible-range.d.ts","../../calendar-core/dist/format.d.ts","../../calendar-core/dist/segmentation.d.ts","../../calendar-core/dist/layout.d.ts","../../calendar-core/dist/axis.d.ts","../../calendar-core/dist/domains.d.ts","../../calendar-core/dist/interactions.d.ts","../../calendar-core/dist/recurrence.d.ts","../../calendar-core/dist/instance-range.d.ts","../../calendar-core/dist/recurrence-instance.d.ts","../../calendar-core/dist/config.d.ts","../../calendar-core/dist/index.d.ts","../../../engine/event-sourcing/dist/persistent-map.d.ts","../../../engine/event-sourcing/dist/types.d.ts","../../../engine/event-sourcing/dist/wrap-intent.d.ts","../../../engine/event-sourcing/dist/create-domain-store.d.ts","../../../engine/event-sourcing/dist/aggregate-helpers.d.ts","../../../engine/event-sourcing/dist/errors.d.ts","../../../engine/event-sourcing/dist/unknown-event-type.d.ts","../../../engine/event-sourcing/dist/schema-version.d.ts","../../../engine/event-sourcing/dist/id.d.ts","../../../engine/event-sourcing/dist/validation.d.ts","../../../engine/event-sourcing/dist/diagnostics.d.ts","../../../engine/event-sourcing/dist/in-memory-store.d.ts","../../../engine/event-sourcing/dist/validate-envelopes.d.ts","../../../engine/event-sourcing/dist/event-bus.d.ts","../../../engine/event-sourcing/dist/topic.d.ts","../../../engine/event-sourcing/dist/broker-bridge.d.ts","../../../engine/event-sourcing/dist/broker-to-event-store-bridge.d.ts","../../../engine/event-sourcing/dist/in-memory-snapshot-store.d.ts","../../../engine/event-sourcing/dist/index.d.ts","../../calendar-data/dist/types.d.ts","../../calendar-data/dist/commands.d.ts","../../calendar-data/dist/aggregate.d.ts","../../calendar-data/dist/projection.d.ts","../../calendar-data/dist/store.d.ts","../../calendar-data/dist/index.d.ts","../../../engine/rule-engine/dist/types.d.ts","../../../engine/rule-engine/dist/engine.d.ts","../../../engine/rule-engine/dist/index.d.ts","../src/types.ts","../src/utils.ts","../src/calendar-rules.ts","../src/store-integration.ts","../src/index.ts","../../../../node_modules/@types/alpinejs/index.d.ts","../../../../node_modules/@types/node/compatibility/iterators.d.ts","../../../../node_modules/@types/node/globals.typedarray.d.ts","../../../../node_modules/@types/node/buffer.buffer.d.ts","../../../../node_modules/@types/node/globals.d.ts","../../../../node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../../node_modules/@types/node/web-globals/blob.d.ts","../../../../node_modules/@types/node/web-globals/console.d.ts","../../../../node_modules/@types/node/web-globals/crypto.d.ts","../../../../node_modules/@types/node/web-globals/domexception.d.ts","../../../../node_modules/@types/node/web-globals/encoding.d.ts","../../../../node_modules/@types/node/web-globals/events.d.ts","../../../../node_modules/undici-types/utility.d.ts","../../../../node_modules/undici-types/header.d.ts","../../../../node_modules/undici-types/readable.d.ts","../../../../node_modules/undici-types/fetch.d.ts","../../../../node_modules/undici-types/formdata.d.ts","../../../../node_modules/undici-types/connector.d.ts","../../../../node_modules/undici-types/client-stats.d.ts","../../../../node_modules/undici-types/client.d.ts","../../../../node_modules/undici-types/errors.d.ts","../../../../node_modules/undici-types/dispatcher.d.ts","../../../../node_modules/undici-types/global-dispatcher.d.ts","../../../../node_modules/undici-types/global-origin.d.ts","../../../../node_modules/undici-types/pool-stats.d.ts","../../../../node_modules/undici-types/pool.d.ts","../../../../node_modules/undici-types/handlers.d.ts","../../../../node_modules/undici-types/balanced-pool.d.ts","../../../../node_modules/undici-types/round-robin-pool.d.ts","../../../../node_modules/undici-types/h2c-client.d.ts","../../../../node_modules/undici-types/agent.d.ts","../../../../node_modules/undici-types/mock-interceptor.d.ts","../../../../node_modules/undici-types/mock-call-history.d.ts","../../../../node_modules/undici-types/mock-agent.d.ts","../../../../node_modules/undici-types/mock-client.d.ts","../../../../node_modules/undici-types/mock-pool.d.ts","../../../../node_modules/undici-types/snapshot-agent.d.ts","../../../../node_modules/undici-types/mock-errors.d.ts","../../../../node_modules/undici-types/proxy-agent.d.ts","../../../../node_modules/undici-types/socks5-proxy-agent.d.ts","../../../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../../../node_modules/undici-types/retry-handler.d.ts","../../../../node_modules/undici-types/retry-agent.d.ts","../../../../node_modules/undici-types/api.d.ts","../../../../node_modules/undici-types/cache-interceptor.d.ts","../../../../node_modules/undici-types/interceptors.d.ts","../../../../node_modules/undici-types/util.d.ts","../../../../node_modules/undici-types/cookies.d.ts","../../../../node_modules/undici-types/patch.d.ts","../../../../node_modules/undici-types/websocket.d.ts","../../../../node_modules/undici-types/eventsource.d.ts","../../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../../node_modules/undici-types/content-type.d.ts","../../../../node_modules/undici-types/cache.d.ts","../../../../node_modules/undici-types/index.d.ts","../../../../node_modules/@types/node/web-globals/fetch.d.ts","../../../../node_modules/@types/node/web-globals/importmeta.d.ts","../../../../node_modules/@types/node/web-globals/messaging.d.ts","../../../../node_modules/@types/node/web-globals/navigator.d.ts","../../../../node_modules/@types/node/web-globals/performance.d.ts","../../../../node_modules/@types/node/web-globals/storage.d.ts","../../../../node_modules/@types/node/web-globals/streams.d.ts","../../../../node_modules/@types/node/web-globals/timers.d.ts","../../../../node_modules/@types/node/web-globals/url.d.ts","../../../../node_modules/@types/node/assert.d.ts","../../../../node_modules/@types/node/assert/strict.d.ts","../../../../node_modules/@types/node/async_hooks.d.ts","../../../../node_modules/@types/node/buffer.d.ts","../../../../node_modules/@types/node/child_process.d.ts","../../../../node_modules/@types/node/cluster.d.ts","../../../../node_modules/@types/node/console.d.ts","../../../../node_modules/@types/node/constants.d.ts","../../../../node_modules/@types/node/crypto.d.ts","../../../../node_modules/@types/node/dgram.d.ts","../../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../../node_modules/@types/node/dns.d.ts","../../../../node_modules/@types/node/dns/promises.d.ts","../../../../node_modules/@types/node/domain.d.ts","../../../../node_modules/@types/node/events.d.ts","../../../../node_modules/@types/node/fs.d.ts","../../../../node_modules/@types/node/fs/promises.d.ts","../../../../node_modules/@types/node/http.d.ts","../../../../node_modules/@types/node/http2.d.ts","../../../../node_modules/@types/node/https.d.ts","../../../../node_modules/@types/node/inspector.d.ts","../../../../node_modules/@types/node/inspector.generated.d.ts","../../../../node_modules/@types/node/inspector/promises.d.ts","../../../../node_modules/@types/node/module.d.ts","../../../../node_modules/@types/node/net.d.ts","../../../../node_modules/buffer/index.d.ts","../../../../node_modules/@types/node/os.d.ts","../../../../node_modules/@types/node/path.d.ts","../../../../node_modules/@types/node/path/posix.d.ts","../../../../node_modules/@types/node/path/win32.d.ts","../../../../node_modules/@types/node/perf_hooks.d.ts","../../../../node_modules/@types/node/process.d.ts","../../../../node_modules/@types/node/punycode.d.ts","../../../../node_modules/@types/node/querystring.d.ts","../../../../node_modules/@types/node/quic.d.ts","../../../../node_modules/@types/node/readline.d.ts","../../../../node_modules/@types/node/readline/promises.d.ts","../../../../node_modules/@types/node/repl.d.ts","../../../../node_modules/@types/node/sea.d.ts","../../../../node_modules/@types/node/sqlite.d.ts","../../../../node_modules/@types/node/stream.d.ts","../../../../node_modules/@types/node/stream/consumers.d.ts","../../../../node_modules/@types/node/stream/promises.d.ts","../../../../node_modules/@types/node/stream/web.d.ts","../../../../node_modules/@types/node/string_decoder.d.ts","../../../../node_modules/@types/node/test.d.ts","../../../../node_modules/@types/node/test/reporters.d.ts","../../../../node_modules/@types/node/timers.d.ts","../../../../node_modules/@types/node/timers/promises.d.ts","../../../../node_modules/@types/node/tls.d.ts","../../../../node_modules/@types/node/trace_events.d.ts","../../../../node_modules/@types/node/tty.d.ts","../../../../node_modules/@types/node/url.d.ts","../../../../node_modules/@types/node/util.d.ts","../../../../node_modules/@types/node/util/types.d.ts","../../../../node_modules/@types/node/v8.d.ts","../../../../node_modules/@types/node/vm.d.ts","../../../../node_modules/@types/node/wasi.d.ts","../../../../node_modules/@types/node/worker_threads.d.ts","../../../../node_modules/@types/node/zlib.d.ts","../../../../node_modules/@types/node/index.d.ts","../../../../node_modules/@types/amqplib/properties.d.ts","../../../../node_modules/@types/amqplib/index.d.ts","../../../../node_modules/@types/aria-query/index.d.ts","../../../../node_modules/@babel/types/lib/index.d.ts","../../../../node_modules/@types/babel__generator/index.d.ts","../../../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../../../node_modules/@types/babel__template/index.d.ts","../../../../node_modules/@types/babel__traverse/index.d.ts","../../../../node_modules/@types/babel__core/index.d.ts","../../../../node_modules/@types/better-sqlite3/index.d.ts","../../../../node_modules/@types/connect/index.d.ts","../../../../node_modules/@types/body-parser/index.d.ts","../../../../node_modules/@types/deep-eql/index.d.ts","../../../../node_modules/assertion-error/index.d.ts","../../../../node_modules/@types/chai/index.d.ts","../../../../node_modules/@types/ms/index.d.ts","../../../../node_modules/@types/debug/index.d.ts","../../../../node_modules/@types/estree/index.d.ts","../../../../node_modules/@types/estree-jsx/index.d.ts","../../../../node_modules/@types/send/index.d.ts","../../../../node_modules/@types/qs/index.d.ts","../../../../node_modules/@types/range-parser/index.d.ts","../../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../../node_modules/@types/http-errors/index.d.ts","../../../../node_modules/@types/serve-static/index.d.ts","../../../../node_modules/@types/express/index.d.ts","../../../../node_modules/@types/google-protobuf/index.d.ts","../../../../node_modules/@types/unist/index.d.ts","../../../../node_modules/@types/hast/index.d.ts","../../../../node_modules/@types/mdast/index.d.ts","../../../../node_modules/@types/mime/index.d.ts","../../../../node_modules/@types/react/global.d.ts","../../../../node_modules/csstype/index.d.ts","../../../../node_modules/@types/react/index.d.ts","../../../../node_modules/@types/react-dom/index.d.ts","../../../../node_modules/@types/trusted-types/lib/index.d.ts","../../../../node_modules/@types/trusted-types/index.d.ts","../../../../node_modules/@types/whatwg-mimetype/index.d.ts","../../../../node_modules/@types/ws/index.d.ts"],"fileIdsList":[[125,189,197,201,204,206,207,208,221,250],[125,189,197,201,204,206,207,208,221],[125,189,197,200,201,204,206,207,208,221,246,247],[125,189,197,201,204,206,207,208,221,250,251,252,253,254],[125,189,197,201,204,206,207,208,221,250,252],[125,189,197,201,204,206,207,208,221,246],[125,189,197,201,203,204,206,207,208,221,246,257],[125,189,197,201,204,206,207,208,221,259,260],[125,189,197,201,203,204,206,207,208,221,246],[125,189,197,201,204,206,207,208,221,262],[125,189,197,201,204,206,207,208,221,264,265],[125,189,197,200,201,203,204,206,207,208,221,246,266,267,268],[125,189,197,201,204,206,207,208,221,258,269,271],[125,189,197,201,204,206,207,208,221,274],[125,186,187,189,197,201,204,206,207,208,221],[125,188,189,197,201,204,206,207,208,221],[189,197,201,204,206,207,208,221],[125,189,197,201,204,206,207,208,221,229],[125,189,190,195,197,200,201,204,206,207,208,210,221,226,238],[125,189,190,191,197,200,201,204,206,207,208,221],[125,189,192,197,201,204,206,207,208,221,239],[125,189,193,194,197,201,204,206,207,208,212,221],[125,189,194,197,201,204,206,207,208,221,226,235],[125,189,195,197,200,201,204,206,207,208,210,221],[125,188,189,196,197,201,204,206,207,208,221],[125,189,197,198,201,204,206,207,208,221],[125,189,197,199,200,201,204,206,207,208,221],[125,188,189,197,200,201,204,206,207,208,221],[125,189,197,200,201,202,204,206,207,208,221,226,238],[125,189,197,200,201,202,204,206,207,208,221,226,229],[125,176,189,197,200,201,203,204,206,207,208,210,221,226,238],[125,189,197,200,201,203,204,206,207,208,210,221,226,235,238],[125,189,197,201,203,204,205,206,207,208,221,226,235,238],[123,124,125,126,127,128,129,130,131,132,133,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245],[125,189,197,200,201,204,206,207,208,221],[125,189,197,201,204,206,208,221],[125,189,197,201,204,206,207,208,209,221,238],[125,189,197,200,201,204,206,207,208,210,221,226],[125,189,197,201,204,206,207,208,212,221],[125,189,197,201,204,206,207,208,213,221],[125,189,197,200,201,204,206,207,208,216,221],[125,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245],[125,189,197,201,204,206,207,208,218,221],[125,189,197,201,204,206,207,208,219,221],[125,189,194,197,201,204,206,207,208,210,221,229],[125,189,197,200,201,204,206,207,208,221,222],[125,189,197,201,204,206,207,208,221,223,239,242],[125,189,197,200,201,204,206,207,208,221,226,228,229],[125,189,197,201,204,206,207,208,221,227,229],[125,189,197,201,204,206,207,208,221,229,239],[125,189,197,201,204,206,207,208,221,230],[125,186,189,197,201,204,206,207,208,221,226,232,238],[125,189,197,201,204,206,207,208,221,226,231],[125,189,197,200,201,204,206,207,208,221,233,234],[125,189,197,201,204,206,207,208,221,233,234],[125,189,194,197,201,204,206,207,208,210,221,226,235],[125,189,197,201,204,206,207,208,221,236],[125,189,197,201,204,206,207,208,210,221,237],[125,189,197,201,203,204,206,207,208,219,221,238],[125,189,197,201,204,206,207,208,221,239,240],[125,189,194,197,201,204,206,207,208,221,240],[125,189,197,201,204,206,207,208,221,226,241],[125,189,197,201,204,206,207,208,209,221,242],[125,189,197,201,204,206,207,208,221,243],[125,189,192,197,201,204,206,207,208,221],[125,189,194,197,201,204,206,207,208,221],[125,189,197,201,204,206,207,208,221,239],[125,176,189,197,201,204,206,207,208,221],[125,189,197,201,204,206,207,208,221,238],[125,189,197,201,204,206,207,208,221,244],[125,189,197,201,204,206,207,208,216,221],[125,189,197,201,204,206,207,208,221,234],[125,176,189,197,200,201,202,204,206,207,208,216,221,226,229,238,241,242,244],[125,189,197,201,204,206,207,208,221,226,245],[125,189,197,201,204,206,207,208,221,280],[125,189,197,201,204,206,207,208,221,278,279],[125,189,197,201,204,206,207,208,221,226,246],[125,189,197,201,203,204,206,207,208,221,246,270],[125,189,197,201,204,206,207,208,221,282],[125,189,197,200,201,203,204,205,206,207,208,210,221,226,235,238,245,246],[125,140,143,146,147,189,197,201,204,206,207,208,221,238],[125,143,189,197,201,204,206,207,208,221,226,238],[125,143,147,189,197,201,204,206,207,208,221,238],[125,189,197,201,204,206,207,208,221,226],[125,137,189,197,201,204,206,207,208,221],[125,141,189,197,201,204,206,207,208,221],[125,139,140,143,189,197,201,204,206,207,208,221,238],[125,189,197,201,204,206,207,208,210,221,235],[125,137,189,197,201,204,206,207,208,221,246],[125,139,143,189,197,201,204,206,207,208,210,221,238],[125,134,135,136,138,142,189,197,200,201,204,206,207,208,221,226,238],[125,143,152,160,189,197,201,204,206,207,208,221],[125,135,141,189,197,201,204,206,207,208,221],[125,143,170,171,189,197,201,204,206,207,208,221],[125,135,138,143,189,197,201,204,206,207,208,221,229,238,246],[125,143,189,197,201,204,206,207,208,221],[125,139,143,189,197,201,204,206,207,208,221,238],[125,134,189,197,201,204,206,207,208,221],[125,137,138,139,141,142,143,144,145,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,171,172,173,174,175,189,197,201,204,206,207,208,221],[125,143,163,166,189,197,201,204,206,207,208,221],[125,143,152,153,154,189,197,201,204,206,207,208,221],[125,141,143,153,155,189,197,201,204,206,207,208,221],[125,142,189,197,201,204,206,207,208,221],[125,135,137,143,189,197,201,204,206,207,208,221],[125,143,147,153,155,189,197,201,204,206,207,208,221],[125,147,189,197,201,204,206,207,208,221],[125,141,143,146,189,197,201,204,206,207,208,221,238],[125,135,139,143,152,189,197,201,204,206,207,208,221],[125,143,163,189,197,201,204,206,207,208,221],[125,155,189,197,201,204,206,207,208,221],[125,135,139,143,147,189,197,201,204,206,207,208,221],[125,137,143,170,189,197,201,204,206,207,208,221,229,244,246],[74,125,189,197,201,204,206,207,208,221],[75,125,189,197,201,204,206,207,208,221],[74,75,125,189,197,201,204,206,207,208,221],[74,75,76,77,78,79,80,81,82,83,84,85,86,87,125,189,197,201,204,206,207,208,221],[107,108,125,189,197,201,204,206,207,208,221],[88,108,125,189,197,201,204,206,207,208,221],[107,108,109,110,111,112,125,189,197,201,204,206,207,208,221],[88,107,125,189,197,201,204,206,207,208,221],[74,88,113,117,118,125,189,197,201,204,206,207,208,221],[116,117,118,119,120,125,189,197,201,204,206,207,208,221],[74,88,107,113,117,125,189,197,201,204,206,207,208,221],[88,113,116,125,189,197,201,204,206,207,208,221],[88,113,117,125,189,197,201,204,206,207,208,221],[89,90,125,189,197,201,204,206,207,208,221],[90,125,189,197,201,204,206,207,208,221],[90,104,125,189,197,201,204,206,207,208,221],[90,99,125,189,197,201,204,206,207,208,221],[89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,125,189,197,201,204,206,207,208,221],[89,125,189,197,201,204,206,207,208,221],[114,125,189,197,201,204,206,207,208,221],[114,115,125,189,197,201,204,206,207,208,221],[64,125,189,197,201,204,206,207,208,221],[64,65,125,189,197,201,204,206,207,208,221],[64,65,66,67,68,69,70,71,72,73,125,189,197,201,204,206,207,208,221]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"4245fee526a7d1754529d19227ecbf3be066ff79ebb6a380d78e41648f2f224d","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},"c1b6f5d12775a5533f5f985bf74298774ce6dd24e1b477c17c333147573ca564","a3cedaae0d6fcdb4a244cfec99c52cac9b9c7ec715c2fccca9f1c764226747db","74d2389719a8345dce0a3731d541e1da3821961165350657bba2e8b8722c2082","5de35de44187d312679ea9a5c9124c13ddcee8ab2f5134f84964f2eacc3d6140","d9e0ea4917b9ae9ac64ada1e30a75bbbe95a40899059a001affb8fbc07f7e6db","7cc4ea392884bb91b317a8f9f32c34698f1f5b4b8ea357b78c3a1338ce4f034d","0392da4726a758d03ee55a15dc4424a246e3b517f091fc0a60de3811fc89e11c","70552c3d0b0f65e587e0588102c594d67a15405d6e9dc12fe8aa66a03cb299fe","a1b5d3fc5f4cb6d925d4c5fdcc49b70a52490c261461b90ac598e54192540c06","6b813700992f9ce0764a6c7bb6e5881d8578c18fc2cfda57f414f7a3784c0db3","29bbe3fe86a344a64b511f353a27a43562ac82cffa0cbad9c27a2c608326f257","934d79dd5354a830670023bc959a1c74a8d4b10a6d36a96130471de44a4bfcdb","5ec296024f6ae0e9cd232eb7ed3f0cd4c4e71590851a0fe882410b8d969bff4c","91ac7fc572ed2efaa5fda1b70bd0bd951d24eca3dc7c8dbf209b0e3339611de0","498ae8b6e1f00ff2733fbe92d0158dddcf6616d76aee4ebf77cbbc5e6f0137f9","3ae57ea26ef6ccb84f5d1522fd91e0ea9a7bbf63d9ce2c4391fc3b5abf930a56","22ffe3ad7f8dae74941d303cde71aaf38967d2fc7d146a880b67237252547808","de5163dec225a922d801a50fdb816df1fb459cce4e77e97ca67e4d7bb0dd6cdc","75fb4a4713194be94778a116563cf12c6495b07ce810624127e6f048e7a856db","043d4b3f79551b056a3f3b0750a05f9fce7d68506fce99ab60c3805db7ded6d2","2ee2def23de311babeb0c90bd8805f0cbb5c36152f19a93160c8252ef3547a8c","a722722aea3ac22c1c2014fb63990dc055302bc8c21a05e20d764ccbe9b94538","ac63fc966100556eb059eac767cb02fe18654773fc458ebf227364eb5f8676d1","0939368d7eee822f720c6673d600f1edecc693be6b5c8b62056d562c2fdcd85a","d4d4182db31de9726a9e93055eb85d919ef01ea5b4f758f59d5ef3bfcda4ac4b","fcf823d8280b8269c62f5890fb8ff8fd8ffa4f42312b967f165a5392072b92e5","bffc801a88e2c7d7d50de7f99d7740b7bda04e92847758d7792558448fbced37","98e32045a66fc1149ec1376399c67f0695df6a7521cefa601cdf268824148dbf","aea58b21794df58c8d46c228a1b381cf57fed673903f58d901c03af06b6263a3","d51396736d1967f10bde953aa2cc6cecba8a9439e9a494a8b7fa0ee920c09464","a9a3080cf7d4e0b51fabf746b122956e206a7d3e2eb581afccd91d7c62681313","ebf3442c0a338efedbea9ccd9abd68254d4105f225432c07a0213febecc39c9f","94f7d4d0a95a4d4b5449e20827aaa1db1478d8591731fe711095611761f53a31","acb314e7ae9f9f2dd28ef4f0f1d916e8ad65a01521235b925111046edebbc45d","bee65ce2569ac0753abfea6840d048c1b8c4682d0717dd38ee06a0874179041b","80b407871e24d7c3b4cc0334a22a7123971d40df71abeebc732276e536419c43","6820f466fb16c4ad8ccbf50cf9cd8b72aeeff8302951c16c18d5725f64824a41","2ab4762455ccd4174565c6c4005e7556443408ed172946392bf515db5485a83d","91a9e7fe477539623392444a3d866e27ff0ed28cf220026ac4c7ca169007fae0","1795a3dd93df189f4f60b4052ef2c26fdfc631984712f5a49e9fffabf5b925fe","d893c2d36626b6f491eaa94c6c41a93ae1b110fed06138a3aa2b172ac0c09b42","c8c062bd322b89adff1122ddcbc2ff21e915890f0e156d9c6465c46c66f745ef","68c6bba43ac9b6477d7843d770ae1d14ac495f52ae6d9f1f99cf44024623804c","0615f8919a2e13ff8646806c5d1c5b668162cd8b2babd8d2693c8b8693b39d1c","cb32619fa838f3e4d119b20f54f2b183a36af84fdc01c4ffb7200188a714f3b2","153bec7f3c50682282dce9ec6905de6713170a3e1ce4f3eb780aead2bc2d7d50","baa5bff176c757a6583c14ad71f060696a7a067330cd6836565053d1dd45c44f","8594611bac65285253f8afbe4ae757a9c54a1ad885439aef256b2e25bd390c2d","98c18c9a89882fe3502a3f03f8be07fcfbe75539394f6bb8ba24b5f7af8f6145","4ae1f0b3a4908d0d7dbbf63f754e85b1a048428e34c77c1614a7c5652c198122","5fdaedc4a3863e36a975b3cb8060db9fbbea2862885861787e78454691c15278","d1537bb90c7b43698ff136fc2a0fb62f361b7184023c95281cf7a33046660a50","39aa5838393944bf2620a869d1030cae4d38bb1ec810b6495276efc7811931a5",{"version":"ddb422c7088bd080df69a951840029dff510dfe258fba80485f7f089d95e233b","signature":"9129cc1a175c4f8838cd923d03f8c0fa8404e4859eb70a0f829c424471f925e7"},{"version":"59cb034f335930b768fef71996a075008510d5f4b4b5e1fd8cc540db0cea997c","signature":"5500409204c4c14bfa14e22829a7065ad81deaa1eb4c90ff65912d26a5a9308a"},{"version":"68eda1a5b512ca4f939f0012e5b029dd8a1196019b9b28ec211d8c7b654ffb9a","signature":"3eab7636de8465a47bd04de7cc4465f1e4e965f1246910aa12de5a3e3e226031"},{"version":"eb469bf312ccec452e9686ba3968440fe85019f1fa8407c41d9a9f536cc05e21","signature":"51abbf4d52de9006030e8e7a83d62a5204e04d05849f6b9a46e4ea034c19bf77"},{"version":"0b0820d064e1c19b778931292b5952510f652e1d19858dc38f6a2f1fe51ff366","signature":"3804c2703c73adc05f1cdbd663ef1a8904438228644aa7efeb839acc12ca7750"},{"version":"6e5da9faab20faaecae9de78547333a59f775ac44950758a141fb7a671ad0b80","impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"0ccdaa19852d25ecd84eec365c3bfa16e7859cadecf6e9ca6d0dbbbee439743f","affectsGlobalScope":true,"impliedFormat":1},{"version":"cc2110f7decca6bfb9392e30421cfa1436479e4a6756e8fec6cbc22625d4f881","affectsGlobalScope":true,"impliedFormat":1},{"version":"096116f8fedc1765d5bd6ef360c257b4a9048e5415054b3bf3c41b07f8951b0b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5e01375c9e124a83b52ee4b3244ed1a4d214a6cfb54ac73e164a823a4a7860a","affectsGlobalScope":true,"impliedFormat":1},{"version":"f90ae2bbce1505e67f2f6502392e318f5714bae82d2d969185c4a6cecc8af2fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b58e207b93a8f1c88bbf2a95ddc686ac83962b13830fe8ad3f404ffc7051fb4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1fefabcb2b06736a66d2904074d56268753654805e829989a46a0161cd8412c5","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"c18a99f01eb788d849ad032b31cafd49de0b19e083fe775370834c5675d7df8e","affectsGlobalScope":true,"impliedFormat":1},{"version":"5247874c2a23b9a62d178ae84f2db6a1d54e6c9a2e7e057e178cc5eea13757fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"156a859e21ef3244d13afeeba4e49760a6afa035c149dda52f0c45ea8903b338","impliedFormat":1},{"version":"10ec5e82144dfac6f04fa5d1d6c11763b3e4dbbac6d99101427219ab3e2ae887","impliedFormat":1},{"version":"615754924717c0b1e293e083b83503c0a872717ad5aa60ed7f1a699eb1b4ea5c","impliedFormat":1},{"version":"14e9acf826baba0ef4b5665704084896e7bcc06f65a9ab13af7e93d27d6b7069","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"21adf13435b9b748529c8cedf80f884e5130b9684188120a686cd2b26a2059c7","impliedFormat":1},{"version":"eec76bf6b9346f3f95fa402621b889489e96930e72295b0369022f332e9b4a6a","impliedFormat":1},{"version":"0ecd58f413f9bc3b7d4383eae31b0c8fc576985cd7404d6f99f8c643543ade74","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"9c32412007b5662fd34a8eb04292fb5314ec370d7016d1c2fb8aa193c807fe22","impliedFormat":1},{"version":"7fd1b31fd35876b0aa650811c25ec2c97a3c6387e5473eb18004bed86cdd76b6","impliedFormat":1},{"version":"4d327f7d72ad0918275cea3eee49a6a8dc8114ae1d5b7f3f5d0774de75f7439a","impliedFormat":1},{"version":"6ebe8ebb8659aaa9d1acbf3710d7dae3e923e97610238b9511c25dc39023a166","impliedFormat":1},{"version":"e85d7f8068f6a26710bff0cc8c0fc5e47f71089c3780fbede05857331d2ddec9","impliedFormat":1},{"version":"7befaf0e76b5671be1d47b77fcc65f2b0aad91cc26529df1904f4a7c46d216e9","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"5b03a034c72146b61573aab280f295b015b9168470f2df05f6080a2122f9b4df","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d","impliedFormat":1},{"version":"d33ce35e3f9cfcc1d94eca415bdd3bde94d5b153ffdd33e6c4455c029986c630","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"8aee8b6d4f9f62cf3776cda1305fb18763e2aade7e13cea5bbe699112df85214","impliedFormat":1},{"version":"98498b101803bb3dde9f76a56e65c14b75db1cc8bec5f4db72be541570f74fc5","impliedFormat":1},{"version":"4dc59f6e1dbf3d5f66660fceabe6c174d3261b37b696ae1854f0dbaf255fc753","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"436d7b4543b340b0f3eef4310d524242e41369b9652aa9c70428767c4dcac455","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"12950411eeab8563b349cb7959543d92d8d02c289ed893d78499a19becb5a8cc","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"114f493b30f364255290472111b5a4791d5902c308645670cd0401429cbc6930","impliedFormat":1},{"version":"c3f5289820990ab66b70c7fb5b63cb674001009ff84b13de40619619a9c8175f","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3275d55fac10b799c9546804126239baf020d220136163f763b55a74e50e750","affectsGlobalScope":true,"impliedFormat":1},{"version":"fa68a0a3b7cb32c00e39ee3cd31f8f15b80cac97dce51b6ee7fc14a1e8deb30b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c36e755bced82df7fb6ce8169265d0a7bb046ab4e2cb6d0da0cb72b22033e89","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"7a93de4ff8a63bafe62ba86b89af1df0ccb5e40bb85b0c67d6bbcfdcf96bf3d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"90e85f9bc549dfe2b5749b45fe734144e96cd5d04b38eae244028794e142a77e","affectsGlobalScope":true,"impliedFormat":1},{"version":"e0a5deeb610b2a50a6350bd23df6490036a1773a8a71d70f2f9549ab009e67ee","affectsGlobalScope":true,"impliedFormat":1},{"version":"d2ae155afe8a01cc0ae612d99117cf8ef16692ba7c4366590156fdec1bcf2d8c","impliedFormat":1},{"version":"3f5e5d9be35913db9fea42a63f3df0b7e3c8703b97670a2125587b4dbbd56d7c","impliedFormat":1},{"version":"8caeb65fdc3bfe0d13f86f67324fcb2d858ed1c55f1f0cce892eb1acfb9f3239","impliedFormat":1},{"version":"57c23df0b5f7a8e26363a3849b0bc7763f6b241207157c8e40089d1df4116f35","affectsGlobalScope":true,"impliedFormat":1},{"version":"3b8bc0c17b54081b0878673989216229e575d67a10874e84566a21025a2461ee","impliedFormat":1},{"version":"5b0db5a58b73498792a29bfebc333438e61906fef75da898b410e24e52229e6f","impliedFormat":1},{"version":"dbe055b2b29a7bab2c1ca8f259436306adb43f469dca7e639a02cd3695d3f621","impliedFormat":1},{"version":"1678b04557dca52feab73cc67610918a7f5e25bfdba3e7fa081acd625d93106d","impliedFormat":1},{"version":"e3905f6902f0b69e5eefc230daa69fdd4ab707a973ec2d086d65af1b3ea47ef0","impliedFormat":1},{"version":"2ea729503db9793f2691162fec3dd1118cab62e96d025f8eeb376d43ec293395","impliedFormat":1},{"version":"9ec87fea42b92894b0f209931a880789d43c3397d09dd99c631ae40a2f7071d1","impliedFormat":1},{"version":"c68e88cdfadfb6c8ba5fc38e58a3a166b0beae77b1f05b7d921150a32a5ffb8d","impliedFormat":1},{"version":"2bc7aa4fba46df0bd495425a7c8201437a7d465f83854fac859df2d67f664df3","impliedFormat":1},{"version":"41d17e1ad9a002feb11c8cdd2777e5bbc0cdb1e3f595d237e4dded0b6949983b","impliedFormat":1},{"version":"1fede9296beac11ce8e6b425396a1791f64341f2be85deebb6286faf6e16306e","affectsGlobalScope":true,"impliedFormat":1},{"version":"80219a97fd3ce5f91af5c355a264844027a899b3d9a3cd41cf6f3bc5947edc95","impliedFormat":1},{"version":"89444c76f16bf7994e230d98e1bc3f01d654de04ef02f60430d9a98d5b450a8b","impliedFormat":1},{"version":"0eb5d0cbf09de5d34542b977fd6a933bb2e0817bffe8e1a541b2f1ad1b9af1ff","impliedFormat":1},{"version":"fac3e88881b35d3a757ed891ac912b2674792c25e2a1a74e1f5fbc72d19a9792","impliedFormat":1},{"version":"2c2bdaa1d8ead9f68628d6d9d250e46ee8e81aa4898b4769a36956ae15e060fe","impliedFormat":1},{"version":"c32c840c62d8bd7aeb3147aa6754cd2d922b990a6b6634530cb2ebdce5adc8e9","impliedFormat":1},{"version":"e1c1a0b4d1ead0de9eca52203aeb1f771f21e6238d6fcd15aa56ac2a02f1b7bf","impliedFormat":1},{"version":"82b91e4e42e6c41bc7fc1b6c2dc5eba6a2ba98375eb1f210e6ff6bba2d54177e","impliedFormat":1},{"version":"6fe28249ac0c7bc19a79aa9264baf00efbd080e868dbe1d3052033ad1c64f206","affectsGlobalScope":true,"impliedFormat":1},{"version":"cbed824fec91efefc7bbdcb8b43d1a531fdbebd0e2ef19481501ff365a93cb70","impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"d0716593b3f2b0451bcf0c24cfa86dec2235c325c89f201934248b7c742715fc","impliedFormat":1},{"version":"ec501101c2a96133a6c695f934c8f6642149cc728571b29cbb7b770984c1088e","impliedFormat":1},{"version":"b214ebcf76c51b115453f69729ee8aa7b7f8eccdae2a922b568a45c2d7ff52f7","impliedFormat":1},{"version":"429c9cdfa7d126255779efd7e6d9057ced2d69c81859bbab32073bad52e9ba76","impliedFormat":1},{"version":"2991bca2cc0f0628a278df2a2ccdb8d6cbcb700f3761abbed62bba137d5b1790","impliedFormat":1},{"version":"c51b3c3f6c5aa5b121124f4b593996826aab90667f95de88c1ff13c1736e11ba","affectsGlobalScope":true,"impliedFormat":1},{"version":"230763250f20449fa7b3c9273e1967adb0023dc890d4be1553faca658ee65971","impliedFormat":1},{"version":"c3e9078b60cb329d1221f5878e88cecfa3e74460550e605a58fcfb41a66029ff","impliedFormat":1},{"version":"a74edb3bab7394a9dbde529d60632be590def2f5f01024dbd85441587fbfbbe0","impliedFormat":1},{"version":"0ea59f7d3e51440baa64f429253759b106cfcbaf51e474cae606e02265b37cf8","impliedFormat":1},{"version":"bc18a1991ba681f03e13285fa1d7b99b03b67ee671b7bc936254467177543890","impliedFormat":1},{"version":"00049ccc87f3f37726db03c01ca68fe74fd9c0109b68c29eb9923ebec2c76b13","impliedFormat":1},{"version":"fa94bbf532b7af8f394b95fa310980d6e20bd2d4c871c6a6cb9f70f03750a44b","impliedFormat":1},{"version":"7fde0e1be5c8be204ffbf428abfcf01da2eb0f130e1bc3f539eb7275f4fd1f58","impliedFormat":1},{"version":"e284328553df5f425a5d33d36a0c3fa66b46af9d097cad6f4d2e8696dfdeb0f1","affectsGlobalScope":true,"impliedFormat":1},{"version":"7fa2214bb0d64701bc6f9ce8cde2fd2ff8c571e0b23065fa04a8a5a6beb91511","impliedFormat":1},{"version":"f1c93e046fb3d9b7f8249629f4b63dc068dd839b824dd0aa39a5e68476dc9420","impliedFormat":1},{"version":"016b29bf4926b80255a108c53a1451717350059da04fcae64d1075f5e93bbb39","impliedFormat":1},{"version":"841983e39bd4cbb463be385e92fda11057cab368bf27100a801c492f1d86cbaa","impliedFormat":1},{"version":"3856f7d31d0c47ec0dded3ec552519a3cd6639c1ad7be279dd1b31abffd8cc85","impliedFormat":1},{"version":"e16b319e5aca1031168de823c4946ff8e29629c4c8cc0ec0fcfe2a8ab2155043","impliedFormat":1},{"version":"e4156ddb25aa0e3b5303d372f26957b36778f0f6bbd4326359269873295e3058","affectsGlobalScope":true,"impliedFormat":1},{"version":"cc1b433a84cae05ddc5672d4823170af78606ad21ecef60dbc4570190cbf1357","impliedFormat":1},{"version":"9d3821bc75c59577e52643324cec92fc2145642e8d17cf7ee07a3181f21d985d","impliedFormat":1},{"version":"7f78cfb2b343838612c192cb251746e3a7c62ac7675726a47e130d9b213f6580","impliedFormat":1},{"version":"201db9cf1687fab1adf5282fcba861f382b32303dc4f67c89d59655e78a25461","impliedFormat":1},{"version":"2c3c5c0f54055e87640f5d233716fd889f3034fc7911d603b642369b0dbeb2a7","impliedFormat":1},{"version":"0a20eaf2e4b1e3c1e1f87f7bccb0c936375b23b022baeea750519b7c9bc6ce83","impliedFormat":1},{"version":"b484ec11ba00e3a2235562a41898d55372ccabe607986c6fa4f4aba72093749f","impliedFormat":1},{"version":"a16b91b27bd6b706c687c88cbc8a7d4ee98e5ed6043026d6b84bda923c0aed67","impliedFormat":1},{"version":"4ebf086fa2e5ef2b65133a944cb3f8ab518a22087727dfbfc802a3654c396f2f","impliedFormat":1},{"version":"99ab6d0d660ce4d21efb52288a39fd35bb3f556980ec5463b1ae8f304a3bbc85","impliedFormat":1},{"version":"6eeded8c7e352be6e0efb83f4935ec752513c4d22043b52522b90849a49a3a11","impliedFormat":1},{"version":"6c1ad90050ffbb151cacc68e2d06ea1a26a945659391e32651f5d42b86fd7f2c","impliedFormat":1},{"version":"55cdbeebe76a1fa18bbd7e7bf73350a2173926bd3085bb050cf5a5397025ee4e","impliedFormat":1},{"version":"0c51e46ad16a1d483119debc7227cd8fb6f8534408802cef1ce23d298b5a2dd5","impliedFormat":1},{"version":"cd1ac3689ea594fc7fc0e632de1e009106506055603f6457a361e87e15624f80","impliedFormat":1},{"version":"ae77d81a5541a8abb938a0efedf9ac4bea36fb3a24cc28cfa11c598863aba571","impliedFormat":1},{"version":"556ccd493ec36c7d7cb130d51be66e147b91cc1415be383d71da0f1e49f742a9","impliedFormat":1},{"version":"b6d03c9cfe2cf0ba4c673c209fcd7c46c815b2619fd2aad59fc4229aaef2ed43","impliedFormat":1},{"version":"95aba78013d782537cc5e23868e736bec5d377b918990e28ed56110e3ae8b958","impliedFormat":1},{"version":"670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","impliedFormat":1},{"version":"13b77ab19ef7aadd86a1e54f2f08ea23a6d74e102909e3c00d31f231ed040f62","impliedFormat":1},{"version":"069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","impliedFormat":1},{"version":"c2a6a737189ced24ffe0634e9239b087e4c26378d0490f95141b9b9b042b746c","impliedFormat":1},{"version":"104c67f0da1bdf0d94865419247e20eded83ce7f9911a1aa75fc675c077ca66e","impliedFormat":1},{"version":"cc0d0b339f31ce0ab3b7a5b714d8e578ce698f1e13d7f8c60bfb766baeb1d35c","impliedFormat":1},{"version":"427fe2004642504828c1476d0af4270e6ad4db6de78c0b5da3e4c5ca95052a99","impliedFormat":1},{"version":"2eeffcee5c1661ddca53353929558037b8cf305ffb86a803512982f99bcab50d","impliedFormat":99},{"version":"9afb4cb864d297e4092a79ee2871b5d3143ea14153f62ef0bb04ede25f432030","affectsGlobalScope":true,"impliedFormat":99},{"version":"fb893a0dfc3c9fb0f9ca93d0648694dd95f33cbad2c0f2c629f842981dfd4e2e","impliedFormat":1},{"version":"89e326922cadcc2331d7e851011cf9f0456a681aaf3c95b48b81f8d80e8cdfba","impliedFormat":1},{"version":"151ff381ef9ff8da2da9b9663ebf657eac35c4c9a19183420c05728f31a6761d","impliedFormat":1},{"version":"5d08a179b846f5ee674624b349ebebe2121c455e3a265dc93da4e8d9e89722b4","impliedFormat":1},{"version":"d34aa8df2d0b18fb56b1d772ff9b3c7aea7256cf0d692f969be6e1d27b74d660","impliedFormat":1},{"version":"93a3b8e57c68e348fc4054b245bd7cf4893225f56c991028844b693c2fa8c03c","impliedFormat":1},{"version":"2f5747b1508ccf83fad0c251ba1e5da2f5a30b78b09ffa1cfaf633045160afed","impliedFormat":1},{"version":"6823ccc7b5b77bbf898d878dbcad18aa45e0fa96bdd0abd0de98d514845d9ed9","affectsGlobalScope":true,"impliedFormat":1},{"version":"b71c603a539078a5e3a039b20f2b0a0d1708967530cf97dec8850a9ca45baa2b","impliedFormat":1},{"version":"168d88e14e0d81fe170e0dadd38ae9d217476c11435ea640ddb9b7382bdb6c1f","impliedFormat":1},{"version":"8e04cf0688e0d921111659c2b55851957017148fa7b977b02727477d155b3c47","impliedFormat":1},{"version":"4f817d326453d8d578758889131c3cab8665a0aa252df1ea254a83b653422efa","impliedFormat":1},{"version":"89121c1bf2990f5219bfd802a3e7fc557de447c62058d6af68d6b6348d64499a","impliedFormat":1},{"version":"79b4369233a12c6fa4a07301ecb7085802c98f3a77cf9ab97eee27e1656f82e6","impliedFormat":1},{"version":"d4a22007b481fe2a2e6bfd3a42c00cd62d41edb36d30fc4697df2692e9891fc8","impliedFormat":1},{"version":"d3f2d715f57df3f04bf7b16dde01dec10366f64fce44503c92b8f78f614c1769","impliedFormat":1},{"version":"7e29f41b158de217f94cb9676bf9cbd0cd9b5a46e1985141ed36e075c52bf6ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac51dd7d31333793807a6abaa5ae168512b6131bd41d9c5b98477fc3b7800f9f","impliedFormat":1},{"version":"dc782ff85b2cb10075ecffc158af7bfb27ff97bf8491c917efea0c3d622d5ac4","impliedFormat":1},{"version":"be1cc4d94ea60cbe567bc29ed479d42587bf1e6cba490f123d329976b0fe4ee5","impliedFormat":1},{"version":"15fe687c59d62741b4494d5e623d497d55eb38966ecf5bea7f36e48fc3fbe15e","impliedFormat":1},{"version":"2c3b8be03577c98530ef9cb1a76e2c812636a871f367e9edf4c5f3ce702b77f8","affectsGlobalScope":true,"impliedFormat":1},{"version":"18942319aff2c9619e05c379641b571f0958506472a4b539f906be08fcccf806","impliedFormat":1},{"version":"1ba59c8bbeed2cb75b239bb12041582fa3e8ef32f8d0bd0ec802e38442d3f317","impliedFormat":1}],"root":[[117,121]],"options":{"composite":true,"declaration":true,"declarationMap":true,"module":99,"noFallthroughCasesInSwitch":true,"noUncheckedSideEffectImports":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":10,"tsBuildInfoFile":"./.tsbuildinfo","verbatimModuleSyntax":true},"referencedMap":[[252,1],[250,2],[122,2],[248,3],[247,2],[249,2],[255,4],[251,1],[253,5],[254,1],[256,6],[258,7],[261,8],[257,9],[263,10],[259,2],[265,11],[264,2],[269,12],[272,13],[273,2],[275,14],[270,2],[276,14],[277,2],[262,2],[186,15],[187,15],[188,16],[125,17],[189,18],[190,19],[191,20],[123,2],[192,21],[193,22],[194,23],[195,24],[196,25],[197,26],[198,26],[199,27],[200,28],[201,29],[202,30],[126,2],[124,2],[203,31],[204,32],[205,33],[246,34],[206,35],[207,36],[208,35],[209,37],[210,38],[212,39],[213,40],[214,40],[215,40],[216,41],[217,42],[218,43],[219,44],[220,45],[221,46],[222,46],[223,47],[224,2],[225,2],[226,48],[227,49],[228,48],[229,50],[230,51],[231,52],[232,53],[233,54],[234,55],[235,56],[236,57],[237,58],[238,59],[239,60],[240,61],[241,62],[242,63],[243,64],[127,35],[128,2],[129,65],[130,66],[131,2],[132,67],[133,2],[177,68],[178,69],[179,70],[180,70],[181,71],[182,2],[183,18],[184,72],[185,69],[244,73],[245,74],[267,2],[268,2],[281,75],[278,2],[280,76],[266,77],[271,78],[283,79],[282,2],[274,2],[284,2],[285,80],[260,2],[211,2],[279,2],[62,2],[63,2],[12,2],[11,2],[2,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[3,2],[21,2],[22,2],[4,2],[23,2],[27,2],[24,2],[25,2],[26,2],[28,2],[29,2],[30,2],[5,2],[31,2],[32,2],[33,2],[34,2],[6,2],[38,2],[35,2],[36,2],[37,2],[39,2],[7,2],[40,2],[45,2],[46,2],[41,2],[42,2],[43,2],[44,2],[8,2],[50,2],[47,2],[48,2],[49,2],[51,2],[9,2],[52,2],[53,2],[54,2],[56,2],[55,2],[57,2],[58,2],[10,2],[59,2],[1,2],[60,2],[61,2],[152,81],[165,82],[149,83],[166,84],[175,85],[140,86],[141,87],[139,88],[174,6],[169,89],[173,90],[143,91],[162,92],[142,93],[172,94],[137,95],[138,89],[144,96],[145,2],[151,97],[148,96],[135,98],[176,99],[167,100],[155,101],[154,96],[156,102],[159,103],[153,104],[157,105],[170,6],[146,106],[147,107],[160,108],[136,84],[164,109],[163,96],[150,107],[158,110],[161,111],[168,2],[134,2],[171,112],[81,113],[87,114],[82,113],[78,2],[76,115],[88,116],[85,115],[83,115],[80,115],[86,114],[84,115],[79,115],[75,113],[77,115],[110,117],[109,118],[113,119],[111,117],[112,117],[108,120],[119,121],[121,122],[120,123],[117,124],[118,125],[93,126],[104,127],[105,128],[92,127],[99,127],[94,127],[102,127],[97,2],[106,127],[100,129],[107,130],[89,2],[96,127],[103,127],[90,131],[95,2],[101,127],[98,2],[91,127],[115,132],[116,133],[114,2],[67,2],[69,134],[68,135],[71,134],[66,2],[73,134],[72,134],[74,136],[70,134],[64,2],[65,2]],"latestChangedDtsFile":"./utils.d.ts","version":"5.8.3"}
|
package/dist/calendar-rules.d.ts
CHANGED
|
@@ -7,15 +7,55 @@ import type { CalendarEvent } from '@bimetal/calendar-core';
|
|
|
7
7
|
import type { CalendarCommand } from '@bimetal/calendar-data';
|
|
8
8
|
import type { CalendarRule, CalendarRuleResult, RuleContext } from './types.js';
|
|
9
9
|
/**
|
|
10
|
-
*
|
|
11
|
-
*
|
|
10
|
+
* Verbietet überlappende Events — KALENDERWEIT.
|
|
11
|
+
*
|
|
12
|
+
* Serien werden expandiert und gegen die konkreten Instanzen geprüft.
|
|
13
|
+
*
|
|
14
|
+
* **Scope beachten (bimetal-153):** Diese Regel vergleicht gegen ALLE Events im
|
|
15
|
+
* Suchfenster, unabhängig von `resourceId`. Für einen RESSOURCENKALENDER ist
|
|
16
|
+
* das falsch — sie lehnt den Einsatz von Techniker A ab, weil Techniker B
|
|
17
|
+
* zeitgleich arbeitet. Dort gehört {@link noOverlapPerResource} hin.
|
|
18
|
+
*
|
|
12
19
|
* Applies to: CreateCalendarEvent, UpdateCalendarEvent, ModifyInstance
|
|
13
20
|
*/
|
|
14
21
|
export declare const noOverlap: CalendarRule;
|
|
22
|
+
/**
|
|
23
|
+
* Verbietet überlappende Events JE RESSOURCE (bimetal-153).
|
|
24
|
+
*
|
|
25
|
+
* Die Regel für Ressourcenkalender — den Anlass, aus dem es die
|
|
26
|
+
* resource-/timeline-Views überhaupt gibt. Zwei Techniker dürfen zeitgleich
|
|
27
|
+
* arbeiten; derselbe Techniker nicht zweimal.
|
|
28
|
+
*
|
|
29
|
+
* Mischfall, ausbuchstabiert: Konflikt besteht bei GLEICHER `resourceId` —
|
|
30
|
+
* und `undefined === undefined` zählt dazu. Zwei nicht zugeordnete Events
|
|
31
|
+
* konfligieren also weiterhin miteinander (das ist der bisherige
|
|
32
|
+
* Ein-Ressourcen-Fall), ein zugeordnetes und ein nicht zugeordnetes dagegen
|
|
33
|
+
* nicht. Wer stattdessen möchte, dass ein nicht zugeordnetes Event mit ALLEM
|
|
34
|
+
* kollidiert, braucht eine eigene Regel — das ist eine fachliche Entscheidung,
|
|
35
|
+
* keine Framework-Vorgabe.
|
|
36
|
+
*
|
|
37
|
+
* **Verglichen wird auf Gleichheit, nicht auf "leer" (R1, Review 7):** ein
|
|
38
|
+
* leerer String ist damit eine EIGENE Ressource, kein Synonym für "keine".
|
|
39
|
+
* Zwei nicht zugeordnete Events konfligieren also nicht, wenn eines `''`
|
|
40
|
+
* trägt und das andere gar nichts. Der Kalender-Controller normalisiert das
|
|
41
|
+
* für seine Dialog-Eingabe (`resourceId: d.resourceId || undefined`); wer
|
|
42
|
+
* Events programmatisch anlegt — oder aus JavaScript `null` einträgt — muss
|
|
43
|
+
* selbst normalisieren.
|
|
44
|
+
*
|
|
45
|
+
* Serien laufen über denselben Expansionspfad wie bei {@link noOverlap}.
|
|
46
|
+
*
|
|
47
|
+
* Applies to: CreateCalendarEvent, UpdateCalendarEvent, ModifyInstance
|
|
48
|
+
*/
|
|
49
|
+
export declare const noOverlapPerResource: CalendarRule;
|
|
15
50
|
/**
|
|
16
51
|
* Warns (but does not block) on overlapping events.
|
|
17
52
|
*/
|
|
53
|
+
/** Warnt bei Überlappung — KALENDERWEIT. Für Ressourcenkalender gehört
|
|
54
|
+
* {@link warnOnOverlapPerResource} her; siehe {@link noOverlap}. */
|
|
18
55
|
export declare const warnOnOverlap: CalendarRule;
|
|
56
|
+
/** Warnt bei Überlappung JE RESSOURCE — die weiche Variante von
|
|
57
|
+
* {@link noOverlapPerResource}, mit identischer Mischfall-Semantik. */
|
|
58
|
+
export declare const warnOnOverlapPerResource: CalendarRule;
|
|
19
59
|
/**
|
|
20
60
|
* Events must fall within configured working hours.
|
|
21
61
|
* Only applies to non-allDay events.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"calendar-rules.d.ts","sourceRoot":"","sources":["../src/calendar-rules.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,EAAE,aAAa,
|
|
1
|
+
{"version":3,"file":"calendar-rules.d.ts","sourceRoot":"","sources":["../src/calendar-rules.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,wBAAwB,CAAC;AAI5D,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,KAAK,EAAE,YAAY,EAAE,kBAAkB,EAAE,WAAW,EAAE,MAAM,YAAY,CAAC;AA+FhF;;;;;;;;;;;GAWG;AACH,eAAO,MAAM,SAAS,EAAE,YASvB,CAAC;AAEF;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,eAAO,MAAM,oBAAoB,EAAE,YASlC,CAAC;AAEF;;GAEG;AACH;qEACqE;AACrE,eAAO,MAAM,aAAa,EAAE,YAS3B,CAAC;AAEF;wEACwE;AACxE,eAAO,MAAM,wBAAwB,EAAE,YAStC,CAAC;AAIF;;;GAGG;AACH,eAAO,MAAM,gBAAgB,EAAE,YAoC9B,CAAC;AAIF;;GAEG;AACH,wBAAgB,WAAW,CAAC,OAAO,EAAE,MAAM,GAAG,YAAY,CAiBzD;AAED;;GAEG;AACH,wBAAgB,WAAW,CAAC,OAAO,EAAE,MAAM,GAAG,YAAY,CAiBzD;AAID;;;;GAIG;AACH,eAAO,MAAM,sBAAsB,EAAE,YAoBpC,CAAC;AAIF;;;GAGG;AACH,wBAAgB,UAAU,CAAC,CAAC,EAAE,MAAM,EAAE;IACpC,EAAE,EAAE,MAAM,CAAC;IACX,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,SAAS,eAAe,CAAC,MAAM,CAAC,EAAE,CAAC;IAC/C,QAAQ,EAAE,CAAC,KAAK,EAAE,aAAa,EAAE,MAAM,EAAE,CAAC,EAAE,OAAO,EAAE,eAAe,EAAE,OAAO,EAAE,WAAW,KAAK,kBAAkB,CAAC;CACnH,GAAG,YAAY,CAcf"}
|
package/dist/calendar-rules.js
CHANGED
|
@@ -3,7 +3,8 @@
|
|
|
3
3
|
* These cover common constraints applicable to any calendar.
|
|
4
4
|
* Consumers add domain-specific rules on top.
|
|
5
5
|
*/
|
|
6
|
-
import { overlaps,
|
|
6
|
+
import { overlaps, getDayOfWeek, isSameDay, addDays, toMinutesOfDay, durationInMinutes, MINUTES_PER_HOUR } from '@bimetal/temporal';
|
|
7
|
+
import { getDomain, expandRecurrence } from '@bimetal/calendar-core';
|
|
7
8
|
import { resolveTargetEvent } from './utils.js';
|
|
8
9
|
const PASS = { passed: true };
|
|
9
10
|
function reject(ruleId, message) {
|
|
@@ -12,15 +13,6 @@ function reject(ruleId, message) {
|
|
|
12
13
|
function warn(ruleId, message) {
|
|
13
14
|
return { passed: false, severity: 'warning', ruleId, message };
|
|
14
15
|
}
|
|
15
|
-
// ── No Overlap ──────────────────────────────────────────────────
|
|
16
|
-
/**
|
|
17
|
-
* Prevents overlapping events.
|
|
18
|
-
* Applies to: CreateCalendarEvent, UpdateCalendarEvent
|
|
19
|
-
*/
|
|
20
|
-
/**
|
|
21
|
-
* Collect all concrete time ranges from events, expanding recurring ones
|
|
22
|
-
* within a relevant range around the target event.
|
|
23
|
-
*/
|
|
24
16
|
function getConcreteEvents(events, excludeId, aroundRange) {
|
|
25
17
|
const result = [];
|
|
26
18
|
for (const e of events) {
|
|
@@ -29,66 +21,130 @@ function getConcreteEvents(events, excludeId, aroundRange) {
|
|
|
29
21
|
if (e.recurrence) {
|
|
30
22
|
const instances = expandRecurrence(e, aroundRange);
|
|
31
23
|
for (const inst of instances) {
|
|
32
|
-
|
|
24
|
+
// Die Instanz-Werte gewinnen, nicht die des Master-Events: eine
|
|
25
|
+
// GEÄNDERTE Ausnahme darf eine andere Ressource tragen, und genau die
|
|
26
|
+
// ist dann der richtige Vergleichspartner. `expandRecurrence` spreizt
|
|
27
|
+
// `...event` bzw. `...modEvent`, führt `resourceId` also mit.
|
|
28
|
+
result.push({ id: e.id, title: inst.event.title, timeRange: inst.event.timeRange, resourceId: inst.event.resourceId });
|
|
33
29
|
}
|
|
34
30
|
}
|
|
35
31
|
else if (overlaps(e.timeRange, aroundRange)) {
|
|
36
|
-
result.push({ id: e.id, title: e.title, timeRange: e.timeRange });
|
|
32
|
+
result.push({ id: e.id, title: e.title, timeRange: e.timeRange, resourceId: e.resourceId });
|
|
37
33
|
}
|
|
38
34
|
}
|
|
39
35
|
return result;
|
|
40
36
|
}
|
|
41
37
|
/**
|
|
42
|
-
*
|
|
43
|
-
*
|
|
38
|
+
* Der gemeinsame Kern beider Überlappungs-Regelpaare: sucht den ersten
|
|
39
|
+
* konkreten Konfliktpartner des Ziel-Events, oder `null`.
|
|
40
|
+
*
|
|
41
|
+
* Bewusst EINE Fundstelle für Suchfenster, Serien-Expansion und
|
|
42
|
+
* Exclude-Logik: die Ressourcen-Variante muss über denselben Expansionspfad
|
|
43
|
+
* laufen wie die kalenderweite. Eine nachgebaute Regel, die stattdessen
|
|
44
|
+
* `context.readModel.events` direkt liest, übersieht Serientermine
|
|
45
|
+
* vollständig — ein Fehler, der ohne Serien im Datenbestand nie auffällt.
|
|
46
|
+
*/
|
|
47
|
+
function findOverlapConflict(command, context, scope) {
|
|
48
|
+
const event = resolveTargetEvent(command, context);
|
|
49
|
+
if (!event)
|
|
50
|
+
return null;
|
|
51
|
+
// Suchfenster um das Ziel-Event (±30 Tage für die Serien-Expansion)
|
|
52
|
+
const searchRange = {
|
|
53
|
+
start: addDays(event.timeRange.start, -30),
|
|
54
|
+
end: addDays(event.timeRange.end, 30),
|
|
55
|
+
};
|
|
56
|
+
const excludeId = command.type === 'ModifyInstance'
|
|
57
|
+
? command.payload.masterEventId
|
|
58
|
+
: event.id;
|
|
59
|
+
const concrete = getConcreteEvents(context.readModel.events, excludeId, searchRange);
|
|
60
|
+
const conflicting = concrete.find(e => overlaps(e.timeRange, event.timeRange)
|
|
61
|
+
// Ressourcen-Scope: Konflikt nur bei GLEICHER Zuordnung. `undefined ===
|
|
62
|
+
// undefined` ist dabei Absicht — zwei nicht zugeordnete Events sind der
|
|
63
|
+
// bisherige Ein-Ressourcen-Fall und konfligieren weiterhin; ein
|
|
64
|
+
// zugeordnetes und ein nicht zugeordnetes dagegen nicht (der Mischfall).
|
|
65
|
+
&& (scope === 'calendar' || e.resourceId === event.resourceId));
|
|
66
|
+
return conflicting ? { target: event, conflicting } : null;
|
|
67
|
+
}
|
|
68
|
+
/**
|
|
69
|
+
* Verbietet überlappende Events — KALENDERWEIT.
|
|
70
|
+
*
|
|
71
|
+
* Serien werden expandiert und gegen die konkreten Instanzen geprüft.
|
|
72
|
+
*
|
|
73
|
+
* **Scope beachten (bimetal-153):** Diese Regel vergleicht gegen ALLE Events im
|
|
74
|
+
* Suchfenster, unabhängig von `resourceId`. Für einen RESSOURCENKALENDER ist
|
|
75
|
+
* das falsch — sie lehnt den Einsatz von Techniker A ab, weil Techniker B
|
|
76
|
+
* zeitgleich arbeitet. Dort gehört {@link noOverlapPerResource} hin.
|
|
77
|
+
*
|
|
44
78
|
* Applies to: CreateCalendarEvent, UpdateCalendarEvent, ModifyInstance
|
|
45
79
|
*/
|
|
46
80
|
export const noOverlap = {
|
|
47
81
|
id: 'calendar.noOverlap',
|
|
48
|
-
description: 'Events must not overlap with existing events',
|
|
82
|
+
description: 'Events must not overlap with existing events (calendar-wide)',
|
|
49
83
|
appliesTo: ['CreateCalendarEvent', 'UpdateCalendarEvent', 'ModifyInstance'],
|
|
50
84
|
evaluate(command, context) {
|
|
51
|
-
const
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
85
|
+
const hit = findOverlapConflict(command, context, 'calendar');
|
|
86
|
+
return hit ? reject(this.id, `Overlaps with "${hit.conflicting.title}"`) : PASS;
|
|
87
|
+
},
|
|
88
|
+
};
|
|
89
|
+
/**
|
|
90
|
+
* Verbietet überlappende Events JE RESSOURCE (bimetal-153).
|
|
91
|
+
*
|
|
92
|
+
* Die Regel für Ressourcenkalender — den Anlass, aus dem es die
|
|
93
|
+
* resource-/timeline-Views überhaupt gibt. Zwei Techniker dürfen zeitgleich
|
|
94
|
+
* arbeiten; derselbe Techniker nicht zweimal.
|
|
95
|
+
*
|
|
96
|
+
* Mischfall, ausbuchstabiert: Konflikt besteht bei GLEICHER `resourceId` —
|
|
97
|
+
* und `undefined === undefined` zählt dazu. Zwei nicht zugeordnete Events
|
|
98
|
+
* konfligieren also weiterhin miteinander (das ist der bisherige
|
|
99
|
+
* Ein-Ressourcen-Fall), ein zugeordnetes und ein nicht zugeordnetes dagegen
|
|
100
|
+
* nicht. Wer stattdessen möchte, dass ein nicht zugeordnetes Event mit ALLEM
|
|
101
|
+
* kollidiert, braucht eine eigene Regel — das ist eine fachliche Entscheidung,
|
|
102
|
+
* keine Framework-Vorgabe.
|
|
103
|
+
*
|
|
104
|
+
* **Verglichen wird auf Gleichheit, nicht auf "leer" (R1, Review 7):** ein
|
|
105
|
+
* leerer String ist damit eine EIGENE Ressource, kein Synonym für "keine".
|
|
106
|
+
* Zwei nicht zugeordnete Events konfligieren also nicht, wenn eines `''`
|
|
107
|
+
* trägt und das andere gar nichts. Der Kalender-Controller normalisiert das
|
|
108
|
+
* für seine Dialog-Eingabe (`resourceId: d.resourceId || undefined`); wer
|
|
109
|
+
* Events programmatisch anlegt — oder aus JavaScript `null` einträgt — muss
|
|
110
|
+
* selbst normalisieren.
|
|
111
|
+
*
|
|
112
|
+
* Serien laufen über denselben Expansionspfad wie bei {@link noOverlap}.
|
|
113
|
+
*
|
|
114
|
+
* Applies to: CreateCalendarEvent, UpdateCalendarEvent, ModifyInstance
|
|
115
|
+
*/
|
|
116
|
+
export const noOverlapPerResource = {
|
|
117
|
+
id: 'calendar.noOverlapPerResource',
|
|
118
|
+
description: 'Events must not overlap within the same resource',
|
|
119
|
+
appliesTo: ['CreateCalendarEvent', 'UpdateCalendarEvent', 'ModifyInstance'],
|
|
120
|
+
evaluate(command, context) {
|
|
121
|
+
const hit = findOverlapConflict(command, context, 'resource');
|
|
122
|
+
return hit ? reject(this.id, `Overlaps with "${hit.conflicting.title}"`) : PASS;
|
|
67
123
|
},
|
|
68
124
|
};
|
|
69
125
|
/**
|
|
70
126
|
* Warns (but does not block) on overlapping events.
|
|
71
127
|
*/
|
|
128
|
+
/** Warnt bei Überlappung — KALENDERWEIT. Für Ressourcenkalender gehört
|
|
129
|
+
* {@link warnOnOverlapPerResource} her; siehe {@link noOverlap}. */
|
|
72
130
|
export const warnOnOverlap = {
|
|
73
131
|
id: 'calendar.warnOnOverlap',
|
|
74
|
-
description: 'Warns when events overlap',
|
|
132
|
+
description: 'Warns when events overlap (calendar-wide)',
|
|
75
133
|
appliesTo: ['CreateCalendarEvent', 'UpdateCalendarEvent', 'ModifyInstance'],
|
|
76
134
|
evaluate(command, context) {
|
|
77
|
-
const
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
const
|
|
89
|
-
return conflicting
|
|
90
|
-
? warn(this.id, `Overlaps with "${conflicting.title}"`)
|
|
91
|
-
: PASS;
|
|
135
|
+
const hit = findOverlapConflict(command, context, 'calendar');
|
|
136
|
+
return hit ? warn(this.id, `Overlaps with "${hit.conflicting.title}"`) : PASS;
|
|
137
|
+
},
|
|
138
|
+
};
|
|
139
|
+
/** Warnt bei Überlappung JE RESSOURCE — die weiche Variante von
|
|
140
|
+
* {@link noOverlapPerResource}, mit identischer Mischfall-Semantik. */
|
|
141
|
+
export const warnOnOverlapPerResource = {
|
|
142
|
+
id: 'calendar.warnOnOverlapPerResource',
|
|
143
|
+
description: 'Warns when events overlap within the same resource',
|
|
144
|
+
appliesTo: ['CreateCalendarEvent', 'UpdateCalendarEvent', 'ModifyInstance'],
|
|
145
|
+
evaluate(command, context) {
|
|
146
|
+
const hit = findOverlapConflict(command, context, 'resource');
|
|
147
|
+
return hit ? warn(this.id, `Overlaps with "${hit.conflicting.title}"`) : PASS;
|
|
92
148
|
},
|
|
93
149
|
};
|
|
94
150
|
// ── Working Hours ───────────────────────────────────────────────
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"calendar-rules.js","sourceRoot":"","sources":["../src/calendar-rules.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,OAAO,
|
|
1
|
+
{"version":3,"file":"calendar-rules.js","sourceRoot":"","sources":["../src/calendar-rules.ts"],"names":[],"mappings":"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"}
|
package/dist/index.d.ts
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
export type { CalendarRule, CalendarRuleResult, RuleContext, RuleEngine, RuleEngineResult, RuleSeverity, CallerInfo, Rule, } from './types.js';
|
|
13
13
|
export { createRuleEngine } from '@bimetal/rule-engine';
|
|
14
|
-
export { noOverlap, warnOnOverlap, workingHoursOnly, minDuration, maxDuration, minGranularityDuration, domainRule, } from './calendar-rules.js';
|
|
14
|
+
export { noOverlap, noOverlapPerResource, warnOnOverlap, warnOnOverlapPerResource, workingHoursOnly, minDuration, maxDuration, minGranularityDuration, domainRule, } from './calendar-rules.js';
|
|
15
15
|
export { withRules, RuleViolationError } from './store-integration.js';
|
|
16
16
|
export type { RuleAwareStore } from './store-integration.js';
|
|
17
17
|
export { resolveTargetEvent } from './utils.js';
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAOH,YAAY,EACV,YAAY,EACZ,kBAAkB,EAClB,WAAW,EACX,UAAU,EACV,gBAAgB,EAChB,YAAY,EACZ,UAAU,EACV,IAAI,GACL,MAAM,YAAY,CAAC;AAGpB,OAAO,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAOH,YAAY,EACV,YAAY,EACZ,kBAAkB,EAClB,WAAW,EACX,UAAU,EACV,gBAAgB,EAChB,YAAY,EACZ,UAAU,EACV,IAAI,GACL,MAAM,YAAY,CAAC;AAGpB,OAAO,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AAOxD,OAAO,EACL,SAAS,EACT,oBAAoB,EACpB,aAAa,EACb,wBAAwB,EACxB,gBAAgB,EAChB,WAAW,EACX,WAAW,EACX,sBAAsB,EACtB,UAAU,GACX,MAAM,qBAAqB,CAAC;AAG7B,OAAO,EAAE,SAAS,EAAE,kBAAkB,EAAE,MAAM,wBAAwB,CAAC;AACvE,YAAY,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC;AAG7D,OAAO,EAAE,kBAAkB,EAAE,MAAM,YAAY,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -12,7 +12,11 @@
|
|
|
12
12
|
// ── Engine (re-exported from @bimetal/rule-engine) ──────────────
|
|
13
13
|
export { createRuleEngine } from '@bimetal/rule-engine';
|
|
14
14
|
// ── Generic Calendar Rules ──────────────────────────────────────
|
|
15
|
-
|
|
15
|
+
// The advertised calendar rule pack. All rules are exported, unit-tested (__tests__/edge-cases.test.ts,
|
|
16
|
+
// engine.test.ts) and shown in cookbook/migration snippets — the behavior stands. What remains for the RC
|
|
17
|
+
// (freeze plan D7) is exercising them in a SHIPPED demo/product composition, not the consumption itself.
|
|
18
|
+
// Frozen as guaranteed-v1 signatures (ADR-025).
|
|
19
|
+
export { noOverlap, noOverlapPerResource, warnOnOverlap, warnOnOverlapPerResource, workingHoursOnly, minDuration, maxDuration, minGranularityDuration, domainRule, } from './calendar-rules.js';
|
|
16
20
|
// ── Store Integration ───────────────────────────────────────────
|
|
17
21
|
export { withRules, RuleViolationError } from './store-integration.js';
|
|
18
22
|
// ── Utility (occasionally useful for custom rules) ──────────────
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAkBH,mEAAmE;AACnE,OAAO,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AAExD,mEAAmE;AACnE,OAAO,EACL,SAAS,EACT,aAAa,EACb,gBAAgB,EAChB,WAAW,EACX,WAAW,EACX,sBAAsB,EACtB,UAAU,GACX,MAAM,qBAAqB,CAAC;AAE7B,mEAAmE;AACnE,OAAO,EAAE,SAAS,EAAE,kBAAkB,EAAE,MAAM,wBAAwB,CAAC;AAGvE,mEAAmE;AACnE,OAAO,EAAE,kBAAkB,EAAE,MAAM,YAAY,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAkBH,mEAAmE;AACnE,OAAO,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AAExD,mEAAmE;AACnE,wGAAwG;AACxG,0GAA0G;AAC1G,yGAAyG;AACzG,gDAAgD;AAChD,OAAO,EACL,SAAS,EACT,oBAAoB,EACpB,aAAa,EACb,wBAAwB,EACxB,gBAAgB,EAChB,WAAW,EACX,WAAW,EACX,sBAAsB,EACtB,UAAU,GACX,MAAM,qBAAqB,CAAC;AAE7B,mEAAmE;AACnE,OAAO,EAAE,SAAS,EAAE,kBAAkB,EAAE,MAAM,wBAAwB,CAAC;AAGvE,mEAAmE;AACnE,OAAO,EAAE,kBAAkB,EAAE,MAAM,YAAY,CAAC"}
|
|
@@ -7,10 +7,12 @@
|
|
|
7
7
|
import type { CoreConfig } from '@bimetal/calendar-core';
|
|
8
8
|
import type { CalendarStore } from '@bimetal/calendar-data';
|
|
9
9
|
import type { RuleEngine, CallerInfo, CalendarRuleResult } from './types.js';
|
|
10
|
+
/** Thrown by {@link withRules} when a dispatched command fails one or more error-severity rules. */
|
|
10
11
|
export declare class RuleViolationError extends Error {
|
|
11
12
|
readonly violations: CalendarRuleResult[];
|
|
12
13
|
constructor(violations: CalendarRuleResult[]);
|
|
13
14
|
}
|
|
15
|
+
/** A {@link CalendarStore} wrapped with rule evaluation on every dispatch. */
|
|
14
16
|
export interface RuleAwareStore extends CalendarStore {
|
|
15
17
|
/** Warnings from the last dispatch (if rules produced warnings but no errors). */
|
|
16
18
|
readonly lastWarnings: readonly CalendarRuleResult[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"store-integration.d.ts","sourceRoot":"","sources":["../src/store-integration.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,KAAK,EAAoB,UAAU,EAAiB,MAAM,wBAAwB,CAAC;AAE1F,OAAO,KAAK,EAAE,aAAa,EAAwC,MAAM,wBAAwB,CAAC;AAGlG,OAAO,KAAK,EAAE,UAAU,EAAoB,UAAU,EAAE,kBAAkB,EAAE,MAAM,YAAY,CAAC;AAE/F,qBAAa,kBAAmB,SAAQ,KAAK;aACf,UAAU,EAAE,kBAAkB,EAAE;gBAAhC,UAAU,EAAE,kBAAkB,EAAE;CAI7D;AAED,MAAM,WAAW,cAAe,SAAQ,aAAa;IACnD,kFAAkF;IAClF,QAAQ,CAAC,YAAY,EAAE,SAAS,kBAAkB,EAAE,CAAC;CACtD;AAED;;;;;;GAMG;AACH,wBAAgB,SAAS,CACvB,KAAK,EAAE,aAAa,EACpB,MAAM,EAAE,UAAU,EAClB,MAAM,EAAE,UAAU,EAClB,MAAM,CAAC,EAAE,UAAU,GAClB,cAAc,
|
|
1
|
+
{"version":3,"file":"store-integration.d.ts","sourceRoot":"","sources":["../src/store-integration.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,KAAK,EAAoB,UAAU,EAAiB,MAAM,wBAAwB,CAAC;AAE1F,OAAO,KAAK,EAAE,aAAa,EAAwC,MAAM,wBAAwB,CAAC;AAGlG,OAAO,KAAK,EAAE,UAAU,EAAoB,UAAU,EAAE,kBAAkB,EAAE,MAAM,YAAY,CAAC;AAE/F,oGAAoG;AACpG,qBAAa,kBAAmB,SAAQ,KAAK;aACf,UAAU,EAAE,kBAAkB,EAAE;gBAAhC,UAAU,EAAE,kBAAkB,EAAE;CAI7D;AAED,8EAA8E;AAC9E,MAAM,WAAW,cAAe,SAAQ,aAAa;IACnD,kFAAkF;IAClF,QAAQ,CAAC,YAAY,EAAE,SAAS,kBAAkB,EAAE,CAAC;CACtD;AAED;;;;;;GAMG;AACH,wBAAgB,SAAS,CACvB,KAAK,EAAE,aAAa,EACpB,MAAM,EAAE,UAAU,EAClB,MAAM,EAAE,UAAU,EAClB,MAAM,CAAC,EAAE,UAAU,GAClB,cAAc,CAyHhB"}
|
|
@@ -4,9 +4,10 @@
|
|
|
4
4
|
* Wraps a CalendarStore so that rules are evaluated before every dispatch.
|
|
5
5
|
* Errors block the command. Warnings are collected and available to the consumer.
|
|
6
6
|
*/
|
|
7
|
-
import { now as coreNow } from '@bimetal/
|
|
8
|
-
import { undoLastChange, calendarAggregate, calendarProjection } from '@bimetal/calendar-data';
|
|
7
|
+
import { now as coreNow } from '@bimetal/temporal';
|
|
8
|
+
import { undoLastChange, redoLastChange, calendarAggregate, calendarProjection } from '@bimetal/calendar-data';
|
|
9
9
|
import { wrapIntents } from '@bimetal/event-sourcing';
|
|
10
|
+
/** Thrown by {@link withRules} when a dispatched command fails one or more error-severity rules. */
|
|
10
11
|
export class RuleViolationError extends Error {
|
|
11
12
|
violations;
|
|
12
13
|
constructor(violations) {
|
|
@@ -94,9 +95,38 @@ export function withRules(store, engine, config, caller) {
|
|
|
94
95
|
// read (v0.30 perf spine) delegates straight through, refs intact.
|
|
95
96
|
peekEvents: () => store.peekEvents(),
|
|
96
97
|
getHistory: (entityId) => store.getHistory(entityId),
|
|
97
|
-
// Route undo through dispatch so UndoLastChange rules are evaluated
|
|
98
|
-
|
|
98
|
+
// Route undo through dispatch so UndoLastChange rules are evaluated.
|
|
99
|
+
// bimetal-155: die Frame-Marke wird HIER geprüft, nicht im Basis-Store —
|
|
100
|
+
// dieser Pfad geht bewusst nicht über `store.undo()`, sondern dispatcht das
|
|
101
|
+
// Undo-Kommando selbst (damit die Regeln laufen). Passt die gebuchte Marke
|
|
102
|
+
// nicht mehr auf den obersten Frame, hat ein anderer Writer gepusht: dann
|
|
103
|
+
// ist das Undo ein No-op, statt dessen Änderung zurückzunehmen.
|
|
104
|
+
undo: (entityId, opts) => {
|
|
105
|
+
if (opts?.expectFrame !== undefined && store.peekUndoFrame?.(entityId) !== opts.expectFrame) {
|
|
106
|
+
return Promise.resolve([]);
|
|
107
|
+
}
|
|
108
|
+
return guarded.dispatch(undoLastChange(entityId));
|
|
109
|
+
},
|
|
110
|
+
peekUndoFrame: (entityId) => store.peekUndoFrame?.(entityId) ?? null,
|
|
111
|
+
get framesGeneration() { return store.framesGeneration ?? 0; },
|
|
112
|
+
// Redo mirrors undo: routed through dispatch so RedoLastChange rules are evaluated too.
|
|
113
|
+
// bimetal-159: und mit demselben Marken-Zaun — auch dieser Pfad geht nicht
|
|
114
|
+
// über `store.redo()`, sondern dispatcht selbst, damit die Regeln laufen.
|
|
115
|
+
redo: (entityId, opts) => {
|
|
116
|
+
if (opts?.expectFrame !== undefined && store.peekRedoFrame?.(entityId) !== opts.expectFrame) {
|
|
117
|
+
return Promise.resolve([]);
|
|
118
|
+
}
|
|
119
|
+
return guarded.dispatch(redoLastChange(entityId));
|
|
120
|
+
},
|
|
121
|
+
peekRedoFrame: (entityId) => store.peekRedoFrame?.(entityId) ?? null,
|
|
122
|
+
// The undo/redo-availability peeks read the same live aggregate stacks; rules never
|
|
123
|
+
// change whether there is something to undo, so they delegate straight through.
|
|
124
|
+
canUndo: (entityId) => store.canUndo(entityId),
|
|
125
|
+
canRedo: (entityId) => store.canRedo(entityId),
|
|
99
126
|
subscribe: (handler) => store.subscribe(handler),
|
|
127
|
+
// Notification-only channel delegates straight through: rules never touch the
|
|
128
|
+
// read model, so the payload-less notify passes unchanged (v0.30/mcp-74 spine).
|
|
129
|
+
subscribeInternal: (listener) => store.subscribeInternal(listener),
|
|
100
130
|
getAggregateSnapshot: () => store.getAggregateSnapshot(),
|
|
101
131
|
destroy: () => store.destroy?.(),
|
|
102
132
|
get version() { return store.version; },
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"store-integration.js","sourceRoot":"","sources":["../src/store-integration.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAGH,OAAO,EAAE,GAAG,IAAI,OAAO,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"store-integration.js","sourceRoot":"","sources":["../src/store-integration.ts"],"names":[],"mappings":"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"}
|
package/dist/types.d.ts
CHANGED
|
@@ -31,6 +31,7 @@ export interface CalendarRule extends Rule<CalendarCommand, RuleContext> {
|
|
|
31
31
|
}
|
|
32
32
|
/** Calendar-specific alias of {@link RuleResult}. */
|
|
33
33
|
export type CalendarRuleResult = RuleResult;
|
|
34
|
+
/** Rule engine specialized for calendar commands and {@link RuleContext}. */
|
|
34
35
|
export type RuleEngine = GenericRuleEngine<CalendarCommand, RuleContext>;
|
|
35
36
|
export type { RuleEngineResult, RuleSeverity, CallerInfo };
|
|
36
37
|
export type { Rule } from '@bimetal/rule-engine';
|
package/dist/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAEH,OAAO,KAAK,EAAE,gBAAgB,EAAE,UAAU,EAAE,MAAM,wBAAwB,CAAC;AAC3E,OAAO,KAAK,EAAE,eAAe,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AACjF,OAAO,KAAK,EACV,IAAI,EACJ,WAAW,IAAI,kBAAkB,EACjC,UAAU,IAAI,iBAAiB,EAC/B,UAAU,EACV,gBAAgB,EAChB,YAAY,EACZ,UAAU,EACX,MAAM,sBAAsB,CAAC;AAI9B;;;GAGG;AACH,MAAM,WAAW,WAAY,SAAQ,kBAAkB,CAAC,iBAAiB,CAAC;IACxE,QAAQ,CAAC,MAAM,EAAE,UAAU,CAAC;IAC5B,QAAQ,CAAC,GAAG,EAAE,gBAAgB,CAAC;IAC/B,QAAQ,CAAC,MAAM,CAAC,EAAE,UAAU,CAAC;CAC9B;AAID;;;;GAIG;AACH,MAAM,WAAW,YAAa,SAAQ,IAAI,CAAC,eAAe,EAAE,WAAW,CAAC;IACtE,yEAAyE;IACzE,QAAQ,CAAC,SAAS,CAAC,EAAE,MAAM,CAAC;CAC7B;AAED,qDAAqD;AACrD,MAAM,MAAM,kBAAkB,GAAG,UAAU,CAAC;AAI5C,MAAM,MAAM,UAAU,GAAG,iBAAiB,CAAC,eAAe,EAAE,WAAW,CAAC,CAAC;AASzE,YAAY,EAAE,gBAAgB,EAAE,YAAY,EAAE,UAAU,EAAE,CAAC;AAC3D,YAAY,EAAE,IAAI,EAAE,MAAM,sBAAsB,CAAC"}
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAEH,OAAO,KAAK,EAAE,gBAAgB,EAAE,UAAU,EAAE,MAAM,wBAAwB,CAAC;AAC3E,OAAO,KAAK,EAAE,eAAe,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AACjF,OAAO,KAAK,EACV,IAAI,EACJ,WAAW,IAAI,kBAAkB,EACjC,UAAU,IAAI,iBAAiB,EAC/B,UAAU,EACV,gBAAgB,EAChB,YAAY,EACZ,UAAU,EACX,MAAM,sBAAsB,CAAC;AAI9B;;;GAGG;AACH,MAAM,WAAW,WAAY,SAAQ,kBAAkB,CAAC,iBAAiB,CAAC;IACxE,QAAQ,CAAC,MAAM,EAAE,UAAU,CAAC;IAC5B,QAAQ,CAAC,GAAG,EAAE,gBAAgB,CAAC;IAC/B,QAAQ,CAAC,MAAM,CAAC,EAAE,UAAU,CAAC;CAC9B;AAID;;;;GAIG;AACH,MAAM,WAAW,YAAa,SAAQ,IAAI,CAAC,eAAe,EAAE,WAAW,CAAC;IACtE,yEAAyE;IACzE,QAAQ,CAAC,SAAS,CAAC,EAAE,MAAM,CAAC;CAC7B;AAED,qDAAqD;AACrD,MAAM,MAAM,kBAAkB,GAAG,UAAU,CAAC;AAI5C,6EAA6E;AAC7E,MAAM,MAAM,UAAU,GAAG,iBAAiB,CAAC,eAAe,EAAE,WAAW,CAAC,CAAC;AASzE,YAAY,EAAE,gBAAgB,EAAE,YAAY,EAAE,UAAU,EAAE,CAAC;AAC3D,YAAY,EAAE,IAAI,EAAE,MAAM,sBAAsB,CAAC"}
|
package/dist/utils.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { resolveInstanceRange } from '@bimetal/calendar-core';
|
|
2
2
|
/** Resolve the event that a command targets (new or existing, with merged changes). */
|
|
3
3
|
export function resolveTargetEvent(command, context) {
|
|
4
4
|
switch (command.type) {
|
|
@@ -21,7 +21,7 @@ export function resolveTargetEvent(command, context) {
|
|
|
21
21
|
return undefined;
|
|
22
22
|
// Compute concrete instance range from master + originalDate, then apply changes
|
|
23
23
|
const { originalDate } = command.payload;
|
|
24
|
-
const instanceRange =
|
|
24
|
+
const instanceRange = resolveInstanceRange(master, originalDate);
|
|
25
25
|
return { ...master, timeRange: instanceRange, ...command.payload.changes, recurrence: undefined, exceptions: undefined };
|
|
26
26
|
}
|
|
27
27
|
case 'DeleteInstance':
|
package/dist/utils.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"utils.js","sourceRoot":"","sources":["../src/utils.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"utils.js","sourceRoot":"","sources":["../src/utils.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAI9D,uFAAuF;AACvF,MAAM,UAAU,kBAAkB,CAAC,OAAwB,EAAE,OAAoB;IAC/E,QAAQ,OAAO,CAAC,IAAI,EAAE,CAAC;QACrB,KAAK,qBAAqB;YACxB,OAAO,OAAO,CAAC,OAAO,CAAC,KAAK,CAAC;QAC/B,KAAK,qBAAqB,CAAC,CAAC,CAAC;YAC3B,MAAM,QAAQ,GAAG,OAAO,CAAC,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,OAAO,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;YACtF,IAAI,CAAC,QAAQ;gBAAE,OAAO,SAAS,CAAC;YAChC,yEAAyE;YACzE,OAAO,EAAE,GAAG,QAAQ,EAAE,GAAG,OAAO,CAAC,OAAO,CAAC,OAAO,EAAE,CAAC;QACrD,CAAC;QACD,KAAK,qBAAqB;YACxB,OAAO,OAAO,CAAC,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,OAAO,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;QAC9E,KAAK,gBAAgB;YACnB,OAAO,OAAO,CAAC,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,OAAO,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;QAC/E,KAAK,gBAAgB,CAAC,CAAC,CAAC;YACtB,MAAM,MAAM,GAAG,OAAO,CAAC,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,OAAO,CAAC,OAAO,CAAC,aAAa,CAAC,CAAC;YAC1F,IAAI,CAAC,MAAM;gBAAE,OAAO,SAAS,CAAC;YAC9B,iFAAiF;YACjF,MAAM,EAAE,YAAY,EAAE,GAAG,OAAO,CAAC,OAAO,CAAC;YACzC,MAAM,aAAa,GAAG,oBAAoB,CAAC,MAAM,EAAE,YAAY,CAAC,CAAC;YACjE,OAAO,EAAE,GAAG,MAAM,EAAE,SAAS,EAAE,aAAa,EAAE,GAAG,OAAO,CAAC,OAAO,CAAC,OAAO,EAAE,UAAU,EAAE,SAAS,EAAE,UAAU,EAAE,SAAS,EAAE,CAAC;QAC3H,CAAC;QACD,KAAK,gBAAgB;YACnB,OAAO,OAAO,CAAC,SAAS,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,OAAO,CAAC,OAAO,CAAC,aAAa,CAAC,CAAC;QACpF;YACE,OAAO,SAAS,CAAC;IACrB,CAAC;AACH,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bimetal/calendar-rules",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.36.0",
|
|
4
4
|
"description": "Calendar-domain rule pack: noOverlap, workingHoursOnly, min/maxDuration, domainRule, withRules store integration. Built on @bimetal/rule-engine.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -25,17 +25,17 @@
|
|
|
25
25
|
"prepublishOnly": "npm run build"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@bimetal/calendar-data": "^0.
|
|
29
|
-
"@bimetal/
|
|
30
|
-
"@bimetal/calendar-core": "^0.
|
|
31
|
-
"@bimetal/event-sourcing": "^0.
|
|
32
|
-
"@bimetal/rule-engine": "^0.
|
|
28
|
+
"@bimetal/calendar-data": "^0.36.0",
|
|
29
|
+
"@bimetal/temporal": "^0.36.0",
|
|
30
|
+
"@bimetal/calendar-core": "^0.36.0",
|
|
31
|
+
"@bimetal/event-sourcing": "^0.36.0",
|
|
32
|
+
"@bimetal/rule-engine": "^0.36.0"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"vitest": "^3.2.1"
|
|
36
36
|
},
|
|
37
37
|
"sideEffects": false,
|
|
38
|
-
"license": "
|
|
38
|
+
"license": "Apache-2.0",
|
|
39
39
|
"author": "Andreas Biederbeck",
|
|
40
40
|
"repository": {
|
|
41
41
|
"type": "git",
|