lucid-extension-sdk 0.0.428 → 0.0.429
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/commandtypes.d.ts
CHANGED
|
@@ -1015,6 +1015,8 @@ export type AddSpreadsheetIntegrationQuery = {
|
|
|
1015
1015
|
/** Dark Icon URl */
|
|
1016
1016
|
'di'?: string;
|
|
1017
1017
|
} | undefined;
|
|
1018
|
+
/** importDescription */
|
|
1019
|
+
'id'?: string | undefined;
|
|
1018
1020
|
/** addCardsIntegration */
|
|
1019
1021
|
'c'?: boolean;
|
|
1020
1022
|
/** getUpstreamSourceUrl */
|
|
@@ -73,6 +73,10 @@ export declare abstract class LucidSpreadsheetIntegration {
|
|
|
73
73
|
*/
|
|
74
74
|
darkIconUrl?: string;
|
|
75
75
|
};
|
|
76
|
+
/**
|
|
77
|
+
* Subtext to show for this import option in the import modal
|
|
78
|
+
*/
|
|
79
|
+
importDescription?: string;
|
|
76
80
|
abstract dataConnectorName: string;
|
|
77
81
|
addCardsIntegration: boolean;
|
|
78
82
|
abstract configChooser: ListChooser | CustomDetailsChooser;
|
|
@@ -94,6 +94,9 @@ class LucidSpreadsheetIntegrationRegistry {
|
|
|
94
94
|
'di': spreadsheetIntegration.iconConfiguration.darkIconUrl,
|
|
95
95
|
};
|
|
96
96
|
}
|
|
97
|
+
if (spreadsheetIntegration.importDescription) {
|
|
98
|
+
serialized['id'] = spreadsheetIntegration.importDescription;
|
|
99
|
+
}
|
|
97
100
|
if (spreadsheetIntegration.addCard) {
|
|
98
101
|
const addCard = spreadsheetIntegration.addCard;
|
|
99
102
|
serialized['ac'] = {
|