@integry/sdk 3.2.6 → 3.2.7
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/esm/index.csm.d.ts +16 -1
- package/dist/esm/index.csm.js +1 -1
- package/dist/umd/index.umd.d.ts +5 -0
- package/dist/umd/index.umd.js +1 -1
- package/package.json +1 -1
package/dist/esm/index.csm.d.ts
CHANGED
|
@@ -195,6 +195,11 @@ type AuthorizationType = {
|
|
|
195
195
|
provider: string;
|
|
196
196
|
is_sandbox_enabled: boolean;
|
|
197
197
|
authorization_url_sandbox: string;
|
|
198
|
+
app: {
|
|
199
|
+
icon_url: string;
|
|
200
|
+
id: number;
|
|
201
|
+
name: string;
|
|
202
|
+
};
|
|
198
203
|
};
|
|
199
204
|
interface TemplateField {
|
|
200
205
|
id: number;
|
|
@@ -244,7 +249,17 @@ interface TemplateField {
|
|
|
244
249
|
app_user_data?: {
|
|
245
250
|
app_user: number;
|
|
246
251
|
id: number;
|
|
247
|
-
value: string
|
|
252
|
+
value: string
|
|
253
|
+
/**
|
|
254
|
+
* Render the template form we ship
|
|
255
|
+
* @param data
|
|
256
|
+
*/
|
|
257
|
+
|
|
|
258
|
+
/**
|
|
259
|
+
* Render the template form we ship
|
|
260
|
+
* @param data
|
|
261
|
+
*/
|
|
262
|
+
number;
|
|
248
263
|
is_changed: boolean;
|
|
249
264
|
changed_dynamic_fields: string;
|
|
250
265
|
}[];
|