@contractual/types 0.1.0-dev.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 ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (C) 2025 Omer Morad
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,144 @@
1
+ /**
2
+ * Supported contract types in Contractual.
3
+ *
4
+ * @remarks
5
+ * - `openapi` - OpenAPI 3.x specifications
6
+ * - `json-schema` - JSON Schema (Draft-07, 2019-09, 2020-12)
7
+ * - `asyncapi` - AsyncAPI 2.x/3.x specifications
8
+ * - `odcs` - Open Data Contract Standard v3.x
9
+ */
10
+ export type ContractType = 'openapi' | 'json-schema' | 'asyncapi' | 'odcs';
11
+ /**
12
+ * All valid contract type values as a readonly array.
13
+ * Useful for runtime validation and iteration.
14
+ */
15
+ export declare const CONTRACT_TYPES: readonly ["openapi", "json-schema", "asyncapi", "odcs"];
16
+ /**
17
+ * Definition of a single contract in the configuration file.
18
+ *
19
+ * @example
20
+ * ```yaml
21
+ * contracts:
22
+ * - name: orders-api
23
+ * type: openapi
24
+ * path: ./specs/orders.openapi.yaml
25
+ * ```
26
+ */
27
+ export interface ContractDefinition {
28
+ /** Unique identifier for the contract, used in changeset files and version history */
29
+ name: string;
30
+ /** Type of schema format */
31
+ type: ContractType;
32
+ /** Path to spec file, relative to config (can be glob pattern) */
33
+ path: string;
34
+ /** Override linter: tool name, custom command with {spec} placeholder, or false to disable */
35
+ lint?: string | false;
36
+ /** Override differ: tool name, custom command with {old} {new} placeholders, or false to disable */
37
+ breaking?: string | false;
38
+ /** Output generation commands (Phase 2) */
39
+ generate?: string[];
40
+ }
41
+ /**
42
+ * Changeset behavior configuration.
43
+ */
44
+ export interface ChangesetConfig {
45
+ /** Auto-detect change classifications from structural diff (default: true) */
46
+ autoDetect?: boolean;
47
+ /** Require changeset for spec changes in PRs (default: true) */
48
+ requireOnPR?: boolean;
49
+ }
50
+ /**
51
+ * AI provider types supported by Contractual.
52
+ */
53
+ export type AIProvider = 'anthropic';
54
+ /**
55
+ * AI feature toggles.
56
+ */
57
+ export interface AIFeatures {
58
+ /** Enable PR change explanations */
59
+ explain?: boolean;
60
+ /** Enable AI-enriched changelog entries */
61
+ changelog?: boolean;
62
+ /** Enable spec metadata enhancement (auto-fill descriptions, examples) */
63
+ enhance?: boolean;
64
+ }
65
+ /**
66
+ * AI/LLM integration configuration.
67
+ *
68
+ * @remarks
69
+ * All AI features gracefully degrade when no API key is provided.
70
+ */
71
+ export interface AIConfig {
72
+ /** AI provider (only 'anthropic' supported currently) */
73
+ provider?: AIProvider;
74
+ /** Model identifier to use */
75
+ model?: string;
76
+ /** Feature toggles */
77
+ features?: AIFeatures;
78
+ }
79
+ /**
80
+ * Versioning mode for contracts.
81
+ *
82
+ * - `independent` - Each contract has its own version (like Lerna independent mode)
83
+ * - `fixed` - All contracts share the same version
84
+ */
85
+ export type VersioningMode = 'independent' | 'fixed';
86
+ /**
87
+ * Versioning configuration.
88
+ */
89
+ export interface VersioningConfig {
90
+ /** Versioning mode (default: 'independent') */
91
+ mode: VersioningMode;
92
+ }
93
+ /**
94
+ * Root configuration for contractual.yaml.
95
+ *
96
+ * @example
97
+ * ```yaml
98
+ * contracts:
99
+ * - name: orders-api
100
+ * type: openapi
101
+ * path: ./specs/orders.openapi.yaml
102
+ *
103
+ * ai:
104
+ * features:
105
+ * explain: true
106
+ * changelog: true
107
+ * ```
108
+ */
109
+ export interface ContractualConfig {
110
+ /** List of contract definitions */
111
+ contracts: ContractDefinition[];
112
+ /** Versioning configuration */
113
+ versioning?: VersioningConfig;
114
+ /** Changeset behavior configuration */
115
+ changeset?: ChangesetConfig;
116
+ /** AI/LLM integration configuration */
117
+ ai?: AIConfig;
118
+ }
119
+ /**
120
+ * Resolved contract with absolute paths and validated data.
121
+ */
122
+ export interface ResolvedContract extends ContractDefinition {
123
+ /** Absolute path to the spec file */
124
+ absolutePath: string;
125
+ }
126
+ /**
127
+ * Fully resolved configuration with absolute paths.
128
+ */
129
+ export interface ResolvedConfig extends Omit<ContractualConfig, 'contracts'> {
130
+ /** Resolved contracts with absolute paths */
131
+ contracts: ResolvedContract[];
132
+ /** Directory containing contractual.yaml */
133
+ configDir: string;
134
+ /** Absolute path to contractual.yaml */
135
+ configPath: string;
136
+ }
137
+ /**
138
+ * Type guard to check if a string is a valid ContractType.
139
+ *
140
+ * @param value - The value to check
141
+ * @returns True if the value is a valid ContractType
142
+ */
143
+ export declare function isContractType(value: unknown): value is ContractType;
144
+ //# sourceMappingURL=config.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../config.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AACH,MAAM,MAAM,YAAY,GAAG,SAAS,GAAG,aAAa,GAAG,UAAU,GAAG,MAAM,CAAC;AAE3E;;;GAGG;AACH,eAAO,MAAM,cAAc,yDAKiB,CAAC;AAE7C;;;;;;;;;;GAUG;AACH,MAAM,WAAW,kBAAkB;IACjC,sFAAsF;IACtF,IAAI,EAAE,MAAM,CAAC;IACb,4BAA4B;IAC5B,IAAI,EAAE,YAAY,CAAC;IACnB,kEAAkE;IAClE,IAAI,EAAE,MAAM,CAAC;IACb,8FAA8F;IAC9F,IAAI,CAAC,EAAE,MAAM,GAAG,KAAK,CAAC;IACtB,oGAAoG;IACpG,QAAQ,CAAC,EAAE,MAAM,GAAG,KAAK,CAAC;IAC1B,2CAA2C;IAC3C,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AAED;;GAEG;AACH,MAAM,WAAW,eAAe;IAC9B,8EAA8E;IAC9E,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,gEAAgE;IAChE,WAAW,CAAC,EAAE,OAAO,CAAC;CACvB;AAED;;GAEG;AACH,MAAM,MAAM,UAAU,GAAG,WAAW,CAAC;AAErC;;GAEG;AACH,MAAM,WAAW,UAAU;IACzB,oCAAoC;IACpC,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,2CAA2C;IAC3C,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,0EAA0E;IAC1E,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB;AAED;;;;;GAKG;AACH,MAAM,WAAW,QAAQ;IACvB,yDAAyD;IACzD,QAAQ,CAAC,EAAE,UAAU,CAAC;IACtB,8BAA8B;IAC9B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,sBAAsB;IACtB,QAAQ,CAAC,EAAE,UAAU,CAAC;CACvB;AAED;;;;;GAKG;AACH,MAAM,MAAM,cAAc,GAAG,aAAa,GAAG,OAAO,CAAC;AAErD;;GAEG;AACH,MAAM,WAAW,gBAAgB;IAC/B,+CAA+C;IAC/C,IAAI,EAAE,cAAc,CAAC;CACtB;AAED;;;;;;;;;;;;;;;GAeG;AACH,MAAM,WAAW,iBAAiB;IAChC,mCAAmC;IACnC,SAAS,EAAE,kBAAkB,EAAE,CAAC;IAChC,+BAA+B;IAC/B,UAAU,CAAC,EAAE,gBAAgB,CAAC;IAC9B,uCAAuC;IACvC,SAAS,CAAC,EAAE,eAAe,CAAC;IAC5B,uCAAuC;IACvC,EAAE,CAAC,EAAE,QAAQ,CAAC;CACf;AAED;;GAEG;AACH,MAAM,WAAW,gBAAiB,SAAQ,kBAAkB;IAC1D,qCAAqC;IACrC,YAAY,EAAE,MAAM,CAAC;CACtB;AAED;;GAEG;AACH,MAAM,WAAW,cAAe,SAAQ,IAAI,CAAC,iBAAiB,EAAE,WAAW,CAAC;IAC1E,6CAA6C;IAC7C,SAAS,EAAE,gBAAgB,EAAE,CAAC;IAC9B,4CAA4C;IAC5C,SAAS,EAAE,MAAM,CAAC;IAClB,wCAAwC;IACxC,UAAU,EAAE,MAAM,CAAC;CACpB;AAED;;;;;GAKG;AACH,wBAAgB,cAAc,CAAC,KAAK,EAAE,OAAO,GAAG,KAAK,IAAI,YAAY,CAKpE"}
package/dist/config.js ADDED
@@ -0,0 +1,21 @@
1
+ /**
2
+ * All valid contract type values as a readonly array.
3
+ * Useful for runtime validation and iteration.
4
+ */
5
+ export const CONTRACT_TYPES = [
6
+ 'openapi',
7
+ 'json-schema',
8
+ 'asyncapi',
9
+ 'odcs',
10
+ ];
11
+ /**
12
+ * Type guard to check if a string is a valid ContractType.
13
+ *
14
+ * @param value - The value to check
15
+ * @returns True if the value is a valid ContractType
16
+ */
17
+ export function isContractType(value) {
18
+ return (typeof value === 'string' &&
19
+ CONTRACT_TYPES.includes(value));
20
+ }
21
+ //# sourceMappingURL=config.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"config.js","sourceRoot":"","sources":["../config.ts"],"names":[],"mappings":"AAWA;;;GAGG;AACH,MAAM,CAAC,MAAM,cAAc,GAAG;IAC5B,SAAS;IACT,aAAa;IACb,UAAU;IACV,MAAM;CACoC,CAAC;AAqI7C;;;;;GAKG;AACH,MAAM,UAAU,cAAc,CAAC,KAAc;IAC3C,OAAO,CACL,OAAO,KAAK,KAAK,QAAQ;QACzB,cAAc,CAAC,QAAQ,CAAC,KAAqB,CAAC,CAC/C,CAAC;AACJ,CAAC"}
@@ -0,0 +1,188 @@
1
+ /**
2
+ * Severity classification for detected changes between spec versions.
3
+ *
4
+ * @remarks
5
+ * - `breaking` - Changes that will break existing consumers (major bump)
6
+ * - `non-breaking` - Additive changes that are backwards compatible (minor bump)
7
+ * - `patch` - Metadata-only changes (patch bump)
8
+ * - `unknown` - Complex changes requiring manual review
9
+ */
10
+ export type ChangeSeverity = 'breaking' | 'non-breaking' | 'patch' | 'unknown';
11
+ /**
12
+ * A single change detected between two spec versions.
13
+ *
14
+ * @example
15
+ * ```typescript
16
+ * const change: Change = {
17
+ * path: '/properties/amount/type',
18
+ * severity: 'breaking',
19
+ * category: 'type-changed',
20
+ * message: "Changed type of field 'amount': string -> number",
21
+ * oldValue: 'string',
22
+ * newValue: 'number'
23
+ * };
24
+ * ```
25
+ */
26
+ export interface Change {
27
+ /** JSON Pointer path to the changed element (e.g., "/properties/amount/type") */
28
+ path: string;
29
+ /** Severity classification determining version bump */
30
+ severity: ChangeSeverity;
31
+ /** Category key for grouping similar changes (e.g., "field-removed", "type-changed") */
32
+ category: string;
33
+ /** Human-readable description of the change */
34
+ message: string;
35
+ /** Value in the old spec (undefined if added) */
36
+ oldValue?: unknown;
37
+ /** Value in the new spec (undefined if removed) */
38
+ newValue?: unknown;
39
+ }
40
+ /**
41
+ * Summary counts of changes by severity.
42
+ */
43
+ export interface DiffSummary {
44
+ /** Number of breaking changes detected */
45
+ breaking: number;
46
+ /** Number of non-breaking (additive) changes detected */
47
+ nonBreaking: number;
48
+ /** Number of patch-level (metadata) changes detected */
49
+ patch: number;
50
+ /** Number of unclassifiable changes requiring manual review */
51
+ unknown: number;
52
+ }
53
+ /**
54
+ * Suggested semver bump based on detected changes.
55
+ *
56
+ * @remarks
57
+ * - `major` - Breaking changes detected
58
+ * - `minor` - Non-breaking structural changes
59
+ * - `patch` - Metadata-only changes
60
+ * - `none` - No changes detected
61
+ */
62
+ export type SuggestedBump = 'major' | 'minor' | 'patch' | 'none';
63
+ /**
64
+ * Result of comparing two spec versions.
65
+ */
66
+ export interface DiffResult {
67
+ /** Contract name from config */
68
+ contract: string;
69
+ /** List of all detected changes */
70
+ changes: Change[];
71
+ /** Aggregated summary counts by severity */
72
+ summary: DiffSummary;
73
+ /** Recommended semver bump based on highest severity change */
74
+ suggestedBump: SuggestedBump;
75
+ }
76
+ /**
77
+ * Severity of a lint diagnostic.
78
+ */
79
+ export type LintSeverity = 'error' | 'warning';
80
+ /**
81
+ * A single lint issue found in a spec.
82
+ */
83
+ export interface LintIssue {
84
+ /** Location in spec (JSON Pointer path or line:col) */
85
+ path: string;
86
+ /** Human-readable issue description */
87
+ message: string;
88
+ /** Rule identifier if available (e.g., "operation-operationId") */
89
+ rule?: string;
90
+ /** Issue severity */
91
+ severity: LintSeverity;
92
+ }
93
+ /**
94
+ * Result of linting a spec file.
95
+ */
96
+ export interface LintResult {
97
+ /** Contract name from config */
98
+ contract: string;
99
+ /** Absolute path to the spec file that was linted */
100
+ specPath: string;
101
+ /** List of error-level issues (cause lint failure) */
102
+ errors: LintIssue[];
103
+ /** List of warning-level issues (informational) */
104
+ warnings: LintIssue[];
105
+ }
106
+ /**
107
+ * Options for linter functions.
108
+ */
109
+ export interface LintOptions {
110
+ /** Custom ruleset configuration */
111
+ ruleset?: string;
112
+ /** Additional tool-specific options */
113
+ [key: string]: unknown;
114
+ }
115
+ /**
116
+ * Function signature for linter implementations.
117
+ *
118
+ * @param specPath - Absolute path to the spec file to lint
119
+ * @param options - Optional linter configuration
120
+ * @returns Promise resolving to lint results
121
+ */
122
+ export type LintFn = (specPath: string, options?: LintOptions) => Promise<LintResult>;
123
+ /**
124
+ * Options for differ functions.
125
+ */
126
+ export interface DiffOptions {
127
+ /** Include metadata-only (patch) changes in results */
128
+ includeMetadata?: boolean;
129
+ /** Additional tool-specific options */
130
+ [key: string]: unknown;
131
+ }
132
+ /**
133
+ * Function signature for differ implementations.
134
+ *
135
+ * @param oldSpecPath - Absolute path to the old (baseline) spec
136
+ * @param newSpecPath - Absolute path to the new (current) spec
137
+ * @param options - Optional differ configuration
138
+ * @returns Promise resolving to diff results
139
+ */
140
+ export type DiffFn = (oldSpecPath: string, newSpecPath: string, options?: DiffOptions) => Promise<DiffResult>;
141
+ /**
142
+ * All possible structural change types for classification.
143
+ *
144
+ * @remarks
145
+ * These categories are used internally by differs to classify raw changes
146
+ * before mapping to severity levels.
147
+ */
148
+ export type ChangeType = 'property-added' | 'property-removed' | 'required-added' | 'required-removed' | 'type-changed' | 'type-narrowed' | 'type-widened' | 'enum-value-added' | 'enum-value-removed' | 'enum-added' | 'enum-removed' | 'constraint-tightened' | 'constraint-loosened' | 'format-changed' | 'format-added' | 'format-removed' | 'additional-properties-denied' | 'additional-properties-allowed' | 'additional-properties-changed' | 'property-names-changed' | 'dependent-required-added' | 'dependent-required-removed' | 'dependent-schemas-changed' | 'unevaluated-properties-changed' | 'items-changed' | 'min-items-increased' | 'max-items-decreased' | 'min-contains-changed' | 'max-contains-changed' | 'unevaluated-items-changed' | 'ref-target-changed' | 'description-changed' | 'title-changed' | 'default-changed' | 'examples-changed' | 'deprecated-changed' | 'read-only-changed' | 'write-only-changed' | 'content-encoding-changed' | 'content-media-type-changed' | 'content-schema-changed' | 'anyof-option-added' | 'anyof-option-removed' | 'oneof-option-added' | 'oneof-option-removed' | 'allof-member-added' | 'allof-member-removed' | 'not-schema-changed' | 'if-then-else-changed' | 'composition-changed' | 'unknown-change';
149
+ /**
150
+ * Raw change detected by a differ before severity classification.
151
+ *
152
+ * @remarks
153
+ * This is an internal type used by differ implementations.
154
+ * Raw changes are classified into {@link Change} with severity.
155
+ */
156
+ export interface RawChange {
157
+ /** JSON Pointer path to the change location */
158
+ path: string;
159
+ /** Structural change type for classification */
160
+ type: ChangeType;
161
+ /** Value in old spec (undefined if added) */
162
+ oldValue?: unknown;
163
+ /** Value in new spec (undefined if removed) */
164
+ newValue?: unknown;
165
+ }
166
+ /**
167
+ * Mapping from change types to their severity classification.
168
+ *
169
+ * @remarks
170
+ * This constant provides the default classification rules aligned with Strands API.
171
+ * Breaking changes cause major bumps, non-breaking cause minor, etc.
172
+ */
173
+ export declare const CHANGE_TYPE_SEVERITY: Record<ChangeType, ChangeSeverity>;
174
+ /**
175
+ * Type guard to check if a value is a valid ChangeSeverity.
176
+ *
177
+ * @param value - The value to check
178
+ * @returns True if the value is a valid ChangeSeverity
179
+ */
180
+ export declare function isChangeSeverity(value: unknown): value is ChangeSeverity;
181
+ /**
182
+ * Type guard to check if a value is a valid ChangeType.
183
+ *
184
+ * @param value - The value to check
185
+ * @returns True if the value is a valid ChangeType
186
+ */
187
+ export declare function isChangeType(value: unknown): value is ChangeType;
188
+ //# sourceMappingURL=governance.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"governance.d.ts","sourceRoot":"","sources":["../governance.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,88 @@
1
+ /**
2
+ * Mapping from change types to their severity classification.
3
+ *
4
+ * @remarks
5
+ * This constant provides the default classification rules aligned with Strands API.
6
+ * Breaking changes cause major bumps, non-breaking cause minor, etc.
7
+ */
8
+ export const CHANGE_TYPE_SEVERITY = {
9
+ // Breaking changes (major)
10
+ 'property-removed': 'breaking',
11
+ 'required-added': 'breaking',
12
+ 'type-changed': 'breaking',
13
+ 'type-narrowed': 'breaking',
14
+ 'enum-value-removed': 'breaking',
15
+ 'enum-added': 'breaking',
16
+ 'constraint-tightened': 'breaking',
17
+ 'additional-properties-denied': 'breaking',
18
+ 'items-changed': 'breaking',
19
+ 'min-items-increased': 'breaking',
20
+ 'max-items-decreased': 'breaking',
21
+ 'ref-target-changed': 'breaking',
22
+ 'dependent-required-added': 'breaking',
23
+ // Composition breaking changes (per Strands API)
24
+ 'anyof-option-added': 'breaking',
25
+ 'oneof-option-added': 'breaking',
26
+ 'allof-member-added': 'breaking',
27
+ 'not-schema-changed': 'breaking',
28
+ // Non-breaking changes (minor)
29
+ 'property-added': 'non-breaking',
30
+ 'required-removed': 'non-breaking',
31
+ 'type-widened': 'non-breaking',
32
+ 'enum-value-added': 'non-breaking',
33
+ 'enum-removed': 'non-breaking',
34
+ 'constraint-loosened': 'non-breaking',
35
+ 'additional-properties-allowed': 'non-breaking',
36
+ 'additional-properties-changed': 'non-breaking',
37
+ 'dependent-required-removed': 'non-breaking',
38
+ // Composition non-breaking changes (per Strands API)
39
+ 'anyof-option-removed': 'non-breaking',
40
+ 'oneof-option-removed': 'non-breaking',
41
+ 'allof-member-removed': 'non-breaking',
42
+ // Patch-level changes (per Strands API - format is annotation)
43
+ 'format-added': 'patch',
44
+ 'format-removed': 'patch',
45
+ 'format-changed': 'patch',
46
+ 'description-changed': 'patch',
47
+ 'title-changed': 'patch',
48
+ 'default-changed': 'patch',
49
+ 'examples-changed': 'patch',
50
+ // Annotation changes (patch per Strands API)
51
+ 'deprecated-changed': 'patch',
52
+ 'read-only-changed': 'patch',
53
+ 'write-only-changed': 'patch',
54
+ // Content keyword changes (patch per Strands API)
55
+ 'content-encoding-changed': 'patch',
56
+ 'content-media-type-changed': 'patch',
57
+ 'content-schema-changed': 'patch',
58
+ // Requires manual review (unknown)
59
+ 'property-names-changed': 'unknown',
60
+ 'dependent-schemas-changed': 'unknown',
61
+ 'unevaluated-properties-changed': 'unknown',
62
+ 'unevaluated-items-changed': 'unknown',
63
+ 'min-contains-changed': 'unknown',
64
+ 'max-contains-changed': 'unknown',
65
+ 'if-then-else-changed': 'unknown',
66
+ 'composition-changed': 'unknown',
67
+ 'unknown-change': 'unknown',
68
+ };
69
+ /**
70
+ * Type guard to check if a value is a valid ChangeSeverity.
71
+ *
72
+ * @param value - The value to check
73
+ * @returns True if the value is a valid ChangeSeverity
74
+ */
75
+ export function isChangeSeverity(value) {
76
+ return (typeof value === 'string' &&
77
+ ['breaking', 'non-breaking', 'patch', 'unknown'].includes(value));
78
+ }
79
+ /**
80
+ * Type guard to check if a value is a valid ChangeType.
81
+ *
82
+ * @param value - The value to check
83
+ * @returns True if the value is a valid ChangeType
84
+ */
85
+ export function isChangeType(value) {
86
+ return typeof value === 'string' && value in CHANGE_TYPE_SEVERITY;
87
+ }
88
+ //# sourceMappingURL=governance.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"governance.js","sourceRoot":"","sources":["../governance.ts"],"names":[],"mappings":"AA0PA;;;;;;GAMG;AACH,MAAM,CAAC,MAAM,oBAAoB,GAAuC;IACtE,2BAA2B;IAC3B,kBAAkB,EAAE,UAAU;IAC9B,gBAAgB,EAAE,UAAU;IAC5B,cAAc,EAAE,UAAU;IAC1B,eAAe,EAAE,UAAU;IAC3B,oBAAoB,EAAE,UAAU;IAChC,YAAY,EAAE,UAAU;IACxB,sBAAsB,EAAE,UAAU;IAClC,8BAA8B,EAAE,UAAU;IAC1C,eAAe,EAAE,UAAU;IAC3B,qBAAqB,EAAE,UAAU;IACjC,qBAAqB,EAAE,UAAU;IACjC,oBAAoB,EAAE,UAAU;IAChC,0BAA0B,EAAE,UAAU;IACtC,iDAAiD;IACjD,oBAAoB,EAAE,UAAU;IAChC,oBAAoB,EAAE,UAAU;IAChC,oBAAoB,EAAE,UAAU;IAChC,oBAAoB,EAAE,UAAU;IAEhC,+BAA+B;IAC/B,gBAAgB,EAAE,cAAc;IAChC,kBAAkB,EAAE,cAAc;IAClC,cAAc,EAAE,cAAc;IAC9B,kBAAkB,EAAE,cAAc;IAClC,cAAc,EAAE,cAAc;IAC9B,qBAAqB,EAAE,cAAc;IACrC,+BAA+B,EAAE,cAAc;IAC/C,+BAA+B,EAAE,cAAc;IAC/C,4BAA4B,EAAE,cAAc;IAC5C,qDAAqD;IACrD,sBAAsB,EAAE,cAAc;IACtC,sBAAsB,EAAE,cAAc;IACtC,sBAAsB,EAAE,cAAc;IAEtC,+DAA+D;IAC/D,cAAc,EAAE,OAAO;IACvB,gBAAgB,EAAE,OAAO;IACzB,gBAAgB,EAAE,OAAO;IACzB,qBAAqB,EAAE,OAAO;IAC9B,eAAe,EAAE,OAAO;IACxB,iBAAiB,EAAE,OAAO;IAC1B,kBAAkB,EAAE,OAAO;IAC3B,6CAA6C;IAC7C,oBAAoB,EAAE,OAAO;IAC7B,mBAAmB,EAAE,OAAO;IAC5B,oBAAoB,EAAE,OAAO;IAC7B,kDAAkD;IAClD,0BAA0B,EAAE,OAAO;IACnC,4BAA4B,EAAE,OAAO;IACrC,wBAAwB,EAAE,OAAO;IAEjC,mCAAmC;IACnC,wBAAwB,EAAE,SAAS;IACnC,2BAA2B,EAAE,SAAS;IACtC,gCAAgC,EAAE,SAAS;IAC3C,2BAA2B,EAAE,SAAS;IACtC,sBAAsB,EAAE,SAAS;IACjC,sBAAsB,EAAE,SAAS;IACjC,sBAAsB,EAAE,SAAS;IACjC,qBAAqB,EAAE,SAAS;IAChC,gBAAgB,EAAE,SAAS;CAC5B,CAAC;AAEF;;;;;GAKG;AACH,MAAM,UAAU,gBAAgB,CAAC,KAAc;IAC7C,OAAO,CACL,OAAO,KAAK,KAAK,QAAQ;QACzB,CAAC,UAAU,EAAE,cAAc,EAAE,OAAO,EAAE,SAAS,CAAC,CAAC,QAAQ,CAAC,KAAK,CAAC,CACjE,CAAC;AACJ,CAAC;AAED;;;;;GAKG;AACH,MAAM,UAAU,YAAY,CAAC,KAAc;IACzC,OAAO,OAAO,KAAK,KAAK,QAAQ,IAAI,KAAK,IAAI,oBAAoB,CAAC;AACpE,CAAC"}
@@ -0,0 +1,4 @@
1
+ export * from './config.js';
2
+ export * from './governance.js';
3
+ export * from './versioning.js';
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAC;AAC5B,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC"}
package/dist/index.js ADDED
@@ -0,0 +1,4 @@
1
+ export * from './config.js';
2
+ export * from './governance.js';
3
+ export * from './versioning.js';
4
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAC;AAC5B,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC"}
@@ -0,0 +1 @@
1
+ {"fileNames":["../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.dom.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.scripthost.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2022.full.d.ts","../config.ts","../governance.ts","../versioning.ts","../index.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/compatibility/disposable.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/compatibility/indexable.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/compatibility/index.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/web-globals/events.d.ts","../../../node_modules/.pnpm/buffer@5.7.1/node_modules/buffer/index.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/file.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-handler.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/util.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/eventsource.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/filereader.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/web-globals/fetch.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/web-globals/navigator.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/web-globals/storage.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/inspector.generated.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/sea.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/sqlite.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@22.19.11/node_modules/@types/node/index.d.ts","../../../node_modules/.pnpm/@vitest+pretty-format@3.2.4/node_modules/@vitest/pretty-format/dist/index.d.ts","../../../node_modules/.pnpm/@vitest+utils@3.2.4/node_modules/@vitest/utils/dist/types.d.ts","../../../node_modules/.pnpm/@vitest+utils@3.2.4/node_modules/@vitest/utils/dist/helpers.d.ts","../../../node_modules/.pnpm/tinyrainbow@2.0.0/node_modules/tinyrainbow/dist/index-8b61d5bc.d.ts","../../../node_modules/.pnpm/tinyrainbow@2.0.0/node_modules/tinyrainbow/dist/node.d.ts","../../../node_modules/.pnpm/@vitest+utils@3.2.4/node_modules/@vitest/utils/dist/index.d.ts","../../../node_modules/.pnpm/@vitest+runner@3.2.4/node_modules/@vitest/runner/dist/tasks.d-CkscK4of.d.ts","../../../node_modules/.pnpm/@vitest+utils@3.2.4/node_modules/@vitest/utils/dist/types.d-BCElaP-c.d.ts","../../../node_modules/.pnpm/@vitest+utils@3.2.4/node_modules/@vitest/utils/dist/diff.d.ts","../../../node_modules/.pnpm/@vitest+runner@3.2.4/node_modules/@vitest/runner/dist/types.d.ts","../../../node_modules/.pnpm/@vitest+utils@3.2.4/node_modules/@vitest/utils/dist/error.d.ts","../../../node_modules/.pnpm/@vitest+runner@3.2.4/node_modules/@vitest/runner/dist/index.d.ts","../../../node_modules/.pnpm/vitest@3.2.4_@types+node@22.19.11_yaml@2.8.2/node_modules/vitest/optional-types.d.ts","../../../node_modules/.pnpm/vitest@3.2.4_@types+node@22.19.11_yaml@2.8.2/node_modules/vitest/dist/chunks/environment.d.cL3nLXbE.d.ts","../../../node_modules/.pnpm/vite@7.3.1_@types+node@22.19.11_yaml@2.8.2/node_modules/vite/types/hmrPayload.d.ts","../../../node_modules/.pnpm/vite@7.3.1_@types+node@22.19.11_yaml@2.8.2/node_modules/vite/dist/node/chunks/moduleRunnerTransport.d.ts","../../../node_modules/.pnpm/vite@7.3.1_@types+node@22.19.11_yaml@2.8.2/node_modules/vite/types/customEvent.d.ts","../../../node_modules/.pnpm/@types+estree@1.0.8/node_modules/@types/estree/index.d.ts","../../../node_modules/.pnpm/rollup@4.57.1/node_modules/rollup/dist/rollup.d.ts","../../../node_modules/.pnpm/rollup@4.57.1/node_modules/rollup/dist/parseAst.d.ts","../../../node_modules/.pnpm/vite@7.3.1_@types+node@22.19.11_yaml@2.8.2/node_modules/vite/types/hot.d.ts","../../../node_modules/.pnpm/vite@7.3.1_@types+node@22.19.11_yaml@2.8.2/node_modules/vite/dist/node/module-runner.d.ts","../../../node_modules/.pnpm/esbuild@0.27.3/node_modules/esbuild/lib/main.d.ts","../../../node_modules/.pnpm/vite@7.3.1_@types+node@22.19.11_yaml@2.8.2/node_modules/vite/types/internal/terserOptions.d.ts","../../../node_modules/.pnpm/source-map-js@1.2.1/node_modules/source-map-js/source-map.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/previous-map.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/input.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/css-syntax-error.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/declaration.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/root.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/warning.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/lazy-result.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/no-work-result.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/processor.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/result.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/document.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/rule.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/node.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/comment.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/container.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/at-rule.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/list.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/postcss.d.ts","../../../node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/postcss.d.mts","../../../node_modules/.pnpm/vite@7.3.1_@types+node@22.19.11_yaml@2.8.2/node_modules/vite/types/internal/cssPreprocessorOptions.d.ts","../../../node_modules/.pnpm/vite@7.3.1_@types+node@22.19.11_yaml@2.8.2/node_modules/vite/types/internal/lightningcssOptions.d.ts","../../../node_modules/.pnpm/vite@7.3.1_@types+node@22.19.11_yaml@2.8.2/node_modules/vite/types/importGlob.d.ts","../../../node_modules/.pnpm/vite@7.3.1_@types+node@22.19.11_yaml@2.8.2/node_modules/vite/types/metadata.d.ts","../../../node_modules/.pnpm/vite@7.3.1_@types+node@22.19.11_yaml@2.8.2/node_modules/vite/dist/node/index.d.ts","../../../node_modules/.pnpm/@vitest+mocker@3.2.4_vite@7.3.1_@types+node@22.19.11_yaml@2.8.2_/node_modules/@vitest/mocker/dist/registry.d-D765pazg.d.ts","../../../node_modules/.pnpm/@vitest+mocker@3.2.4_vite@7.3.1_@types+node@22.19.11_yaml@2.8.2_/node_modules/@vitest/mocker/dist/types.d-D_aRZRdy.d.ts","../../../node_modules/.pnpm/@vitest+mocker@3.2.4_vite@7.3.1_@types+node@22.19.11_yaml@2.8.2_/node_modules/@vitest/mocker/dist/index.d.ts","../../../node_modules/.pnpm/@vitest+utils@3.2.4/node_modules/@vitest/utils/dist/source-map.d.ts","../../../node_modules/.pnpm/vite-node@3.2.4_@types+node@22.19.11_yaml@2.8.2/node_modules/vite-node/dist/trace-mapping.d-DLVdEqOp.d.ts","../../../node_modules/.pnpm/vite-node@3.2.4_@types+node@22.19.11_yaml@2.8.2/node_modules/vite-node/dist/index.d-DGmxD2U7.d.ts","../../../node_modules/.pnpm/vite-node@3.2.4_@types+node@22.19.11_yaml@2.8.2/node_modules/vite-node/dist/index.d.ts","../../../node_modules/.pnpm/@vitest+snapshot@3.2.4/node_modules/@vitest/snapshot/dist/environment.d-DHdQ1Csl.d.ts","../../../node_modules/.pnpm/@vitest+snapshot@3.2.4/node_modules/@vitest/snapshot/dist/rawSnapshot.d-lFsMJFUd.d.ts","../../../node_modules/.pnpm/@vitest+snapshot@3.2.4/node_modules/@vitest/snapshot/dist/index.d.ts","../../../node_modules/.pnpm/@vitest+snapshot@3.2.4/node_modules/@vitest/snapshot/dist/environment.d.ts","../../../node_modules/.pnpm/vitest@3.2.4_@types+node@22.19.11_yaml@2.8.2/node_modules/vitest/dist/chunks/config.d.D2ROskhv.d.ts","../../../node_modules/.pnpm/vitest@3.2.4_@types+node@22.19.11_yaml@2.8.2/node_modules/vitest/dist/chunks/worker.d.1GmBbd7G.d.ts","../../../node_modules/.pnpm/@types+deep-eql@4.0.2/node_modules/@types/deep-eql/index.d.ts","../../../node_modules/.pnpm/assertion-error@2.0.1/node_modules/assertion-error/index.d.ts","../../../node_modules/.pnpm/@types+chai@5.2.3/node_modules/@types/chai/index.d.ts","../../../node_modules/.pnpm/@vitest+runner@3.2.4/node_modules/@vitest/runner/dist/utils.d.ts","../../../node_modules/.pnpm/tinybench@2.9.0/node_modules/tinybench/dist/index.d.ts","../../../node_modules/.pnpm/vitest@3.2.4_@types+node@22.19.11_yaml@2.8.2/node_modules/vitest/dist/chunks/benchmark.d.BwvBVTda.d.ts","../../../node_modules/.pnpm/vite-node@3.2.4_@types+node@22.19.11_yaml@2.8.2/node_modules/vite-node/dist/client.d.ts","../../../node_modules/.pnpm/vitest@3.2.4_@types+node@22.19.11_yaml@2.8.2/node_modules/vitest/dist/chunks/coverage.d.S9RMNXIe.d.ts","../../../node_modules/.pnpm/@vitest+snapshot@3.2.4/node_modules/@vitest/snapshot/dist/manager.d.ts","../../../node_modules/.pnpm/vitest@3.2.4_@types+node@22.19.11_yaml@2.8.2/node_modules/vitest/dist/chunks/reporters.d.BFLkQcL6.d.ts","../../../node_modules/.pnpm/vitest@3.2.4_@types+node@22.19.11_yaml@2.8.2/node_modules/vitest/dist/chunks/worker.d.CKwWzBSj.d.ts","../../../node_modules/.pnpm/@vitest+spy@3.2.4/node_modules/@vitest/spy/dist/index.d.ts","../../../node_modules/.pnpm/@vitest+expect@3.2.4/node_modules/@vitest/expect/dist/index.d.ts","../../../node_modules/.pnpm/vitest@3.2.4_@types+node@22.19.11_yaml@2.8.2/node_modules/vitest/dist/chunks/global.d.MAmajcmJ.d.ts","../../../node_modules/.pnpm/vitest@3.2.4_@types+node@22.19.11_yaml@2.8.2/node_modules/vitest/dist/chunks/vite.d.CMLlLIFP.d.ts","../../../node_modules/.pnpm/vitest@3.2.4_@types+node@22.19.11_yaml@2.8.2/node_modules/vitest/dist/chunks/mocker.d.BE_2ls6u.d.ts","../../../node_modules/.pnpm/vitest@3.2.4_@types+node@22.19.11_yaml@2.8.2/node_modules/vitest/dist/chunks/suite.d.FvehnV49.d.ts","../../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/utils.d.ts","../../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/overloads.d.ts","../../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/branding.d.ts","../../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/messages.d.ts","../../../node_modules/.pnpm/expect-type@1.3.0/node_modules/expect-type/dist/index.d.ts","../../../node_modules/.pnpm/vitest@3.2.4_@types+node@22.19.11_yaml@2.8.2/node_modules/vitest/dist/index.d.ts","../../../node_modules/.pnpm/vitest@3.2.4_@types+node@22.19.11_yaml@2.8.2/node_modules/vitest/index.d.cts"],"fileIdsList":[[73,122,139,140,235,236],[73,122,139,140],[73,119,120,122,139,140],[73,121,122,139,140],[122,139,140],[73,122,127,139,140,157],[73,122,123,128,133,139,140,142,154,165],[73,122,123,124,133,139,140,142],[68,69,70,73,122,139,140],[73,122,125,139,140,166],[73,122,126,127,134,139,140,143],[73,122,127,139,140,154,162],[73,122,128,130,133,139,140,142],[73,121,122,129,139,140],[73,122,130,131,139,140],[73,122,132,133,139,140],[73,121,122,133,139,140],[73,122,133,134,135,139,140,154,165],[73,122,133,134,135,139,140,149,154,157],[73,115,122,130,133,136,139,140,142,154,165],[73,122,133,134,136,137,139,140,142,154,162,165],[73,122,136,138,139,140,154,162,165],[71,72,73,74,75,76,77,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171],[73,122,133,139,140],[73,122,139,140,141,165],[73,122,130,133,139,140,142,154],[73,122,139,140,143],[73,122,139,140,144],[73,121,122,139,140,145],[73,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171],[73,122,139,140,147],[73,122,139,140,148],[73,122,133,139,140,149,150],[73,122,139,140,149,151,166,168],[73,122,134,139,140],[73,122,133,139,140,154,155,157],[73,122,139,140,156,157],[73,122,139,140,154,155],[73,122,139,140,157],[73,122,139,140,158],[73,119,122,139,140,154,159,165],[73,122,133,139,140,160,161],[73,122,139,140,160,161],[73,122,127,139,140,142,154,162],[73,122,139,140,163],[73,122,139,140,142,164],[73,122,136,139,140,148,165],[73,122,127,139,140,166],[73,122,139,140,154,167],[73,122,139,140,141,168],[73,122,139,140,169],[73,115,122,139,140],[73,115,122,133,135,139,140,145,154,157,165,167,168,170],[73,122,139,140,154,171],[73,122,139,140,177,178,181,246],[73,122,139,140,222,223],[73,122,139,140,178,179,181,182,183],[73,122,139,140,178],[73,122,139,140,178,179,181],[73,122,139,140,178,179],[73,122,139,140,229],[73,122,139,140,173,229,230],[73,122,139,140,173,229],[73,122,139,140,173,180],[73,122,139,140,174],[73,122,139,140,173,174,175,177],[73,122,139,140,173],[73,122,139,140,252,253],[73,122,139,140,252,253,254,255],[73,122,139,140,252,254],[73,122,139,140,252],[73,122,139,140,212],[73,122,139,140,210,212],[73,122,139,140,201,209,210,211,213,215],[73,122,139,140,199],[73,122,139,140,202,207,212,215],[73,122,139,140,198,215],[73,122,139,140,202,203,206,207,208,215],[73,122,139,140,202,203,204,206,207,215],[73,122,139,140,199,200,201,202,203,207,208,209,211,212,213,215],[73,122,139,140,215],[73,122,139,140,197,199,200,201,202,203,204,206,207,208,209,210,211,212,213,214],[73,122,139,140,197,215],[73,122,139,140,202,204,205,207,208,215],[73,122,139,140,206,215],[73,122,139,140,207,208,212,215],[73,122,139,140,200,210],[73,122,139,140,191,220,221],[73,122,139,140,190,191],[73,122,139,140,176],[73,87,91,122,139,140,165],[73,87,122,139,140,154,165],[73,82,122,139,140],[73,84,87,122,139,140,162,165],[73,122,139,140,142,162],[73,122,139,140,172],[73,82,122,139,140,172],[73,84,87,122,139,140,142,165],[73,79,80,83,86,122,133,139,140,154,165],[73,87,94,122,139,140],[73,79,85,122,139,140],[73,87,108,109,122,139,140],[73,83,87,122,139,140,157,165,172],[73,108,122,139,140,172],[73,81,82,122,139,140,172],[73,87,122,139,140],[73,81,82,83,84,85,86,87,88,89,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,109,110,111,112,113,114,122,139,140],[73,87,102,122,139,140],[73,87,94,95,122,139,140],[73,85,87,95,96,122,139,140],[73,86,122,139,140],[73,79,82,87,122,139,140],[73,87,91,95,96,122,139,140],[73,91,122,139,140],[73,85,87,90,122,139,140,165],[73,79,84,87,94,122,139,140],[73,122,139,140,154],[73,82,87,108,122,139,140,170,172],[73,122,139,140,226,227],[73,122,139,140,226],[73,122,139,140,187],[73,122,133,134,136,137,138,139,140,142,154,162,165,171,172,187,188,189,191,192,194,195,196,216,217,218,219,220,221],[73,122,139,140,187,188,189,193],[73,122,139,140,189],[73,122,139,140,191,221],[73,122,139,140,184,238,239,248],[73,122,139,140,173,181,184,231,232,248],[73,122,139,140,241],[73,122,139,140,185],[73,122,139,140,173,184,186,231,240,247,248],[73,122,139,140,224],[73,122,125,134,139,140,154,173,178,181,184,186,221,224,225,228,231,233,234,237,240,242,243,248,249],[73,122,139,140,184,238,239,240,248],[73,122,139,140,221,244,249],[73,122,139,140,184,186,228,231,233,248],[73,122,139,140,170,234],[73,122,125,134,139,140,154,170,173,178,181,184,185,186,221,224,225,228,231,232,233,234,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,256],[73,122,139,140,257],[64,65,66,73,122,139,140],[65,73,122,139,140]],"fileInfos":[{"version":"e41c290ef7dd7dab3493e6cbe5909e0148edf4a8dad0271be08edec368a0f7b9","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":"4fd3f3422b2d2a3dfd5cdd0f387b3a8ec45f006c6ea896a4cb41264c2100bb2c","affectsGlobalScope":true,"impliedFormat":1},{"version":"69e65d976bf166ce4a9e6f6c18f94d2424bf116e90837ace179610dbccad9b42","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7a3c8b952931daebdfc7a2897c53c0a1c73624593fa070e46bd537e64dcd20a","affectsGlobalScope":true,"impliedFormat":1},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"62bb211266ee48b2d0edf0d8d1b191f0c24fc379a82bd4c1692a082c540bc6b1","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":"f1e2a172204962276504466a6393426d2ca9c54894b1ad0a6c9dad867a65f876","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":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"3cbad9a1ba4453443026ed38e4b8be018abb26565fa7c944376463ad9df07c41","impliedFormat":1},{"version":"c07848903356060de75b090e0185a245d144788e1e39f1534067eb988fff07a8","signature":"7f0a22559575ab4ffa7f23c3cb1f0f1fd3454f2ae6c48c1252af8b6cc49f1e78","impliedFormat":99},{"version":"8f2812615e8bc60aa8ca9646f64742faf121432b685adad89704c02d12fd9c0f","signature":"09b3d8dfb538d744597b5bca68caa245dcc78941594aa180bb362ecc6f32b061","impliedFormat":99},{"version":"13a3cc1e04263620963517db4343d30f17adbbdd34739a361f53be40ebe5821f","signature":"cadd9e354e73e14f8eacc7acd49bb5147b88b072ee655e164f5fba6526c363e2","impliedFormat":99},{"version":"92ee43733a8c418f406b12f0e6e45e96dceea26f0bf9a0118ce6da274869261a","impliedFormat":99},{"version":"6c7176368037af28cb72f2392010fa1cef295d6d6744bca8cfb54985f3a18c3e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"437e20f2ba32abaeb7985e0afe0002de1917bc74e949ba585e49feba65da6ca1","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"98cffbf06d6bab333473c70a893770dbe990783904002c4f1a960447b4b53dca","affectsGlobalScope":true,"impliedFormat":1},{"version":"3af97acf03cc97de58a3a4bc91f8f616408099bc4233f6d0852e72a8ffb91ac9","affectsGlobalScope":true,"impliedFormat":1},{"version":"808069bba06b6768b62fd22429b53362e7af342da4a236ed2d2e1c89fcca3b4a","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"b52476feb4a0cbcb25e5931b930fc73cb6643fb1a5060bf8a3dda0eeae5b4b68","affectsGlobalScope":true,"impliedFormat":1},{"version":"f9501cc13ce624c72b61f12b3963e84fad210fbdf0ffbc4590e08460a3f04eba","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0fa06ada475b910e2106c98c68b10483dc8811d0c14a8a8dd36efb2672485b29","impliedFormat":1},{"version":"33e5e9aba62c3193d10d1d33ae1fa75c46a1171cf76fef750777377d53b0303f","impliedFormat":1},{"version":"2b06b93fd01bcd49d1a6bd1f9b65ddcae6480b9a86e9061634d6f8e354c1468f","impliedFormat":1},{"version":"6a0cd27e5dc2cfbe039e731cf879d12b0e2dded06d1b1dedad07f7712de0d7f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"13f5c844119c43e51ce777c509267f14d6aaf31eafb2c2b002ca35584cd13b29","impliedFormat":1},{"version":"e60477649d6ad21542bd2dc7e3d9ff6853d0797ba9f689ba2f6653818999c264","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"4c829ab315f57c5442c6667b53769975acbf92003a66aef19bce151987675bd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"b2ade7657e2db96d18315694789eff2ddd3d8aea7215b181f8a0b303277cc579","impliedFormat":1},{"version":"9855e02d837744303391e5623a531734443a5f8e6e8755e018c41d63ad797db2","impliedFormat":1},{"version":"4d631b81fa2f07a0e63a9a143d6a82c25c5f051298651a9b69176ba28930756d","impliedFormat":1},{"version":"836a356aae992ff3c28a0212e3eabcb76dd4b0cc06bcb9607aeef560661b860d","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"41670ee38943d9cbb4924e436f56fc19ee94232bc96108562de1a734af20dc2c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c906fb15bd2aabc9ed1e3f44eb6a8661199d6c320b3aa196b826121552cb3695","impliedFormat":1},{"version":"22295e8103f1d6d8ea4b5d6211e43421fe4564e34d0dd8e09e520e452d89e659","impliedFormat":1},{"version":"f949f7f6c7802a338039cfc2156d1fe285cdd1e092c64437ebe15ae8edc854e0","impliedFormat":1},{"version":"6b4e081d55ac24fc8a4631d5dd77fe249fa25900abd7d046abb87d90e3b45645","impliedFormat":1},{"version":"a10f0e1854f3316d7ee437b79649e5a6ae3ae14ffe6322b02d4987071a95362e","impliedFormat":1},{"version":"e208f73ef6a980104304b0d2ca5f6bf1b85de6009d2c7e404028b875020fa8f2","impliedFormat":1},{"version":"d163b6bc2372b4f07260747cbc6c0a6405ab3fbcea3852305e98ac43ca59f5bc","impliedFormat":1},{"version":"e6fa9ad47c5f71ff733744a029d1dc472c618de53804eae08ffc243b936f87ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"83e63d6ccf8ec004a3bb6d58b9bb0104f60e002754b1e968024b320730cc5311","impliedFormat":1},{"version":"24826ed94a78d5c64bd857570fdbd96229ad41b5cb654c08d75a9845e3ab7dde","impliedFormat":1},{"version":"8b479a130ccb62e98f11f136d3ac80f2984fdc07616516d29881f3061f2dd472","impliedFormat":1},{"version":"928af3d90454bf656a52a48679f199f64c1435247d6189d1caf4c68f2eaf921f","affectsGlobalScope":true,"impliedFormat":1},{"version":"d2bc7425ef40526650d6db7e072c1ff4a51101c3ac2cc4b666623b19496a6e27","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"933921f0bb0ec12ef45d1062a1fc0f27635318f4d294e4d99de9a5493e618ca2","impliedFormat":1},{"version":"71a0f3ad612c123b57239a7749770017ecfe6b66411488000aba83e4546fde25","impliedFormat":1},{"version":"77fbe5eecb6fac4b6242bbf6eebfc43e98ce5ccba8fa44e0ef6a95c945ff4d98","impliedFormat":1},{"version":"4f9d8ca0c417b67b69eeb54c7ca1bedd7b56034bb9bfd27c5d4f3bc4692daca7","impliedFormat":1},{"version":"814118df420c4e38fe5ae1b9a3bafb6e9c2aa40838e528cde908381867be6466","impliedFormat":1},{"version":"a3fc63c0d7b031693f665f5494412ba4b551fe644ededccc0ab5922401079c95","impliedFormat":1},{"version":"f27524f4bef4b6519c604bdb23bf4465bddcccbf3f003abb901acbd0d7404d99","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","impliedFormat":1},{"version":"6b039f55681caaf111d5eb84d292b9bee9e0131d0db1ad0871eef0964f533c73","affectsGlobalScope":true,"impliedFormat":1},{"version":"18fd40412d102c5564136f29735e5d1c3b455b8a37f920da79561f1fde068208","impliedFormat":1},{"version":"c8d3e5a18ba35629954e48c4cc8f11dc88224650067a172685c736b27a34a4dc","impliedFormat":1},{"version":"f0be1b8078cd549d91f37c30c222c2a187ac1cf981d994fb476a1adc61387b14","affectsGlobalScope":true,"impliedFormat":1},{"version":"0aaed1d72199b01234152f7a60046bc947f1f37d78d182e9ae09c4289e06a592","impliedFormat":1},{"version":"0dba70b3fb0dcd713fda33c2df64fa6751fff6460e536971cee917260fb17882","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"5b7aa3c4c1a5d81b411e8cb302b45507fea9358d3569196b27eb1a27ae3a90ef","affectsGlobalScope":true,"impliedFormat":1},{"version":"5987a903da92c7462e0b35704ce7da94d7fdc4b89a984871c0e2b87a8aae9e69","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea08a0345023ade2b47fbff5a76d0d0ed8bff10bc9d22b83f40858a8e941501c","impliedFormat":1},{"version":"47613031a5a31510831304405af561b0ffaedb734437c595256bb61a90f9311b","impliedFormat":1},{"version":"ae062ce7d9510060c5d7e7952ae379224fb3f8f2dd74e88959878af2057c143b","impliedFormat":1},{"version":"8a1a0d0a4a06a8d278947fcb66bf684f117bf147f89b06e50662d79a53be3e9f","affectsGlobalScope":true,"impliedFormat":1},{"version":"9f663c2f91127ef7024e8ca4b3b4383ff2770e5f826696005de382282794b127","impliedFormat":1},{"version":"9f55299850d4f0921e79b6bf344b47c420ce0f507b9dcf593e532b09ea7eeea1","impliedFormat":1},{"version":"5c54a34e3d91727f7ae840bfe4d5d1c9a2f93c54cb7b6063d06ee4a6c3322656","impliedFormat":99},{"version":"db4da53b03596668cf6cc9484834e5de3833b9e7e64620cf08399fe069cd398d","impliedFormat":99},{"version":"ac7c28f153820c10850457994db1462d8c8e462f253b828ad942a979f726f2f9","impliedFormat":99},{"version":"f9b028d3c3891dd817e24d53102132b8f696269309605e6ed4f0db2c113bbd82","impliedFormat":99},{"version":"fb7c8d90e52e2884509166f96f3d591020c7b7977ab473b746954b0c8d100960","impliedFormat":99},{"version":"0bff51d6ed0c9093f6955b9d8258ce152ddb273359d50a897d8baabcb34de2c4","impliedFormat":99},{"version":"45cec9a1ba6549060552eead8959d47226048e0b71c7d0702ae58b7e16a28912","impliedFormat":99},{"version":"ef13c73d6157a32933c612d476c1524dd674cf5b9a88571d7d6a0d147544d529","impliedFormat":99},{"version":"13918e2b81c4288695f9b1f3dcc2468caf0f848d5c1f3dc00071c619d34ff63a","impliedFormat":99},{"version":"6907b09850f86610e7a528348c15484c1e1c09a18a9c1e98861399dfe4b18b46","impliedFormat":99},{"version":"12deea8eaa7a4fc1a2908e67da99831e5c5a6b46ad4f4f948fd4759314ea2b80","impliedFormat":99},{"version":"f0a8b376568a18f9a4976ecb0855187672b16b96c4df1c183a7e52dc1b5d98e8","impliedFormat":99},{"version":"8124828a11be7db984fcdab052fd4ff756b18edcfa8d71118b55388176210923","impliedFormat":99},{"version":"092944a8c05f9b96579161e88c6f211d5304a76bd2c47f8d4c30053269146bc8","impliedFormat":99},{"version":"a7ca8df4f2931bef2aa4118078584d84a0b16539598eaadf7dce9104dfaa381c","impliedFormat":1},{"version":"10073cdcf56982064c5337787cc59b79586131e1b28c106ede5bff362f912b70","impliedFormat":99},{"version":"72950913f4900b680f44d8cab6dd1ea0311698fc1eefb014eb9cdfc37ac4a734","impliedFormat":1},{"version":"151ff381ef9ff8da2da9b9663ebf657eac35c4c9a19183420c05728f31a6761d","impliedFormat":1},{"version":"ee70b8037ecdf0de6c04f35277f253663a536d7e38f1539d270e4e916d225a3f","affectsGlobalScope":true,"impliedFormat":1},{"version":"a660aa95476042d3fdcc1343cf6bb8fdf24772d31712b1db321c5a4dcc325434","impliedFormat":1},{"version":"36977c14a7f7bfc8c0426ae4343875689949fb699f3f84ecbe5b300ebf9a2c55","impliedFormat":1},{"version":"ff0a83c9a0489a627e264ffcb63f2264b935b20a502afa3a018848139e3d8575","impliedFormat":99},{"version":"161c8e0690c46021506e32fda85956d785b70f309ae97011fd27374c065cac9b","affectsGlobalScope":true,"impliedFormat":1},{"version":"f582b0fcbf1eea9b318ab92fb89ea9ab2ebb84f9b60af89328a91155e1afce72","impliedFormat":1},{"version":"402e5c534fb2b85fa771170595db3ac0dd532112c8fa44fc23f233bc6967488b","impliedFormat":1},{"version":"8885cf05f3e2abf117590bbb951dcf6359e3e5ac462af1c901cfd24c6a6472e2","impliedFormat":1},{"version":"333caa2bfff7f06017f114de738050dd99a765c7eb16571c6d25a38c0d5365dc","impliedFormat":1},{"version":"e61df3640a38d535fd4bc9f4a53aef17c296b58dc4b6394fd576b808dd2fe5e6","impliedFormat":1},{"version":"459920181700cec8cbdf2a5faca127f3f17fd8dd9d9e577ed3f5f3af5d12a2e4","impliedFormat":1},{"version":"4719c209b9c00b579553859407a7e5dcfaa1c472994bd62aa5dd3cc0757eb077","impliedFormat":1},{"version":"7ec359bbc29b69d4063fe7dad0baaf35f1856f914db16b3f4f6e3e1bca4099fa","impliedFormat":1},{"version":"70790a7f0040993ca66ab8a07a059a0f8256e7bb57d968ae945f696cbff4ac7a","impliedFormat":1},{"version":"d1b9a81e99a0050ca7f2d98d7eedc6cda768f0eb9fa90b602e7107433e64c04c","impliedFormat":1},{"version":"a022503e75d6953d0e82c2c564508a5c7f8556fad5d7f971372d2d40479e4034","impliedFormat":1},{"version":"b215c4f0096f108020f666ffcc1f072c81e9f2f95464e894a5d5f34c5ea2a8b1","impliedFormat":1},{"version":"644491cde678bd462bb922c1d0cfab8f17d626b195ccb7f008612dc31f445d2d","impliedFormat":1},{"version":"dfe54dab1fa4961a6bcfba68c4ca955f8b5bbeb5f2ab3c915aa7adaa2eabc03a","impliedFormat":1},{"version":"1251d53755b03cde02466064260bb88fd83c30006a46395b7d9167340bc59b73","impliedFormat":1},{"version":"47865c5e695a382a916b1eedda1b6523145426e48a2eae4647e96b3b5e52024f","impliedFormat":1},{"version":"4cdf27e29feae6c7826cdd5c91751cc35559125e8304f9e7aed8faef97dcf572","impliedFormat":1},{"version":"331b8f71bfae1df25d564f5ea9ee65a0d847c4a94baa45925b6f38c55c7039bf","impliedFormat":1},{"version":"2a771d907aebf9391ac1f50e4ad37952943515eeea0dcc7e78aa08f508294668","impliedFormat":1},{"version":"0146fd6262c3fd3da51cb0254bb6b9a4e42931eb2f56329edd4c199cb9aaf804","impliedFormat":1},{"version":"183f480885db5caa5a8acb833c2be04f98056bdcc5fb29e969ff86e07efe57ab","impliedFormat":99},{"version":"960bd764c62ac43edc24eaa2af958a4b4f1fa5d27df5237e176d0143b36a39c6","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ec16d7a4e366c06a4573d299e15fe6207fc080f41beac5da06f4af33ea9761e","impliedFormat":1},{"version":"59f8dc89b9e724a6a667f52cdf4b90b6816ae6c9842ce176d38fcc973669009e","affectsGlobalScope":true,"impliedFormat":1},{"version":"e4af494f7a14b226bbe732e9c130d8811f8c7025911d7c58dd97121a85519715","impliedFormat":1},{"version":"47416e41b1af81e53e8c3cc5bf909d47ff632a7b6eddfe7ff43d187b4dcca047","impliedFormat":99},{"version":"b34b5f6b506abb206b1ea73c6a332b9ee9c8c98be0f6d17cdbda9430ecc1efab","impliedFormat":99},{"version":"75d4c746c3d16af0df61e7b0afe9606475a23335d9f34fcc525d388c21e9058b","impliedFormat":99},{"version":"fa959bf357232201c32566f45d97e70538c75a093c940af594865d12f31d4912","impliedFormat":99},{"version":"d2c52abd76259fc39a30dfae70a2e5ce77fd23144457a7ff1b64b03de6e3aec7","impliedFormat":99},{"version":"e6233e1c976265e85aa8ad76c3881febe6264cb06ae3136f0257e1eab4a6cc5a","impliedFormat":99},{"version":"f73e2335e568014e279927321770da6fe26facd4ac96cdc22a56687f1ecbb58e","impliedFormat":99},{"version":"317878f156f976d487e21fd1d58ad0461ee0a09185d5b0a43eedf2a56eb7e4ea","impliedFormat":99},{"version":"324ac98294dab54fbd580c7d0e707d94506d7b2c3d5efe981a8495f02cf9ad96","impliedFormat":99},{"version":"9ec72eb493ff209b470467e24264116b6a8616484bca438091433a545dfba17e","impliedFormat":99},{"version":"d6ee22aba183d5fc0c7b8617f77ee82ecadc2c14359cc51271c135e23f6ed51f","impliedFormat":99},{"version":"49747416f08b3ba50500a215e7a55d75268b84e31e896a40313c8053e8dec908","impliedFormat":99},{"version":"81e634f1c5e1ca309e7e3dc69e2732eea932ef07b8b34517d452e5a3e9a36fa3","impliedFormat":99},{"version":"34f39f75f2b5aa9c84a9f8157abbf8322e6831430e402badeaf58dd284f9b9a6","impliedFormat":99},{"version":"427fe2004642504828c1476d0af4270e6ad4db6de78c0b5da3e4c5ca95052a99","impliedFormat":1},{"version":"2eeffcee5c1661ddca53353929558037b8cf305ffb86a803512982f99bcab50d","impliedFormat":99},{"version":"9afb4cb864d297e4092a79ee2871b5d3143ea14153f62ef0bb04ede25f432030","affectsGlobalScope":true,"impliedFormat":99},{"version":"891694d3694abd66f0b8872997b85fd8e52bc51632ce0f8128c96962b443189f","impliedFormat":99},{"version":"69bf2422313487956e4dacf049f30cb91b34968912058d244cb19e4baa24da97","impliedFormat":99},{"version":"971a2c327ff166c770c5fb35699575ba2d13bba1f6d2757309c9be4b30036c8e","impliedFormat":99},{"version":"4f45e8effab83434a78d17123b01124259fbd1e335732135c213955d85222234","impliedFormat":99},{"version":"7bd51996fb7717941cbe094b05adc0d80b9503b350a77b789bbb0fc786f28053","impliedFormat":99},{"version":"b62006bbc815fe8190c7aee262aad6bff993e3f9ade70d7057dfceab6de79d2f","impliedFormat":99},{"version":"13497c0d73306e27f70634c424cd2f3b472187164f36140b504b3756b0ff476d","impliedFormat":99},{"version":"bf7a2d0f6d9e72d59044079d61000c38da50328ccdff28c47528a1a139c610ec","impliedFormat":99},{"version":"04471dc55f802c29791cc75edda8c4dd2a121f71c2401059da61eff83099e8ab","impliedFormat":99},{"version":"120a80aa556732f684db3ed61aeff1d6671e1655bd6cba0aa88b22b88ac9a6b1","affectsGlobalScope":true,"impliedFormat":99},{"version":"e58c0b5226aff07b63be6ac6e1bec9d55bc3d2bda3b11b9b68cccea8c24ae839","affectsGlobalScope":true,"impliedFormat":99},{"version":"a23a08b626aa4d4a1924957bd8c4d38a7ffc032e21407bbd2c97413e1d8c3dbd","impliedFormat":99},{"version":"5a88655bf852c8cc007d6bc874ab61d1d63fba97063020458177173c454e9b4a","impliedFormat":99},{"version":"7e4dfae2da12ec71ffd9f55f4641a6e05610ce0d6784838659490e259e4eb13c","impliedFormat":99},{"version":"c30a41267fc04c6518b17e55dcb2b810f267af4314b0b6d7df1c33a76ce1b330","impliedFormat":1},{"version":"72422d0bac4076912385d0c10911b82e4694fc106e2d70added091f88f0824ba","impliedFormat":1},{"version":"da251b82c25bee1d93f9fd80c5a61d945da4f708ca21285541d7aff83ecb8200","impliedFormat":1},{"version":"64db14db2bf37ac089766fdb3c7e1160fabc10e9929bc2deeede7237e4419fc8","impliedFormat":1},{"version":"98b94085c9f78eba36d3d2314affe973e8994f99864b8708122750788825c771","impliedFormat":1},{"version":"13573a613314e40482386fe9c7934f9d86f3e06f19b840466c75391fb833b99b","impliedFormat":99},{"version":"db8e26b83e6708b250200435440c326d84dd9f07114c72b33775569486bebd0b","impliedFormat":1}],"root":[[64,67]],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"declarationMap":true,"emitDecoratorMetadata":false,"esModuleInterop":true,"exactOptionalPropertyTypes":true,"experimentalDecorators":false,"module":199,"noImplicitAny":true,"noPropertyAccessFromIndexSignature":true,"noUncheckedIndexedAccess":true,"outDir":"./","removeComments":false,"rootDir":"..","skipLibCheck":true,"sourceMap":true,"strict":true,"strictNullChecks":true,"target":9},"referencedMap":[[237,1],[235,2],[190,2],[119,3],[120,3],[121,4],[73,5],[122,6],[123,7],[124,8],[68,2],[71,9],[69,2],[70,2],[125,10],[126,11],[127,12],[128,13],[129,14],[130,15],[131,15],[132,16],[133,17],[134,18],[135,19],[74,2],[72,2],[136,20],[137,21],[138,22],[172,23],[139,24],[140,2],[141,25],[142,26],[143,27],[144,28],[145,29],[146,30],[147,31],[148,32],[149,33],[150,33],[151,34],[152,2],[153,35],[154,36],[156,37],[155,38],[157,39],[158,40],[159,41],[160,42],[161,43],[162,44],[163,45],[164,46],[165,47],[166,48],[167,49],[168,50],[169,51],[75,2],[76,2],[77,2],[116,52],[117,2],[118,2],[170,53],[171,54],[247,55],[224,56],[222,2],[223,2],[173,2],[184,57],[179,58],[182,59],[238,60],[229,2],[232,61],[231,62],[243,62],[230,63],[246,2],[181,64],[183,64],[175,65],[178,66],[225,65],[180,67],[174,2],[236,2],[78,2],[195,2],[254,68],[256,69],[255,70],[253,71],[252,2],[213,72],[211,73],[212,74],[200,75],[201,73],[208,76],[199,77],[204,78],[214,2],[205,79],[210,80],[216,81],[215,82],[198,83],[206,84],[207,85],[202,86],[209,72],[203,87],[192,88],[191,89],[197,2],[239,2],[176,2],[177,90],[61,2],[62,2],[12,2],[10,2],[11,2],[16,2],[15,2],[2,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[23,2],[24,2],[3,2],[25,2],[26,2],[4,2],[27,2],[31,2],[28,2],[29,2],[30,2],[32,2],[33,2],[34,2],[5,2],[35,2],[36,2],[37,2],[38,2],[6,2],[42,2],[39,2],[40,2],[41,2],[43,2],[7,2],[44,2],[49,2],[50,2],[45,2],[46,2],[47,2],[48,2],[8,2],[54,2],[51,2],[52,2],[53,2],[55,2],[9,2],[56,2],[63,2],[57,2],[58,2],[60,2],[59,2],[1,2],[14,2],[13,2],[94,91],[104,92],[93,91],[114,93],[85,94],[84,95],[113,96],[107,97],[112,98],[87,99],[101,100],[86,101],[110,102],[82,103],[81,96],[111,104],[83,105],[88,106],[89,2],[92,106],[79,2],[115,107],[105,108],[96,109],[97,110],[99,111],[95,112],[98,113],[108,96],[90,114],[91,115],[100,116],[80,117],[103,108],[102,106],[106,2],[109,118],[241,119],[227,120],[228,119],[226,2],[188,121],[221,122],[194,123],[189,121],[187,2],[193,124],[219,2],[217,2],[218,2],[196,2],[220,125],[240,126],[233,127],[242,128],[186,129],[248,130],[250,131],[244,132],[251,133],[249,134],[234,135],[245,136],[257,137],[258,138],[185,2],[64,2],[65,2],[67,139],[66,140]],"latestChangedDtsFile":"./index.d.ts","version":"5.7.3"}
@@ -0,0 +1,192 @@
1
+ import type { DiffResult, LintResult } from './governance.js';
2
+ /**
3
+ * Semver bump type for version increments.
4
+ */
5
+ export type BumpType = 'major' | 'minor' | 'patch';
6
+ /**
7
+ * Version entry for a single contract in the history.
8
+ */
9
+ export interface VersionEntry {
10
+ /** Semver version string (e.g., "1.2.0") */
11
+ version: string;
12
+ /** ISO 8601 timestamp of when this version was released */
13
+ released: string;
14
+ /** Changeset filenames that contributed to this version */
15
+ changesets?: string[];
16
+ }
17
+ /**
18
+ * Contents of versions.json file for a single contract.
19
+ *
20
+ * @example
21
+ * ```json
22
+ * {
23
+ * "current": "1.2.0",
24
+ * "versions": [
25
+ * { "version": "0.1.0", "released": "2026-02-01T10:00:00Z" },
26
+ * { "version": "1.0.0", "released": "2026-02-05T14:30:00Z", "changesets": ["brave-tigers-fly"] }
27
+ * ]
28
+ * }
29
+ * ```
30
+ */
31
+ export interface ContractVersionsFile {
32
+ /** Current (latest) version */
33
+ current: string;
34
+ /** History of all versions */
35
+ versions: VersionEntry[];
36
+ }
37
+ /**
38
+ * Simple version entry used in the legacy VersionsFile format.
39
+ * Contains only the essential version tracking fields.
40
+ */
41
+ export interface SimpleVersionEntry {
42
+ /** Current version */
43
+ version: string;
44
+ /** ISO 8601 timestamp of last release */
45
+ released: string;
46
+ }
47
+ /**
48
+ * Aggregated versions.json file mapping contract names to their version info.
49
+ *
50
+ * @remarks
51
+ * This is the legacy format used for simple version tracking.
52
+ * For richer history tracking, use ContractVersionsFile per contract.
53
+ */
54
+ export interface VersionsFile {
55
+ [contractName: string]: SimpleVersionEntry;
56
+ }
57
+ /**
58
+ * Parsed changeset file data.
59
+ *
60
+ * @example
61
+ * ```markdown
62
+ * ---
63
+ * "orders-api": major
64
+ * "order-schema": minor
65
+ * ---
66
+ *
67
+ * ## orders-api
68
+ *
69
+ * **Breaking changes:**
70
+ * - Removed endpoint GET /orders/{id}/details
71
+ * ```
72
+ */
73
+ export interface ChangesetFile {
74
+ /** Filename without path (e.g., "brave-tigers-fly.md") */
75
+ filename: string;
76
+ /** Full path to the changeset file */
77
+ path: string;
78
+ /** Map of contract name to bump type */
79
+ bumps: Record<string, BumpType>;
80
+ /** Markdown body with change descriptions */
81
+ body: string;
82
+ }
83
+ /**
84
+ * Result of applying a version bump to a single contract.
85
+ */
86
+ export interface BumpResult {
87
+ /** Contract name */
88
+ contract: string;
89
+ /** Version before bump */
90
+ oldVersion: string;
91
+ /** Version after bump */
92
+ newVersion: string;
93
+ /** Type of bump applied */
94
+ bumpType: BumpType;
95
+ /** Markdown section describing changes from changeset body */
96
+ changes: string;
97
+ }
98
+ /**
99
+ * Result of the `contractual version` command.
100
+ */
101
+ export interface VersionCommandResult {
102
+ /** All version bumps that were applied */
103
+ bumps: BumpResult[];
104
+ /** Filenames of changesets that were consumed */
105
+ consumedChangesets: string[];
106
+ /** Updated changelog content (if generated) */
107
+ changelog?: string;
108
+ }
109
+ /**
110
+ * Result of the `contractual lint` command.
111
+ */
112
+ export interface LintCommandResult {
113
+ /** Whether all contracts passed linting (no errors) */
114
+ success: boolean;
115
+ /** Individual lint results per contract */
116
+ results: LintResult[];
117
+ /** Total error count across all contracts */
118
+ errorCount: number;
119
+ /** Total warning count across all contracts */
120
+ warningCount: number;
121
+ }
122
+ /**
123
+ * Result of the `contractual breaking` command.
124
+ */
125
+ export interface BreakingCommandResult {
126
+ /** Whether any breaking changes were detected */
127
+ hasBreaking: boolean;
128
+ /** Individual diff results per contract */
129
+ results: DiffResult[];
130
+ /** Suggested overall bump type based on highest severity */
131
+ suggestedBump: BumpType | 'none';
132
+ }
133
+ /**
134
+ * Result of the `contractual changeset` command.
135
+ */
136
+ export interface ChangesetCommandResult {
137
+ /** Whether a changeset was created */
138
+ created: boolean;
139
+ /** Path to the created changeset file (if created) */
140
+ path?: string;
141
+ /** Filename of the created changeset (if created) */
142
+ filename?: string;
143
+ /** Map of contract names to their detected bump types */
144
+ bumps: Record<string, BumpType>;
145
+ }
146
+ /**
147
+ * Result of the `contractual status` command.
148
+ */
149
+ export interface StatusCommandResult {
150
+ /** Current contract versions */
151
+ versions: Record<string, string>;
152
+ /** Pending changesets awaiting consumption */
153
+ pendingChangesets: string[];
154
+ /** Predicted version bumps from pending changesets */
155
+ pendingBumps: Record<string, {
156
+ current: string;
157
+ next: string;
158
+ bumpType: BumpType;
159
+ }>;
160
+ /** Whether there are uncommitted spec changes without changesets */
161
+ hasUncommittedChanges: boolean;
162
+ }
163
+ /**
164
+ * Type guard to check if a value is a valid BumpType.
165
+ *
166
+ * @param value - The value to check
167
+ * @returns True if the value is a valid BumpType
168
+ */
169
+ export declare function isBumpType(value: unknown): value is BumpType;
170
+ /**
171
+ * Pre-release state stored in .contractual/pre.json
172
+ *
173
+ * @example
174
+ * ```json
175
+ * {
176
+ * "tag": "beta",
177
+ * "enteredAt": "2026-03-10T10:00:00Z",
178
+ * "initialVersions": {
179
+ * "orders-api": "1.2.0"
180
+ * }
181
+ * }
182
+ * ```
183
+ */
184
+ export interface PreReleaseState {
185
+ /** Pre-release tag (e.g., "alpha", "beta", "rc") */
186
+ tag: string;
187
+ /** ISO 8601 timestamp when pre-release mode was entered */
188
+ enteredAt: string;
189
+ /** Versions of contracts when pre-release mode was entered */
190
+ initialVersions: Record<string, string>;
191
+ }
192
+ //# sourceMappingURL=versioning.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"versioning.d.ts","sourceRoot":"","sources":["../versioning.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,11 @@
1
+ /**
2
+ * Type guard to check if a value is a valid BumpType.
3
+ *
4
+ * @param value - The value to check
5
+ * @returns True if the value is a valid BumpType
6
+ */
7
+ export function isBumpType(value) {
8
+ return (typeof value === 'string' &&
9
+ ['major', 'minor', 'patch'].includes(value));
10
+ }
11
+ //# sourceMappingURL=versioning.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"versioning.js","sourceRoot":"","sources":["../versioning.ts"],"names":[],"mappings":"AA2KA;;;;;GAKG;AACH,MAAM,UAAU,UAAU,CAAC,KAAc;IACvC,OAAO,CACL,OAAO,KAAK,KAAK,QAAQ;QACzB,CAAC,OAAO,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC,QAAQ,CAAC,KAAK,CAAC,CAC5C,CAAC;AACJ,CAAC"}
package/package.json ADDED
@@ -0,0 +1,52 @@
1
+ {
2
+ "name": "@contractual/types",
3
+ "private": false,
4
+ "version": "0.1.0-dev.0",
5
+ "description": "TypeScript type definitions for Contractual - schema contract lifecycle orchestration",
6
+ "license": "MIT",
7
+ "type": "module",
8
+ "sideEffects": false,
9
+ "types": "./dist/index.d.ts",
10
+ "exports": {
11
+ ".": {
12
+ "types": "./dist/index.d.ts",
13
+ "import": "./dist/index.js"
14
+ }
15
+ },
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "https://github.com/contractual-dev/contractual.git",
19
+ "directory": "packages/types"
20
+ },
21
+ "homepage": "https://contractual.dev",
22
+ "bugs": {
23
+ "url": "https://github.com/contractual-dev/contractual/issues"
24
+ },
25
+ "keywords": [
26
+ "contractual",
27
+ "types",
28
+ "typescript",
29
+ "openapi",
30
+ "json-schema",
31
+ "asyncapi",
32
+ "odcs",
33
+ "schema",
34
+ "contract"
35
+ ],
36
+ "engines": {
37
+ "node": ">=20.0.0"
38
+ },
39
+ "scripts": {
40
+ "prebuild": "pnpm rimraf dist",
41
+ "build": "tsc -p tsconfig.build.json",
42
+ "typecheck": "tsc -p tsconfig.build.json --noEmit"
43
+ },
44
+ "files": [
45
+ "dist"
46
+ ],
47
+ "publishConfig": {
48
+ "access": "public",
49
+ "provenance": true
50
+ },
51
+ "gitHead": "a18dcec2397cf45cbd4ba86461d378ccd71ba657"
52
+ }