@loomb-oai/node-test 0.2.0-alpha.20260519.2 → 0.2.0-alpha.20260520.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.
package/README.md CHANGED
@@ -3,8 +3,7 @@
3
3
  Small npm package used by the SDK release action simulation.
4
4
 
5
5
  ```js
6
- import { get_sdk_version, node_hello_world } from "@loomb-oai/node-test";
6
+ import { get_magic_number } from "@loomb-oai/node-test";
7
7
 
8
- node_hello_world();
9
- get_sdk_version();
8
+ get_magic_number();
10
9
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@loomb-oai/node-test",
3
- "version": "0.2.0-alpha.20260519.2",
3
+ "version": "0.2.0-alpha.20260520.1",
4
4
  "description": "Demo Node package for the SDK release action simulation.",
5
5
  "main": "src/index.js",
6
6
  "repository": {
package/src/index.js CHANGED
@@ -1,9 +1,6 @@
1
- const SDK_VERSION = "0.2.0-alpha.20260519.2";
1
+ const SDK_VERSION = "0.2.0-alpha.20260520.1";
2
+ const MAGIC_NUMBER = 7;
2
3
 
3
- export function node_hello_world(name = "release-action") {
4
- return `hello ${name} from the demo Node SDK`;
5
- }
6
-
7
- export function get_sdk_version() {
8
- return SDK_VERSION;
4
+ export function get_magic_number() {
5
+ return MAGIC_NUMBER;
9
6
  }