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.
- package/dist/sfmc-globals.d.ts +0 -1
- package/package.json +1 -1
- package/src/index.js +1 -1
package/dist/sfmc-globals.d.ts
CHANGED
|
@@ -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
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'
|
|
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
|
{
|