@meshmakers/octo-services 3.4.290 → 3.4.310

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.
@@ -468,6 +468,15 @@ var BlueprintUpdateModeDto;
468
468
  BlueprintUpdateModeDto["MigrationDto"] = "MIGRATION";
469
469
  BlueprintUpdateModeDto["SafeDto"] = "SAFE";
470
470
  })(BlueprintUpdateModeDto || (BlueprintUpdateModeDto = {}));
471
+ /** Bucket-boundary alignment for a rollup archive: FIXED_SIZE / CALENDAR_DAY / ISO_8601_WEEK / CALENDAR_MONTH / CALENDAR_YEAR. */
472
+ var BucketAlignmentInputDto;
473
+ (function (BucketAlignmentInputDto) {
474
+ BucketAlignmentInputDto["CalendarDayDto"] = "CALENDAR_DAY";
475
+ BucketAlignmentInputDto["CalendarMonthDto"] = "CALENDAR_MONTH";
476
+ BucketAlignmentInputDto["CalendarYearDto"] = "CALENDAR_YEAR";
477
+ BucketAlignmentInputDto["FixedSizeDto"] = "FIXED_SIZE";
478
+ BucketAlignmentInputDto["Iso_8601WeekDto"] = "ISO_8601_WEEK";
479
+ })(BucketAlignmentInputDto || (BucketAlignmentInputDto = {}));
471
480
  /** Defines the possible operation operations to extend construction elements. */
472
481
  var CkExtensionUpdateOperationsDto;
473
482
  (function (CkExtensionUpdateOperationsDto) {
@@ -964,6 +973,15 @@ var SearchFilterTypesDto;
964
973
  SearchFilterTypesDto["AttributeFilterDto"] = "ATTRIBUTE_FILTER";
965
974
  SearchFilterTypesDto["TextSearchDto"] = "TEXT_SEARCH";
966
975
  })(SearchFilterTypesDto || (SearchFilterTypesDto = {}));
976
+ /** Outcome of resolution-aware series routing. Non-Ok values are truthful signals the caller can surface — the resolver never silently produces a wrong or degraded result. */
977
+ var SeriesResolutionSignalDto;
978
+ (function (SeriesResolutionSignalDto) {
979
+ SeriesResolutionSignalDto["EmptyLadderDto"] = "EMPTY_LADDER";
980
+ SeriesResolutionSignalDto["NoSuitableRollupDto"] = "NO_SUITABLE_ROLLUP";
981
+ SeriesResolutionSignalDto["OkDto"] = "OK";
982
+ SeriesResolutionSignalDto["ResolutionLimitedDto"] = "RESOLUTION_LIMITED";
983
+ SeriesResolutionSignalDto["UnknownBaseGrainDto"] = "UNKNOWN_BASE_GRAIN";
984
+ })(SeriesResolutionSignalDto || (SeriesResolutionSignalDto = {}));
967
985
  /** Defines the sort order */
968
986
  var SortOrdersDto;
