@meshmakers/octo-services 3.3.450 → 3.3.470

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.
@@ -7,7 +7,7 @@ import { CombinedGraphQLErrors } from '@apollo/client';
7
7
  import * as i1 from 'apollo-angular';
8
8
  import { gql } from 'apollo-angular';
9
9
  import { map, catchError, finalize } from 'rxjs/operators';
10
- import { of, firstValueFrom, map as map$1, Subject, throwError } from 'rxjs';
10
+ import { of, firstValueFrom, map as map$1, Subject, throwError, filter } from 'rxjs';
11
11
  import { HttpClient, HttpParams, HttpErrorResponse, HttpHeaders } from '@angular/common/http';
12
12
  import { Upload } from 'tus-js-client';
13
13
  import { AuthorizeService } from '@meshmakers/shared-auth';
@@ -85,10 +85,10 @@ class OctoErrorLink extends ApolloLink {
85
85
  request(operation, forward) {
86
86
  return this.errorLink.request(operation, forward);
87
87
  }
88
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: OctoErrorLink, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
89
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: OctoErrorLink });
88
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: OctoErrorLink, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
89
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: OctoErrorLink });
90
90
  }
91
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: OctoErrorLink, decorators: [{
91
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: OctoErrorLink, decorators: [{
92
92
  type: Injectable
93
93
  }], ctorParameters: () => [] });
94
94
 
@@ -247,6 +247,13 @@ var AggregationInputTypesDto;
247
247
  AggregationInputTypesDto["MinimumDto"] = "MINIMUM";
248
248
  AggregationInputTypesDto["SumDto"] = "SUM";
249
249
  })(AggregationInputTypesDto || (AggregationInputTypesDto = {}));
250
+ /** Defines the aggregation type */
251
+ var AggregationTypeDto;
252
+ (function (AggregationTypeDto) {
253
+ AggregationTypeDto["AvgDto"] = "AVG";
254
+ AggregationTypeDto["MaxDto"] = "MAX";
255
+ AggregationTypeDto["MinDto"] = "MIN";
256
+ })(AggregationTypeDto || (AggregationTypeDto = {}));
250
257
  /** Defines the type of aggregation for runtime query results. */
251
258
  var AggregationTypesDto;
252
259
  (function (AggregationTypesDto) {
@@ -350,6 +357,116 @@ var DeleteStrategiesDto;
350
357
  DeleteStrategiesDto["ArchiveDto"] = "ARCHIVE";
351
358
  DeleteStrategiesDto["EraseDto"] = "ERASE";
352
359
  })(DeleteStrategiesDto || (DeleteStrategiesDto = {}));
360
+ /** Runtime entities of construction kit enum 'EnergyCommunity/BillingCycle' */
361
+ var EnergyCommunityBillingCycleDto;
362
+ (function (EnergyCommunityBillingCycleDto) {
363
+ /** The billing cycle is one year */
364
+ EnergyCommunityBillingCycleDto["AnnuallyDto"] = "ANNUALLY";
365
+ /** The billing cycle is one month */
366
+ EnergyCommunityBillingCycleDto["MonthlyDto"] = "MONTHLY";
367
+ /** The billing cycle is one quarter */
368
+ EnergyCommunityBillingCycleDto["QuarterlyDto"] = "QUARTERLY";
369
+ /** The billing cycle is six months */
370
+ EnergyCommunityBillingCycleDto["SemiAnnuallyDto"] = "SEMI_ANNUALLY";
371
+ })(EnergyCommunityBillingCycleDto || (EnergyCommunityBillingCycleDto = {}));
372
+ /** Runtime entities of construction kit enum 'EnergyCommunity/BillingDocumentState' */
373
+ var EnergyCommunityBillingDocumentStateDto;
374
+ (function (EnergyCommunityBillingDocumentStateDto) {
375
+ /** The billing document has been canceled */
376
+ EnergyCommunityBillingDocumentStateDto["CanceledDto"] = "CANCELED";
377
+ /** The billing document is a draft */
378
+ EnergyCommunityBillingDocumentStateDto["DraftDto"] = "DRAFT";
379
+ /** The billing document has been paid */
380
+ EnergyCommunityBillingDocumentStateDto["PaidDto"] = "PAID";
381
+ /** The billing document is released */
382
+ EnergyCommunityBillingDocumentStateDto["ReleasedDto"] = "RELEASED";
383
+ /** The billing document has been sent */
384
+ EnergyCommunityBillingDocumentStateDto["SentDto"] = "SENT";
385
+ })(EnergyCommunityBillingDocumentStateDto || (EnergyCommunityBillingDocumentStateDto = {}));
386
+ /** Runtime entities of construction kit enum 'EnergyCommunity/BillingType' */
387
+ var EnergyCommunityBillingTypeDto;
388
+ (function (EnergyCommunityBillingTypeDto) {
389
+ /** The document or item is an credit note or credit */
390
+ EnergyCommunityBillingTypeDto["CreditDto"] = "CREDIT";
391
+ /** The document is an invoice or the item is a debit note */
392
+ EnergyCommunityBillingTypeDto["DebitDto"] = "DEBIT";
393
+ })(EnergyCommunityBillingTypeDto || (EnergyCommunityBillingTypeDto = {}));
394
+ /** Runtime entities of construction kit enum 'EnergyCommunity/DataQuality' */
395
+ var EnergyCommunityDataQualityDto;
396
+ (function (EnergyCommunityDataQualityDto) {
397
+ /** The data is accurate to 15 minute meter readings */
398
+ EnergyCommunityDataQualityDto["L_1Dto"] = "L_1";
399
+ /** The data is a linear interpolation of 2 known meter readings */
400
+ EnergyCommunityDataQualityDto["L_2Dto"] = "L_2";
401
+ /** The data is an estimate */
402
+ EnergyCommunityDataQualityDto["L_3Dto"] = "L_3";
403
+ /** The data quality is unknown */
404
+ EnergyCommunityDataQualityDto["UnknownDto"] = "UNKNOWN";
405
+ })(EnergyCommunityDataQualityDto || (EnergyCommunityDataQualityDto = {}));
406
+ /** Runtime entities of construction kit enum 'EnergyCommunity/FacilityType' */
407
+ var EnergyCommunityFacilityTypeDto;
408
+ (function (EnergyCommunityFacilityTypeDto) {
409
+ /** The facility type is a business */
410
+ EnergyCommunityFacilityTypeDto["BusinessDto"] = "BUSINESS";
411
+ /** The facility type is a single household */
412
+ EnergyCommunityFacilityTypeDto["HouseholdDto"] = "HOUSEHOLD";
413
+ /** The facility type is a industry */
414
+ EnergyCommunityFacilityTypeDto["IndustryDto"] = "INDUSTRY";
415
+ /** The facility type is a public building e.g. schools, public offices */
416
+ EnergyCommunityFacilityTypeDto["PublicBuildingDto"] = "PUBLIC_BUILDING";
417
+ /** The facility type is an energy storage */
418
+ EnergyCommunityFacilityTypeDto["StorageDto"] = "STORAGE";
419
+ /** The facility type is unknown or not defined */
420
+ EnergyCommunityFacilityTypeDto["UnknownDto"] = "UNKNOWN";
421
+ })(EnergyCommunityFacilityTypeDto || (EnergyCommunityFacilityTypeDto = {}));
422
+ /** Runtime entities of construction kit enum 'EnergyCommunity/ProductionType' */
423
+ var EnergyCommunityProductionTypeDto;
424
+ (function (EnergyCommunityProductionTypeDto) {
425
+ /** Biomass was used to produce the energy */
426
+ EnergyCommunityProductionTypeDto["BiomassDto"] = "BIOMASS";
427
+ /** Combined heat and power was used to produce the energy */
428
+ EnergyCommunityProductionTypeDto["ChpDto"] = "CHP";
429
+ /** Hydroelectric power was used to produce the energy */
430
+ EnergyCommunityProductionTypeDto["HepDto"] = "HEP";
431
+ /** Other methods were used to produce the energy */
432
+ EnergyCommunityProductionTypeDto["OtherDto"] = "OTHER";
433
+ /** Solar power was used to produce the energy */
434
+ EnergyCommunityProductionTypeDto["SolarDto"] = "SOLAR";
435
+ /** The production type is unknown or not defined */
436
+ EnergyCommunityProductionTypeDto["UnknownDto"] = "UNKNOWN";
437
+ /** Wind power was used to produce the energy */
438
+ EnergyCommunityProductionTypeDto["WindDto"] = "WIND";
439
+ })(EnergyCommunityProductionTypeDto || (EnergyCommunityProductionTypeDto = {}));
440
+ /** Runtime entities of construction kit enum 'EnergyCommunity/State' */
441
+ var EnergyCommunityStateDto;
442
+ (function (EnergyCommunityStateDto) {
443
+ /** The object is active and in use */
444
+ EnergyCommunityStateDto["ActiveDto"] = "ACTIVE";
445
+ /** The object was deleted */
446
+ EnergyCommunityStateDto["DeletedDto"] = "DELETED";
447
+ /** The object is inactive but may be reactivated */
448
+ EnergyCommunityStateDto["InactiveDto"] = "INACTIVE";
449
+ /** The object is just created and the state is not set */
450
+ EnergyCommunityStateDto["NewDto"] = "NEW";
451
+ })(EnergyCommunityStateDto || (EnergyCommunityStateDto = {}));
452
+ /** Runtime entities of construction kit enum 'EnergyCommunity/TaxProcedureCreditNote' */
453
+ var EnergyCommunityTaxProcedureCreditNoteDto;
454
+ (function (EnergyCommunityTaxProcedureCreditNoteDto) {
455
+ /** The farmer tax procedure is applied, which is a reduced tax amount for farmers */
456
+ EnergyCommunityTaxProcedureCreditNoteDto["FarmerTaxProcedureDto"] = "FARMER_TAX_PROCEDURE";
457
+ /** No tax procedure is applied */
458
+ EnergyCommunityTaxProcedureCreditNoteDto["NoTaxProcedureDto"] = "NO_TAX_PROCEDURE";
459
+ /** The reverse charge procedure is applied */
460
+ EnergyCommunityTaxProcedureCreditNoteDto["ReverseChargeDto"] = "REVERSE_CHARGE";
461
+ /** No tax procedure is applied for small business owners */
462
+ EnergyCommunityTaxProcedureCreditNoteDto["SmallBusinessOwnersDto"] = "SMALL_BUSINESS_OWNERS";
463
+ })(EnergyCommunityTaxProcedureCreditNoteDto || (EnergyCommunityTaxProcedureCreditNoteDto = {}));
464
+ /** Runtime entities of construction kit enum 'Environment/GoalState' */
465
+ var EnvironmentGoalStateDto;
466
+ (function (EnvironmentGoalStateDto) {
467
+ EnvironmentGoalStateDto["OffTrackDto"] = "OFF_TRACK";
468
+ EnvironmentGoalStateDto["OnTrackDto"] = "ON_TRACK";
469
+ })(EnvironmentGoalStateDto || (EnvironmentGoalStateDto = {}));
353
470
  /** Defines the operator of field compare */
354
471
  var FieldFilterOperatorsDto;
355
472
  (function (FieldFilterOperatorsDto) {
@@ -373,6 +490,201 @@ var GraphDirectionDto;
373
490
  GraphDirectionDto["InboundDto"] = "INBOUND";
374
491
  GraphDirectionDto["OutboundDto"] = "OUTBOUND";
375
492
  })(GraphDirectionDto || (GraphDirectionDto = {}));
