@milaboratories/milaboratories.monetization-test.model 1.0.17 → 1.0.19

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.
@@ -1,16 +1,16 @@
1
1
   WARN  Issue while reading "/home/runner/_work/platforma/platforma/.npmrc". Failed to replace env in config: ${NPMJS_TOKEN}
2
2
 
3
- > @milaboratories/milaboratories.monetization-test.model@1.0.17 build /home/runner/_work/platforma/platforma/etc/blocks/monetization-test/model
3
+ > @milaboratories/milaboratories.monetization-test.model@1.0.19 build /home/runner/_work/platforma/platforma/etc/blocks/monetization-test/model
4
4
  > ts-builder build --target block-model && block-tools build-model
5
5
 
6
6
  Building block-model project...
7
7
  ↳ rollup -c /configs/rollup.block-model.config.js
8
8
  
9
9
  ./src/index.ts → dist, dist...
10
- created dist, dist in 1.9s
10
+ created dist, dist in 4.3s
11
11
  
12
12
  ./src/index.ts → dist...
13
13
  (!) Circular dependency
14
14
  ../../../../sdk/model/dist/components/PFrameForGraphs.js -> ../../../../sdk/model/dist/components/PlDataTable.js -> ../../../../sdk/model/dist/components/PFrameForGraphs.js
15
- created dist in 1.8s
15
+ created dist in 3.7s
16
16
  Build completed successfully
@@ -1,6 +1,6 @@
1
1
   WARN  Issue while reading "/home/runner/_work/platforma/platforma/.npmrc". Failed to replace env in config: ${NPMJS_TOKEN}
2
2
 
3
- > @milaboratories/milaboratories.monetization-test.model@1.0.17 type-check /home/runner/_work/platforma/platforma/etc/blocks/monetization-test/model
3
+ > @milaboratories/milaboratories.monetization-test.model@1.0.19 type-check /home/runner/_work/platforma/platforma/etc/blocks/monetization-test/model
4
4
  > ts-builder types --target block-model
5
5
 
6
6
  ↳ tsc --noEmit --project ./tsconfig.json
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @milaboratories/milaboratories.monetization-test.model
2
2
 
3
+ ## 1.0.19
4
+
5
+ ### Patch Changes
6
+
7
+ - @platforma-sdk/model@1.44.1
8
+
9
+ ## 1.0.18
10
+
11
+ ### Patch Changes
12
+
13
+ - @platforma-sdk/model@1.43.29
14
+
3
15
  ## 1.0.17
4
16
 
5
17
  ### Patch Changes
package/dist/bundle.js CHANGED
@@ -4572,14 +4572,27 @@
4572
4572
  const Annotation = {
4573
4573
  DiscreteValues: 'pl7.app/discreteValues',
4574
4574
  Graph: {
4575
+ Axis: {
4576
+ HighCardinality: 'pl7.app/graph/axis/highCardinality',
4577
+ LowerLimit: 'pl7.app/graph/axis/lowerLimit',
4578
+ SymmetricRange: 'pl7.app/graph/axis/symmetricRange',
4579
+ UpperLimit: 'pl7.app/graph/axis/upperLimit',
4580
+ },
4581
+ IsDenseAxis: 'pl7.app/graph/isDenseAxis',
4575
4582
  IsVirtual: 'pl7.app/graph/isVirtual',
4583
+ Palette: 'pl7.app/graph/palette',
4584
+ Thresholds: 'pl7.app/graph/thresholds',
4585
+ TreatAbsentValuesAs: 'pl7.app/graph/treatAbsentValuesAs',
4576
4586
  },
4577
4587
  HideDataFromUi: 'pl7.app/hideDataFromUi',
4578
4588
  HideDataFromGraphs: 'pl7.app/hideDataFromGraphs',
4589
+ IsDiscreteFilter: 'pl7.app/isDiscreteFilter',
4579
4590
  IsLinkerColumn: 'pl7.app/isLinkerColumn',
4591
+ IsSubset: 'pl7.app/isSubset',
4580
4592
  Label: 'pl7.app/label',
4581
4593
  Max: 'pl7.app/max',
4582
4594
  Min: 'pl7.app/min',
4595
+ MultipliesBy: 'pl7.app/multipliesBy',
4583
4596
  Parents: 'pl7.app/parents',
4584
4597
  Sequence: {
4585
4598
  Annotation: {
@@ -4591,14 +4604,29 @@
4591
4604
  OrderPriority: 'pl7.app/table/orderPriority'},
4592
4605
  Trace: 'pl7.app/trace',
4593
4606
  };
4607
+ const ValueTypeSchema = z.enum(['Int', 'Long', 'Float', 'Double', 'String']);
4594
4608
  ({
4595
4609
  [Annotation.DiscreteValues]: z.array(z.string()).or(z.array(z.number())),
4610
+ [Annotation.Graph.Axis.HighCardinality]: z.boolean(),
4611
+ [Annotation.Graph.Axis.LowerLimit]: z.number(),
4612
+ [Annotation.Graph.Axis.UpperLimit]: z.number(),
4613
+ [Annotation.Graph.Axis.SymmetricRange]: z.boolean(),
4614
+ [Annotation.Graph.IsDenseAxis]: z.boolean(),
4615
+ [Annotation.Graph.Palette]: z.object({ mapping: z.record(z.number()), name: z.string() }),
4616
+ [Annotation.Graph.Thresholds]: z.array(z.object({
4617
+ columnId: z.object({ valueType: ValueTypeSchema, name: z.string() }),
4618
+ value: z.number(),
4619
+ })),
4620
+ [Annotation.Graph.TreatAbsentValuesAs]: z.number(),
4596
4621
  [Annotation.Graph.IsVirtual]: z.boolean(),
4597
4622
  [Annotation.HideDataFromUi]: z.boolean(),
4598
4623
  [Annotation.HideDataFromGraphs]: z.boolean(),
4624
+ [Annotation.IsDiscreteFilter]: z.boolean(),
4599
4625
  [Annotation.IsLinkerColumn]: z.boolean(),
4626
+ [Annotation.IsSubset]: z.boolean(),
4600
4627
  [Annotation.Max]: z.number(),
4601
4628
  [Annotation.Min]: z.number(),
4629
+ [Annotation.MultipliesBy]: z.array(z.string()),
4602
4630
  [Annotation.Parents]: z.array(z.string()),
4603
4631
  [Annotation.Sequence.Annotation.Mapping]: z.record(z.string(), z.string()),
4604
4632
  [Annotation.Sequence.IsAnnotation]: z.boolean(),
@@ -6772,7 +6800,7 @@
6772
6800
  }
6773
6801
  }
6774
6802
 
6775
- var version = "1.43.21";
6803
+ var version = "1.44.1";
6776
6804
 
6777
6805
  const PlatformaSDKVersion = version;
6778
6806