969
987
  (function (SortOrdersDto) {
@@ -1026,6 +1044,7 @@ var SystemAiConflictModeDto;
1026
1044
  var SystemAiCredentialKindDto;
1027
1045
  (function (SystemAiCredentialKindDto) {
1028
1046
  SystemAiCredentialKindDto["DevSshAuthorizedKeyDto"] = "DEV_SSH_AUTHORIZED_KEY";
1047
+ SystemAiCredentialKindDto["EnvSecretDto"] = "ENV_SECRET";
1029
1048
  SystemAiCredentialKindDto["GitHubPatDto"] = "GIT_HUB_PAT";
1030
1049
  SystemAiCredentialKindDto["SshKeyDto"] = "SSH_KEY";
1031
1050
  })(SystemAiCredentialKindDto || (SystemAiCredentialKindDto = {}));
@@ -1034,8 +1053,10 @@ var SystemAiJobKindDto;
1034
1053
  (function (SystemAiJobKindDto) {
1035
1054
  SystemAiJobKindDto["AdminDto"] = "ADMIN";
1036
1055
  SystemAiJobKindDto["ApplicationDto"] = "APPLICATION";
1056
+ SystemAiJobKindDto["BlueprintAuthoringDto"] = "BLUEPRINT_AUTHORING";
1037
1057
  SystemAiJobKindDto["DataModelDto"] = "DATA_MODEL";
1038
1058
  SystemAiJobKindDto["FreeFormDto"] = "FREE_FORM";
1059
+ SystemAiJobKindDto["PipelineDto"] = "PIPELINE";
1039
1060
  SystemAiJobKindDto["RuntimeDataDto"] = "RUNTIME_DATA";
1040
1061
  })(SystemAiJobKindDto || (SystemAiJobKindDto = {}));
1041
1062
  /** Runtime entities of construction kit enum 'System.Ai/JobStatus' */
@@ -4377,6 +4398,33 @@ class AssetRepoService {
4377
4398
  }));
4378
4399
  }
4379
4400
  }