493
+ /** Runtime entities of construction kit enum 'Industry.Basic/AlarmPriority' */
494
+ var IndustryBasicAlarmPriorityDto;
495
+ (function (IndustryBasicAlarmPriorityDto) {
496
+ /** The alarm is of critical priority. */
497
+ IndustryBasicAlarmPriorityDto["CriticalDto"] = "CRITICAL";
498
+ /** The alarm is of high priority. */
499
+ IndustryBasicAlarmPriorityDto["HighDto"] = "HIGH";
500
+ /** The alarm is of low priority. */
501
+ IndustryBasicAlarmPriorityDto["LowDto"] = "LOW";
502
+ /** The alarm is of medium priority. */
503
+ IndustryBasicAlarmPriorityDto["MediumDto"] = "MEDIUM";
504
+ /** No priority has been assigned to the alarm. */
505
+ IndustryBasicAlarmPriorityDto["UndefinedDto"] = "UNDEFINED";
506
+ })(IndustryBasicAlarmPriorityDto || (IndustryBasicAlarmPriorityDto = {}));
507
+ /** Runtime entities of construction kit enum 'Industry.Basic/AlarmSourceType' */
508
+ var IndustryBasicAlarmSourceTypeDto;
509
+ (function (IndustryBasicAlarmSourceTypeDto) {
510
+ /** The alarm is generated by a control system. */
511
+ IndustryBasicAlarmSourceTypeDto["ControlSystemDto"] = "CONTROL_SYSTEM";
512
+ /** The alarm is generated by a field device. */
513
+ IndustryBasicAlarmSourceTypeDto["FieldDeviceDto"] = "FIELD_DEVICE";
514
+ /** The alarm is generated by a human-machine interface. */
515
+ IndustryBasicAlarmSourceTypeDto["HmiDto"] = "HMI";
516
+ /** The alarm is generated by an internal source. */
517
+ IndustryBasicAlarmSourceTypeDto["InternalDto"] = "INTERNAL";
518
+ /** No source has been assigned to the alarm. */
519
+ IndustryBasicAlarmSourceTypeDto["UndefinedDto"] = "UNDEFINED";
520
+ })(IndustryBasicAlarmSourceTypeDto || (IndustryBasicAlarmSourceTypeDto = {}));
521
+ /** Runtime entities of construction kit enum 'Industry.Basic/AlarmState' */
522
+ var IndustryBasicAlarmStateDto;
523
+ (function (IndustryBasicAlarmStateDto) {
524
+ /** The acknowledged alarm state should not use an audible indication. The acknowledged alarm state visual indication should be clearly distinguishable from the normal state indication by using symbols (e.g., shape or text), and should be identical in colour to the unacknowledged alarm indication. A blinking element should not be used in the visual indication for an acknowledged alarm. */
525
+ IndustryBasicAlarmStateDto["AcknowledgedDto"] = "ACKNOWLEDGED";
526
+ /** The normal state should not use an audible indication. The normal state visual indication should be the same as indications without alarms. */
527
+ IndustryBasicAlarmStateDto["NormalDto"] = "NORMAL";
528
+ /** The out-of-service alarm state should be visually indicated in the HMI. The visual indication for an out-of-service alarm should not include a blinking element. The out-of-service alarm state indication should be distinct from the unacknowledged and acknowledged state indications. No audible indication should be used to identify out-of-service alarms. */
529
+ IndustryBasicAlarmStateDto["OutOfServiceDto"] = "OUT_OF_SERVICE";
530
+ /** The return-to-normal unacknowledged state should not use an audible indication. The return to-normal unacknowledged state visual indication may be the same as the normal state or it may indicate an unacknowledged status with a blinking element. */
531
+ IndustryBasicAlarmStateDto["ReturnToNormalDto"] = "RETURN_TO_NORMAL";
532
+ /** The shelved alarm state should be visually indicated in the HMI. The visual indication for a shelved alarm should not include a blinking element. The shelved alarm state indication should be distinct. No audible indication should be used to identify shelved alarms. */
533
+ IndustryBasicAlarmStateDto["ShelvedDto"] = "SHELVED";
534
+ /** The suppressed-by-design alarm state should be visually indicated in the HMI. The visual indication for an alarm suppressed by design should not include a blinking element. The suppressed-by-design alarm state indication should be distinct from the unacknowledged and acknowledged state indications. No audible indication should be used to identify alarms suppressed by design. */
535
+ IndustryBasicAlarmStateDto["SuppressedByDesignDto"] = "SUPPRESSED_BY_DESIGN";
536
+ /** The unacknowledged alarm state should use both an audible indication and visual indication. The audible indication should be silenced with a silence action or acknowledge action by the operator. The visual indication should be clearly distinguishable from the normal state indication by using colours and symbols (e.g., shape or text). The visual indication for an unacknowledged alarm should include a blinking element. There are some environments in which an audible indication is not an effective indicator of unacknowledged alarms. */
537
+ IndustryBasicAlarmStateDto["UnacknowledgedDto"] = "UNACKNOWLEDGED";
538
+ /** No state has been assigned to the alarm. */
539
+ IndustryBasicAlarmStateDto["UndefinedDto"] = "UNDEFINED";
540
+ })(IndustryBasicAlarmStateDto || (IndustryBasicAlarmStateDto = {}));
541
+ /** Runtime entities of construction kit enum 'Industry.Basic/AlarmType' */
542
+ var IndustryBasicAlarmTypeDto;
543
+ (function (IndustryBasicAlarmTypeDto) {
544
+ /** The alarm is based on an absolute value. */
545
+ IndustryBasicAlarmTypeDto["AbsoluteDto"] = "ABSOLUTE";
546
+ /** The alarm is based on an adaptive value. */
547
+ IndustryBasicAlarmTypeDto["AdaptiveDto"] = "ADAPTIVE";
548
+ /** The alarm is based on an adjustable value. */
549
+ IndustryBasicAlarmTypeDto["AdjustableDto"] = "ADJUSTABLE";
550
+ /** The alarm is based on a bad measurement. */
551
+ IndustryBasicAlarmTypeDto["BadMeasurementDto"] = "BAD_MEASUREMENT";
552
+ /** The alarm is based on a bit pattern. */
553
+ IndustryBasicAlarmTypeDto["BitPatternDto"] = "BIT_PATTERN";
554
+ /** The alarm is based on a calculated value. */
555
+ IndustryBasicAlarmTypeDto["CalculatedDto"] = "CALCULATED";
556
+ /** The alarm is based on a controller output. */
557
+ IndustryBasicAlarmTypeDto["ControllerOutputDto"] = "CONTROLLER_OUTPUT";
558
+ /** The alarm is based on a deviation from a set-point. */
559
+ IndustryBasicAlarmTypeDto["DeviationDto"] = "DEVIATION";
560
+ /** The alarm is based on a discrepancy between two values. */
561
+ IndustryBasicAlarmTypeDto["DiscrepancyDto"] = "DISCREPANCY";
562
+ /** The alarm is based on a first-out value. */
563
+ IndustryBasicAlarmTypeDto["FirstOutDto"] = "FIRST_OUT";
564
+ /** The alarm is based on an instrument diagnostic. */
565
+ IndustryBasicAlarmTypeDto["InstrumentDiagnosticDto"] = "INSTRUMENT_DIAGNOSTIC";
566
+ /** The alarm is based on the rate of change of a value. */
567
+ IndustryBasicAlarmTypeDto["RateOfChangeDto"] = "RATE_OF_CHANGE";
568
+ /** The alarm is based on a recipe-driven value. */
569
+ IndustryBasicAlarmTypeDto["RecipeDrivenDto"] = "RECIPE_DRIVEN";
570
+ /** The alarm is based on a re-alarming value. */
571
+ IndustryBasicAlarmTypeDto["ReAlarmingDto"] = "RE_ALARMING";
572
+ /** The alarm is based on a statistical value. */
573
+ IndustryBasicAlarmTypeDto["StatisticalDto"] = "STATISTICAL";
574
+ /** The alarm is based on a system diagnostic. */
575
+ IndustryBasicAlarmTypeDto["SystemDiagnosticDto"] = "SYSTEM_DIAGNOSTIC";
576
+ /** No type has been assigned to the alarm. */
577
+ IndustryBasicAlarmTypeDto["UndefinedDto"] = "UNDEFINED";
578
+ })(IndustryBasicAlarmTypeDto || (IndustryBasicAlarmTypeDto = {}));
579
+ /** Runtime entities of construction kit enum 'Industry.Basic/IecDataType' */
580
+ var IndustryBasicIecDataTypeDto;
581
+ (function (IndustryBasicIecDataTypeDto) {
582
+ /** IEC_BOOL - 1Bit */
583
+ IndustryBasicIecDataTypeDto["BoolDto"] = "BOOL";
584
+ /** IEC_BYTE - 8Bit */
585
+ IndustryBasicIecDataTypeDto["ByteDto"] = "BYTE";
586
+ /** IEC_DATE */
587
+ IndustryBasicIecDataTypeDto["DateDto"] = "DATE";
588
+ /** IEC_DINT - 32Bit signed */
589
+ IndustryBasicIecDataTypeDto["DintDto"] = "DINT";
590
+ /** IEC_DT - Date and Time */
591
+ IndustryBasicIecDataTypeDto["DtDto"] = "DT";
592
+ /** IEC_DWORD - 32Bit */
593
+ IndustryBasicIecDataTypeDto["DwordDto"] = "DWORD";
594
+ /** IEC_INT - 16Bit signed */
595
+ IndustryBasicIecDataTypeDto["IntDto"] = "INT";
596
+ /** IEC_LINT - 64Bit signed */
597
+ IndustryBasicIecDataTypeDto["LintDto"] = "LINT";
598
+ /** IEC_LREAL - 64Bit float */
599
+ IndustryBasicIecDataTypeDto["LrealDto"] = "LREAL";
600
+ /** IEC_LWORD - 64Bit */
601
+ IndustryBasicIecDataTypeDto["LwordDto"] = "LWORD";
602
+ /** IEC_REAL - 32Bit float */
603
+ IndustryBasicIecDataTypeDto["RealDto"] = "REAL";
604
+ /** IEC_SINT - 8Bit signed */
605
+ IndustryBasicIecDataTypeDto["SintDto"] = "SINT";
606
+ /** IEC_STRING - 8Bit*n */
607
+ IndustryBasicIecDataTypeDto["StringDto"] = "STRING";
608
+ /** IEC_TIME */
609
+ IndustryBasicIecDataTypeDto["TimeDto"] = "TIME";
610
+ /** IEC_TOD - Time of Day */
611
+ IndustryBasicIecDataTypeDto["TodDto"] = "TOD";
612
+ /** IEC_UDINT - 32Bit unsigned */
613
+ IndustryBasicIecDataTypeDto["UdintDto"] = "UDINT";
614
+ /** IEC_UINT - 16Bit unsigned */
615
+ IndustryBasicIecDataTypeDto["UintDto"] = "UINT";
616
+ /** IEC_ULINT - 64Bit unsigned */
617
+ IndustryBasicIecDataTypeDto["UlintDto"] = "ULINT";
618
+ /** IEC_USINT - 8Bit unsigned */
619
+ IndustryBasicIecDataTypeDto["UsintDto"] = "USINT";
620
+ /** IEC_WORD - 16Bit */
621
+ IndustryBasicIecDataTypeDto["WordDto"] = "WORD";
622
+ /** IEC_WSTRING - 16Bit*n */
623
+ IndustryBasicIecDataTypeDto["WstringDto"] = "WSTRING";
624
+ })(IndustryBasicIecDataTypeDto || (IndustryBasicIecDataTypeDto = {}));
625
+ /** Runtime entities of construction kit enum 'Industry.Basic/MachineCapabilities' */
626
+ var IndustryBasicMachineCapabilitiesDto;
627
+ (function (IndustryBasicMachineCapabilitiesDto) {
628
+ IndustryBasicMachineCapabilitiesDto["UnknownDto"] = "UNKNOWN";
629
+ })(IndustryBasicMachineCapabilitiesDto || (IndustryBasicMachineCapabilitiesDto = {}));
630
+ /** Runtime entities of construction kit enum 'Industry.Basic/MachineState' */
631
+ var IndustryBasicMachineStateDto;
632
+ (function (IndustryBasicMachineStateDto) {
633
+ IndustryBasicMachineStateDto["ErrorDto"] = "ERROR";
634
+ IndustryBasicMachineStateDto["IdleDto"] = "IDLE";
635
+ IndustryBasicMachineStateDto["OffDto"] = "OFF";
636
+ IndustryBasicMachineStateDto["OnDto"] = "ON";
637
+ IndustryBasicMachineStateDto["UnknownDto"] = "UNKNOWN";
638
+ })(IndustryBasicMachineStateDto || (IndustryBasicMachineStateDto = {}));
639
+ /** Runtime entities of construction kit enum 'Industry.Maintenance/AggregationType' */
640
+ var IndustryMaintenanceAggregationTypeDto;
641
+ (function (IndustryMaintenanceAggregationTypeDto) {
642
+ IndustryMaintenanceAggregationTypeDto["FiscalYearDto"] = "FISCAL_YEAR";
643
+ IndustryMaintenanceAggregationTypeDto["MonthDto"] = "MONTH";
644
+ IndustryMaintenanceAggregationTypeDto["WeekDto"] = "WEEK";
645
+ })(IndustryMaintenanceAggregationTypeDto || (IndustryMaintenanceAggregationTypeDto = {}));
646
+ /** Runtime entities of construction kit enum 'Industry.Maintenance/CostCategory' */
647
+ var IndustryMaintenanceCostCategoryDto;
648
+ (function (IndustryMaintenanceCostCategoryDto) {
649
+ IndustryMaintenanceCostCategoryDto["ExternalDto"] = "EXTERNAL";
650
+ IndustryMaintenanceCostCategoryDto["InternalDto"] = "INTERNAL";
651
+ IndustryMaintenanceCostCategoryDto["MaterialDto"] = "MATERIAL";
652
+ })(IndustryMaintenanceCostCategoryDto || (IndustryMaintenanceCostCategoryDto = {}));
653
+ /** Runtime entities of construction kit enum 'Industry.Maintenance/EnergyBalanceGroup' */
654
+ var IndustryMaintenanceEnergyBalanceGroupDto;
655
+ (function (IndustryMaintenanceEnergyBalanceGroupDto) {
656
+ IndustryMaintenanceEnergyBalanceGroupDto["UndefinedDto"] = "UNDEFINED";
657
+ })(IndustryMaintenanceEnergyBalanceGroupDto || (IndustryMaintenanceEnergyBalanceGroupDto = {}));
658
+ /** Runtime entities of construction kit enum 'Industry.Maintenance/EnergyBalanceProduct' */
659
+ var IndustryMaintenanceEnergyBalanceProductDto;
660
+ (function (IndustryMaintenanceEnergyBalanceProductDto) {
661
+ IndustryMaintenanceEnergyBalanceProductDto["UndefinedDto"] = "UNDEFINED";
662
+ })(IndustryMaintenanceEnergyBalanceProductDto || (IndustryMaintenanceEnergyBalanceProductDto = {}));
663
+ /** Runtime entities of construction kit enum 'Industry.Maintenance/EnergyBalanceUnit' */
664
+ var IndustryMaintenanceEnergyBalanceUnitDto;
665
+ (function (IndustryMaintenanceEnergyBalanceUnitDto) {
666
+ IndustryMaintenanceEnergyBalanceUnitDto["UndefinedDto"] = "UNDEFINED";
667
+ })(IndustryMaintenanceEnergyBalanceUnitDto || (IndustryMaintenanceEnergyBalanceUnitDto = {}));
668
+ /** Runtime entities of construction kit enum 'Industry.Maintenance/OrderPriority' */
669
+ var IndustryMaintenanceOrderPriorityDto;
670
+ (function (IndustryMaintenanceOrderPriorityDto) {
671
+ IndustryMaintenanceOrderPriorityDto["UndefinedDto"] = "UNDEFINED";
672
+ })(IndustryMaintenanceOrderPriorityDto || (IndustryMaintenanceOrderPriorityDto = {}));
673
+ /** Runtime entities of construction kit enum 'Industry.Maintenance/OrderState' */
674
+ var IndustryMaintenanceOrderStateDto;
675
+ (function (IndustryMaintenanceOrderStateDto) {
676
+ IndustryMaintenanceOrderStateDto["UndefinedDto"] = "UNDEFINED";
677
+ })(IndustryMaintenanceOrderStateDto || (IndustryMaintenanceOrderStateDto = {}));
678
+ /** Runtime entities of construction kit enum 'Industry.Maintenance/OrderType' */
679
+ var IndustryMaintenanceOrderTypeDto;
680
+ (function (IndustryMaintenanceOrderTypeDto) {
681
+ IndustryMaintenanceOrderTypeDto["UndefinedDto"] = "UNDEFINED";
682
+ })(IndustryMaintenanceOrderTypeDto || (IndustryMaintenanceOrderTypeDto = {}));
683
+ /** Runtime entities of construction kit enum 'Industry.Maintenance/ServiceType' */
684
+ var IndustryMaintenanceServiceTypeDto;
685
+ (function (IndustryMaintenanceServiceTypeDto) {
686
+ IndustryMaintenanceServiceTypeDto["UndefinedDto"] = "UNDEFINED";
687
+ })(IndustryMaintenanceServiceTypeDto || (IndustryMaintenanceServiceTypeDto = {}));
376
688
  /** Enum of the availability states of models. */
