@osdk/internal.foundry.ontologiesv2 2.12.0 → 2.13.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.
Files changed (62) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/build/browser/public/Action.d.ts +19 -19
  3. package/build/browser/public/Action.d.ts.map +1 -1
  4. package/build/browser/public/ActionTypeV2.d.ts +6 -5
  5. package/build/browser/public/ActionTypeV2.d.ts.map +1 -1
  6. package/build/browser/public/Attachment.d.ts +4 -3
  7. package/build/browser/public/Attachment.d.ts.map +1 -1
  8. package/build/browser/public/AttachmentPropertyV2.d.ts +29 -29
  9. package/build/browser/public/AttachmentPropertyV2.d.ts.map +1 -1
  10. package/build/browser/public/LinkedObjectV2.d.ts +19 -18
  11. package/build/browser/public/LinkedObjectV2.d.ts.map +1 -1
  12. package/build/browser/public/MediaReferenceProperty.d.ts +17 -16
  13. package/build/browser/public/MediaReferenceProperty.d.ts.map +1 -1
  14. package/build/browser/public/ObjectTypeV2.d.ts +16 -15
  15. package/build/browser/public/ObjectTypeV2.d.ts.map +1 -1
  16. package/build/browser/public/OntologyInterface.d.ts +14 -13
  17. package/build/browser/public/OntologyInterface.d.ts.map +1 -1
  18. package/build/browser/public/OntologyObjectSet.d.ts +27 -26
  19. package/build/browser/public/OntologyObjectSet.d.ts.map +1 -1
  20. package/build/browser/public/OntologyObjectV2.d.ts +32 -31
  21. package/build/browser/public/OntologyObjectV2.d.ts.map +1 -1
  22. package/build/browser/public/OntologyV2.d.ts +4 -4
  23. package/build/browser/public/OntologyV2.d.ts.map +1 -1
  24. package/build/browser/public/Query.d.ts +7 -7
  25. package/build/browser/public/Query.d.ts.map +1 -1
  26. package/build/browser/public/QueryType.d.ts +6 -5
  27. package/build/browser/public/QueryType.d.ts.map +1 -1
  28. package/build/browser/public/TimeSeriesPropertyV2.d.ts +23 -23
  29. package/build/browser/public/TimeSeriesPropertyV2.d.ts.map +1 -1
  30. package/build/browser/public/TimeSeriesValueBankProperty.d.ts +15 -15
  31. package/build/browser/public/TimeSeriesValueBankProperty.d.ts.map +1 -1
  32. package/build/esm/public/Action.d.ts +19 -19
  33. package/build/esm/public/Action.d.ts.map +1 -1
  34. package/build/esm/public/ActionTypeV2.d.ts +6 -5
  35. package/build/esm/public/ActionTypeV2.d.ts.map +1 -1
  36. package/build/esm/public/Attachment.d.ts +4 -3
  37. package/build/esm/public/Attachment.d.ts.map +1 -1
  38. package/build/esm/public/AttachmentPropertyV2.d.ts +29 -29
  39. package/build/esm/public/AttachmentPropertyV2.d.ts.map +1 -1
  40. package/build/esm/public/LinkedObjectV2.d.ts +19 -18
  41. package/build/esm/public/LinkedObjectV2.d.ts.map +1 -1
  42. package/build/esm/public/MediaReferenceProperty.d.ts +17 -16
  43. package/build/esm/public/MediaReferenceProperty.d.ts.map +1 -1
  44. package/build/esm/public/ObjectTypeV2.d.ts +16 -15
  45. package/build/esm/public/ObjectTypeV2.d.ts.map +1 -1
  46. package/build/esm/public/OntologyInterface.d.ts +14 -13
  47. package/build/esm/public/OntologyInterface.d.ts.map +1 -1
  48. package/build/esm/public/OntologyObjectSet.d.ts +27 -26
  49. package/build/esm/public/OntologyObjectSet.d.ts.map +1 -1
  50. package/build/esm/public/OntologyObjectV2.d.ts +32 -31
  51. package/build/esm/public/OntologyObjectV2.d.ts.map +1 -1
  52. package/build/esm/public/OntologyV2.d.ts +4 -4
  53. package/build/esm/public/OntologyV2.d.ts.map +1 -1
  54. package/build/esm/public/Query.d.ts +7 -7
  55. package/build/esm/public/Query.d.ts.map +1 -1
  56. package/build/esm/public/QueryType.d.ts +6 -5
  57. package/build/esm/public/QueryType.d.ts.map +1 -1
  58. package/build/esm/public/TimeSeriesPropertyV2.d.ts +23 -23
  59. package/build/esm/public/TimeSeriesPropertyV2.d.ts.map +1 -1
  60. package/build/esm/public/TimeSeriesValueBankProperty.d.ts +15 -15
  61. package/build/esm/public/TimeSeriesValueBankProperty.d.ts.map +1 -1
  62. 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: _Core.OntologyIdentifier,
