@integry/sdk 3.7.2 → 3.7.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/dist/esm/index.csm.d.ts
CHANGED
|
@@ -175,6 +175,7 @@ interface UserConfig {
|
|
|
175
175
|
marketplaceModalTitle?: string;
|
|
176
176
|
buttonLabelToSaveIntegration?: string;
|
|
177
177
|
objects?: NestedObject;
|
|
178
|
+
tags?: string[];
|
|
178
179
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
179
180
|
[other: string]: any;
|
|
180
181
|
}
|
|
@@ -314,7 +315,13 @@ interface TemplateField {
|
|
|
314
315
|
app_user: number;
|
|
315
316
|
id: number;
|
|
316
317
|
value: string | number;
|
|
317
|
-
is_changed: boolean
|
|
318
|
+
is_changed: boolean /**
|
|
319
|
+
* Render the template form we ship
|
|
320
|
+
* @param data
|
|
321
|
+
*/; /**
|
|
322
|
+
* Render the template form we ship
|
|
323
|
+
* @param data
|
|
324
|
+
*/
|
|
318
325
|
changed_dynamic_fields: string;
|
|
319
326
|
}[];
|
|
320
327
|
added_in_mapping?: boolean;
|
|
@@ -501,7 +508,7 @@ declare class IntegryJS {
|
|
|
501
508
|
renderMarketplace: (marketplaceConfig: MarketplaceConfig) => void;
|
|
502
509
|
renderAppFlows: (appFlowConfig: InitConfig) => void;
|
|
503
510
|
verifyAuthConfig: () => Promise<{
|
|
504
|
-
config_verified: boolean;
|
|
511
|
+
config_verified: boolean;
|
|
505
512
|
} | null>;
|
|
506
513
|
/**
|
|
507
514
|
* Destroy SDK instance and cleanup store
|