@osdk/faux 0.4.0-beta.5 → 0.4.0-rc.7

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 CHANGED
@@ -1,5 +1,34 @@
1
1
  # @osdk/shared.test
2
2
 
3
+ ## 0.4.0-rc.7
4
+
5
+ ### Patch Changes
6
+
7
+ - b313525: bump osdk
8
+ - af4f3bf: Remove the following features for RC:
9
+ - Property formatting
10
+ - Branching
11
+ - Constant RDPs
12
+
13
+ - Updated dependencies [b313525]
14
+ - Updated dependencies [af4f3bf]
15
+ - @osdk/generator-converters@2.6.0-rc.14
16
+ - @osdk/api@2.6.0-rc.14
17
+
18
+ ## 0.4.0-beta.6
19
+
20
+ ### Minor Changes
21
+
22
+ - 84f0eef: Bumping OSDK apis
23
+
24
+ ### Patch Changes
25
+
26
+ - Updated dependencies [84f0eef]
27
+ - Updated dependencies [486ef7e]
28
+ - Updated dependencies [ea077c6]
29
+ - @osdk/generator-converters@2.6.0-beta.13
30
+ - @osdk/api@2.6.0-beta.13
31
+
3
32
  ## 0.4.0-beta.5
4
33
 
5
34
  ### Minor Changes
@@ -51,6 +80,38 @@
51
80
  - @osdk/generator-converters@2.6.0-beta.2
52
81
  - @osdk/api@2.6.0-beta.2
53
82
 
83
+ ## 0.3.0
84
+
85
+ ### Patch Changes
86
+
87
+ - 150da1a: Simulated release
88
+ - 9c9110c: Fixes strict link association between different object types and improves error messages.
89
+ - 7cdab1d: Update platform sdk dependencies
90
+ - a00d2ed: Update Platform SDK dependencies
91
+ - 3d7461d: Fix applyQuery for marketplace installations
92
+ - 7bdac45: Update Platform SDK dependency
93
+ - f194536: Fixes strict link association.
94
+ - a96d89e: Update Platform SDK dependencies
95
+ - cbcf2ad: Add branching support
96
+ - Updated dependencies [322c5bc]
97
+ - Updated dependencies [322c5bc]
98
+ - Updated dependencies [7160276]
99
+ - Updated dependencies [7cdab1d]
100
+ - Updated dependencies [a00d2ed]
101
+ - Updated dependencies [7bdac45]
102
+ - Updated dependencies [37eb75b]
103
+ - Updated dependencies [7b97128]
104
+ - Updated dependencies [76905f5]
105
+ - Updated dependencies [a96d89e]
106
+ - Updated dependencies [7bdac45]
107
+ - Updated dependencies [20962bc]
108
+ - Updated dependencies [cbcf2ad]
109
+ - Updated dependencies [052a96b]
110
+ - Updated dependencies [ca1fabe]
111
+ - Updated dependencies [e48be06]
112
+ - @osdk/api@2.5.0
113
+ - @osdk/generator-converters@2.5.0
114
+
54
115
  ## 0.3.0-beta.6
55
116
 
56
117
  ### Minor Changes
@@ -44,6 +44,7 @@ OntologiesV2.OntologyObjectSets.loadMultipleObjectTypes(baseUrl, async ({
44
44
  const objectApiNames = new Set(pagedResponse.data.map(o => o.__apiName));
45
45
  return {
46
46
  interfaceToObjectTypeMappings: fauxFoundry.getOntology(params.ontologyApiName).getInterfaceToObjectTypeMappings(objectApiNames),
47
+ interfaceToObjectTypeMappingsV2: {},
47
48
  ...pagedResponse
48
49
  };
49
50
  })];
