@microtronics/studio-cli 1.2.0 → 1.2.1-rc.0

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.
@@ -445,6 +445,24 @@ export declare namespace DDE {
445
445
  description: string;
446
446
  markdownDescription: string;
447
447
  };
448
+ flexibleContainers: {
449
+ type: string;
450
+ additionalProperties: boolean;
451
+ description: string;
452
+ markdownDescription: string;
453
+ properties: {
454
+ timeseries: {
455
+ type: string;
456
+ description: string;
457
+ markdownDescription: string;
458
+ };
459
+ config: {
460
+ type: string;
461
+ description: string;
462
+ markdownDescription: string;
463
+ };
464
+ };
465
+ };
448
466
  constants: {
449
467
  type: string;
450
468
  description: string;
@@ -536,7 +554,7 @@ export declare namespace DDE {
536
554
  };
537
555
  };
538
556
  patternProperties: {
539
- "^(?!.*^field\\d+$)(?!.*^ch\\d+$)(?!(dde|cloudProject|constants|state|result|volatile|timeseries|aloha|setting|command|storage|relations))[a-zA-Z_][0-9a-zA-Z_]*$": {
557
+ "^(?!.*^field\\d+$)(?!.*^ch\\d+$)(?!(dde|cloudProject|flexibleContainers|constants|state|result|volatile|timeseries|aloha|setting|command|storage|relations))[a-zA-Z_][0-9a-zA-Z_]*$": {
540
558
  type: string;
541
559
  description: string;
542
560
  $ref: string;
@@ -566,6 +584,24 @@ export declare namespace DDE {
566
584
  cloudProject: {
567
585
  type: string;
568
586
  };
587
+ flexibleContainers: {
588
+ type: string;
589
+ additionalProperties: boolean;
590
+ description: string;
591
+ markdownDescription: string;
592
+ properties: {
593
+ timeseries: {
594
+ type: string;
595
+ description: string;
596
+ markdownDescription: string;
597
+ };
598
+ config: {
599
+ type: string;
600
+ description: string;
601
+ markdownDescription: string;
602
+ };
603
+ };
604
+ };
569
605
  constants: {
570
606
  type: string;
571
607
  description: string;
@@ -5893,6 +5929,8 @@ declare namespace YamlPreCompiler {
5893
5929
  private fileDiagnostics;
5894
5930
  private readonly libraryDDE;
5895
5931
  private libraryYaml;
5932
+ private flexibleContainers;
5933
+ private readonly historyPlusDirectionContainers;
5896
5934
  constructor(manifest: Manifest.Manifest, libraryFiles: DDE_Core.LibraryFile[], ddeHistory: DDE.HistoryJson | null);
5897
5935
  /**
5898
5936
  * Parse the given library files and return the diagnostics
@@ -5916,6 +5954,7 @@ declare namespace YamlPreCompiler {
5916
5954
  parsedDDE: DDE_Core.DDEJson;
5917
5955
  diagnostics: Diagnostics.File[];
5918
5956
  parsedYaml: null | Document_2.Parsed<ParsedNode, true>;
5957
+ lineCounter: LineCounter;
5919
5958
  };
5920
5959
  private yamlDocToDdeJson;
5921
5960
  private reservedTopLevelKeys;
@@ -5938,6 +5977,12 @@ declare namespace YamlPreCompiler {
5938
5977
  private validateContainerRelation;
5939
5978
  private findRelatedShadowField;
5940
5979
  private mergeAndFormat;
5980
+ private readFlexibleContainers;
5981
+ private flexibleSwitchGroupFor;
5982
+ private flexibleSwitchFor;
5983
+ private isPlusDirection;
5984
+ private normalizeTransferDirection;
5985
+ private warnIfHistoryDirectionNarrowed;
5941
5986
  private combineDDE;
5942
5987
  private initialContainerByteOffset;
5943
5988
  private updateShadowFieldInformation;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microtronics/studio-cli",
3
- "version": "1.2.0",
3
+ "version": "1.2.1-rc.0",
4
4
  "description": "Microtronics Studio CLI Tool",
5
5
  "main": "./out/api.js",
6
6
  "typings": "./out/studio-cli.d.ts",