377
689
  var ModelStateDto;
378
690
  (function (ModelStateDto) {
@@ -387,6 +699,12 @@ var MultiplicitiesDto;
387
699
  MultiplicitiesDto["OneDto"] = "ONE";
388
700
  MultiplicitiesDto["ZeroOrOneDto"] = "ZERO_OR_ONE";
389
701
  })(MultiplicitiesDto || (MultiplicitiesDto = {}));
702
+ /** Controls how navigation properties affect the result set. FILTER (default): entities without associations are excluded. INCLUDE: entities without associations are kept; navigation lookups run post-pagination for better performance. */
703
+ var NavigationFilterModeDto;
704
+ (function (NavigationFilterModeDto) {
705
+ NavigationFilterModeDto["FilterDto"] = "FILTER";
706
+ NavigationFilterModeDto["IncludeDto"] = "INCLUDE";
707
+ })(NavigationFilterModeDto || (NavigationFilterModeDto = {}));
390
708
  /** Runtime entities of construction kit enum 'OctoSdkDemo/CustomerStatus' */
391
709
  var OctoSdkDemoCustomerStatusDto;
392
710
  (function (OctoSdkDemoCustomerStatusDto) {
@@ -406,6 +724,13 @@ var OctoSdkDemoOperatingStatusDto;
406
724
  OctoSdkDemoOperatingStatusDto["OkDto"] = "OK";
407
725
  OctoSdkDemoOperatingStatusDto["UnknownDto"] = "UNKNOWN";
408
726
  })(OctoSdkDemoOperatingStatusDto || (OctoSdkDemoOperatingStatusDto = {}));
727
+ /** Defines the kind of query to be executed */
728
+ var QueryModeDto;
729
+ (function (QueryModeDto) {
730
+ QueryModeDto["DefaultDto"] = "DEFAULT";
731
+ QueryModeDto["DownsamplingDto"] = "DOWNSAMPLING";
732
+ QueryModeDto["InterpolationDto"] = "INTERPOLATION";
733
+ })(QueryModeDto || (QueryModeDto = {}));
409
734
  /** The type of search that is used (a text based search using text analysis (high performance, scoring, maybe more false positives) or filtering of attributes (lower performance, more exact results) */
410
735
  var SearchFilterTypesDto;
411
736
  (function (SearchFilterTypesDto) {
@@ -413,6 +738,12 @@ var SearchFilterTypesDto;
413
738
  SearchFilterTypesDto["TextSearchDto"] = "TEXT_SEARCH";
414
739
  })(SearchFilterTypesDto || (SearchFilterTypesDto = {}));
415
740
  /** Defines the sort order */
741
+ var SortOrderDto;
742
+ (function (SortOrderDto) {
743
+ SortOrderDto["AscendingDto"] = "ASCENDING";
744
+ SortOrderDto["DescendingDto"] = "DESCENDING";
745
+ })(SortOrderDto || (SortOrderDto = {}));
746
+ /** Defines the sort order */
416
747
  var SortOrdersDto;
417
748
  (function (SortOrdersDto) {
418
749
  SortOrdersDto["AscendingDto"] = "ASCENDING";
@@ -515,24 +846,6 @@ var SystemFieldFilterOperatorDto;
515
846
  /** Compares a field to be not equal any value in the specified array. */
516
847
  SystemFieldFilterOperatorDto["NotInDto"] = "NOT_IN";
517
848
  })(SystemFieldFilterOperatorDto || (SystemFieldFilterOperatorDto = {}));
518
- /** Runtime entities of construction kit enum 'System.Identity/TokenExpiration' */
519
- var SystemIdentityTokenExpirationDto;
520
- (function (SystemIdentityTokenExpirationDto) {
521
- SystemIdentityTokenExpirationDto["AbsoluteDto"] = "ABSOLUTE";
522
- SystemIdentityTokenExpirationDto["SlidingDto"] = "SLIDING";
523
- })(SystemIdentityTokenExpirationDto || (SystemIdentityTokenExpirationDto = {}));
524
- /** Runtime entities of construction kit enum 'System.Identity/TokenType' */
525
- var SystemIdentityTokenTypeDto;
526
- (function (SystemIdentityTokenTypeDto) {
527
- SystemIdentityTokenTypeDto["JwtDto"] = "JWT";
528
- SystemIdentityTokenTypeDto["ReferenceDto"] = "REFERENCE";
529
- })(SystemIdentityTokenTypeDto || (SystemIdentityTokenTypeDto = {}));
530
- /** Runtime entities of construction kit enum 'System.Identity/TokenUsage' */
531
- var SystemIdentityTokenUsageDto;
532
- (function (SystemIdentityTokenUsageDto) {
533
- SystemIdentityTokenUsageDto["OneTimeOnlyDto"] = "ONE_TIME_ONLY";
534
- SystemIdentityTokenUsageDto["ReUseDto"] = "RE_USE";
535
- })(SystemIdentityTokenUsageDto || (SystemIdentityTokenUsageDto = {}));
536
849
  /** Runtime entities of construction kit enum 'System/MaintenanceLevels' */
537
850
  var SystemMaintenanceLevelsDto;
