lucid-extension-sdk 0.0.91 → 0.0.93
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/package.json
CHANGED
package/sdk/commandtypes.d.ts
CHANGED
|
@@ -475,10 +475,10 @@ export declare type AddCardIntegrationQuery = {
|
|
|
475
475
|
/** Callback to get field definitions for all fields supported by the card integration */
|
|
476
476
|
'gf': string;
|
|
477
477
|
/** Callback to handle a change in the fields the user want to be displayed */
|
|
478
|
-
'osfc'?: string;
|
|
478
|
+
'osfc'?: string | undefined;
|
|
479
479
|
};
|
|
480
480
|
/** Show intro if user has not yet authorized this integration */
|
|
481
|
-
'i'?: string;
|
|
481
|
+
'i'?: string | undefined;
|
|
482
482
|
/** Get default config action */
|
|
483
483
|
'gdc': string;
|
|
484
484
|
/** If specified, import modal settings */
|
|
@@ -489,7 +489,7 @@ export declare type AddCardIntegrationQuery = {
|
|
|
489
489
|
's': string;
|
|
490
490
|
/** Import action */
|
|
491
491
|
'i': string;
|
|
492
|
-
};
|
|
492
|
+
} | undefined;
|
|
493
493
|
/** If specified, add-card settings */
|
|
494
494
|
'ac'?: {
|
|
495
495
|
/** Get input fields action */
|
|
@@ -5,14 +5,14 @@ export declare const FlattenedReferenceKeyName = "192d0e9f-2f5a-4032-9f03-59bbf1
|
|
|
5
5
|
export interface SerializedReferenceKey {
|
|
6
6
|
'cid': string;
|
|
7
7
|
'pk': string;
|
|
8
|
-
'wl'?: string[];
|
|
9
|
-
'ro'?: boolean;
|
|
8
|
+
'wl'?: string[] | undefined;
|
|
9
|
+
'ro'?: boolean | undefined;
|
|
10
10
|
'f'?: {
|
|
11
11
|
'ts': number;
|
|
12
12
|
'pd': TypedSerializedFlattenedReference;
|
|
13
13
|
'md'?: SerializedFields;
|
|
14
14
|
'e'?: string;
|
|
15
|
-
};
|
|
15
|
+
} | undefined;
|
|
16
16
|
}
|
|
17
17
|
export declare type TypedSerializedFlattenedReference = {
|
|
18
18
|
'sc': SerializedSchema;
|
|
@@ -5,5 +5,5 @@ export declare type SerializedLabelOverrides = {
|
|
|
5
5
|
export declare type SerializedSchema = {
|
|
6
6
|
'Fields': SerializedFieldDefinition[];
|
|
7
7
|
'PrimaryKey': string[];
|
|
8
|
-
'FieldLabelOverrides'?: SerializedLabelOverrides;
|
|
8
|
+
'FieldLabelOverrides'?: SerializedLabelOverrides | undefined;
|
|
9
9
|
};
|
|
@@ -55,9 +55,6 @@ export declare const isValidUnfurlDetails: (subject: unknown) => subject is impo
|
|
|
55
55
|
Thumbnails: (x: unknown) => x is import("../guards").DestructureGuardedTypeObj<{
|
|
56
56
|
url: typeof isString;
|
|
57
57
|
width: (x: unknown) => x is number | null | undefined;
|
|
58
|
-
/**
|
|
59
|
-
* The title associated with the link being unfurled. For example, the document or web page title.
|
|
60
|
-
*/
|
|
61
58
|
height: (x: unknown) => x is number | null | undefined;
|
|
62
59
|
}>[] | undefined;
|
|
63
60
|
PreviewImageUrl: (x: unknown) => x is string | undefined;
|
|
@@ -10,11 +10,11 @@ export interface UnfurlThumbnail {
|
|
|
10
10
|
/**
|
|
11
11
|
* The width of the image. This is not the height it will be displayed at, but rather the width the image actually is.
|
|
12
12
|
*/
|
|
13
|
-
width?: number;
|
|
13
|
+
width?: number | undefined;
|
|
14
14
|
/**
|
|
15
15
|
* The height of the image. This is not the height it will be displayed at, but rather the height the image actually is.
|
|
16
16
|
*/
|
|
17
|
-
height?: number;
|
|
17
|
+
height?: number | undefined;
|
|
18
18
|
}
|
|
19
19
|
/** @ignore */
|
|
20
20
|
export interface SerializedUnfurlThumbnail {
|