@microtronics/studio-cli 1.3.0-alpha.0 → 1.3.0-alpha.1

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;
@@ -5927,6 +5963,8 @@ declare namespace YamlPreCompiler {
5927
5963
  private fileDiagnostics;
5928
5964
  private readonly libraryDDE;
5929
5965
  private libraryYaml;
5966
+ private flexibleContainers;
5967
+ private readonly historyPlusDirectionContainers;
5930
5968
  constructor(manifest: Manifest.Manifest, libraryFiles: DDE_Core.LibraryFile[], ddeHistory: DDE.HistoryJson | null);
5931
5969
  /**
5932
5970
  * Parse the given library files and return the diagnostics
@@ -5950,6 +5988,7 @@ declare namespace YamlPreCompiler {
5950
5988
  parsedDDE: DDE_Core.DDEJson;
5951
5989
  diagnostics: Diagnostics.File[];
5952
5990
  parsedYaml: null | Document_2.Parsed<ParsedNode, true>;
5991
+ lineCounter: LineCounter;
5953
5992
  };
5954
5993
  private yamlDocToDdeJson;
5955
5994
  private reservedTopLevelKeys;
@@ -5972,6 +6011,12 @@ declare namespace YamlPreCompiler {
5972
6011
  private validateContainerRelation;
5973
6012
  private findRelatedShadowField;
5974
6013
  private mergeAndFormat;
6014
+ private readFlexibleContainers;
6015
+ private flexibleSwitchGroupFor;
6016
+ private flexibleSwitchFor;
6017
+ private isPlusDirection;
6018
+ private normalizeTransferDirection;
6019
+ private warnIfHistoryDirectionNarrowed;
5975
6020
  private combineDDE;
5976
6021
  private initialContainerByteOffset;
5977
6022
  private updateShadowFieldInformation;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microtronics/studio-cli",
3
- "version": "1.3.0-alpha.0",
3
+ "version": "1.3.0-alpha.1",
4
4
  "description": "Microtronics Studio CLI Tool",
5
5
  "main": "./out/api.js",
6
6
  "typings": "./out/studio-cli.d.ts",