538
851
  (function (SystemMaintenanceLevelsDto) {
@@ -546,7 +859,9 @@ var SystemMaintenanceLevelsDto;
546
859
  /** Runtime entities of construction kit enum 'System/NavigationFilterModes' */
547
860
  var SystemNavigationFilterModesDto;
548
861
  (function (SystemNavigationFilterModesDto) {
862
+ /** Entities without matching associations are filtered out (pre-pagination). */
549
863
  SystemNavigationFilterModesDto["FilterDto"] = "FILTER";
864
+ /** Entities without matching associations are kept with null values (post-pagination, better performance). */
550
865
  SystemNavigationFilterModesDto["IncludeDto"] = "INCLUDE";
551
866
  })(SystemNavigationFilterModesDto || (SystemNavigationFilterModesDto = {}));
552
867
  /** Runtime entities of construction kit enum 'System.Notification/EventLevels' */
@@ -631,6 +946,23 @@ var UpdateTypeDto;
631
946
 
632
947
  const result = {
633
948
  "possibleTypes": {
949
+ "BasicAsset_EventSourceUnion": [
950
+ "BasicAsset",
951
+ "EnvironmentWasteMeter",
952
+ "IndustryBasicMachine",
953
+ "IndustryEnergyBattery",
954
+ "IndustryEnergyEnergyMeter",
955
+ "IndustryEnergyInverter",
956
+ "IndustryEnergyPhotovoltaic",
957
+ "IndustryEnergyPhotovoltaicModule",
958
+ "IndustryEnergyPhotovoltaicString",
959
+ "IndustryFluidHeatMeter",
960
+ "IndustryFluidWaterMeter",
961
+ "IndustryMaintenanceCostCenter",
962
+ "IndustryMaintenanceEmployee",
963
+ "IndustryMaintenanceWorkplace",
964
+ "OctoSdkDemoMeteringPoint"
965
+ ],
634
966
  "BasicAsset_RelatesFromUnion": [
635
967
  "BasicAsset",
636
968
  "BasicCity",
@@ -640,6 +972,40 @@ const result = {
640
972
  "BasicState",
641
973
  "BasicTree",
642
974
  "BasicTreeNode",
975
+ "EnergyCommunityBillingDocument",
976
+ "EnergyCommunityBillingDocumentLineItem",
977
+ "EnergyCommunityConsumer",
978
+ "EnergyCommunityCustomer",
979
+ "EnergyCommunityEdaMessage",
980
+ "EnergyCommunityEdaMeteringPoint",
981
+ "EnergyCommunityEdaProcess",
982
+ "EnergyCommunityEnergyPrice",
983
+ "EnergyCommunityEnergyQuantity",
984
+ "EnergyCommunityOperatingFacility",
985
+ "EnergyCommunityProducer",
986
+ "EnvironmentEnvironmentalGoal",
987
+ "EnvironmentWasteMeter",
988
+ "IndustryBasicAlarm",
989
+ "IndustryBasicEvent",
990
+ "IndustryBasicMachine",
991
+ "IndustryBasicRuntimeVariable",
992
+ "IndustryEnergyBattery",
993
+ "IndustryEnergyEnergyMeter",
994
+ "IndustryEnergyInverter",
995
+ "IndustryEnergyPhotovoltaic",
996
+ "IndustryEnergyPhotovoltaicModule",
997
+ "IndustryEnergyPhotovoltaicString",
998
+ "IndustryFluidHeatMeter",
999
+ "IndustryFluidWaterMeter",
1000
+ "IndustryMaintenanceAccount",
1001
+ "IndustryMaintenanceCostCenter",
1002
+ "IndustryMaintenanceEmployee",
1003
+ "IndustryMaintenanceEnergyBalance",
1004
+ "IndustryMaintenanceJournalEntry",
1005
+ "IndustryMaintenanceOrder",
1006
+ "IndustryMaintenanceOrderCosts",
1007
+ "IndustryMaintenanceOrderFeedback",
1008
+ "IndustryMaintenanceWorkplace",
643
1009
  "OctoSdkDemoCustomer",
644
1010
  "OctoSdkDemoMeteringPoint",
645
1011
  "OctoSdkDemoOperatingFacility",
@@ -647,7 +1013,6 @@ const result = {
647
1013
  "SystemAutoIncrement",
648
1014
  "SystemBotAttributeAggregateConfiguration",
649
1015
  "SystemBotFixup",
650
- "SystemBotServiceHook",
651
1016
  "SystemCommunicationDataPipeline",
652
1017
  "SystemCommunicationDataPipelineTrigger",
653
1018
  "SystemCommunicationEMailSenderConfiguration",
@@ -662,22 +1027,6 @@ const result = {
662
1027
  "SystemCommunicationSapConfiguration",
663
1028
  "SystemCommunicationTag",
664
1029
  "SystemGroupingAggregationRtQuery",
665
- "SystemIdentityApiResource",
666
- "SystemIdentityApiScope",
667
- "SystemIdentityAzureEntraIdIdentityProvider",
668
- "SystemIdentityClient",
669
- "SystemIdentityFacebookIdentityProvider",
670
- "SystemIdentityGoogleIdentityProvider",
671
- "SystemIdentityIdentityResource",
672
- "SystemIdentityMailNotificationConfiguration",
673
- "SystemIdentityMicrosoftAdIdentityProvider",
674
- "SystemIdentityMicrosoftIdentityProvider",
675
- "SystemIdentityOpenLdapIdentityProvider",
676
- "SystemIdentityPermission",
677
- "SystemIdentityPermissionRole",
678
- "SystemIdentityPersistedGrant",
679
- "SystemIdentityRole",
680
- "SystemIdentityUser",
681
1030
  "SystemMigrationHistory",
682
1031
  "SystemNotificationCssTemplateConfiguration",
683
1032
  "SystemNotificationEvent",
@@ -694,16 +1043,23 @@ const result = {
694
1043
  "SystemTenantModeConfiguration",
695
1044
  "SystemUIDashboard",
696
1045
  "SystemUIDashboardWidget",
697
- "SystemUIPage",
698
1046
  "SystemUIProcessDiagram",
699
- "SystemUIStudioRoot",
700
- "SystemUIStudioTreeItem",
701
1047
  "SystemUISymbolDefinition",
702
1048
  "SystemUISymbolLibrary"
703
1049
  ],
704
- "BasicDocumentInterface": [],
1050
+ "BasicDocumentInterface": [
1051
+ "EnergyCommunityBillingDocument"
1052
+ ],
705
1053
  "BasicNamedEntityInterface": [
706
- "BasicTree"
1054
+ "BasicTree",
1055
+ "EnergyCommunityConsumer",
1056
+ "EnergyCommunityEdaProcess",
1057
+ "EnergyCommunityMeteringPoint",
1058
+ "EnergyCommunityProducer",
1059
+ "EnvironmentEnvironmentalGoal",
1060
+ "IndustryBasicAlarm",
1061
+ "IndustryBasicEvent",
1062
+ "IndustryBasicRuntimeVariable"
707
1063
  ],
708
1064
  "BasicTreeNode_ChildrenUnion": [
709
1065
  "BasicAsset",
@@ -712,6 +1068,69 @@ const result = {
712
1068
  "BasicDistrict",
713
1069
  "BasicState",
714
1070
  "BasicTreeNode",
1071
+ "EnergyCommunityOperatingFacility",
1072
+ "EnvironmentEnvironmentalGoal",
1073
+ "EnvironmentWasteMeter",
1074
+ "IndustryBasicMachine",
1075
+ "IndustryEnergyBattery",
1076
+ "IndustryEnergyEnergyMeter",
1077
+ "IndustryEnergyInverter",
1078
+ "IndustryEnergyPhotovoltaic",
1079
+ "IndustryEnergyPhotovoltaicModule",
1080
+ "IndustryEnergyPhotovoltaicString",
1081
+ "IndustryFluidHeatMeter",
1082
+ "IndustryFluidWaterMeter",
1083
+ "IndustryMaintenanceCostCenter",
1084
+ "IndustryMaintenanceEmployee",
1085
+ "IndustryMaintenanceWorkplace",
1086
+ "OctoSdkDemoMeteringPoint",
1087
+ "OctoSdkDemoOperatingFacility"
1088
+ ],
1089
+ "BasicTreeNode_MachineUnion": [
1090
+ "BasicAsset",
1091
+ "BasicCity",
1092
+ "BasicCountry",
1093
+ "BasicDistrict",
1094
+ "BasicState",
1095
+ "BasicTreeNode",
1096
+ "EnergyCommunityOperatingFacility",
1097
+ "EnvironmentWasteMeter",
1098
+ "IndustryBasicMachine",
1099
+ "IndustryEnergyBattery",
1100
+ "IndustryEnergyEnergyMeter",
1101
+ "IndustryEnergyInverter",
1102
+ "IndustryEnergyPhotovoltaic",
1103
+ "IndustryEnergyPhotovoltaicModule",
1104
+ "IndustryEnergyPhotovoltaicString",
1105
+ "IndustryFluidHeatMeter",
1106
+ "IndustryFluidWaterMeter",
1107
+ "IndustryMaintenanceCostCenter",
1108
+ "IndustryMaintenanceEmployee",
1109
+ "IndustryMaintenanceWorkplace",
1110
+ "OctoSdkDemoMeteringPoint",
1111
+ "OctoSdkDemoOperatingFacility"
1112
+ ],
1113
+ "BasicTreeNode_ParentUnion": [
1114
+ "BasicAsset",
1115
+ "BasicCity",
1116
+ "BasicCountry",
1117
+ "BasicDistrict",
1118
+ "BasicState",
1119
+ "BasicTreeNode",
1120
+ "EnergyCommunityOperatingFacility",
1121
+ "EnvironmentWasteMeter",
1122
+ "IndustryBasicMachine",
1123
+ "IndustryEnergyBattery",
1124
+ "IndustryEnergyEnergyMeter",
1125
+ "IndustryEnergyInverter",
1126
+ "IndustryEnergyPhotovoltaic",
1127
+ "IndustryEnergyPhotovoltaicModule",
1128
+ "IndustryEnergyPhotovoltaicString",
1129
+ "IndustryFluidHeatMeter",
1130
+ "IndustryFluidWaterMeter",
1131
+ "IndustryMaintenanceCostCenter",
1132
+ "IndustryMaintenanceEmployee",
1133
+ "IndustryMaintenanceWorkplace",
715
1134
  "OctoSdkDemoMeteringPoint",
716
1135
  "OctoSdkDemoOperatingFacility"
717
1136
  ],
@@ -724,6 +1143,40 @@ const result = {
724
1143
  "BasicState",
725
1144
  "BasicTree",
726
1145
  "BasicTreeNode",
1146
+ "EnergyCommunityBillingDocument",
1147
+ "EnergyCommunityBillingDocumentLineItem",
1148
+ "EnergyCommunityConsumer",
1149
+ "EnergyCommunityCustomer",
1150
+ "EnergyCommunityEdaMessage",
1151
+ "EnergyCommunityEdaMeteringPoint",
1152
+ "EnergyCommunityEdaProcess",
1153
+ "EnergyCommunityEnergyPrice",
1154
+ "EnergyCommunityEnergyQuantity",
1155
+ "EnergyCommunityOperatingFacility",
1156
+ "EnergyCommunityProducer",
1157
+ "EnvironmentEnvironmentalGoal",
1158
+ "EnvironmentWasteMeter",
1159
+ "IndustryBasicAlarm",
1160
+ "IndustryBasicEvent",
1161
+ "IndustryBasicMachine",
1162
+ "IndustryBasicRuntimeVariable",
1163
+ "IndustryEnergyBattery",
1164
+ "IndustryEnergyEnergyMeter",
1165
+ "IndustryEnergyInverter",
1166
+ "IndustryEnergyPhotovoltaic",
1167
+ "IndustryEnergyPhotovoltaicModule",
1168
+ "IndustryEnergyPhotovoltaicString",
1169
+ "IndustryFluidHeatMeter",
1170
+ "IndustryFluidWaterMeter",
1171
+ "IndustryMaintenanceAccount",
1172
+ "IndustryMaintenanceCostCenter",
1173
+ "IndustryMaintenanceEmployee",
1174
+ "IndustryMaintenanceEnergyBalance",
1175
+ "IndustryMaintenanceJournalEntry",
1176
+ "IndustryMaintenanceOrder",
1177
+ "IndustryMaintenanceOrderCosts",
1178
+ "IndustryMaintenanceOrderFeedback",
1179
+ "IndustryMaintenanceWorkplace",
727
1180
  "OctoSdkDemoCustomer",
728
1181
  "OctoSdkDemoMeteringPoint",
729
1182
  "OctoSdkDemoOperatingFacility",
@@ -731,7 +1184,6 @@ const result = {
731
1184
  "SystemAutoIncrement",
732
1185
  "SystemBotAttributeAggregateConfiguration",
733
1186
  "SystemBotFixup",
734
- "SystemBotServiceHook",
735
1187
  "SystemCommunicationDataPipeline",
736
1188
  "SystemCommunicationDataPipelineTrigger",
737
1189
  "SystemCommunicationEMailSenderConfiguration",
@@ -746,22 +1198,6 @@ const result = {
746
1198
  "SystemCommunicationSapConfiguration",
747
1199
  "SystemCommunicationTag",
748
1200
  "SystemGroupingAggregationRtQuery",
749
- "SystemIdentityApiResource",
750
- "SystemIdentityApiScope",
751
- "SystemIdentityAzureEntraIdIdentityProvider",
752
- "SystemIdentityClient",
753
- "SystemIdentityFacebookIdentityProvider",
754
- "SystemIdentityGoogleIdentityProvider",
755
- "SystemIdentityIdentityResource",
756
- "SystemIdentityMailNotificationConfiguration",
757
- "SystemIdentityMicrosoftAdIdentityProvider",
758
- "SystemIdentityMicrosoftIdentityProvider",
759
- "SystemIdentityOpenLdapIdentityProvider",
760
- "SystemIdentityPermission",
761
- "SystemIdentityPermissionRole",
762
- "SystemIdentityPersistedGrant",
763
- "SystemIdentityRole",
764
- "SystemIdentityUser",
765
1201
  "SystemMigrationHistory",
766
1202
  "SystemNotificationCssTemplateConfiguration",
767
1203
  "SystemNotificationEvent",
@@ -778,10 +1214,7 @@ const result = {
778
1214
  "SystemTenantModeConfiguration",
779
1215
  "SystemUIDashboard",
780
1216
  "SystemUIDashboardWidget",
781
- "SystemUIPage",
782
1217
  "SystemUIProcessDiagram",
783
- "SystemUIStudioRoot",
784
- "SystemUIStudioTreeItem",
785
1218
  "SystemUISymbolDefinition",
786
1219
  "SystemUISymbolLibrary"
787
1220
  ],
@@ -793,9 +1226,151 @@ const result = {
793
1226
  "BasicState",
794
1227
  "BasicTree",
795
1228
  "BasicTreeNode",
1229
+ "EnergyCommunityOperatingFacility",
1230
+ "EnvironmentWasteMeter",
1231
+ "IndustryBasicMachine",
1232
+ "IndustryEnergyBattery",
1233
+ "IndustryEnergyEnergyMeter",
1234
+ "IndustryEnergyInverter",
1235
+ "IndustryEnergyPhotovoltaic",
1236
+ "IndustryEnergyPhotovoltaicModule",
1237
+ "IndustryEnergyPhotovoltaicString",
1238
+ "IndustryFluidHeatMeter",
1239
+ "IndustryFluidWaterMeter",
1240
+ "IndustryMaintenanceCostCenter",
1241
+ "IndustryMaintenanceEmployee",
1242
+ "IndustryMaintenanceWorkplace",
1243
+ "OctoSdkDemoMeteringPoint",
1244
+ "OctoSdkDemoOperatingFacility"
1245
+ ],
1246
+ "EnergyCommunityBillingDocumentLineItem_BillingUnion": [
1247
+ "EnergyCommunityBillingDocumentLineItem"
1248
+ ],
1249
+ "EnergyCommunityBillingDocumentLineItem_ChildrenUnion": [
1250
+ "EnergyCommunityBillingDocumentLineItem"
1251
+ ],
1252
+ "EnergyCommunityBillingDocument_BillingUnion": [
1253
+ "EnergyCommunityBillingDocument"
1254
+ ],
1255
+ "EnergyCommunityBillingDocument_ParentUnion": [
1256
+ "EnergyCommunityBillingDocument"
1257
+ ],
1258
+ "EnergyCommunityCustomer_AssignedToUnion": [
1259
+ "EnergyCommunityCustomer"
1260
+ ],
1261
+ "EnergyCommunityCustomer_CustomerUnion": [
1262
+ "EnergyCommunityCustomer"
1263
+ ],
1264
+ "EnergyCommunityEdaMessage_MessagesUnion": [
1265
+ "EnergyCommunityEdaMessage"
1266
+ ],
1267
+ "EnergyCommunityEdaProcess_ProcessUnion": [
1268
+ "EnergyCommunityEdaProcess"
1269
+ ],
1270
+ "EnergyCommunityEnergyQuantity_AssignedToUnion": [
1271
+ "EnergyCommunityEnergyQuantity"
1272
+ ],
1273
+ "EnergyCommunityEnergyQuantity_ChildrenUnion": [
1274
+ "EnergyCommunityEnergyQuantity"
1275
+ ],
1276
+ "EnergyCommunityMeteringPointInterface": [
1277
+ "EnergyCommunityConsumer",
1278
+ "EnergyCommunityProducer"
1279
+ ],
1280
+ "EnergyCommunityMeteringPoint_ChildrenUnion": [
1281
+ "BasicAsset",
1282
+ "BasicCity",
1283
+ "BasicCountry",
1284
+ "BasicDistrict",
1285
+ "BasicState",
1286
+ "BasicTreeNode",
1287
+ "EnergyCommunityConsumer",
1288
+ "EnergyCommunityOperatingFacility",
1289
+ "EnergyCommunityProducer",
1290
+ "EnvironmentEnvironmentalGoal",
1291
+ "EnvironmentWasteMeter",
1292
+ "IndustryBasicMachine",
1293
+ "IndustryEnergyBattery",
1294
+ "IndustryEnergyEnergyMeter",
1295
+ "IndustryEnergyInverter",
1296
+ "IndustryEnergyPhotovoltaic",
1297
+ "IndustryEnergyPhotovoltaicModule",
1298
+ "IndustryEnergyPhotovoltaicString",
1299
+ "IndustryFluidHeatMeter",
1300
+ "IndustryFluidWaterMeter",
1301
+ "IndustryMaintenanceCostCenter",
1302
+ "IndustryMaintenanceEmployee",
1303
+ "IndustryMaintenanceWorkplace",
796
1304
  "OctoSdkDemoMeteringPoint",
797
1305
  "OctoSdkDemoOperatingFacility"
798
1306
  ],
1307
+ "EnergyCommunityMeteringPoint_ParentUnion": [
1308
+ "EnergyCommunityConsumer",
1309
+ "EnergyCommunityProducer"
1310
+ ],
1311
+ "EnergyCommunityOperatingFacility_FacilitiesUnion": [
1312
+ "EnergyCommunityOperatingFacility"
1313
+ ],
1314
+ "EnergyCommunityOperatingFacility_ParentUnion": [
1315
+ "EnergyCommunityOperatingFacility"
1316
+ ],
1317
+ "IndustryBasicEvent_EventUnion": [
1318
+ "IndustryBasicAlarm",
1319
+ "IndustryBasicEvent"
1320
+ ],
1321
+ "IndustryBasicEvent_EventsUnion": [
1322
+ "IndustryBasicAlarm",
1323
+ "IndustryBasicEvent"
1324
+ ],
1325
+ "IndustryBasicMachine_MachineUnion": [
1326
+ "IndustryBasicMachine",
1327
+ "IndustryEnergyBattery",
1328
+ "IndustryEnergyEnergyMeter",
1329
+ "IndustryEnergyInverter",
1330
+ "IndustryEnergyPhotovoltaicModule",
1331
+ "IndustryFluidHeatMeter",
1332
+ "IndustryFluidWaterMeter"
1333
+ ],
1334
+ "IndustryBasicRuntimeVariable_RuntimeVariablesUnion": [
1335
+ "IndustryBasicRuntimeVariable"
1336
+ ],
1337
+ "IndustryMaintenanceAccount_ParentUnion": [
1338
+ "IndustryMaintenanceAccount"
1339
+ ],
1340
+ "IndustryMaintenanceCostCenter_CostCenterUnion": [
1341
+ "IndustryMaintenanceCostCenter"
1342
+ ],
1343
+ "IndustryMaintenanceEmployee_EmployeeUnion": [
1344
+ "IndustryMaintenanceEmployee"
1345
+ ],
1346
+ "IndustryMaintenanceEnergyBalance_OrdersUnion": [
1347
+ "IndustryMaintenanceEnergyBalance"
1348
+ ],
1349
+ "IndustryMaintenanceJournalEntry_ChildrenUnion": [
1350
+ "IndustryMaintenanceJournalEntry"
1351
+ ],
1352
+ "IndustryMaintenanceJournalEntry_JournalEntriesUnion": [
1353
+ "IndustryMaintenanceJournalEntry"
1354
+ ],
1355
+ "IndustryMaintenanceOrderCosts_CostsUnion": [
1356
+ "IndustryMaintenanceOrderCosts"
1357
+ ],
1358
+ "IndustryMaintenanceOrderFeedback_ChildrenUnion": [
1359
+ "IndustryMaintenanceOrderFeedback"
1360
+ ],
1361
+ "IndustryMaintenanceOrderFeedback_OrderFeedbacksUnion": [
1362
+ "IndustryMaintenanceOrderFeedback"
1363
+ ],
1364
+ "IndustryMaintenanceOrder_OrderUnion": [
1365
+ "IndustryMaintenanceOrder"
1366
+ ],
1367
+ "IndustryMaintenanceOrder_OrdersUnion": [
1368
+ "IndustryMaintenanceEnergyBalance",
1369
+ "IndustryMaintenanceOrder"
1370
+ ],
1371
+ "IndustryMaintenanceOrder_ParentUnion": [
1372
+ "IndustryMaintenanceOrder"
1373
+ ],
799
1374
  "OctoSdkDemoCustomer_OwnedByUnion": [
800
1375
  "OctoSdkDemoCustomer"
801
1376
  ],
@@ -888,7 +1463,6 @@ const result = {
888
1463
  "SystemCommunicationEMailSenderConfiguration",
889
1464
  "SystemCommunicationEnergyCommunityConfiguration",
890
1465
  "SystemCommunicationSapConfiguration",
891
- "SystemIdentityMailNotificationConfiguration",
892
1466
  "SystemNotificationCssTemplateConfiguration",
893
1467
  "SystemReportingConnectionInfo",
894
1468
  "SystemTenantConfiguration",
@@ -898,7 +1472,6 @@ const result = {
898
1472
  "SystemCommunicationEMailSenderConfiguration",
899
1473
  "SystemCommunicationEnergyCommunityConfiguration",
900
1474
  "SystemCommunicationSapConfiguration",
901
- "SystemIdentityMailNotificationConfiguration",
902
1475
  "SystemNotificationCssTemplateConfiguration",
903
1476
  "SystemReportingConnectionInfo",
904
1477
  "SystemTenantConfiguration",
@@ -909,12 +1482,32 @@ const result = {
909
1482
  "BasicEmployee",
910
1483
  "BasicNamedEntity",
911
1484
  "BasicTree",
1485
+ "EnergyCommunityBillingDocument",
1486
+ "EnergyCommunityBillingDocumentLineItem",
1487
+ "EnergyCommunityConsumer",
1488
+ "EnergyCommunityCustomer",
1489
+ "EnergyCommunityEdaMessage",
1490
+ "EnergyCommunityEdaMeteringPoint",
1491
+ "EnergyCommunityEdaProcess",
1492
+ "EnergyCommunityEnergyPrice",
1493
+ "EnergyCommunityEnergyQuantity",
1494
+ "EnergyCommunityMeteringPoint",
1495
+ "EnergyCommunityProducer",
1496
+ "EnvironmentEnvironmentalGoal",
1497
+ "IndustryBasicAlarm",
1498
+ "IndustryBasicEvent",
1499
+ "IndustryBasicRuntimeVariable",
1500
+ "IndustryMaintenanceAccount",
1501
+ "IndustryMaintenanceEnergyBalance",
1502
+ "IndustryMaintenanceJournalEntry",
1503
+ "IndustryMaintenanceOrder",
1504
+ "IndustryMaintenanceOrderCosts",
1505
+ "IndustryMaintenanceOrderFeedback",
912
1506
  "OctoSdkDemoCustomer",
913
1507
  "SystemAggregationRtQuery",
914
1508
  "SystemAutoIncrement",
915
1509
  "SystemBotAttributeAggregateConfiguration",
916
1510
  "SystemBotFixup",
917
- "SystemBotServiceHook",
918
1511
  "SystemCommunicationAdapter",
919
1512
  "SystemCommunicationDataPipeline",
920
1513
  "SystemCommunicationDataPipelineTrigger",
@@ -933,24 +1526,6 @@ const result = {
933
1526
  "SystemCommunicationTag",
934
1527
  "SystemConfiguration",
935
1528
  "SystemGroupingAggregationRtQuery",
936
- "SystemIdentityApiResource",
937
- "SystemIdentityApiScope",
938
- "SystemIdentityAzureEntraIdIdentityProvider",
939
- "SystemIdentityClient",
940
- "SystemIdentityFacebookIdentityProvider",
941
- "SystemIdentityGoogleIdentityProvider",
942
- "SystemIdentityIdentityProvider",
943
- "SystemIdentityIdentityResource",
944
- "SystemIdentityMailNotificationConfiguration",
945
- "SystemIdentityMicrosoftAdIdentityProvider",
946
- "SystemIdentityMicrosoftIdentityProvider",
947
- "SystemIdentityOpenLdapIdentityProvider",
948
- "SystemIdentityPermission",
949
- "SystemIdentityPermissionRole",
950
- "SystemIdentityPersistedGrant",
951
- "SystemIdentityResource",
952
- "SystemIdentityRole",
953
- "SystemIdentityUser",
954
1529
  "SystemMigrationHistory",
955
1530
  "SystemNotificationCssTemplateConfiguration",
956
1531
  "SystemNotificationEvent",
@@ -970,10 +1545,7 @@ const result = {
970
1545
  "SystemTenantModeConfiguration",
971
1546
  "SystemUIDashboard",
972
1547
  "SystemUIDashboardWidget",
973
- "SystemUIPage",
974
1548
  "SystemUIProcessDiagram",
975
- "SystemUIStudioRoot",
976
- "SystemUIStudioTreeItem",
977
1549
  "SystemUISymbolDefinition",
978
1550
  "SystemUISymbolLibrary",
979
1551
  "SystemUIUIElement"
@@ -987,6 +1559,40 @@ const result = {
987
1559
  "BasicState",
988
1560
  "BasicTree",
989
1561
  "BasicTreeNode",
1562
+ "EnergyCommunityBillingDocument",
1563
+ "EnergyCommunityBillingDocumentLineItem",
1564
+ "EnergyCommunityConsumer",
1565
+ "EnergyCommunityCustomer",
1566
+ "EnergyCommunityEdaMessage",
1567
+ "EnergyCommunityEdaMeteringPoint",
1568
+ "EnergyCommunityEdaProcess",
1569
+ "EnergyCommunityEnergyPrice",
1570
+ "EnergyCommunityEnergyQuantity",
1571
+ "EnergyCommunityOperatingFacility",
1572
+ "EnergyCommunityProducer",
1573
+ "EnvironmentEnvironmentalGoal",
1574
+ "EnvironmentWasteMeter",
1575
+ "IndustryBasicAlarm",
1576
+ "IndustryBasicEvent",
1577
+ "IndustryBasicMachine",
1578
+ "IndustryBasicRuntimeVariable",
1579
+ "IndustryEnergyBattery",
1580
+ "IndustryEnergyEnergyMeter",
1581
+ "IndustryEnergyInverter",
1582
+ "IndustryEnergyPhotovoltaic",
1583
+ "IndustryEnergyPhotovoltaicModule",
1584
+ "IndustryEnergyPhotovoltaicString",
1585
+ "IndustryFluidHeatMeter",
1586
+ "IndustryFluidWaterMeter",
1587
+ "IndustryMaintenanceAccount",
1588
+ "IndustryMaintenanceCostCenter",
1589
+ "IndustryMaintenanceEmployee",
1590
+ "IndustryMaintenanceEnergyBalance",
1591
+ "IndustryMaintenanceJournalEntry",
1592
+ "IndustryMaintenanceOrder",
1593
+ "IndustryMaintenanceOrderCosts",
1594
+ "IndustryMaintenanceOrderFeedback",
1595
+ "IndustryMaintenanceWorkplace",
990
1596
  "OctoSdkDemoCustomer",
991
1597
  "OctoSdkDemoMeteringPoint",
992
1598
  "OctoSdkDemoOperatingFacility",
@@ -994,7 +1600,6 @@ const result = {
994
1600
  "SystemAutoIncrement",
995
1601
  "SystemBotAttributeAggregateConfiguration",
996
1602
  "SystemBotFixup",
997
- "SystemBotServiceHook",
998
1603
  "SystemCommunicationDataPipeline",
999
1604
  "SystemCommunicationDataPipelineTrigger",
1000
1605
  "SystemCommunicationEMailSenderConfiguration",
@@ -1009,22 +1614,6 @@ const result = {
1009
1614
  "SystemCommunicationSapConfiguration",
1010
1615
  "SystemCommunicationTag",
1011
1616
  "SystemGroupingAggregationRtQuery",
1012
- "SystemIdentityApiResource",
1013
- "SystemIdentityApiScope",
1014
- "SystemIdentityAzureEntraIdIdentityProvider",
1015
- "SystemIdentityClient",
1016
- "SystemIdentityFacebookIdentityProvider",
1017
- "SystemIdentityGoogleIdentityProvider",
1018
- "SystemIdentityIdentityResource",
1019
- "SystemIdentityMailNotificationConfiguration",
1020
- "SystemIdentityMicrosoftAdIdentityProvider",
1021
- "SystemIdentityMicrosoftIdentityProvider",
1022
- "SystemIdentityOpenLdapIdentityProvider",
1023
- "SystemIdentityPermission",
1024
- "SystemIdentityPermissionRole",
1025
- "SystemIdentityPersistedGrant",
1026
- "SystemIdentityRole",
1027
- "SystemIdentityUser",
1028
1617
  "SystemMigrationHistory",
1029
1618
  "SystemNotificationCssTemplateConfiguration",
1030
1619
  "SystemNotificationEvent",
@@ -1041,10 +1630,7 @@ const result = {
1041
1630
  "SystemTenantModeConfiguration",
1042
1631
  "SystemUIDashboard",
1043
1632
  "SystemUIDashboardWidget",
1044
- "SystemUIPage",
1045
1633
  "SystemUIProcessDiagram",
1046
- "SystemUIStudioRoot",
1047
- "SystemUIStudioTreeItem",
1048
1634
  "SystemUISymbolDefinition",
1049
1635
  "SystemUISymbolLibrary"
1050
1636
  ],
@@ -1057,6 +1643,40 @@ const result = {
1057
1643
  "BasicState",
1058
1644
  "BasicTree",
1059
1645
  "BasicTreeNode",
1646
+ "EnergyCommunityBillingDocument",
1647
+ "EnergyCommunityBillingDocumentLineItem",
1648
+ "EnergyCommunityConsumer",
1649
+ "EnergyCommunityCustomer",
1650
+ "EnergyCommunityEdaMessage",
1651
+ "EnergyCommunityEdaMeteringPoint",
1652
+ "EnergyCommunityEdaProcess",
1653
+ "EnergyCommunityEnergyPrice",
1654
+ "EnergyCommunityEnergyQuantity",
1655
+ "EnergyCommunityOperatingFacility",
1656
+ "EnergyCommunityProducer",
1657
+ "EnvironmentEnvironmentalGoal",
1658
+ "EnvironmentWasteMeter",
1659
+ "IndustryBasicAlarm",
1660
+ "IndustryBasicEvent",
1661
+ "IndustryBasicMachine",
1662
+ "IndustryBasicRuntimeVariable",
1663
+ "IndustryEnergyBattery",
1664
+ "IndustryEnergyEnergyMeter",
1665
+ "IndustryEnergyInverter",
1666
+ "IndustryEnergyPhotovoltaic",
1667
+ "IndustryEnergyPhotovoltaicModule",
1668
+ "IndustryEnergyPhotovoltaicString",
1669
+ "IndustryFluidHeatMeter",
1670
+ "IndustryFluidWaterMeter",
1671
+ "IndustryMaintenanceAccount",
1672
+ "IndustryMaintenanceCostCenter",
1673
+ "IndustryMaintenanceEmployee",
1674
+ "IndustryMaintenanceEnergyBalance",
1675
+ "IndustryMaintenanceJournalEntry",
1676
+ "IndustryMaintenanceOrder",
1677
+ "IndustryMaintenanceOrderCosts",
1678
+ "IndustryMaintenanceOrderFeedback",
1679
+ "IndustryMaintenanceWorkplace",
1060
1680
  "OctoSdkDemoCustomer",
1061
1681
  "OctoSdkDemoMeteringPoint",
1062
1682
  "OctoSdkDemoOperatingFacility",
@@ -1064,7 +1684,6 @@ const result = {
1064
1684
  "SystemAutoIncrement",
1065
1685
  "SystemBotAttributeAggregateConfiguration",
1066
1686
  "SystemBotFixup",
1067
- "SystemBotServiceHook",
1068
1687
  "SystemCommunicationDataPipeline",
1069
1688
  "SystemCommunicationDataPipelineTrigger",
1070
1689
  "SystemCommunicationEMailSenderConfiguration",
@@ -1079,22 +1698,6 @@ const result = {
1079
1698
  "SystemCommunicationSapConfiguration",
1080
1699
  "SystemCommunicationTag",
1081
1700
  "SystemGroupingAggregationRtQuery",
1082
- "SystemIdentityApiResource",
1083
- "SystemIdentityApiScope",
1084
- "SystemIdentityAzureEntraIdIdentityProvider",
1085
- "SystemIdentityClient",
1086
- "SystemIdentityFacebookIdentityProvider",
1087
- "SystemIdentityGoogleIdentityProvider",
1088
- "SystemIdentityIdentityResource",
1089
- "SystemIdentityMailNotificationConfiguration",
1090
- "SystemIdentityMicrosoftAdIdentityProvider",
1091
- "SystemIdentityMicrosoftIdentityProvider",
1092
- "SystemIdentityOpenLdapIdentityProvider",
1093
- "SystemIdentityPermission",
1094
- "SystemIdentityPermissionRole",
1095
- "SystemIdentityPersistedGrant",
1096
- "SystemIdentityRole",
1097
- "SystemIdentityUser",
1098
1701
  "SystemMigrationHistory",
1099
1702
  "SystemNotificationCssTemplateConfiguration",
1100
1703
  "SystemNotificationEvent",
@@ -1111,10 +1714,7 @@ const result = {
1111
1714
  "SystemTenantModeConfiguration",
1112
1715
  "SystemUIDashboard",
1113
1716
  "SystemUIDashboardWidget",
1114
- "SystemUIPage",
1115
1717
  "SystemUIProcessDiagram",
1116
- "SystemUIStudioRoot",
1117
- "SystemUIStudioTreeItem",
1118
1718
  "SystemUISymbolDefinition",
1119
1719
  "SystemUISymbolLibrary"
1120
1720
  ],
@@ -1127,6 +1727,40 @@ const result = {
1127
1727
  "BasicState",
1128
1728
  "BasicTree",
1129
1729
  "BasicTreeNode",
1730
+ "EnergyCommunityBillingDocument",
1731
+ "EnergyCommunityBillingDocumentLineItem",
1732
+ "EnergyCommunityConsumer",
1733
+ "EnergyCommunityCustomer",
1734
+ "EnergyCommunityEdaMessage",
1735
+ "EnergyCommunityEdaMeteringPoint",
1736
+ "EnergyCommunityEdaProcess",
1737
+ "EnergyCommunityEnergyPrice",
1738
+ "EnergyCommunityEnergyQuantity",
1739
+ "EnergyCommunityOperatingFacility",
1740
+ "EnergyCommunityProducer",
1741
+ "EnvironmentEnvironmentalGoal",
1742
+ "EnvironmentWasteMeter",
1743
+ "IndustryBasicAlarm",
1744
+ "IndustryBasicEvent",
1745
+ "IndustryBasicMachine",
1746
+ "IndustryBasicRuntimeVariable",
1747
+ "IndustryEnergyBattery",
1748
+ "IndustryEnergyEnergyMeter",
1749
+ "IndustryEnergyInverter",
1750
+ "IndustryEnergyPhotovoltaic",
1751
+ "IndustryEnergyPhotovoltaicModule",
1752
+ "IndustryEnergyPhotovoltaicString",
1753
+ "IndustryFluidHeatMeter",
1754
+ "IndustryFluidWaterMeter",
1755
+ "IndustryMaintenanceAccount",
1756
+ "IndustryMaintenanceCostCenter",
1757
+ "IndustryMaintenanceEmployee",
1758
+ "IndustryMaintenanceEnergyBalance",
1759
+ "IndustryMaintenanceJournalEntry",
1760
+ "IndustryMaintenanceOrder",
1761
+ "IndustryMaintenanceOrderCosts",
1762
+ "IndustryMaintenanceOrderFeedback",
1763
+ "IndustryMaintenanceWorkplace",
1130
1764
  "OctoSdkDemoCustomer",
1131
1765
  "OctoSdkDemoMeteringPoint",
1132
1766
  "OctoSdkDemoOperatingFacility",
@@ -1134,7 +1768,6 @@ const result = {
1134
1768
  "SystemAutoIncrement",
1135
1769
  "SystemBotAttributeAggregateConfiguration",
1136
1770
  "SystemBotFixup",
1137
- "SystemBotServiceHook",
1138
1771
  "SystemCommunicationDataPipeline",
1139
1772
  "SystemCommunicationDataPipelineTrigger",
1140
1773
  "SystemCommunicationEMailSenderConfiguration",
@@ -1149,22 +1782,6 @@ const result = {
1149
1782
  "SystemCommunicationSapConfiguration",
1150
1783
  "SystemCommunicationTag",
1151
1784
  "SystemGroupingAggregationRtQuery",
1152
- "SystemIdentityApiResource",
1153
- "SystemIdentityApiScope",
1154
- "SystemIdentityAzureEntraIdIdentityProvider",
1155
- "SystemIdentityClient",
1156
- "SystemIdentityFacebookIdentityProvider",
1157
- "SystemIdentityGoogleIdentityProvider",
1158
- "SystemIdentityIdentityResource",
1159
- "SystemIdentityMailNotificationConfiguration",
1160
- "SystemIdentityMicrosoftAdIdentityProvider",
1161
- "SystemIdentityMicrosoftIdentityProvider",
1162
- "SystemIdentityOpenLdapIdentityProvider",
1163
- "SystemIdentityPermission",
1164
- "SystemIdentityPermissionRole",
1165
- "SystemIdentityPersistedGrant",
1166
- "SystemIdentityRole",
1167
- "SystemIdentityUser",
1168
1785
  "SystemMigrationHistory",
1169
1786
  "SystemNotificationCssTemplateConfiguration",
1170
1787
  "SystemNotificationEvent",
@@ -1181,10 +1798,7 @@ const result = {
1181
1798
  "SystemTenantModeConfiguration",
1182
1799
  "SystemUIDashboard",
1183
1800
  "SystemUIDashboardWidget",
1184
- "SystemUIPage",
1185
1801
  "SystemUIProcessDiagram",
1186
- "SystemUIStudioRoot",
1187
- "SystemUIStudioTreeItem",
1188
1802
  "SystemUISymbolDefinition",
1189
1803
  "SystemUISymbolLibrary"
1190
1804
  ],
@@ -1197,6 +1811,40 @@ const result = {
1197
1811
  "BasicState",
1198
1812
  "BasicTree",
1199
1813
  "BasicTreeNode",
1814
+ "EnergyCommunityBillingDocument",
1815
+ "EnergyCommunityBillingDocumentLineItem",
1816
+ "EnergyCommunityConsumer",
1817
+ "EnergyCommunityCustomer",
1818
+ "EnergyCommunityEdaMessage",
1819
+ "EnergyCommunityEdaMeteringPoint",
1820
+ "EnergyCommunityEdaProcess",
1821
+ "EnergyCommunityEnergyPrice",
1822
+ "EnergyCommunityEnergyQuantity",
1823
+ "EnergyCommunityOperatingFacility",
1824
+ "EnergyCommunityProducer",
1825
+ "EnvironmentEnvironmentalGoal",
1826
+ "EnvironmentWasteMeter",
1827
+ "IndustryBasicAlarm",
1828
+ "IndustryBasicEvent",
1829
+ "IndustryBasicMachine",
1830
+ "IndustryBasicRuntimeVariable",
1831
+ "IndustryEnergyBattery",
1832
+ "IndustryEnergyEnergyMeter",
1833
+ "IndustryEnergyInverter",
1834
+ "IndustryEnergyPhotovoltaic",
1835
+ "IndustryEnergyPhotovoltaicModule",
1836
+ "IndustryEnergyPhotovoltaicString",
1837
+ "IndustryFluidHeatMeter",
1838
+ "IndustryFluidWaterMeter",
1839
+ "IndustryMaintenanceAccount",
1840
+ "IndustryMaintenanceCostCenter",
1841
+ "IndustryMaintenanceEmployee",
1842
+ "IndustryMaintenanceEnergyBalance",
1843
+ "IndustryMaintenanceJournalEntry",
1844
+ "IndustryMaintenanceOrder",
1845
+ "IndustryMaintenanceOrderCosts",
1846
+ "IndustryMaintenanceOrderFeedback",
1847
+ "IndustryMaintenanceWorkplace",
1200
1848
  "OctoSdkDemoCustomer",
1201
1849
  "OctoSdkDemoMeteringPoint",
1202
1850
  "OctoSdkDemoOperatingFacility",
@@ -1204,7 +1852,6 @@ const result = {
1204
1852
  "SystemAutoIncrement",
1205
1853
  "SystemBotAttributeAggregateConfiguration",
1206
1854
  "SystemBotFixup",
1207
- "SystemBotServiceHook",
1208
1855
  "SystemCommunicationDataPipeline",
1209
1856
  "SystemCommunicationDataPipelineTrigger",
1210
1857
  "SystemCommunicationEMailSenderConfiguration",
@@ -1219,22 +1866,6 @@ const result = {
1219
1866
  "SystemCommunicationSapConfiguration",
1220
1867
  "SystemCommunicationTag",
1221
1868
  "SystemGroupingAggregationRtQuery",
1222
- "SystemIdentityApiResource",
1223
- "SystemIdentityApiScope",
1224
- "SystemIdentityAzureEntraIdIdentityProvider",
1225
- "SystemIdentityClient",
1226
- "SystemIdentityFacebookIdentityProvider",
1227
- "SystemIdentityGoogleIdentityProvider",
1228
- "SystemIdentityIdentityResource",
1229
- "SystemIdentityMailNotificationConfiguration",
1230
- "SystemIdentityMicrosoftAdIdentityProvider",
1231
- "SystemIdentityMicrosoftIdentityProvider",
1232
- "SystemIdentityOpenLdapIdentityProvider",
1233
- "SystemIdentityPermission",
1234
- "SystemIdentityPermissionRole",
1235
- "SystemIdentityPersistedGrant",
1236
- "SystemIdentityRole",
1237
- "SystemIdentityUser",
1238
1869
  "SystemMigrationHistory",
1239
1870
  "SystemNotificationCssTemplateConfiguration",
1240
1871
  "SystemNotificationEvent",
@@ -1251,26 +1882,10 @@ const result = {
1251
1882
  "SystemTenantModeConfiguration",
1252
1883
  "SystemUIDashboard",
1253
1884
  "SystemUIDashboardWidget",
1254
- "SystemUIPage",
1255
1885
  "SystemUIProcessDiagram",
1256
- "SystemUIStudioRoot",
1257
- "SystemUIStudioTreeItem",
1258
1886
  "SystemUISymbolDefinition",
1259
1887
  "SystemUISymbolLibrary"
1260
1888
  ],
1261
- "SystemIdentityIdentityProviderInterface": [
1262
- "SystemIdentityAzureEntraIdIdentityProvider",
1263
- "SystemIdentityFacebookIdentityProvider",
1264
- "SystemIdentityGoogleIdentityProvider",
1265
- "SystemIdentityMicrosoftAdIdentityProvider",
1266
- "SystemIdentityMicrosoftIdentityProvider",
1267
- "SystemIdentityOpenLdapIdentityProvider"
1268
- ],
1269
- "SystemIdentityResourceInterface": [
1270
- "SystemIdentityApiResource",
1271
- "SystemIdentityApiScope",
1272
- "SystemIdentityIdentityResource"
1273
- ],
1274
1889
  "SystemPersistentQueryInterface": [
1275
1890
  "SystemAggregationRtQuery",
1276
1891
  "SystemGroupingAggregationRtQuery",
@@ -1300,13 +1915,6 @@ const result = {
1300
1915
  "SystemUIDashboard_ParentUnion": [
1301
1916
  "SystemUIDashboard"
1302
1917
  ],
1303
- "SystemUIStudioTreeItem_ChildrenUnion": [
1304
- "SystemUIStudioTreeItem"
1305
- ],
1306
- "SystemUIStudioTreeItem_ParentUnion": [
1307
- "SystemUIStudioRoot",
1308
- "SystemUIStudioTreeItem"
1309
- ],
1310
1918
  "SystemUISymbolDefinition_ChildrenUnion": [
1311
1919
  "SystemUISymbolDefinition"
1312
1920
  ],
@@ -1316,10 +1924,7 @@ const result = {
1316
1924
  "SystemUIUIElementInterface": [
1317
1925
  "SystemUIDashboard",
1318
1926
  "SystemUIDashboardWidget",
1319
- "SystemUIPage",
1320
1927
  "SystemUIProcessDiagram",
1321
- "SystemUIStudioRoot",
1322
- "SystemUIStudioTreeItem",
1323
1928
  "SystemUISymbolDefinition",
1324
1929
  "SystemUISymbolLibrary"
1325
1930
  ]
@@ -1351,10 +1956,10 @@ class GetCkTypeAttributesDtoGQL extends i1.Query {
1351
1956
  constructor(apollo) {
1352
1957
  super(apollo);
1353
1958
  }
1354
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: GetCkTypeAttributesDtoGQL, deps: [{ token: i1.Apollo }], target: i0.ɵɵFactoryTarget.Injectable });
1355
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: GetCkTypeAttributesDtoGQL, providedIn: 'root' });
1959
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: GetCkTypeAttributesDtoGQL, deps: [{ token: i1.Apollo }], target: i0.ɵɵFactoryTarget.Injectable });
1960
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: GetCkTypeAttributesDtoGQL, providedIn: 'root' });
1356
1961
  }
1357
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: GetCkTypeAttributesDtoGQL, decorators: [{
1962
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: GetCkTypeAttributesDtoGQL, decorators: [{
1358
1963
  type: Injectable,
1359
1964
  args: [{
1360
1965
  providedIn: 'root'
@@ -1386,10 +1991,10 @@ class GetCkRecordAttributesDtoGQL extends i1.Query {
1386
1991
  constructor(apollo) {
1387
1992
  super(apollo);
1388
1993
  }
1389
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: GetCkRecordAttributesDtoGQL, deps: [{ token: i1.Apollo }], target: i0.ɵɵFactoryTarget.Injectable });
1390
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: GetCkRecordAttributesDtoGQL, providedIn: 'root' });
1994
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: GetCkRecordAttributesDtoGQL, deps: [{ token: i1.Apollo }], target: i0.ɵɵFactoryTarget.Injectable });
1995
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: GetCkRecordAttributesDtoGQL, providedIn: 'root' });
1391
1996
  }
1392
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: GetCkRecordAttributesDtoGQL, decorators: [{
1997
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: GetCkRecordAttributesDtoGQL, decorators: [{
1393
1998
  type: Injectable,
1394
1999
  args: [{
1395
2000
  providedIn: 'root'
@@ -1397,18 +2002,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
1397
2002
  }], ctorParameters: () => [{ type: i1.Apollo }] });
1398
2003
 
1399
2004
  const GetCkTypeAvailableQueryColumnsDocumentDto = gql `
1400
- query getCkTypeAvailableQueryColumns($after: String, $first: Int, $rtCkId: String!, $filter: String) {
2005
+ query getCkTypeAvailableQueryColumns($after: String, $first: Int, $rtCkId: String!, $filter: String, $attributeValueType: AttributeValueType, $searchTerm: String, $includeNavigationProperties: Boolean, $maxDepth: Int) {
1401
2006
  constructionKit {
1402
2007
  types(rtCkId: $rtCkId) {
1403
2008
  items {
1404
2009
  ckTypeId {
1405
2010
  fullName
2011
+ semanticVersionedFullName
1406
2012
  }
1407
2013
  rtCkTypeId
1408
2014
  availableQueryColumns(
1409
2015
  after: $after
1410
2016
  first: $first
1411
2017
  attributePathContains: $filter
2018
+ attributeValueType: $attributeValueType
2019
+ searchTerm: $searchTerm
2020
+ includeNavigationProperties: $includeNavigationProperties
2021
+ maxDepth: $maxDepth
1412
2022
  ) {
1413
2023
  totalCount
1414
2024
  pageInfo {
@@ -1420,6 +2030,7 @@ const GetCkTypeAvailableQueryColumnsDocumentDto = gql `
1420
2030
  items {
1421
2031
  attributePath
1422
2032
  attributeValueType
2033
+ description
1423
2034
  }
1424
2035
  }
1425
2036
  }
@@ -1432,10 +2043,10 @@ class GetCkTypeAvailableQueryColumnsDtoGQL extends i1.Query {
1432
2043
  constructor(apollo) {
1433
2044
  super(apollo);
1434
2045
  }
1435
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: GetCkTypeAvailableQueryColumnsDtoGQL, deps: [{ token: i1.Apollo }], target: i0.ɵɵFactoryTarget.Injectable });
1436
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: GetCkTypeAvailableQueryColumnsDtoGQL, providedIn: 'root' });
2046
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: GetCkTypeAvailableQueryColumnsDtoGQL, deps: [{ token: i1.Apollo }], target: i0.ɵɵFactoryTarget.Injectable });
2047
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: GetCkTypeAvailableQueryColumnsDtoGQL, providedIn: 'root' });
1437
2048
  }
1438
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: GetCkTypeAvailableQueryColumnsDtoGQL, decorators: [{
2049
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: GetCkTypeAvailableQueryColumnsDtoGQL, decorators: [{
1439
2050
  type: Injectable,
1440
2051
  args: [{
1441
2052
  providedIn: 'root'
@@ -1480,10 +2091,10 @@ class GetCkTypesDtoGQL extends i1.Query {
1480
2091
  constructor(apollo) {
1481
2092
  super(apollo);
1482
2093
  }
1483
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: GetCkTypesDtoGQL, deps: [{ token: i1.Apollo }], target: i0.ɵɵFactoryTarget.Injectable });
1484
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: GetCkTypesDtoGQL, providedIn: 'root' });
2094
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: GetCkTypesDtoGQL, deps: [{ token: i1.Apollo }], target: i0.ɵɵFactoryTarget.Injectable });
2095
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: GetCkTypesDtoGQL, providedIn: 'root' });
1485
2096
  }
1486
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: GetCkTypesDtoGQL, decorators: [{
2097
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: GetCkTypesDtoGQL, decorators: [{
1487
2098
  type: Injectable,
1488
2099
  args: [{
1489
2100
  providedIn: 'root'
@@ -1528,10 +2139,10 @@ class GetDerivedCkTypesDtoGQL extends i1.Query {
1528
2139
  constructor(apollo) {
1529
2140
  super(apollo);
1530
2141
  }
1531
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: GetDerivedCkTypesDtoGQL, deps: [{ token: i1.Apollo }], target: i0.ɵɵFactoryTarget.Injectable });
1532
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: GetDerivedCkTypesDtoGQL, providedIn: 'root' });
2142
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: GetDerivedCkTypesDtoGQL, deps: [{ token: i1.Apollo }], target: i0.ɵɵFactoryTarget.Injectable });
2143
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: GetDerivedCkTypesDtoGQL, providedIn: 'root' });
1533
2144
  }
1534
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: GetDerivedCkTypesDtoGQL, decorators: [{
2145
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: GetDerivedCkTypesDtoGQL, decorators: [{
1535
2146
  type: Injectable,
1536
2147
  args: [{
1537
2148
  providedIn: 'root'
@@ -1563,10 +2174,10 @@ class GetCkModelByIdDtoGQL extends i1.Query {
1563
2174
  constructor(apollo) {
1564
2175
  super(apollo);
1565
2176
  }
1566
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: GetCkModelByIdDtoGQL, deps: [{ token: i1.Apollo }], target: i0.ɵɵFactoryTarget.Injectable });
1567
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: GetCkModelByIdDtoGQL, providedIn: 'root' });
2177
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: GetCkModelByIdDtoGQL, deps: [{ token: i1.Apollo }], target: i0.ɵɵFactoryTarget.Injectable });
2178
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: GetCkModelByIdDtoGQL, providedIn: 'root' });
1568
2179
  }
1569
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: GetCkModelByIdDtoGQL, decorators: [{
2180
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: GetCkModelByIdDtoGQL, decorators: [{
1570
2181
  type: Injectable,
1571
2182
  args: [{
1572
2183
  providedIn: 'root'
@@ -1589,13 +2200,17 @@ const CONFIGURATION_SERVICE = new InjectionToken('IConfigurationService');
1589
2200
 
1590
2201
  class AttributeSelectorService {
1591
2202
  getCkTypeAvailableQueryColumnsGQL = inject(GetCkTypeAvailableQueryColumnsDtoGQL);
1592
- getAvailableAttributes(ckTypeId, filter, first = 1000, after) {
2203
+ getAvailableAttributes(ckTypeId, filter, first = 1000, after, attributeValueType, searchTerm, includeNavigationProperties, maxDepth) {
1593
2204
  return this.getCkTypeAvailableQueryColumnsGQL.fetch({
1594
2205
  variables: {
1595
2206
  rtCkId: ckTypeId,
1596
2207
  filter: filter,
1597
2208
  first: first,
1598
- after: after
2209
+ after: after,
2210
+ attributeValueType: attributeValueType,
2211
+ searchTerm: searchTerm,
2212
+ includeNavigationProperties: includeNavigationProperties,
2213
+ maxDepth: maxDepth
1599
2214
  },
1600
2215
  fetchPolicy: 'network-only'
1601
2216
  }).pipe(map(result => {
@@ -1607,7 +2222,8 @@ class AttributeSelectorService {
1607
2222
  .filter((item) => item !== null)
1608
2223
  .map(item => ({
1609
2224
  attributePath: item.attributePath,
1610
- attributeValueType: item.attributeValueType
2225
+ attributeValueType: item.attributeValueType,
2226
+ description: item.description
1611
2227
  }));
1612
2228
  return {
1613
2229
  items,
@@ -1615,10 +2231,10 @@ class AttributeSelectorService {
1615
2231
  };
1616
2232
  }));
1617
2233
  }
1618
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: AttributeSelectorService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1619
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: AttributeSelectorService, providedIn: 'root' });
2234
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: AttributeSelectorService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2235
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: AttributeSelectorService, providedIn: 'root' });
1620
2236
  }
1621
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: AttributeSelectorService, decorators: [{
2237
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: AttributeSelectorService, decorators: [{
1622
2238
  type: Injectable,
1623
2239
  args: [{
1624
2240
  providedIn: 'root'
@@ -1686,10 +2302,10 @@ class CkTypeAttributeService {
1686
2302
  return of([]);
1687
2303
  }));
1688
2304
  }
1689
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: CkTypeAttributeService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1690
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: CkTypeAttributeService, providedIn: 'root' });
2305
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: CkTypeAttributeService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2306
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: CkTypeAttributeService, providedIn: 'root' });
1691
2307
  }
1692
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: CkTypeAttributeService, decorators: [{
2308
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: CkTypeAttributeService, decorators: [{
1693
2309
  type: Injectable,
1694
2310
  args: [{
1695
2311
  providedIn: 'root'
@@ -1715,10 +2331,10 @@ class GetCkTypeByRtCkTypeIdDtoGQL extends i1.Query {
1715
2331
  constructor(apollo) {
1716
2332
  super(apollo);
1717
2333
  }
1718
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: GetCkTypeByRtCkTypeIdDtoGQL, deps: [{ token: i1.Apollo }], target: i0.ɵɵFactoryTarget.Injectable });
1719
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: GetCkTypeByRtCkTypeIdDtoGQL, providedIn: 'root' });
2334
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: GetCkTypeByRtCkTypeIdDtoGQL, deps: [{ token: i1.Apollo }], target: i0.ɵɵFactoryTarget.Injectable });
2335
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: GetCkTypeByRtCkTypeIdDtoGQL, providedIn: 'root' });
1720
2336
  }
1721
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: GetCkTypeByRtCkTypeIdDtoGQL, decorators: [{
2337
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: GetCkTypeByRtCkTypeIdDtoGQL, decorators: [{
1722
2338
  type: Injectable,
1723
2339
  args: [{
1724
2340
  providedIn: 'root'
@@ -1846,10 +2462,10 @@ class CkTypeSelectorService {
1846
2462
  description: item.description ?? undefined
1847
2463
  };
1848
2464
  }
1849
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: CkTypeSelectorService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1850
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: CkTypeSelectorService, providedIn: 'root' });
2465
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: CkTypeSelectorService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2466
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: CkTypeSelectorService, providedIn: 'root' });
1851
2467
  }
1852
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: CkTypeSelectorService, decorators: [{
2468
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: CkTypeSelectorService, decorators: [{
1853
2469
  type: Injectable,
1854
2470
  args: [{
1855
2471
  providedIn: 'root'
@@ -1954,10 +2570,10 @@ class CkModelService {
1954
2570
  }
1955
2571
  return a.patch - b.patch;
1956
2572
  }
1957
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: CkModelService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1958
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: CkModelService, providedIn: 'root' });
2573
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: CkModelService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2574
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: CkModelService, providedIn: 'root' });
1959
2575
  }
1960
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: CkModelService, decorators: [{
2576
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: CkModelService, decorators: [{
1961
2577
  type: Injectable,
1962
2578
  args: [{
1963
2579
  providedIn: 'root'
@@ -2079,10 +2695,10 @@ class AssetRepoService {
2079
2695
  }
2080
2696
  return null;
2081
2697
  }
2082
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: AssetRepoService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2083
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: AssetRepoService, providedIn: 'root' });
2698
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: AssetRepoService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2699
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: AssetRepoService, providedIn: 'root' });
2084
2700
  }
2085
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: AssetRepoService, decorators: [{
2701
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: AssetRepoService, decorators: [{
2086
2702
  type: Injectable,
2087
2703
  args: [{
2088
2704
  providedIn: 'root'
@@ -2152,10 +2768,10 @@ class BotService {
2152
2768
  }
2153
2769
  return null;
2154
2770
  }
2155
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: BotService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2156
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: BotService, providedIn: 'root' });
2771
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: BotService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2772
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: BotService, providedIn: 'root' });
2157
2773
  }
2158
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: BotService, decorators: [{
2774
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: BotService, decorators: [{
2159
2775
  type: Injectable,
2160
2776
  args: [{
2161
2777
  providedIn: 'root'
@@ -2199,10 +2815,10 @@ class HealthService {
2199
2815
  async getMeshAdapterAsync() {
2200
2816
  return this.getStatusAsync(this.configurationService.config.meshAdapterUrl);
2201
2817
  }
2202
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: HealthService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2203
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: HealthService, providedIn: 'root' });
2818
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: HealthService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2819
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: HealthService, providedIn: 'root' });
2204
2820
  }
2205
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: HealthService, decorators: [{
2821
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: HealthService, decorators: [{
2206
2822
  type: Injectable,
2207
2823
  args: [{
2208
2824
  providedIn: 'root'
@@ -2404,10 +3020,10 @@ class IdentityService {
2404
3020
  }));
2405
3021
  }
2406
3022
  }
2407
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: IdentityService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2408
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: IdentityService, providedIn: 'root' });
3023
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: IdentityService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
3024
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: IdentityService, providedIn: 'root' });
2409
3025
  }
2410
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: IdentityService, decorators: [{
3026
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: IdentityService, decorators: [{
2411
3027
  type: Injectable,
2412
3028
  args: [{
2413
3029
  providedIn: 'root'
@@ -2466,10 +3082,10 @@ class JobManagementService {
2466
3082
  }
2467
3083
  return false;
2468
3084
  }
2469
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: JobManagementService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2470
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: JobManagementService, providedIn: 'root' });
3085
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: JobManagementService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
3086
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: JobManagementService, providedIn: 'root' });
2471
3087
  }
2472
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: JobManagementService, decorators: [{
3088
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: JobManagementService, decorators: [{
2473
3089
  type: Injectable,
2474
3090
  args: [{
2475
3091
  providedIn: 'root'
@@ -2739,10 +3355,10 @@ class CommunicationService {
2739
3355
  }
2740
3356
  return null;
2741
3357
  }
2742
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: CommunicationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2743
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: CommunicationService, providedIn: 'root' });
3358
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: CommunicationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
3359
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: CommunicationService, providedIn: 'root' });
2744
3360
  }
2745
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: CommunicationService, decorators: [{
3361
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: CommunicationService, decorators: [{
2746
3362
  type: Injectable,
2747
3363
  args: [{
2748
3364
  providedIn: 'root'
@@ -2817,10 +3433,10 @@ class TusUploadService {
2817
3433
  const r = await firstValueFrom(this.httpClient.post(botServicesUrl + 'system/v1/jobs/restore-from-upload', null, { params, observe: 'response' }));
2818
3434
  return r.body;
2819
3435
  }
2820
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: TusUploadService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2821
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: TusUploadService, providedIn: 'root' });
3436
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: TusUploadService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
3437
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: TusUploadService, providedIn: 'root' });
2822
3438
  }
2823
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: TusUploadService, decorators: [{
3439
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: TusUploadService, decorators: [{
2824
3440
  type: Injectable,
2825
3441
  args: [{
2826
3442
  providedIn: 'root'
@@ -2885,11 +3501,11 @@ class OctoServicesModule {
2885
3501
  ]
2886
3502
  };
2887
3503
  }
2888
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: OctoServicesModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2889
- static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "21.1.5", ngImport: i0, type: OctoServicesModule });
2890
- static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: OctoServicesModule });
3504
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: OctoServicesModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
3505
+ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "21.2.0", ngImport: i0, type: OctoServicesModule });
3506
+ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: OctoServicesModule });
2891
3507
  }
2892
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: OctoServicesModule, decorators: [{
3508
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.0", ngImport: i0, type: OctoServicesModule, decorators: [{
2893
3509
  type: NgModule,
2894
3510
  args: [{
2895
3511
  declarations: [],
@@ -2901,7 +3517,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
2901
3517
  /**
2902
3518
  * Backward-compatible AssetRepoGraphQlDataSource for legacy apps.
2903
3519
  *
2904
- * New code in Refinery Studio should use OctoGraphQlDataSource from @meshmakers/octo-ui.
3520
+ * New code should use OctoGraphQlDataSource from @meshmakers/octo-ui.
2905
3521
  */
2906
3522
  class GraphQlDataSource extends DataSourceBase {
2907
3523
  }
@@ -2954,7 +3570,7 @@ class AssetRepoGraphQlDataSource extends GraphQlDataSource {
2954
3570
  const variables = this.createVariables(skip, take, searchFilter, fieldFilter, sort);
2955
3571
  this.queryRef = this.query.watch({ variables, errorPolicy: 'all' });
2956
3572
  this.subscription = this.queryRef.valueChanges
2957
- .pipe(map$1((v, i) => this.executeLoad(v, i)))
3573
+ .pipe(filter((v) => !v['loading']), map$1((v, i) => this.executeLoad(v, i)))
2958
3574
  .subscribe({
2959
3575
  next: (pagedResult) => super.onCompleteLoad(pagedResult),
2960
3576
  error: (e) => {
@@ -2964,7 +3580,6 @@ class AssetRepoGraphQlDataSource extends GraphQlDataSource {
2964
3580
  }
2965
3581
  });
2966
3582
  }
2967
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
2968
3583
  executeLoad(_value, _index) {
2969
3584
  return new PagedResultDto();
2970
3585
  }
@@ -3157,5 +3772,5 @@ function provideOctoServices(octoServiceOptions) {
3157
3772
  * Generated bundle index. Do not edit.
3158
3773
  */
3159
3774
 
3160
- export { AggregationInputTypesDto, AggregationTypesDto, AssetRepoGraphQlDataSource, AssetRepoService, AssociationModOptionsDto, AttributeSelectorService, AttributeValueTypeDto, BasicLegalEntityTypeDto, BasicSalutationDto, BasicTypeOfTelephoneBasicDto, BasicTypeOfTelephoneEnhancedDto, BasicUnitOfMeasureDto, BotService, CONFIGURATION_SERVICE, CkExtensionUpdateOperationsDto, CkModelService, CkTypeAttributeService, CkTypeMetaData, CkTypeSelectorService, CommunicationService, DeleteStrategiesDto, DeploymentState, FieldFilterOperatorsDto, GetCkModelByIdDocumentDto, GetCkModelByIdDtoGQL, GetCkRecordAttributesDocumentDto, GetCkRecordAttributesDtoGQL, GetCkTypeAttributesDocumentDto, GetCkTypeAttributesDtoGQL, GetCkTypeAvailableQueryColumnsDocumentDto, GetCkTypeAvailableQueryColumnsDtoGQL, GetCkTypesDocumentDto, GetCkTypesDtoGQL, GetDerivedCkTypesDocumentDto, GetDerivedCkTypesDtoGQL, GraphDirectionDto, GraphQL, GraphQLCloneIgnoredProperties, GraphQLCommonIgnoredProperties, GraphQlDataSource, HealthService, HealthStatus, IdentityService, ImportStrategyDto, JobManagementService, LevelMetaData, LoggerSeverity, ModelStateDto, MultiplicitiesDto, OctoErrorLink, OctoGraphQLServiceBase, OctoSdkDemoCustomerStatusDto, OctoSdkDemoNetworkOperatorDto, OctoSdkDemoOperatingStatusDto, OctoServiceOptions, OctoServicesModule, PagedGraphResultDto, ProgressValue, ProgressWindowService, RtAssociationMetaData, SearchFilterTypesDto, SortOrdersDto, SystemAggregationTypesDto, SystemCommunicationCommunicationStateDto, SystemCommunicationConfigurationStateDto, SystemCommunicationDeploymentStateDto, SystemCommunicationPipelineExecutionStatusDto, SystemCommunicationPipelineTriggerTypeDto, SystemEnvironmentModesDto, SystemFieldFilterOperatorDto, SystemIdentityTokenExpirationDto, SystemIdentityTokenTypeDto, SystemIdentityTokenUsageDto, SystemMaintenanceLevelsDto, SystemNavigationFilterModesDto, SystemNotificationEventLevelsDto, SystemNotificationEventSourcesDto, SystemNotificationEventStatesDto, SystemNotificationNotificationTypesDto, SystemNotificationRenderingTypesDto, SystemQueryTypesDto, SystemSortOrdersDto, TENANT_ID_PROVIDER, TusUploadService, UpdateTypeDto, result as possibleTypes, provideOctoServices };
3775
+ export { AggregationInputTypesDto, AggregationTypeDto, AggregationTypesDto, AssetRepoGraphQlDataSource, AssetRepoService, AssociationModOptionsDto, AttributeSelectorService, AttributeValueTypeDto, BasicLegalEntityTypeDto, BasicSalutationDto, BasicTypeOfTelephoneBasicDto, BasicTypeOfTelephoneEnhancedDto, BasicUnitOfMeasureDto, BotService, CONFIGURATION_SERVICE, CkExtensionUpdateOperationsDto, CkModelService, CkTypeAttributeService, CkTypeMetaData, CkTypeSelectorService, CommunicationService, DeleteStrategiesDto, DeploymentState, EnergyCommunityBillingCycleDto, EnergyCommunityBillingDocumentStateDto, EnergyCommunityBillingTypeDto, EnergyCommunityDataQualityDto, EnergyCommunityFacilityTypeDto, EnergyCommunityProductionTypeDto, EnergyCommunityStateDto, EnergyCommunityTaxProcedureCreditNoteDto, EnvironmentGoalStateDto, FieldFilterOperatorsDto, GetCkModelByIdDocumentDto, GetCkModelByIdDtoGQL, GetCkRecordAttributesDocumentDto, GetCkRecordAttributesDtoGQL, GetCkTypeAttributesDocumentDto, GetCkTypeAttributesDtoGQL, GetCkTypeAvailableQueryColumnsDocumentDto, GetCkTypeAvailableQueryColumnsDtoGQL, GetCkTypesDocumentDto, GetCkTypesDtoGQL, GetDerivedCkTypesDocumentDto, GetDerivedCkTypesDtoGQL, GraphDirectionDto, GraphQL, GraphQLCloneIgnoredProperties, GraphQLCommonIgnoredProperties, GraphQlDataSource, HealthService, HealthStatus, IdentityService, ImportStrategyDto, IndustryBasicAlarmPriorityDto, IndustryBasicAlarmSourceTypeDto, IndustryBasicAlarmStateDto, IndustryBasicAlarmTypeDto, IndustryBasicIecDataTypeDto, IndustryBasicMachineCapabilitiesDto, IndustryBasicMachineStateDto, IndustryMaintenanceAggregationTypeDto, IndustryMaintenanceCostCategoryDto, IndustryMaintenanceEnergyBalanceGroupDto, IndustryMaintenanceEnergyBalanceProductDto, IndustryMaintenanceEnergyBalanceUnitDto, IndustryMaintenanceOrderPriorityDto, IndustryMaintenanceOrderStateDto, IndustryMaintenanceOrderTypeDto, IndustryMaintenanceServiceTypeDto, JobManagementService, LevelMetaData, LoggerSeverity, ModelStateDto, MultiplicitiesDto, NavigationFilterModeDto, OctoErrorLink, OctoGraphQLServiceBase, OctoSdkDemoCustomerStatusDto, OctoSdkDemoNetworkOperatorDto, OctoSdkDemoOperatingStatusDto, OctoServiceOptions, OctoServicesModule, PagedGraphResultDto, ProgressValue, ProgressWindowService, QueryModeDto, RtAssociationMetaData, SearchFilterTypesDto, SortOrderDto, SortOrdersDto, SystemAggregationTypesDto, SystemCommunicationCommunicationStateDto, SystemCommunicationConfigurationStateDto, SystemCommunicationDeploymentStateDto, SystemCommunicationPipelineExecutionStatusDto, SystemCommunicationPipelineTriggerTypeDto, SystemEnvironmentModesDto, SystemFieldFilterOperatorDto, SystemMaintenanceLevelsDto, SystemNavigationFilterModesDto, SystemNotificationEventLevelsDto, SystemNotificationEventSourcesDto, SystemNotificationEventStatesDto, SystemNotificationNotificationTypesDto, SystemNotificationRenderingTypesDto, SystemQueryTypesDto, SystemSortOrdersDto, TENANT_ID_PROVIDER, TusUploadService, UpdateTypeDto, result as possibleTypes, provideOctoServices };
3161
3776
  //# sourceMappingURL=meshmakers-octo-services.mjs.map