@optiaxiom/proteus 0.2.3 → 0.2.4
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/dist/esm/schema/public-schema.json.js +46 -39
- package/dist/esm/schema/runtime-schema.json.js +45 -38
- package/dist/spec.d.ts +389 -396
- package/package.json +1 -1
|
@@ -4779,54 +4779,61 @@ var definitions = {
|
|
|
4779
4779
|
"const": "DataTable"
|
|
4780
4780
|
},
|
|
4781
4781
|
columns: {
|
|
4782
|
-
|
|
4783
|
-
|
|
4784
|
-
|
|
4785
|
-
|
|
4786
|
-
|
|
4787
|
-
|
|
4788
|
-
|
|
4789
|
-
|
|
4790
|
-
format: {
|
|
4791
|
-
anyOf: [
|
|
4792
|
-
{
|
|
4793
|
-
description: "Formatter name",
|
|
4782
|
+
anyOf: [
|
|
4783
|
+
{
|
|
4784
|
+
description: "Column definitions",
|
|
4785
|
+
items: {
|
|
4786
|
+
additionalProperties: false,
|
|
4787
|
+
properties: {
|
|
4788
|
+
accessorKey: {
|
|
4789
|
+
description: "Key in data objects",
|
|
4794
4790
|
type: "string"
|
|
4795
4791
|
},
|
|
4796
|
-
{
|
|
4797
|
-
|
|
4798
|
-
|
|
4799
|
-
|
|
4800
|
-
type: "object"
|
|
4801
|
-
},
|
|
4802
|
-
type: {
|
|
4792
|
+
format: {
|
|
4793
|
+
anyOf: [
|
|
4794
|
+
{
|
|
4795
|
+
description: "Formatter name",
|
|
4803
4796
|
type: "string"
|
|
4797
|
+
},
|
|
4798
|
+
{
|
|
4799
|
+
description: "Formatter with options",
|
|
4800
|
+
properties: {
|
|
4801
|
+
options: {
|
|
4802
|
+
type: "object"
|
|
4803
|
+
},
|
|
4804
|
+
type: {
|
|
4805
|
+
type: "string"
|
|
4806
|
+
}
|
|
4807
|
+
},
|
|
4808
|
+
required: [
|
|
4809
|
+
"type"
|
|
4810
|
+
],
|
|
4811
|
+
type: "object"
|
|
4804
4812
|
}
|
|
4805
|
-
},
|
|
4806
|
-
required: [
|
|
4807
|
-
"type"
|
|
4808
4813
|
],
|
|
4809
|
-
|
|
4814
|
+
description: "Format to apply to cell values (e.g. 'Number', 'DateTime')"
|
|
4815
|
+
},
|
|
4816
|
+
header: {
|
|
4817
|
+
description: "Column header text",
|
|
4818
|
+
type: "string"
|
|
4819
|
+
},
|
|
4820
|
+
size: {
|
|
4821
|
+
description: "Column size",
|
|
4822
|
+
type: "number"
|
|
4810
4823
|
}
|
|
4824
|
+
},
|
|
4825
|
+
required: [
|
|
4826
|
+
"accessorKey",
|
|
4827
|
+
"header"
|
|
4811
4828
|
],
|
|
4812
|
-
|
|
4813
|
-
},
|
|
4814
|
-
header: {
|
|
4815
|
-
description: "Column header text",
|
|
4816
|
-
type: "string"
|
|
4829
|
+
type: "object"
|
|
4817
4830
|
},
|
|
4818
|
-
|
|
4819
|
-
description: "Column size",
|
|
4820
|
-
type: "number"
|
|
4821
|
-
}
|
|
4831
|
+
type: "array"
|
|
4822
4832
|
},
|
|
4823
|
-
|
|
4824
|
-
"
|
|
4825
|
-
|
|
4826
|
-
|
|
4827
|
-
type: "object"
|
|
4828
|
-
},
|
|
4829
|
-
type: "array"
|
|
4833
|
+
{
|
|
4834
|
+
$ref: "#/definitions/ProteusExpression"
|
|
4835
|
+
}
|
|
4836
|
+
]
|
|
4830
4837
|
},
|
|
4831
4838
|
data: {
|
|
4832
4839
|
anyOf: [
|
|
@@ -4750,53 +4750,60 @@ var definitions = {
|
|
|
4750
4750
|
"const": "DataTable"
|
|
4751
4751
|
},
|
|
4752
4752
|
columns: {
|
|
4753
|
-
|
|
4754
|
-
|
|
4755
|
-
|
|
4756
|
-
|
|
4757
|
-
|
|
4758
|
-
|
|
4759
|
-
|
|
4760
|
-
format: {
|
|
4761
|
-
anyOf: [
|
|
4762
|
-
{
|
|
4763
|
-
description: "Formatter name",
|
|
4753
|
+
anyOf: [
|
|
4754
|
+
{
|
|
4755
|
+
description: "Column definitions",
|
|
4756
|
+
items: {
|
|
4757
|
+
properties: {
|
|
4758
|
+
accessorKey: {
|
|
4759
|
+
description: "Key in data objects",
|
|
4764
4760
|
type: "string"
|
|
4765
4761
|
},
|
|
4766
|
-
{
|
|
4767
|
-
|
|
4768
|
-
|
|
4769
|
-
|
|
4770
|
-
type: "object"
|
|
4771
|
-
},
|
|
4772
|
-
type: {
|
|
4762
|
+
format: {
|
|
4763
|
+
anyOf: [
|
|
4764
|
+
{
|
|
4765
|
+
description: "Formatter name",
|
|
4773
4766
|
type: "string"
|
|
4767
|
+
},
|
|
4768
|
+
{
|
|
4769
|
+
description: "Formatter with options",
|
|
4770
|
+
properties: {
|
|
4771
|
+
options: {
|
|
4772
|
+
type: "object"
|
|
4773
|
+
},
|
|
4774
|
+
type: {
|
|
4775
|
+
type: "string"
|
|
4776
|
+
}
|
|
4777
|
+
},
|
|
4778
|
+
required: [
|
|
4779
|
+
"type"
|
|
4780
|
+
],
|
|
4781
|
+
type: "object"
|
|
4774
4782
|
}
|
|
4775
|
-
},
|
|
4776
|
-
required: [
|
|
4777
|
-
"type"
|
|
4778
4783
|
],
|
|
4779
|
-
|
|
4784
|
+
description: "Format to apply to cell values (e.g. 'Number', 'DateTime')"
|
|
4785
|
+
},
|
|
4786
|
+
header: {
|
|
4787
|
+
description: "Column header text",
|
|
4788
|
+
type: "string"
|
|
4789
|
+
},
|
|
4790
|
+
size: {
|
|
4791
|
+
description: "Column size",
|
|
4792
|
+
type: "number"
|
|
4780
4793
|
}
|
|
4794
|
+
},
|
|
4795
|
+
required: [
|
|
4796
|
+
"accessorKey",
|
|
4797
|
+
"header"
|
|
4781
4798
|
],
|
|
4782
|
-
|
|
4783
|
-
},
|
|
4784
|
-
header: {
|
|
4785
|
-
description: "Column header text",
|
|
4786
|
-
type: "string"
|
|
4799
|
+
type: "object"
|
|
4787
4800
|
},
|
|
4788
|
-
|
|
4789
|
-
description: "Column size",
|
|
4790
|
-
type: "number"
|
|
4791
|
-
}
|
|
4801
|
+
type: "array"
|
|
4792
4802
|
},
|
|
4793
|
-
|
|
4794
|
-
"
|
|
4795
|
-
|
|
4796
|
-
|
|
4797
|
-
type: "object"
|
|
4798
|
-
},
|
|
4799
|
-
type: "array"
|
|
4803
|
+
{
|
|
4804
|
+
$ref: "#/definitions/ProteusExpression"
|
|
4805
|
+
}
|
|
4806
|
+
]
|
|
4800
4807
|
},
|
|
4801
4808
|
data: {
|
|
4802
4809
|
anyOf: [
|