@itentialopensource/adapter-zscaler 0.12.4 → 0.13.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/TAB2.md +4 -1
- package/package.json +4 -4
- package/propertiesSchema.json +41 -41
- package/report/updateReport1764798985183.json +120 -0
package/TAB2.md
CHANGED
|
@@ -98,7 +98,10 @@ Sample Properties can be used to help you configure the adapter in the Itential
|
|
|
98
98
|
"responseFields": {},
|
|
99
99
|
"successfullResponseCode": 200
|
|
100
100
|
}
|
|
101
|
-
]
|
|
101
|
+
],
|
|
102
|
+
"auth_request_datatype": "",
|
|
103
|
+
"auth_response_datatype": "",
|
|
104
|
+
"token_response_placement": ""
|
|
102
105
|
},
|
|
103
106
|
"healthcheck": {
|
|
104
107
|
"type": "none",
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itentialopensource/adapter-zscaler",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.13.1",
|
|
4
4
|
"description": "This adapter integrates with system Zscaler",
|
|
5
5
|
"main": "adapter.js",
|
|
6
|
-
"wizardVersion": "3.
|
|
7
|
-
"engineVersion": "1.
|
|
6
|
+
"wizardVersion": "3.8.0",
|
|
7
|
+
"engineVersion": "1.79.2",
|
|
8
8
|
"adapterType": "http",
|
|
9
9
|
"scripts": {
|
|
10
10
|
"preinstall": "node utils/setup.js",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"author": "Itential",
|
|
48
48
|
"homepage": "https://gitlab.com/itentialopensource/adapters/adapter-zscaler#readme",
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@itentialopensource/adapter-utils": "
|
|
50
|
+
"@itentialopensource/adapter-utils": "6.0.3",
|
|
51
51
|
"acorn": "8.14.1",
|
|
52
52
|
"ajv": "8.17.1",
|
|
53
53
|
"axios": "1.12.2",
|
package/propertiesSchema.json
CHANGED
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
"protocol": {
|
|
78
78
|
"type": "string",
|
|
79
79
|
"description": "the protocol to use to connect to server",
|
|
80
|
-
"default": "
|
|
80
|
+
"default": "https",
|
|
81
81
|
"enum": [
|
|
82
82
|
"http",
|
|
83
83
|
"https"
|
|
@@ -279,6 +279,44 @@
|
|
|
279
279
|
"description": "The grant type for OAuth requests - can also provide in schema",
|
|
280
280
|
"default": ""
|
|
281
281
|
},
|
|
282
|
+
"auth_request_datatype": {
|
|
283
|
+
"type": "string",
|
|
284
|
+
"description": "Override the request data type for token authentication requests. When set, this overrides the schema's requestDatatype",
|
|
285
|
+
"default": "",
|
|
286
|
+
"enum": [
|
|
287
|
+
"",
|
|
288
|
+
"JSON",
|
|
289
|
+
"JSON2XML",
|
|
290
|
+
"PLAIN",
|
|
291
|
+
"XML",
|
|
292
|
+
"URLENCODE",
|
|
293
|
+
"URLQUERY",
|
|
294
|
+
"FORM"
|
|
295
|
+
]
|
|
296
|
+
},
|
|
297
|
+
"auth_response_datatype": {
|
|
298
|
+
"type": "string",
|
|
299
|
+
"description": "Override the response data type for token authentication requests. When set, this overrides the schema's responseDatatype",
|
|
300
|
+
"default": "",
|
|
301
|
+
"enum": [
|
|
302
|
+
"",
|
|
303
|
+
"JSON",
|
|
304
|
+
"XML2JSON",
|
|
305
|
+
"PLAIN",
|
|
306
|
+
"XML",
|
|
307
|
+
"URLENCODE"
|
|
308
|
+
]
|
|
309
|
+
},
|
|
310
|
+
"token_response_placement": {
|
|
311
|
+
"type": "string",
|
|
312
|
+
"description": "Override where to extract the token from the authentication response (HEADER or BODY). When set, this overrides the schema's token placement setting",
|
|
313
|
+
"default": "",
|
|
314
|
+
"enum": [
|
|
315
|
+
"",
|
|
316
|
+
"HEADER",
|
|
317
|
+
"BODY"
|
|
318
|
+
]
|
|
319
|
+
},
|
|
282
320
|
"audience": {
|
|
283
321
|
"type": "string",
|
|
284
322
|
"description": "The audience for OAuth requests",
|
|
@@ -351,44 +389,6 @@
|
|
|
351
389
|
}
|
|
352
390
|
}
|
|
353
391
|
}
|
|
354
|
-
},
|
|
355
|
-
"auth_request_datatype": {
|
|
356
|
-
"type": "string",
|
|
357
|
-
"description": "Override the request data type for token authentication requests. When set, this overrides the schema's requestDatatype",
|
|
358
|
-
"default": "",
|
|
359
|
-
"enum": [
|
|
360
|
-
"",
|
|
361
|
-
"JSON",
|
|
362
|
-
"JSON2XML",
|
|
363
|
-
"PLAIN",
|
|
364
|
-
"XML",
|
|
365
|
-
"URLENCODE",
|
|
366
|
-
"URLQUERY",
|
|
367
|
-
"FORM"
|
|
368
|
-
]
|
|
369
|
-
},
|
|
370
|
-
"auth_response_datatype": {
|
|
371
|
-
"type": "string",
|
|
372
|
-
"description": "Override the response data type for token authentication requests. When set, this overrides the schema's responseDatatype",
|
|
373
|
-
"default": "",
|
|
374
|
-
"enum": [
|
|
375
|
-
"",
|
|
376
|
-
"JSON",
|
|
377
|
-
"XML2JSON",
|
|
378
|
-
"PLAIN",
|
|
379
|
-
"XML",
|
|
380
|
-
"URLENCODE"
|
|
381
|
-
]
|
|
382
|
-
},
|
|
383
|
-
"token_response_placement": {
|
|
384
|
-
"type": "string",
|
|
385
|
-
"description": "Override where to extract the token from the authentication response (HEADER or BODY). When set, this overrides the schema's token placement setting",
|
|
386
|
-
"default": "",
|
|
387
|
-
"enum": [
|
|
388
|
-
"",
|
|
389
|
-
"HEADER",
|
|
390
|
-
"BODY"
|
|
391
|
-
]
|
|
392
392
|
}
|
|
393
393
|
},
|
|
394
394
|
"required": [
|
|
@@ -740,7 +740,7 @@
|
|
|
740
740
|
"protocol": {
|
|
741
741
|
"type": "string",
|
|
742
742
|
"description": "the protocol to use to connect to the proxy",
|
|
743
|
-
"default": "
|
|
743
|
+
"default": "https",
|
|
744
744
|
"enum": [
|
|
745
745
|
"http",
|
|
746
746
|
"https",
|
|
@@ -1772,4 +1772,4 @@
|
|
|
1772
1772
|
}
|
|
1773
1773
|
}
|
|
1774
1774
|
}
|
|
1775
|
-
}
|
|
1775
|
+
}
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
{
|
|
2
|
+
"errors": [],
|
|
3
|
+
"statistics": [
|
|
4
|
+
{
|
|
5
|
+
"owner": "errorJson",
|
|
6
|
+
"description": "New adapter errors available for use",
|
|
7
|
+
"value": 0
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"owner": "errorJson",
|
|
11
|
+
"description": "Adapter errors no longer available for use",
|
|
12
|
+
"value": 0
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"owner": "errorJson",
|
|
16
|
+
"description": "Adapter errors that have been updated (e.g. recommendation changes)",
|
|
17
|
+
"value": 31
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"owner": "packageJson",
|
|
21
|
+
"description": "Number of production dependencies",
|
|
22
|
+
"value": 15
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"owner": "packageJson",
|
|
26
|
+
"description": "Number of development dependencies",
|
|
27
|
+
"value": 6
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"owner": "packageJson",
|
|
31
|
+
"description": "Number of npm scripts",
|
|
32
|
+
"value": 17
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"owner": "packageJson",
|
|
36
|
+
"description": "Runtime Library dependency",
|
|
37
|
+
"value": "6.0.2"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"owner": "propertiesSchemaJson",
|
|
41
|
+
"description": "Adapter properties defined in the propertiesSchema file",
|
|
42
|
+
"value": 84
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"owner": "markdown",
|
|
46
|
+
"description": "Number of lines in the README.md",
|
|
47
|
+
"value": 345
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"owner": "markdown",
|
|
51
|
+
"description": "Number of lines in the SUMMARY.md",
|
|
52
|
+
"value": 9
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"owner": "markdown",
|
|
56
|
+
"description": "Number of lines in the PROPERTIES.md",
|
|
57
|
+
"value": 677
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"owner": "markdown",
|
|
61
|
+
"description": "Number of lines in the TROUBLESHOOT.md",
|
|
62
|
+
"value": 57
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"owner": "markdown",
|
|
66
|
+
"description": "Number of lines in the ENHANCE.md",
|
|
67
|
+
"value": 70
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"owner": "markdown",
|
|
71
|
+
"description": "Number of lines in the BROKER.md",
|
|
72
|
+
"value": 70
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"owner": "unitTestJS",
|
|
76
|
+
"description": "Number of lines of code in unit tests",
|
|
77
|
+
"value": 8768
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"owner": "unitTestJS",
|
|
81
|
+
"description": "Number of unit tests",
|
|
82
|
+
"value": 598
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"owner": "integrationTestJS",
|
|
86
|
+
"description": "Number of lines of code in integration tests",
|
|
87
|
+
"value": 9594
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"owner": "integrationTestJS",
|
|
91
|
+
"description": "Number of integration tests",
|
|
92
|
+
"value": 353
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"owner": "staticFile",
|
|
96
|
+
"description": "Number of lines of code in adapterBase.js",
|
|
97
|
+
"value": 1527
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"owner": "staticFile",
|
|
101
|
+
"description": "Number of static files added",
|
|
102
|
+
"value": 37
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"owner": "Overall",
|
|
106
|
+
"description": "Total lines of Code",
|
|
107
|
+
"value": 19889
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"owner": "Overall",
|
|
111
|
+
"description": "Total Tests",
|
|
112
|
+
"value": 951
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"owner": "Overall",
|
|
116
|
+
"description": "Total Files",
|
|
117
|
+
"value": 6
|
|
118
|
+
}
|
|
119
|
+
]
|
|
120
|
+
}
|