19
+ ontology: _Ontologies.OntologyIdentifier,
19
20
  $queryParams?: {
20
21
  pageSize?: _Core.PageSize | undefined;
21
22
  pageToken?: _Core.PageToken | undefined;
22
23
  }
23
- ]): Promise<_Core.ListActionTypesResponseV2>;
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: _Core.OntologyIdentifier,
36
- actionType: _Core.ActionTypeApiName
37
- ]): Promise<_Core.ActionTypeV2>;
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,KAAK,CAAC,kBAAkB;IAElC,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,KAAK,CAAC,yBAAyB,CAAC,CAE1C;AASD;;;;;;;;;GASG;AACH,wBAAgB,GAAG,CACjB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,QAAQ,EAAE,KAAK,CAAC,kBAAkB;IAClC,UAAU,EAAE,KAAK,CAAC,iBAAiB;CACpC,GACA,OAAO,CAAC,KAAK,CAAC,YAAY,CAAC,CAE7B"}
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<_Core.AttachmentV2>;
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: _Core.AttachmentRid]): Promise<Response>;
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: _Core.AttachmentRid]): Promise<_Core.AttachmentV2>;
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,KAAK,CAAC,YAAY,CAAC,CAQ7B;AAMD;;;;;;;;;;GAUG;AACH,wBAAgB,IAAI,CAClB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE,CAAC,aAAa,EAAE,KAAK,CAAC,aAAa,CAAC,GAC5C,OAAO,CAAC,QAAQ,CAAC,CAEnB;AAMD;;;;;;;;;;GAUG;AACH,wBAAgB,GAAG,CACjB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE,CAAC,aAAa,EAAE,KAAK,CAAC,aAAa,CAAC,GAC5C,OAAO,CAAC,KAAK,CAAC,YAAY,CAAC,CAE7B"}
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 _Core from "@osdk/internal.foundry.core";
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: _Core.OntologyIdentifier,
17
- objectType: _Core.ObjectTypeApiName,
18
- primaryKey: _Core.PropertyValueEscapedString,
19
- property: _Core.PropertyApiName,
16
+ ontology: _Ontologies.OntologyIdentifier,
17
+ objectType: _Ontologies.ObjectTypeApiName,
18
+ primaryKey: _Ontologies.PropertyValueEscapedString,
19
+ property: _Ontologies.PropertyApiName,
20
20
  $queryParams?: {
21
- artifactRepository?: _Core.ArtifactRepositoryRid | undefined;
22
- packageName?: _Core.SdkPackageName | undefined;
21
+ artifactRepository?: _Ontologies.ArtifactRepositoryRid | undefined;
22
+ packageName?: _Ontologies.SdkPackageName | undefined;
23
23
  }
24
- ]): Promise<_Core.AttachmentMetadataResponse>;
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: _Core.OntologyIdentifier,
38
- objectType: _Core.ObjectTypeApiName,
39
- primaryKey: _Core.PropertyValueEscapedString,
40
- property: _Core.PropertyApiName,
41
- attachmentRid: _Core.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?: _Core.ArtifactRepositoryRid | undefined;
44
- packageName?: _Core.SdkPackageName | undefined;
43
+ artifactRepository?: _Ontologies.ArtifactRepositoryRid | undefined;
44
+ packageName?: _Ontologies.SdkPackageName | undefined;
45
45
  }
