@gi-tcg/gts-runtime 0.4.6 → 0.5.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/dist/index.d.ts CHANGED
@@ -28,7 +28,6 @@ declare namespace AttributeReturn {
28
28
  type Meta = "~meta";
29
29
  type Action = "~action";
30
30
  type NamedDefinition = "~namedDefinition";
31
- type Prelude = "~prelude";
32
31
  //#endregion
33
32
  //#region src/view.d.ts
34
33
  type AttributeName = string | symbol;
@@ -264,4 +263,4 @@ type SimpleViewModel<T, Options extends SimpleViewModelOptions = {}> = IViewMode
264
263
  }, []>;
265
264
  declare function defineSimpleViewModel<const T extends StandardJSONSchemaV1, const Options extends SimpleViewModelOptions = {}>(schema: T, options?: Options): SimpleViewModel<StandardJSONSchemaV1.InferInput<T>, Options>;
266
265
  //#endregion
267
- export { type AttributeReturn as AR, type AttributeReturn, type Action, type AttributeDefinition, type IViewModel, type Meta, type NamedAttributesNode, type NamedDefinition, type Prelude, type SimpleViewModel, type SimpleViewModelOptions, type SingleAttributeNode, type View, createBinding, createDefine, defineSimpleViewModel, defineViewModel };
266
+ export { type AttributeReturn as AR, type AttributeReturn, type Action, type AttributeDefinition, type IViewModel, type Meta, type NamedAttributesNode, type NamedDefinition, type SimpleViewModel, type SimpleViewModelOptions, type SingleAttributeNode, type View, createBinding, createDefine, defineSimpleViewModel, defineViewModel };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gi-tcg/gts-runtime",
3
- "version": "0.4.6",
3
+ "version": "0.5.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/piovium/gts.git"
package/src/index.ts CHANGED
@@ -9,7 +9,7 @@ export {
9
9
  type SimpleViewModelOptions,
10
10
  } from "./simple_view_model.ts";
11
11
  export type { AttributeReturn, AR } from "./attribute_return.ts";
12
- export type { Action, Prelude, Meta, NamedDefinition } from "./symbols.ts";
12
+ export type { Action, Meta, NamedDefinition } from "./symbols.ts";
13
13
 
14
14
  export {
15
15
  createBinding,
package/src/symbols.ts CHANGED
@@ -1,6 +1,3 @@
1
1
  export type Meta = "~meta";
2
2
  export type Action = "~action";
3
3
  export type NamedDefinition = "~namedDefinition";
4
- export type Prelude = "~prelude";
5
- export type Query = "~query";
6
- export type QueryAll = "~queryAll";