@osdk/internal.foundry.ontologiesv2 2.12.0 → 2.14.0
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 +22 -0
- package/build/browser/public/Action.d.ts +19 -19
- package/build/browser/public/Action.d.ts.map +1 -1
- package/build/browser/public/ActionTypeV2.d.ts +6 -5
- package/build/browser/public/ActionTypeV2.d.ts.map +1 -1
- package/build/browser/public/Attachment.d.ts +4 -3
- package/build/browser/public/Attachment.d.ts.map +1 -1
- package/build/browser/public/AttachmentPropertyV2.d.ts +29 -29
- package/build/browser/public/AttachmentPropertyV2.d.ts.map +1 -1
- package/build/browser/public/LinkedObjectV2.d.ts +19 -18
- package/build/browser/public/LinkedObjectV2.d.ts.map +1 -1
- package/build/browser/public/MediaReferenceProperty.d.ts +17 -16
- package/build/browser/public/MediaReferenceProperty.d.ts.map +1 -1
- package/build/browser/public/ObjectTypeV2.d.ts +16 -15
- package/build/browser/public/ObjectTypeV2.d.ts.map +1 -1
- package/build/browser/public/OntologyInterface.d.ts +14 -13
- package/build/browser/public/OntologyInterface.d.ts.map +1 -1
- package/build/browser/public/OntologyObjectSet.d.ts +27 -26
- package/build/browser/public/OntologyObjectSet.d.ts.map +1 -1
- package/build/browser/public/OntologyObjectV2.d.ts +32 -31
- package/build/browser/public/OntologyObjectV2.d.ts.map +1 -1
- package/build/browser/public/OntologyV2.d.ts +4 -4
- package/build/browser/public/OntologyV2.d.ts.map +1 -1
- package/build/browser/public/Query.d.ts +7 -7
- package/build/browser/public/Query.d.ts.map +1 -1
- package/build/browser/public/QueryType.d.ts +6 -5
- package/build/browser/public/QueryType.d.ts.map +1 -1
- package/build/browser/public/TimeSeriesPropertyV2.d.ts +23 -23
- package/build/browser/public/TimeSeriesPropertyV2.d.ts.map +1 -1
- package/build/browser/public/TimeSeriesValueBankProperty.d.ts +15 -15
- package/build/browser/public/TimeSeriesValueBankProperty.d.ts.map +1 -1
- package/build/esm/public/Action.d.ts +19 -19
- package/build/esm/public/Action.d.ts.map +1 -1
- package/build/esm/public/ActionTypeV2.d.ts +6 -5
- package/build/esm/public/ActionTypeV2.d.ts.map +1 -1
- package/build/esm/public/Attachment.d.ts +4 -3
- package/build/esm/public/Attachment.d.ts.map +1 -1
- package/build/esm/public/AttachmentPropertyV2.d.ts +29 -29
- package/build/esm/public/AttachmentPropertyV2.d.ts.map +1 -1
- package/build/esm/public/LinkedObjectV2.d.ts +19 -18
- package/build/esm/public/LinkedObjectV2.d.ts.map +1 -1
- package/build/esm/public/MediaReferenceProperty.d.ts +17 -16
- package/build/esm/public/MediaReferenceProperty.d.ts.map +1 -1
- package/build/esm/public/ObjectTypeV2.d.ts +16 -15
- package/build/esm/public/ObjectTypeV2.d.ts.map +1 -1
- package/build/esm/public/OntologyInterface.d.ts +14 -13
- package/build/esm/public/OntologyInterface.d.ts.map +1 -1
- package/build/esm/public/OntologyObjectSet.d.ts +27 -26
- package/build/esm/public/OntologyObjectSet.d.ts.map +1 -1
- package/build/esm/public/OntologyObjectV2.d.ts +32 -31
- package/build/esm/public/OntologyObjectV2.d.ts.map +1 -1
- package/build/esm/public/OntologyV2.d.ts +4 -4
- package/build/esm/public/OntologyV2.d.ts.map +1 -1
- package/build/esm/public/Query.d.ts +7 -7
- package/build/esm/public/Query.d.ts.map +1 -1
- package/build/esm/public/QueryType.d.ts +6 -5
- package/build/esm/public/QueryType.d.ts.map +1 -1
- package/build/esm/public/TimeSeriesPropertyV2.d.ts +23 -23
- package/build/esm/public/TimeSeriesPropertyV2.d.ts.map +1 -1
- package/build/esm/public/TimeSeriesValueBankProperty.d.ts +15 -15
- package/build/esm/public/TimeSeriesValueBankProperty.d.ts.map +1 -1
- package/package.json +4 -3
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type * as _Core from "@osdk/internal.foundry.core";
|
|
2
|
+
import type * as _Ontologies from "@osdk/internal.foundry.ontologies";
|
|
2
3
|
import type { SharedClient as $OldClient, SharedClientContext as $OldClientContext } from "@osdk/shared.client";
|
|
3
4
|
import type { SharedClient as $Client, SharedClientContext as $ClientContext } from "@osdk/shared.client2";
|
|
4
5
|
/**
|
|
@@ -15,12 +16,12 @@ import type { SharedClient as $Client, SharedClientContext as $ClientContext } f
|
|
|
15
16
|
* URL: /v2/ontologies/{ontology}/actionTypes
|
|
16
17
|
*/
|
|
17
18
|
export declare function list($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
18
|
-
ontology:
|
|
19
|
+
ontology: _Ontologies.OntologyIdentifier,
|
|
19
20
|
$queryParams?: {
|
|
20
21
|
pageSize?: _Core.PageSize | undefined;
|
|
21
22
|
pageToken?: _Core.PageToken | undefined;
|
|
22
23
|
}
|
|
23
|
-
]): Promise<
|
|
24
|
+
]): Promise<_Ontologies.ListActionTypesResponseV2>;
|
|
24
25
|
/**
|
|
25
26
|
* Gets a specific action type with the given API name.
|
|
26
27
|
*
|
|
@@ -32,7 +33,7 @@ export declare function list($ctx: $Client | $ClientContext | $OldClient | $OldC
|
|
|
32
33
|
* URL: /v2/ontologies/{ontology}/actionTypes/{actionType}
|
|
33
34
|
*/
|
|
34
35
|
export declare function get($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
35
|
-
ontology:
|
|
36
|
-
actionType:
|
|
37
|
-
]): Promise<
|
|
36
|
+
ontology: _Ontologies.OntologyIdentifier,
|
|
37
|
+
actionType: _Ontologies.ActionTypeApiName
|
|
38
|
+
]): Promise<_Ontologies.ActionTypeV2>;
|
|
38
39
|
//# sourceMappingURL=ActionTypeV2.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ActionTypeV2.d.ts","sourceRoot":"","sources":["../../../src/public/ActionTypeV2.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,KAAK,KAAK,MAAM,6BAA6B,CAAC;AAC1D,OAAO,KAAK,EACV,YAAY,IAAI,UAAU,EAC1B,mBAAmB,IAAI,iBAAiB,EACzC,MAAM,qBAAqB,CAAC;AAC7B,OAAO,KAAK,EACV,YAAY,IAAI,OAAO,EACvB,mBAAmB,IAAI,cAAc,EACtC,MAAM,sBAAsB,CAAC;AAgB9B;;;;;;;;;;;;GAYG;AACH,wBAAgB,IAAI,CAClB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,QAAQ,EAAE,
|
|
1
|
+
{"version":3,"file":"ActionTypeV2.d.ts","sourceRoot":"","sources":["../../../src/public/ActionTypeV2.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,KAAK,KAAK,MAAM,6BAA6B,CAAC;AAC1D,OAAO,KAAK,KAAK,WAAW,MAAM,mCAAmC,CAAC;AACtE,OAAO,KAAK,EACV,YAAY,IAAI,UAAU,EAC1B,mBAAmB,IAAI,iBAAiB,EACzC,MAAM,qBAAqB,CAAC;AAC7B,OAAO,KAAK,EACV,YAAY,IAAI,OAAO,EACvB,mBAAmB,IAAI,cAAc,EACtC,MAAM,sBAAsB,CAAC;AAgB9B;;;;;;;;;;;;GAYG;AACH,wBAAgB,IAAI,CAClB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,QAAQ,EAAE,WAAW,CAAC,kBAAkB;IAExC,YAAY,CAAC,EAAE;QACb,QAAQ,CAAC,EAAE,KAAK,CAAC,QAAQ,GAAG,SAAS,CAAC;QACtC,SAAS,CAAC,EAAE,KAAK,CAAC,SAAS,GAAG,SAAS,CAAC;KACzC;CACF,GACA,OAAO,CAAC,WAAW,CAAC,yBAAyB,CAAC,CAEhD;AASD;;;;;;;;;GASG;AACH,wBAAgB,GAAG,CACjB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,QAAQ,EAAE,WAAW,CAAC,kBAAkB;IACxC,UAAU,EAAE,WAAW,CAAC,iBAAiB;CAC1C,GACA,OAAO,CAAC,WAAW,CAAC,YAAY,CAAC,CAEnC"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type * as _Core from "@osdk/internal.foundry.core";
|
|
2
|
+
import type * as _Ontologies from "@osdk/internal.foundry.ontologies";
|
|
2
3
|
import type { SharedClient as $OldClient, SharedClientContext as $OldClientContext } from "@osdk/shared.client";
|
|
3
4
|
import type { SharedClient as $Client, SharedClientContext as $ClientContext } from "@osdk/shared.client2";
|
|
4
5
|
/**
|
|
@@ -24,7 +25,7 @@ export declare function upload($ctx: $Client | $ClientContext | $OldClient | $Ol
|
|
|
24
25
|
$headerParams?: {
|
|
25
26
|
"Content-Type"?: _Core.ContentType;
|
|
26
27
|
}
|
|
27
|
-
]): Promise<
|
|
28
|
+
]): Promise<_Ontologies.AttachmentV2>;
|
|
28
29
|
/**
|
|
29
30
|
* Get the content of an attachment.
|
|
30
31
|
*
|
|
@@ -36,7 +37,7 @@ export declare function upload($ctx: $Client | $ClientContext | $OldClient | $Ol
|
|
|
36
37
|
* Required Scopes: [api:ontologies-read]
|
|
37
38
|
* URL: /v2/ontologies/attachments/{attachmentRid}/content
|
|
38
39
|
*/
|
|
39
|
-
export declare function read($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [attachmentRid:
|
|
40
|
+
export declare function read($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [attachmentRid: _Ontologies.AttachmentRid]): Promise<Response>;
|
|
40
41
|
/**
|
|
41
42
|
* Get the metadata of an attachment.
|
|
42
43
|
*
|
|
@@ -48,5 +49,5 @@ export declare function read($ctx: $Client | $ClientContext | $OldClient | $OldC
|
|
|
48
49
|
* Required Scopes: [api:ontologies-read]
|
|
49
50
|
* URL: /v2/ontologies/attachments/{attachmentRid}
|
|
50
51
|
*/
|
|
51
|
-
export declare function get($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [attachmentRid:
|
|
52
|
+
export declare function get($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [attachmentRid: _Ontologies.AttachmentRid]): Promise<_Ontologies.AttachmentV2>;
|
|
52
53
|
//# sourceMappingURL=Attachment.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Attachment.d.ts","sourceRoot":"","sources":["../../../src/public/Attachment.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,KAAK,KAAK,MAAM,6BAA6B,CAAC;AAC1D,OAAO,KAAK,EACV,YAAY,IAAI,UAAU,EAC1B,mBAAmB,IAAI,iBAAiB,EACzC,MAAM,qBAAqB,CAAC;AAC7B,OAAO,KAAK,EACV,YAAY,IAAI,OAAO,EACvB,mBAAmB,IAAI,cAAc,EACtC,MAAM,sBAAsB,CAAC;AAc9B;;;;;;;;;;;;;;GAcG;AACH,wBAAgB,MAAM,CACpB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,KAAK,EAAE,IAAI;IACX,YAAY,EAAE;QAAE,QAAQ,EAAE,KAAK,CAAC,QAAQ,CAAA;KAAE;IAC1C,aAAa,CAAC,EAAE;QAAE,cAAc,CAAC,EAAE,KAAK,CAAC,WAAW,CAAA;KAAE;CACvD,GACA,OAAO,CAAC,
|
|
1
|
+
{"version":3,"file":"Attachment.d.ts","sourceRoot":"","sources":["../../../src/public/Attachment.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,KAAK,KAAK,MAAM,6BAA6B,CAAC;AAC1D,OAAO,KAAK,KAAK,WAAW,MAAM,mCAAmC,CAAC;AACtE,OAAO,KAAK,EACV,YAAY,IAAI,UAAU,EAC1B,mBAAmB,IAAI,iBAAiB,EACzC,MAAM,qBAAqB,CAAC;AAC7B,OAAO,KAAK,EACV,YAAY,IAAI,OAAO,EACvB,mBAAmB,IAAI,cAAc,EACtC,MAAM,sBAAsB,CAAC;AAc9B;;;;;;;;;;;;;;GAcG;AACH,wBAAgB,MAAM,CACpB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,KAAK,EAAE,IAAI;IACX,YAAY,EAAE;QAAE,QAAQ,EAAE,KAAK,CAAC,QAAQ,CAAA;KAAE;IAC1C,aAAa,CAAC,EAAE;QAAE,cAAc,CAAC,EAAE,KAAK,CAAC,WAAW,CAAA;KAAE;CACvD,GACA,OAAO,CAAC,WAAW,CAAC,YAAY,CAAC,CAQnC;AAMD;;;;;;;;;;GAUG;AACH,wBAAgB,IAAI,CAClB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE,CAAC,aAAa,EAAE,WAAW,CAAC,aAAa,CAAC,GAClD,OAAO,CAAC,QAAQ,CAAC,CAEnB;AAQD;;;;;;;;;;GAUG;AACH,wBAAgB,GAAG,CACjB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE,CAAC,aAAa,EAAE,WAAW,CAAC,aAAa,CAAC,GAClD,OAAO,CAAC,WAAW,CAAC,YAAY,CAAC,CAEnC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type * as
|
|
1
|
+
import type * as _Ontologies from "@osdk/internal.foundry.ontologies";
|
|
2
2
|
import type { SharedClient as $OldClient, SharedClientContext as $OldClientContext } from "@osdk/shared.client";
|
|
3
3
|
import type { SharedClient as $Client, SharedClientContext as $ClientContext } from "@osdk/shared.client2";
|
|
4
4
|
/**
|
|
@@ -13,15 +13,15 @@ import type { SharedClient as $Client, SharedClientContext as $ClientContext } f
|
|
|
13
13
|
* URL: /v2/ontologies/{ontology}/objects/{objectType}/{primaryKey}/attachments/{property}
|
|
14
14
|
*/
|
|
15
15
|
export declare function getAttachment($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
16
|
-
ontology:
|
|
17
|
-
objectType:
|
|
18
|
-
primaryKey:
|
|
19
|
-
property:
|
|
16
|
+
ontology: _Ontologies.OntologyIdentifier,
|
|
17
|
+
objectType: _Ontologies.ObjectTypeApiName,
|
|
18
|
+
primaryKey: _Ontologies.PropertyValueEscapedString,
|
|
19
|
+
property: _Ontologies.PropertyApiName,
|
|
20
20
|
$queryParams?: {
|
|
21
|
-
artifactRepository?:
|
|
22
|
-
packageName?:
|
|
21
|
+
artifactRepository?: _Ontologies.ArtifactRepositoryRid | undefined;
|
|
22
|
+
packageName?: _Ontologies.SdkPackageName | undefined;
|
|
23
23
|
}
|
|
24
|
-
]): Promise<
|
|
24
|
+
]): Promise<_Ontologies.AttachmentMetadataResponse>;
|
|
25
25
|
/**
|
|
26
26
|
* Get the metadata of a particular attachment in an attachment list.
|
|
27
27
|
*
|
|
@@ -34,16 +34,16 @@ export declare function getAttachment($ctx: $Client | $ClientContext | $OldClien
|
|
|
34
34
|
* URL: /v2/ontologies/{ontology}/objects/{objectType}/{primaryKey}/attachments/{property}/{attachmentRid}
|
|
35
35
|
*/
|
|
36
36
|
export declare function getAttachmentByRid($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
37
|
-
ontology:
|
|
38
|
-
objectType:
|
|
39
|
-
primaryKey:
|
|
40
|
-
property:
|
|
41
|
-
attachmentRid:
|
|
37
|
+
ontology: _Ontologies.OntologyIdentifier,
|
|
38
|
+
objectType: _Ontologies.ObjectTypeApiName,
|
|
39
|
+
primaryKey: _Ontologies.PropertyValueEscapedString,
|
|
40
|
+
property: _Ontologies.PropertyApiName,
|
|
41
|
+
attachmentRid: _Ontologies.AttachmentRid,
|
|
42
42
|
$queryParams?: {
|
|
43
|
-
artifactRepository?:
|
|
44
|
-
packageName?:
|
|
43
|
+
artifactRepository?: _Ontologies.ArtifactRepositoryRid | undefined;
|
|
44
|
+
packageName?: _Ontologies.SdkPackageName | undefined;
|
|
45
45
|
}
|
|
46
|
-
]): Promise<
|
|
46
|
+
]): Promise<_Ontologies.AttachmentV2>;
|
|
47
47
|
/**
|
|
48
48
|
* Get the content of an attachment.
|
|
49
49
|
*
|
|
@@ -56,13 +56,13 @@ export declare function getAttachmentByRid($ctx: $Client | $ClientContext | $Old
|
|
|
56
56
|
* URL: /v2/ontologies/{ontology}/objects/{objectType}/{primaryKey}/attachments/{property}/content
|
|
57
57
|
*/
|
|
58
58
|
export declare function readAttachment($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
59
|
-
ontology:
|
|
60
|
-
objectType:
|
|
61
|
-
primaryKey:
|
|
62
|
-
property:
|
|
59
|
+
ontology: _Ontologies.OntologyIdentifier,
|
|
60
|
+
objectType: _Ontologies.ObjectTypeApiName,
|
|
61
|
+
primaryKey: _Ontologies.PropertyValueEscapedString,
|
|
62
|
+
property: _Ontologies.PropertyApiName,
|
|
63
63
|
$queryParams?: {
|
|
64
|
-
artifactRepository?:
|
|
65
|
-
packageName?:
|
|
64
|
+
artifactRepository?: _Ontologies.ArtifactRepositoryRid | undefined;
|
|
65
|
+
packageName?: _Ontologies.SdkPackageName | undefined;
|
|
66
66
|
}
|
|
67
67
|
]): Promise<Response>;
|
|
68
68
|
/**
|
|
@@ -79,14 +79,14 @@ export declare function readAttachment($ctx: $Client | $ClientContext | $OldClie
|
|
|
79
79
|
* URL: /v2/ontologies/{ontology}/objects/{objectType}/{primaryKey}/attachments/{property}/{attachmentRid}/content
|
|
80
80
|
*/
|
|
81
81
|
export declare function readAttachmentByRid($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
82
|
-
ontology:
|
|
83
|
-
objectType:
|
|
84
|
-
primaryKey:
|
|
85
|
-
property:
|
|
86
|
-
attachmentRid:
|
|
82
|
+
ontology: _Ontologies.OntologyIdentifier,
|
|
83
|
+
objectType: _Ontologies.ObjectTypeApiName,
|
|
84
|
+
primaryKey: _Ontologies.PropertyValueEscapedString,
|
|
85
|
+
property: _Ontologies.PropertyApiName,
|
|
86
|
+
attachmentRid: _Ontologies.AttachmentRid,
|
|
87
87
|
$queryParams?: {
|
|
88
|
-
artifactRepository?:
|
|
89
|
-
packageName?:
|
|
88
|
+
artifactRepository?: _Ontologies.ArtifactRepositoryRid | undefined;
|
|
89
|
+
packageName?: _Ontologies.SdkPackageName | undefined;
|
|
90
90
|
}
|
|
91
91
|
]): Promise<Response>;
|
|
92
92
|
//# sourceMappingURL=AttachmentPropertyV2.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AttachmentPropertyV2.d.ts","sourceRoot":"","sources":["../../../src/public/AttachmentPropertyV2.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,KAAK,
|
|
1
|
+
{"version":3,"file":"AttachmentPropertyV2.d.ts","sourceRoot":"","sources":["../../../src/public/AttachmentPropertyV2.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,KAAK,WAAW,MAAM,mCAAmC,CAAC;AACtE,OAAO,KAAK,EACV,YAAY,IAAI,UAAU,EAC1B,mBAAmB,IAAI,iBAAiB,EACzC,MAAM,qBAAqB,CAAC;AAC7B,OAAO,KAAK,EACV,YAAY,IAAI,OAAO,EACvB,mBAAmB,IAAI,cAAc,EACtC,MAAM,sBAAsB,CAAC;AAmB9B;;;;;;;;;;GAUG;AACH,wBAAgB,aAAa,CAC3B,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,QAAQ,EAAE,WAAW,CAAC,kBAAkB;IACxC,UAAU,EAAE,WAAW,CAAC,iBAAiB;IACzC,UAAU,EAAE,WAAW,CAAC,0BAA0B;IAClD,QAAQ,EAAE,WAAW,CAAC,eAAe;IAErC,YAAY,CAAC,EAAE;QACb,kBAAkB,CAAC,EAAE,WAAW,CAAC,qBAAqB,GAAG,SAAS,CAAC;QACnE,WAAW,CAAC,EAAE,WAAW,CAAC,cAAc,GAAG,SAAS,CAAC;KACtD;CACF,GACA,OAAO,CAAC,WAAW,CAAC,0BAA0B,CAAC,CAEjD;AAgBD;;;;;;;;;;GAUG;AACH,wBAAgB,kBAAkB,CAChC,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,QAAQ,EAAE,WAAW,CAAC,kBAAkB;IACxC,UAAU,EAAE,WAAW,CAAC,iBAAiB;IACzC,UAAU,EAAE,WAAW,CAAC,0BAA0B;IAClD,QAAQ,EAAE,WAAW,CAAC,eAAe;IACrC,aAAa,EAAE,WAAW,CAAC,aAAa;IAExC,YAAY,CAAC,EAAE;QACb,kBAAkB,CAAC,EAAE,WAAW,CAAC,qBAAqB,GAAG,SAAS,CAAC;QACnE,WAAW,CAAC,EAAE,WAAW,CAAC,cAAc,GAAG,SAAS,CAAC;KACtD;CACF,GACA,OAAO,CAAC,WAAW,CAAC,YAAY,CAAC,CAEnC;AAqBD;;;;;;;;;;GAUG;AACH,wBAAgB,cAAc,CAC5B,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,QAAQ,EAAE,WAAW,CAAC,kBAAkB;IACxC,UAAU,EAAE,WAAW,CAAC,iBAAiB;IACzC,UAAU,EAAE,WAAW,CAAC,0BAA0B;IAClD,QAAQ,EAAE,WAAW,CAAC,eAAe;IAErC,YAAY,CAAC,EAAE;QACb,kBAAkB,CAAC,EAAE,WAAW,CAAC,qBAAqB,GAAG,SAAS,CAAC;QACnE,WAAW,CAAC,EAAE,WAAW,CAAC,cAAc,GAAG,SAAS,CAAC;KACtD;CACF,GACA,OAAO,CAAC,QAAQ,CAAC,CAEnB;AAsBD;;;;;;;;;;;;GAYG;AACH,wBAAgB,mBAAmB,CACjC,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,QAAQ,EAAE,WAAW,CAAC,kBAAkB;IACxC,UAAU,EAAE,WAAW,CAAC,iBAAiB;IACzC,UAAU,EAAE,WAAW,CAAC,0BAA0B;IAClD,QAAQ,EAAE,WAAW,CAAC,eAAe;IACrC,aAAa,EAAE,WAAW,CAAC,aAAa;IAExC,YAAY,CAAC,EAAE;QACb,kBAAkB,CAAC,EAAE,WAAW,CAAC,qBAAqB,GAAG,SAAS,CAAC;QACnE,WAAW,CAAC,EAAE,WAAW,CAAC,cAAc,GAAG,SAAS,CAAC;KACtD;CACF,GACA,OAAO,CAAC,QAAQ,CAAC,CAEnB"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type * as _Core from "@osdk/internal.foundry.core";
|
|
2
|
+
import type * as _Ontologies from "@osdk/internal.foundry.ontologies";
|
|
2
3
|
import type { SharedClient as $OldClient, SharedClientContext as $OldClientContext } from "@osdk/shared.client";
|
|
3
4
|
import type { SharedClient as $Client, SharedClientContext as $ClientContext } from "@osdk/shared.client2";
|
|
4
5
|
/**
|
|
@@ -24,20 +25,20 @@ import type { SharedClient as $Client, SharedClientContext as $ClientContext } f
|
|
|
24
25
|
* URL: /v2/ontologies/{ontology}/objects/{objectType}/{primaryKey}/links/{linkType}
|
|
25
26
|
*/
|
|
26
27
|
export declare function listLinkedObjects($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
27
|
-
ontology:
|
|
28
|
-
objectType:
|
|
29
|
-
primaryKey:
|
|
30
|
-
linkType:
|
|
28
|
+
ontology: _Ontologies.OntologyIdentifier,
|
|
29
|
+
objectType: _Ontologies.ObjectTypeApiName,
|
|
30
|
+
primaryKey: _Ontologies.PropertyValueEscapedString,
|
|
31
|
+
linkType: _Ontologies.LinkTypeApiName,
|
|
31
32
|
$queryParams: {
|
|
32
33
|
pageSize?: _Core.PageSize | undefined;
|
|
33
34
|
pageToken?: _Core.PageToken | undefined;
|
|
34
|
-
select: Array<
|
|
35
|
-
orderBy?:
|
|
36
|
-
artifactRepository?:
|
|
37
|
-
packageName?:
|
|
35
|
+
select: Array<_Ontologies.SelectedPropertyApiName>;
|
|
36
|
+
orderBy?: _Ontologies.OrderBy | undefined;
|
|
37
|
+
artifactRepository?: _Ontologies.ArtifactRepositoryRid | undefined;
|
|
38
|
+
packageName?: _Ontologies.SdkPackageName | undefined;
|
|
38
39
|
excludeRid?: boolean | undefined;
|
|
39
40
|
}
|
|
40
|
-
]): Promise<
|
|
41
|
+
]): Promise<_Ontologies.ListLinkedObjectsResponseV2>;
|
|
41
42
|
/**
|
|
42
43
|
* Get a specific linked object that originates from another object.
|
|
43
44
|
*
|
|
@@ -51,16 +52,16 @@ export declare function listLinkedObjects($ctx: $Client | $ClientContext | $OldC
|
|
|
51
52
|
* URL: /v2/ontologies/{ontology}/objects/{objectType}/{primaryKey}/links/{linkType}/{linkedObjectPrimaryKey}
|
|
52
53
|
*/
|
|
53
54
|
export declare function getLinkedObject($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
54
|
-
ontology:
|
|
55
|
-
objectType:
|
|
56
|
-
primaryKey:
|
|
57
|
-
linkType:
|
|
58
|
-
linkedObjectPrimaryKey:
|
|
55
|
+
ontology: _Ontologies.OntologyIdentifier,
|
|
56
|
+
objectType: _Ontologies.ObjectTypeApiName,
|
|
57
|
+
primaryKey: _Ontologies.PropertyValueEscapedString,
|
|
58
|
+
linkType: _Ontologies.LinkTypeApiName,
|
|
59
|
+
linkedObjectPrimaryKey: _Ontologies.PropertyValueEscapedString,
|
|
59
60
|
$queryParams: {
|
|
60
|
-
select: Array<
|
|
61
|
-
artifactRepository?:
|
|
62
|
-
packageName?:
|
|
61
|
+
select: Array<_Ontologies.SelectedPropertyApiName>;
|
|
62
|
+
artifactRepository?: _Ontologies.ArtifactRepositoryRid | undefined;
|
|
63
|
+
packageName?: _Ontologies.SdkPackageName | undefined;
|
|
63
64
|
excludeRid?: boolean | undefined;
|
|
64
65
|
}
|
|
65
|
-
]): Promise<
|
|
66
|
+
]): Promise<_Ontologies.OntologyObjectV2>;
|
|
66
67
|
//# sourceMappingURL=LinkedObjectV2.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"LinkedObjectV2.d.ts","sourceRoot":"","sources":["../../../src/public/LinkedObjectV2.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,KAAK,KAAK,MAAM,6BAA6B,CAAC;AAC1D,OAAO,KAAK,EACV,YAAY,IAAI,UAAU,EAC1B,mBAAmB,IAAI,iBAAiB,EACzC,MAAM,qBAAqB,CAAC;AAC7B,OAAO,KAAK,EACV,YAAY,IAAI,OAAO,EACvB,mBAAmB,IAAI,cAAc,EACtC,MAAM,sBAAsB,CAAC;AAwB9B;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,wBAAgB,iBAAiB,CAC/B,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,QAAQ,EAAE,
|
|
1
|
+
{"version":3,"file":"LinkedObjectV2.d.ts","sourceRoot":"","sources":["../../../src/public/LinkedObjectV2.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,KAAK,KAAK,MAAM,6BAA6B,CAAC;AAC1D,OAAO,KAAK,KAAK,WAAW,MAAM,mCAAmC,CAAC;AACtE,OAAO,KAAK,EACV,YAAY,IAAI,UAAU,EAC1B,mBAAmB,IAAI,iBAAiB,EACzC,MAAM,qBAAqB,CAAC;AAC7B,OAAO,KAAK,EACV,YAAY,IAAI,OAAO,EACvB,mBAAmB,IAAI,cAAc,EACtC,MAAM,sBAAsB,CAAC;AAwB9B;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,wBAAgB,iBAAiB,CAC/B,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,QAAQ,EAAE,WAAW,CAAC,kBAAkB;IACxC,UAAU,EAAE,WAAW,CAAC,iBAAiB;IACzC,UAAU,EAAE,WAAW,CAAC,0BAA0B;IAClD,QAAQ,EAAE,WAAW,CAAC,eAAe;IAErC,YAAY,EAAE;QACZ,QAAQ,CAAC,EAAE,KAAK,CAAC,QAAQ,GAAG,SAAS,CAAC;QACtC,SAAS,CAAC,EAAE,KAAK,CAAC,SAAS,GAAG,SAAS,CAAC;QACxC,MAAM,EAAE,KAAK,CAAC,WAAW,CAAC,uBAAuB,CAAC,CAAC;QACnD,OAAO,CAAC,EAAE,WAAW,CAAC,OAAO,GAAG,SAAS,CAAC;QAC1C,kBAAkB,CAAC,EAAE,WAAW,CAAC,qBAAqB,GAAG,SAAS,CAAC;QACnE,WAAW,CAAC,EAAE,WAAW,CAAC,cAAc,GAAG,SAAS,CAAC;QACrD,UAAU,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;KAClC;CACF,GACA,OAAO,CAAC,WAAW,CAAC,2BAA2B,CAAC,CAElD;AAkBD;;;;;;;;;;;GAWG;AACH,wBAAgB,eAAe,CAC7B,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,QAAQ,EAAE,WAAW,CAAC,kBAAkB;IACxC,UAAU,EAAE,WAAW,CAAC,iBAAiB;IACzC,UAAU,EAAE,WAAW,CAAC,0BAA0B;IAClD,QAAQ,EAAE,WAAW,CAAC,eAAe;IACrC,sBAAsB,EAAE,WAAW,CAAC,0BAA0B;IAE9D,YAAY,EAAE;QACZ,MAAM,EAAE,KAAK,CAAC,WAAW,CAAC,uBAAuB,CAAC,CAAC;QACnD,kBAAkB,CAAC,EAAE,WAAW,CAAC,qBAAqB,GAAG,SAAS,CAAC;QACnE,WAAW,CAAC,EAAE,WAAW,CAAC,cAAc,GAAG,SAAS,CAAC;QACrD,UAAU,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;KAClC;CACF,GACA,OAAO,CAAC,WAAW,CAAC,gBAAgB,CAAC,CAEvC"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type * as _Core from "@osdk/internal.foundry.core";
|
|
2
|
+
import type * as _Ontologies from "@osdk/internal.foundry.ontologies";
|
|
2
3
|
import type { SharedClient as $OldClient, SharedClientContext as $OldClientContext } from "@osdk/shared.client";
|
|
3
4
|
import type { SharedClient as $Client, SharedClientContext as $ClientContext } from "@osdk/shared.client2";
|
|
4
5
|
/**
|
|
@@ -12,13 +13,13 @@ import type { SharedClient as $Client, SharedClientContext as $ClientContext } f
|
|
|
12
13
|
* URL: /v2/ontologies/{ontology}/objects/{objectType}/{primaryKey}/media/{property}/content
|
|
13
14
|
*/
|
|
14
15
|
export declare function getMediaContent($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
15
|
-
ontology:
|
|
16
|
-
objectType:
|
|
17
|
-
primaryKey:
|
|
18
|
-
property:
|
|
16
|
+
ontology: _Ontologies.OntologyIdentifier,
|
|
17
|
+
objectType: _Ontologies.ObjectTypeApiName,
|
|
18
|
+
primaryKey: _Ontologies.PropertyValueEscapedString,
|
|
19
|
+
property: _Ontologies.PropertyApiName,
|
|
19
20
|
$queryParams?: {
|
|
20
|
-
artifactRepository?:
|
|
21
|
-
packageName?:
|
|
21
|
+
artifactRepository?: _Ontologies.ArtifactRepositoryRid | undefined;
|
|
22
|
+
packageName?: _Ontologies.SdkPackageName | undefined;
|
|
22
23
|
preview?: _Core.PreviewMode | undefined;
|
|
23
24
|
}
|
|
24
25
|
]): Promise<Response>;
|
|
@@ -33,16 +34,16 @@ export declare function getMediaContent($ctx: $Client | $ClientContext | $OldCli
|
|
|
33
34
|
* URL: /v2/ontologies/{ontology}/objects/{objectType}/{primaryKey}/media/{property}/metadata
|
|
34
35
|
*/
|
|
35
36
|
export declare function getMediaMetadata($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
36
|
-
ontology:
|
|
37
|
-
objectType:
|
|
38
|
-
primaryKey:
|
|
39
|
-
property:
|
|
37
|
+
ontology: _Ontologies.OntologyIdentifier,
|
|
38
|
+
objectType: _Ontologies.ObjectTypeApiName,
|
|
39
|
+
primaryKey: _Ontologies.PropertyValueEscapedString,
|
|
40
|
+
property: _Ontologies.PropertyApiName,
|
|
40
41
|
$queryParams?: {
|
|
41
|
-
artifactRepository?:
|
|
42
|
-
packageName?:
|
|
42
|
+
artifactRepository?: _Ontologies.ArtifactRepositoryRid | undefined;
|
|
43
|
+
packageName?: _Ontologies.SdkPackageName | undefined;
|
|
43
44
|
preview?: _Core.PreviewMode | undefined;
|
|
44
45
|
}
|
|
45
|
-
]): Promise<
|
|
46
|
+
]): Promise<_Ontologies.MediaMetadata>;
|
|
46
47
|
/**
|
|
47
48
|
* Uploads a media item to the media set which backs the specified property. The property must be backed by a single media set and branch, otherwise an error will be thrown.
|
|
48
49
|
* The body of the request must contain the binary content of the file and the `Content-Type` header must be `application/octet-stream`.
|
|
@@ -55,9 +56,9 @@ export declare function getMediaMetadata($ctx: $Client | $ClientContext | $OldCl
|
|
|
55
56
|
* URL: /v2/ontologies/{ontology}/objectTypes/{objectType}/media/{property}/upload
|
|
56
57
|
*/
|
|
57
58
|
export declare function upload($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
58
|
-
ontology:
|
|
59
|
-
objectType:
|
|
60
|
-
property:
|
|
59
|
+
ontology: _Ontologies.OntologyIdentifier,
|
|
60
|
+
objectType: _Ontologies.ObjectTypeApiName,
|
|
61
|
+
property: _Ontologies.PropertyApiName,
|
|
61
62
|
$body: Blob,
|
|
62
63
|
$queryParams?: {
|
|
63
64
|
mediaItemPath?: _Core.MediaItemPath | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MediaReferenceProperty.d.ts","sourceRoot":"","sources":["../../../src/public/MediaReferenceProperty.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,KAAK,KAAK,MAAM,6BAA6B,CAAC;AAC1D,OAAO,KAAK,EACV,YAAY,IAAI,UAAU,EAC1B,mBAAmB,IAAI,iBAAiB,EACzC,MAAM,qBAAqB,CAAC;AAC7B,OAAO,KAAK,EACV,YAAY,IAAI,OAAO,EACvB,mBAAmB,IAAI,cAAc,EACtC,MAAM,sBAAsB,CAAC;AAoB9B;;;;;;;;;GASG;AACH,wBAAgB,eAAe,CAC7B,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,QAAQ,EAAE,
|
|
1
|
+
{"version":3,"file":"MediaReferenceProperty.d.ts","sourceRoot":"","sources":["../../../src/public/MediaReferenceProperty.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,KAAK,KAAK,MAAM,6BAA6B,CAAC;AAC1D,OAAO,KAAK,KAAK,WAAW,MAAM,mCAAmC,CAAC;AACtE,OAAO,KAAK,EACV,YAAY,IAAI,UAAU,EAC1B,mBAAmB,IAAI,iBAAiB,EACzC,MAAM,qBAAqB,CAAC;AAC7B,OAAO,KAAK,EACV,YAAY,IAAI,OAAO,EACvB,mBAAmB,IAAI,cAAc,EACtC,MAAM,sBAAsB,CAAC;AAoB9B;;;;;;;;;GASG;AACH,wBAAgB,eAAe,CAC7B,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,QAAQ,EAAE,WAAW,CAAC,kBAAkB;IACxC,UAAU,EAAE,WAAW,CAAC,iBAAiB;IACzC,UAAU,EAAE,WAAW,CAAC,0BAA0B;IAClD,QAAQ,EAAE,WAAW,CAAC,eAAe;IAErC,YAAY,CAAC,EAAE;QACb,kBAAkB,CAAC,EAAE,WAAW,CAAC,qBAAqB,GAAG,SAAS,CAAC;QACnE,WAAW,CAAC,EAAE,WAAW,CAAC,cAAc,GAAG,SAAS,CAAC;QACrD,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAC;KACzC;CACF,GACA,OAAO,CAAC,QAAQ,CAAC,CAEnB;AAgBD;;;;;;;;;GASG;AACH,wBAAgB,gBAAgB,CAC9B,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,QAAQ,EAAE,WAAW,CAAC,kBAAkB;IACxC,UAAU,EAAE,WAAW,CAAC,iBAAiB;IACzC,UAAU,EAAE,WAAW,CAAC,0BAA0B;IAClD,QAAQ,EAAE,WAAW,CAAC,eAAe;IAErC,YAAY,CAAC,EAAE;QACb,kBAAkB,CAAC,EAAE,WAAW,CAAC,qBAAqB,GAAG,SAAS,CAAC;QACnE,WAAW,CAAC,EAAE,WAAW,CAAC,cAAc,GAAG,SAAS,CAAC;QACrD,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAC;KACzC;CACF,GACA,OAAO,CAAC,WAAW,CAAC,aAAa,CAAC,CAEpC;AAeD;;;;;;;;;;GAUG;AACH,wBAAgB,MAAM,CACpB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,QAAQ,EAAE,WAAW,CAAC,kBAAkB;IACxC,UAAU,EAAE,WAAW,CAAC,iBAAiB;IACzC,QAAQ,EAAE,WAAW,CAAC,eAAe;IACrC,KAAK,EAAE,IAAI;IACX,YAAY,CAAC,EAAE;QACb,aAAa,CAAC,EAAE,KAAK,CAAC,aAAa,GAAG,SAAS,CAAC;QAChD,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAC;KACzC;CACF,GACA,OAAO,CAAC,KAAK,CAAC,cAAc,CAAC,CAE/B"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type * as _Core from "@osdk/internal.foundry.core";
|
|
2
|
+
import type * as _Ontologies from "@osdk/internal.foundry.ontologies";
|
|
2
3
|
import type { SharedClient as $OldClient, SharedClientContext as $OldClientContext } from "@osdk/shared.client";
|
|
3
4
|
import type { SharedClient as $Client, SharedClientContext as $ClientContext } from "@osdk/shared.client2";
|
|
4
5
|
/**
|
|
@@ -16,12 +17,12 @@ import type { SharedClient as $Client, SharedClientContext as $ClientContext } f
|
|
|
16
17
|
* URL: /v2/ontologies/{ontology}/objectTypes
|
|
17
18
|
*/
|
|
18
19
|
export declare function list($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
19
|
-
ontology:
|
|
20
|
+
ontology: _Ontologies.OntologyIdentifier,
|
|
20
21
|
$queryParams?: {
|
|
21
22
|
pageSize?: _Core.PageSize | undefined;
|
|
22
23
|
pageToken?: _Core.PageToken | undefined;
|
|
23
24
|
}
|
|
24
|
-
]): Promise<
|
|
25
|
+
]): Promise<_Ontologies.ListObjectTypesV2Response>;
|
|
25
26
|
/**
|
|
26
27
|
* Gets a specific object type with the given API name.
|
|
27
28
|
*
|
|
@@ -33,9 +34,9 @@ export declare function list($ctx: $Client | $ClientContext | $OldClient | $OldC
|
|
|
33
34
|
* URL: /v2/ontologies/{ontology}/objectTypes/{objectType}
|
|
34
35
|
*/
|
|
35
36
|
export declare function get($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
36
|
-
ontology:
|
|
37
|
-
objectType:
|
|
38
|
-
]): Promise<
|
|
37
|
+
ontology: _Ontologies.OntologyIdentifier,
|
|
38
|
+
objectType: _Ontologies.ObjectTypeApiName
|
|
39
|
+
]): Promise<_Ontologies.ObjectTypeV2>;
|
|
39
40
|
/**
|
|
40
41
|
* Gets the full metadata for a specific object type with the given API name.
|
|
41
42
|
*
|
|
@@ -47,12 +48,12 @@ export declare function get($ctx: $Client | $ClientContext | $OldClient | $OldCl
|
|
|
47
48
|
* URL: /v2/ontologies/{ontology}/objectTypes/{objectType}/fullMetadata
|
|
48
49
|
*/
|
|
49
50
|
export declare function getFullMetadata($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
50
|
-
ontology:
|
|
51
|
-
objectType:
|
|
51
|
+
ontology: _Ontologies.OntologyIdentifier,
|
|
52
|
+
objectType: _Ontologies.ObjectTypeApiName,
|
|
52
53
|
$queryParams?: {
|
|
53
54
|
preview?: _Core.PreviewMode | undefined;
|
|
54
55
|
}
|
|
55
|
-
]): Promise<
|
|
56
|
+
]): Promise<_Ontologies.ObjectTypeFullMetadata>;
|
|
56
57
|
/**
|
|
57
58
|
* List the outgoing links for an object type.
|
|
58
59
|
*
|
|
@@ -65,13 +66,13 @@ export declare function getFullMetadata($ctx: $Client | $ClientContext | $OldCli
|
|
|
65
66
|
* URL: /v2/ontologies/{ontology}/objectTypes/{objectType}/outgoingLinkTypes
|
|
66
67
|
*/
|
|
67
68
|
export declare function listOutgoingLinkTypes($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
68
|
-
ontology:
|
|
69
|
-
objectType:
|
|
69
|
+
ontology: _Ontologies.OntologyIdentifier,
|
|
70
|
+
objectType: _Ontologies.ObjectTypeApiName,
|
|
70
71
|
$queryParams?: {
|
|
71
72
|
pageSize?: _Core.PageSize | undefined;
|
|
72
73
|
pageToken?: _Core.PageToken | undefined;
|
|
73
74
|
}
|
|
74
|
-
]): Promise<
|
|
75
|
+
]): Promise<_Ontologies.ListOutgoingLinkTypesResponseV2>;
|
|
75
76
|
/**
|
|
76
77
|
* Get an outgoing link for an object type.
|
|
77
78
|
*
|
|
@@ -84,8 +85,8 @@ export declare function listOutgoingLinkTypes($ctx: $Client | $ClientContext | $
|
|
|
84
85
|
* URL: /v2/ontologies/{ontology}/objectTypes/{objectType}/outgoingLinkTypes/{linkType}
|
|
85
86
|
*/
|
|
86
87
|
export declare function getOutgoingLinkType($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
87
|
-
ontology:
|
|
88
|
-
objectType:
|
|
89
|
-
linkType:
|
|
90
|
-
]): Promise<
|
|
88
|
+
ontology: _Ontologies.OntologyIdentifier,
|
|
89
|
+
objectType: _Ontologies.ObjectTypeApiName,
|
|
90
|
+
linkType: _Ontologies.LinkTypeApiName
|
|
91
|
+
]): Promise<_Ontologies.LinkTypeSideV2>;
|
|
91
92
|
//# sourceMappingURL=ObjectTypeV2.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ObjectTypeV2.d.ts","sourceRoot":"","sources":["../../../src/public/ObjectTypeV2.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,KAAK,KAAK,MAAM,6BAA6B,CAAC;AAC1D,OAAO,KAAK,EACV,YAAY,IAAI,UAAU,EAC1B,mBAAmB,IAAI,iBAAiB,EACzC,MAAM,qBAAqB,CAAC;AAC7B,OAAO,KAAK,EACV,YAAY,IAAI,OAAO,EACvB,mBAAmB,IAAI,cAAc,EACtC,MAAM,sBAAsB,CAAC;AAgB9B;;;;;;;;;;;;;GAaG;AACH,wBAAgB,IAAI,CAClB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,QAAQ,EAAE,
|
|
1
|
+
{"version":3,"file":"ObjectTypeV2.d.ts","sourceRoot":"","sources":["../../../src/public/ObjectTypeV2.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,KAAK,KAAK,MAAM,6BAA6B,CAAC;AAC1D,OAAO,KAAK,KAAK,WAAW,MAAM,mCAAmC,CAAC;AACtE,OAAO,KAAK,EACV,YAAY,IAAI,UAAU,EAC1B,mBAAmB,IAAI,iBAAiB,EACzC,MAAM,qBAAqB,CAAC;AAC7B,OAAO,KAAK,EACV,YAAY,IAAI,OAAO,EACvB,mBAAmB,IAAI,cAAc,EACtC,MAAM,sBAAsB,CAAC;AAgB9B;;;;;;;;;;;;;GAaG;AACH,wBAAgB,IAAI,CAClB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,QAAQ,EAAE,WAAW,CAAC,kBAAkB;IAExC,YAAY,CAAC,EAAE;QACb,QAAQ,CAAC,EAAE,KAAK,CAAC,QAAQ,GAAG,SAAS,CAAC;QACtC,SAAS,CAAC,EAAE,KAAK,CAAC,SAAS,GAAG,SAAS,CAAC;KACzC;CACF,GACA,OAAO,CAAC,WAAW,CAAC,yBAAyB,CAAC,CAEhD;AASD;;;;;;;;;GASG;AACH,wBAAgB,GAAG,CACjB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,QAAQ,EAAE,WAAW,CAAC,kBAAkB;IACxC,UAAU,EAAE,WAAW,CAAC,iBAAiB;CAC1C,GACA,OAAO,CAAC,WAAW,CAAC,YAAY,CAAC,CAEnC;AAUD;;;;;;;;;GASG;AACH,wBAAgB,eAAe,CAC7B,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,QAAQ,EAAE,WAAW,CAAC,kBAAkB;IACxC,UAAU,EAAE,WAAW,CAAC,iBAAiB;IAEzC,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,WAAW,CAAC,sBAAsB,CAAC,CAE7C;AAaD;;;;;;;;;;GAUG;AACH,wBAAgB,qBAAqB,CACnC,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,QAAQ,EAAE,WAAW,CAAC,kBAAkB;IACxC,UAAU,EAAE,WAAW,CAAC,iBAAiB;IAEzC,YAAY,CAAC,EAAE;QACb,QAAQ,CAAC,EAAE,KAAK,CAAC,QAAQ,GAAG,SAAS,CAAC;QACtC,SAAS,CAAC,EAAE,KAAK,CAAC,SAAS,GAAG,SAAS,CAAC;KACzC;CACF,GACA,OAAO,CAAC,WAAW,CAAC,+BAA+B,CAAC,CAEtD;AAUD;;;;;;;;;;GAUG;AACH,wBAAgB,mBAAmB,CACjC,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,QAAQ,EAAE,WAAW,CAAC,kBAAkB;IACxC,UAAU,EAAE,WAAW,CAAC,iBAAiB;IACzC,QAAQ,EAAE,WAAW,CAAC,eAAe;CACtC,GACA,OAAO,CAAC,WAAW,CAAC,cAAc,CAAC,CAErC"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type * as _Core from "@osdk/internal.foundry.core";
|
|
2
|
+
import type * as _Ontologies from "@osdk/internal.foundry.ontologies";
|
|
2
3
|
import type { SharedClient as $OldClient, SharedClientContext as $OldClientContext } from "@osdk/shared.client";
|
|
3
4
|
import type { SharedClient as $Client, SharedClientContext as $ClientContext } from "@osdk/shared.client2";
|
|
4
5
|
/**
|
|
@@ -20,13 +21,13 @@ import type { SharedClient as $Client, SharedClientContext as $ClientContext } f
|
|
|
20
21
|
* URL: /v2/ontologies/{ontology}/interfaceTypes
|
|
21
22
|
*/
|
|
22
23
|
export declare function list($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
23
|
-
ontology:
|
|
24
|
+
ontology: _Ontologies.OntologyIdentifier,
|
|
24
25
|
$queryParams?: {
|
|
25
26
|
pageSize?: _Core.PageSize | undefined;
|
|
26
27
|
pageToken?: _Core.PageToken | undefined;
|
|
27
28
|
preview?: _Core.PreviewMode | undefined;
|
|
28
29
|
}
|
|
29
|
-
]): Promise<
|
|
30
|
+
]): Promise<_Ontologies.ListInterfaceTypesResponse>;
|
|
30
31
|
/**
|
|
31
32
|
* :::callout{theme=warning title=Warning}
|
|
32
33
|
* This endpoint is in preview and may be modified or removed at any time.
|
|
@@ -43,12 +44,12 @@ export declare function list($ctx: $Client | $ClientContext | $OldClient | $OldC
|
|
|
43
44
|
* URL: /v2/ontologies/{ontology}/interfaceTypes/{interfaceType}
|
|
44
45
|
*/
|
|
45
46
|
export declare function get($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
46
|
-
ontology:
|
|
47
|
-
interfaceType:
|
|
47
|
+
ontology: _Ontologies.OntologyIdentifier,
|
|
48
|
+
interfaceType: _Ontologies.InterfaceTypeApiName,
|
|
48
49
|
$queryParams?: {
|
|
49
50
|
preview?: _Core.PreviewMode | undefined;
|
|
50
51
|
}
|
|
51
|
-
]): Promise<
|
|
52
|
+
]): Promise<_Ontologies.InterfaceType>;
|
|
52
53
|
/**
|
|
53
54
|
* :::callout{theme=warning title=Warning}
|
|
54
55
|
* This endpoint will be removed once TS OSDK is updated to use `objectSets/loadObjects` with interface object
|
|
@@ -93,13 +94,13 @@ export declare function get($ctx: $Client | $ClientContext | $OldClient | $OldCl
|
|
|
93
94
|
* URL: /v2/ontologies/{ontology}/interfaces/{interfaceType}/search
|
|
94
95
|
*/
|
|
95
96
|
export declare function search($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
96
|
-
ontology:
|
|
97
|
-
interfaceType:
|
|
98
|
-
$body:
|
|
97
|
+
ontology: _Ontologies.OntologyIdentifier,
|
|
98
|
+
interfaceType: _Ontologies.InterfaceTypeApiName,
|
|
99
|
+
$body: _Ontologies.SearchObjectsForInterfaceRequest,
|
|
99
100
|
$queryParams?: {
|
|
100
101
|
preview?: _Core.PreviewMode | undefined;
|
|
101
102
|
}
|
|
102
|
-
]): Promise<
|
|
103
|
+
]): Promise<_Ontologies.SearchObjectsResponseV2>;
|
|
103
104
|
/**
|
|
104
105
|
* :::callout{theme=warning title=Warning}
|
|
105
106
|
* This endpoint will be removed once TS OSDK is updated to use `objectSets/aggregate` with interface object
|
|
@@ -121,11 +122,11 @@ export declare function search($ctx: $Client | $ClientContext | $OldClient | $Ol
|
|
|
121
122
|
* URL: /v2/ontologies/{ontology}/interfaces/{interfaceType}/aggregate
|
|
122
123
|
*/
|
|
123
124
|
export declare function aggregate($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
124
|
-
ontology:
|
|
125
|
-
interfaceType:
|
|
126
|
-
$body:
|
|
125
|
+
ontology: _Ontologies.OntologyIdentifier,
|
|
126
|
+
interfaceType: _Ontologies.InterfaceTypeApiName,
|
|
127
|
+
$body: _Ontologies.AggregateObjectsRequestV2,
|
|
127
128
|
$queryParams?: {
|
|
128
129
|
preview?: _Core.PreviewMode | undefined;
|
|
129
130
|
}
|
|
130
|
-
]): Promise<
|
|
131
|
+
]): Promise<_Ontologies.AggregateObjectsResponseV2>;
|
|
131
132
|
//# sourceMappingURL=OntologyInterface.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"OntologyInterface.d.ts","sourceRoot":"","sources":["../../../src/public/OntologyInterface.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,KAAK,KAAK,MAAM,6BAA6B,CAAC;AAC1D,OAAO,KAAK,EACV,YAAY,IAAI,UAAU,EAC1B,mBAAmB,IAAI,iBAAiB,EACzC,MAAM,qBAAqB,CAAC;AAC7B,OAAO,KAAK,EACV,YAAY,IAAI,OAAO,EACvB,mBAAmB,IAAI,cAAc,EACtC,MAAM,sBAAsB,CAAC;AAiB9B;;;;;;;;;;;;;;;;;GAiBG;AACH,wBAAgB,IAAI,CAClB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,QAAQ,EAAE,
|
|
1
|
+
{"version":3,"file":"OntologyInterface.d.ts","sourceRoot":"","sources":["../../../src/public/OntologyInterface.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,KAAK,KAAK,MAAM,6BAA6B,CAAC;AAC1D,OAAO,KAAK,KAAK,WAAW,MAAM,mCAAmC,CAAC;AACtE,OAAO,KAAK,EACV,YAAY,IAAI,UAAU,EAC1B,mBAAmB,IAAI,iBAAiB,EACzC,MAAM,qBAAqB,CAAC;AAC7B,OAAO,KAAK,EACV,YAAY,IAAI,OAAO,EACvB,mBAAmB,IAAI,cAAc,EACtC,MAAM,sBAAsB,CAAC;AAiB9B;;;;;;;;;;;;;;;;;GAiBG;AACH,wBAAgB,IAAI,CAClB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,QAAQ,EAAE,WAAW,CAAC,kBAAkB;IAExC,YAAY,CAAC,EAAE;QACb,QAAQ,CAAC,EAAE,KAAK,CAAC,QAAQ,GAAG,SAAS,CAAC;QACtC,SAAS,CAAC,EAAE,KAAK,CAAC,SAAS,GAAG,SAAS,CAAC;QACxC,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAC;KACzC;CACF,GACA,OAAO,CAAC,WAAW,CAAC,0BAA0B,CAAC,CAEjD;AAUD;;;;;;;;;;;;;;GAcG;AACH,wBAAgB,GAAG,CACjB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,QAAQ,EAAE,WAAW,CAAC,kBAAkB;IACxC,aAAa,EAAE,WAAW,CAAC,oBAAoB;IAE/C,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,WAAW,CAAC,aAAa,CAAC,CAEpC;AAWD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA0CG;AACH,wBAAgB,MAAM,CACpB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,QAAQ,EAAE,WAAW,CAAC,kBAAkB;IACxC,aAAa,EAAE,WAAW,CAAC,oBAAoB;IAC/C,KAAK,EAAE,WAAW,CAAC,gCAAgC;IACnD,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,WAAW,CAAC,uBAAuB,CAAC,CAE9C;AAWD;;;;;;;;;;;;;;;;;;;GAmBG;AACH,wBAAgB,SAAS,CACvB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,QAAQ,EAAE,WAAW,CAAC,kBAAkB;IACxC,aAAa,EAAE,WAAW,CAAC,oBAAoB;IAC/C,KAAK,EAAE,WAAW,CAAC,yBAAyB;IAC5C,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,WAAW,CAAC,0BAA0B,CAAC,CAEjD"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type * as _Core from "@osdk/internal.foundry.core";
|
|
2
|
+
import type * as _Ontologies from "@osdk/internal.foundry.ontologies";
|
|
2
3
|
import type { SharedClient as $OldClient, SharedClientContext as $OldClientContext } from "@osdk/shared.client";
|
|
3
4
|
import type { SharedClient as $Client, SharedClientContext as $ClientContext } from "@osdk/shared.client2";
|
|
4
5
|
/**
|
|
@@ -13,9 +14,9 @@ import type { SharedClient as $Client, SharedClientContext as $ClientContext } f
|
|
|
13
14
|
* URL: /v2/ontologies/{ontology}/objectSets/createTemporary
|
|
14
15
|
*/
|
|
15
16
|
export declare function createTemporary($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
16
|
-
ontology:
|
|
17
|
-
$body:
|
|
18
|
-
]): Promise<
|
|
17
|
+
ontology: _Ontologies.OntologyIdentifier,
|
|
18
|
+
$body: _Ontologies.CreateTemporaryObjectSetRequestV2
|
|
19
|
+
]): Promise<_Ontologies.CreateTemporaryObjectSetResponseV2>;
|
|
19
20
|
/**
|
|
20
21
|
* Gets the definition of the `ObjectSet` with the given RID.
|
|
21
22
|
*
|
|
@@ -27,9 +28,9 @@ export declare function createTemporary($ctx: $Client | $ClientContext | $OldCli
|
|
|
27
28
|
* URL: /v2/ontologies/{ontology}/objectSets/{objectSetRid}
|
|
28
29
|
*/
|
|
29
30
|
export declare function get($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
30
|
-
ontology:
|
|
31
|
-
objectSetRid:
|
|
32
|
-
]): Promise<
|
|
31
|
+
ontology: _Ontologies.OntologyIdentifier,
|
|
32
|
+
objectSetRid: _Ontologies.ObjectSetRid
|
|
33
|
+
]): Promise<_Ontologies.ObjectSet>;
|
|
33
34
|
/**
|
|
34
35
|
* Load the ontology objects present in the `ObjectSet` from the provided object set definition.
|
|
35
36
|
*
|
|
@@ -46,13 +47,13 @@ export declare function get($ctx: $Client | $ClientContext | $OldClient | $OldCl
|
|
|
46
47
|
* URL: /v2/ontologies/{ontology}/objectSets/loadObjects
|
|
47
48
|
*/
|
|
48
49
|
export declare function load($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
49
|
-
ontology:
|
|
50
|
-
$body:
|
|
50
|
+
ontology: _Ontologies.OntologyIdentifier,
|
|
51
|
+
$body: _Ontologies.LoadObjectSetRequestV2,
|
|
51
52
|
$queryParams?: {
|
|
52
|
-
artifactRepository?:
|
|
53
|
-
packageName?:
|
|
53
|
+
artifactRepository?: _Ontologies.ArtifactRepositoryRid | undefined;
|
|
54
|
+
packageName?: _Ontologies.SdkPackageName | undefined;
|
|
54
55
|
}
|
|
55
|
-
]): Promise<
|
|
56
|
+
]): Promise<_Ontologies.LoadObjectSetResponseV2>;
|
|
56
57
|
/**
|
|
57
58
|
* Load the ontology objects present in the `ObjectSet` from the provided object set definition. The resulting
|
|
58
59
|
* objects may be scoped to an object type, in which all the selected properties on the object type are returned, or scoped
|
|
@@ -74,14 +75,14 @@ export declare function load($ctx: $Client | $ClientContext | $OldClient | $OldC
|
|
|
74
75
|
* URL: /v2/ontologies/{ontology}/objectSets/loadObjectsMultipleObjectTypes
|
|
75
76
|
*/
|
|
76
77
|
export declare function loadMultipleObjectTypes($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
77
|
-
ontology:
|
|
78
|
-
$body:
|
|
78
|
+
ontology: _Ontologies.OntologyIdentifier,
|
|
79
|
+
$body: _Ontologies.LoadObjectSetV2MultipleObjectTypesRequest,
|
|
79
80
|
$queryParams?: {
|
|
80
|
-
artifactRepository?:
|
|
81
|
-
packageName?:
|
|
81
|
+
artifactRepository?: _Ontologies.ArtifactRepositoryRid | undefined;
|
|
82
|
+
packageName?: _Ontologies.SdkPackageName | undefined;
|
|
82
83
|
preview?: _Core.PreviewMode | undefined;
|
|
83
84
|
}
|
|
84
|
-
]): Promise<
|
|
85
|
+
]): Promise<_Ontologies.LoadObjectSetV2MultipleObjectTypesResponse>;
|
|
85
86
|
/**
|
|
86
87
|
* Load the ontology objects present in the `ObjectSet` from the provided object set definition. If the requested
|
|
87
88
|
* object set contains interfaces and the object can be viewed as an interface, it will contain the properties
|
|
@@ -105,14 +106,14 @@ export declare function loadMultipleObjectTypes($ctx: $Client | $ClientContext |
|
|
|
105
106
|
* URL: /v2/ontologies/{ontology}/objectSets/loadObjectsOrInterfaces
|
|
106
107
|
*/
|
|
107
108
|
export declare function loadObjectsOrInterfaces($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
108
|
-
ontology:
|
|
109
|
-
$body:
|
|
109
|
+
ontology: _Ontologies.OntologyIdentifier,
|
|
110
|
+
$body: _Ontologies.LoadObjectSetV2ObjectsOrInterfacesRequest,
|
|
110
111
|
$queryParams?: {
|
|
111
|
-
artifactRepository?:
|
|
112
|
-
packageName?:
|
|
112
|
+
artifactRepository?: _Ontologies.ArtifactRepositoryRid | undefined;
|
|
113
|
+
packageName?: _Ontologies.SdkPackageName | undefined;
|
|
113
114
|
preview?: _Core.PreviewMode | undefined;
|
|
114
115
|
}
|
|
115
|
-
]): Promise<
|
|
116
|
+
]): Promise<_Ontologies.LoadObjectSetV2ObjectsOrInterfacesResponse>;
|
|
116
117
|
/**
|
|
117
118
|
* Aggregates the ontology objects present in the `ObjectSet` from the provided object set definition.
|
|
118
119
|
*
|
|
@@ -124,11 +125,11 @@ export declare function loadObjectsOrInterfaces($ctx: $Client | $ClientContext |
|
|
|
124
125
|
* URL: /v2/ontologies/{ontology}/objectSets/aggregate
|
|
125
126
|
*/
|
|
126
127
|
export declare function aggregate($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
127
|
-
ontology:
|
|
128
|
-
$body:
|
|
128
|
+
ontology: _Ontologies.OntologyIdentifier,
|
|
129
|
+
$body: _Ontologies.AggregateObjectSetRequestV2,
|
|
129
130
|
$queryParams?: {
|
|
130
|
-
artifactRepository?:
|
|
131
|
-
packageName?:
|
|
131
|
+
artifactRepository?: _Ontologies.ArtifactRepositoryRid | undefined;
|
|
132
|
+
packageName?: _Ontologies.SdkPackageName | undefined;
|
|
132
133
|
}
|
|
133
|
-
]): Promise<
|
|
134
|
+
]): Promise<_Ontologies.AggregateObjectsResponseV2>;
|
|
134
135
|
//# sourceMappingURL=OntologyObjectSet.d.ts.map
|