@integry/sdk 3.6.7 → 3.6.8
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/CHANGELOG_INTERNAL.md +6 -0
- package/dist/esm/index.csm.d.ts +22 -0
- package/dist/esm/index.csm.js +1 -1
- package/dist/umd/index.umd.d.ts +22 -0
- package/dist/umd/index.umd.js +1 -1
- package/package.json +1 -1
package/dist/umd/index.umd.d.ts
CHANGED
|
@@ -129,6 +129,7 @@ type Authorization = {
|
|
|
129
129
|
integration_count?: number;
|
|
130
130
|
user_identity: string;
|
|
131
131
|
};
|
|
132
|
+
type TemplateType = Template;
|
|
132
133
|
type FlowCardProps = {
|
|
133
134
|
id: number | string;
|
|
134
135
|
imgUrl: string;
|
|
@@ -148,6 +149,7 @@ type FlowCardProps = {
|
|
|
148
149
|
newName: string;
|
|
149
150
|
}) => void;
|
|
150
151
|
dFlag?: string;
|
|
152
|
+
templateObj?: TemplateType | any;
|
|
151
153
|
};
|
|
152
154
|
interface NestedObject {
|
|
153
155
|
[key: string]: string | number | NestedObject;
|
|
@@ -196,6 +198,26 @@ interface ConfigWithObject extends SDKConfig {
|
|
|
196
198
|
interface ConfigWithUrlParams extends SDKConfig {
|
|
197
199
|
useUrlParams?: boolean;
|
|
198
200
|
}
|
|
201
|
+
interface Template {
|
|
202
|
+
id: number;
|
|
203
|
+
name: string;
|
|
204
|
+
description: string;
|
|
205
|
+
can_add_integration: boolean;
|
|
206
|
+
integration_count: number;
|
|
207
|
+
app: {
|
|
208
|
+
icon_url: string;
|
|
209
|
+
category: string[];
|
|
210
|
+
tags: string;
|
|
211
|
+
};
|
|
212
|
+
branding_app: {
|
|
213
|
+
id: string;
|
|
214
|
+
name: string;
|
|
215
|
+
icon_url: string;
|
|
216
|
+
category: string[];
|
|
217
|
+
tags: string;
|
|
218
|
+
};
|
|
219
|
+
is_manual?: boolean;
|
|
220
|
+
}
|
|
199
221
|
type App = {
|
|
200
222
|
id: number;
|
|
201
223
|
name: string;
|