lucid-extension-sdk 0.0.243 → 0.0.245
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
|
@@ -20,7 +20,9 @@ import { PanelLocation } from './ui/panel';
|
|
|
20
20
|
*
|
|
21
21
|
* To use these directly, use [EditorClient.sendCommand](#classes_editorclient-EditorClient_sendcommand).
|
|
22
22
|
*
|
|
23
|
-
*
|
|
23
|
+
* FOR DEVELOPERS AT LUCID:
|
|
24
|
+
* Follow this guide to add new commands: https://lucidatlassian.atlassian.net/wiki/x/3AA3Xww
|
|
25
|
+
* Before you add a new command bring it up in #api-committee to get feedback.
|
|
24
26
|
*/
|
|
25
27
|
export declare const enum CommandName {
|
|
26
28
|
AddCardIntegration = "aci",
|
|
@@ -11,8 +11,6 @@ export declare enum LucidSpreadsheetIntegrationFailureType {
|
|
|
11
11
|
export declare const lucidSpreadsheetIntegrationFailureTypeValidator: (x: unknown) => x is LucidSpreadsheetIntegrationFailureType;
|
|
12
12
|
/** @ignore until spreadsheet integration is ready for launch (CHART-51946) */
|
|
13
13
|
export type ImportedResults = {
|
|
14
|
-
'dataSourceId': string;
|
|
15
|
-
'syncDataSourceId': string;
|
|
16
14
|
'upstreamConfig': SerializedUpstreamConfig;
|
|
17
15
|
'collections': {
|
|
18
16
|
'collectionId': string;
|
|
@@ -16,8 +16,6 @@ var LucidSpreadsheetIntegrationFailureType;
|
|
|
16
16
|
/** @ignore until spreadsheet integration is ready for launch (CHART-51946) */
|
|
17
17
|
exports.lucidSpreadsheetIntegrationFailureTypeValidator = (0, validators_1.stringEnumValidator)(LucidSpreadsheetIntegrationFailureType);
|
|
18
18
|
exports.isImportedResults = (0, validators_1.strictObjectValidator)({
|
|
19
|
-
'dataSourceId': checks_1.isString,
|
|
20
|
-
'syncDataSourceId': checks_1.isString,
|
|
21
19
|
'upstreamConfig': serializedupstreamconfig_1.isSerializedUpstreamConfig,
|
|
22
20
|
'collections': (0, validators_1.arrayValidator)((0, validators_1.strictObjectValidator)({
|
|
23
21
|
'collectionId': checks_1.isString,
|