46
- ]): Promise<_Core.AttachmentV2>;
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: _Core.OntologyIdentifier,
60
- objectType: _Core.ObjectTypeApiName,
61
- primaryKey: _Core.PropertyValueEscapedString,
62
- property: _Core.PropertyApiName,
59
+ ontology: _Ontologies.OntologyIdentifier,
60
+ objectType: _Ontologies.ObjectTypeApiName,
61
+ primaryKey: _Ontologies.PropertyValueEscapedString,
62
+ property: _Ontologies.PropertyApiName,
63
63
  $queryParams?: {
64
- artifactRepository?: _Core.ArtifactRepositoryRid | undefined;
65
- packageName?: _Core.SdkPackageName | undefined;
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: _Core.OntologyIdentifier,
83
- objectType: _Core.ObjectTypeApiName,
84
- primaryKey: _Core.PropertyValueEscapedString,
85
- property: _Core.PropertyApiName,
86
- attachmentRid: _Core.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?: _Core.ArtifactRepositoryRid | undefined;
89
- packageName?: _Core.SdkPackageName | undefined;
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,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;AAmB9B;;;;;;;;;;GAUG;AACH,wBAAgB,aAAa,CAC3B,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,QAAQ,EAAE,KAAK,CAAC,kBAAkB;IAClC,UAAU,EAAE,KAAK,CAAC,iBAAiB;IACnC,UAAU,EAAE,KAAK,CAAC,0BAA0B;IAC5C,QAAQ,EAAE,KAAK,CAAC,eAAe;IAE/B,YAAY,CAAC,EAAE;QACb,kBAAkB,CAAC,EAAE,KAAK,CAAC,qBAAqB,GAAG,SAAS,CAAC;QAC7D,WAAW,CAAC,EAAE,KAAK,CAAC,cAAc,GAAG,SAAS,CAAC;KAChD;CACF,GACA,OAAO,CAAC,KAAK,CAAC,0BAA0B,CAAC,CAE3C;AAgBD;;;;;;;;;;GAUG;AACH,wBAAgB,kBAAkB,CAChC,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,QAAQ,EAAE,KAAK,CAAC,kBAAkB;IAClC,UAAU,EAAE,KAAK,CAAC,iBAAiB;IACnC,UAAU,EAAE,KAAK,CAAC,0BAA0B;IAC5C,QAAQ,EAAE,KAAK,CAAC,eAAe;IAC/B,aAAa,EAAE,KAAK,CAAC,aAAa;IAElC,YAAY,CAAC,EAAE;QACb,kBAAkB,CAAC,EAAE,KAAK,CAAC,qBAAqB,GAAG,SAAS,CAAC;QAC7D,WAAW,CAAC,EAAE,KAAK,CAAC,cAAc,GAAG,SAAS,CAAC;KAChD;CACF,GACA,OAAO,CAAC,KAAK,CAAC,YAAY,CAAC,CAE7B;AAqBD;;;;;;;;;;GAUG;AACH,wBAAgB,cAAc,CAC5B,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,QAAQ,EAAE,KAAK,CAAC,kBAAkB;IAClC,UAAU,EAAE,KAAK,CAAC,iBAAiB;IACnC,UAAU,EAAE,KAAK,CAAC,0BAA0B;IAC5C,QAAQ,EAAE,KAAK,CAAC,eAAe;IAE/B,YAAY,CAAC,EAAE;QACb,kBAAkB,CAAC,EAAE,KAAK,CAAC,qBAAqB,GAAG,SAAS,CAAC;QAC7D,WAAW,CAAC,EAAE,KAAK,CAAC,cAAc,GAAG,SAAS,CAAC;KAChD;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,KAAK,CAAC,kBAAkB;IAClC,UAAU,EAAE,KAAK,CAAC,iBAAiB;IACnC,UAAU,EAAE,KAAK,CAAC,0BAA0B;IAC5C,QAAQ,EAAE,KAAK,CAAC,eAAe;IAC/B,aAAa,EAAE,KAAK,CAAC,aAAa;IAElC,YAAY,CAAC,EAAE;QACb,kBAAkB,CAAC,EAAE,KAAK,CAAC,qBAAqB,GAAG,SAAS,CAAC;QAC7D,WAAW,CAAC,EAAE,KAAK,CAAC,cAAc,GAAG,SAAS,CAAC;KAChD;CACF,GACA,OAAO,CAAC,QAAQ,CAAC,CAEnB"}
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: _Core.OntologyIdentifier,
28
- objectType: _Core.ObjectTypeApiName,
29
- primaryKey: _Core.PropertyValueEscapedString,
30
- linkType: _Core.LinkTypeApiName,
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<_Core.SelectedPropertyApiName>;
35
- orderBy?: _Core.OrderBy | undefined;
36
- artifactRepository?: _Core.ArtifactRepositoryRid | undefined;
37
- packageName?: _Core.SdkPackageName | undefined;
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<_Core.ListLinkedObjectsResponseV2>;
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: _Core.OntologyIdentifier,
55
- objectType: _Core.ObjectTypeApiName,
56
- primaryKey: _Core.PropertyValueEscapedString,
57
- linkType: _Core.LinkTypeApiName,
58
- linkedObjectPrimaryKey: _Core.PropertyValueEscapedString,
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<_Core.SelectedPropertyApiName>;
61
- artifactRepository?: _Core.ArtifactRepositoryRid | undefined;
62
- packageName?: _Core.SdkPackageName | undefined;
61
+ select: Array<_Ontologies.SelectedPropertyApiName>;
62
+ artifactRepository?: _Ontologies.ArtifactRepositoryRid | undefined;
63
+ packageName?: _Ontologies.SdkPackageName | undefined;
63
64
  excludeRid?: boolean | undefined;
64
65
  }
