jssm 5.147.2 → 5.147.4

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/jssm.es5.d.cts CHANGED
@@ -2416,8 +2416,12 @@ declare class Machine<mDT> {
2416
2416
  * @returns The definition string.
2417
2417
  */
2418
2418
  machine_definition(): string;
2419
- /** Get the machine's language (ISO 639-1). Set via the FSL `machine_language` directive.
2420
- * @returns The language code string.
2419
+ /** Get the machine's natural language as an ISO 639-1 code. Set via the FSL
2420
+ * `machine_language` directive, which accepts a language name or code, or a
2421
+ * BCP-47 tag whose region subtag is dropped (`en-us` -> `en`). Unrecognized
2422
+ * values resolve to `undefined`.
2423
+ * @returns The ISO 639-1 language code (e.g. `'en'`), or `undefined` if the
2424
+ * supplied value did not resolve to a known language.
2421
2425
  */
2422
2426
  machine_language(): string;
2423
2427
  /** Get the machine's license string. Set via the FSL `machine_license` directive.
package/jssm.es6.d.ts CHANGED
@@ -2416,8 +2416,12 @@ declare class Machine<mDT> {
2416
2416
  * @returns The definition string.
2417
2417
  */
2418
2418
  machine_definition(): string;
2419
- /** Get the machine's language (ISO 639-1). Set via the FSL `machine_language` directive.
2420
- * @returns The language code string.
2419
+ /** Get the machine's natural language as an ISO 639-1 code. Set via the FSL
2420
+ * `machine_language` directive, which accepts a language name or code, or a
2421
+ * BCP-47 tag whose region subtag is dropped (`en-us` -> `en`). Unrecognized
2422
+ * values resolve to `undefined`.
2423
+ * @returns The ISO 639-1 language code (e.g. `'en'`), or `undefined` if the
2424
+ * supplied value did not resolve to a known language.
2421
2425
  */
2422
2426
  machine_language(): string;
2423
2427
  /** Get the machine's license string. Set via the FSL `machine_license` directive.
@@ -1752,8 +1752,12 @@ declare class Machine<mDT> {
1752
1752
  * @returns The definition string.
1753
1753
  */
1754
1754
  machine_definition(): string;
1755
- /** Get the machine's language (ISO 639-1). Set via the FSL `machine_language` directive.
1756
- * @returns The language code string.
1755
+ /** Get the machine's natural language as an ISO 639-1 code. Set via the FSL
1756
+ * `machine_language` directive, which accepts a language name or code, or a
1757
+ * BCP-47 tag whose region subtag is dropped (`en-us` -> `en`). Unrecognized
1758
+ * values resolve to `undefined`.
1759
+ * @returns The ISO 639-1 language code (e.g. `'en'`), or `undefined` if the
1760
+ * supplied value did not resolve to a known language.
1757
1761
  */
1758
1762
  machine_language(): string;
1759
1763
  /** Get the machine's license string. Set via the FSL `machine_license` directive.
package/jssm_viz.es6.d.ts CHANGED
@@ -1752,8 +1752,12 @@ declare class Machine<mDT> {
1752
1752
  * @returns The definition string.
1753
1753
  */
1754
1754
  machine_definition(): string;
1755
- /** Get the machine's language (ISO 639-1). Set via the FSL `machine_language` directive.
1756
- * @returns The language code string.
1755
+ /** Get the machine's natural language as an ISO 639-1 code. Set via the FSL
1756
+ * `machine_language` directive, which accepts a language name or code, or a
1757
+ * BCP-47 tag whose region subtag is dropped (`en-us` -> `en`). Unrecognized
1758
+ * values resolve to `undefined`.
1759
+ * @returns The ISO 639-1 language code (e.g. `'en'`), or `undefined` if the
1760
+ * supplied value did not resolve to a known language.
1757
1761
  */
1758
1762
  machine_language(): string;
1759
1763
  /** Get the machine's license string. Set via the FSL `machine_license` directive.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jssm",
3
- "version": "5.147.2",
3
+ "version": "5.147.4",
4
4
  "engines": {
5
5
  "node": ">=10.0.0"
6
6
  },