@plurnk/plurnk-schemes 0.22.0 β 0.25.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/README.md +10 -8
- package/SPEC.md +5 -3
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/packet.d.ts +11 -0
- package/dist/packet.d.ts.map +1 -0
- package/dist/packet.js +22 -0
- package/dist/packet.js.map +1 -0
- package/dist/types.d.ts +2 -1
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -51,26 +51,28 @@ static manifest: SchemeManifest = {
|
|
|
51
51
|
writableBy: ["model", "client"],
|
|
52
52
|
volatile: false,
|
|
53
53
|
modelVisible: true,
|
|
54
|
-
glyph: "π¦",
|
|
55
|
-
example: "READ(foo://thing/42)
|
|
54
|
+
glyph: "π¦", // display icon; omit β the name is shown
|
|
55
|
+
example: "READ(foo://thing/42)", // terse hot-path one-liner, rendered every turn
|
|
56
|
+
documentation: "# foo\n\nOps, channels, edge casesβ¦" // deep doc, pulled at plurnk://docs/foo.md
|
|
56
57
|
};
|
|
57
58
|
```
|
|
58
59
|
|
|
59
|
-
- **`example`** β
|
|
60
|
+
- **`example`** β the scheme's terse **hot-path** one-liner, rendered in the live catalogue every turn (like an execs runtime's `example`). Keep it to one canonical usage line; depth goes in `documentation`. Omit β not advertised.
|
|
61
|
+
- **`documentation`** β the **deep doc** (ops, channels, edge cases). The consumer materializes it as a pull-able `plurnk://docs/<name>.md` entry the model READs on demand β off the hot path. Mirrors `ExecInfo.documentation`.
|
|
60
62
|
- **`glyph`** β a display icon (emoji / nerdfont). Omit it and the scheme `name` is rendered in its place.
|
|
61
63
|
|
|
62
|
-
### 4.
|
|
64
|
+
### 4. Self-doc: terse pushes, depth pulls
|
|
63
65
|
|
|
64
|
-
|
|
66
|
+
`example`/`glyph` render every turn β keep them terse. `documentation` is the deep prose; the consumer materializes it at `plurnk://docs/<name>.md` for the model to READ on demand. Don't dump prose into `example` (it floods the hot path) β put it in `documentation`.
|
|
65
67
|
|
|
66
|
-
That's the whole contract: declare, `implements SchemeHandler`, manifest with self-doc
|
|
68
|
+
That's the whole contract: declare, `implements SchemeHandler`, manifest with self-doc. Publish, install, discovered.
|
|
67
69
|
|
|
68
70
|
## Exports
|
|
69
71
|
|
|
70
72
|
### Types
|
|
71
73
|
|
|
72
|
-
- Manifest/flags: `SchemeManifest` (incl. `example` / `glyph` self-doc), `SchemeFlagAffinity`, `WriterTier`, `LoopFlags`, `DEFAULT_LOOP_FLAGS`.
|
|
73
|
-
- Behavior contract: `SchemeHandler` + the re-exported scheme-facing grammar types (`PlurnkStatement` + per-op statements + `ParsedPath` / `LocalPath` / `UrlPath`).
|
|
74
|
+
- Manifest/flags: `SchemeManifest` (incl. `example` / `documentation` / `glyph` self-doc), `SchemeFlagAffinity`, `WriterTier`, `LoopFlags`, `DEFAULT_LOOP_FLAGS`.
|
|
75
|
+
- Behavior contract: `SchemeHandler` + optional `PacketSectionTransformer` (`PacketSection`); the re-exported scheme-facing grammar types (`PlurnkStatement` + per-op statements + `ParsedPath` / `LocalPath` / `UrlPath`).
|
|
74
76
|
- Result families: `SchemeResult` / `EntryResult` / `ProposalResult` / `PassthroughResult` / `SchemeResultBase` / `TelemetryEvent`.
|
|
75
77
|
- Capability ctx: `SchemeCtx` + `EntryCaps` / `ChannelCaps` / `TagCaps` / `NotifyCaps` / `SubscriptionCaps` / `CrossSchemeCaps`, plus `EntryData` / `ChannelState` / `SubscriptionHandle` / `ProposalAware`.
|
|
76
78
|
|
package/SPEC.md
CHANGED
|
@@ -37,17 +37,18 @@ class Known {
|
|
|
37
37
|
| `channels` | `Record<channelName, mimetype>`. Channel names lowercase. Empty = dynamic per-call. |
|
|
38
38
|
| `defaultChannel` | Channel name targeted when path has no `#fragment`. Empty when channels is empty. |
|
|
39
39
|
| `category` | `"data"` (entry-bearing) \| `"logging"` (`log://` rows) \| `"control"` (addresses sister processes/runs, owns no entries β e.g. `run://`). |
|
|
40
|
-
| `scope` | `"
|
|
40
|
+
| `scope` | `"session"` \| `"run"` (grammar 0.67 `default_scope`; `run` = per-run scratch backing `run://`). |
|
|
41
41
|
| `writableBy` | Subset of `["model", "client", "system", "plugin"]`. Consumer returns 403 for outside-set writes. |
|
|
42
42
|
| `volatile` | Boolean. |
|
|
43
43
|
| `modelVisible` | Boolean. |
|
|
44
44
|
| `flags?` | Optional `SchemeFlagAffinity`. |
|
|
45
|
-
| `example?` |
|
|
45
|
+
| `example?` | The scheme's terse **hot-path** one-liner (e.g. `"READ(foo://thing/42)"`) β renders in the live catalogue every turn, so keep it to one canonical usage line. Omit β not advertised. Depth goes in `documentation`. |
|
|
46
|
+
| `documentation?` | The **deep doc** (semantics / channels / edge cases). Consumer materializes it as a pull-able `plurnk://docs/<name>.md` entry READ on demand; never hits the hot path. Mirrors `ExecInfo.documentation` (schemes#25). |
|
|
46
47
|
| `glyph?` | Display icon (emoji / nerdfont). Omit β consumer renders the `name` (`glyph ?? name`). |
|
|
47
48
|
| `foldedByDefault?` | Entries land FOLDED, off the ranked manifest surface (READable via address, not poured into the ranked view). For executor-output streams (`<tag>://`) β containment one level up (schemes#20/service#240). Absent/false β ranked/first-class. |
|
|
48
49
|
| `storedScheme?` | Value persisted to `entries.scheme`, which may differ from the addressing `name`. Resolution: `storedScheme === undefined ? name : storedScheme`. Absent β defaults to `name` (additive; existing manifests unchanged). Explicit `null` β persists BARE (e.g. File: bare paths, `entries.scheme` NULL, routing name `"file"`). |
|
|
49
50
|
|
|
50
|
-
**Self-doc split
|
|
51
|
+
**Self-doc split (terse pushes, depth pulls).** `example` + `glyph` are the hot-path listing rendered every turn β keep them terse. `documentation` is the deep prose (every op, channel, status code, gotcha); the consumer materializes it as a pull-able **`plurnk://docs/<name>.md`** entry the model READs on demand, off the hot path. Both live on the manifest; the consumer decides what's pushed vs pulled.
|
|
51
52
|
|
|
52
53
|
## Β§2 Interface
|
|
53
54
|
|
|
@@ -80,6 +81,7 @@ Two surfaces are NOT yet in `SchemeHandler`, pending their result types migratin
|
|
|
80
81
|
### Types
|
|
81
82
|
|
|
82
83
|
- Manifest/flags: `SchemeManifest`, `SchemeFlagAffinity`, `WriterTier`, `LoopFlags`, `DEFAULT_LOOP_FLAGS`.
|
|
84
|
+
- Optional `PacketSectionTransformer` β a scheme MAY implement `transformSections(sections: PacketSection[]) β PacketSection[] | Promise<β¦>` to reshape the packet's section list (add/remove/reorder) before the engine measures it; called duck-typed in registration order. `PacketSection` = `{ name; slot: "system"|"user"; header: string|null; content; tokens }`. Contract declares the shape; service conforms (the in-process plugin-packet-control / fork-avoidance seam β schemes#24).
|
|
83
85
|
- Behavior contract: `SchemeHandler` (Β§2). Scheme-facing grammar types re-exported here so siblings pin only this package: `PlurnkStatement` + the per-op statement types (`ReadStatement`, `FindStatement`, `OpenStatement`, `FoldStatement`, `EditStatement`, `CopyStatement`, `MoveStatement`, `SendStatement`, `ExecStatement`, `KillStatement`, `PlanStatement`) and path types (`ParsedPath` = `LocalPath` | `UrlPath` | `RegexPath`).
|
|
84
86
|
- Discovery: `SchemeDiscovery` (behavior class) with `SchemeInfo` / `SchemeDiscoveryResult` / `DiscoverOptions` (Β§6).
|
|
85
87
|
- Executor-scheme (RFC schemes#20 β "an executor is a scheme"): `OutputScheme.manifestFromRuntime(decl)` derives a read-only-output `SchemeManifest` from an executor's `RuntimeDecl` (zero scheme-authoring); `DefaultRead.read(content, mimetype, statement, mimetypes)` β `ReadResolution` is the free `<L>`/matcher read over produced output (reuses `Slicer`/`Matcher`); `Summarize.summarize(content, mimetype)` β `OrientIndex` is the structural-only EXEC-receipt index (no content β universal-receipt containment). A per-tag executor-scheme supplies its manifest via instance `get manifest()` (Β§2 `SchemeHandler.manifest?`).
|
package/dist/index.d.ts
CHANGED
|
@@ -19,5 +19,6 @@ export { default as Results } from "./results.ts";
|
|
|
19
19
|
export type { EntryResult, PassthroughResult, ProposalResult, SchemeResult, SchemeResultBase, TelemetryEvent, } from "./results.ts";
|
|
20
20
|
export type { ChannelCaps, ChannelState, CrossSchemeCaps, EntryCaps, EntryData, NotifyCaps, ProposalAware, SchemeCtx, SubscriptionCaps, SubscriptionHandle, TagCaps, } from "./ctx.ts";
|
|
21
21
|
export type { SchemeHandler } from "./handler.ts";
|
|
22
|
+
export type { PacketSection, PacketSectionTransformer } from "./packet.ts";
|
|
22
23
|
export type { PlurnkStatement, FindStatement, ReadStatement, OpenStatement, FoldStatement, EditStatement, CopyStatement, MoveStatement, SendStatement, ExecStatement, KillStatement, PlanStatement, ParsedPath, LocalPath, UrlPath, RegexPath, } from "@plurnk/plurnk-grammar";
|
|
23
24
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAQA,YAAY,EACR,SAAS,EACT,kBAAkB,EAClB,cAAc,EACd,UAAU,GACb,MAAM,YAAY,CAAC;AACpB,OAAO,EAAE,kBAAkB,EAAE,MAAM,YAAY,CAAC;AAGhD,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,qBAAqB,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,kBAAkB,EAAE,uBAAuB,EAAE,MAAM,sBAAsB,CAAC;AAC9F,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,kBAAkB,CAAC;AACrD,YAAY,EAAE,UAAU,IAAI,cAAc,EAAE,eAAe,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAC;AACnG,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAC7D,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,cAAc,CAAC;AAClD,YAAY,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAChD,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,sBAAsB,CAAC;AAClE,YAAY,EAAE,UAAU,EAAE,qBAAqB,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAC;AAC/F,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,gBAAgB,CAAC;AACtD,YAAY,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAClD,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAC5D,YAAY,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AACrD,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,kBAAkB,CAAC;AAC1D,YAAY,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AACvD,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,cAAc,CAAC;AAClD,YAAY,EACR,WAAW,EACX,iBAAiB,EACjB,cAAc,EACd,YAAY,EACZ,gBAAgB,EAChB,cAAc,GACjB,MAAM,cAAc,CAAC;AAItB,YAAY,EACR,WAAW,EACX,YAAY,EACZ,eAAe,EACf,SAAS,EACT,SAAS,EACT,UAAU,EACV,aAAa,EACb,SAAS,EACT,gBAAgB,EAChB,kBAAkB,EAClB,OAAO,GACV,MAAM,UAAU,CAAC;AAOlB,YAAY,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC;AAClD,YAAY,EACR,eAAe,EACf,aAAa,EACb,aAAa,EACb,aAAa,EACb,aAAa,EACb,aAAa,EACb,aAAa,EACb,aAAa,EACb,aAAa,EACb,aAAa,EACb,aAAa,EACb,aAAa,EACb,UAAU,EACV,SAAS,EACT,OAAO,EACP,SAAS,GACZ,MAAM,wBAAwB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAQA,YAAY,EACR,SAAS,EACT,kBAAkB,EAClB,cAAc,EACd,UAAU,GACb,MAAM,YAAY,CAAC;AACpB,OAAO,EAAE,kBAAkB,EAAE,MAAM,YAAY,CAAC;AAGhD,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,qBAAqB,CAAC;AAChE,OAAO,EAAE,OAAO,IAAI,kBAAkB,EAAE,uBAAuB,EAAE,MAAM,sBAAsB,CAAC;AAC9F,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,kBAAkB,CAAC;AACrD,YAAY,EAAE,UAAU,IAAI,cAAc,EAAE,eAAe,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAC;AACnG,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAC7D,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,cAAc,CAAC;AAClD,YAAY,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAChD,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,sBAAsB,CAAC;AAClE,YAAY,EAAE,UAAU,EAAE,qBAAqB,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAC;AAC/F,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,gBAAgB,CAAC;AACtD,YAAY,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAClD,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAC5D,YAAY,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AACrD,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,kBAAkB,CAAC;AAC1D,YAAY,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AACvD,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,cAAc,CAAC;AAClD,YAAY,EACR,WAAW,EACX,iBAAiB,EACjB,cAAc,EACd,YAAY,EACZ,gBAAgB,EAChB,cAAc,GACjB,MAAM,cAAc,CAAC;AAItB,YAAY,EACR,WAAW,EACX,YAAY,EACZ,eAAe,EACf,SAAS,EACT,SAAS,EACT,UAAU,EACV,aAAa,EACb,SAAS,EACT,gBAAgB,EAChB,kBAAkB,EAClB,OAAO,GACV,MAAM,UAAU,CAAC;AAOlB,YAAY,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC;AAClD,YAAY,EAAE,aAAa,EAAE,wBAAwB,EAAE,MAAM,aAAa,CAAC;AAC3E,YAAY,EACR,eAAe,EACf,aAAa,EACb,aAAa,EACb,aAAa,EACb,aAAa,EACb,aAAa,EACb,aAAa,EACb,aAAa,EACb,aAAa,EACb,aAAa,EACb,aAAa,EACb,aAAa,EACb,UAAU,EACV,SAAS,EACT,OAAO,EACP,SAAS,GACZ,MAAM,wBAAwB,CAAC"}
|
package/dist/packet.d.ts
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export interface PacketSection {
|
|
2
|
+
readonly name: string;
|
|
3
|
+
readonly slot: "system" | "user";
|
|
4
|
+
readonly header: string | null;
|
|
5
|
+
readonly content: string;
|
|
6
|
+
readonly tokens: number;
|
|
7
|
+
}
|
|
8
|
+
export interface PacketSectionTransformer {
|
|
9
|
+
transformSections(sections: PacketSection[]): PacketSection[] | Promise<PacketSection[]>;
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=packet.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"packet.d.ts","sourceRoot":"","sources":["../src/packet.ts"],"names":[],"mappings":"AAqBA,MAAM,WAAW,aAAa;IAC1B,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,IAAI,EAAE,QAAQ,GAAG,MAAM,CAAC;IACjC,QAAQ,CAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC;IACzB,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC;CAC3B;AAED,MAAM,WAAW,wBAAwB;IACrC,iBAAiB,CAAC,QAAQ,EAAE,aAAa,EAAE,GAAG,aAAa,EAAE,GAAG,OAAO,CAAC,aAAa,EAAE,CAAC,CAAC;CAC5F"}
|
package/dist/packet.js
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
// The packet-section transform hook (plurnk-service 566715d, schemes#24).
|
|
2
|
+
//
|
|
3
|
+
// A scheme MAY reshape the packet's section list β add / remove / reorder β
|
|
4
|
+
// before the engine measures it. The engine builds its default section list,
|
|
5
|
+
// then pipes it through every registered scheme that implements
|
|
6
|
+
// `transformSections`, in registration order. It's the trusted, in-process seam
|
|
7
|
+
// for plugin packet control (the client wire never touches the packet), and the
|
|
8
|
+
// fork-avoidance valve: a plugin that can reshape the packet to its needs has no
|
|
9
|
+
// reason to fork the engine.
|
|
10
|
+
//
|
|
11
|
+
// OPTIONAL and STANDALONE β compose it with SchemeHandler:
|
|
12
|
+
// export default class X implements SchemeHandler, PacketSectionTransformer {β¦}
|
|
13
|
+
// The engine calls it duck-typed (`typeof handler.transformSections === "function"`),
|
|
14
|
+
// so declaring it here just gives an external author a typed surface + discovery.
|
|
15
|
+
//
|
|
16
|
+
// `PacketSection` is the engine's packet-row shape β service-owned at runtime
|
|
17
|
+
// (grammar 0.67 dropped `Packet.json`), but the CONTRACT declares the shape so a
|
|
18
|
+
// sibling can implement the hook without importing plurnk-service; service
|
|
19
|
+
// conforms its packet builder to it. Same direction as `SchemeManifest` /
|
|
20
|
+
// `SchemeCtx`: contract declares, service implements.
|
|
21
|
+
export {};
|
|
22
|
+
//# sourceMappingURL=packet.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"packet.js","sourceRoot":"","sources":["../src/packet.ts"],"names":[],"mappings":"AAAA,0EAA0E;AAC1E,EAAE;AACF,4EAA4E;AAC5E,6EAA6E;AAC7E,gEAAgE;AAChE,gFAAgF;AAChF,gFAAgF;AAChF,iFAAiF;AACjF,6BAA6B;AAC7B,EAAE;AACF,2DAA2D;AAC3D,kFAAkF;AAClF,sFAAsF;AACtF,kFAAkF;AAClF,EAAE;AACF,8EAA8E;AAC9E,iFAAiF;AACjF,2EAA2E;AAC3E,0EAA0E;AAC1E,sDAAsD"}
|
package/dist/types.d.ts
CHANGED
|
@@ -10,13 +10,14 @@ export interface SchemeManifest {
|
|
|
10
10
|
readonly channels: Record<string, string>;
|
|
11
11
|
readonly defaultChannel: string;
|
|
12
12
|
readonly category: "data" | "logging" | "control";
|
|
13
|
-
readonly scope: "
|
|
13
|
+
readonly scope: "session" | "run";
|
|
14
14
|
readonly writableBy: ReadonlyArray<WriterTier>;
|
|
15
15
|
readonly volatile: boolean;
|
|
16
16
|
readonly modelVisible: boolean;
|
|
17
17
|
readonly foldedByDefault?: boolean;
|
|
18
18
|
readonly flags?: SchemeFlagAffinity;
|
|
19
19
|
readonly example?: string;
|
|
20
|
+
readonly documentation?: string;
|
|
20
21
|
readonly glyph?: string;
|
|
21
22
|
readonly storedScheme?: string | null;
|
|
22
23
|
}
|
package/dist/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAUA,MAAM,MAAM,UAAU,GAAG,OAAO,GAAG,QAAQ,GAAG,QAAQ,GAAG,QAAQ,CAAC;AAElE,MAAM,WAAW,kBAAkB;IAC/B,QAAQ,CAAC,aAAa,CAAC,EAAE,OAAO,CAAC;IACjC,QAAQ,CAAC,WAAW,CAAC,EAAE,OAAO,CAAC;IAC/B,QAAQ,CAAC,mBAAmB,CAAC,EAAE,OAAO,CAAC;IACvC,QAAQ,CAAC,QAAQ,CAAC,EAAE,OAAO,CAAC;CAC/B;AAED,MAAM,WAAW,cAAc;IAC3B,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAC1C,QAAQ,CAAC,cAAc,EAAE,MAAM,CAAC;IAGhC,QAAQ,CAAC,QAAQ,EAAE,MAAM,GAAG,SAAS,GAAG,SAAS,CAAC;
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAUA,MAAM,MAAM,UAAU,GAAG,OAAO,GAAG,QAAQ,GAAG,QAAQ,GAAG,QAAQ,CAAC;AAElE,MAAM,WAAW,kBAAkB;IAC/B,QAAQ,CAAC,aAAa,CAAC,EAAE,OAAO,CAAC;IACjC,QAAQ,CAAC,WAAW,CAAC,EAAE,OAAO,CAAC;IAC/B,QAAQ,CAAC,mBAAmB,CAAC,EAAE,OAAO,CAAC;IACvC,QAAQ,CAAC,QAAQ,CAAC,EAAE,OAAO,CAAC;CAC/B;AAED,MAAM,WAAW,cAAc;IAC3B,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAC1C,QAAQ,CAAC,cAAc,EAAE,MAAM,CAAC;IAGhC,QAAQ,CAAC,QAAQ,EAAE,MAAM,GAAG,SAAS,GAAG,SAAS,CAAC;IAIlD,QAAQ,CAAC,KAAK,EAAE,SAAS,GAAG,KAAK,CAAC;IAClC,QAAQ,CAAC,UAAU,EAAE,aAAa,CAAC,UAAU,CAAC,CAAC;IAC/C,QAAQ,CAAC,QAAQ,EAAE,OAAO,CAAC;IAC3B,QAAQ,CAAC,YAAY,EAAE,OAAO,CAAC;IAO/B,QAAQ,CAAC,eAAe,CAAC,EAAE,OAAO,CAAC;IACnC,QAAQ,CAAC,KAAK,CAAC,EAAE,kBAAkB,CAAC;IAapC,QAAQ,CAAC,OAAO,CAAC,EAAE,MAAM,CAAC;IAC1B,QAAQ,CAAC,aAAa,CAAC,EAAE,MAAM,CAAC;IAChC,QAAQ,CAAC,KAAK,CAAC,EAAE,MAAM,CAAC;IAUxB,QAAQ,CAAC,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CACzC;AAED,MAAM,WAAW,SAAS;IACtB,QAAQ,CAAC,IAAI,EAAE,KAAK,GAAG,KAAK,CAAC;IAC7B,QAAQ,CAAC,IAAI,EAAE,OAAO,CAAC;IACvB,QAAQ,CAAC,KAAK,EAAE,OAAO,CAAC;IACxB,QAAQ,CAAC,aAAa,EAAE,OAAO,CAAC;IAChC,QAAQ,CAAC,WAAW,EAAE,OAAO,CAAC;CACjC;AAED,eAAO,MAAM,kBAAkB,EAAE,SAM/B,CAAC"}
|
package/dist/types.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAAA,2EAA2E;AAC3E,qCAAqC;AACrC,EAAE;AACF,6EAA6E;AAC7E,6EAA6E;AAC7E,yEAAyE;AACzE,sEAAsE;AACtE,uEAAuE;AACvE,+CAA+C;
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAAA,2EAA2E;AAC3E,qCAAqC;AACrC,EAAE;AACF,6EAA6E;AAC7E,6EAA6E;AAC7E,yEAAyE;AACzE,sEAAsE;AACtE,uEAAuE;AACvE,+CAA+C;AAoE/C,MAAM,CAAC,MAAM,kBAAkB,GAAc,MAAM,CAAC,MAAM,CAAC;IACvD,IAAI,EAAE,KAAK;IACX,IAAI,EAAE,KAAK;IACX,KAAK,EAAE,KAAK;IACZ,aAAa,EAAE,KAAK;IACpB,WAAW,EAAE,KAAK;CACrB,CAAC,CAAC"}
|