65
- ]): Promise<_Core.OntologyObjectV2>;
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,KAAK,CAAC,kBAAkB;IAClC,UAAU,EAAE,KAAK,CAAC,iBAAiB;IACnC,UAAU,EAAE,KAAK,CAAC,0BAA0B;IAC5C,QAAQ,EAAE,KAAK,CAAC,eAAe;IAE/B,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,KAAK,CAAC,uBAAuB,CAAC,CAAC;QAC7C,OAAO,CAAC,EAAE,KAAK,CAAC,OAAO,GAAG,SAAS,CAAC;QACpC,kBAAkB,CAAC,EAAE,KAAK,CAAC,qBAAqB,GAAG,SAAS,CAAC;QAC7D,WAAW,CAAC,EAAE,KAAK,CAAC,cAAc,GAAG,SAAS,CAAC;QAC/C,UAAU,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;KAClC;CACF,GACA,OAAO,CAAC,KAAK,CAAC,2BAA2B,CAAC,CAE5C;AAkBD;;;;;;;;;;;GAWG;AACH,wBAAgB,eAAe,CAC7B,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,QAAQ,EAAE,KAAK,CAAC,kBAAkB;IAClC,UAAU,EAAE,KAAK,CAAC,iBAAiB;IACnC,UAAU,EAAE,KAAK,CAAC,0BAA0B;IAC5C,QAAQ,EAAE,KAAK,CAAC,eAAe;IAC/B,sBAAsB,EAAE,KAAK,CAAC,0BAA0B;IAExD,YAAY,EAAE;QACZ,MAAM,EAAE,KAAK,CAAC,KAAK,CAAC,uBAAuB,CAAC,CAAC;QAC7C,kBAAkB,CAAC,EAAE,KAAK,CAAC,qBAAqB,GAAG,SAAS,CAAC;QAC7D,WAAW,CAAC,EAAE,KAAK,CAAC,cAAc,GAAG,SAAS,CAAC;QAC/C,UAAU,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;KAClC;CACF,GACA,OAAO,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAEjC"}
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: _Core.OntologyIdentifier,
16
- objectType: _Core.ObjectTypeApiName,
17
- primaryKey: _Core.PropertyValueEscapedString,
18
- property: _Core.PropertyApiName,
16
+ ontology: _Ontologies.OntologyIdentifier,
17
+ objectType: _Ontologies.ObjectTypeApiName,
18
+ primaryKey: _Ontologies.PropertyValueEscapedString,
19
+ property: _Ontologies.PropertyApiName,
19
20
  $queryParams?: {
20
- artifactRepository?: _Core.ArtifactRepositoryRid | undefined;
21
- packageName?: _Core.SdkPackageName | undefined;
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: _Core.OntologyIdentifier,
37
- objectType: _Core.ObjectTypeApiName,
38
- primaryKey: _Core.PropertyValueEscapedString,
39
- property: _Core.PropertyApiName,
37
+ ontology: _Ontologies.OntologyIdentifier,
38
+ objectType: _Ontologies.ObjectTypeApiName,
39
+ primaryKey: _Ontologies.PropertyValueEscapedString,
40
+ property: _Ontologies.PropertyApiName,
40
41
  $queryParams?: {
41
- artifactRepository?: _Core.ArtifactRepositoryRid | undefined;
42
- packageName?: _Core.SdkPackageName | undefined;
42
+ artifactRepository?: _Ontologies.ArtifactRepositoryRid | undefined;
43
+ packageName?: _Ontologies.SdkPackageName | undefined;
43
44
  preview?: _Core.PreviewMode | undefined;
44
45
  }
45
- ]): Promise<_Core.MediaMetadata>;
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: _Core.OntologyIdentifier,
59
- objectType: _Core.ObjectTypeApiName,
60
- property: _Core.PropertyApiName,
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,KAAK,CAAC,kBAAkB;IAClC,UAAU,EAAE,KAAK,CAAC,iBAAiB;IACnC,UAAU,EAAE,KAAK,CAAC,0BAA0B;IAC5C,QAAQ,EAAE,KAAK,CAAC,eAAe;IAE/B,YAAY,CAAC,EAAE;QACb,kBAAkB,CAAC,EAAE,KAAK,CAAC,qBAAqB,GAAG,SAAS,CAAC;QAC7D,WAAW,CAAC,EAAE,KAAK,CAAC,cAAc,GAAG,SAAS,CAAC;QAC/C,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,KAAK,CAAC,kBAAkB;IAClC,UAAU,EAAE,KAAK,CAAC,iBAAiB;IACnC,UAAU,EAAE,KAAK,CAAC,0BAA0B;IAC5C,QAAQ,EAAE,KAAK,CAAC,eAAe;IAE/B,YAAY,CAAC,EAAE;QACb,kBAAkB,CAAC,EAAE,KAAK,CAAC,qBAAqB,GAAG,SAAS,CAAC;QAC7D,WAAW,CAAC,EAAE,KAAK,CAAC,cAAc,GAAG,SAAS,CAAC;QAC/C,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAC;KACzC;CACF,GACA,OAAO,CAAC,KAAK,CAAC,aAAa,CAAC,CAE9B;AAeD;;;;;;;;;;GAUG;AACH,wBAAgB,MAAM,CACpB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,QAAQ,EAAE,KAAK,CAAC,kBAAkB;IAClC,UAAU,EAAE,KAAK,CAAC,iBAAiB;IACnC,QAAQ,EAAE,KAAK,CAAC,eAAe;IAC/B,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
+ {"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: _Core.OntologyIdentifier,
20
+ ontology: _Ontologies.OntologyIdentifier,
20
21
  $queryParams?: {
21
22
  pageSize?: _Core.PageSize | undefined;
22
23
  pageToken?: _Core.PageToken | undefined;
23
24
  }
24
- ]): Promise<_Core.ListObjectTypesV2Response>;
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: _Core.OntologyIdentifier,
37
- objectType: _Core.ObjectTypeApiName
38
- ]): Promise<_Core.ObjectTypeV2>;
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: _Core.OntologyIdentifier,
51
- objectType: _Core.ObjectTypeApiName,
51
+ ontology: _Ontologies.OntologyIdentifier,
52
+ objectType: _Ontologies.ObjectTypeApiName,
52
53
  $queryParams?: {
53
54
  preview?: _Core.PreviewMode | undefined;
54
55
  }
