@integry/sdk 4.0.1-beta.9 → 4.0.2-beta.1
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/umd/index.umd.d.ts
CHANGED
|
@@ -331,6 +331,7 @@ interface TemplateField {
|
|
|
331
331
|
is_editable: boolean;
|
|
332
332
|
allow_tags_in_text: boolean;
|
|
333
333
|
is_default_value_auto_mapped?: boolean;
|
|
334
|
+
source_flow_integration_invocation_url?: string;
|
|
334
335
|
}
|
|
335
336
|
interface TemplateStep {
|
|
336
337
|
id: number;
|
|
@@ -353,6 +354,7 @@ interface TemplateStep {
|
|
|
353
354
|
// step_condition: unknown | null;
|
|
354
355
|
machine_name: string | null;
|
|
355
356
|
is_custom_machine_name: boolean;
|
|
357
|
+
source_steps: any;
|
|
356
358
|
}
|
|
357
359
|
interface InitConfig {
|
|
358
360
|
containerId: string;
|
|
@@ -370,6 +372,8 @@ interface InitConfig {
|
|
|
370
372
|
deploymentIdFromConfig?: number;
|
|
371
373
|
testMultipurpose?: boolean;
|
|
372
374
|
viewStyle?: string;
|
|
375
|
+
flowId?: number;
|
|
376
|
+
integrationId?: number;
|
|
373
377
|
}
|
|
374
378
|
interface MarketplaceConfig {
|
|
375
379
|
containerId: string;
|
|
@@ -548,6 +552,7 @@ declare class IntegryJS {
|
|
|
548
552
|
}) => void;
|
|
549
553
|
verifyAuthConfig: () => Promise<{
|
|
550
554
|
config_verified: boolean;
|
|
555
|
+
meta: any;
|
|
551
556
|
} | null>;
|
|
552
557
|
/**
|
|
553
558
|
* Destroy SDK instance and cleanup store
|