4401
+ /**
4402
+ * Enables the Stream Data feature for a tenant. Installs the
4403
+ * `System.StreamData` CK model and provisions the backing time-series
4404
+ * storage. Errors propagate to the caller.
4405
+ *
4406
+ * Tenant-scoped REST endpoint: `POST {assetServices}{tenantId}/v1/streamdata/enable`.
4407
+ */
4408
+ async enableStreamData(tenantId) {
4409
+ if (this.configurationService.config?.assetServices) {
4410
+ const uri = `${this.configurationService.config.assetServices}${tenantId}/v1/streamdata/enable`;
4411
+ await firstValueFrom(this.httpClient.post(uri, null, { observe: 'response' }));
4412
+ }
4413
+ }
4414
+ /**
4415
+ * Disables the Stream Data feature for a tenant. Drops the backing
4416
+ * time-series storage and removes the `System.StreamData` model.
4417
+ * Destructive — the UI must confirm before calling. Errors propagate to the
4418
+ * caller.
4419
+ *
4420
+ * Tenant-scoped REST endpoint: `POST {assetServices}{tenantId}/v1/streamdata/disable`.
4421
+ */
4422
+ async disableStreamData(tenantId) {
4423
+ if (this.configurationService.config?.assetServices) {
4424
+ const uri = `${this.configurationService.config.assetServices}${tenantId}/v1/streamdata/disable`;
4425
+ await firstValueFrom(this.httpClient.post(uri, null, { observe: 'response' }));
4426
+ }
4427
+ }
4380
4428
  async importRtModel(tenantId, file, importStrategy = ImportStrategyDto.InsertOnly) {
4381
4429
  const params = new HttpParams()
4382
4430
  .set('importStrategy', importStrategy.toString());
@@ -4669,6 +4717,16 @@ class IdentityService {
4669
4717
  if (this.tenantIdProvider) {
4670
4718
  tenantId = await this.tenantIdProvider() ?? 'octosystem';
4671
4719
  }
4720
+ return this.getApiBaseUrlForTenant(tenantId);
4721
+ }
4722
+ /**
4723
+ * Builds the identity API base URL for an explicit tenant, bypassing the ambient
4724
+ * {@link TENANT_ID_PROVIDER}. Used when an operation must target a tenant other than the
4725
+ * currently-routed one — e.g. cleaning overlay URIs on a child tenant before its backup.
4726
+ */
4727
+ getApiBaseUrlForTenant(tenantId) {
4728
+ if (!this.configurationService.config?.issuer)
4729
+ return null;
4672
4730
  return `${this.configurationService.config.issuer}${tenantId}/v1/`;
4673
4731
  }
4674
4732
  async userDiagnostics() {
@@ -4931,6 +4989,33 @@ class IdentityService {
4931
4989
  await firstValueFrom(this.httpClient.patch(baseUrl + `clients/${clientId}/autoProvisionInChildTenants`, { enabled }, { observe: 'response' }));
4932
4990
  }
4933
4991
  }
4992
+ // ---- Client overlay URIs (AB#4209, deliverable 7) -----------------------
4993
+ /**
4994
+ * Strips overlay URI entries from every blueprint-managed client of a tenant. Without
4995
+ * {@link overlayName} every `overlay:*` source is removed; with it, only `overlay:<name>`.
4996
+ * `base` and `api` sourced URIs are always preserved. Destructive — the typical use is
4997
+ * producing a template-clean tenant dump; overlays can be re-applied afterwards via the
4998
+ * octo-tools `Apply-IdentityOverlay` cmdlet.
4999
+ *
5000
+ * `tenantId` targets a specific tenant explicitly (e.g. a child tenant being backed up),
5001
+ * bypassing the ambient route tenant. Omit it to use the current route tenant.
5002
+ */
5003
+ async cleanOverlayEntries(overlayName, tenantId) {
5004
+ const baseUrl = tenantId
5005
+ ? this.getApiBaseUrlForTenant(tenantId)
5006
+ : await this.getApiBaseUrl();
5007
+ if (!baseUrl)
5008
+ return null;
5009
+ let params = new HttpParams();
5010
+ if (overlayName) {
5011
+ params = params.set('overlayName', overlayName);
5012
+ }
5013
+ const response = await firstValueFrom(this.httpClient.delete(baseUrl + 'clients/cleanOverlayEntries', {
5014
+ params,
5015
+ observe: 'response'
5016
+ }));
5017
+ return response.body;
5018
+ }
4934
5019
  async generatePassword() {
4935
5020
  const params = new HttpParams();
4936
5021
  const baseUrl = await this.getApiBaseUrl();
@@ -5366,6 +5451,33 @@ class CommunicationService {
5366
5451
  return this.configurationService.config?.communicationServices;
5367
5452
  }
5368
5453
  // ============================================================================
5454
+ // Tenant Feature Toggle — Communication
5455
+ // ============================================================================
5456
+ /**
5457
+ * Enables the Communication feature for a tenant. Installs the
5458
+ * `System.Communication` CK model and provisions the required runtime wiring
5459
+ * for adapters/pools. Errors propagate to the caller.
5460
+ */
5461
+ async enableCommunication(tenantId) {
5462
+ if (!this.communicationServicesUrl) {
5463
+ throw new Error('Communication services URL is not configured');
5464
+ }
5465
+ const uri = `${this.communicationServicesUrl}${tenantId}/v1/communication/enable`;
5466
+ await firstValueFrom(this.httpClient.post(uri, null, { observe: 'response' }));
5467
+ }
5468
+ /**
5469
+ * Disables the Communication feature for a tenant. Tears down the adapter
5470
+ * wiring and removes the `System.Communication` model. Destructive — the UI
5471
+ * must confirm before calling. Errors propagate to the caller.
5472
+ */
5473
+ async disableCommunication(tenantId) {
5474
+ if (!this.communicationServicesUrl) {
5475
+ throw new Error('Communication services URL is not configured');
5476
+ }
5477
+ const uri = `${this.communicationServicesUrl}${tenantId}/v1/communication/disable`;
5478
+ await firstValueFrom(this.httpClient.post(uri, null, { observe: 'response' }));
5479
+ }
5480
+ // ============================================================================
5369
5481
  // Trigger Deployment
5370
5482
  // ============================================================================
5371
5483
  /**
@@ -5790,6 +5902,57 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.2", ngImpor
5790
5902
  }]
5791
5903
  }] });
5792
5904
 
5905
+ /**
5906
+ * Service for the tenant Reporting feature toggle.
5907
+ *
5908
+ * Backed by the reporting service base URL (`config.reportingServices`), it
5909
+ * enables/disables the `System.Reporting` feature per tenant via the
5910
+ * tenant-scoped REST endpoints
5911
+ * `POST {reportingServices}{tenantId}/v1/reporting/{enable,disable}`.
5912
+ */
5913
+ class ReportingService {
5914
+ httpClient = inject(HttpClient);
5915
+ configurationService = inject(CONFIGURATION_SERVICE);
5916
+ /**
5917
+ * Gets the base URL for reporting services.
5918
+ */
5919
+ get reportingServicesUrl() {
5920
+ return this.configurationService.config?.reportingServices;
5921
+ }
5922
+ /**
5923
+ * Enables the Reporting feature for a tenant. Installs the
5924
+ * `System.Reporting` CK model and provisions the required storage. Errors
5925
+ * propagate to the caller.
5926
+ */
5927
+ async enableReporting(tenantId) {
5928
+ if (!this.reportingServicesUrl) {
5929
+ throw new Error('Reporting services URL is not configured');
5930
+ }
5931
+ const uri = `${this.reportingServicesUrl}${tenantId}/v1/reporting/enable`;
5932
+ await firstValueFrom(this.httpClient.post(uri, null, { observe: 'response' }));
5933
+ }
5934
+ /**
5935
+ * Disables the Reporting feature for a tenant. Drops the backing storage and
5936
+ * removes the `System.Reporting` model. Destructive — the UI must confirm
5937
+ * before calling. Errors propagate to the caller.
5938
+ */
5939
+ async disableReporting(tenantId) {
5940
+ if (!this.reportingServicesUrl) {
5941
+ throw new Error('Reporting services URL is not configured');
5942
+ }
5943
+ const uri = `${this.reportingServicesUrl}${tenantId}/v1/reporting/disable`;
5944
+ await firstValueFrom(this.httpClient.post(uri, null, { observe: 'response' }));
5945
+ }
5946
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: ReportingService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
5947
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: ReportingService, providedIn: 'root' });
5948
+ }
5949
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.2", ngImport: i0, type: ReportingService, decorators: [{
5950
+ type: Injectable,
5951
+ args: [{
5952
+ providedIn: 'root'
5953
+ }]
5954
+ }] });
5955
+
5793
5956
  class TusUploadService {
5794
5957
  httpClient = inject(HttpClient);
5795
5958
  configurationService = inject(CONFIGURATION_SERVICE);
@@ -6430,5 +6593,5 @@ function provideOctoServices(octoServiceOptions) {
6430
6593
  * Generated bundle index. Do not edit.
6431
6594
  */
6432
6595
 
6433
- export { AggregationInputTypesDto, AggregationTypeDto, AggregationTypesDto, ArchiveStorageHealthDto, AssetRepoGraphQlDataSource, AssetRepoService, AssociationModOptionsDto, AttributeSelectorService, AttributeValueTypeDto, BasicEnergyCarrierTypeDto, BasicEnergyDataQualityDto, BasicEnergyFacilityTypeDto, BasicEnergyProductionTypeDto, BasicEnergyStateDto, BasicLegalEntityTypeDto, BasicSalutationDto, BasicTypeOfTelephoneBasicDto, BasicTypeOfTelephoneEnhancedDto, BasicUnitOfMeasureDto, BlueprintConflictResolutionDto, BlueprintUpdateModeDto, BotService, CONFIGURATION_SERVICE, CkExtensionUpdateOperationsDto, CkModelCatalogService, CkModelService, CkRollupFunctionDto, CkTypeAttributeService, CkTypeMetaData, CkTypeSelectorService, CommunicationService, DeleteStrategiesDto, DeploymentState, EnergyCommunityBillingCycleDto, EnergyCommunityBillingDocumentStateDto, EnergyCommunityBillingTypeDto, EnergyCommunityDataQualityDto, EnergyCommunityFacilityTypeDto, EnergyCommunityProductionTypeDto, EnergyCommunityStateDto, EnergyCommunityTaxProcedureCreditNoteDto, EnvironmentCarbonScopeDto, EnvironmentComplianceCategoryDto, EnvironmentComplianceStatusDto, EnvironmentEnergySourceDto, EnvironmentGoalStateDto, FieldFilterOperatorsDto, FormulaResultTypeDto, GetCkModelByIdDocumentDto, GetCkModelByIdDtoGQL, GetCkRecordAttributesDocumentDto, GetCkRecordAttributesDtoGQL, GetCkTypeAttributesDocumentDto, GetCkTypeAttributesDtoGQL, GetCkTypeAvailableQueryColumnsDocumentDto, GetCkTypeAvailableQueryColumnsDtoGQL, GetCkTypesDocumentDto, GetCkTypesDtoGQL, GetDerivedCkTypesDocumentDto, GetDerivedCkTypesDtoGQL, GetEntitiesByCkTypeDocumentDto, GetEntitiesByCkTypeDtoGQL, GraphDirectionDto, GraphQL, GraphQLCloneIgnoredProperties, GraphQLCommonIgnoredProperties, GraphQlDataSource, HealthService, HealthStatus, IDENTITY_PROVIDER_TYPE_LABELS, IdentityProviderType, IdentityService, ImportStrategyDto, IndustryBasicAlarmPriorityDto, IndustryBasicAlarmSourceTypeDto, IndustryBasicAlarmStateDto, IndustryBasicAlarmTypeDto, IndustryBasicIecDataTypeDto, IndustryBasicMachineCapabilitiesDto, IndustryBasicMachineStateDto, IndustryEnergyDemandResponseMarketDto, IndustryEnergyDemandResponseStatusDto, IndustryEnergyTariffTypeDto, IndustryMaintenanceAggregationTypeDto, IndustryMaintenanceCostCategoryDto, IndustryMaintenanceEnergyBalanceGroupDto, IndustryMaintenanceEnergyBalanceProductDto, IndustryMaintenanceEnergyBalanceUnitDto, IndustryMaintenanceOrderPriorityDto, IndustryMaintenanceOrderStateDto, IndustryMaintenanceOrderTypeDto, IndustryMaintenanceServiceTypeDto, IndustryManufacturingFeedbackSyncStateDto, IndustryManufacturingProductionOrderItemStateDto, IndustryManufacturingProductionOrderStateDto, JobManagementService, LevelMetaData, LoggerSeverity, ModelStateDto, MultiplicitiesDto, NavigationFilterModeDto, OctoErrorLink, OctoGraphQLServiceBase, OctoSdkDemoCustomerStatusDto, OctoSdkDemoNetworkOperatorDto, OctoSdkDemoOperatingStatusDto, OctoServiceOptions, OctoServicesModule, PagedGraphResultDto, ProgressValue, ProgressWindowService, QueryModeDto, RtAssociationMetaData, RuntimeEntityDialogDataSource, RuntimeEntitySelectDataSource, SearchFilterTypesDto, SortOrdersDto, SystemAggregationTypesDto, SystemAiApprovalModeDto, SystemAiApprovalReasonDto, SystemAiApprovalStatusDto, SystemAiAuthModeDto, SystemAiConflictModeDto, SystemAiCredentialKindDto, SystemAiJobKindDto, SystemAiJobStatusDto, SystemAiKnowledgeKindDto, SystemAiLeaseStatusDto, SystemAiModelTierDto, SystemAiRiskLevelDto, SystemAiSessionEventKindDto, SystemAiSessionStatusDto, SystemAiSubscriptionScopeDto, SystemAiTicketScopeDto, SystemAiTicketStatusDto, SystemAiWorkspaceModeDto, SystemCommunicationCommunicationStateDto, SystemCommunicationConfigurationStateDto, SystemCommunicationDeploymentStateDto, SystemCommunicationEnvironmentDto, SystemCommunicationHelmChannelDto, SystemCommunicationPipelineExecutionStatusDto, SystemCommunicationPipelineTriggerTypeDto, SystemEnvironmentModesDto, SystemFieldFilterOperatorDto, SystemIdentityTokenExpirationDto, SystemIdentityTokenTypeDto, SystemIdentityTokenUsageDto, SystemMaintenanceLevelsDto, SystemNavigationFilterModesDto, SystemNotificationEventLevelsDto, SystemNotificationEventSourcesDto, SystemNotificationEventStatesDto, SystemNotificationNotificationTypesDto, SystemNotificationRenderingTypesDto, SystemQueryTypesDto, SystemSortOrdersDto, SystemStreamDataBucketAlignmentDto, SystemStreamDataCkArchiveStatusDto, SystemStreamDataCkComputedColumnResultTypeDto, SystemStreamDataCkComputedColumnStateDto, SystemStreamDataCkRecomputeChangeKindDto, SystemStreamDataCkRecomputeChangeSourceDto, SystemStreamDataCkRecomputeJobStateDto, SystemStreamDataCkRecomputeTriggerDto, SystemStreamDataCkRollupFunctionDto, TENANT_ID_PROVIDER, TusUploadService, UpdateTypeDto, octoDataIdFromObject, result as possibleTypes, provideOctoServices };
6596
+ export { AggregationInputTypesDto, AggregationTypeDto, AggregationTypesDto, ArchiveStorageHealthDto, AssetRepoGraphQlDataSource, AssetRepoService, AssociationModOptionsDto, AttributeSelectorService, AttributeValueTypeDto, BasicEnergyCarrierTypeDto, BasicEnergyDataQualityDto, BasicEnergyFacilityTypeDto, BasicEnergyProductionTypeDto, BasicEnergyStateDto, BasicLegalEntityTypeDto, BasicSalutationDto, BasicTypeOfTelephoneBasicDto, BasicTypeOfTelephoneEnhancedDto, BasicUnitOfMeasureDto, BlueprintConflictResolutionDto, BlueprintUpdateModeDto, BotService, BucketAlignmentInputDto, CONFIGURATION_SERVICE, CkExtensionUpdateOperationsDto, CkModelCatalogService, CkModelService, CkRollupFunctionDto, CkTypeAttributeService, CkTypeMetaData, CkTypeSelectorService, CommunicationService, DeleteStrategiesDto, DeploymentState, EnergyCommunityBillingCycleDto, EnergyCommunityBillingDocumentStateDto, EnergyCommunityBillingTypeDto, EnergyCommunityDataQualityDto, EnergyCommunityFacilityTypeDto, EnergyCommunityProductionTypeDto, EnergyCommunityStateDto, EnergyCommunityTaxProcedureCreditNoteDto, EnvironmentCarbonScopeDto, EnvironmentComplianceCategoryDto, EnvironmentComplianceStatusDto, EnvironmentEnergySourceDto, EnvironmentGoalStateDto, FieldFilterOperatorsDto, FormulaResultTypeDto, GetCkModelByIdDocumentDto, GetCkModelByIdDtoGQL, GetCkRecordAttributesDocumentDto, GetCkRecordAttributesDtoGQL, GetCkTypeAttributesDocumentDto, GetCkTypeAttributesDtoGQL, GetCkTypeAvailableQueryColumnsDocumentDto, GetCkTypeAvailableQueryColumnsDtoGQL, GetCkTypesDocumentDto, GetCkTypesDtoGQL, GetDerivedCkTypesDocumentDto, GetDerivedCkTypesDtoGQL, GetEntitiesByCkTypeDocumentDto, GetEntitiesByCkTypeDtoGQL, GraphDirectionDto, GraphQL, GraphQLCloneIgnoredProperties, GraphQLCommonIgnoredProperties, GraphQlDataSource, HealthService, HealthStatus, IDENTITY_PROVIDER_TYPE_LABELS, IdentityProviderType, IdentityService, ImportStrategyDto, IndustryBasicAlarmPriorityDto, IndustryBasicAlarmSourceTypeDto, IndustryBasicAlarmStateDto, IndustryBasicAlarmTypeDto, IndustryBasicIecDataTypeDto, IndustryBasicMachineCapabilitiesDto, IndustryBasicMachineStateDto, IndustryEnergyDemandResponseMarketDto, IndustryEnergyDemandResponseStatusDto, IndustryEnergyTariffTypeDto, IndustryMaintenanceAggregationTypeDto, IndustryMaintenanceCostCategoryDto, IndustryMaintenanceEnergyBalanceGroupDto, IndustryMaintenanceEnergyBalanceProductDto, IndustryMaintenanceEnergyBalanceUnitDto, IndustryMaintenanceOrderPriorityDto, IndustryMaintenanceOrderStateDto, IndustryMaintenanceOrderTypeDto, IndustryMaintenanceServiceTypeDto, IndustryManufacturingFeedbackSyncStateDto, IndustryManufacturingProductionOrderItemStateDto, IndustryManufacturingProductionOrderStateDto, JobManagementService, LevelMetaData, LoggerSeverity, ModelStateDto, MultiplicitiesDto, NavigationFilterModeDto, OctoErrorLink, OctoGraphQLServiceBase, OctoSdkDemoCustomerStatusDto, OctoSdkDemoNetworkOperatorDto, OctoSdkDemoOperatingStatusDto, OctoServiceOptions, OctoServicesModule, PagedGraphResultDto, ProgressValue, ProgressWindowService, QueryModeDto, ReportingService, RtAssociationMetaData, RuntimeEntityDialogDataSource, RuntimeEntitySelectDataSource, SearchFilterTypesDto, SeriesResolutionSignalDto, SortOrdersDto, SystemAggregationTypesDto, SystemAiApprovalModeDto, SystemAiApprovalReasonDto, SystemAiApprovalStatusDto, SystemAiAuthModeDto, SystemAiConflictModeDto, SystemAiCredentialKindDto, SystemAiJobKindDto, SystemAiJobStatusDto, SystemAiKnowledgeKindDto, SystemAiLeaseStatusDto, SystemAiModelTierDto, SystemAiRiskLevelDto, SystemAiSessionEventKindDto, SystemAiSessionStatusDto, SystemAiSubscriptionScopeDto, SystemAiTicketScopeDto, SystemAiTicketStatusDto, SystemAiWorkspaceModeDto, SystemCommunicationCommunicationStateDto, SystemCommunicationConfigurationStateDto, SystemCommunicationDeploymentStateDto, SystemCommunicationEnvironmentDto, SystemCommunicationHelmChannelDto, SystemCommunicationPipelineExecutionStatusDto, SystemCommunicationPipelineTriggerTypeDto, SystemEnvironmentModesDto, SystemFieldFilterOperatorDto, SystemIdentityTokenExpirationDto, SystemIdentityTokenTypeDto, SystemIdentityTokenUsageDto, SystemMaintenanceLevelsDto, SystemNavigationFilterModesDto, SystemNotificationEventLevelsDto, SystemNotificationEventSourcesDto, SystemNotificationEventStatesDto, SystemNotificationNotificationTypesDto, SystemNotificationRenderingTypesDto, SystemQueryTypesDto, SystemSortOrdersDto, SystemStreamDataBucketAlignmentDto, SystemStreamDataCkArchiveStatusDto, SystemStreamDataCkComputedColumnResultTypeDto, SystemStreamDataCkComputedColumnStateDto, SystemStreamDataCkRecomputeChangeKindDto, SystemStreamDataCkRecomputeChangeSourceDto, SystemStreamDataCkRecomputeJobStateDto, SystemStreamDataCkRecomputeTriggerDto, SystemStreamDataCkRollupFunctionDto, TENANT_ID_PROVIDER, TusUploadService, UpdateTypeDto, octoDataIdFromObject, result as possibleTypes, provideOctoServices };
6434
6597
  //# sourceMappingURL=meshmakers-octo-services.mjs.map