55
- ]): Promise<_Core.ObjectTypeFullMetadata>;
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: _Core.OntologyIdentifier,
69
- objectType: _Core.ObjectTypeApiName,
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<_Core.ListOutgoingLinkTypesResponseV2>;
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: _Core.OntologyIdentifier,
88
- objectType: _Core.ObjectTypeApiName,
89
- linkType: _Core.LinkTypeApiName
90
- ]): Promise<_Core.LinkTypeSideV2>;
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,KAAK,CAAC,kBAAkB;IAElC,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,KAAK,CAAC,yBAAyB,CAAC,CAE1C;AASD;;;;;;;;;GASG;AACH,wBAAgB,GAAG,CACjB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,QAAQ,EAAE,KAAK,CAAC,kBAAkB;IAClC,UAAU,EAAE,KAAK,CAAC,iBAAiB;CACpC,GACA,OAAO,CAAC,KAAK,CAAC,YAAY,CAAC,CAE7B;AAUD;;;;;;;;;GASG;AACH,wBAAgB,eAAe,CAC7B,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,QAAQ,EAAE,KAAK,CAAC,kBAAkB;IAClC,UAAU,EAAE,KAAK,CAAC,iBAAiB;IAEnC,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,KAAK,CAAC,sBAAsB,CAAC,CAEvC;AAaD;;;;;;;;;;GAUG;AACH,wBAAgB,qBAAqB,CACnC,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,QAAQ,EAAE,KAAK,CAAC,kBAAkB;IAClC,UAAU,EAAE,KAAK,CAAC,iBAAiB;IAEnC,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,KAAK,CAAC,+BAA+B,CAAC,CAEhD;AAUD;;;;;;;;;;GAUG;AACH,wBAAgB,mBAAmB,CACjC,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,QAAQ,EAAE,KAAK,CAAC,kBAAkB;IAClC,UAAU,EAAE,KAAK,CAAC,iBAAiB;IACnC,QAAQ,EAAE,KAAK,CAAC,eAAe;CAChC,GACA,OAAO,CAAC,KAAK,CAAC,cAAc,CAAC,CAE/B"}
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: _Core.OntologyIdentifier,
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<_Core.ListInterfaceTypesResponse>;
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: _Core.OntologyIdentifier,
47
- interfaceType: _Core.InterfaceTypeApiName,
47
+ ontology: _Ontologies.OntologyIdentifier,
48
+ interfaceType: _Ontologies.InterfaceTypeApiName,
48
49
  $queryParams?: {
49
50
  preview?: _Core.PreviewMode | undefined;
50
51
  }
