@osdk/client.unstable 2.2.0-beta.21 → 2.2.0-beta.22
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.
- package/CHANGELOG.md +2 -0
- package/build/cjs/index.d.cts +513 -188
- package/build/types/blockDataIr.d.ts +3 -62
- package/build/types/blockDataIr.d.ts.map +1 -1
- package/build/types/generated/ontology-metadata/api/blockdata/__components.d.ts +125 -1
- package/build/types/generated/ontology-metadata/api/blockdata/__components.d.ts.map +1 -1
- package/build/types/generated/ontology-metadata/api/blockdata/index.d.ts +1 -1
- package/build/types/generated/ontology-metadata/api/blockdata/index.d.ts.map +1 -1
- package/build/types/index.d.ts +2 -2
- package/build/types/index.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
import type { InterfaceTypeBlockDataV2, OntologyBlockDataV2, OntologyIrActionTypeBlockDataV2, OntologyIrLinkTypeBlockDataV2, OntologyIrObjectTypeBlockDataV2, SharedPropertyTypeBlockDataV2 } from "./generated/ontology-metadata/api/blockdata/index.js";
|
|
1
|
+
import type { OntologyIrImportedTypes, OntologyIrOntologyBlockDataV2 } from "./generated/ontology-metadata/api/blockdata/index.js";
|
|
3
2
|
import type { BaseType } from "./generated/type-registry/api/BaseType.js";
|
|
4
3
|
import type { ExampleValue } from "./generated/type-registry/api/ExampleValue.js";
|
|
5
4
|
import type { ValueTypeApiName } from "./generated/type-registry/api/ValueTypeApiName.js";
|
|
@@ -10,65 +9,15 @@ import type { ValueTypeVersion } from "./generated/type-registry/api/ValueTypeVe
|
|
|
10
9
|
export type InterfaceTypeApiName = string;
|
|
11
10
|
export type ObjectTypeFieldApiName = string;
|
|
12
11
|
export type InterfaceLinkTypeApiName = string;
|
|
12
|
+
export type { OntologyIrOntologyBlockDataV2 } from "./generated/ontology-metadata/api/blockdata/index.js";
|
|
13
13
|
export interface OntologyIr {
|
|
14
14
|
blockData: OntologyIrOntologyBlockDataV2;
|
|
15
|
-
importedTypes:
|
|
15
|
+
importedTypes: OntologyIrImportedTypes;
|
|
16
16
|
}
|
|
17
|
-
export interface OntologyIrOntologyBlockDataV2 extends ReplaceKeys<Omit<OntologyBlockDataV2, "knownIdentifiers" | "ruleSets" | "blockOutputCompassLocations">, {
|
|
18
|
-
objectTypes: Record<string, OntologyIrObjectTypeBlockDataV2>
|
|
19
|
-
interfaceTypes: Record<string, OntologyIrInterfaceTypeBlockDataV2>
|
|
20
|
-
sharedPropertyTypes: Record<string, OntologyIrSharedPropertyTypeBlockDataV2>
|
|
21
|
-
linkTypes: Record<string, OntologyIrLinkTypeBlockDataV2>
|
|
22
|
-
actionTypes: Record<string, OntologyIrActionTypeBlockDataV2>
|
|
23
|
-
}> {}
|
|
24
|
-
export interface OntologyIrInterfaceType extends ReplaceKeys<Omit<InterfaceType, "rid">, {
|
|
25
|
-
properties: OntologyIrSharedPropertyType[]
|
|
26
|
-
allProperties: OntologyIrSharedPropertyType[]
|
|
27
|
-
extendsInterfaces: string[]
|
|
28
|
-
allExtendsInterfaces: string[]
|
|
29
|
-
links: OntologyIrInterfaceLinkType[]
|
|
30
|
-
allLinks: OntologyIrInterfaceLinkType[]
|
|
31
|
-
propertiesV2: Record<ObjectTypeFieldApiName, {
|
|
32
|
-
sharedPropertyType: OntologyIrSharedPropertyType
|
|
33
|
-
required: boolean
|
|
34
|
-
}>
|
|
35
|
-
}> {}
|
|
36
17
|
export type ApiNameValueTypeReference = {
|
|
37
18
|
apiName: ValueTypeApiName
|
|
38
19
|
version: ValueTypeVersion
|
|
39
20
|
};
|
|
40
|
-
export interface OntologyIrSharedPropertyType extends ReplaceKeys<Omit<SharedPropertyType, "rid" | "valueType">, {
|
|
41
|
-
type: OntologyIrType
|
|
42
|
-
}> {
|
|
43
|
-
valueType?: ApiNameValueTypeReference;
|
|
44
|
-
}
|
|
45
|
-
export type OntologyIrType = Exclude<Type, Type_struct | Type_array> | {
|
|
46
|
-
type: "struct"
|
|
47
|
-
struct: OntologyIrStructPropertyType
|
|
48
|
-
} | {
|
|
49
|
-
type: "array"
|
|
50
|
-
array: OntologyIrArrayPropertyType
|
|
51
|
-
};
|
|
52
|
-
export type OntologyIrArrayPropertyType = ReplaceKeys<ArrayPropertyType, {
|
|
53
|
-
subtype: OntologyIrType
|
|
54
|
-
}>;
|
|
55
|
-
export type OntologyIrStructPropertyType = ReplaceKeys<StructPropertyType, {
|
|
56
|
-
structFields: Array<OntologyIrStructFieldType>
|
|
57
|
-
}>;
|
|
58
|
-
export type OntologyIrStructFieldType = ReplaceKeys<Omit<StructFieldType, "structFieldRid">, {
|
|
59
|
-
fieldType: OntologyIrType
|
|
60
|
-
}>;
|
|
61
|
-
export interface OntologyIrInterfaceLinkType extends Omit<InterfaceLinkType, "rid"> {}
|
|
62
|
-
export interface OntologyIrInterfaceTypeBlockDataV2 extends ReplaceKeys<InterfaceTypeBlockDataV2, {
|
|
63
|
-
interfaceType: OntologyIrInterfaceType
|
|
64
|
-
}> {}
|
|
65
|
-
export interface OntologyIrSharedPropertyTypeBlockDataV2 extends ReplaceKeys<SharedPropertyTypeBlockDataV2, {
|
|
66
|
-
sharedPropertyType: OntologyIrSharedPropertyType
|
|
67
|
-
}> {}
|
|
68
|
-
type ReplaceKeys<
|
|
69
|
-
T,
|
|
70
|
-
Z extends { [K in keyof T]? : unknown }
|
|
71
|
-
> = { [K in keyof T] : K extends keyof Z ? Z[K] : T[K] };
|
|
72
21
|
export type OntologyIrPackagedValueType = {
|
|
73
22
|
version: ValueTypeVersion
|
|
74
23
|
baseType: BaseType
|
|
@@ -87,11 +36,3 @@ export type OntologyIrValueTypeBlockDataEntry = {
|
|
|
87
36
|
export type OntologyIrValueTypeBlockData = {
|
|
88
37
|
valueTypes: OntologyIrValueTypeBlockDataEntry[]
|
|
89
38
|
};
|
|
90
|
-
export type ImportedTypes = {
|
|
91
|
-
sharedPropertyTypes: ImportedSharedPropertyTypes[]
|
|
92
|
-
};
|
|
93
|
-
export type ImportedSharedPropertyTypes = {
|
|
94
|
-
apiName: string
|
|
95
|
-
packageName: string
|
|
96
|
-
};
|
|
97
|
-
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"mappings":"AAgBA,cACE,
|
|
1
|
+
{"mappings":"AAgBA,cACE,yBACA,qCACK,sDAAuD;AAC9D,cAAc,gBAAgB,2CAA4C;AAC1E,cAAc,oBAAoB,+CAAgD;AAClF,cAAc,wBAAwB,mDAAoD;AAC1F,cAAc,+BAA+B,0DAA2D;AACxG,cAAc,gCAAgC,2DAA4D;AAC1G,cAAc,uBAAuB,kDAAmD;AACxF,cAAc,wBAAwB,mDAAoD;AAE1F,YAAY;AACZ,YAAY;AACZ,YAAY;AACZ,cAAc,qCAAqC;AAEnD,iBAAiB,WAAW;CAC1B,WAAW;CACX,eAAe;AAChB;AAED,YAAY,4BAA4B;CACtC,SAAS;CACT,SAAS;AACV;AAED,YAAY,8BAA8B;CACxC,SAAS;CACT,UAAU;CACV,aAAa;CACb,eAAe;AAChB;AAED,YAAY,sCAAsC;CAChD,SAAS;CACT,iBAAiB;CACjB,QAAQ;AACT;AAED,YAAY,oCAAoC;CAC9C,UAAU;CACV,UAAU;AACX;AAED,YAAY,+BAA+B;CACzC,YAAY;AACb","names":[],"sources":["../../src/blockDataIr.ts"],"version":3,"file":"blockDataIr.d.ts"}
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
import type { ActionType as _api_ActionType, ActionTypeApiName as _api_ActionTypeApiName, ActionTypeRid as _api_ActionTypeRid, ColumnName as _api_ColumnName, DatasourceRid as _api_DatasourceRid, FunctionRid as _api_FunctionRid, FunctionVersion as _api_FunctionVersion, GeotimeSeriesIntegrationRid as _api_GeotimeSeriesIntegrationRid, GroupId as _api_GroupId, InterfaceLinkTypeApiName as _api_InterfaceLinkTypeApiName, InterfaceLinkTypeRid as _api_InterfaceLinkTypeRid, InterfaceType as _api_InterfaceType, InterfaceTypeApiName as _api_InterfaceTypeApiName, InterfaceTypeRid as _api_InterfaceTypeRid, LinkType as _api_LinkType, LinkTypeId as _api_LinkTypeId, LinkTypeRid as _api_LinkTypeRid, ManyToManyLinkTypeDatasource as _api_ManyToManyLinkTypeDatasource, ModuleRid as _api_ModuleRid, ObjectType as _api_ObjectType, ObjectTypeApiName as _api_ObjectTypeApiName, ObjectTypeDatasource as _api_ObjectTypeDatasource, ObjectTypeFieldApiName as _api_ObjectTypeFieldApiName, ObjectTypeId as _api_ObjectTypeId, ObjectTypeRid as _api_ObjectTypeRid, OntologyIrActionType as _api_OntologyIrActionType, OntologyIrInterfaceType as _api_OntologyIrInterfaceType, OntologyIrLinkType as _api_OntologyIrLinkType, OntologyIrManyToManyLinkTypeDatasource as _api_OntologyIrManyToManyLinkTypeDatasource, OntologyIrObjectType as _api_OntologyIrObjectType, OntologyIrObjectTypeDatasource as _api_OntologyIrObjectTypeDatasource, OntologyIrSharedPropertyType as _api_OntologyIrSharedPropertyType, OntologyPackageRid as _api_OntologyPackageRid, ParameterId as _api_ParameterId, ParameterRid as _api_ParameterRid, PropertyId as _api_PropertyId, PropertyTypeId as _api_PropertyTypeId, PropertyTypeRid as _api_PropertyTypeRid, RuleSetRid as _api_RuleSetRid, SchemaVersion as _api_SchemaVersion, SharedPropertyType as _api_SharedPropertyType, SharedPropertyTypeRid as _api_SharedPropertyTypeRid, TimeSeriesSyncRid as _api_TimeSeriesSyncRid, ValueTypeRid as _api_ValueTypeRid, ValueTypeVersionId as _api_ValueTypeVersionId, WebhookRid as _api_WebhookRid } from "../__components.js";
|
|
1
|
+
import type { ActionType as _api_ActionType, ActionTypeApiName as _api_ActionTypeApiName, ActionTypeRid as _api_ActionTypeRid, ColumnName as _api_ColumnName, DatasourceRid as _api_DatasourceRid, FunctionRid as _api_FunctionRid, FunctionVersion as _api_FunctionVersion, GeotimeSeriesIntegrationRid as _api_GeotimeSeriesIntegrationRid, GroupId as _api_GroupId, InterfaceLinkTypeApiName as _api_InterfaceLinkTypeApiName, InterfaceLinkTypeCardinality as _api_InterfaceLinkTypeCardinality, InterfaceLinkTypeRid as _api_InterfaceLinkTypeRid, InterfaceType as _api_InterfaceType, InterfaceTypeApiName as _api_InterfaceTypeApiName, InterfaceTypeRid as _api_InterfaceTypeRid, LinkType as _api_LinkType, LinkTypeId as _api_LinkTypeId, LinkTypeRid as _api_LinkTypeRid, ManyToManyLinkTypeDatasource as _api_ManyToManyLinkTypeDatasource, ModuleRid as _api_ModuleRid, ObjectType as _api_ObjectType, ObjectTypeApiName as _api_ObjectTypeApiName, ObjectTypeDatasource as _api_ObjectTypeDatasource, ObjectTypeFieldApiName as _api_ObjectTypeFieldApiName, ObjectTypeId as _api_ObjectTypeId, ObjectTypeRid as _api_ObjectTypeRid, OneToManyLinkCardinalityHint as _api_OneToManyLinkCardinalityHint, OntologyIrActionType as _api_OntologyIrActionType, OntologyIrInterfaceType as _api_OntologyIrInterfaceType, OntologyIrLinkType as _api_OntologyIrLinkType, OntologyIrManyToManyLinkTypeDatasource as _api_OntologyIrManyToManyLinkTypeDatasource, OntologyIrObjectType as _api_OntologyIrObjectType, OntologyIrObjectTypeDatasource as _api_OntologyIrObjectTypeDatasource, OntologyIrSharedPropertyType as _api_OntologyIrSharedPropertyType, OntologyIrType as _api_OntologyIrType, OntologyPackageRid as _api_OntologyPackageRid, ParameterId as _api_ParameterId, ParameterRid as _api_ParameterRid, PropertyId as _api_PropertyId, PropertyTypeId as _api_PropertyTypeId, PropertyTypeRid as _api_PropertyTypeRid, RuleSetRid as _api_RuleSetRid, SchemaVersion as _api_SchemaVersion, SharedPropertyType as _api_SharedPropertyType, SharedPropertyTypeRid as _api_SharedPropertyTypeRid, TimeSeriesSyncRid as _api_TimeSeriesSyncRid, Type as _api_Type, ValueTypeRid as _api_ValueTypeRid, ValueTypeVersionId as _api_ValueTypeVersionId, WebhookRid as _api_WebhookRid } from "../__components.js";
|
|
2
2
|
import type { ActionLogRequirednessMetadata as _api_entitymetadata_ActionLogRequirednessMetadata, EditsHistory as _api_entitymetadata_EditsHistory, EditsResolutionStrategies as _api_entitymetadata_EditsResolutionStrategies, EntityConfig as _api_entitymetadata_EntityConfig, LinkTypeEntityMetadata as _api_entitymetadata_LinkTypeEntityMetadata, ObjectTypeAlias as _api_entitymetadata_ObjectTypeAlias, OntologyIrLinkTypeEntityMetadata as _api_entitymetadata_OntologyIrLinkTypeEntityMetadata, PatchApplicationStrategy as _api_entitymetadata_PatchApplicationStrategy, StorageBackend as _api_entitymetadata_StorageBackend } from "../entitymetadata/__components.js";
|
|
3
3
|
import type { EntityProvenance as _api_entitymetadata_provenance_EntityProvenance } from "../entitymetadata/provenance/__components.js";
|
|
4
4
|
import type { RuleSet as _api_formatting_RuleSet } from "../formatting/__components.js";
|
|
5
5
|
import type { OntologyIrSchemaTransition as _api_schemamigrations_OntologyIrSchemaTransition, SchemaTransition as _api_schemamigrations_SchemaTransition } from "../schemamigrations/__components.js";
|
|
6
6
|
import type { ObjectTypeGothamMapping as _api_typemapping_ObjectTypeGothamMapping } from "../typemapping/__components.js";
|
|
7
|
+
import type { BaseParameterType as _api_types_BaseParameterType, OntologyIrBaseParameterType as _api_types_OntologyIrBaseParameterType } from "../types/__components.js";
|
|
7
8
|
export type ActionParameterShapeId = string;
|
|
8
9
|
export interface ActionTypeBlockDataV2 {
|
|
9
10
|
actionType: _api_ActionType;
|
|
@@ -56,6 +57,84 @@ export type DatasourcePredicate = DatasourcePredicate_or | DatasourcePredicate_h
|
|
|
56
57
|
* Ontology as code uses this as a stable ID for GeotimeSeriesIntegration inputs
|
|
57
58
|
*/
|
|
58
59
|
export type GeotimeSeriesIntegrationName = string;
|
|
60
|
+
export interface ImportedActionType {
|
|
61
|
+
apiName: _api_ActionTypeApiName;
|
|
62
|
+
description?: string | null | undefined;
|
|
63
|
+
displayName: string;
|
|
64
|
+
parameters: Array<ImportedParameter>;
|
|
65
|
+
}
|
|
66
|
+
export interface ImportedInterfaceLinkType {
|
|
67
|
+
apiName: _api_InterfaceLinkTypeApiName;
|
|
68
|
+
cardinality: _api_InterfaceLinkTypeCardinality;
|
|
69
|
+
description?: string | null | undefined;
|
|
70
|
+
displayName: string;
|
|
71
|
+
required: boolean;
|
|
72
|
+
}
|
|
73
|
+
export interface ImportedInterfaceType {
|
|
74
|
+
apiName: _api_InterfaceTypeApiName;
|
|
75
|
+
description?: string | null | undefined;
|
|
76
|
+
displayName: string;
|
|
77
|
+
links: Array<ImportedInterfaceLinkType>;
|
|
78
|
+
properties: Array<ImportedSharedPropertyType>;
|
|
79
|
+
}
|
|
80
|
+
export interface ImportedLinkDefinition_manyToMany {
|
|
81
|
+
type: "manyToMany";
|
|
82
|
+
manyToMany: ImportedManyToManyLinkDefinition;
|
|
83
|
+
}
|
|
84
|
+
export interface ImportedLinkDefinition_oneToMany {
|
|
85
|
+
type: "oneToMany";
|
|
86
|
+
oneToMany: ImportedOneToManyLinkDefinition;
|
|
87
|
+
}
|
|
88
|
+
export type ImportedLinkDefinition = ImportedLinkDefinition_manyToMany | ImportedLinkDefinition_oneToMany;
|
|
89
|
+
export interface ImportedLinkType {
|
|
90
|
+
definition: ImportedLinkDefinition;
|
|
91
|
+
id: _api_LinkTypeId;
|
|
92
|
+
}
|
|
93
|
+
export interface ImportedManyToManyLinkDefinition {
|
|
94
|
+
objectTypeApiNameA: _api_ObjectTypeApiName;
|
|
95
|
+
objectTypeApiNameB: _api_ObjectTypeApiName;
|
|
96
|
+
objectTypeAToBLinkDisplayName: string;
|
|
97
|
+
objectTypeBToALinkDisplayName: string;
|
|
98
|
+
}
|
|
99
|
+
export interface ImportedObjectType {
|
|
100
|
+
apiName: _api_ObjectTypeApiName;
|
|
101
|
+
description?: string | null | undefined;
|
|
102
|
+
displayName: string;
|
|
103
|
+
propertyTypes: Array<ImportedPropertyType>;
|
|
104
|
+
}
|
|
105
|
+
export interface ImportedOneToManyLinkDefinition {
|
|
106
|
+
cardinality?: _api_OneToManyLinkCardinalityHint | null | undefined;
|
|
107
|
+
manyToOneLinkDisplayName: string;
|
|
108
|
+
objectTypeApiNameManySide: _api_ObjectTypeApiName;
|
|
109
|
+
objectTypeApiNameOneSide: _api_ObjectTypeApiName;
|
|
110
|
+
oneToManyLinkDisplayName: string;
|
|
111
|
+
}
|
|
112
|
+
export interface ImportedParameter {
|
|
113
|
+
description?: string | null | undefined;
|
|
114
|
+
displayName: string;
|
|
115
|
+
id: _api_ParameterId;
|
|
116
|
+
type: _api_types_BaseParameterType;
|
|
117
|
+
}
|
|
118
|
+
export interface ImportedPropertyType {
|
|
119
|
+
apiName: _api_ObjectTypeFieldApiName;
|
|
120
|
+
description?: string | null | undefined;
|
|
121
|
+
displayName: string;
|
|
122
|
+
sharedPropertyType?: _api_ObjectTypeFieldApiName | null | undefined;
|
|
123
|
+
type: _api_Type;
|
|
124
|
+
}
|
|
125
|
+
export interface ImportedSharedPropertyType {
|
|
126
|
+
apiName: _api_ObjectTypeFieldApiName;
|
|
127
|
+
description?: string | null | undefined;
|
|
128
|
+
displayName: string;
|
|
129
|
+
type: _api_Type;
|
|
130
|
+
}
|
|
131
|
+
export interface ImportedTypes {
|
|
132
|
+
actionTypes: Array<ImportedActionType>;
|
|
133
|
+
interfaceTypes: Array<ImportedInterfaceType>;
|
|
134
|
+
linkTypes: Array<ImportedLinkType>;
|
|
135
|
+
objectTypes: Array<ImportedObjectType>;
|
|
136
|
+
sharedPropertyTypes: Array<ImportedSharedPropertyType>;
|
|
137
|
+
}
|
|
59
138
|
export type InstallLocationBlockShapeId = BlockShapeId;
|
|
60
139
|
export interface InterfaceTypeBlockDataV2 {
|
|
61
140
|
interfaceType: _api_InterfaceType;
|
|
@@ -170,6 +249,51 @@ export interface OntologyIrBlockPermissionInformation {
|
|
|
170
249
|
linkTypes: Record<_api_LinkTypeId, LinkTypePermissionInformation>;
|
|
171
250
|
objectTypes: Record<_api_ObjectTypeApiName, ObjectTypePermissionInformation>;
|
|
172
251
|
}
|
|
252
|
+
export interface OntologyIrImportedActionType {
|
|
253
|
+
apiName: _api_ActionTypeApiName;
|
|
254
|
+
description?: string | null | undefined;
|
|
255
|
+
displayName: string;
|
|
256
|
+
parameters: Array<OntologyIrImportedParameter>;
|
|
257
|
+
}
|
|
258
|
+
export interface OntologyIrImportedInterfaceType {
|
|
259
|
+
apiName: _api_InterfaceTypeApiName;
|
|
260
|
+
description?: string | null | undefined;
|
|
261
|
+
displayName: string;
|
|
262
|
+
links: Array<ImportedInterfaceLinkType>;
|
|
263
|
+
properties: Array<OntologyIrImportedSharedPropertyType>;
|
|
264
|
+
}
|
|
265
|
+
export interface OntologyIrImportedObjectType {
|
|
266
|
+
apiName: _api_ObjectTypeApiName;
|
|
267
|
+
description?: string | null | undefined;
|
|
268
|
+
displayName: string;
|
|
269
|
+
propertyTypes: Array<OntologyIrImportedPropertyType>;
|
|
270
|
+
}
|
|
271
|
+
export interface OntologyIrImportedParameter {
|
|
272
|
+
description?: string | null | undefined;
|
|
273
|
+
displayName: string;
|
|
274
|
+
id: _api_ParameterId;
|
|
275
|
+
type: _api_types_OntologyIrBaseParameterType;
|
|
276
|
+
}
|
|
277
|
+
export interface OntologyIrImportedPropertyType {
|
|
278
|
+
apiName: _api_ObjectTypeFieldApiName;
|
|
279
|
+
description?: string | null | undefined;
|
|
280
|
+
displayName: string;
|
|
281
|
+
sharedPropertyType?: _api_ObjectTypeFieldApiName | null | undefined;
|
|
282
|
+
type: _api_OntologyIrType;
|
|
283
|
+
}
|
|
284
|
+
export interface OntologyIrImportedSharedPropertyType {
|
|
285
|
+
apiName: _api_ObjectTypeFieldApiName;
|
|
286
|
+
description?: string | null | undefined;
|
|
287
|
+
displayName: string;
|
|
288
|
+
type: _api_OntologyIrType;
|
|
289
|
+
}
|
|
290
|
+
export interface OntologyIrImportedTypes {
|
|
291
|
+
actionTypes: Array<OntologyIrImportedActionType>;
|
|
292
|
+
interfaceTypes: Array<OntologyIrImportedInterfaceType>;
|
|
293
|
+
linkTypes: Array<ImportedLinkType>;
|
|
294
|
+
objectTypes: Array<OntologyIrImportedObjectType>;
|
|
295
|
+
sharedPropertyTypes: Array<OntologyIrImportedSharedPropertyType>;
|
|
296
|
+
}
|
|
173
297
|
export interface OntologyIrInterfaceTypeBlockDataV2 {
|
|
174
298
|
interfaceType: _api_OntologyIrInterfaceType;
|
|
175
299
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"mappings":"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","names":[],"sources":["../../../../../../src/generated/ontology-metadata/api/blockdata/__components.ts"],"version":3,"file":"__components.d.ts"}
|
|
1
|
+
{"mappings":"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","names":[],"sources":["../../../../../../src/generated/ontology-metadata/api/blockdata/__components.ts"],"version":3,"file":"__components.d.ts"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export type { ActionParameterShapeId, ActionTypeBlockDataV2, ActionTypePermissionInformation, ActionTypeRestrictionStatus, BlockInternalId, BlockPermissionInformation, BlockShapeId, ColumnNameType, DataFilter, DataSetName, DatasourcePredicate, GeotimeSeriesIntegrationName, InstallLocationBlockShapeId, InterfaceTypeBlockDataV2, IsOnlyDatasource, KnownMarketplaceIdentifiers, LinkTypeBlockDataV2, LinkTypePermissionInformation, LinkTypeRestrictionStatus, MarketplaceObjectTypeEntityMetadata, MediaSetViewName, ObjectsWritebackDataset, ObjectTypeBlockDataV2, ObjectTypePermissionInformation, ObjectTypeRestrictionStatus, OntologyBlockDataV2, OntologyIrActionTypeBlockDataV2, OntologyIrBlockPermissionInformation, OntologyIrInterfaceTypeBlockDataV2, OntologyIrKnownMarketplaceIdentifiers, OntologyIrLinkTypeBlockDataV2, OntologyIrMarketplaceObjectTypeEntityMetadata, OntologyIrObjectPropertyReference, OntologyIrObjectsWritebackDataset, OntologyIrObjectTypeBlockDataV2, OntologyIrOntologyBlockDataV2, OntologyIrPropertyToColumnMapping, OntologyIrPropertyToPropertyMapping, OntologyIrSchemaMigrationBlockData, OntologyIrSchemaTransitionsWithSchemaVersion, OntologyIrSharedPropertyTypeBlockDataV2, OutputMode, PatchesConfiguration, PropertyPredicate, PropertyRid, RestrictedViewName, SchemaConfiguration, SchemaMigrationBlockData, SchemaTransitionsWithSchemaVersion, SharedPropertyTypeBlockDataV2, StreamName, TimeSeriesSyncName, ValidationRuleIndex, WritebackDatasetRid, WritebackDatasetSpec } from "./__components.js";
|
|
1
|
+
export type { ActionParameterShapeId, ActionTypeBlockDataV2, ActionTypePermissionInformation, ActionTypeRestrictionStatus, BlockInternalId, BlockPermissionInformation, BlockShapeId, ColumnNameType, DataFilter, DataSetName, DatasourcePredicate, GeotimeSeriesIntegrationName, ImportedActionType, ImportedInterfaceLinkType, ImportedInterfaceType, ImportedLinkDefinition, ImportedLinkType, ImportedManyToManyLinkDefinition, ImportedObjectType, ImportedOneToManyLinkDefinition, ImportedParameter, ImportedPropertyType, ImportedSharedPropertyType, ImportedTypes, InstallLocationBlockShapeId, InterfaceTypeBlockDataV2, IsOnlyDatasource, KnownMarketplaceIdentifiers, LinkTypeBlockDataV2, LinkTypePermissionInformation, LinkTypeRestrictionStatus, MarketplaceObjectTypeEntityMetadata, MediaSetViewName, ObjectsWritebackDataset, ObjectTypeBlockDataV2, ObjectTypePermissionInformation, ObjectTypeRestrictionStatus, OntologyBlockDataV2, OntologyIrActionTypeBlockDataV2, OntologyIrBlockPermissionInformation, OntologyIrImportedActionType, OntologyIrImportedInterfaceType, OntologyIrImportedObjectType, OntologyIrImportedParameter, OntologyIrImportedPropertyType, OntologyIrImportedSharedPropertyType, OntologyIrImportedTypes, OntologyIrInterfaceTypeBlockDataV2, OntologyIrKnownMarketplaceIdentifiers, OntologyIrLinkTypeBlockDataV2, OntologyIrMarketplaceObjectTypeEntityMetadata, OntologyIrObjectPropertyReference, OntologyIrObjectsWritebackDataset, OntologyIrObjectTypeBlockDataV2, OntologyIrOntologyBlockDataV2, OntologyIrPropertyToColumnMapping, OntologyIrPropertyToPropertyMapping, OntologyIrSchemaMigrationBlockData, OntologyIrSchemaTransitionsWithSchemaVersion, OntologyIrSharedPropertyTypeBlockDataV2, OutputMode, PatchesConfiguration, PropertyPredicate, PropertyRid, RestrictedViewName, SchemaConfiguration, SchemaMigrationBlockData, SchemaTransitionsWithSchemaVersion, SharedPropertyTypeBlockDataV2, StreamName, TimeSeriesSyncName, ValidationRuleIndex, WritebackDatasetRid, WritebackDatasetSpec } from "./__components.js";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"mappings":"AAgBA,cACE,wBACA,uBACA,iCACA,6BACA,iBACA,4BACA,cACA,gBACA,YACA,aACA,qBACA,8BACA,6BACA,0BACA,kBACA,6BACA,qBACA,+BACA,2BACA,qCACA,kBACA,yBACA,uBACA,iCACA,6BACA,qBACA,iCACA,sCACA,oCACA,uCACA,+BACA,+CACA,mCACA,mCACA,iCACA,+BACA,mCACA,qCACA,oCACA,8CACA,yCACA,YACA,sBACA,mBACA,aACA,oBACA,qBACA,0BACA,oCACA,+BACA,YACA,oBACA,qBACA,qBACA,4BACK","names":[],"sources":["../../../../../../src/generated/ontology-metadata/api/blockdata/index.ts"],"version":3,"file":"index.d.ts"}
|
|
1
|
+
{"mappings":"AAgBA,cACE,wBACA,uBACA,iCACA,6BACA,iBACA,4BACA,cACA,gBACA,YACA,aACA,qBACA,8BACA,oBACA,2BACA,uBACA,wBACA,kBACA,kCACA,oBACA,iCACA,mBACA,sBACA,4BACA,eACA,6BACA,0BACA,kBACA,6BACA,qBACA,+BACA,2BACA,qCACA,kBACA,yBACA,uBACA,iCACA,6BACA,qBACA,iCACA,sCACA,8BACA,iCACA,8BACA,6BACA,gCACA,sCACA,yBACA,oCACA,uCACA,+BACA,+CACA,mCACA,mCACA,iCACA,+BACA,mCACA,qCACA,oCACA,8CACA,yCACA,YACA,sBACA,mBACA,aACA,oBACA,qBACA,0BACA,oCACA,+BACA,YACA,oBACA,qBACA,qBACA,4BACK","names":[],"sources":["../../../../../../src/generated/ontology-metadata/api/blockdata/index.ts"],"version":3,"file":"index.d.ts"}
|
package/build/types/index.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ export { getLinkTypesForObjectTypes } from "./generated/ontology-metadata/api/On
|
|
|
11
11
|
export { loadAllOntologies } from "./generated/ontology-metadata/api/OntologyMetadataService/loadAllOntologies.js";
|
|
12
12
|
export * from "./generated/ontology-metadata/api/__components.js";
|
|
13
13
|
export type { OntologyIrBaseParameterType, OntologyIrBaseParameterType_decimal, OntologyIrBaseParameterType_decimalList, OntologyIrBaseParameterType_interfaceReference, OntologyIrBaseParameterType_interfaceReferenceList, OntologyIrBaseParameterType_objectReference, OntologyIrBaseParameterType_objectReferenceList, OntologyIrBaseParameterType_objectSetRid, OntologyIrBaseParameterType_objectTypeReference, OntologyIrBaseParameterType_struct, OntologyIrBaseParameterType_structList, OntologyIrBaseParameterType_timestamp, OntologyIrBaseParameterType_timestampList, ParameterRenderHint, ParameterRequiredConfiguration } from "./generated/ontology-metadata/api/types/__components.js";
|
|
14
|
-
export type
|
|
14
|
+
export type * from "./generated/ontology-metadata/api/blockdata/__components.ts";
|
|
15
15
|
export type { SharedPropertyTypeGothamMapping } from "./generated/ontology-metadata/api/typemapping/__components.ts";
|
|
16
16
|
export type { BaseType } from "./generated/type-registry/api/BaseType.js";
|
|
17
17
|
export type { DataConstraint } from "./generated/type-registry/api/DataConstraint.js";
|
|
@@ -23,4 +23,4 @@ export type { ValueTypeDataConstraint } from "./generated/type-registry/api/Valu
|
|
|
23
23
|
export type { ValueTypeDisplayMetadata } from "./generated/type-registry/api/ValueTypeDisplayMetadata.js";
|
|
24
24
|
export type { ValueTypeStatus } from "./generated/type-registry/api/ValueTypeStatus.js";
|
|
25
25
|
export type { ValueTypeVersion } from "./generated/type-registry/api/ValueTypeVersion.js";
|
|
26
|
-
export type { ApiNameValueTypeReference,
|
|
26
|
+
export type { ApiNameValueTypeReference, OntologyIr, OntologyIrOntologyBlockDataV2, OntologyIrValueTypeBlockData, OntologyIrValueTypeBlockDataEntry } from "./blockDataIr.js";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"mappings":"AAgBA,cAAc,2BAA2B;AACzC,cAAc,8BAA8B;AAC5C,cAAc,+BAA+B;AAC7C,cAAc,wBAAwB;AACtC,cAAc,iBAAiB;AAC/B,cAAc,uBAAuB;AAErC,SAAS,gCAAgC;AACzC,SAAS,wBAAwB;AAEjC,SAAS,gCAAgC;AACzC,SAAS,kCAAkC;AAC3C,SAAS,yBAAyB;AAElC,cAAc;AAEd,cACE,6BACA,qCACA,yCACA,gDACA,oDACA,6CACA,iDACA,0CACA,iDACA,oCACA,wCACA,uCACA,2CACA,qBACA,sCACK;AAEP,
|
|
1
|
+
{"mappings":"AAgBA,cAAc,2BAA2B;AACzC,cAAc,8BAA8B;AAC5C,cAAc,+BAA+B;AAC7C,cAAc,wBAAwB;AACtC,cAAc,iBAAiB;AAC/B,cAAc,uBAAuB;AAErC,SAAS,gCAAgC;AACzC,SAAS,wBAAwB;AAEjC,SAAS,gCAAgC;AACzC,SAAS,kCAAkC;AAC3C,SAAS,yBAAyB;AAElC,cAAc;AAEd,cACE,6BACA,qCACA,yCACA,gDACA,oDACA,6CACA,iDACA,0CACA,iDACA,oCACA,wCACA,uCACA,2CACA,qBACA,sCACK;AAEP,mBAAmB;AAEnB,cAAc,uCAAuC;AAErD,cAAc,gBAAgB;AAC9B,cAAc,sBAAsB;AACpC,cAAc,6BAA6B;AAC3C,cAAc,oBAAoB;AAClC,cAAc,sBAAsB;AACpC,cAAc,wBAAwB;AACtC,cAAc,+BAA+B;AAC7C,cAAc,gCAAgC;AAC9C,cAAc,uBAAuB;AACrC,cAAc,wBAAwB;AAEtC,cACE,2BACA,YACA,+BACA,8BACA,yCACK","names":[],"sources":["../../src/index.ts"],"version":3,"file":"index.d.ts"}
|