eslint-plugin-sfmc 0.2.0 → 1.0.0

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.
@@ -0,0 +1,236 @@
1
+ /**
2
+ * Rule: ssjs-no-unknown-function
3
+ *
4
+ * Unified rule that replaces the seven narrow no-unknown-* rules.
5
+ * Flags calls to API methods that do not exist in the SFMC catalog:
6
+ *
7
+ * - Platform.Function.<method>() — unknown Platform.Function method
8
+ * - Platform.Variable.<method>() — unknown Platform.Variable method
9
+ * - Platform.Request.<method>() — unknown Platform.Request method
10
+ * - Platform.Response.<method>() — unknown Platform.Response method
11
+ * - Platform.Recipient.<method>() — unknown Platform.Recipient method
12
+ * - HTTP.<method>() — unknown HTTP method
13
+ * - <wsproxyVar>.<method>() — unknown WSProxy method on a tracked variable
14
+ * - <coreVar>.<method>() — unknown method on a tracked Core Library object
15
+ */
16
+
17
+ import {
18
+ platformFunctionNames,
19
+ PLATFORM_VARIABLE_METHODS,
20
+ PLATFORM_REQUEST_METHODS,
21
+ PLATFORM_RESPONSE_METHODS,
22
+ platformRecipientMethodNames,
23
+ httpMethodNames,
24
+ coreObjectLookup,
25
+ coreObjectNames,
26
+ wsproxyMethodNames,
27
+ } from 'ssjs-data';
28
+
29
+ // Map of lowercase Platform namespace → Set of known lowercase method names
30
+ const PLATFORM_NS = new Map([
31
+ ['function', platformFunctionNames],
32
+ ['variable', new Set(PLATFORM_VARIABLE_METHODS.map((m) => m.name.toLowerCase()))],
33
+ ['request', new Set(PLATFORM_REQUEST_METHODS.map((m) => m.name.toLowerCase()))],
34
+ ['response', new Set(PLATFORM_RESPONSE_METHODS.map((m) => m.name.toLowerCase()))],
35
+ ['recipient', platformRecipientMethodNames],
36
+ ]);
37
+
38
+ export default {
39
+ meta: {
40
+ type: 'problem',
41
+ docs: {
42
+ description:
43
+ 'Disallow calls to unknown SFMC API methods (Platform.*, HTTP.*, Core library, WSProxy)',
44
+ },
45
+ messages: {
46
+ unknownPlatformMethod:
47
+ "'Platform.{{ns}}.{{name}}' is not a recognized SFMC Platform.{{ns}} method.",
48
+ unknownHttpMethod: "'HTTP.{{name}}' is not a recognized SFMC HTTP method.",
49
+ unknownCoreMethod:
50
+ "'{{method}}' is not a known method of {{objectType}}. Available methods: {{available}}.",
51
+ unknownWsproxyMethod: "'{{name}}' is not a recognized WSProxy method.",
52
+ },
53
+ schema: [],
54
+ },
55
+
56
+ create(context) {
57
+ // Track variable name → Core Library type name (assigned via TypeName.Init())
58
+ const coreVariables = new Map();
59
+ // Track variable names assigned via new Script.Util.WSProxy()
60
+ const wsproxyVariables = new Set();
61
+
62
+ return {
63
+ VariableDeclaration(node) {
64
+ for (const decl of node.declarations) {
65
+ if (!decl.init || !decl.id || decl.id.type !== 'Identifier') {
66
+ continue;
67
+ }
68
+ const coreType = getCoreInitType(decl.init);
69
+ if (coreType) {
70
+ coreVariables.set(decl.id.name, coreType);
71
+ }
72
+ if (isWSProxyConstructor(decl.init)) {
73
+ wsproxyVariables.add(decl.id.name);
74
+ }
75
+ }
76
+ },
77
+
78
+ AssignmentExpression(node) {
79
+ if (node.left.type !== 'Identifier') {
80
+ return;
81
+ }
82
+ const coreType = getCoreInitType(node.right);
83
+ if (coreType) {
84
+ coreVariables.set(node.left.name, coreType);
85
+ }
86
+ if (isWSProxyConstructor(node.right)) {
87
+ wsproxyVariables.add(node.left.name);
88
+ }
89
+ },
90
+
91
+ CallExpression(node) {
92
+ const callee = node.callee;
93
+ if (callee.type !== 'MemberExpression') {
94
+ return;
95
+ }
96
+ const property = callee.property;
97
+ if (property.type !== 'Identifier') {
98
+ return;
99
+ }
100
+
101
+ const methodName = property.name;
102
+
103
+ // ── Platform.<NS>.<method>() ──────────────────────────────────
104
+ if (
105
+ callee.object.type === 'MemberExpression' &&
106
+ callee.object.object.type === 'Identifier' &&
107
+ callee.object.object.name === 'Platform' &&
108
+ callee.object.property.type === 'Identifier'
109
+ ) {
110
+ const ns = callee.object.property.name.toLowerCase();
111
+ const knownNames = PLATFORM_NS.get(ns);
112
+ // Only report if we know this namespace; unknown namespaces are ignored.
113
+ if (knownNames && !knownNames.has(methodName.toLowerCase())) {
114
+ context.report({
115
+ node: property,
116
+ messageId: 'unknownPlatformMethod',
117
+ data: { ns: callee.object.property.name, name: methodName },
118
+ });
119
+ }
120
+ return;
121
+ }
122
+
123
+ // ── HTTP.<method>() ───────────────────────────────────────────
124
+ if (
125
+ callee.object.type === 'Identifier' &&
126
+ callee.object.name === 'HTTP' &&
127
+ !httpMethodNames.has(methodName.toLowerCase())
128
+ ) {
129
+ context.report({
130
+ node: property,
131
+ messageId: 'unknownHttpMethod',
132
+ data: { name: methodName },
133
+ });
134
+ return;
135
+ }
136
+
137
+ // ── Instance method calls (Core Library / WSProxy) ────────────
138
+ if (callee.object.type === 'Identifier') {
139
+ const objectName = callee.object.name;
140
+
141
+ // Core library: var de = DataExtension.Init("key"); de.Foo();
142
+ const coreType = coreVariables.get(objectName);
143
+ if (coreType) {
144
+ const objectDef = coreObjectLookup.get(coreType);
145
+ if (objectDef) {
146
+ const knownMethods = new Set(
147
+ objectDef.methods.map((m) => m.toLowerCase()),
148
+ );
149
+ if (!knownMethods.has(methodName.toLowerCase())) {
150
+ context.report({
151
+ node: property,
152
+ messageId: 'unknownCoreMethod',
153
+ data: {
154
+ method: methodName,
155
+ objectType: coreType,
156
+ available: objectDef.methods.join(', '),
157
+ },
158
+ });
159
+ }
160
+ }
161
+ return;
162
+ }
163
+
164
+ // WSProxy: var api = new Script.Util.WSProxy(); api.Foo();
165
+ if (
166
+ wsproxyVariables.has(objectName) &&
167
+ !wsproxyMethodNames.has(methodName.toLowerCase())
168
+ ) {
169
+ context.report({
170
+ node: property,
171
+ messageId: 'unknownWsproxyMethod',
172
+ data: { name: methodName },
173
+ });
174
+ }
175
+ }
176
+ },
177
+ };
178
+ },
179
+ };
180
+
181
+ /**
182
+ * If `node` is a Core Library Init call (e.g. `DataExtension.Init("key")`),
183
+ * return the Core Library type name; otherwise return null.
184
+ *
185
+ * @param {import('eslint').Rule.Node} node
186
+ * @returns {string | null}
187
+ */
188
+ function getCoreInitType(node) {
189
+ if (!node || node.type !== 'CallExpression') {
190
+ return null;
191
+ }
192
+ const callee = node.callee;
193
+ if (callee.type !== 'MemberExpression') {
194
+ return null;
195
+ }
196
+ if (callee.property.type !== 'Identifier' || callee.property.name !== 'Init') {
197
+ return null;
198
+ }
199
+ if (callee.object.type === 'Identifier' && coreObjectNames.has(callee.object.name)) {
200
+ return callee.object.name;
201
+ }
202
+ if (
203
+ callee.object.type === 'MemberExpression' &&
204
+ callee.object.object.type === 'Identifier' &&
205
+ callee.object.property.type === 'Identifier'
206
+ ) {
207
+ const fullName = `${callee.object.object.name}.${callee.object.property.name}`;
208
+ if (coreObjectNames.has(fullName)) {
209
+ return fullName;
210
+ }
211
+ }
212
+ return null;
213
+ }
214
+
215
+ /**
216
+ * Returns true if `node` is `new Script.Util.WSProxy()`.
217
+ *
218
+ * @param {import('eslint').Rule.Node} node
219
+ * @returns {boolean}
220
+ */
221
+ function isWSProxyConstructor(node) {
222
+ if (!node || node.type !== 'NewExpression') {
223
+ return false;
224
+ }
225
+ const c = node.callee;
226
+ return (
227
+ c.type === 'MemberExpression' &&
228
+ c.property.type === 'Identifier' &&
229
+ c.property.name === 'WSProxy' &&
230
+ c.object.type === 'MemberExpression' &&
231
+ c.object.property.type === 'Identifier' &&
232
+ c.object.property.name === 'Util' &&
233
+ c.object.object.type === 'Identifier' &&
234
+ c.object.object.name === 'Script'
235
+ );
236
+ }
@@ -10,10 +10,16 @@
10
10
  * reported violation so ESLint does not duplicate the insertion.