51
- ]): Promise<_Core.InterfaceType>;
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: _Core.OntologyIdentifier,
97
- interfaceType: _Core.InterfaceTypeApiName,
98
- $body: _Core.SearchObjectsForInterfaceRequest,
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<_Core.SearchObjectsResponseV2>;
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: _Core.OntologyIdentifier,
125
- interfaceType: _Core.InterfaceTypeApiName,
126
- $body: _Core.AggregateObjectsRequestV2,
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<_Core.AggregateObjectsResponseV2>;
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,KAAK,CAAC,kBAAkB;IAElC,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,KAAK,CAAC,0BAA0B,CAAC,CAE3C;AAUD;;;;;;;;;;;;;;GAcG;AACH,wBAAgB,GAAG,CACjB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,QAAQ,EAAE,KAAK,CAAC,kBAAkB;IAClC,aAAa,EAAE,KAAK,CAAC,oBAAoB;IAEzC,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,KAAK,CAAC,aAAa,CAAC,CAE9B;AAWD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA0CG;AACH,wBAAgB,MAAM,CACpB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,QAAQ,EAAE,KAAK,CAAC,kBAAkB;IAClC,aAAa,EAAE,KAAK,CAAC,oBAAoB;IACzC,KAAK,EAAE,KAAK,CAAC,gCAAgC;IAC7C,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,KAAK,CAAC,uBAAuB,CAAC,CAExC;AAWD;;;;;;;;;;;;;;;;;;;GAmBG;AACH,wBAAgB,SAAS,CACvB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,QAAQ,EAAE,KAAK,CAAC,kBAAkB;IAClC,aAAa,EAAE,KAAK,CAAC,oBAAoB;IACzC,KAAK,EAAE,KAAK,CAAC,yBAAyB;IACtC,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,KAAK,CAAC,0BAA0B,CAAC,CAE3C"}
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: _Core.OntologyIdentifier,
17
- $body: _Core.CreateTemporaryObjectSetRequestV2
18
- ]): Promise<_Core.CreateTemporaryObjectSetResponseV2>;
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: _Core.OntologyIdentifier,
31
- objectSetRid: _Core.ObjectSetRid
32
- ]): Promise<_Core.ObjectSet>;
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: _Core.OntologyIdentifier,
50
- $body: _Core.LoadObjectSetRequestV2,
50
+ ontology: _Ontologies.OntologyIdentifier,
51
+ $body: _Ontologies.LoadObjectSetRequestV2,
51
52
  $queryParams?: {
52
- artifactRepository?: _Core.ArtifactRepositoryRid | undefined;
53
- packageName?: _Core.SdkPackageName | undefined;
53
+ artifactRepository?: _Ontologies.ArtifactRepositoryRid | undefined;
54
+ packageName?: _Ontologies.SdkPackageName | undefined;
54
55
  }
