@integry/sdk 3.0.0 → 3.0.4

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 CHANGED
@@ -1,29 +1,21 @@
1
- # README #
1
+ # Integry SDK
2
2
 
3
- This README would normally document whatever steps are necessary to get your application up and running.
3
+ ### Integry at a glance
4
4
 
5
- ### What is this repository for? ###
5
+ 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
6
6
 
7
- * Quick summary
8
- * Version
9
- * [Learn Markdown](https://bitbucket.org/tutorials/markdowndemo)
7
+ ### What is this package for?
10
8
 
11
- ### How do I get set up? ###
9
+ Use Integry SDK to embed integration creation experiences inside your app.
12
10
 
13
- * Summary of set up
14
- * Configuration
15
- * Dependencies
16
- * Database configuration
17
- * How to run tests
18
- * Deployment instructions
11
+ ### Install the SDK
19
12
 
20
- ### Contribution guidelines ###
13
+ ```shell
14
+ # yarn
15
+ yarn add @integry/sdk
21
16
 
22
- * Writing tests
23
- * Code review
24
- * Other guidelines
17
+ # npm
18
+ npm i @integry/sdk
19
+ ```
25
20
 
26
- ### Who do I talk to? ###
27
-
28
- * Repo owner or admin
29
- * Other community or team contact
21
+ Get started and learn more using our [documentation.](https://sdk.integry.io)
@@ -21,6 +21,7 @@ type IntegrySDKEvents = {
21
21
  name: string;
22
22
  templateId: number;
23
23
  status: string;
24
+ callbackUrl: string | null;
24
25
  }) => void;
25
26
  "did-load-preview": (data: {
26
27
  templateId: number;