lucid-extension-sdk 0.0.108 → 0.0.110
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 +1 -1
- package/sdk/core/data/datasource/importedtempdatasource.d.ts +24 -0
- package/sdk/core/data/datasource/importedtempdatasource.js +2 -0
- package/sdk/core/data/datasource/metadatatypes.d.ts +8 -0
- package/sdk/core/data/datasource/metadatatypes.js +14 -0
- package/sdk/core/data/fieldtypedefinition/semantickind.d.ts +1 -0
- package/sdk/core/data/fieldtypedefinition/semantickind.js +1 -0
- package/sdk/index.d.ts +7 -0
- package/sdk/index.js +7 -0
package/package.json
CHANGED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { SerializedDataItems } from '../serializedfield/serializeddataitems';
|
|
2
|
+
import { SerializedSchema } from '../serializedfield/serializedschema';
|
|
3
|
+
import { SerializedDataSourceProperties } from './serializeddatasourceproperties';
|
|
4
|
+
/** @ignore until spreadsheet integration is ready for launch */
|
|
5
|
+
export interface ImportedTempMetadataCollection {
|
|
6
|
+
name: string;
|
|
7
|
+
schema: SerializedSchema;
|
|
8
|
+
items: SerializedDataItems;
|
|
9
|
+
}
|
|
10
|
+
/** @ignore until spreadsheet integration is ready for launch */
|
|
11
|
+
export interface ImportedTempCollection {
|
|
12
|
+
name: string;
|
|
13
|
+
schema: SerializedSchema;
|
|
14
|
+
items: SerializedDataItems;
|
|
15
|
+
upstreamConfig: {
|
|
16
|
+
[key: string]: any;
|
|
17
|
+
};
|
|
18
|
+
metadata: Map<string, ImportedTempMetadataCollection>;
|
|
19
|
+
}
|
|
20
|
+
/** @ignore until spreadsheet integration is ready for launch */
|
|
21
|
+
export interface ImportedTempDataSource {
|
|
22
|
+
properties: SerializedDataSourceProperties;
|
|
23
|
+
collections: Map<string, ImportedTempCollection>;
|
|
24
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.MetadataTypes = void 0;
|
|
4
|
+
// Google Sheets has both notes and comments, we store notes in the comment metadata collection. Comments are not
|
|
5
|
+
// meant to be permanent in Google Sheets whereas they are in Excel, resulting in some confusion with our naming.
|
|
6
|
+
/** @ignore until spreadsheet integration is ready for launch */
|
|
7
|
+
var MetadataTypes;
|
|
8
|
+
(function (MetadataTypes) {
|
|
9
|
+
MetadataTypes["Format"] = "Format";
|
|
10
|
+
MetadataTypes["FillColor"] = "FillColor";
|
|
11
|
+
MetadataTypes["TextColor"] = "TextColor";
|
|
12
|
+
MetadataTypes["Comment"] = "Comment";
|
|
13
|
+
MetadataTypes["Formula"] = "Formula";
|
|
14
|
+
})(MetadataTypes = exports.MetadataTypes || (exports.MetadataTypes = {}));
|
|
@@ -12,6 +12,7 @@ var SemanticKind;
|
|
|
12
12
|
SemanticKind["Assignee"] = "assignee";
|
|
13
13
|
SemanticKind["Estimate"] = "estimate";
|
|
14
14
|
SemanticKind["Status"] = "status";
|
|
15
|
+
SemanticKind["IssueType"] = "issuetype";
|
|
15
16
|
SemanticKind["StartTime"] = "starttime";
|
|
16
17
|
SemanticKind["EndTime"] = "endtime";
|
|
17
18
|
SemanticKind["GroupByHint"] = "groupbyhint";
|
package/sdk/index.d.ts
CHANGED
|
@@ -6,6 +6,13 @@ export * from './core/cardintegration/cardintegrationdefinitions';
|
|
|
6
6
|
export * from './core/cardintegration/lucidcardintegration';
|
|
7
7
|
export * from './core/cardintegration/lucidcardintegrationregistry';
|
|
8
8
|
export * from './core/checks';
|
|
9
|
+
export * from './core/data/datasource/datasourcetype';
|
|
10
|
+
export * from './core/data/datasource/importedtempdatasource';
|
|
11
|
+
export * from './core/data/datasource/metadatatypes';
|
|
12
|
+
export * from './core/data/datasource/serializeddatasourceproperties';
|
|
13
|
+
export * from './core/data/datasource/serializedupstreamconfig';
|
|
14
|
+
export * from './core/data/datasource/upstreampatchtype';
|
|
15
|
+
export * from './core/data/datasource/upstreamupdatetype';
|
|
9
16
|
export * from './core/data/fieldspecification';
|
|
10
17
|
export * from './core/data/fieldtypedefinition/basefieldtypedefinition';
|
|
11
18
|
export * from './core/data/fieldtypedefinition/collectionenumfieldtype';
|
package/sdk/index.js
CHANGED
|
@@ -22,6 +22,13 @@ __exportStar(require("./core/cardintegration/cardintegrationdefinitions"), expor
|
|
|
22
22
|
__exportStar(require("./core/cardintegration/lucidcardintegration"), exports);
|
|
23
23
|
__exportStar(require("./core/cardintegration/lucidcardintegrationregistry"), exports);
|
|
24
24
|
__exportStar(require("./core/checks"), exports);
|
|
25
|
+
__exportStar(require("./core/data/datasource/datasourcetype"), exports);
|
|
26
|
+
__exportStar(require("./core/data/datasource/importedtempdatasource"), exports);
|
|
27
|
+
__exportStar(require("./core/data/datasource/metadatatypes"), exports);
|
|
28
|
+
__exportStar(require("./core/data/datasource/serializeddatasourceproperties"), exports);
|
|
29
|
+
__exportStar(require("./core/data/datasource/serializedupstreamconfig"), exports);
|
|
30
|
+
__exportStar(require("./core/data/datasource/upstreampatchtype"), exports);
|
|
31
|
+
__exportStar(require("./core/data/datasource/upstreamupdatetype"), exports);
|
|
25
32
|
__exportStar(require("./core/data/fieldspecification"), exports);
|
|
26
33
|
__exportStar(require("./core/data/fieldtypedefinition/basefieldtypedefinition"), exports);
|
|
27
34
|
__exportStar(require("./core/data/fieldtypedefinition/collectionenumfieldtype"), exports);
|