11
11
  */
12
12
 
13
- import { coreObjectNames } from 'ssjs-data';
13
+ import { coreObjectNames, SSJS_GLOBALS } from 'ssjs-data';
14
14
 
15
15
  const TOP_LEVEL_CORE_NAMES = new Set([...coreObjectNames].map((n) => n.split('.')[0]));
16
16
 
17
+ // Globals that resolve at runtime only after Platform.Load("core", ...) has been called.
18
+ // E.g. Now(), Write(), GUID(), Base64Encode(), Attribute.GetValue(), DateTime.Parse(), …
19
+ const REQUIRES_CORE_LOAD_GLOBALS = new Set(
20
+ SSJS_GLOBALS.filter((g) => g.requiresCoreLoad).map((g) => g.name.toLowerCase()),
21
+ );
22
+
17
23
  const PLATFORM_LOAD_STATEMENT = 'Platform.Load("core", "1.1.5");\n';
18
24
 
19
25
  export default {
@@ -96,10 +102,20 @@ function isPlatformLoadCall(node) {
96
102
 
97
103
  function getCoreObjectUsage(node) {
98
104
  const callee = node.callee;
105
+
106
+ // Bare call: Now(), Write(), GUID(), Base64Encode(), Redirect(), …
107
+ if (callee.type === 'Identifier') {
108
+ if (REQUIRES_CORE_LOAD_GLOBALS.has(callee.name.toLowerCase())) {
109
+ return callee.name;
110
+ }
111
+ return null;
112
+ }
113
+
99
114
  if (callee.type !== 'MemberExpression') {
100
115
  return null;
101
116
  }
102
117
 
118
+ // Nested Core Library call: DataExtension.Rows.Init(…)
103
119
  if (
104
120
  callee.object.type === 'MemberExpression' &&
105
121
  callee.object.object.type === 'Identifier' &&
@@ -110,14 +126,17 @@ function getCoreObjectUsage(node) {
110
126
  return `${callee.object.object.name}.${callee.object.property.name}`;
111
127
  }
112
128
 
113
- if (
114
- callee.object.type === 'Identifier' &&
115
- TOP_LEVEL_CORE_NAMES.has(callee.object.name) &&
116
- callee.property.type === 'Identifier'
117
- ) {
118
- const method = callee.property.name;
119
- if (method === 'Init') {
120
- return callee.object.name;
129
+ if (callee.object.type === 'Identifier' && callee.property.type === 'Identifier') {
130
+ const objectName = callee.object.name;
131
+
132
+ // Core Library static Init: DataExtension.Init(…), Subscriber.Init(…),
133
+ if (TOP_LEVEL_CORE_NAMES.has(objectName) && callee.property.name === 'Init') {
134
+ return objectName;
135
+ }
136
+
137
+ // requiresCoreLoad globals used as object: Attribute.GetValue(…), DateTime.Parse(…), …
138
+ if (REQUIRES_CORE_LOAD_GLOBALS.has(objectName.toLowerCase())) {
139
+ return `${objectName}.${callee.property.name}`;
121
140
  }
122
141
  }
123
142
 
@@ -1,46 +0,0 @@
1
- # `sfmc/ssjs-no-unknown-core-method`
2
-
3
- > Disallow calls to methods that don't exist on a Core library object.
4
-
5
- | | |
6
- |---|---|
7
- | **Type** | `problem` |
8
- | **Default severity** | `warn` in `recommended`; `error` in `strict` |
9
- | **Fixable** | — |
10
-
11
- ## Why This Rule Exists
12
-
13
- When a variable is initialised with a known Core library constructor (e.g. `var de = DataExtension.Init("MyDE")`), only the methods documented for that Core object type should be called on it. Calling an undocumented or misspelled method causes a runtime error. This rule infers the object type from the `.Init()` call and validates subsequent method calls.
14
-
15
- ## Settings
16
-
17
- | Setting | Values | Default |
18
- |---------|--------|---------|
19
- | severity | `"error"` \| `"warn"` \| `"off"` | `"warn"` |
20
-
21
- This rule has no configuration options.
22
-
23
- ### Examples
24
-
25
- **Not allowed:**
26
-
27
- ```js
28
- Platform.Load("core", "1.1.5");
29
- var de = DataExtension.Init("MyDE");
30
- de.Execute(); /* 'Execute' is not a method of DataExtension */
31
- ```
32
-
33
- **Allowed:**
34
-
35
- ```js
36
- Platform.Load("core", "1.1.5");
37
- var de = DataExtension.Init("MyDE");
38
- var rows = de.Rows.Retrieve();
39
- ```
40
-
41
- ## When to Disable
42
-
43
- ```js
44
- // eslint.config.js
45
- rules: { 'sfmc/ssjs-no-unknown-core-method': 'off' }
46
- ```
@@ -1,44 +0,0 @@
1
- # `sfmc/ssjs-no-unknown-http-method`
2
-
3
- > Disallow unknown `HTTP.*` method calls.
4
-
5
- | | |
6
- |---|---|
7
- | **Type** | `problem` |
8
- | **Default severity** | `error` in `recommended` and `strict` |
9
- | **Fixable** | — |
10
-
11
- ## Why This Rule Exists
12
-
13
- SFMC's SSJS runtime exposes only four `HTTP` methods: `HTTP.Get`, `HTTP.Post`, `HTTP.GetRequest`, and `HTTP.PostRequest`. Calling any other `HTTP.*` method causes a runtime error. This rule validates every `HTTP.*` call against that fixed list.
14
-
15
- ## Settings
16
-
17
- | Setting | Values | Default |
18
- |---------|--------|---------|
19
- | severity | `"error"` \| `"warn"` \| `"off"` | `"error"` |
20
-
21
- This rule has no configuration options.
22
-
23
- ### Examples
24
-
25
- **Not allowed:**
26
-
27
- ```js
28
- var response = HTTP.Delete("https://api.example.com/resource/1");
29
- var response = HTTP.Patch("https://api.example.com/resource/1", payload);
30
- ```
31
-
32
- **Allowed:**
33
-
34
- ```js
35
- var getResponse = HTTP.Get("https://api.example.com/resource/1");
36
- var postResponse = HTTP.Post("https://api.example.com/resource", payload, contentType);
37
- ```
38
-
39
- ## When to Disable
40
-
41
- ```js
42
- // eslint.config.js
43
- rules: { 'sfmc/ssjs-no-unknown-http-method': 'off' }
44
- ```
@@ -1,44 +0,0 @@
1
- # `sfmc/ssjs-no-unknown-platform-client-browser`
2
-
3
- > Disallow unknown `Platform.ClientBrowser.*` method calls.
4
-
5
- | | |
6
- |---|---|
7
- | **Type** | `problem` |
8
- | **Default severity** | `error` in `recommended` and `strict` |
9
- | **Fixable** | — |
10
-
11
- ## Why This Rule Exists
12
-
13
- `Platform.ClientBrowser` exposes a small, fixed set of methods for writing to and redirecting the HTTP response on CloudPages and landing pages. Calling a method that does not exist in this catalog causes a runtime error. This rule validates every `Platform.ClientBrowser.*` call against the known list.
14
-
15
- ## Settings
16
-
17
- | Setting | Values | Default |
18
- |---------|--------|---------|
19
- | severity | `"error"` \| `"warn"` \| `"off"` | `"error"` |
20
-
21
- This rule has no configuration options.
22
-
23
- ### Examples
24
-
25
- **Not allowed:**
26
-
27
- ```js
28
- Platform.ClientBrowser.Send("data");
29
- ```
30
-
31
- **Allowed:**
32
-
33
- ```js
34
- Platform.ClientBrowser.Redirect("https://example.com");
35
- Platform.ClientBrowser.Write("<p>Hello</p>");
36
- Platform.ClientBrowser.SetCookie("session", "abc123");
37
- ```
38
-
39
- ## When to Disable
40
-
41
- ```js
42
- // eslint.config.js
43
- rules: { 'sfmc/ssjs-no-unknown-platform-client-browser': 'off' }
44
- ```
@@ -1,44 +0,0 @@
1
- # `sfmc/ssjs-no-unknown-platform-function`
2
-
3
- > Disallow calls to unknown `Platform.Function.*` methods.
4
-
5
- | | |
6
- |---|---|
7
- | **Type** | `problem` |
8
- | **Default severity** | `error` in `recommended` and `strict` |
9
- | **Fixable** | — |
10
-
11
- ## Why This Rule Exists
12
-
13
- `Platform.Function` exposes a fixed set of SFMC server-side utility functions (e.g. `Platform.Function.Lookup`, `Platform.Function.InsertData`). Calling a method that does not exist in the catalog causes a runtime error. This rule validates every `Platform.Function.*` call against the known list.
14
-
15
- ## Settings
16
-
17
- | Setting | Values | Default |
18
- |---------|--------|---------|
19
- | severity | `"error"` \| `"warn"` \| `"off"` | `"error"` |
20
-
21
- This rule has no configuration options.
22
-
23
- ### Examples
24
-
25
- **Not allowed:**
26
-
27
- ```js
28
- Platform.Load("core", "1.1.5");
29
- var result = Platform.Function.CustomQuery("MyDE");
30
- ```
31
-
32
- **Allowed:**
33
-
34
- ```js
35
- Platform.Load("core", "1.1.5");
36
- var result = Platform.Function.Lookup("MyDE", "Value", "Key", keyValue);
37
- ```
38
-
39
- ## When to Disable
40
-
41
- ```js
42
- // eslint.config.js
43
- rules: { 'sfmc/ssjs-no-unknown-platform-function': 'off' }
44
- ```
@@ -1,43 +0,0 @@
1
- # `sfmc/ssjs-no-unknown-platform-request`
2
-
3
- > Disallow unknown `Platform.Request.*` method calls.
4
-
5
- | | |
6
- |---|---|
7
- | **Type** | `problem` |
8
- | **Default severity** | `error` in `recommended` and `strict` |
9
- | **Fixable** | — |
10
-
11
- ## Why This Rule Exists
12
-
13
- `Platform.Request` exposes a fixed set of methods for reading incoming HTTP request data on CloudPages and landing pages (e.g. `Platform.Request.GetQueryStringParameter`, `Platform.Request.GetFormField`). Calling an unknown method causes a runtime error. This rule validates every `Platform.Request.*` call against the known list.
14
-
15
- ## Settings
16
-
17
- | Setting | Values | Default |
18
- |---------|--------|---------|
19
- | severity | `"error"` \| `"warn"` \| `"off"` | `"error"` |
20
-
21
- This rule has no configuration options.
22
-
23
- ### Examples
24
-
25
- **Not allowed:**
26
-
27
- ```js
28
- var val = Platform.Request.ReadParam("myParam");
29
- ```
30
-
31
- **Allowed:**
32
-
33
- ```js
34
- var val = Platform.Request.GetQueryStringParameter("myParam");
35
- var field = Platform.Request.GetFormField("email");
36
- ```
37
-
38
- ## When to Disable
39
-
40
- ```js
41
- // eslint.config.js
42
- rules: { 'sfmc/ssjs-no-unknown-platform-request': 'off' }
43
- ```
@@ -1,43 +0,0 @@
1
- # `sfmc/ssjs-no-unknown-platform-response`
2
-
3
- > Disallow unknown `Platform.Response.*` method calls.
4
-
5
- | | |
6
- |---|---|
7
- | **Type** | `problem` |
8
- | **Default severity** | `error` in `recommended` and `strict` |
9
- | **Fixable** | — |
10
-
11
- ## Why This Rule Exists
12
-
13
- `Platform.Response` exposes a fixed set of methods for controlling HTTP responses from CloudPages and landing pages (e.g. `Platform.Response.Write`, `Platform.Response.Redirect`). Calling an unknown method causes a runtime error. This rule validates every `Platform.Response.*` call against the known list.
14
-
15
- ## Settings
16
-
17
- | Setting | Values | Default |
18
- |---------|--------|---------|
19
- | severity | `"error"` \| `"warn"` \| `"off"` | `"error"` |
20
-
21
- This rule has no configuration options.
22
-
23
- ### Examples
24
-
25
- **Not allowed:**
26
-
27
- ```js
28
- Platform.Response.Send("text/html", "<p>Hello</p>");
29
- ```
30
-
31
- **Allowed:**
32
-
33
- ```js
34
- Platform.Response.Write("<p>Hello</p>");
35
- Platform.Response.Redirect("https://example.com");
36
- ```
37
-
38
- ## When to Disable
39
-
40
- ```js
41
- // eslint.config.js
42
- rules: { 'sfmc/ssjs-no-unknown-platform-response': 'off' }
43
- ```
@@ -1,43 +0,0 @@
1
- # `sfmc/ssjs-no-unknown-platform-variable`
2
-
3
- > Disallow unknown `Platform.Variable.*` method calls.
4
-
5
- | | |
6
- |---|---|
7
- | **Type** | `problem` |
8
- | **Default severity** | `error` in `recommended` and `strict` |
9
- | **Fixable** | — |
10
-
11
- ## Why This Rule Exists
12
-
13
- `Platform.Variable` exposes a fixed set of methods for interacting with AMPscript variables from SSJS (e.g. `Platform.Variable.GetValue`, `Platform.Variable.SetValue`). Calling an unknown method causes a runtime error. This rule validates every `Platform.Variable.*` call against the known list.
14
-
15
- ## Settings
16
-
17
- | Setting | Values | Default |
18
- |---------|--------|---------|
19
- | severity | `"error"` \| `"warn"` \| `"off"` | `"error"` |
20
-
21
- This rule has no configuration options.
22
-
23
- ### Examples
24
-
25
- **Not allowed:**
26
-
27
- ```js
28
- var val = Platform.Variable.ReadValue("@myVar");
29
- ```
30
-
31
- **Allowed:**
32
-
33
- ```js
34
- var val = Platform.Variable.GetValue("@myVar");
35
- Platform.Variable.SetValue("@myVar", "Hello");
36
- ```
37
-
38
- ## When to Disable
39
-
40
- ```js
41
- // eslint.config.js
42
- rules: { 'sfmc/ssjs-no-unknown-platform-variable': 'off' }
43
- ```
@@ -1,46 +0,0 @@
1
- # `sfmc/ssjs-no-unknown-wsproxy-method`
2
-
3
- > Disallow unknown method calls on a `WSProxy` instance.
4
-
5
- | | |
6
- |---|---|
7
- | **Type** | `problem` |
8
- | **Default severity** | `warn` in `recommended`; `error` in `strict` |
9
- | **Fixable** | — |
10
-
11
- ## Why This Rule Exists
12
-
13
- `WSProxy` is SFMC's SSJS wrapper around the SOAP API. It exposes a specific set of methods (`retrieve`, `retrieveAll`, `create`, `update`, `delete`, `execute`, `perform`). Calling an unknown method on a `WSProxy` instance causes a runtime error. This rule infers `WSProxy` variable usage and validates method calls against the known list.
14
-
15
- ## Settings
16
-
17
- | Setting | Values | Default |
18
- |---------|--------|---------|
19
- | severity | `"error"` \| `"warn"` \| `"off"` | `"warn"` |
20
-
21
- This rule has no configuration options.
22
-
23
- ### Examples
24
-
25
- **Not allowed:**
26
-
27
- ```js
28
- Platform.Load("core", "1.1.5");
29
- var proxy = new Script.Util.WSProxy();
30
- var result = proxy.query({ ObjectType: "Subscriber" });
31
- ```
32
-
33
- **Allowed:**
34
-
35
- ```js
36
- Platform.Load("core", "1.1.5");
37
- var proxy = new Script.Util.WSProxy();
38
- var result = proxy.retrieve({ ObjectType: "Subscriber", Properties: ["SubscriberKey"] }, []);
39
- ```
40
-
41
- ## When to Disable
42
-
43
- ```js
44
- // eslint.config.js
45
- rules: { 'sfmc/ssjs-no-unknown-wsproxy-method': 'off' }
46
- ```