@amigo-ai/sdk 1.1.1 → 1.1.3
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/README.md +44 -30
- package/assets/readme/amigo-banner.png +0 -0
- package/assets/readme/classic-session-flow.svg +72 -0
- package/dist/platform.cjs +4 -0
- package/dist/platform.cjs.map +2 -2
- package/dist/platform.mjs +4 -0
- package/dist/platform.mjs.map +2 -2
- package/dist/types/generated/api-types.d.ts +1 -1
- package/dist/types/generated/platform-api-types.d.ts +25 -4
- package/dist/types/platform/index.d.ts +18 -2
- package/package.json +6 -1
package/dist/platform.mjs
CHANGED
|
@@ -1621,6 +1621,9 @@ function skillId(id) {
|
|
|
1621
1621
|
function integrationId(id) {
|
|
1622
1622
|
return id;
|
|
1623
1623
|
}
|
|
1624
|
+
function hsmId(id) {
|
|
1625
|
+
return id;
|
|
1626
|
+
}
|
|
1624
1627
|
function contextGraphId(id) {
|
|
1625
1628
|
return id;
|
|
1626
1629
|
}
|
|
@@ -1739,6 +1742,7 @@ export {
|
|
|
1739
1742
|
createPlatformFetch,
|
|
1740
1743
|
dataSourceId,
|
|
1741
1744
|
entityId,
|
|
1745
|
+
hsmId,
|
|
1742
1746
|
integrationId,
|
|
1743
1747
|
isAmigoError,
|
|
1744
1748
|
monitorConceptId,
|