@meshmakers/octo-services 3.4.310 → 3.4.330
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.
|
@@ -28,7 +28,7 @@ class OctoErrorLink extends ApolloLink {
|
|
|
28
28
|
super();
|
|
29
29
|
// There is currently no other way to inject a service into an Apollo Link,
|
|
30
30
|
// because Apollo deprecated without replacement
|
|
31
|
-
this.errorLink = onError(({ error
|
|
31
|
+
this.errorLink = onError(({ error }) => {
|
|
32
32
|
if (error) {
|
|
33
33
|
if (error instanceof CombinedGraphQLErrors) {
|
|
34
34
|
this.showError(error);
|
|
@@ -37,7 +37,10 @@ class OctoErrorLink extends ApolloLink {
|
|
|
37
37
|
this.showErrorLike(error);
|
|
38
38
|
}
|
|
39
39
|
}
|
|
40
|
-
return forward(operation)
|
|
40
|
+
// Display-only link: do NOT return forward(operation). Returning it re-runs the failed
|
|
41
|
+
// operation (re-submitting the mutation) and re-invokes this handler, so the same error
|
|
42
|
+
// toast appears twice — observed on the AB#4289 rollup-activation reject. Returning nothing
|
|
43
|
+
// lets the original error propagate to the caller's own error handling.
|
|
41
44
|
});
|
|
42
45
|
}
|
|
43
46
|
showErrorLike(error) {
|
|
@@ -85,16 +88,20 @@ class OctoErrorLink extends ApolloLink {
|
|
|
85
88
|
}
|
|
86
89
|
}
|
|
87
90
|
}
|
|
88
|
-
messageService.showErrorWithDetails(title, details);
|
|
89
91
|
}
|
|
92
|
+
// Show ONE toast after accumulating every error into title + details. Calling this inside the
|
|
93
|
+
// loop showed one toast per error in the array — and since `title` is only set by the first
|
|
94
|
+
// error, a multi-error response (e.g. a domain error + GraphQL's generic "Error trying to
|
|
95
|
+
// resolve field …" wrapper) surfaced the same title twice (the AB#4289 reject appeared doubled).
|
|
96
|
+
messageService.showErrorWithDetails(title, details);
|
|
90
97
|
}
|
|
91
98
|
request(operation, forward) {
|
|
92
99
|
return this.errorLink.request(operation, forward);
|
|
93
100
|
}
|
|
94
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.
|
|
95
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.
|
|
101
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: OctoErrorLink, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
102
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: OctoErrorLink });
|
|
96
103
|
}
|
|
97
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.
|
|
104
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: OctoErrorLink, decorators: [{
|
|
98
105
|
type: Injectable
|
|
99
106
|
}], ctorParameters: () => [] });
|
|
100
107
|
|
|
@@ -973,6 +980,12 @@ var SearchFilterTypesDto;
|
|
|
973
980
|
SearchFilterTypesDto["AttributeFilterDto"] = "ATTRIBUTE_FILTER";
|
|
974
981
|
SearchFilterTypesDto["TextSearchDto"] = "TEXT_SEARCH";
|
|
975
982
|
})(SearchFilterTypesDto || (SearchFilterTypesDto = {}));
|
|
983
|
+
/** How civil boundaries are resolved for a series query that spans multiple reference time zones (AB#4190). */
|
|
984
|
+
var SeriesComparisonPolicyDto;
|
|
985
|
+
(function (SeriesComparisonPolicyDto) {
|
|
986
|
+
SeriesComparisonPolicyDto["PerQueryDto"] = "PER_QUERY";
|
|
987
|
+
SeriesComparisonPolicyDto["PerSeriesDto"] = "PER_SERIES";
|
|
988
|
+
})(SeriesComparisonPolicyDto || (SeriesComparisonPolicyDto = {}));
|
|
976
989
|
/** 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
990
|
var SeriesResolutionSignalDto;
|
|
978
991
|
(function (SeriesResolutionSignalDto) {
|
|
@@ -3656,10 +3669,10 @@ class GetCkTypeAttributesDtoGQL extends i1.Query {
|
|
|
3656
3669
|
constructor(apollo) {
|
|
3657
3670
|
super(apollo);
|
|
3658
3671
|
}
|
|
3659
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.
|
|
3660
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.
|
|
3672
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: GetCkTypeAttributesDtoGQL, deps: [{ token: i1.Apollo }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3673
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: GetCkTypeAttributesDtoGQL, providedIn: 'root' });
|
|
3661
3674
|
}
|
|
3662
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.
|
|
3675
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: GetCkTypeAttributesDtoGQL, decorators: [{
|
|
3663
3676
|
type: Injectable,
|
|
3664
3677
|
args: [{
|
|
3665
3678
|
providedIn: 'root'
|
|
@@ -3691,10 +3704,10 @@ class GetCkRecordAttributesDtoGQL extends i1.Query {
|
|
|
3691
3704
|
constructor(apollo) {
|
|
3692
3705
|
super(apollo);
|
|
3693
3706
|
}
|
|
3694
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.
|
|
3695
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.
|
|
3707
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: GetCkRecordAttributesDtoGQL, deps: [{ token: i1.Apollo }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3708
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: GetCkRecordAttributesDtoGQL, providedIn: 'root' });
|
|
3696
3709
|
}
|
|
3697
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.
|
|
3710
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: GetCkRecordAttributesDtoGQL, decorators: [{
|
|
3698
3711
|
type: Injectable,
|
|
3699
3712
|
args: [{
|
|
3700
3713
|
providedIn: 'root'
|
|
@@ -3702,7 +3715,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.2", ngImpor
|
|
|
3702
3715
|
}], ctorParameters: () => [{ type: i1.Apollo }] });
|
|
3703
3716
|
|
|
3704
3717
|
const GetCkTypeAvailableQueryColumnsDocumentDto = gql `
|
|
3705
|
-
query getCkTypeAvailableQueryColumns($after: String, $first: Int, $rtCkId: String!, $filter: String, $attributeValueType: AttributeValueType, $searchTerm: String, $includeNavigationProperties: Boolean, $maxDepth: Int, $attributePaths: [String]) {
|
|
3718
|
+
query getCkTypeAvailableQueryColumns($after: String, $first: Int, $rtCkId: String!, $filter: String, $attributeValueType: AttributeValueType, $searchTerm: String, $includeNavigationProperties: Boolean, $maxDepth: Int, $attributePaths: [String], $includeManyNavigations: Boolean) {
|
|
3706
3719
|
constructionKit {
|
|
3707
3720
|
types(rtCkId: $rtCkId) {
|
|
3708
3721
|
items {
|
|
@@ -3720,6 +3733,7 @@ const GetCkTypeAvailableQueryColumnsDocumentDto = gql `
|
|
|
3720
3733
|
includeNavigationProperties: $includeNavigationProperties
|
|
3721
3734
|
maxDepth: $maxDepth
|
|
3722
3735
|
attributePaths: $attributePaths
|
|
3736
|
+
includeManyNavigations: $includeManyNavigations
|
|
3723
3737
|
) {
|
|
3724
3738
|
totalCount
|
|
3725
3739
|
pageInfo {
|
|
@@ -3744,10 +3758,10 @@ class GetCkTypeAvailableQueryColumnsDtoGQL extends i1.Query {
|
|
|
3744
3758
|
constructor(apollo) {
|
|
3745
3759
|
super(apollo);
|
|
3746
3760
|
}
|
|
3747
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.
|
|
3748
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.
|
|
3761
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: GetCkTypeAvailableQueryColumnsDtoGQL, deps: [{ token: i1.Apollo }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3762
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: GetCkTypeAvailableQueryColumnsDtoGQL, providedIn: 'root' });
|
|
3749
3763
|
}
|
|
3750
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.
|
|
3764
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: GetCkTypeAvailableQueryColumnsDtoGQL, decorators: [{
|
|
3751
3765
|
type: Injectable,
|
|
3752
3766
|
args: [{
|
|
3753
3767
|
providedIn: 'root'
|
|
@@ -3792,10 +3806,10 @@ class GetCkTypesDtoGQL extends i1.Query {
|
|
|
3792
3806
|
constructor(apollo) {
|
|
3793
3807
|
super(apollo);
|
|
3794
3808
|
}
|
|
3795
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.
|
|
3796
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.
|
|
3809
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: GetCkTypesDtoGQL, deps: [{ token: i1.Apollo }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3810
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: GetCkTypesDtoGQL, providedIn: 'root' });
|
|
3797
3811
|
}
|
|
3798
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.
|
|
3812
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: GetCkTypesDtoGQL, decorators: [{
|
|
3799
3813
|
type: Injectable,
|
|
3800
3814
|
args: [{
|
|
3801
3815
|
providedIn: 'root'
|
|
@@ -3840,10 +3854,10 @@ class GetDerivedCkTypesDtoGQL extends i1.Query {
|
|
|
3840
3854
|
constructor(apollo) {
|
|
3841
3855
|
super(apollo);
|
|
3842
3856
|
}
|
|
3843
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.
|
|
3844
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.
|
|
3857
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: GetDerivedCkTypesDtoGQL, deps: [{ token: i1.Apollo }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3858
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: GetDerivedCkTypesDtoGQL, providedIn: 'root' });
|
|
3845
3859
|
}
|
|
3846
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.
|
|
3860
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: GetDerivedCkTypesDtoGQL, decorators: [{
|
|
3847
3861
|
type: Injectable,
|
|
3848
3862
|
args: [{
|
|
3849
3863
|
providedIn: 'root'
|
|
@@ -3875,10 +3889,10 @@ class GetCkModelByIdDtoGQL extends i1.Query {
|
|
|
3875
3889
|
constructor(apollo) {
|
|
3876
3890
|
super(apollo);
|
|
3877
3891
|
}
|
|
3878
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.
|
|
3879
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.
|
|
3892
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: GetCkModelByIdDtoGQL, deps: [{ token: i1.Apollo }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3893
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: GetCkModelByIdDtoGQL, providedIn: 'root' });
|
|
3880
3894
|
}
|
|
3881
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.
|
|
3895
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: GetCkModelByIdDtoGQL, decorators: [{
|
|
3882
3896
|
type: Injectable,
|
|
3883
3897
|
args: [{
|
|
3884
3898
|
providedIn: 'root'
|
|
@@ -3901,7 +3915,7 @@ const CONFIGURATION_SERVICE = new InjectionToken('IConfigurationService');
|
|
|
3901
3915
|
|
|
3902
3916
|
class AttributeSelectorService {
|
|
3903
3917
|
getCkTypeAvailableQueryColumnsGQL = inject(GetCkTypeAvailableQueryColumnsDtoGQL);
|
|
3904
|
-
getAvailableAttributes(ckTypeId, filter, first = 1000, after, attributeValueType, searchTerm, includeNavigationProperties, maxDepth, attributePaths) {
|
|
3918
|
+
getAvailableAttributes(ckTypeId, filter, first = 1000, after, attributeValueType, searchTerm, includeNavigationProperties, maxDepth, attributePaths, includeManyNavigations) {
|
|
3905
3919
|
return this.getCkTypeAvailableQueryColumnsGQL.fetch({
|
|
3906
3920
|
variables: {
|
|
3907
3921
|
rtCkId: ckTypeId,
|
|
@@ -3912,7 +3926,8 @@ class AttributeSelectorService {
|
|
|
3912
3926
|
searchTerm: searchTerm,
|
|
3913
3927
|
includeNavigationProperties: includeNavigationProperties,
|
|
3914
3928
|
maxDepth: maxDepth,
|
|
3915
|
-
attributePaths: attributePaths
|
|
3929
|
+
attributePaths: attributePaths,
|
|
3930
|
+
includeManyNavigations: includeManyNavigations
|
|
3916
3931
|
},
|
|
3917
3932
|
fetchPolicy: 'network-only'
|
|
3918
3933
|
}).pipe(map(result => {
|
|
@@ -3933,10 +3948,10 @@ class AttributeSelectorService {
|
|
|
3933
3948
|
};
|
|
3934
3949
|
}));
|
|
3935
3950
|
}
|
|
3936
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.
|
|
3937
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.
|
|
3951
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: AttributeSelectorService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3952
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: AttributeSelectorService, providedIn: 'root' });
|
|
3938
3953
|
}
|
|
3939
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.
|
|
3954
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: AttributeSelectorService, decorators: [{
|
|
3940
3955
|
type: Injectable,
|
|
3941
3956
|
args: [{
|
|
3942
3957
|
providedIn: 'root'
|
|
@@ -4004,10 +4019,10 @@ class CkTypeAttributeService {
|
|
|
4004
4019
|
return of([]);
|
|
4005
4020
|
}));
|
|
4006
4021
|
}
|
|
4007
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.
|
|
4008
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.
|
|
4022
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: CkTypeAttributeService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4023
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: CkTypeAttributeService, providedIn: 'root' });
|
|
4009
4024
|
}
|
|
4010
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.
|
|
4025
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: CkTypeAttributeService, decorators: [{
|
|
4011
4026
|
type: Injectable,
|
|
4012
4027
|
args: [{
|
|
4013
4028
|
providedIn: 'root'
|
|
@@ -4033,10 +4048,10 @@ class GetCkTypeByRtCkTypeIdDtoGQL extends i1.Query {
|
|
|
4033
4048
|
constructor(apollo) {
|
|
4034
4049
|
super(apollo);
|
|
4035
4050
|
}
|
|
4036
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.
|
|
4037
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.
|
|
4051
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: GetCkTypeByRtCkTypeIdDtoGQL, deps: [{ token: i1.Apollo }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4052
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: GetCkTypeByRtCkTypeIdDtoGQL, providedIn: 'root' });
|
|
4038
4053
|
}
|
|
4039
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.
|
|
4054
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: GetCkTypeByRtCkTypeIdDtoGQL, decorators: [{
|
|
4040
4055
|
type: Injectable,
|
|
4041
4056
|
args: [{
|
|
4042
4057
|
providedIn: 'root'
|
|
@@ -4164,10 +4179,10 @@ class CkTypeSelectorService {
|
|
|
4164
4179
|
description: item.description ?? undefined
|
|
4165
4180
|
};
|
|
4166
4181
|
}
|
|
4167
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.
|
|
4168
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.
|
|
4182
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: CkTypeSelectorService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4183
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: CkTypeSelectorService, providedIn: 'root' });
|
|
4169
4184
|
}
|
|
4170
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.
|
|
4185
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: CkTypeSelectorService, decorators: [{
|
|
4171
4186
|
type: Injectable,
|
|
4172
4187
|
args: [{
|
|
4173
4188
|
providedIn: 'root'
|
|
@@ -4272,10 +4287,10 @@ class CkModelService {
|
|
|
4272
4287
|
}
|
|
4273
4288
|
return a.patch - b.patch;
|
|
4274
4289
|
}
|
|
4275
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.
|
|
4276
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.
|
|
4290
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: CkModelService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4291
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: CkModelService, providedIn: 'root' });
|
|
4277
4292
|
}
|
|
4278
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.
|
|
4293
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: CkModelService, decorators: [{
|
|
4279
4294
|
type: Injectable,
|
|
4280
4295
|
args: [{
|
|
4281
4296
|
providedIn: 'root'
|
|
@@ -4473,10 +4488,10 @@ class AssetRepoService {
|
|
|
4473
4488
|
}
|
|
4474
4489
|
return null;
|
|
4475
4490
|
}
|
|
4476
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.
|
|
4477
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.
|
|
4491
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: AssetRepoService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4492
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: AssetRepoService, providedIn: 'root' });
|
|
4478
4493
|
}
|
|
4479
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.
|
|
4494
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: AssetRepoService, decorators: [{
|
|
4480
4495
|
type: Injectable,
|
|
4481
4496
|
args: [{
|
|
4482
4497
|
providedIn: 'root'
|
|
@@ -4649,10 +4664,10 @@ class BotService {
|
|
|
4649
4664
|
upload.start();
|
|
4650
4665
|
});
|
|
4651
4666
|
}
|
|
4652
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.
|
|
4653
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.
|
|
4667
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: BotService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4668
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: BotService, providedIn: 'root' });
|
|
4654
4669
|
}
|
|
4655
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.
|
|
4670
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: BotService, decorators: [{
|
|
4656
4671
|
type: Injectable,
|
|
4657
4672
|
args: [{
|
|
4658
4673
|
providedIn: 'root'
|
|
@@ -4696,10 +4711,10 @@ class HealthService {
|
|
|
4696
4711
|
async getMeshAdapterAsync() {
|
|
4697
4712
|
return this.getStatusAsync(this.configurationService.config.meshAdapterUrl);
|
|
4698
4713
|
}
|
|
4699
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.
|
|
4700
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.
|
|
4714
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: HealthService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4715
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: HealthService, providedIn: 'root' });
|
|
4701
4716
|
}
|
|
4702
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.
|
|
4717
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: HealthService, decorators: [{
|
|
4703
4718
|
type: Injectable,
|
|
4704
4719
|
args: [{
|
|
4705
4720
|
providedIn: 'root'
|
|
@@ -5361,10 +5376,10 @@ class IdentityService {
|
|
|
5361
5376
|
}));
|
|
5362
5377
|
}
|
|
5363
5378
|
}
|
|
5364
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.
|
|
5365
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.
|
|
5379
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: IdentityService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
5380
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: IdentityService, providedIn: 'root' });
|
|
5366
5381
|
}
|
|
5367
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.
|
|
5382
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: IdentityService, decorators: [{
|
|
5368
5383
|
type: Injectable,
|
|
5369
5384
|
args: [{
|
|
5370
5385
|
providedIn: 'root'
|
|
@@ -5423,10 +5438,10 @@ class JobManagementService {
|
|
|
5423
5438
|
}
|
|
5424
5439
|
return false;
|
|
5425
5440
|
}
|
|
5426
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.
|
|
5427
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.
|
|
5441
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: JobManagementService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
5442
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: JobManagementService, providedIn: 'root' });
|
|
5428
5443
|
}
|
|
5429
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.
|
|
5444
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: JobManagementService, decorators: [{
|
|
5430
5445
|
type: Injectable,
|
|
5431
5446
|
args: [{
|
|
5432
5447
|
providedIn: 'root'
|
|
@@ -5657,12 +5672,19 @@ class CommunicationService {
|
|
|
5657
5672
|
// ============================================================================
|
|
5658
5673
|
/**
|
|
5659
5674
|
* Executes a data pipeline manually.
|
|
5675
|
+
*
|
|
5676
|
+
* The optional `pipelineInput` is serialized as the JSON request body and
|
|
5677
|
+
* becomes the pipeline's initial DataContext on the adapter side
|
|
5678
|
+
* (FromExecutePipelineCommand trigger). Pipelines that were written for an
|
|
5679
|
+
* HTTP POST trigger read their payload at `$.body`, so callers mirror that
|
|
5680
|
+
* shape by passing `{ body: <document> }`. Omitting it preserves the
|
|
5681
|
+
* classic empty-context execution.
|
|
5660
5682
|
*/
|
|
5661
|
-
async executePipeline(tenantId, pipelineRtId) {
|
|
5683
|
+
async executePipeline(tenantId, pipelineRtId, pipelineInput = null) {
|
|
5662
5684
|
if (this.communicationServicesUrl) {
|
|
5663
5685
|
const params = new HttpParams().set('pipelineRtId', pipelineRtId);
|
|
5664
5686
|
const uri = `${this.communicationServicesUrl}${tenantId}/v1/pipeline/execute`;
|
|
5665
|
-
const response = await firstValueFrom(this.httpClient.post(uri,
|
|
5687
|
+
const response = await firstValueFrom(this.httpClient.post(uri, pipelineInput, {
|
|
5666
5688
|
params,
|
|
5667
5689
|
observe: 'response'
|
|
5668
5690
|
}));
|
|
@@ -5892,10 +5914,10 @@ class CommunicationService {
|
|
|
5892
5914
|
}
|
|
5893
5915
|
return null;
|
|
5894
5916
|
}
|
|
5895
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.
|
|
5896
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.
|
|
5917
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: CommunicationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
5918
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: CommunicationService, providedIn: 'root' });
|
|
5897
5919
|
}
|
|
5898
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.
|
|
5920
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: CommunicationService, decorators: [{
|
|
5899
5921
|
type: Injectable,
|
|
5900
5922
|
args: [{
|
|
5901
5923
|
providedIn: 'root'
|
|
@@ -5943,10 +5965,10 @@ class ReportingService {
|
|
|
5943
5965
|
const uri = `${this.reportingServicesUrl}${tenantId}/v1/reporting/disable`;
|
|
5944
5966
|
await firstValueFrom(this.httpClient.post(uri, null, { observe: 'response' }));
|
|
5945
5967
|
}
|
|
5946
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.
|
|
5947
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.
|
|
5968
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ReportingService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
5969
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ReportingService, providedIn: 'root' });
|
|
5948
5970
|
}
|
|
5949
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.
|
|
5971
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ReportingService, decorators: [{
|
|
5950
5972
|
type: Injectable,
|
|
5951
5973
|
args: [{
|
|
5952
5974
|
providedIn: 'root'
|
|
@@ -6022,10 +6044,10 @@ class TusUploadService {
|
|
|
6022
6044
|
const r = await firstValueFrom(this.httpClient.post(botServicesUrl + 'system/v1/jobs/restore-from-upload', null, { params, observe: 'response' }));
|
|
6023
6045
|
return r.body;
|
|
6024
6046
|
}
|
|
6025
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.
|
|
6026
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.
|
|
6047
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TusUploadService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6048
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TusUploadService, providedIn: 'root' });
|
|
6027
6049
|
}
|
|
6028
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.
|
|
6050
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TusUploadService, decorators: [{
|
|
6029
6051
|
type: Injectable,
|
|
6030
6052
|
args: [{
|
|
6031
6053
|
providedIn: 'root'
|
|
@@ -6135,10 +6157,10 @@ class CkModelCatalogService {
|
|
|
6135
6157
|
const r = await firstValueFrom(this.httpClient.get(url, { observe: 'response' }));
|
|
6136
6158
|
return r.body;
|
|
6137
6159
|
}
|
|
6138
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.
|
|
6139
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.
|
|
6160
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: CkModelCatalogService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6161
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: CkModelCatalogService, providedIn: 'root' });
|
|
6140
6162
|
}
|
|
6141
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.
|
|
6163
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: CkModelCatalogService, decorators: [{
|
|
6142
6164
|
type: Injectable,
|
|
6143
6165
|
args: [{
|
|
6144
6166
|
providedIn: 'root'
|
|
@@ -6180,10 +6202,10 @@ class GetEntitiesByCkTypeDtoGQL extends i1.Query {
|
|
|
6180
6202
|
constructor(apollo) {
|
|
6181
6203
|
super(apollo);
|
|
6182
6204
|
}
|
|
6183
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.
|
|
6184
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.
|
|
6205
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: GetEntitiesByCkTypeDtoGQL, deps: [{ token: i1.Apollo }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6206
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: GetEntitiesByCkTypeDtoGQL, providedIn: 'root' });
|
|
6185
6207
|
}
|
|
6186
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.
|
|
6208
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: GetEntitiesByCkTypeDtoGQL, decorators: [{
|
|
6187
6209
|
type: Injectable,
|
|
6188
6210
|
args: [{
|
|
6189
6211
|
providedIn: 'root'
|
|
@@ -6305,11 +6327,11 @@ class OctoServicesModule {
|
|
|
6305
6327
|
]
|
|
6306
6328
|
};
|
|
6307
6329
|
}
|
|
6308
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.
|
|
6309
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "22.0.
|
|
6310
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "22.0.
|
|
6330
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: OctoServicesModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
6331
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "22.0.5", ngImport: i0, type: OctoServicesModule });
|
|
6332
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: OctoServicesModule });
|
|
6311
6333
|
}
|
|
6312
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.
|
|
6334
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: OctoServicesModule, decorators: [{
|
|
6313
6335
|
type: NgModule,
|
|
6314
6336
|
args: [{
|
|
6315
6337
|
declarations: [],
|
|
@@ -6593,5 +6615,5 @@ function provideOctoServices(octoServiceOptions) {
|
|
|
6593
6615
|
* Generated bundle index. Do not edit.
|
|
6594
6616
|
*/
|
|
6595
6617
|
|
|
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 };
|
|
6618
|
+
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, SeriesComparisonPolicyDto, 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 };
|
|
6597
6619
|
//# sourceMappingURL=meshmakers-octo-services.mjs.map
|