@loomb-oai/node-test 0.1.0 → 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 +2 -3
- package/package.json +1 -1
- package/src/index.js +4 -7
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 {
|
|
6
|
+
import { get_magic_number } from "@loomb-oai/node-test";
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
get_sdk_version();
|
|
8
|
+
get_magic_number();
|
|
10
9
|
```
|
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -1,9 +1,6 @@
|
|
|
1
|
-
const SDK_VERSION = "0.
|
|
1
|
+
const SDK_VERSION = "0.2.0-alpha.20260520.1";
|
|
2
|
+
const MAGIC_NUMBER = 7;
|
|
2
3
|
|
|
3
|
-
export function
|
|
4
|
-
return
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
export function get_sdk_version() {
|
|
8
|
-
return SDK_VERSION;
|
|
4
|
+
export function get_magic_number() {
|
|
5
|
+
return MAGIC_NUMBER;
|
|
9
6
|
}
|