@integry/sdk 4.0.0-beta.9 → 4.0.1-beta.10
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/LICENSE +1 -1
- package/dist/esm/index.csm.d.ts +39 -7
- package/dist/esm/index.csm.js +2 -2
- package/dist/umd/index.umd.d.ts +38 -0
- package/dist/umd/index.umd.js +2 -2
- package/package.json +5 -4
package/LICENSE
CHANGED
package/dist/esm/index.csm.d.ts
CHANGED
|
@@ -322,13 +322,7 @@ interface TemplateField {
|
|
|
322
322
|
app_user_data?: {
|
|
323
323
|
app_user: number;
|
|
324
324
|
id: number;
|
|
325
|
-
value: string
|
|
326
|
-
* Render the template form we ship
|
|
327
|
-
* @param data
|
|
328
|
-
*/ | /**
|
|
329
|
-
* Render the template form we ship
|
|
330
|
-
* @param data
|
|
331
|
-
*/ number;
|
|
325
|
+
value: string | number;
|
|
332
326
|
is_changed: boolean;
|
|
333
327
|
changed_dynamic_fields: string;
|
|
334
328
|
}[];
|
|
@@ -343,6 +337,7 @@ interface TemplateStep {
|
|
|
343
337
|
id: number;
|
|
344
338
|
weight: number;
|
|
345
339
|
title: string;
|
|
340
|
+
description?: string;
|
|
346
341
|
is_visible: boolean;
|
|
347
342
|
activity: Activity;
|
|
348
343
|
authorization_type: AuthorizationType;
|
|
@@ -415,6 +410,38 @@ interface Instance {
|
|
|
415
410
|
first_error_received_at: string;
|
|
416
411
|
usage_limit_reached_at: string;
|
|
417
412
|
}
|
|
413
|
+
interface MultipurposeFieldType {
|
|
414
|
+
activityOutputData: NestedObject;
|
|
415
|
+
activityOutputDataRaw?: NestedObject;
|
|
416
|
+
title: string;
|
|
417
|
+
description: string;
|
|
418
|
+
placeholder: string;
|
|
419
|
+
value?: string;
|
|
420
|
+
regex?: string | null;
|
|
421
|
+
regexErrorMessage?: string | null;
|
|
422
|
+
isRequired?: boolean;
|
|
423
|
+
showStepValidation?: boolean;
|
|
424
|
+
onChange?: (val: string, passesRegexTest?: boolean) => void;
|
|
425
|
+
isReadOnly?: boolean;
|
|
426
|
+
isChanged?: boolean;
|
|
427
|
+
className?: string;
|
|
428
|
+
containerClass: string;
|
|
429
|
+
type: string;
|
|
430
|
+
key: string;
|
|
431
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
432
|
+
apiHandler?: any;
|
|
433
|
+
isSearchable: boolean;
|
|
434
|
+
endpointUrl: string;
|
|
435
|
+
isDynamic: boolean;
|
|
436
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
437
|
+
endpointData?: any;
|
|
438
|
+
skipOptionFetch: boolean;
|
|
439
|
+
isMappable?: boolean;
|
|
440
|
+
accountConnected?: boolean;
|
|
441
|
+
isEditable?: boolean;
|
|
442
|
+
allowTagsInText?: boolean;
|
|
443
|
+
hideTabs?: boolean;
|
|
444
|
+
}
|
|
418
445
|
/**
|
|
419
446
|
*
|
|
420
447
|
* @param key Key to sign hash
|
|
@@ -489,6 +516,7 @@ declare class IntegryJS {
|
|
|
489
516
|
integrationId?: number;
|
|
490
517
|
flowContainerId: string;
|
|
491
518
|
versionId?: number;
|
|
519
|
+
viewStyle?: string;
|
|
492
520
|
}) => void;
|
|
493
521
|
/**
|
|
494
522
|
* Render the template form we ship
|
|
@@ -523,6 +551,10 @@ declare class IntegryJS {
|
|
|
523
551
|
*/
|
|
524
552
|
renderMarketplace: (marketplaceConfig: MarketplaceConfig) => void;
|
|
525
553
|
renderAppFlows: (appFlowConfig: InitConfig) => void;
|
|
554
|
+
renderMultipurposeField: ({ containerId, multipurposeFieldProps, }: {
|
|
555
|
+
containerId: string;
|
|
556
|
+
multipurposeFieldProps: MultipurposeFieldType;
|
|
557
|
+
}) => void;
|
|
526
558
|
verifyAuthConfig: () => Promise<{
|
|
527
559
|
config_verified: boolean;
|
|
528
560
|
} | null>;
|