Skip to content

Commit d08d68f

Browse files
committed
NPM UPDATE
1 parent dfc9f11 commit d08d68f

File tree

14 files changed

+31
-19
lines changed

14 files changed

+31
-19
lines changed

Directory.Packages.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22
<PropertyGroup>
33
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
4-
<MotelyVersion>3.0.4</MotelyVersion>
4+
<MotelyVersion>3.0.5</MotelyVersion>
55
</PropertyGroup>
66
<ItemGroup>
77
<!-- Node API for .NET addon: https://microsoft.github.io/node-api-dotnet/scenarios/js-dotnet-module.html (CPM requires fixed version) -->

Motely.node/jaml-schema.d.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
export type ValidationState = 'required-incomplete' | 'optional-incomplete' | 'complete' | 'invalid' | 'metadata';
2+
export declare const JAML_SCHEMA_VERSION: string;
3+
export declare const jamlSchema: Record<string, unknown>;
4+
export declare const METADATA_KEYS: string[];
5+
export declare const SECTION_KEYS: string[];
6+
export declare const CLAUSE_TYPE_KEYS: string[];
7+
export declare const PROPERTY_KEYS: string[];
8+
export declare const SOURCE_KEYS: string[];
9+
export declare function getValidValuesForKey(key: string): readonly string[] | null;
10+
export declare function getAvailablePropsForType(clauseType: string): string[];
11+
export declare function isInvalidPropForType(prop: string, clauseType: string): boolean;
12+
export declare function isInvalidValueForProp(value: string, prop: string, clauseType: string): boolean;

Motely.node/package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Motely.node/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "motely-node",
3-
"version": "3.0.4",
3+
"version": "3.0.5",
44
"description": "MotelyJAML for Node.js/V8 - Balatro seed analyzer and JAML filter engine using .NET WASM",
55
"type": "module",
66
"main": "index.js",

Motely.npm.singlethread/jaml-schema.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
export const JAML_SCHEMA_VERSION = "3.0.4";
1+
export const JAML_SCHEMA_VERSION = "3.0.5";
22
export const jamlSchema = {
33
"$schema": "http://json-schema.org/draft-07/schema#",
44
"$id": "https://seedfinder.app/jaml.schema.json",
5-
"version": "3.0.4",
5+
"version": "3.0.5",
66
"title": "JAML - Jimbo\u0027s Ante Markup Language",
77
"description": "Schema for Balatro seed filter configuration files (.jaml)",
88
"type": "object",

Motely.npm.singlethread/jaml.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "http://json-schema.org/draft-07/schema#",
33
"$id": "https://seedfinder.app/jaml.schema.json",
4-
"version": "3.0.4",
4+
"version": "3.0.5",
55
"title": "JAML - Jimbo\u0027s Ante Markup Language",
66
"description": "Schema for Balatro seed filter configuration files (.jaml)",
77
"type": "object",

Motely.npm.singlethread/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Motely.npm.singlethread/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "motely-wasm-singlethread",
3-
"version": "3.0.4",
3+
"version": "3.0.5",
44
"description": "Run Motely in the browser with a dedicated single-threaded .NET WASM runtime.",
55
"type": "module",
66
"main": "index.js",

Motely.npm/jaml-schema.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
export const JAML_SCHEMA_VERSION = "3.0.4";
1+
export const JAML_SCHEMA_VERSION = "3.0.5";
22
export const jamlSchema = {
33
"$schema": "http://json-schema.org/draft-07/schema#",
44
"$id": "https://seedfinder.app/jaml.schema.json",
5-
"version": "3.0.4",
5+
"version": "3.0.5",
66
"title": "JAML - Jimbo\u0027s Ante Markup Language",
77
"description": "Schema for Balatro seed filter configuration files (.jaml)",
88
"type": "object",

Motely.npm/jaml.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "http://json-schema.org/draft-07/schema#",
33
"$id": "https://seedfinder.app/jaml.schema.json",
4-
"version": "3.0.4",
4+
"version": "3.0.5",
55
"title": "JAML - Jimbo\u0027s Ante Markup Language",
66
"description": "Schema for Balatro seed filter configuration files (.jaml)",
77
"type": "object",

0 commit comments

Comments
 (0)