@integry/sdk
v4.9.22
Published
Integry SDK
Maintainers
Readme
Integry SDK
Integry at a glance
Integry is an integration platform that provides integrations inside your app for your users. You can customize the look and feel of the integrations such that they appear just like your app. For example, your users can connect your app to Slack and send messages to Slack
What is this package for?
Use Integry SDK to embed integration creation experiences inside your app.
Install the SDK
# yarn
yarn add @integry/sdk
# npm
npm i @integry/sdkGet started and learn more using our documentation.
Activity meta passthrough (renderFunctionForm)
When is_activity: true is used with renderFunctionForm, the saved
json_schema.meta follows the standard function-style shape and only includes
activity fields for type, activity_type, endpoint_id, and session_id. For example:
{
"json_schema": {
"type": "function",
"function": { "name": "activities.send_message" }
},
"meta": {
"id": 55,
"version": "2024-04-01",
"name": "activities.send_message",
"title": "Send message",
"app_name": "Slack",
"app_icon_url": "https://...",
"type": "ACTIVITY",
"activity_type": "ACTION",
"endpoint_id": 77,
"session_id": "APP_OBJECT_{{id}}"
}
}