@nuasite/cms-types 0.43.0-beta.1

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.
@@ -0,0 +1,270 @@
1
+ /**
2
+ * Shared structural contract types for the Nua CMS.
3
+ *
4
+ * These describe the *data/structure* half of the CMS — collections, fields,
5
+ * entries, page/redirect operations and the media storage adapter. They are
6
+ * framework-agnostic (no Astro, Vite, manifest or SEO coupling) and are reused
7
+ * 1:1 as the wire model across cms-core, the sidecar and webmaster.
8
+ *
9
+ * Render/manifest/SEO types (ManifestEntry, CmsManifest, SeoOptions, color/text
10
+ * style types, ComponentInstance) intentionally stay in `@nuasite/cms`.
11
+ */
12
+ /** Canonical list of field types for collection schema inference. Single source of truth for `FieldType`. */
13
+ export declare const FIELD_TYPES: readonly ["text", "textarea", "date", "datetime", "time", "year", "month", "boolean", "number", "image", "file", "url", "email", "tel", "color", "select", "array", "object", "reference"];
14
+ /** Field types for collection schema inference */
15
+ export type FieldType = (typeof FIELD_TYPES)[number];
16
+ /** Runtime guard: whether a string is a known `FieldType`. */
17
+ export declare function isFieldType(value: string): value is FieldType;
18
+ /** Editor hints for enhanced field rendering (extracted from `n.*()` options in content config) */
19
+ export interface FieldHints {
20
+ min?: number | string;
21
+ max?: number | string;
22
+ step?: number;
23
+ placeholder?: string;
24
+ maxLength?: number;
25
+ minLength?: number;
26
+ rows?: number;
27
+ accept?: string;
28
+ }
29
+ /** Definition of a single field in a collection's schema */
30
+ export interface FieldDefinition {
31
+ /** Field name as it appears in frontmatter */
32
+ name: string;
33
+ /** Inferred or specified field type */
34
+ type: FieldType;
35
+ /** Whether the field is required (present in all entries) */
36
+ required: boolean;
37
+ /** Default value for the field */
38
+ defaultValue?: unknown;
39
+ /** Options for 'select' type fields */
40
+ options?: string[];
41
+ /** Item type for 'array' fields */
42
+ itemType?: FieldType;
43
+ /** Nested fields for 'object' type */
44
+ fields?: FieldDefinition[];
45
+ /** Sample values seen across entries */
46
+ examples?: unknown[];
47
+ /** Where the field renders in the editor UI */
48
+ position?: 'sidebar' | 'header';
49
+ /** Group name for visual grouping with section headers */
50
+ group?: string;
51
+ /** Referenced collection name for 'reference' type fields */
52
+ collection?: string;
53
+ /** Hide from the editor UI (e.g. derived/computed fields) */
54
+ hidden?: boolean;
55
+ /** Source field name this field is derived from (e.g. categoryHref derived from category) */
56
+ derivedFrom?: string;
57
+ /** Editor hints for enhanced field rendering */
58
+ hints?: FieldHints;
59
+ /** True when the field uses Astro's `image()` schema (entry-relative paths through astro:assets). */
60
+ astroImage?: boolean;
61
+ /** Semantic role used by the editor UI to position special fields without name matching.
62
+ * - `publish-toggle`: boolean controlling whether the entry is published (e.g. `draft`, `isDraft`, `published`).
63
+ * - `publish-date`: the publish/release date field (e.g. `date`, `publishDate`, `publishedAt`). */
64
+ role?: 'publish-toggle' | 'publish-date';
65
+ }
66
+ /** Per-entry metadata for collection browsing */
67
+ export interface CollectionEntryInfo {
68
+ slug: string;
69
+ title?: string;
70
+ sourcePath: string;
71
+ draft?: boolean;
72
+ /** URL pathname of the rendered page for this entry */
73
+ pathname?: string;
74
+ /** Full entry data for data collections (JSON/YAML) */
75
+ data?: Record<string, unknown>;
76
+ }
77
+ /** Definition of a content collection with inferred schema */
78
+ export interface CollectionDefinition {
79
+ /** Collection identifier (directory name) */
80
+ name: string;
81
+ /** Human-readable label for the collection */
82
+ label: string;
83
+ /** Path to the collection directory */
84
+ path: string;
85
+ /** Number of entries in the collection */
86
+ entryCount: number;
87
+ /** Inferred field definitions */
88
+ fields: FieldDefinition[];
89
+ /** Whether the collection has draft support */
90
+ supportsDraft?: boolean;
91
+ /** Collection type: 'content' for markdown, 'data' for JSON/YAML */
92
+ type?: 'content' | 'data';
93
+ /** File extension used by entries */
94
+ fileExtension: 'md' | 'mdx' | 'json' | 'yaml' | 'yml';
95
+ /** Per-entry metadata for browsing */
96
+ entries?: CollectionEntryInfo[];
97
+ /** Frontmatter field name to sort entries by (detected from `.orderBy()` in content config) */
98
+ orderBy?: string;
99
+ /** Sort direction for orderBy field */
100
+ orderDirection?: 'asc' | 'desc';
101
+ /**
102
+ * Name of the collection this one is nested under in the CMS browser, when it shares a base
103
+ * directory with another collection (e.g. a nested `*​/otazky/*` collection grouped under the
104
+ * `*​/index.md` collection at the same base). Purely presentational grouping.
105
+ */
106
+ parentCollection?: string;
107
+ }
108
+ /** Represents a content collection entry (markdown file) */
109
+ export interface CollectionEntry {
110
+ /** Collection name (e.g., 'services', 'blog') */
111
+ collectionName: string;
112
+ /** Entry slug (e.g., '3d-tisk') */
113
+ collectionSlug: string;
114
+ /** Path to the markdown file relative to project root */
115
+ sourcePath: string;
116
+ /** Frontmatter fields with their values and line numbers */
117
+ frontmatter: Record<string, {
118
+ value: string;
119
+ line: number;
120
+ }>;
121
+ /** Full markdown body content */
122
+ body: string;
123
+ /** Line number where body starts (1-indexed) */
124
+ bodyStartLine: number;
125
+ /** ID of the wrapper element containing the rendered markdown */
126
+ wrapperId?: string;
127
+ }
128
+ /** Result of a content/structure mutation. */
129
+ export interface MutationResult {
130
+ success: boolean;
131
+ /** Touched file, for targeted HMR/invalidate. */
132
+ sourcePath?: string;
133
+ /** Hash after write, for optimistic concurrency. */
134
+ sourceHash?: string;
135
+ /** Page URL for the entry, when known. */
136
+ pathname?: string;
137
+ error?: string;
138
+ }
139
+ export interface ComponentProp {
140
+ name: string;
141
+ type: string;
142
+ required: boolean;
143
+ defaultValue?: string;
144
+ description?: string;
145
+ }
146
+ export interface ComponentDefinition {
147
+ name: string;
148
+ file: string;
149
+ props: ComponentProp[];
150
+ description?: string;
151
+ slots?: string[];
152
+ previewUrl?: string;
153
+ /** Viewport width (in px) used to render the preview iframe (default: 1280) */
154
+ previewWidth?: number;
155
+ }
156
+ export interface CreatePageRequest {
157
+ title: string;
158
+ slug: string;
159
+ layoutPath?: string;
160
+ }
161
+ export interface DuplicatePageRequest {
162
+ sourcePagePath: string;
163
+ slug: string;
164
+ title?: string;
165
+ createRedirect?: boolean;
166
+ }
167
+ export interface DeletePageRequest {
168
+ pagePath: string;
169
+ createRedirect?: boolean;
170
+ redirectTo?: string;
171
+ }
172
+ export interface PageOperationResponse {
173
+ success: boolean;
174
+ filePath?: string;
175
+ slug?: string;
176
+ url?: string;
177
+ error?: string;
178
+ }
179
+ export interface LayoutInfo {
180
+ name: string;
181
+ path: string;
182
+ }
183
+ export interface RedirectRule {
184
+ source: string;
185
+ destination: string;
186
+ statusCode: number;
187
+ lineIndex: number;
188
+ }
189
+ export interface AddRedirectRequest {
190
+ source: string;
191
+ destination: string;
192
+ statusCode?: number;
193
+ }
194
+ export interface UpdateRedirectRequest {
195
+ lineIndex: number;
196
+ source: string;
197
+ destination: string;
198
+ statusCode?: number;
199
+ }
200
+ export interface DeleteRedirectRequest {
201
+ lineIndex: number;
202
+ }
203
+ export interface RedirectOperationResponse {
204
+ success: boolean;
205
+ error?: string;
206
+ }
207
+ export interface GetRedirectsResponse {
208
+ rules: RedirectRule[];
209
+ }
210
+ export interface MediaItem {
211
+ id: string;
212
+ url: string;
213
+ filename: string;
214
+ annotation?: string;
215
+ contentType: string;
216
+ width?: number;
217
+ height?: number;
218
+ uploadedAt?: string;
219
+ /** Folder path relative to media root (e.g. 'photos') */
220
+ folder?: string;
221
+ }
222
+ export interface MediaFolderItem {
223
+ /** Folder name (last segment) */
224
+ name: string;
225
+ /** Full relative path from media root (e.g. 'photos/vacation') */
226
+ path: string;
227
+ }
228
+ export type MediaTypeFilter = 'all' | 'photo' | 'graphic' | 'video' | 'document';
229
+ export interface MediaListOptions {
230
+ limit?: number;
231
+ cursor?: string;
232
+ /** List contents of this subfolder (relative to media root) */
233
+ folder?: string;
234
+ }
235
+ export interface MediaListResult {
236
+ items: MediaItem[];
237
+ /** Subfolders in the current directory */
238
+ folders: MediaFolderItem[];
239
+ hasMore: boolean;
240
+ cursor?: string;
241
+ }
242
+ export interface MediaUploadResult {
243
+ success: boolean;
244
+ url?: string;
245
+ filename?: string;
246
+ annotation?: string;
247
+ id?: string;
248
+ error?: string;
249
+ }
250
+ export interface MediaStorageAdapter {
251
+ list(options?: MediaListOptions): Promise<MediaListResult>;
252
+ upload(file: Buffer, filename: string, contentType: string, options?: {
253
+ folder?: string;
254
+ }): Promise<MediaUploadResult>;
255
+ delete(id: string): Promise<{
256
+ success: boolean;
257
+ error?: string;
258
+ }>;
259
+ /** Create an empty folder. Folders are also created implicitly on upload. */
260
+ createFolder?(folder: string): Promise<{
261
+ success: boolean;
262
+ error?: string;
263
+ }>;
264
+ /** Local filesystem info for direct file serving in dev (bypasses Vite's public dir cache) */
265
+ staticFiles?: {
266
+ urlPrefix: string;
267
+ dir: string;
268
+ };
269
+ }
270
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"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"}
@@ -0,0 +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.es2024.d.ts","../../../../node_modules/typescript/lib/lib.es2025.d.ts","../../../../node_modules/typescript/lib/lib.esnext.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.es2024.arraybuffer.d.ts","../../../../node_modules/typescript/lib/lib.es2024.collection.d.ts","../../../../node_modules/typescript/lib/lib.es2024.object.d.ts","../../../../node_modules/typescript/lib/lib.es2024.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../../../node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2024.string.d.ts","../../../../node_modules/typescript/lib/lib.es2025.collection.d.ts","../../../../node_modules/typescript/lib/lib.es2025.float16.d.ts","../../../../node_modules/typescript/lib/lib.es2025.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2025.iterator.d.ts","../../../../node_modules/typescript/lib/lib.es2025.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2025.regexp.d.ts","../../../../node_modules/typescript/lib/lib.esnext.array.d.ts","../../../../node_modules/typescript/lib/lib.esnext.collection.d.ts","../../../../node_modules/typescript/lib/lib.esnext.date.d.ts","../../../../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../../node_modules/typescript/lib/lib.esnext.error.d.ts","../../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../../node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.esnext.temporal.d.ts","../../../../node_modules/typescript/lib/lib.esnext.typedarrays.d.ts","../../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../src/index.ts","../../../../node_modules/undici-types/utility.d.ts","../../../../node_modules/undici-types/header.d.ts","../../../../node_modules/undici-types/readable.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/@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/@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/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/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/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/bun-types/globals.d.ts","../../../../node_modules/bun-types/s3.d.ts","../../../../node_modules/bun-types/fetch.d.ts","../../../../node_modules/bun-types/jsx.d.ts","../../../../node_modules/bun-types/bun.d.ts","../../../../node_modules/bun-types/extensions.d.ts","../../../../node_modules/bun-types/devserver.d.ts","../../../../node_modules/bun-types/ffi.d.ts","../../../../node_modules/bun-types/html-rewriter.d.ts","../../../../node_modules/bun-types/jsc.d.ts","../../../../node_modules/bun-types/sqlite.d.ts","../../../../node_modules/bun-types/vendor/expect-type/utils.d.ts","../../../../node_modules/bun-types/vendor/expect-type/overloads.d.ts","../../../../node_modules/bun-types/vendor/expect-type/branding.d.ts","../../../../node_modules/bun-types/vendor/expect-type/messages.d.ts","../../../../node_modules/bun-types/vendor/expect-type/index.d.ts","../../../../node_modules/bun-types/test.d.ts","../../../../node_modules/bun-types/wasm.d.ts","../../../../node_modules/bun-types/overrides.d.ts","../../../../node_modules/bun-types/deprecated.d.ts","../../../../node_modules/bun-types/redis.d.ts","../../../../node_modules/bun-types/shell.d.ts","../../../../node_modules/bun-types/serve.d.ts","../../../../node_modules/bun-types/sql.d.ts","../../../../node_modules/bun-types/security.d.ts","../../../../node_modules/bun-types/bundle.d.ts","../../../../node_modules/bun-types/bun.ns.d.ts","../../../../node_modules/bun-types/index.d.ts","../../../../node_modules/@types/bun/index.d.ts"],"fileIdsList":[[94,115,123,127,130,132,133,134,146,210,211,212,214,216,227,229,230,231,232,233,234,237],[94,112,113,115,123,127,130,132,133,134,146,210,211,212,214,216,227,229,230,231,232,233,234],[94,114,115,123,127,130,132,133,134,146,210,211,212,214,216,227,229,230,231,232,233,234],[115,123,127,130,132,133,134,146,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,154,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,116,121,123,126,127,130,132,133,134,136,146,151,163,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,116,117,123,126,127,130,132,133,134,146,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,118,123,127,130,132,133,134,146,164,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,119,120,123,127,130,132,133,134,137,146,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,120,123,127,130,132,133,134,146,151,160,210,211,212,214,216,227,228,229,230,231,232,233,234],[94,115,121,123,126,127,130,132,133,134,136,146,210,211,212,214,216,227,229,230,231,232,233,234],[94,114,115,122,123,127,130,132,133,134,146,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,124,127,130,132,133,134,146,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,125,126,127,130,132,133,134,146,210,211,212,214,216,227,229,230,231,232,233,234],[94,114,115,123,126,127,130,132,133,134,146,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,126,127,128,130,132,133,134,146,151,163,210,211,212,214,216,227,228,229,230,231,232,233,234],[94,115,123,126,127,128,130,132,133,134,146,151,154,210,211,212,214,216,227,228,229,230,231,232,233,234],[94,115,123,126,127,129,130,132,133,134,136,146,151,163,209,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,126,127,129,130,132,133,134,136,146,151,160,163,210,211,212,214,216,227,228,229,230,231,232,233,234],[94,115,123,127,129,130,131,132,133,134,146,151,160,163,210,211,212,214,216,227,228,229,230,231,232,233,234],[92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,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,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,126,127,130,132,133,134,146,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,127,130,132,134,146,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,135,146,163,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,126,127,130,132,133,134,136,146,151,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,137,146,210,211,212,214,216,227,228,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,138,146,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,126,127,130,132,133,134,141,146,210,211,212,214,216,227,229,230,231,232,233,234],[94,112,113,114,115,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,210,211,212,214,216,227,228,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,143,146,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,144,146,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,120,123,127,130,132,133,134,136,146,154,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,126,127,130,132,133,134,146,147,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,148,164,167,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,126,127,130,132,133,134,146,151,153,154,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,152,154,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,154,164,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,155,210,211,212,214,216,227,229,230,231,232,233,234],[94,112,115,123,127,130,132,133,134,146,151,157,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,151,156,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,126,127,130,132,133,134,146,158,159,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,158,159,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,120,123,127,130,132,133,134,136,146,151,160,210,211,212,214,216,227,228,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,161,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,136,146,162,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,127,129,130,132,133,134,144,146,163,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,164,165,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,120,123,127,130,132,133,134,146,165,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,151,166,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,135,146,167,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,168,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,118,123,127,130,132,133,134,146,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,120,123,127,130,132,133,134,146,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,164,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,209,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,163,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,169,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,141,146,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,154,210,211,212,214,216,227,228,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,159,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,126,127,128,130,132,133,134,141,146,151,154,163,166,167,169,209,210,211,212,214,216,227,228,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,151,170,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,120,123,127,129,130,132,133,134,146,160,164,169,209,210,211,212,213,216,217,227,228,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,210,211,212,214,216,227,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,210,211,212,214,227,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,209,210,211,214,216,227,229,230,231,232,233,234],[94,115,120,123,127,130,132,133,134,141,146,151,154,160,164,169,209,211,212,214,216,227,228,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,171,210,211,212,214,215,216,217,218,219,220,226,227,228,229,230,231,232,233,234,235,236],[94,115,118,120,123,127,128,130,132,133,134,137,146,154,160,163,170,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,210,211,212,214,216,227,229,231,232,233,234],[94,115,123,127,130,132,133,134,146,210,212,214,216,227,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,210,211,212,214,216,227,229,230,231,232,233],[94,115,123,127,130,132,133,134,146,210,211,212,214,216,227,229,230,231,233,234],[94,115,123,127,130,132,133,134,146,210,211,212,214,216,227,229,230,232,233,234],[94,115,123,127,130,132,133,134,146,210,211,212,214,216,220,227,229,230,231,232,234],[94,115,123,127,130,132,133,134,146,210,211,212,214,216,225,227,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,210,211,212,214,216,221,222,227,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,210,211,212,214,216,221,222,223,224,227,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,210,211,212,214,216,221,223,227,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,210,211,212,214,216,221,227,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,210,211,212,214,216,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,163,175,178,181,182,210,211,212,214,216,227,228,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,151,163,178,210,211,212,214,216,227,228,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,163,178,182,210,211,212,214,216,227,228,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,151,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,172,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,176,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,163,174,175,178,210,211,212,214,216,227,228,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,136,146,160,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,171,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,171,172,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,136,146,163,174,178,210,211,212,214,216,227,228,229,230,231,232,233,234],[89,90,91,94,115,123,126,127,130,132,133,134,146,151,163,173,177,210,211,212,214,216,227,228,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,178,186,194,210,211,212,214,216,227,229,230,231,232,233,234],[90,94,115,123,127,130,132,133,134,146,176,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,178,203,204,210,211,212,214,216,227,229,230,231,232,233,234],[90,94,115,123,127,130,132,133,134,146,154,163,171,173,178,210,211,212,214,216,227,228,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,171,172,210,211,212,214,216,227,228,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,178,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,163,174,178,210,211,212,214,216,227,228,229,230,231,232,233,234],[89,94,115,123,127,130,132,133,134,146,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,172,173,174,176,177,178,179,180,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,204,205,206,207,208,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,178,196,199,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,178,186,187,188,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,176,178,187,189,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,177,210,211,212,214,216,227,229,230,231,232,233,234],[90,94,115,123,127,130,132,133,134,146,172,178,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,178,182,187,189,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,182,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,163,176,178,181,210,211,212,214,216,227,228,229,230,231,232,233,234],[90,94,115,123,127,130,132,133,134,146,174,178,186,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,151,210,211,212,214,216,227,228,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,178,196,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,189,210,211,212,214,216,227,229,230,231,232,233,234],[94,115,123,127,130,132,133,134,146,154,169,171,172,178,203,210,211,212,214,216,227,228,229,230,231,232,233,234]],"fileInfos":[{"version":"bcd24271a113971ba9eb71ff8cb01bc6b0f872a85c23fdbe5d93065b375933cd","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f88bedbeb09c6f5a6645cb24c7c55f1aa22d19ae96c8e6959cbd8b85a707bc6","impliedFormat":1},{"version":"7fe93b39b810eadd916be8db880dd7f0f7012a5cc6ffb62de8f62a2117fa6f1f","impliedFormat":1},{"version":"bb0074cc08b84a2374af33d8bf044b80851ccc9e719a5e202eacf40db2c31600","impliedFormat":1},{"version":"1a7daebe4f45fb03d9ec53d60008fbf9ac45a697fdc89e4ce218bc94b94f94d6","impliedFormat":1},{"version":"f94b133a3cb14a288803be545ac2683e0d0ff6661bcd37e31aaaec54fc382aed","impliedFormat":1},{"version":"f59d0650799f8782fd74cf73c19223730c6d1b9198671b1c5b3a38e1188b5953","impliedFormat":1},{"version":"8a15b4607d9a499e2dbeed9ec0d3c0d7372c850b2d5f1fb259e8f6d41d468a84","impliedFormat":1},{"version":"26e0fe14baee4e127f4365d1ae0b276f400562e45e19e35fd2d4c296684715e6","impliedFormat":1},{"version":"1e9332c23e9a907175e0ffc6a49e236f97b48838cc8aec9ce7e4cec21e544b65","impliedFormat":1},{"version":"3753fbc1113dc511214802a2342280a8b284ab9094f6420e7aa171e868679f91","impliedFormat":1},{"version":"999ca32883495a866aa5737fe1babc764a469e4cde6ee6b136a4b9ae68853e4b","impliedFormat":1},{"version":"17f13ecb98cbc39243f2eee1f16d45cd8ec4706b03ee314f1915f1a8b42f6984","impliedFormat":1},{"version":"eadcffda2aa84802c73938e589b9e58248d74c59cb7fcbca6474e3435ac15504","affectsGlobalScope":true,"impliedFormat":1},{"version":"105ba8ff7ba746404fe1a2e189d1d3d2e0eb29a08c18dded791af02f29fb4711","affectsGlobalScope":true,"impliedFormat":1},{"version":"00343ca5b2e3d48fa5df1db6e32ea2a59afab09590274a6cccb1dbae82e60c7c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ebd9f816d4002697cb2864bea1f0b70a103124e18a8cd9645eeccc09bdf80ab4","affectsGlobalScope":true,"impliedFormat":1},{"version":"2c1afac30a01772cd2a9a298a7ce7706b5892e447bb46bdbeef720f7b5da77ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"7b0225f483e4fa685625ebe43dd584bb7973bbd84e66a6ba7bbe175ee1048b4f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0a4b8ac6ce74679c1da2b3795296f5896e31c38e888469a8e0f99dc3305de60","affectsGlobalScope":true,"impliedFormat":1},{"version":"3084a7b5f569088e0146533a00830e206565de65cae2239509168b11434cd84f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5079c53f0f141a0698faa903e76cb41cd664e3efb01cc17a5c46ec2eb0bef42","affectsGlobalScope":true,"impliedFormat":1},{"version":"32cafbc484dea6b0ab62cf8473182bbcb23020d70845b406f80b7526f38ae862","affectsGlobalScope":true,"impliedFormat":1},{"version":"fca4cdcb6d6c5ef18a869003d02c9f0fd95df8cfaf6eb431cd3376bc034cad36","affectsGlobalScope":true,"impliedFormat":1},{"version":"b93ec88115de9a9dc1b602291b85baf825c85666bf25985cc5f698073892b467","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5c06dcc3fe849fcb297c247865a161f995cc29de7aa823afdd75aaaddc1419b","affectsGlobalScope":true,"impliedFormat":1},{"version":"b77e16112127a4b169ef0b8c3a4d730edf459c5f25fe52d5e436a6919206c4d7","affectsGlobalScope":true,"impliedFormat":1},{"version":"fbffd9337146eff822c7c00acbb78b01ea7ea23987f6c961eba689349e744f8c","affectsGlobalScope":true,"impliedFormat":1},{"version":"a995c0e49b721312f74fdfb89e4ba29bd9824c770bbb4021d74d2bf560e4c6bd","affectsGlobalScope":true,"impliedFormat":1},{"version":"c7b3542146734342e440a84b213384bfa188835537ddbda50d30766f0593aff9","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce6180fa19b1cccd07ee7f7dbb9a367ac19c0ed160573e4686425060b6df7f57","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f02e2476bccb9dbe21280d6090f0df17d2f66b74711489415a8aa4df73c9675","affectsGlobalScope":true,"impliedFormat":1},{"version":"45e3ab34c1c013c8ab2dc1ba4c80c780744b13b5676800ae2e3be27ae862c40c","affectsGlobalScope":true,"impliedFormat":1},{"version":"805c86f6cca8d7702a62a844856dbaa2a3fd2abef0536e65d48732441dde5b5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e42e397f1a5a77994f0185fd1466520691456c772d06bf843e5084ceb879a0ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"f4c2b41f90c95b1c532ecc874bd3c111865793b23aebcc1c3cbbabcd5d76ffb0","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab26191cfad5b66afa11b8bf935ef1cd88fabfcb28d30b2dfa6fad877d050332","affectsGlobalScope":true,"impliedFormat":1},{"version":"2088bc26531e38fb05eedac2951480db5309f6be3fa4a08d2221abb0f5b4200d","affectsGlobalScope":true,"impliedFormat":1},{"version":"cb9d366c425fea79716a8fb3af0d78e6b22ebbab3bd64d25063b42dc9f531c1e","affectsGlobalScope":true,"impliedFormat":1},{"version":"500934a8089c26d57ebdb688fc9757389bb6207a3c8f0674d68efa900d2abb34","affectsGlobalScope":true,"impliedFormat":1},{"version":"689da16f46e647cef0d64b0def88910e818a5877ca5379ede156ca3afb780ac3","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc21cc8b6fee4f4c2440d08035b7ea3c06b3511314c8bab6bef7a92de58a2593","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ca53d13d2957003abb47922a71866ba7cb2068f8d154877c596d63c359fed25","affectsGlobalScope":true,"impliedFormat":1},{"version":"54725f8c4df3d900cb4dac84b64689ce29548da0b4e9b7c2de61d41c79293611","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5594bc3076ac29e6c1ebda77939bc4c8833de72f654b6e376862c0473199323","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f3eb332c2d73e729f3364fcc0c2b375e72a121e8157d25a82d67a138c83a95c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f4427f9642ce8d500970e4e69d1397f64072ab73b97e476b4002a646ac743b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"48915f327cd1dea4d7bd358d9dc7732f58f9e1626a29cc0c05c8c692419d9bb7","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7bf9377723203b5a6a4b920164df22d56a43f593269ba6ae1fdc97774b68855","affectsGlobalScope":true,"impliedFormat":1},{"version":"db9709688f82c9e5f65a119c64d835f906efe5f559d08b11642d56eb85b79357","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b25b8c874acd1a4cf8444c3617e037d444d19080ac9f634b405583fd10ce1f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"37be57d7c90cf1f8112ee2636a068d8fd181289f82b744160ec56a7dc158a9f5","affectsGlobalScope":true,"impliedFormat":1},{"version":"a917a49ac94cd26b754ab84e113369a75d1a47a710661d7cd25e961cc797065f","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d3261badeb7843d157ef3e6f5d1427d0eeb0af0cf9df84a62cfd29fd47ac86e","affectsGlobalScope":true,"impliedFormat":1},{"version":"195daca651dde22f2167ac0d0a05e215308119a3100f5e6268e8317d05a92526","affectsGlobalScope":true,"impliedFormat":1},{"version":"8b11e4285cd2bb164a4dc09248bdec69e9842517db4ca47c1ba913011e44ff2f","affectsGlobalScope":true,"impliedFormat":1},{"version":"0508571a52475e245b02bc50fa1394065a0a3d05277fbf5120c3784b85651799","affectsGlobalScope":true,"impliedFormat":1},{"version":"8f9af488f510c3015af3cc8c267a9e9d96c4dd38a1fdff0e11dc5a544711415b","affectsGlobalScope":true,"impliedFormat":1},{"version":"fc611fea8d30ea72c6bbfb599c9b4d393ce22e2f5bfef2172534781e7d138104","affectsGlobalScope":true,"impliedFormat":1},{"version":"0bd714129fca875f7d4c477a1a392200b0bcd13fb2e80928cd334b63830ea047","affectsGlobalScope":true,"impliedFormat":1},{"version":"e2c9037ae6cd2c52d80ceef0b3c5ffdb488627d71529cf4f63776daf11161c9a","affectsGlobalScope":true,"impliedFormat":1},{"version":"135d5cf4d345f59f1a9caadfafcd858d3d9cc68290db616cc85797224448cccc","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc238c3f81c2984751932b6aab223cd5b830e0ac6cad76389e5e9d2ffc03287d","affectsGlobalScope":true,"impliedFormat":1},{"version":"4a07f9b76d361f572620927e5735b77d6d2101c23cdd94383eb5b706e7b36357","affectsGlobalScope":true,"impliedFormat":1},{"version":"7c4e8dc6ab834cc6baa0227e030606d29e3e8449a9f67cdf5605ea5493c4db29","affectsGlobalScope":true,"impliedFormat":1},{"version":"de7ba0fd02e06cd9a5bd4ab441ed0e122735786e67dde1e849cced1cd8b46b78","affectsGlobalScope":true,"impliedFormat":1},{"version":"6148e4e88d720a06855071c3db02069434142a8332cf9c182cda551adedf3156","affectsGlobalScope":true,"impliedFormat":1},{"version":"d63dba625b108316a40c95a4425f8d4294e0deeccfd6c7e59d819efa19e23409","affectsGlobalScope":true,"impliedFormat":1},{"version":"0568d6befee03dd435bed4fc25c4e46865b24bdcb8c563fdc21f580a2c301904","affectsGlobalScope":true,"impliedFormat":1},{"version":"30d62269b05b584741f19a5369852d5d34895aa2ac4fd948956f886d15f9cc0d","affectsGlobalScope":true,"impliedFormat":1},{"version":"f128dae7c44d8f35ee42e0a437000a57c9f06cc04f8b4fb42eebf44954d53dc8","affectsGlobalScope":true,"impliedFormat":1},{"version":"ffbe6d7b295306b2ba88030f65b74c107d8d99bdcf596ea99c62a02f606108b0","affectsGlobalScope":true,"impliedFormat":1},{"version":"996fb27b15277369c68a4ba46ed138b4e9e839a02fb4ec756f7997629242fd9f","affectsGlobalScope":true,"impliedFormat":1},{"version":"79b712591b270d4778c89706ca2cfc56ddb8c3f895840e477388f1710dc5eda9","affectsGlobalScope":true,"impliedFormat":1},{"version":"20884846cef428b992b9bd032e70a4ef88e349263f63aeddf04dda837a7dba26","affectsGlobalScope":true,"impliedFormat":1},{"version":"5fcab789c73a97cd43828ee3cc94a61264cf24d4c44472ce64ced0e0f148bdb2","affectsGlobalScope":true,"impliedFormat":1},{"version":"db59a81f070c1880ad645b2c0275022baa6a0c4f0acdc58d29d349c6efcf0903","affectsGlobalScope":true,"impliedFormat":1},{"version":"673294292640f5722b700e7d814e17aaf7d93f83a48a2c9b38f33cbc940ad8b0","affectsGlobalScope":true,"impliedFormat":1},{"version":"d786b48f934cbca483b3c6d0a798cb43bbb4ada283e76fb22c28e53ae05b9e69","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ecb8e347cb6b2a8927c09b86263663289418df375f5e68e11a0ae683776978f","affectsGlobalScope":true,"impliedFormat":1},{"version":"142efd4ce210576f777dc34df121777be89eda476942d6d6663b03dcb53be3ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"379bc41580c2d774f82e828c70308f24a005b490c25ba34d679d84bcf05c3d9d","affectsGlobalScope":true,"impliedFormat":1},{"version":"ed484fb2aa8a1a23d0277056ec3336e0a0b52f9b8d6a961f338a642faf43235d","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ffedae1d1c2d53fdbca1c96d3c7dda544281f7d262f99b6880634f8fd8d9820","affectsGlobalScope":true,"impliedFormat":1},{"version":"83a730b125d477dd264df8ba479afab27a3dae7152b005c214ab94dc7ee44fd3","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ce14b81c5cc821994aa8ec1d42b220dd41b27fcc06373bce3958af7421b77d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3a048b3e9302ef9a34ef4ebb9aecfb28b66abb3bce577206a79fee559c230da","affectsGlobalScope":true,"impliedFormat":1},{"version":"1d3e53d463656112f7234a7307bb7b2bc0345ee001dffd9c744e16f732ed0b74","signature":"c43c2a0107a2a099fe50bcc754e90b50aa6b265ce57e464a2489798b38e4dc53"},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"487b694c3de27ddf4ad107d4007ad304d29effccf9800c8ae23c2093638d906a","impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"0ccdaa19852d25ecd84eec365c3bfa16e7859cadecf6e9ca6d0dbbbee439743f","affectsGlobalScope":true,"impliedFormat":1},{"version":"438b41419b1df9f1fbe33b5e1b18f5853432be205991d1b19f5b7f351675541e","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":"dd0109710de4cd93e245121ab86d8c66d20f3ead80074b68e9c3e349c4f53342","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":"435b3711465425770ed2ee2f1cf00ce071835265e0851a7dc4600ab4b007550e","impliedFormat":1},{"version":"7e49f52a159435fc8df4de9dc377ef5860732ca2dc9efec1640531d3cf5da7a3","impliedFormat":1},{"version":"dd4bde4bdc2e5394aed6855e98cf135dfdf5dd6468cad842e03116d31bbcc9bc","impliedFormat":1},{"version":"4d4e879009a84a47c05350b8dca823036ba3a29a3038efed1be76c9f81e45edf","affectsGlobalScope":true,"impliedFormat":1},{"version":"cf83d90d5faf27b994c2e79af02e32b555dbfe42cd9bd1571445f2168d1f4e2d","impliedFormat":1},{"version":"9ba13b47cb450a438e3076c4a3f6afb9dc85e17eae50f26d4b2d72c0688c9251","impliedFormat":1},{"version":"b64cd4401633ea4ecadfd700ddc8323a13b63b106ac7127c1d2726f32424622c","impliedFormat":1},{"version":"37c6e5fe5715814412b43cc9b50b24c67a63c4e04e753e0d1305970d65417a60","impliedFormat":1},{"version":"0e28335ac43f4d94dd2fe6d9e6fa6813570640839addd10d309d7985f33a6308","impliedFormat":1},{"version":"ee0e4946247f842c6dd483cbb60a5e6b484fee07996e3a7bc7343dfb68a04c5d","impliedFormat":1},{"version":"ef051f42b7e0ef5ca04552f54c4552eac84099d64b6c5ad0ef4033574b6035b8","impliedFormat":1},{"version":"853a43154f1d01b0173d9cbd74063507ece57170bad7a3b68f3fa1229ad0a92f","impliedFormat":1},{"version":"56231e3c39a031bfb0afb797690b20ed4537670c93c0318b72d5180833d98b72","impliedFormat":1},{"version":"5cc7c39031bfd8b00ad58f32143d59eb6ffc24f5d41a20931269011dccd36c5e","impliedFormat":1},{"version":"836b1d038d400811f265b04c758e1ef0fb64d915499a4ef590acc54761875075","affectsGlobalScope":true,"impliedFormat":1},{"version":"961cf7535b9c521cd634055b1b6ac49b94d055f0b573ce7fdc4cfaddab080b7c","impliedFormat":1},{"version":"806a8c6daae69e5695e7200d9eca6bc1e4298f38d90edda3ce67a794da31a24f","impliedFormat":1},{"version":"ac86245c2f31335bfd52cbe7fc760f9fc4f165387875869a478a6d9616a95e72","impliedFormat":1},{"version":"01ff95aa1443e3f7248974e5a771f513cb2ac158c8898f470a1792f817bee497","impliedFormat":1},{"version":"9d96a7ce809392ff2cb99691acf7c62e632fe56897356ba013b689277aca3619","impliedFormat":1},{"version":"42a05d8f239f74587d4926aba8cc54792eed8e8a442c7adc9b38b516642aadfe","impliedFormat":1},{"version":"5d21b58d60383cc6ab9ad3d3e265d7d25af24a2c9b506247e0e50b0a884920be","impliedFormat":1},{"version":"101f482fd48cb4c7c0468dcc6d62c843d842977aea6235644b1edd05e81fbf22","impliedFormat":1},{"version":"ae6757460f37078884b1571a3de3ebaf724d827d7e1d53626c02b3c2a408ac63","affectsGlobalScope":true,"impliedFormat":1},{"version":"27c0a08e343c6a0ae17bd13ba6d44a9758236dc904cd5e4b43456996cd51f520","impliedFormat":1},{"version":"3ef397f12387eff17f550bc484ea7c27d21d43816bbe609d495107f44b97e933","impliedFormat":1},{"version":"1023282e2ba810bc07905d3668349fbd37a26411f0c8f94a70ef3c05fe523fcf","impliedFormat":1},{"version":"b214ebcf76c51b115453f69729ee8aa7b7f8eccdae2a922b568a45c2d7ff52f7","impliedFormat":1},{"version":"429c9cdfa7d126255779efd7e6d9057ced2d69c81859bbab32073bad52e9ba76","impliedFormat":1},{"version":"6f80e51ba310608cd71bcdc09a171d7bbfb3b316048601c9ec215ce16a8dcfbc","impliedFormat":1},{"version":"a3bdc774995d56caaac759a424831091bb22450ca3590f34dae53d98323be191","affectsGlobalScope":true,"impliedFormat":1},{"version":"7f2c62938251b45715fd2a9887060ec4fbc8724727029d1cbce373747252bdd7","impliedFormat":1},{"version":"e3ace08b6bbd84655d41e244677b474fd995923ffef7149ddb68af8848b60b05","impliedFormat":1},{"version":"132580b0e86c48fab152bab850fc57a4b74fe915c8958d2ccb052b809a44b61c","impliedFormat":1},{"version":"af4ab0aa8908fc9a655bb833d3bc28e117c4f0e1038c5a891546158beb25accb","impliedFormat":1},{"version":"69c9a5a9392e8564bd81116e1ed93b13205201fb44cb35a7fde8c9f9e21c4b23","impliedFormat":1},{"version":"5f8fc37f8434691ffac1bfd8fc2634647da2c0e84253ab5d2dd19a7718915b35","impliedFormat":1},{"version":"5981c2340fd8b076cae8efbae818d42c11ffc615994cb060b1cd390795f1be2b","impliedFormat":1},{"version":"2ca2bca6845a7234eff5c3d192727a068fca72ac565f3c819c6b04ccc83dadc0","impliedFormat":1},{"version":"ed4f674fc8c0c993cc7e145069ac44129e03519b910c62be206a0cc777bdc60b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0250da3eb85c99624f974e77ef355cdf86f43980251bc371475c2b397ba55bcd","impliedFormat":1},{"version":"f1c93e046fb3d9b7f8249629f4b63dc068dd839b824dd0aa39a5e68476dc9420","impliedFormat":1},{"version":"3d3a5f27ffbc06c885dd4d5f9ee20de61faf877fe2c3a7051c4825903d9a7fdc","impliedFormat":1},{"version":"12806f9f085598ef930edaf2467a5fa1789a878fba077cd27e85dc5851e11834","impliedFormat":1},{"version":"17d06eb5709839c7ce719f0c38ada6f308fb433f2cd6d8c87b35856e07400950","impliedFormat":1},{"version":"a43fe41c33d0a192a0ecaf9b92e87bef3709c9972e6d53c42c49251ccb962d69","impliedFormat":1},{"version":"a177959203c017fad3ecc4f3d96c8757a840957a4959a3ae00dab9d35961ca6c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc727ccf9b36e257ff982ea0badeffbfc2c151802f741bddff00c6af3b784cf","impliedFormat":1},{"version":"6c00f77f0335ae0c18bd45a6c7c9c97c9625fb7e5dd6d5936eadf70718bce52e","impliedFormat":1},{"version":"4844a4c9b4b1e812b257676ed8a80b3f3be0e29bf05e742cc2ea9c3c6865e6c6","impliedFormat":1},{"version":"064878a60367e0407c42fb7ba02a2ea4d83257357dc20088e549bd4d89433e9c","impliedFormat":1},{"version":"14d4bd22d1b05824971b98f7e91b2484c90f1a684805c330476641417c3d9735","impliedFormat":1},{"version":"586eaf66bace2e731cee0ddfbfac326ad74a83c1acfeac4afb2db85ad23226c7","impliedFormat":1},{"version":"b484ec11ba00e3a2235562a41898d55372ccabe607986c6fa4f4aba72093749f","impliedFormat":1},{"version":"d1a14d87cedcf4f0b8173720d6eb29cc02878bf2b6dabf9c9d9cee742f275368","impliedFormat":1},{"version":"e60efae9fe48a2955f66bf4cbf0f082516185b877daf50d9c5e2a009660a7714","impliedFormat":1},{"version":"041a7781b9127ab568d2cdcce62c58fdea7c7407f40b8c50045d7866a2727130","impliedFormat":1},{"version":"cd9189eacf0f9143b8830e9d6769335aa6d902c04195f04145bcbf19e7f26fcb","impliedFormat":1},{"version":"e1cb68f3ef3a8dd7b2a9dfb3de482ed6c0f1586ba0db4e7d73c1d2147b6ffc51","impliedFormat":1},{"version":"55cdbeebe76a1fa18bbd7e7bf73350a2173926bd3085bb050cf5a5397025ee4e","impliedFormat":1},{"version":"3a80bc85f38526ca3b08007ee80712e7bb0601df178b23fbf0bf87036fce40ce","impliedFormat":1},{"version":"ccf4552357ce3c159ef75f0f0114e80401702228f1898bdc9402214c9499e8c0","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"2931540c47ee0ff8a62860e61782eb17b155615db61e36986e54645ec67f67c2","impliedFormat":1},{"version":"ccab02f3920fc75c01174c47fcf67882a11daf16baf9e81701d0a94636e94556","impliedFormat":1},{"version":"f6faf5f74e4c4cc309a6c6a6c4da02dbb840be5d3e92905a23dcd7b2b0bd1986","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"33e981bf6376e939f99bd7f89abec757c64897d33c005036b9a10d9587d80187","impliedFormat":1},{"version":"7fd1b31fd35876b0aa650811c25ec2c97a3c6387e5473eb18004bed86cdd76b6","impliedFormat":1},{"version":"b41767d372275c154c7ea6c9d5449d9a741b8ce080f640155cc88ba1763e35b3","impliedFormat":1},{"version":"3bacf516d686d08682751a3bd2519ea3b8041a164bfb4f1d35728993e70a2426","impliedFormat":1},{"version":"7fb266686238369442bd1719bc0d7edd0199da4fb8540354e1ff7f16669b4323","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":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"54c3e2371e3d016469ad959697fd257e5621e16296fa67082c2575d0bf8eced0","impliedFormat":1},{"version":"beb8233b2c220cfa0feea31fbe9218d89fa02faa81ef744be8dce5acb89bb1fd","impliedFormat":1},{"version":"c183b931b68ad184bc8e8372bf663f3d33304772fb482f29fb91b3c391031f3e","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"48cc3ec153b50985fb95153258a710782b25975b10dd4ac8a4f3920632d10790","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"e1528ca65ac90f6fa0e4a247eb656b4263c470bb22d9033e466463e13395e599","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"866078923a56d026e39243b4392e282c1c63159723996fa89243140e1388a98d","impliedFormat":1},{"version":"6e215dac8b234548d91b718f9c07d5b09473cd5cabb29053fcd8be0af190acb6","affectsGlobalScope":true,"impliedFormat":1},{"version":"0d759cc99e081cacd0352467a0c24e979a6ef748329aa6ddea2d789664580201","impliedFormat":1},{"version":"f3d3e999a323c85c8a63ce90c6e4624ff89fe137a0e2508fddc08e0556d08abf","impliedFormat":1},{"version":"314607151cc203975193d5f44765f38597be3b0a43f466d3c1bfb17176dd3bd3","impliedFormat":1},{"version":"5beb6b7c030620fbc8cb339028593127dd0cf02bdc079fd94baf6d794a83e3d8","impliedFormat":1},{"version":"f40aad6c91017f20fc542f5701ec41e0f6aeba63c61bbf7aa13266ec29a50a3b","impliedFormat":1},{"version":"fc9e630f9302d0414ccd6c8ed2706659cff5ae454a56560c6122fa4a3fac5bbd","affectsGlobalScope":true,"impliedFormat":1},{"version":"aa0a44af370a2d7c1aac988a17836f57910a6c52689f52f5b3ac1d4c6cadcb23","impliedFormat":1},{"version":"0ac74c7586880e26b6a599c710b59284a284e084a2bbc82cd40fb3fbfdea71ae","affectsGlobalScope":true,"impliedFormat":1},{"version":"2ce12357dadbb8efc4e4ec4dab709c8071bf992722fc9adfea2fe0bd5b50923f","impliedFormat":1},{"version":"b5a907deaba678e5083ccdd7cc063a3a8c3413c688098f6de29d6e4cefabc85f","impliedFormat":1},{"version":"ffd344731abee98a0a85a735b19052817afd2156d97d1410819cd9bcd1bd575e","impliedFormat":1},{"version":"475e07c959f4766f90678425b45cf58ac9b95e50de78367759c1e5118e85d5c3","impliedFormat":1},{"version":"a524ae401b30a1b0814f1bbcdae459da97fa30ae6e22476e506bb3f82e3d9456","impliedFormat":1},{"version":"7375e803c033425e27cb33bae21917c106cb37b508fd242cccd978ef2ee244c7","impliedFormat":1},{"version":"eeb890c7e9218afdad2f30ad8a76b0b0b5161d11ce13b6723879de408e6bc47a","impliedFormat":1},{"version":"998da6b85ebace9ebea67040dd1a640f0156064e3d28dbe9bd9c0229b6f72347","impliedFormat":1},{"version":"dfbcc400ac6d20b941ccc7bd9031b9d9f54e4d495dd79117334e771959df4805","affectsGlobalScope":true,"impliedFormat":1},{"version":"944d65951e33a13068be5cd525ec42bf9bc180263ba0b723fa236970aa21f611","affectsGlobalScope":true,"impliedFormat":1},{"version":"6b386c7b6ce6f369d18246904fa5eac73566167c88fb6508feba74fa7501a384","affectsGlobalScope":true,"impliedFormat":1},{"version":"592a109e67b907ffd2078cd6f727d5c326e06eaada169eef8fb18546d96f6797","impliedFormat":1},{"version":"f2eb1e35cae499d57e34b4ac3650248776fe7dbd9a3ec34b23754cfd8c22fceb","impliedFormat":1},{"version":"fbed43a6fcf5b675f5ec6fc960328114777862b58a2bb19c109e8fc1906caa09","impliedFormat":1},{"version":"9e98bd421e71f70c75dae7029e316745c89fa7b8bc8b43a91adf9b82c206099c","impliedFormat":1},{"version":"fc803e6b01f4365f71f51f9ce13f71396766848204d4f7a1b2b6154434b84b15","impliedFormat":1},{"version":"f3afcc0d6f77a9ca2d2c5c92eb4b89cd38d6fa4bdc1410d626bd701760a977ec","impliedFormat":1},{"version":"c8109fe76467db6e801d0edfbc50e6826934686467c9418ce6b246232ce7f109","affectsGlobalScope":true,"impliedFormat":1},{"version":"e6f803e4e45915d58e721c04ec17830c6e6678d1e3e00e28edf3d52720909cea","affectsGlobalScope":true,"impliedFormat":1},{"version":"37be812b06e518320ba82e2aff3ac2ca37370a9df917db708f081b9043fa3315","impliedFormat":1}],"root":[88],"options":{"allowImportingTsExtensions":true,"allowJs":true,"composite":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"jsx":4,"module":200,"noEmitOnError":true,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noPropertyAccessFromIndexSignature":false,"noUncheckedIndexedAccess":true,"noUnusedLocals":false,"noUnusedParameters":false,"outDir":"./","skipLibCheck":true,"strict":true,"target":99,"verbatimModuleSyntax":true},"referencedMap":[[238,1],[112,2],[113,2],[114,3],[94,4],[115,5],[116,6],[117,7],[92,8],[118,9],[119,10],[120,11],[121,12],[122,13],[123,14],[124,14],[125,15],[126,16],[127,17],[128,18],[95,8],[93,8],[129,19],[130,20],[131,21],[171,22],[132,23],[133,24],[134,23],[135,25],[136,26],[137,27],[138,28],[139,28],[140,28],[141,29],[142,30],[143,31],[144,32],[145,33],[146,34],[147,34],[148,35],[149,8],[150,8],[151,36],[152,37],[153,36],[154,38],[155,39],[156,40],[157,41],[158,42],[159,43],[160,44],[161,45],[162,46],[163,47],[164,48],[165,49],[166,50],[167,51],[168,52],[96,23],[97,8],[98,53],[99,54],[100,8],[101,55],[102,8],[103,56],[104,57],[105,58],[106,58],[107,59],[108,8],[109,60],[110,61],[111,57],[169,62],[170,63],[214,64],[236,8],[235,8],[229,65],[216,66],[215,8],[212,67],[217,8],[210,68],[218,8],[237,69],[219,8],[213,8],[228,70],[230,71],[211,72],[234,73],[232,74],[231,75],[233,76],[220,8],[226,77],[223,78],[225,79],[224,80],[222,81],[221,8],[227,82],[86,8],[87,8],[15,8],[14,8],[2,8],[16,8],[17,8],[18,8],[19,8],[20,8],[21,8],[22,8],[23,8],[3,8],[24,8],[25,8],[4,8],[26,8],[30,8],[27,8],[28,8],[29,8],[31,8],[32,8],[33,8],[5,8],[34,8],[35,8],[36,8],[37,8],[6,8],[41,8],[38,8],[39,8],[40,8],[42,8],[7,8],[43,8],[48,8],[49,8],[44,8],[45,8],[46,8],[47,8],[8,8],[53,8],[50,8],[51,8],[52,8],[54,8],[9,8],[55,8],[56,8],[57,8],[59,8],[58,8],[60,8],[61,8],[10,8],[62,8],[63,8],[64,8],[11,8],[65,8],[66,8],[67,8],[68,8],[69,8],[70,8],[12,8],[71,8],[72,8],[73,8],[74,8],[75,8],[1,8],[76,8],[77,8],[13,8],[78,8],[79,8],[80,8],[81,8],[82,8],[83,8],[84,8],[85,8],[186,83],[198,84],[184,85],[199,86],[208,87],[175,88],[176,89],[174,90],[207,91],[202,92],[206,93],[178,94],[195,95],[177,96],[205,97],[172,98],[173,99],[179,100],[180,8],[185,101],[183,100],[90,102],[209,103],[200,104],[189,105],[188,100],[190,106],[193,107],[187,108],[191,109],[203,91],[181,110],[182,111],[194,112],[91,113],[197,114],[196,100],[192,115],[201,8],[89,8],[204,116],[88,8]],"latestChangedDtsFile":"./index.d.ts","version":"6.0.2"}
package/package.json ADDED
@@ -0,0 +1,42 @@
1
+ {
2
+ "name": "@nuasite/cms-types",
3
+ "description": "Shared TypeScript contract types for the Nua CMS (collections, fields, entries, pages, redirects, media).",
4
+ "files": [
5
+ "dist/**",
6
+ "src/**",
7
+ "README.md",
8
+ "package.json"
9
+ ],
10
+ "homepage": "https://github.com/nuasite/nuasite/blob/main/packages/cms-types/README.md",
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "git+https://github.com/nuasite/nuasite.git",
14
+ "directory": "packages/cms-types"
15
+ },
16
+ "license": "Apache-2.0",
17
+ "version": "0.43.0-beta.1",
18
+ "module": "src/index.ts",
19
+ "types": "src/index.ts",
20
+ "type": "module",
21
+ "exports": {
22
+ ".": {
23
+ "types": "./src/index.ts",
24
+ "import": "./src/index.ts",
25
+ "default": "./src/index.ts"
26
+ }
27
+ },
28
+ "devDependencies": {
29
+ "@types/bun": "1.3.11"
30
+ },
31
+ "peerDependencies": {
32
+ "typescript": "^6.0.2"
33
+ },
34
+ "scripts": {
35
+ "prepack": "bun run ../../scripts/workspace-deps/resolve-deps.ts"
36
+ },
37
+ "keywords": [
38
+ "cms",
39
+ "nuasite",
40
+ "types"
41
+ ]
42
+ }
package/src/index.ts ADDED
@@ -0,0 +1,330 @@
1
+ /**
2
+ * Shared structural contract types for the Nua CMS.
3
+ *
4
+ * These describe the *data/structure* half of the CMS — collections, fields,
5
+ * entries, page/redirect operations and the media storage adapter. They are
6
+ * framework-agnostic (no Astro, Vite, manifest or SEO coupling) and are reused
7
+ * 1:1 as the wire model across cms-core, the sidecar and webmaster.
8
+ *
9
+ * Render/manifest/SEO types (ManifestEntry, CmsManifest, SeoOptions, color/text
10
+ * style types, ComponentInstance) intentionally stay in `@nuasite/cms`.
11
+ */
12
+
13
+ // ============================================================================
14
+ // Fields & Collections
15
+ // ============================================================================
16
+
17
+ /** Canonical list of field types for collection schema inference. Single source of truth for `FieldType`. */
18
+ export const FIELD_TYPES = [
19
+ 'text',
20
+ 'textarea',
21
+ 'date',
22
+ 'datetime',
23
+ 'time',
24
+ 'year',
25
+ 'month',
26
+ 'boolean',
27
+ 'number',
28
+ 'image',
29
+ 'file',
30
+ 'url',
31
+ 'email',
32
+ 'tel',
33
+ 'color',
34
+ 'select',
35
+ 'array',
36
+ 'object',
37
+ 'reference',
38
+ ] as const
39
+
40
+ /** Field types for collection schema inference */
41
+ export type FieldType = (typeof FIELD_TYPES)[number]
42
+
43
+ /** Runtime guard: whether a string is a known `FieldType`. */
44
+ export function isFieldType(value: string): value is FieldType {
45
+ return (FIELD_TYPES as readonly string[]).includes(value)
46
+ }
47
+
48
+ /** Editor hints for enhanced field rendering (extracted from `n.*()` options in content config) */
49
+ export interface FieldHints {
50
+ min?: number | string
51
+ max?: number | string
52
+ step?: number
53
+ placeholder?: string
54
+ maxLength?: number
55
+ minLength?: number
56
+ rows?: number
57
+ accept?: string
58
+ }
59
+
60
+ /** Definition of a single field in a collection's schema */
61
+ export interface FieldDefinition {
62
+ /** Field name as it appears in frontmatter */
63
+ name: string
64
+ /** Inferred or specified field type */
65
+ type: FieldType
66
+ /** Whether the field is required (present in all entries) */
67
+ required: boolean
68
+ /** Default value for the field */
69
+ defaultValue?: unknown
70
+ /** Options for 'select' type fields */
71
+ options?: string[]
72
+ /** Item type for 'array' fields */
73
+ itemType?: FieldType
74
+ /** Nested fields for 'object' type */
75
+ fields?: FieldDefinition[]
76
+ /** Sample values seen across entries */
77
+ examples?: unknown[]
78
+ /** Where the field renders in the editor UI */
79
+ position?: 'sidebar' | 'header'
80
+ /** Group name for visual grouping with section headers */
81
+ group?: string
82
+ /** Referenced collection name for 'reference' type fields */
83
+ collection?: string
84
+ /** Hide from the editor UI (e.g. derived/computed fields) */
85
+ hidden?: boolean
86
+ /** Source field name this field is derived from (e.g. categoryHref derived from category) */
87
+ derivedFrom?: string
88
+ /** Editor hints for enhanced field rendering */
89
+ hints?: FieldHints
90
+ /** True when the field uses Astro's `image()` schema (entry-relative paths through astro:assets). */
91
+ astroImage?: boolean
92
+ /** Semantic role used by the editor UI to position special fields without name matching.
93
+ * - `publish-toggle`: boolean controlling whether the entry is published (e.g. `draft`, `isDraft`, `published`).
94
+ * - `publish-date`: the publish/release date field (e.g. `date`, `publishDate`, `publishedAt`). */
95
+ role?: 'publish-toggle' | 'publish-date'
96
+ }
97
+
98
+ /** Per-entry metadata for collection browsing */
99
+ export interface CollectionEntryInfo {
100
+ slug: string
101
+ title?: string
102
+ sourcePath: string
103
+ draft?: boolean
104
+ /** URL pathname of the rendered page for this entry */
105
+ pathname?: string
106
+ /** Full entry data for data collections (JSON/YAML) */
107
+ data?: Record<string, unknown>
108
+ }
109
+
110
+ /** Definition of a content collection with inferred schema */
111
+ export interface CollectionDefinition {
112
+ /** Collection identifier (directory name) */
113
+ name: string
114
+ /** Human-readable label for the collection */
115
+ label: string
116
+ /** Path to the collection directory */
117
+ path: string
118
+ /** Number of entries in the collection */
119
+ entryCount: number
120
+ /** Inferred field definitions */
121
+ fields: FieldDefinition[]
122
+ /** Whether the collection has draft support */
123
+ supportsDraft?: boolean
124
+ /** Collection type: 'content' for markdown, 'data' for JSON/YAML */
125
+ type?: 'content' | 'data'
126
+ /** File extension used by entries */
127
+ fileExtension: 'md' | 'mdx' | 'json' | 'yaml' | 'yml'
128
+ /** Per-entry metadata for browsing */
129
+ entries?: CollectionEntryInfo[]
130
+ /** Frontmatter field name to sort entries by (detected from `.orderBy()` in content config) */
131
+ orderBy?: string
132
+ /** Sort direction for orderBy field */
133
+ orderDirection?: 'asc' | 'desc'
134
+ /**
135
+ * Name of the collection this one is nested under in the CMS browser, when it shares a base
136
+ * directory with another collection (e.g. a nested `*​/otazky/*` collection grouped under the
137
+ * `*​/index.md` collection at the same base). Purely presentational grouping.
138
+ */
139
+ parentCollection?: string
140
+ }
141
+
142
+ /** Represents a content collection entry (markdown file) */
143
+ export interface CollectionEntry {
144
+ /** Collection name (e.g., 'services', 'blog') */
145
+ collectionName: string
146
+ /** Entry slug (e.g., '3d-tisk') */
147
+ collectionSlug: string
148
+ /** Path to the markdown file relative to project root */
149
+ sourcePath: string
150
+ /** Frontmatter fields with their values and line numbers */
151
+ frontmatter: Record<string, { value: string; line: number }>
152
+ /** Full markdown body content */
153
+ body: string
154
+ /** Line number where body starts (1-indexed) */
155
+ bodyStartLine: number
156
+ /** ID of the wrapper element containing the rendered markdown */
157
+ wrapperId?: string
158
+ }
159
+
160
+ // ============================================================================
161
+ // Mutation result
162
+ // ============================================================================
163
+
164
+ /** Result of a content/structure mutation. */
165
+ export interface MutationResult {
166
+ success: boolean
167
+ /** Touched file, for targeted HMR/invalidate. */
168
+ sourcePath?: string
169
+ /** Hash after write, for optimistic concurrency. */
170
+ sourceHash?: string
171
+ /** Page URL for the entry, when known. */
172
+ pathname?: string
173
+ error?: string
174
+ }
175
+
176
+ // ============================================================================
177
+ // Component definitions
178
+ // ============================================================================
179
+
180
+ export interface ComponentProp {
181
+ name: string
182
+ type: string
183
+ required: boolean
184
+ defaultValue?: string
185
+ description?: string
186
+ }
187
+
188
+ export interface ComponentDefinition {
189
+ name: string
190
+ file: string
191
+ props: ComponentProp[]
192
+ description?: string
193
+ slots?: string[]
194
+ previewUrl?: string
195
+ /** Viewport width (in px) used to render the preview iframe (default: 1280) */
196
+ previewWidth?: number
197
+ }
198
+
199
+ // ============================================================================
200
+ // Page Operations (shared between server handlers and editor UI)
201
+ // ============================================================================
202
+
203
+ export interface CreatePageRequest {
204
+ title: string
205
+ slug: string
206
+ layoutPath?: string
207
+ }
208
+
209
+ export interface DuplicatePageRequest {
210
+ sourcePagePath: string
211
+ slug: string
212
+ title?: string
213
+ createRedirect?: boolean
214
+ }
215
+
216
+ export interface DeletePageRequest {
217
+ pagePath: string
218
+ createRedirect?: boolean
219
+ redirectTo?: string
220
+ }
221
+
222
+ export interface PageOperationResponse {
223
+ success: boolean
224
+ filePath?: string
225
+ slug?: string
226
+ url?: string
227
+ error?: string
228
+ }
229
+
230
+ export interface LayoutInfo {
231
+ name: string
232
+ path: string
233
+ }
234
+
235
+ // ============================================================================
236
+ // Redirect Operations (shared between server handlers and editor UI)
237
+ // ============================================================================
238
+
239
+ export interface RedirectRule {
240
+ source: string
241
+ destination: string
242
+ statusCode: number
243
+ lineIndex: number
244
+ }
245
+
246
+ export interface AddRedirectRequest {
247
+ source: string
248
+ destination: string
249
+ statusCode?: number
250
+ }
251
+
252
+ export interface UpdateRedirectRequest {
253
+ lineIndex: number
254
+ source: string
255
+ destination: string
256
+ statusCode?: number
257
+ }
258
+
259
+ export interface DeleteRedirectRequest {
260
+ lineIndex: number
261
+ }
262
+
263
+ export interface RedirectOperationResponse {
264
+ success: boolean
265
+ error?: string
266
+ }
267
+
268
+ export interface GetRedirectsResponse {
269
+ rules: RedirectRule[]
270
+ }
271
+
272
+ // ============================================================================
273
+ // Media storage adapter
274
+ // ============================================================================
275
+
276
+ export interface MediaItem {
277
+ id: string
278
+ url: string
279
+ filename: string
280
+ annotation?: string
281
+ contentType: string
282
+ width?: number
283
+ height?: number
284
+ uploadedAt?: string
285
+ /** Folder path relative to media root (e.g. 'photos') */
286
+ folder?: string
287
+ }
288
+
289
+ export interface MediaFolderItem {
290
+ /** Folder name (last segment) */
291
+ name: string
292
+ /** Full relative path from media root (e.g. 'photos/vacation') */
293
+ path: string
294
+ }
295
+
296
+ export type MediaTypeFilter = 'all' | 'photo' | 'graphic' | 'video' | 'document'
297
+
298
+ export interface MediaListOptions {
299
+ limit?: number
300
+ cursor?: string
301
+ /** List contents of this subfolder (relative to media root) */
302
+ folder?: string
303
+ }
304
+
305
+ export interface MediaListResult {
306
+ items: MediaItem[]
307
+ /** Subfolders in the current directory */
308
+ folders: MediaFolderItem[]
309
+ hasMore: boolean
310
+ cursor?: string
311
+ }
312
+
313
+ export interface MediaUploadResult {
314
+ success: boolean
315
+ url?: string
316
+ filename?: string
317
+ annotation?: string
318
+ id?: string
319
+ error?: string
320
+ }
321
+
322
+ export interface MediaStorageAdapter {
323
+ list(options?: MediaListOptions): Promise<MediaListResult>
324
+ upload(file: Buffer, filename: string, contentType: string, options?: { folder?: string }): Promise<MediaUploadResult>
325
+ delete(id: string): Promise<{ success: boolean; error?: string }>
326
+ /** Create an empty folder. Folders are also created implicitly on upload. */
327
+ createFolder?(folder: string): Promise<{ success: boolean; error?: string }>
328
+ /** Local filesystem info for direct file serving in dev (bypasses Vite's public dir cache) */
329
+ staticFiles?: { urlPrefix: string; dir: string }
330
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "extends": "../tsconfig.settings.json",
3
+ "compilerOptions": {
4
+ "outDir": "../dist/types"
5
+ }
6
+ }