@manyos/smileconnect-api 1.71.0 → 1.71.2
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/conf/clients.json +3 -1
- package/controller/scriptController.js +1 -1
- package/docs/releases.md +14 -1
- package/package.json +1 -1
- package/util/config.js +2 -2
package/conf/clients.json
CHANGED
|
@@ -1995,7 +1995,8 @@
|
|
|
1995
1995
|
"impersonateUser": "rhannemann",
|
|
1996
1996
|
"allowDynamicImpersonate": true,
|
|
1997
1997
|
"translateSelectionFields": true,
|
|
1998
|
-
"openAPIDescription": "Custom text to be included in customer documentation."
|
|
1998
|
+
"openAPIDescription": "Custom text to be included in customer documentation.",
|
|
1999
|
+
"documentationLink": "https://jira.com/smdjksh"
|
|
1999
2000
|
},
|
|
2000
2001
|
"custom_Sample:Enrollments": {
|
|
2001
2002
|
"basequery": "1=1",
|
|
@@ -2694,6 +2695,7 @@
|
|
|
2694
2695
|
"personData": {
|
|
2695
2696
|
"options": {},
|
|
2696
2697
|
"scripts": [
|
|
2698
|
+
"script1_env",
|
|
2697
2699
|
"script1"
|
|
2698
2700
|
]
|
|
2699
2701
|
}
|
package/docs/releases.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Release Notes
|
|
2
2
|
|
|
3
3
|
## API
|
|
4
|
-
### 1.71.
|
|
4
|
+
### 1.71.1 - 25.03.25
|
|
5
5
|
Add Script Endpoints
|
|
6
6
|
Add openAPIDescription attribute to client config
|
|
7
7
|
|
|
@@ -278,6 +278,19 @@ Update Record added to [Remedy Adapter](adapter#remedy).
|
|
|
278
278
|
The eventmanager will check all outbound webhooks for an event. If one fails, the whole Event will be set to error and the details will be added to the error message.
|
|
279
279
|
|
|
280
280
|
## GUI
|
|
281
|
+
### 1.14.1 - 25.03.25
|
|
282
|
+
|
|
283
|
+
Feat: Add Script Endpoints Config
|
|
284
|
+
|
|
285
|
+
Feat: Show Script Usage
|
|
286
|
+
|
|
287
|
+
Feat: Add openAPIDescription attribute to client options
|
|
288
|
+
|
|
289
|
+
Feat: Add documentationLink attribute to client options
|
|
290
|
+
|
|
291
|
+
This Gui Versions needs API >= 1.71.0!
|
|
292
|
+
|
|
293
|
+
|
|
281
294
|
### 1.13.4 - 20.02.25
|
|
282
295
|
Fixed: Custom mapping upload in Code viewer is not working
|
|
283
296
|
|
package/package.json
CHANGED
package/util/config.js
CHANGED
|
@@ -561,7 +561,7 @@ async function getPathDef(objectName, baseUri, schema, isSubTicket, suppressUpda
|
|
|
561
561
|
summary: `Update an object of type ${objectName}`,
|
|
562
562
|
description: "A single object is returned in the data attribute",
|
|
563
563
|
parameters: [],
|
|
564
|
-
responses: await getApiResponse(schema,
|
|
564
|
+
responses: await getApiResponse(schema, true)
|
|
565
565
|
}
|
|
566
566
|
}
|
|
567
567
|
|
|
@@ -835,7 +835,7 @@ function getClientScripts(clientId) {
|
|
|
835
835
|
client: client.name,
|
|
836
836
|
key: scriptEndpoint,
|
|
837
837
|
operation: "POST",
|
|
838
|
-
scriptType: "
|
|
838
|
+
scriptType: "scriptEndpoint",
|
|
839
839
|
script
|
|
840
840
|
}
|
|
841
841
|
log.debug ('script found', usage);
|