@smartytalent/openai-tools 0.4.11 → 0.5.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.
- package/dist/tools.json +86 -2
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -1679,6 +1679,72 @@
|
|
|
1679
1679
|
}
|
|
1680
1680
|
}
|
|
1681
1681
|
}
|
|
1682
|
+
},
|
|
1683
|
+
"relationships": {
|
|
1684
|
+
"title": "UserRelationshipsSchema",
|
|
1685
|
+
"type": "object",
|
|
1686
|
+
"properties": {
|
|
1687
|
+
"role": {
|
|
1688
|
+
"title": "UserRelationshipsRoleSchema",
|
|
1689
|
+
"type": "object",
|
|
1690
|
+
"properties": {
|
|
1691
|
+
"data": {
|
|
1692
|
+
"title": "UserRelationshipsRoleDataSchema",
|
|
1693
|
+
"type": "object",
|
|
1694
|
+
"properties": {
|
|
1695
|
+
"type": {
|
|
1696
|
+
"type": "string"
|
|
1697
|
+
},
|
|
1698
|
+
"id": {
|
|
1699
|
+
"type": "string"
|
|
1700
|
+
}
|
|
1701
|
+
}
|
|
1702
|
+
}
|
|
1703
|
+
}
|
|
1704
|
+
},
|
|
1705
|
+
"jobs": {
|
|
1706
|
+
"title": "UserRelationshipsJobsSchema",
|
|
1707
|
+
"type": "object",
|
|
1708
|
+
"properties": {
|
|
1709
|
+
"data": {
|
|
1710
|
+
"type": "array",
|
|
1711
|
+
"items": {
|
|
1712
|
+
"title": "UserRelationshipsJobsDataSchema",
|
|
1713
|
+
"type": "object",
|
|
1714
|
+
"properties": {
|
|
1715
|
+
"type": {
|
|
1716
|
+
"type": "string"
|
|
1717
|
+
},
|
|
1718
|
+
"id": {
|
|
1719
|
+
"type": "string"
|
|
1720
|
+
}
|
|
1721
|
+
}
|
|
1722
|
+
}
|
|
1723
|
+
}
|
|
1724
|
+
}
|
|
1725
|
+
},
|
|
1726
|
+
"apikeys": {
|
|
1727
|
+
"title": "UserRelationshipsApikeysSchema",
|
|
1728
|
+
"type": "object",
|
|
1729
|
+
"properties": {
|
|
1730
|
+
"data": {
|
|
1731
|
+
"type": "array",
|
|
1732
|
+
"items": {
|
|
1733
|
+
"title": "UserRelationshipsApikeysDataSchema",
|
|
1734
|
+
"type": "object",
|
|
1735
|
+
"properties": {
|
|
1736
|
+
"type": {
|
|
1737
|
+
"type": "string"
|
|
1738
|
+
},
|
|
1739
|
+
"id": {
|
|
1740
|
+
"type": "string"
|
|
1741
|
+
}
|
|
1742
|
+
}
|
|
1743
|
+
}
|
|
1744
|
+
}
|
|
1745
|
+
}
|
|
1746
|
+
}
|
|
1747
|
+
}
|
|
1682
1748
|
}
|
|
1683
1749
|
}
|
|
1684
1750
|
}
|
|
@@ -1693,7 +1759,16 @@
|
|
|
1693
1759
|
"description": "Delete User",
|
|
1694
1760
|
"parameters": {
|
|
1695
1761
|
"type": "object",
|
|
1696
|
-
"properties": {
|
|
1762
|
+
"properties": {
|
|
1763
|
+
"permanentDelete": {
|
|
1764
|
+
"type": "string",
|
|
1765
|
+
"description": "Set to true for permanent deletion (row, Cognito account and connection secrets removed). Defaults to false (soft delete: row archived + Cognito account disabled).",
|
|
1766
|
+
"enum": [
|
|
1767
|
+
"true",
|
|
1768
|
+
"false"
|
|
1769
|
+
]
|
|
1770
|
+
}
|
|
1771
|
+
}
|
|
1697
1772
|
}
|
|
1698
1773
|
}
|
|
1699
1774
|
},
|
|
@@ -2168,7 +2243,16 @@
|
|
|
2168
2243
|
"description": "Delete Role",
|
|
2169
2244
|
"parameters": {
|
|
2170
2245
|
"type": "object",
|
|
2171
|
-
"properties": {
|
|
2246
|
+
"properties": {
|
|
2247
|
+
"permanentDelete": {
|
|
2248
|
+
"type": "string",
|
|
2249
|
+
"description": "Set to true for permanent deletion (row removed). Defaults to false (soft delete: role archived).",
|
|
2250
|
+
"enum": [
|
|
2251
|
+
"true",
|
|
2252
|
+
"false"
|
|
2253
|
+
]
|
|
2254
|
+
}
|
|
2255
|
+
}
|
|
2172
2256
|
}
|
|
2173
2257
|
}
|
|
2174
2258
|
},
|