@@ -1 +1 @@
1
- {"version":3,"file":"createObjectSetHandlers.js","names":["OntologiesV2","createObjectSetHandlers","baseUrl","fauxFoundry","OntologyObjectSets","load","request","params","getDataStore","ontologyApiName","getObjectsFromObjectSet","json","aggregate","Error","loadMultipleObjectTypes","pagedResponse","objectApiNames","Set","data","map","o","__apiName","interfaceToObjectTypeMappings","getOntology","getInterfaceToObjectTypeMappings"],"sources":["createObjectSetHandlers.ts"],"sourcesContent":["/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport type { RequestHandler } from \"msw\";\nimport type { FauxFoundry } from \"../FauxFoundry/FauxFoundry.js\";\nimport { OntologiesV2 } from \"../mock/index.js\";\n\nexport const createObjectSetHandlers = (\n baseUrl: string,\n fauxFoundry: FauxFoundry,\n): Array<RequestHandler> => [\n /**\n * Load ObjectSet Objects\n */\n OntologiesV2.OntologyObjectSets.load(\n baseUrl,\n async ({ request, params }) => {\n return fauxFoundry\n .getDataStore(params.ontologyApiName)\n .getObjectsFromObjectSet(await request.json());\n },\n ),\n\n /**\n * Aggregate Objects in ObjectSet\n */\n OntologiesV2.OntologyObjectSets.aggregate(\n baseUrl,\n async ({ request }) => {\n throw new Error(\"Not implemented\");\n },\n ),\n\n /**\n * Load interface objectset Objects\n */\n OntologiesV2.OntologyObjectSets.loadMultipleObjectTypes(\n baseUrl,\n async ({ params, request }) => {\n const pagedResponse = fauxFoundry\n .getDataStore(params.ontologyApiName)\n .getObjectsFromObjectSet(await request.json());\n\n const objectApiNames = new Set(pagedResponse.data.map(o => o.__apiName));\n\n return {\n interfaceToObjectTypeMappings: fauxFoundry\n .getOntology(params.ontologyApiName)\n .getInterfaceToObjectTypeMappings(objectApiNames),\n ...pagedResponse,\n };\n },\n ),\n];\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAIA,SAASA,YAAY,QAAQ,kBAAkB;AAE/C,OAAO,MAAMC,uBAAuB,GAAGA,CACrCC,OAAe,EACfC,WAAwB,KACE;AAC1B;AACF;AACA;AACEH,YAAY,CAACI,kBAAkB,CAACC,IAAI,CAClCH,OAAO,EACP,OAAO;EAAEI,OAAO;EAAEC;AAAO,CAAC,KAAK;EAC7B,OAAOJ,WAAW,CACfK,YAAY,CAACD,MAAM,CAACE,eAAe,CAAC,CACpCC,uBAAuB,CAAC,MAAMJ,OAAO,CAACK,IAAI,CAAC,CAAC,CAAC;AAClD,CACF,CAAC;AAED;AACF;AACA;AACEX,YAAY,CAACI,kBAAkB,CAACQ,SAAS,CACvCV,OAAO,EACP,OAAO;EAAEI;AAAQ,CAAC,KAAK;EACrB,MAAM,IAAIO,KAAK,CAAC,iBAAiB,CAAC;AACpC,CACF,CAAC;AAED;AACF;AACA;AACEb,YAAY,CAACI,kBAAkB,CAACU,uBAAuB,CACrDZ,OAAO,EACP,OAAO;EAAEK,MAAM;EAAED;AAAQ,CAAC,KAAK;EAC7B,MAAMS,aAAa,GAAGZ,WAAW,CAC9BK,YAAY,CAACD,MAAM,CAACE,eAAe,CAAC,CACpCC,uBAAuB,CAAC,MAAMJ,OAAO,CAACK,IAAI,CAAC,CAAC,CAAC;EAEhD,MAAMK,cAAc,GAAG,IAAIC,GAAG,CAACF,aAAa,CAACG,IAAI,CAACC,GAAG,CAACC,CAAC,IAAIA,CAAC,CAACC,SAAS,CAAC,CAAC;EAExE,OAAO;IACLC,6BAA6B,EAAEnB,WAAW,CACvCoB,WAAW,CAAChB,MAAM,CAACE,eAAe,CAAC,CACnCe,gCAAgC,CAACR,cAAc,CAAC;IACnD,GAAGD;EACL,CAAC;AACH,CACF,CAAC,CACF","ignoreList":[]}
1
+ {"version":3,"file":"createObjectSetHandlers.js","names":["OntologiesV2","createObjectSetHandlers","baseUrl","fauxFoundry","OntologyObjectSets","load","request","params","getDataStore","ontologyApiName","getObjectsFromObjectSet","json","aggregate","Error","loadMultipleObjectTypes","pagedResponse","objectApiNames","Set","data","map","o","__apiName","interfaceToObjectTypeMappings","getOntology","getInterfaceToObjectTypeMappings","interfaceToObjectTypeMappingsV2"],"sources":["createObjectSetHandlers.ts"],"sourcesContent":["/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport type { RequestHandler } from \"msw\";\nimport type { FauxFoundry } from \"../FauxFoundry/FauxFoundry.js\";\nimport { OntologiesV2 } from \"../mock/index.js\";\n\nexport const createObjectSetHandlers = (\n baseUrl: string,\n fauxFoundry: FauxFoundry,\n): Array<RequestHandler> => [\n /**\n * Load ObjectSet Objects\n */\n OntologiesV2.OntologyObjectSets.load(\n baseUrl,\n async ({ request, params }) => {\n return fauxFoundry\n .getDataStore(params.ontologyApiName)\n .getObjectsFromObjectSet(await request.json());\n },\n ),\n\n /**\n * Aggregate Objects in ObjectSet\n */\n OntologiesV2.OntologyObjectSets.aggregate(\n baseUrl,\n async ({ request }) => {\n throw new Error(\"Not implemented\");\n },\n ),\n\n /**\n * Load interface objectset Objects\n */\n OntologiesV2.OntologyObjectSets.loadMultipleObjectTypes(\n baseUrl,\n async ({ params, request }) => {\n const pagedResponse = fauxFoundry\n .getDataStore(params.ontologyApiName)\n .getObjectsFromObjectSet(await request.json());\n\n const objectApiNames = new Set(pagedResponse.data.map(o => o.__apiName));\n\n return {\n interfaceToObjectTypeMappings: fauxFoundry\n .getOntology(params.ontologyApiName)\n .getInterfaceToObjectTypeMappings(objectApiNames),\n interfaceToObjectTypeMappingsV2: {},\n ...pagedResponse,\n };\n },\n ),\n];\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAIA,SAASA,YAAY,QAAQ,kBAAkB;AAE/C,OAAO,MAAMC,uBAAuB,GAAGA,CACrCC,OAAe,EACfC,WAAwB,KACE;AAC1B;AACF;AACA;AACEH,YAAY,CAACI,kBAAkB,CAACC,IAAI,CAClCH,OAAO,EACP,OAAO;EAAEI,OAAO;EAAEC;AAAO,CAAC,KAAK;EAC7B,OAAOJ,WAAW,CACfK,YAAY,CAACD,MAAM,CAACE,eAAe,CAAC,CACpCC,uBAAuB,CAAC,MAAMJ,OAAO,CAACK,IAAI,CAAC,CAAC,CAAC;AAClD,CACF,CAAC;AAED;AACF;AACA;AACEX,YAAY,CAACI,kBAAkB,CAACQ,SAAS,CACvCV,OAAO,EACP,OAAO;EAAEI;AAAQ,CAAC,KAAK;EACrB,MAAM,IAAIO,KAAK,CAAC,iBAAiB,CAAC;AACpC,CACF,CAAC;AAED;AACF;AACA;AACEb,YAAY,CAACI,kBAAkB,CAACU,uBAAuB,CACrDZ,OAAO,EACP,OAAO;EAAEK,MAAM;EAAED;AAAQ,CAAC,KAAK;EAC7B,MAAMS,aAAa,GAAGZ,WAAW,CAC9BK,YAAY,CAACD,MAAM,CAACE,eAAe,CAAC,CACpCC,uBAAuB,CAAC,MAAMJ,OAAO,CAACK,IAAI,CAAC,CAAC,CAAC;EAEhD,MAAMK,cAAc,GAAG,IAAIC,GAAG,CAACF,aAAa,CAACG,IAAI,CAACC,GAAG,CAACC,CAAC,IAAIA,CAAC,CAACC,SAAS,CAAC,CAAC;EAExE,OAAO;IACLC,6BAA6B,EAAEnB,WAAW,CACvCoB,WAAW,CAAChB,MAAM,CAACE,eAAe,CAAC,CACnCe,gCAAgC,CAACR,cAAc,CAAC;IACnDS,+BAA+B,EAAE,CAAC,CAAC;IACnC,GAAGV;EACL,CAAC;AACH,CACF,CAAC,CACF","ignoreList":[]}
@@ -1773,7 +1773,7 @@ __export(Actions_exports, {
1773
1773
  applyBatch: () => applyBatch2
1774
1774
  });
1775
1775
 
1776
- // ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.40.0/node_modules/@osdk/foundry.ontologies/build/esm/public/Action.js
1776
+ // ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.42.0/node_modules/@osdk/foundry.ontologies/build/esm/public/Action.js
1777
1777
  var Action_exports = {};
1778
1778
  __export(Action_exports, {
1779
1779
  apply: () => apply,
@@ -1874,7 +1874,7 @@ function parseUrl(baseUrl, endpointPath) {
1874
1874
  return new URL(`api${endpointPath}`, baseUrl);
1875
1875
  }
1876
1876
 
1877
- // ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.40.0/node_modules/@osdk/foundry.ontologies/build/esm/public/Action.js
1877
+ // ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.42.0/node_modules/@osdk/foundry.ontologies/build/esm/public/Action.js
1878
1878
  var _apply = [1, "/v2/ontologies/{0}/actions/{1}/apply", 3];
1879
1879
  function apply($ctx, ...args) {
1880
1880
  return foundryPlatformFetch($ctx, _apply, ...args);
@@ -1888,7 +1888,7 @@ function applyBatch($ctx, ...args) {
1888
1888
  return foundryPlatformFetch($ctx, _applyBatch, ...args);
1889
1889
  }
1890
1890
 
1891
- // ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.40.0/node_modules/@osdk/foundry.ontologies/build/esm/public/ActionTypeV2.js
1891
+ // ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.42.0/node_modules/@osdk/foundry.ontologies/build/esm/public/ActionTypeV2.js
1892
1892
  var ActionTypeV2_exports = {};
1893
1893
  __export(ActionTypeV2_exports, {
1894
1894
  get: () => get,
@@ -1908,12 +1908,13 @@ function getByRid($ctx, ...args) {
1908
1908
  return foundryPlatformFetch($ctx, _getByRid, ...args);
1909
1909
  }
1910
1910
 
1911
- // ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.40.0/node_modules/@osdk/foundry.ontologies/build/esm/public/Attachment.js
1911
+ // ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.42.0/node_modules/@osdk/foundry.ontologies/build/esm/public/Attachment.js
1912
1912
  var Attachment_exports = {};
1913
1913
  __export(Attachment_exports, {
1914
1914
  get: () => get2,
1915
1915
  read: () => read,
1916
- upload: () => upload
1916
+ upload: () => upload,
1917
+ uploadWithRid: () => uploadWithRid
1917
1918
  });
1918
1919
  var _upload = [1, "/v2/ontologies/attachments/upload", 7, "*/*"];
1919
1920
  function upload($ctx, ...args) {
@@ -1924,6 +1925,15 @@ function upload($ctx, ...args) {
1924
1925
  };
1925
1926
  return foundryPlatformFetch($ctx, _upload, args[0], args[1], headerParams);
1926
1927
  }
1928
+ var _uploadWithRid = [1, "/v2/ontologies/attachments/upload/{0}", 7, "*/*"];
1929
+ function uploadWithRid($ctx, ...args) {
1930
+ const headerParams = {
1931
+ ...args[3],
1932
+ "Content-Type": args[3]?.["Content-Type"] ?? args[1].type,
1933
+ "Content-Length": args[1].size.toString()
1934
+ };
1935
+ return foundryPlatformFetch($ctx, _uploadWithRid, args[0], args[1], args[2], headerParams);
1936
+ }
1927
1937
  var _read = [0, "/v2/ontologies/attachments/{0}/content", , , "*/*"];
1928
1938
  function read($ctx, ...args) {
1929
1939
  return foundryPlatformFetch($ctx, _read, ...args);
@@ -1933,7 +1943,7 @@ function get2($ctx, ...args) {
1933
1943
  return foundryPlatformFetch($ctx, _get2, ...args);
1934
1944
  }
1935
1945
 
1936
- // ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.40.0/node_modules/@osdk/foundry.ontologies/build/esm/public/AttachmentPropertyV2.js
1946
+ // ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.42.0/node_modules/@osdk/foundry.ontologies/build/esm/public/AttachmentPropertyV2.js
1937
1947
  var AttachmentPropertyV2_exports = {};
1938
1948
  __export(AttachmentPropertyV2_exports, {
1939
1949
  getAttachment: () => getAttachment,
@@ -1958,7 +1968,7 @@ function readAttachmentByRid($ctx, ...args) {
1958
1968
  return foundryPlatformFetch($ctx, _readAttachmentByRid, ...args);
1959
1969
  }
1960
1970
 
1961
- // ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.40.0/node_modules/@osdk/foundry.ontologies/build/esm/public/LinkedObjectV2.js
1971
+ // ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.42.0/node_modules/@osdk/foundry.ontologies/build/esm/public/LinkedObjectV2.js
1962
1972
  var LinkedObjectV2_exports = {};
1963
1973
  __export(LinkedObjectV2_exports, {
1964
1974
  getLinkedObject: () => getLinkedObject,
@@ -1973,7 +1983,7 @@ function getLinkedObject($ctx, ...args) {
1973
1983
  return foundryPlatformFetch($ctx, _getLinkedObject, ...args);
1974
1984
  }
1975
1985
 
1976
- // ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.40.0/node_modules/@osdk/foundry.ontologies/build/esm/public/MediaReferenceProperty.js
1986
+ // ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.42.0/node_modules/@osdk/foundry.ontologies/build/esm/public/MediaReferenceProperty.js
1977
1987
  var MediaReferenceProperty_exports = {};
1978
1988
  __export(MediaReferenceProperty_exports, {
1979
1989
  getMediaContent: () => getMediaContent,
@@ -1993,7 +2003,7 @@ function upload2($ctx, ...args) {
1993
2003
  return foundryPlatformFetch($ctx, _upload2, ...args);
1994
2004
  }
1995
2005
 
1996
- // ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.40.0/node_modules/@osdk/foundry.ontologies/build/esm/public/ObjectTypeV2.js
2006
+ // ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.42.0/node_modules/@osdk/foundry.ontologies/build/esm/public/ObjectTypeV2.js
1997
2007
  var ObjectTypeV2_exports = {};
1998
2008
  __export(ObjectTypeV2_exports, {
1999
2009
  get: () => get3,
@@ -2023,7 +2033,7 @@ function getOutgoingLinkType($ctx, ...args) {
2023
2033
  return foundryPlatformFetch($ctx, _getOutgoingLinkType, ...args);
2024
2034
  }
2025
2035
 
2026
- // ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.40.0/node_modules/@osdk/foundry.ontologies/build/esm/public/OntologyInterface.js
2036
+ // ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.42.0/node_modules/@osdk/foundry.ontologies/build/esm/public/OntologyInterface.js
2027
2037
  var OntologyInterface_exports = {};
2028
2038
  __export(OntologyInterface_exports, {
2029
2039
  aggregate: () => aggregate,
@@ -2068,13 +2078,14 @@ function listInterfaceLinkedObjects($ctx, ...args) {
2068
2078
  return foundryPlatformFetch($ctx, _listInterfaceLinkedObjects, ...args);
2069
2079
  }
2070
2080
 
2071
- // ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.40.0/node_modules/@osdk/foundry.ontologies/build/esm/public/OntologyObjectSet.js
2081
+ // ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.42.0/node_modules/@osdk/foundry.ontologies/build/esm/public/OntologyObjectSet.js
2072
2082
  var OntologyObjectSet_exports = {};
2073
2083
  __export(OntologyObjectSet_exports, {
2074
2084
  aggregate: () => aggregate2,
2075
2085
  createTemporary: () => createTemporary,
2076
2086
  get: () => get5,
2077
2087
  load: () => load,
2088
+ loadLinks: () => loadLinks,
2078
2089
  loadMultipleObjectTypes: () => loadMultipleObjectTypes,
2079
2090
  loadObjectsOrInterfaces: () => loadObjectsOrInterfaces
2080
2091
  });
@@ -2102,8 +2113,12 @@ var _aggregate2 = [1, "/v2/ontologies/{0}/objectSets/aggregate", 3];
2102
2113
  function aggregate2($ctx, ...args) {
2103
2114
  return foundryPlatformFetch($ctx, _aggregate2, ...args);
2104
2115
  }
2116
+ var _loadLinks = [1, "/v2/ontologies/{0}/objectSets/loadLinks", 3];
2117
+ function loadLinks($ctx, ...args) {
2118
+ return foundryPlatformFetch($ctx, _loadLinks, ...args);
2119
+ }
2105
2120
 
2106
- // ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.40.0/node_modules/@osdk/foundry.ontologies/build/esm/public/OntologyObjectV2.js
2121
+ // ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.42.0/node_modules/@osdk/foundry.ontologies/build/esm/public/OntologyObjectV2.js
2107
2122
  var OntologyObjectV2_exports = {};
2108
2123
  __export(OntologyObjectV2_exports, {
2109
2124
  aggregate: () => aggregate3,
@@ -2133,7 +2148,7 @@ function aggregate3($ctx, ...args) {
2133
2148
  return foundryPlatformFetch($ctx, _aggregate3, ...args);
2134
2149
  }
2135
2150
 
2136
- // ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.40.0/node_modules/@osdk/foundry.ontologies/build/esm/public/OntologyTransaction.js
2151
+ // ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.42.0/node_modules/@osdk/foundry.ontologies/build/esm/public/OntologyTransaction.js
2137
2152
  var OntologyTransaction_exports = {};
2138
2153
  __export(OntologyTransaction_exports, {
2139
2154
  postEdits: () => postEdits
@@ -2143,7 +2158,7 @@ function postEdits($ctx, ...args) {
2143
2158
  return foundryPlatformFetch($ctx, _postEdits, ...args);
2144
2159
  }
2145
2160
 
2146
- // ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.40.0/node_modules/@osdk/foundry.ontologies/build/esm/public/OntologyV2.js
2161
+ // ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.42.0/node_modules/@osdk/foundry.ontologies/build/esm/public/OntologyV2.js
2147
2162
  var OntologyV2_exports = {};
2148
2163
  __export(OntologyV2_exports, {
2149
2164
  get: () => get7,
@@ -2168,7 +2183,7 @@ function loadMetadata($ctx, ...args) {
2168
2183
  return foundryPlatformFetch($ctx, _loadMetadata, ...args);
2169
2184
  }
2170
2185
 
2171
- // ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.40.0/node_modules/@osdk/foundry.ontologies/build/esm/public/Query.js
2186
+ // ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.42.0/node_modules/@osdk/foundry.ontologies/build/esm/public/Query.js
2172
2187
  var Query_exports = {};
2173
2188
  __export(Query_exports, {
2174
2189
  execute: () => execute
@@ -2178,7 +2193,7 @@ function execute($ctx, ...args) {
2178
2193
  return foundryPlatformFetch($ctx, _execute, ...args);
2179
2194
  }
2180
2195
 
2181
- // ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.40.0/node_modules/@osdk/foundry.ontologies/build/esm/public/QueryType.js
2196
+ // ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.42.0/node_modules/@osdk/foundry.ontologies/build/esm/public/QueryType.js
2182
2197
  var QueryType_exports = {};
2183
2198
  __export(QueryType_exports, {
2184
2199
  get: () => get8,
@@ -2193,7 +2208,7 @@ function get8($ctx, ...args) {
2193
2208
  return foundryPlatformFetch($ctx, _get8, ...args);
2194
2209
  }
2195
2210
 
2196
- // ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.40.0/node_modules/@osdk/foundry.ontologies/build/esm/public/TimeSeriesPropertyV2.js
2211
+ // ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.42.0/node_modules/@osdk/foundry.ontologies/build/esm/public/TimeSeriesPropertyV2.js
2197
2212
  var TimeSeriesPropertyV2_exports = {};
2198
2213
  __export(TimeSeriesPropertyV2_exports, {
2199
2214
  getFirstPoint: () => getFirstPoint,
@@ -2213,7 +2228,7 @@ function streamPoints($ctx, ...args) {
2213
2228
  return foundryPlatformFetch($ctx, _streamPoints, ...args);
2214
2229
  }
2215
2230
 
2216
- // ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.40.0/node_modules/@osdk/foundry.ontologies/build/esm/public/TimeSeriesValueBankProperty.js
2231
+ // ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.42.0/node_modules/@osdk/foundry.ontologies/build/esm/public/TimeSeriesValueBankProperty.js
2217
2232
  var TimeSeriesValueBankProperty_exports = {};
2218
2233
  __export(TimeSeriesValueBankProperty_exports, {
2219
2234
  getLatestValue: () => getLatestValue,
@@ -2279,7 +2294,7 @@ __export(MediaReferenceProperties_exports, {
2279
2294
  uploadMedia: () => uploadMedia2
2280
2295
  });
2281
2296
 
2282
- // ../../node_modules/.pnpm/@osdk+foundry.mediasets@2.40.0/node_modules/@osdk/foundry.mediasets/build/esm/public/MediaSet.js
2297
+ // ../../node_modules/.pnpm/@osdk+foundry.mediasets@2.42.0/node_modules/@osdk/foundry.mediasets/build/esm/public/MediaSet.js
2283
2298
  var MediaSet_exports = {};
2284
2299
  __export(MediaSet_exports, {
2285
2300
  abort: () => abort,
@@ -2756,6 +2771,7 @@ var createObjectSetHandlers = (baseUrl, fauxFoundry) => [
2756
2771
  const objectApiNames = new Set(pagedResponse.data.map((o) => o.__apiName));
2757
2772
  return {
2758
2773
  interfaceToObjectTypeMappings: fauxFoundry.getOntology(params.ontologyApiName).getInterfaceToObjectTypeMappings(objectApiNames),
2774
+ interfaceToObjectTypeMappingsV2: {},
2759
2775
  ...pagedResponse
2760
2776
  };
2761
2777
  })