55
- ]): Promise<_Core.LoadObjectSetResponseV2>;
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: _Core.OntologyIdentifier,
78
- $body: _Core.LoadObjectSetV2MultipleObjectTypesRequest,
78
+ ontology: _Ontologies.OntologyIdentifier,
79
+ $body: _Ontologies.LoadObjectSetV2MultipleObjectTypesRequest,
79
80
  $queryParams?: {
80
- artifactRepository?: _Core.ArtifactRepositoryRid | undefined;
81
- packageName?: _Core.SdkPackageName | undefined;
81
+ artifactRepository?: _Ontologies.ArtifactRepositoryRid | undefined;
82
+ packageName?: _Ontologies.SdkPackageName | undefined;
82
83
  preview?: _Core.PreviewMode | undefined;
83
84
  }
84
- ]): Promise<_Core.LoadObjectSetV2MultipleObjectTypesResponse>;
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: _Core.OntologyIdentifier,
109
- $body: _Core.LoadObjectSetV2ObjectsOrInterfacesRequest,
109
+ ontology: _Ontologies.OntologyIdentifier,
110
+ $body: _Ontologies.LoadObjectSetV2ObjectsOrInterfacesRequest,
110
111
  $queryParams?: {
111
- artifactRepository?: _Core.ArtifactRepositoryRid | undefined;
112
- packageName?: _Core.SdkPackageName | undefined;
112
+ artifactRepository?: _Ontologies.ArtifactRepositoryRid | undefined;
113
+ packageName?: _Ontologies.SdkPackageName | undefined;
113
114
  preview?: _Core.PreviewMode | undefined;
114
115
  }
115
- ]): Promise<_Core.LoadObjectSetV2ObjectsOrInterfacesResponse>;
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: _Core.OntologyIdentifier,
128
- $body: _Core.AggregateObjectSetRequestV2,
128
+ ontology: _Ontologies.OntologyIdentifier,
129
+ $body: _Ontologies.AggregateObjectSetRequestV2,
129
130
  $queryParams?: {
130
- artifactRepository?: _Core.ArtifactRepositoryRid | undefined;
131
- packageName?: _Core.SdkPackageName | undefined;
131
+ artifactRepository?: _Ontologies.ArtifactRepositoryRid | undefined;
132
+ packageName?: _Ontologies.SdkPackageName | undefined;
132
133
  }
133
- ]): Promise<_Core.AggregateObjectsResponseV2>;
134
+ ]): Promise<_Ontologies.AggregateObjectsResponseV2>;
134
135
  //# sourceMappingURL=OntologyObjectSet.d.ts.map