ssjs-data 0.3.3 → 0.3.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.
@@ -1295,7 +1295,6 @@ declare function IsPhoneNumber(value: string): boolean;
1295
1295
  *
1296
1296
  * [ssjs.guide reference](https://ssjs.guide/global-functions/write/)
1297
1297
  *
1298
- * @remarks Requires `Platform.Load("Core", "1")` before use.
1299
1298
  * @param content - Content string to write to the response.
1300
1299
  * @example
1301
1300
  * var data = { name: "Jane", status: "active" };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ssjs-data",
3
- "version": "0.3.3",
3
+ "version": "0.3.4",
4
4
  "description": "Canonical SSJS (Server-Side JavaScript) function catalog, Core library objects, Platform methods, and globals for SFMC tooling",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
package/src/index.js CHANGED
@@ -213,7 +213,7 @@ export const SSJS_GLOBALS = [
213
213
  aliasOf: 'Platform.Function.IsPhoneNumber',
214
214
  requiresCoreLoad: true,
215
215
  },
216
- { name: 'Write', aliasOf: 'Platform.Response.Write', requiresCoreLoad: true },
216
+ { name: 'Write', aliasOf: 'Platform.Response.Write' },
217
217
  { name: 'Stringify', aliasOf: 'Platform.Function.Stringify', requiresCoreLoad: true },
218
218
  // ── Core-library namespace markers ───────────────────────────────────────
219
219
  {