2021-10-15 09:31:13 +00:00
|
|
|
/**
|
|
|
|
* This module was automatically generated by `ts-interface-builder`
|
|
|
|
*/
|
|
|
|
import * as t from "ts-interface-checker";
|
|
|
|
// tslint:disable:object-literal-key-quotes
|
|
|
|
|
|
|
|
export const GristObjCode = t.enumtype({
|
|
|
|
"List": "L",
|
2021-11-09 12:11:37 +00:00
|
|
|
"LookUp": "l",
|
2021-10-15 09:31:13 +00:00
|
|
|
"Dict": "O",
|
|
|
|
"DateTime": "D",
|
|
|
|
"Date": "d",
|
|
|
|
"Skip": "S",
|
|
|
|
"Censored": "C",
|
|
|
|
"Reference": "R",
|
|
|
|
"ReferenceList": "r",
|
|
|
|
"Exception": "E",
|
|
|
|
"Pending": "P",
|
|
|
|
"Unmarshallable": "U",
|
|
|
|
"Versions": "V",
|
|
|
|
});
|
|
|
|
|
|
|
|
export const CellValue = t.union("number", "string", "boolean", "null", t.tuple("GristObjCode", t.rest(t.array("unknown"))));
|
|
|
|
|
2022-03-15 14:35:15 +00:00
|
|
|
export const BulkColValues = t.iface([], {
|
|
|
|
[t.indexKey]: t.array("CellValue"),
|
|
|
|
});
|
|
|
|
|
2021-10-15 09:31:13 +00:00
|
|
|
export const RowRecord = t.iface([], {
|
|
|
|
"id": "number",
|
|
|
|
[t.indexKey]: "CellValue",
|
|
|
|
});
|
|
|
|
|
2022-05-24 20:22:41 +00:00
|
|
|
export const RowRecords = t.iface([], {
|
|
|
|
"id": t.array("number"),
|
|
|
|
[t.indexKey]: t.array("CellValue"),
|
|
|
|
});
|
|
|
|
|
2022-02-08 15:23:14 +00:00
|
|
|
export const GristType = t.union(t.lit('Any'), t.lit('Attachments'), t.lit('Blob'), t.lit('Bool'), t.lit('Choice'), t.lit('ChoiceList'), t.lit('Date'), t.lit('DateTime'), t.lit('Id'), t.lit('Int'), t.lit('ManualSortPos'), t.lit('Numeric'), t.lit('PositionNumber'), t.lit('Ref'), t.lit('RefList'), t.lit('Text'));
|
|
|
|
|
2021-10-15 09:31:13 +00:00
|
|
|
const exportedTypeSuite: t.ITypeSuite = {
|
|
|
|
GristObjCode,
|
|
|
|
CellValue,
|
2022-03-15 14:35:15 +00:00
|
|
|
BulkColValues,
|
2021-10-15 09:31:13 +00:00
|
|
|
RowRecord,
|
2022-05-24 20:22:41 +00:00
|
|
|
RowRecords,
|
2022-02-08 15:23:14 +00:00
|
|
|
GristType,
|
2021-10-15 09:31:13 +00:00
|
|
|
};
|
|
|
|
export default exportedTypeSuite;
|