@osdk/generator-converters 0.8.0-beta.1 → 2.0.0-beta.10

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 (38) hide show
  1. package/CHANGELOG.md +48 -0
  2. package/build/browser/index.js +166 -3
  3. package/build/browser/index.js.map +1 -1
  4. package/build/esm/__UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition.d.ts +1 -1
  5. package/build/esm/__UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition.d.ts.map +1 -1
  6. package/build/esm/index.d.ts +4 -0
  7. package/build/esm/index.d.ts.map +1 -1
  8. package/build/esm/index.js +166 -3
  9. package/build/esm/index.js.map +1 -1
  10. package/build/esm/isNullableQueryDataType.d.ts +3 -0
  11. package/build/esm/isNullableQueryDataType.d.ts.map +1 -0
  12. package/build/esm/wireObjectTypeFullMetadataToSdkObjectTypeDefinition.d.ts +2 -2
  13. package/build/esm/wireObjectTypeFullMetadataToSdkObjectTypeDefinition.d.ts.map +1 -1
  14. package/build/esm/wirePropertyV2ToSdkPrimaryKeyTypeDefinition.d.ts +1 -1
  15. package/build/esm/wirePropertyV2ToSdkPrimaryKeyTypeDefinition.d.ts.map +1 -1
  16. package/build/esm/wirePropertyV2ToSdkPropertyDefinition.d.ts +1 -1
  17. package/build/esm/wirePropertyV2ToSdkPropertyDefinition.d.ts.map +1 -1
  18. package/build/esm/wireQueryDataTypeToQueryDataTypeDefinition.d.ts +4 -0
  19. package/build/esm/wireQueryDataTypeToQueryDataTypeDefinition.d.ts.map +1 -0
  20. package/build/esm/wireQueryTypeV2ToSdkQueryDefinition.d.ts +12 -0
  21. package/build/esm/wireQueryTypeV2ToSdkQueryDefinition.d.ts.map +1 -0
  22. package/package.json +6 -9
  23. package/build/cjs/__UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition.d.cts +0 -4
  24. package/build/cjs/__UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition.d.ts.map +0 -1
  25. package/build/cjs/empty.test.d.cts +0 -2
  26. package/build/cjs/empty.test.d.ts.map +0 -1
  27. package/build/cjs/index.cjs +0 -159
  28. package/build/cjs/index.cjs.map +0 -1
  29. package/build/cjs/index.d.cts +0 -4
  30. package/build/cjs/index.d.ts.map +0 -1
  31. package/build/cjs/wireObjectTypeFullMetadataToSdkObjectTypeDefinition.d.cts +0 -10
  32. package/build/cjs/wireObjectTypeFullMetadataToSdkObjectTypeDefinition.d.ts.map +0 -1
  33. package/build/cjs/wireObjectTypeFullMetadataToSdkObjectTypeDefinition.test.d.cts +0 -2
  34. package/build/cjs/wireObjectTypeFullMetadataToSdkObjectTypeDefinition.test.d.ts.map +0 -1
  35. package/build/cjs/wirePropertyV2ToSdkPrimaryKeyTypeDefinition.d.cts +0 -4
  36. package/build/cjs/wirePropertyV2ToSdkPrimaryKeyTypeDefinition.d.ts.map +0 -1
  37. package/build/cjs/wirePropertyV2ToSdkPropertyDefinition.d.cts +0 -6
  38. package/build/cjs/wirePropertyV2ToSdkPropertyDefinition.d.ts.map +0 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,53 @@
1
1
  # @osdk/generator-converters
2
2
 
3
+ ## 2.0.0-beta.10
4
+
5
+ ### Major Changes
6
+
7
+ - 1252d94: ESM Only
8
+ - 56df85a: We now generate minimal object and interface types
9
+
10
+ ### Minor Changes
11
+
12
+ - dc25fb4: Code generation now uses MinQueryDef
13
+
14
+ ### Patch Changes
15
+
16
+ - Updated dependencies [dc25fb4]
17
+ - Updated dependencies [dc25fb4]
18
+ - Updated dependencies [1252d94]
19
+ - Updated dependencies [56df85a]
20
+ - @osdk/api@2.0.0-beta.10
21
+
22
+ ## 2.0.0-beta.9
23
+
24
+ ### Patch Changes
25
+
26
+ - Updated dependencies [b946e00]
27
+ - @osdk/api@2.0.0-beta.9
28
+
29
+ ## 2.0.0-beta.8
30
+
31
+ ### Patch Changes
32
+
33
+ - @osdk/api@2.0.0-beta.8
34
+
35
+ ## 2.0.0-beta.7
36
+
37
+ ### Patch Changes
38
+
39
+ - Updated dependencies [9b0617d]
40
+ - @osdk/api@2.0.0-beta.7
41
+
42
+ ## 2.0.0-beta.6
43
+
44
+ ### Patch Changes
45
+
46
+ - Updated dependencies [3affe49]
47
+ - Updated dependencies [5d6d5ab]
48
+ - @osdk/api@2.0.0-beta.6
49
+ - @osdk/gateway@2.5.0-beta.0
50
+
3
51
  ## 0.8.0-beta.1
4
52
 
5
53
  ### Patch Changes
@@ -125,7 +125,7 @@ function wireObjectTypeFullMetadataToSdkObjectTypeDefinition(objectTypeWithLink,
125
125
  if (objectTypeWithLink.implementsInterfaces2 == null && objectTypeWithLink.implementsInterfaces != null) {
126
126
  throw new Error("Your ontology.json file is missing the implementsInterfaces2 field. Please regenerate it.");
127
127
  }
128
- const interfaceMap = objectTypeWithLink.implementsInterfaces2 ? Object.fromEntries(Object.entries(objectTypeWithLink.implementsInterfaces2).map(([interfaceApiName, impl]) => [interfaceApiName, impl.properties])) : void 0;
128
+ const interfaceMap = objectTypeWithLink.implementsInterfaces2 ? Object.fromEntries(Object.entries(objectTypeWithLink.implementsInterfaces2).map(([interfaceApiName, impl]) => [interfaceApiName, impl.properties])) : {};
129
129
  return {
130
130
  type: "object",
131
131
  apiName: objectTypeWithLink.objectType.apiName,
@@ -143,13 +143,176 @@ function wireObjectTypeFullMetadataToSdkObjectTypeDefinition(objectTypeWithLink,
143
143
  inverseSpts: invertProps(objectTypeWithLink.sharedPropertyTypeMapping),
144
144
  implements: objectTypeWithLink.implementsInterfaces,
145
145
  interfaceMap,
146
- inverseInterfaceMap: interfaceMap ? Object.fromEntries(Object.entries(interfaceMap).map(([interfaceApiName, props]) => [interfaceApiName, invertProps(props)])) : void 0
146
+ inverseInterfaceMap: Object.fromEntries(Object.entries(interfaceMap).map(([interfaceApiName, props]) => [interfaceApiName, invertProps(props)]))
147
147
  };
148
148
  }
149
149
  function invertProps(a) {
150
150
  return a ? Object.fromEntries(Object.entries(a).map(([k, v]) => [v, k])) : void 0;
151
151
  }
152
152
 
153
- export { __UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition, wireObjectTypeFullMetadataToSdkObjectTypeDefinition, wirePropertyV2ToSdkPropertyDefinition };
153
+ // src/isNullableQueryDataType.ts
154
+ function isNullableQueryDataType(input) {
155
+ if (input.type === "null") {
156
+ return true;
157
+ }
158
+ if (input.type === "union") {
159
+ return input.unionTypes.some((t) => isNullableQueryDataType(t));
160
+ }
161
+ return false;
162
+ }
163
+
164
+ // src/wireQueryDataTypeToQueryDataTypeDefinition.ts
165
+ function wireQueryDataTypeToQueryDataTypeDefinition(input) {
166
+ switch (input.type) {
167
+ case "double":
168
+ case "float":
169
+ case "integer":
170
+ case "long":
171
+ case "attachment":
172
+ case "boolean":
173
+ case "date":
174
+ case "string":
175
+ case "timestamp":
176
+ return {
177
+ type: input.type,
178
+ nullable: false
179
+ };
180
+ case "object":
181
+ return {
182
+ type: "object",
183
+ object: input.objectTypeApiName,
184
+ nullable: false
185
+ };
186
+ case "objectSet":
187
+ return {
188
+ type: "objectSet",
189
+ objectSet: input.objectTypeApiName,
190
+ nullable: false
191
+ };
192
+ case "array":
193
+ return {
194
+ ...wireQueryDataTypeToQueryDataTypeDefinition(input.subType),
195
+ multiplicity: true
196
+ };
197
+ case "set":
198
+ return {
199
+ type: "set",
200
+ set: wireQueryDataTypeToQueryDataTypeDefinition(input.subType),
201
+ nullable: false
202
+ };
203
+ case "union":
204
+ const allowNulls = isNullableQueryDataType(input);
205
+ if (allowNulls && input.unionTypes.length === 2) {
206
+ const nonNull = input.unionTypes.find((t) => t.type != null);
207
+ if (nonNull) {
208
+ return {
209
+ ...wireQueryDataTypeToQueryDataTypeDefinition(nonNull),
210
+ nullable: true
211
+ };
212
+ }
213
+ }
214
+ return {
215
+ type: "union",
216
+ union: input.unionTypes.reduce((acc, t) => {
217
+ if (t.type === "null") {
218
+ return acc;
219
+ }
220
+ acc.push(wireQueryDataTypeToQueryDataTypeDefinition(t));
221
+ return acc;
222
+ }, []),
223
+ nullable: allowNulls
224
+ };
225
+ case "struct":
226
+ return {
227
+ type: "struct",
228
+ struct: Object.fromEntries(input.fields.map((f) => [f.name, wireQueryDataTypeToQueryDataTypeDefinition(f.fieldType)])),
229
+ nullable: false
230
+ };
231
+ case "twoDimensionalAggregation":
232
+ return {
233
+ type: "twoDimensionalAggregation",
234
+ twoDimensionalAggregation: get2DQueryAggregationProps(input),
235
+ nullable: false
236
+ };
237
+ case "threeDimensionalAggregation":
238
+ return {
239
+ type: "threeDimensionalAggregation",
240
+ threeDimensionalAggregation: get3DQueryAggregationProps(input),
241
+ nullable: false
242
+ };
243
+ case "null":
244
+ case "unsupported":
245
+ throw new Error(`Accidentally tried to handle QueryDataType.type ${input.type}`);
246
+ default:
247
+ throw new Error(`Unsupported QueryDataType.type ${input.type}`);
248
+ }
249
+ }
250
+ function get2DQueryAggregationProps(input) {
251
+ if (input.keyType.type === "range") {
252
+ return {
253
+ keyType: input.keyType.type,
254
+ keySubtype: input.keyType.subType.type,
255
+ valueType: input.valueType.type
256
+ };
257
+ } else {
258
+ if (guardInvalidKeyTypes(input.keyType)) {
259
+ return {
260
+ keyType: input.keyType.type,
261
+ valueType: input.valueType.type
262
+ };
263
+ }
264
+ throw new Error(`Cannot create 2D aggregation with ${input.keyType.type} as its type`);
265
+ }
266
+ }
267
+ function get3DQueryAggregationProps(input) {
268
+ if (input.keyType.type === "range") {
269
+ return {
270
+ keyType: input.keyType.type,
271
+ keySubtype: input.keyType.subType.type,
272
+ valueType: get2DQueryAggregationProps(input.valueType)
273
+ };
274
+ } else {
275
+ if (guardInvalidKeyTypes(input.keyType)) {
276
+ return {
277
+ keyType: input.keyType.type,
278
+ valueType: get2DQueryAggregationProps(input.valueType)
279
+ };
280
+ }
281
+ throw new Error(`Cannot create 3D aggregation with ${input.keyType.type} as its type`);
282
+ }
283
+ }
284
+ function guardInvalidKeyTypes(key) {
285
+ return key.type === "string" || key.type === "boolean";
286
+ }
287
+
288
+ // src/wireQueryTypeV2ToSdkQueryDefinition.ts
289
+ function wireQueryTypeV2ToSdkQueryDefinition(input) {
290
+ return {
291
+ type: "query",
292
+ apiName: input.apiName,
293
+ description: input.description,
294
+ displayName: input.displayName,
295
+ version: input.version,
296
+ parameters: Object.fromEntries(Object.entries(input.parameters).map(([name, parameter]) => [name, wireQueryParameterV2ToQueryParameterDefinition(parameter)])),
297
+ output: wireQueryDataTypeToQueryDataTypeDefinition(input.output)
298
+ };
299
+ }
300
+ function wireQueryTypeV2ToSdkQueryDefinitionNoParams(input) {
301
+ return {
302
+ type: "query",
303
+ apiName: input.apiName,
304
+ description: input.description,
305
+ displayName: input.displayName,
306
+ version: input.version
307
+ };
308
+ }
309
+ function wireQueryParameterV2ToQueryParameterDefinition(parameter) {
310
+ return {
311
+ description: parameter.description,
312
+ ...wireQueryDataTypeToQueryDataTypeDefinition(parameter.dataType)
313
+ };
314
+ }
315
+
316
+ export { __UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition, wireObjectTypeFullMetadataToSdkObjectTypeDefinition, wirePropertyV2ToSdkPropertyDefinition, wireQueryDataTypeToQueryDataTypeDefinition, wireQueryParameterV2ToQueryParameterDefinition, wireQueryTypeV2ToSdkQueryDefinition, wireQueryTypeV2ToSdkQueryDefinitionNoParams };
154
317
  //# sourceMappingURL=index.js.map
155
318
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/wirePropertyV2ToSdkPropertyDefinition.ts","../../src/__UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition.ts","../../src/wirePropertyV2ToSdkPrimaryKeyTypeDefinition.ts","../../src/wireObjectTypeFullMetadataToSdkObjectTypeDefinition.ts"],"names":[],"mappings":"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","file":"index.js","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\nexport function wirePropertyV2ToSdkPropertyDefinition(input, isNullable = true) {\n switch (input.dataType.type) {\n case \"integer\":\n case \"string\":\n case \"byte\":\n case \"decimal\":\n case \"double\":\n case \"float\":\n case \"long\":\n case \"short\":\n case \"boolean\":\n case \"date\":\n case \"attachment\":\n case \"geopoint\":\n case \"geoshape\":\n case \"timestamp\":\n case \"timeseries\":\n case \"marking\":\n return {\n displayName: input.displayName,\n multiplicity: false,\n description: input.description,\n type: objectPropertyTypeToSdkPropertyDefinition(input.dataType),\n nullable: input.nullable == null ? isNullable : input.nullable\n };\n case \"array\":\n {\n return {\n displayName: input.displayName,\n multiplicity: true,\n description: input.description,\n type: objectPropertyTypeToSdkPropertyDefinition(input.dataType),\n nullable: true\n };\n }\n default:\n const _ = input.dataType;\n throw new Error(`Unexpected data type ${JSON.stringify(input.dataType)}`);\n }\n}\nfunction objectPropertyTypeToSdkPropertyDefinition(propertyType) {\n switch (propertyType.type) {\n case \"integer\":\n case \"string\":\n case \"byte\":\n case \"decimal\":\n case \"double\":\n case \"float\":\n case \"long\":\n case \"short\":\n case \"boolean\":\n case \"attachment\":\n case \"geopoint\":\n case \"geoshape\":\n case \"timestamp\":\n case \"marking\":\n return propertyType.type;\n case \"date\":\n return \"datetime\";\n case \"array\":\n return objectPropertyTypeToSdkPropertyDefinition(propertyType.subType);\n case \"timeseries\":\n if (propertyType.itemType.type === \"string\") {\n return \"stringTimeseries\";\n }\n return \"numericTimeseries\";\n default:\n const _ = propertyType;\n throw new Error(`Unexpected data type ${JSON.stringify(propertyType)}`);\n }\n}","/*\n * Copyright 2024 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 { wirePropertyV2ToSdkPropertyDefinition } from \"./wirePropertyV2ToSdkPropertyDefinition.js\";\nexport function __UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition(interfaceType, v2) {\n return {\n type: \"interface\",\n apiName: interfaceType.apiName,\n displayName: interfaceType.displayName,\n description: interfaceType.description,\n implements: interfaceType.extendsInterfaces,\n properties: Object.fromEntries(Object.entries(interfaceType.properties).map(([key, value]) => {\n return [key, wirePropertyV2ToSdkPropertyDefinition(value, true)];\n })),\n links: {}\n };\n}","/*\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\nexport function wirePropertyV2ToSdkPrimaryKeyTypeDefinition(input) {\n switch (input.dataType.type) {\n case \"integer\":\n case \"double\":\n case \"string\":\n case \"boolean\":\n case \"byte\":\n case \"long\":\n case \"short\":\n {\n return input.dataType.type;\n }\n case \"date\":\n {\n return \"datetime\";\n }\n case \"timestamp\":\n {\n return \"timestamp\";\n }\n case \"geopoint\":\n case \"geoshape\":\n case \"decimal\":\n case \"attachment\":\n case \"timeseries\":\n case \"array\":\n case \"marking\":\n case \"float\":\n throw new Error(`Type not supported for primaryKey: ${input.dataType.type}`);\n default:\n const _ = input.dataType;\n throw new Error(`Unknown type encountered for primaryKey: ${input.dataType}`);\n }\n}","/*\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 { wirePropertyV2ToSdkPrimaryKeyTypeDefinition } from \"./wirePropertyV2ToSdkPrimaryKeyTypeDefinition.js\";\nimport { wirePropertyV2ToSdkPropertyDefinition } from \"./wirePropertyV2ToSdkPropertyDefinition.js\";\nexport function wireObjectTypeFullMetadataToSdkObjectTypeDefinition(objectTypeWithLink, v2) {\n if (objectTypeWithLink.objectType.properties[objectTypeWithLink.objectType.primaryKey] === undefined) {\n throw new Error(`Primary key ${objectTypeWithLink.objectType.primaryKey} not found in ${objectTypeWithLink.objectType.apiName}`);\n }\n\n // saved ontology.json files may not have this implementsInterfaces2 so we need to handle\n if (objectTypeWithLink.implementsInterfaces2 == null && objectTypeWithLink.implementsInterfaces != null) {\n throw new Error(\"Your ontology.json file is missing the implementsInterfaces2 field. Please regenerate it.\");\n }\n const interfaceMap = objectTypeWithLink.implementsInterfaces2 ? Object.fromEntries(Object.entries(objectTypeWithLink.implementsInterfaces2).map(([interfaceApiName, impl]) => [interfaceApiName, impl.properties])) : undefined;\n return {\n type: \"object\",\n apiName: objectTypeWithLink.objectType.apiName,\n description: objectTypeWithLink.objectType.description,\n primaryKeyApiName: objectTypeWithLink.objectType.primaryKey,\n primaryKeyType: wirePropertyV2ToSdkPrimaryKeyTypeDefinition(objectTypeWithLink.objectType.properties[objectTypeWithLink.objectType.primaryKey]),\n links: Object.fromEntries(objectTypeWithLink.linkTypes.map(linkType => {\n return [linkType.apiName, {\n multiplicity: linkType.cardinality === \"MANY\",\n targetType: linkType.objectTypeApiName\n }];\n })),\n properties: Object.fromEntries(Object.entries(objectTypeWithLink.objectType.properties).map(([key, value]) => [key, wirePropertyV2ToSdkPropertyDefinition(value, !(v2 && objectTypeWithLink.objectType.primaryKey === key))])),\n spts: objectTypeWithLink.sharedPropertyTypeMapping,\n inverseSpts: invertProps(objectTypeWithLink.sharedPropertyTypeMapping),\n implements: objectTypeWithLink.implementsInterfaces,\n interfaceMap,\n inverseInterfaceMap: interfaceMap ? Object.fromEntries(Object.entries(interfaceMap).map(([interfaceApiName, props]) => [interfaceApiName, invertProps(props)])) : undefined\n };\n}\nfunction invertProps(a) {\n return a ? Object.fromEntries(Object.entries(a).map(([k, v]) => [v, k])) : undefined;\n}"]}
1
+ {"version":3,"sources":["../../src/wirePropertyV2ToSdkPropertyDefinition.ts","../../src/__UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition.ts","../../src/wirePropertyV2ToSdkPrimaryKeyTypeDefinition.ts","../../src/wireObjectTypeFullMetadataToSdkObjectTypeDefinition.ts","../../src/isNullableQueryDataType.ts","../../src/wireQueryDataTypeToQueryDataTypeDefinition.ts","../../src/wireQueryTypeV2ToSdkQueryDefinition.ts"],"names":[],"mappings":"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","file":"index.js","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\nexport function wirePropertyV2ToSdkPropertyDefinition(input, isNullable = true) {\n switch (input.dataType.type) {\n case \"integer\":\n case \"string\":\n case \"byte\":\n case \"decimal\":\n case \"double\":\n case \"float\":\n case \"long\":\n case \"short\":\n case \"boolean\":\n case \"date\":\n case \"attachment\":\n case \"geopoint\":\n case \"geoshape\":\n case \"timestamp\":\n case \"timeseries\":\n case \"marking\":\n return {\n displayName: input.displayName,\n multiplicity: false,\n description: input.description,\n type: objectPropertyTypeToSdkPropertyDefinition(input.dataType),\n nullable: input.nullable == null ? isNullable : input.nullable\n };\n case \"array\":\n {\n return {\n displayName: input.displayName,\n multiplicity: true,\n description: input.description,\n type: objectPropertyTypeToSdkPropertyDefinition(input.dataType),\n nullable: true\n };\n }\n default:\n const _ = input.dataType;\n throw new Error(`Unexpected data type ${JSON.stringify(input.dataType)}`);\n }\n}\nfunction objectPropertyTypeToSdkPropertyDefinition(propertyType) {\n switch (propertyType.type) {\n case \"integer\":\n case \"string\":\n case \"byte\":\n case \"decimal\":\n case \"double\":\n case \"float\":\n case \"long\":\n case \"short\":\n case \"boolean\":\n case \"attachment\":\n case \"geopoint\":\n case \"geoshape\":\n case \"timestamp\":\n case \"marking\":\n return propertyType.type;\n case \"date\":\n return \"datetime\";\n case \"array\":\n return objectPropertyTypeToSdkPropertyDefinition(propertyType.subType);\n case \"timeseries\":\n if (propertyType.itemType.type === \"string\") {\n return \"stringTimeseries\";\n }\n return \"numericTimeseries\";\n default:\n const _ = propertyType;\n throw new Error(`Unexpected data type ${JSON.stringify(propertyType)}`);\n }\n}","/*\n * Copyright 2024 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 { wirePropertyV2ToSdkPropertyDefinition } from \"./wirePropertyV2ToSdkPropertyDefinition.js\";\nexport function __UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition(interfaceType, v2) {\n return {\n type: \"interface\",\n apiName: interfaceType.apiName,\n displayName: interfaceType.displayName,\n description: interfaceType.description,\n implements: interfaceType.extendsInterfaces,\n properties: Object.fromEntries(Object.entries(interfaceType.properties).map(([key, value]) => {\n return [key, wirePropertyV2ToSdkPropertyDefinition(value, true)];\n })),\n links: {}\n };\n}","/*\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\nexport function wirePropertyV2ToSdkPrimaryKeyTypeDefinition(input) {\n switch (input.dataType.type) {\n case \"integer\":\n case \"double\":\n case \"string\":\n case \"boolean\":\n case \"byte\":\n case \"long\":\n case \"short\":\n {\n return input.dataType.type;\n }\n case \"date\":\n {\n return \"datetime\";\n }\n case \"timestamp\":\n {\n return \"timestamp\";\n }\n case \"geopoint\":\n case \"geoshape\":\n case \"decimal\":\n case \"attachment\":\n case \"timeseries\":\n case \"array\":\n case \"marking\":\n case \"float\":\n throw new Error(`Type not supported for primaryKey: ${input.dataType.type}`);\n default:\n const _ = input.dataType;\n throw new Error(`Unknown type encountered for primaryKey: ${input.dataType}`);\n }\n}","/*\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 { wirePropertyV2ToSdkPrimaryKeyTypeDefinition } from \"./wirePropertyV2ToSdkPrimaryKeyTypeDefinition.js\";\nimport { wirePropertyV2ToSdkPropertyDefinition } from \"./wirePropertyV2ToSdkPropertyDefinition.js\";\nexport function wireObjectTypeFullMetadataToSdkObjectTypeDefinition(objectTypeWithLink, v2) {\n if (objectTypeWithLink.objectType.properties[objectTypeWithLink.objectType.primaryKey] === undefined) {\n throw new Error(`Primary key ${objectTypeWithLink.objectType.primaryKey} not found in ${objectTypeWithLink.objectType.apiName}`);\n }\n\n // saved ontology.json files may not have this implementsInterfaces2 so we need to handle\n if (objectTypeWithLink.implementsInterfaces2 == null && objectTypeWithLink.implementsInterfaces != null) {\n throw new Error(\"Your ontology.json file is missing the implementsInterfaces2 field. Please regenerate it.\");\n }\n const interfaceMap = objectTypeWithLink.implementsInterfaces2 ? Object.fromEntries(Object.entries(objectTypeWithLink.implementsInterfaces2).map(([interfaceApiName, impl]) => [interfaceApiName, impl.properties])) : {};\n return {\n type: \"object\",\n apiName: objectTypeWithLink.objectType.apiName,\n description: objectTypeWithLink.objectType.description,\n primaryKeyApiName: objectTypeWithLink.objectType.primaryKey,\n primaryKeyType: wirePropertyV2ToSdkPrimaryKeyTypeDefinition(objectTypeWithLink.objectType.properties[objectTypeWithLink.objectType.primaryKey]),\n links: Object.fromEntries(objectTypeWithLink.linkTypes.map(linkType => {\n return [linkType.apiName, {\n multiplicity: linkType.cardinality === \"MANY\",\n targetType: linkType.objectTypeApiName\n }];\n })),\n properties: Object.fromEntries(Object.entries(objectTypeWithLink.objectType.properties).map(([key, value]) => [key, wirePropertyV2ToSdkPropertyDefinition(value, !(v2 && objectTypeWithLink.objectType.primaryKey === key))])),\n spts: objectTypeWithLink.sharedPropertyTypeMapping,\n inverseSpts: invertProps(objectTypeWithLink.sharedPropertyTypeMapping),\n implements: objectTypeWithLink.implementsInterfaces,\n interfaceMap,\n inverseInterfaceMap: Object.fromEntries(Object.entries(interfaceMap).map(([interfaceApiName, props]) => [interfaceApiName, invertProps(props)]))\n };\n}\nfunction invertProps(a) {\n return a ? Object.fromEntries(Object.entries(a).map(([k, v]) => [v, k])) : undefined;\n}","/*\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\nexport function isNullableQueryDataType(input) {\n if (input.type === \"null\") {\n return true;\n }\n if (input.type === \"union\") {\n return input.unionTypes.some(t => isNullableQueryDataType(t));\n }\n return false;\n}","/*\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 { isNullableQueryDataType } from \"./isNullableQueryDataType.js\";\nexport function wireQueryDataTypeToQueryDataTypeDefinition(input) {\n switch (input.type) {\n case \"double\":\n case \"float\":\n case \"integer\":\n case \"long\":\n case \"attachment\":\n case \"boolean\":\n case \"date\":\n case \"string\":\n case \"timestamp\":\n return {\n type: input.type,\n nullable: false\n };\n case \"object\":\n return {\n type: \"object\",\n object: input.objectTypeApiName,\n nullable: false\n };\n case \"objectSet\":\n return {\n type: \"objectSet\",\n objectSet: input.objectTypeApiName,\n nullable: false\n };\n case \"array\":\n return {\n ...wireQueryDataTypeToQueryDataTypeDefinition(input.subType),\n multiplicity: true\n };\n case \"set\":\n return {\n type: \"set\",\n set: wireQueryDataTypeToQueryDataTypeDefinition(input.subType),\n nullable: false\n };\n case \"union\":\n const allowNulls = isNullableQueryDataType(input);\n\n // special case for a union where one half is nullable to skip the union step and just allow nulls directly\n if (allowNulls && input.unionTypes.length === 2) {\n const nonNull = input.unionTypes.find(t => t.type != null);\n if (nonNull) {\n return {\n ...wireQueryDataTypeToQueryDataTypeDefinition(nonNull),\n nullable: true\n };\n }\n }\n return {\n type: \"union\",\n union: input.unionTypes.reduce((acc, t) => {\n if (t.type === \"null\") {\n return acc;\n }\n acc.push(wireQueryDataTypeToQueryDataTypeDefinition(t));\n return acc;\n }, []),\n nullable: allowNulls\n };\n case \"struct\":\n return {\n type: \"struct\",\n struct: Object.fromEntries(input.fields.map(f => [f.name, wireQueryDataTypeToQueryDataTypeDefinition(f.fieldType)])),\n nullable: false\n };\n case \"twoDimensionalAggregation\":\n return {\n type: \"twoDimensionalAggregation\",\n twoDimensionalAggregation: get2DQueryAggregationProps(input),\n nullable: false\n };\n case \"threeDimensionalAggregation\":\n return {\n type: \"threeDimensionalAggregation\",\n threeDimensionalAggregation: get3DQueryAggregationProps(input),\n nullable: false\n };\n case \"null\":\n case \"unsupported\":\n throw new Error(`Accidentally tried to handle QueryDataType.type ${input.type}`);\n default:\n const _ = input;\n throw new Error(`Unsupported QueryDataType.type ${input.type}`);\n }\n}\nfunction get2DQueryAggregationProps(input) {\n if (input.keyType.type === \"range\") {\n return {\n keyType: input.keyType.type,\n keySubtype: input.keyType.subType.type,\n valueType: input.valueType.type\n };\n } else {\n if (guardInvalidKeyTypes(input.keyType)) {\n return {\n keyType: input.keyType.type,\n valueType: input.valueType.type\n };\n }\n throw new Error(`Cannot create 2D aggregation with ${input.keyType.type} as its type`);\n }\n}\nfunction get3DQueryAggregationProps(input) {\n if (input.keyType.type === \"range\") {\n return {\n keyType: input.keyType.type,\n keySubtype: input.keyType.subType.type,\n valueType: get2DQueryAggregationProps(input.valueType)\n };\n } else {\n if (guardInvalidKeyTypes(input.keyType)) {\n return {\n keyType: input.keyType.type,\n valueType: get2DQueryAggregationProps(input.valueType)\n };\n }\n throw new Error(`Cannot create 3D aggregation with ${input.keyType.type} as its type`);\n }\n}\n\n/**\n * Guard against aggregation key types that are allowed by the backend types but are illegal to actually use\n */\nfunction guardInvalidKeyTypes(key) {\n return key.type === \"string\" || key.type === \"boolean\";\n}","/*\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 { wireQueryDataTypeToQueryDataTypeDefinition } from \"./wireQueryDataTypeToQueryDataTypeDefinition.js\";\nexport function wireQueryTypeV2ToSdkQueryDefinition(input) {\n return {\n type: \"query\",\n apiName: input.apiName,\n description: input.description,\n displayName: input.displayName,\n version: input.version,\n parameters: Object.fromEntries(Object.entries(input.parameters).map(([name, parameter]) => [name, wireQueryParameterV2ToQueryParameterDefinition(parameter)])),\n output: wireQueryDataTypeToQueryDataTypeDefinition(input.output)\n };\n}\nexport function wireQueryTypeV2ToSdkQueryDefinitionNoParams(input) {\n return {\n type: \"query\",\n apiName: input.apiName,\n description: input.description,\n displayName: input.displayName,\n version: input.version\n };\n}\nexport function wireQueryParameterV2ToQueryParameterDefinition(parameter) {\n return {\n description: parameter.description,\n ...wireQueryDataTypeToQueryDataTypeDefinition(parameter.dataType)\n };\n}"]}
@@ -1,4 +1,4 @@
1
1
  import type { InterfaceDefinition } from "@osdk/api";
2
- import type { InterfaceType } from "@osdk/gateway/types";
2
+ import type { InterfaceType } from "@osdk/internal.foundry.core";
3
3
  export declare function __UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition(interfaceType: InterfaceType, v2: boolean): InterfaceDefinition<any, any>;
4
4
  //# sourceMappingURL=__UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"__UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition.d.ts","sourceRoot":"","sources":["../../src/__UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,WAAW,CAAC;AACrD,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAGzD,wBAAgB,mDAAmD,CACjE,aAAa,EAAE,aAAa,EAC5B,EAAE,EAAE,OAAO,GACV,mBAAmB,CAAC,GAAG,EAAE,GAAG,CAAC,CAsB/B"}
1
+ {"version":3,"file":"__UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition.d.ts","sourceRoot":"","sources":["../../src/__UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,WAAW,CAAC;AACrD,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,6BAA6B,CAAC;AAGjE,wBAAgB,mDAAmD,CACjE,aAAa,EAAE,aAAa,EAC5B,EAAE,EAAE,OAAO,GACV,mBAAmB,CAAC,GAAG,EAAE,GAAG,CAAC,CAsB/B"}
@@ -1,4 +1,8 @@
1
1
  export { __UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition } from "./__UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition.js";
2
2
  export { wireObjectTypeFullMetadataToSdkObjectTypeDefinition } from "./wireObjectTypeFullMetadataToSdkObjectTypeDefinition.js";
3
3
  export { wirePropertyV2ToSdkPropertyDefinition } from "./wirePropertyV2ToSdkPropertyDefinition.js";
4
+ export { wireQueryDataTypeToQueryDataTypeDefinition } from "./wireQueryDataTypeToQueryDataTypeDefinition.js";
5
+ export { wireQueryTypeV2ToSdkQueryDefinition } from "./wireQueryTypeV2ToSdkQueryDefinition.js";
6
+ export { wireQueryParameterV2ToQueryParameterDefinition } from "./wireQueryTypeV2ToSdkQueryDefinition.js";
7
+ export { wireQueryTypeV2ToSdkQueryDefinitionNoParams } from "./wireQueryTypeV2ToSdkQueryDefinition.js";
4
8
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAE,mDAAmD,EAAE,MAAM,0DAA0D,CAAC;AAC/H,OAAO,EAAE,mDAAmD,EAAE,MAAM,0DAA0D,CAAC;AAC/H,OAAO,EAAE,qCAAqC,EAAE,MAAM,4CAA4C,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAE,mDAAmD,EAAE,MAAM,0DAA0D,CAAC;AAC/H,OAAO,EAAE,mDAAmD,EAAE,MAAM,0DAA0D,CAAC;AAC/H,OAAO,EAAE,qCAAqC,EAAE,MAAM,4CAA4C,CAAC;AACnG,OAAO,EAAE,0CAA0C,EAAE,MAAM,iDAAiD,CAAC;AAC7G,OAAO,EAAE,mCAAmC,EAAE,MAAM,0CAA0C,CAAC;AAC/F,OAAO,EAAE,8CAA8C,EAAE,MAAM,0CAA0C,CAAC;AAC1G,OAAO,EAAE,2CAA2C,EAAE,MAAM,0CAA0C,CAAC"}
@@ -125,7 +125,7 @@ function wireObjectTypeFullMetadataToSdkObjectTypeDefinition(objectTypeWithLink,
125
125
  if (objectTypeWithLink.implementsInterfaces2 == null && objectTypeWithLink.implementsInterfaces != null) {
126
126
  throw new Error("Your ontology.json file is missing the implementsInterfaces2 field. Please regenerate it.");
127
127
  }
128
- const interfaceMap = objectTypeWithLink.implementsInterfaces2 ? Object.fromEntries(Object.entries(objectTypeWithLink.implementsInterfaces2).map(([interfaceApiName, impl]) => [interfaceApiName, impl.properties])) : void 0;
128
+ const interfaceMap = objectTypeWithLink.implementsInterfaces2 ? Object.fromEntries(Object.entries(objectTypeWithLink.implementsInterfaces2).map(([interfaceApiName, impl]) => [interfaceApiName, impl.properties])) : {};
129
129
  return {
130
130
  type: "object",
131
131
  apiName: objectTypeWithLink.objectType.apiName,
@@ -143,13 +143,176 @@ function wireObjectTypeFullMetadataToSdkObjectTypeDefinition(objectTypeWithLink,
143
143
  inverseSpts: invertProps(objectTypeWithLink.sharedPropertyTypeMapping),
144
144
  implements: objectTypeWithLink.implementsInterfaces,
145
145
  interfaceMap,
146
- inverseInterfaceMap: interfaceMap ? Object.fromEntries(Object.entries(interfaceMap).map(([interfaceApiName, props]) => [interfaceApiName, invertProps(props)])) : void 0
146
+ inverseInterfaceMap: Object.fromEntries(Object.entries(interfaceMap).map(([interfaceApiName, props]) => [interfaceApiName, invertProps(props)]))
147
147
  };
148
148
  }
149
149
  function invertProps(a) {
150
150
  return a ? Object.fromEntries(Object.entries(a).map(([k, v]) => [v, k])) : void 0;
151
151
  }
152
152
 
153
- export { __UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition, wireObjectTypeFullMetadataToSdkObjectTypeDefinition, wirePropertyV2ToSdkPropertyDefinition };
153
+ // src/isNullableQueryDataType.ts
154
+ function isNullableQueryDataType(input) {
155
+ if (input.type === "null") {
156
+ return true;
157
+ }
158
+ if (input.type === "union") {
159
+ return input.unionTypes.some((t) => isNullableQueryDataType(t));
160
+ }
161
+ return false;
162
+ }
163
+
164
+ // src/wireQueryDataTypeToQueryDataTypeDefinition.ts
165
+ function wireQueryDataTypeToQueryDataTypeDefinition(input) {
166
+ switch (input.type) {
167
+ case "double":
168
+ case "float":
169
+ case "integer":
170
+ case "long":
171
+ case "attachment":
172
+ case "boolean":
173
+ case "date":
174
+ case "string":
175
+ case "timestamp":
176
+ return {
177
+ type: input.type,
178
+ nullable: false
179
+ };
180
+ case "object":
181
+ return {
182
+ type: "object",
183
+ object: input.objectTypeApiName,
184
+ nullable: false
185
+ };
186
+ case "objectSet":
187
+ return {
188
+ type: "objectSet",
189
+ objectSet: input.objectTypeApiName,
190
+ nullable: false
191
+ };
192
+ case "array":
193
+ return {
194
+ ...wireQueryDataTypeToQueryDataTypeDefinition(input.subType),
195
+ multiplicity: true
196
+ };
197
+ case "set":
198
+ return {
199
+ type: "set",
200
+ set: wireQueryDataTypeToQueryDataTypeDefinition(input.subType),
201
+ nullable: false
202
+ };
203
+ case "union":
204
+ const allowNulls = isNullableQueryDataType(input);
205
+ if (allowNulls && input.unionTypes.length === 2) {
206
+ const nonNull = input.unionTypes.find((t) => t.type != null);
207
+ if (nonNull) {
208
+ return {
209
+ ...wireQueryDataTypeToQueryDataTypeDefinition(nonNull),
210
+ nullable: true
211
+ };
212
+ }
213
+ }
214
+ return {
215
+ type: "union",
216
+ union: input.unionTypes.reduce((acc, t) => {
217
+ if (t.type === "null") {
218
+ return acc;
219
+ }
220
+ acc.push(wireQueryDataTypeToQueryDataTypeDefinition(t));
221
+ return acc;
222
+ }, []),
223
+ nullable: allowNulls
224
+ };
225
+ case "struct":
226
+ return {
227
+ type: "struct",
228
+ struct: Object.fromEntries(input.fields.map((f) => [f.name, wireQueryDataTypeToQueryDataTypeDefinition(f.fieldType)])),
229
+ nullable: false
230
+ };
231
+ case "twoDimensionalAggregation":
232
+ return {
233
+ type: "twoDimensionalAggregation",
234
+ twoDimensionalAggregation: get2DQueryAggregationProps(input),
235
+ nullable: false
236
+ };
237
+ case "threeDimensionalAggregation":
238
+ return {
239
+ type: "threeDimensionalAggregation",
240
+ threeDimensionalAggregation: get3DQueryAggregationProps(input),
241
+ nullable: false
242
+ };
243
+ case "null":
244
+ case "unsupported":
245
+ throw new Error(`Accidentally tried to handle QueryDataType.type ${input.type}`);
246
+ default:
247
+ throw new Error(`Unsupported QueryDataType.type ${input.type}`);
248
+ }
249
+ }
250
+ function get2DQueryAggregationProps(input) {
251
+ if (input.keyType.type === "range") {
252
+ return {
253
+ keyType: input.keyType.type,
254
+ keySubtype: input.keyType.subType.type,
255
+ valueType: input.valueType.type
256
+ };
257
+ } else {
258
+ if (guardInvalidKeyTypes(input.keyType)) {
259
+ return {
260
+ keyType: input.keyType.type,
261
+ valueType: input.valueType.type
262
+ };
263
+ }
264
+ throw new Error(`Cannot create 2D aggregation with ${input.keyType.type} as its type`);
265
+ }
266
+ }
267
+ function get3DQueryAggregationProps(input) {
268
+ if (input.keyType.type === "range") {
269
+ return {
270
+ keyType: input.keyType.type,
271
+ keySubtype: input.keyType.subType.type,
272
+ valueType: get2DQueryAggregationProps(input.valueType)
273
+ };
274
+ } else {
275
+ if (guardInvalidKeyTypes(input.keyType)) {
276
+ return {
277
+ keyType: input.keyType.type,
278
+ valueType: get2DQueryAggregationProps(input.valueType)
279
+ };
280
+ }
281
+ throw new Error(`Cannot create 3D aggregation with ${input.keyType.type} as its type`);
282
+ }
283
+ }
284
+ function guardInvalidKeyTypes(key) {
285
+ return key.type === "string" || key.type === "boolean";
286
+ }
287
+
288
+ // src/wireQueryTypeV2ToSdkQueryDefinition.ts
289
+ function wireQueryTypeV2ToSdkQueryDefinition(input) {
290
+ return {
291
+ type: "query",
292
+ apiName: input.apiName,
293
+ description: input.description,
294
+ displayName: input.displayName,
295
+ version: input.version,
296
+ parameters: Object.fromEntries(Object.entries(input.parameters).map(([name, parameter]) => [name, wireQueryParameterV2ToQueryParameterDefinition(parameter)])),
297
+ output: wireQueryDataTypeToQueryDataTypeDefinition(input.output)
298
+ };
299
+ }
300
+ function wireQueryTypeV2ToSdkQueryDefinitionNoParams(input) {
301
+ return {
302
+ type: "query",
303
+ apiName: input.apiName,
304
+ description: input.description,
305
+ displayName: input.displayName,
306
+ version: input.version
307
+ };
308
+ }
309
+ function wireQueryParameterV2ToQueryParameterDefinition(parameter) {
310
+ return {
311
+ description: parameter.description,
312
+ ...wireQueryDataTypeToQueryDataTypeDefinition(parameter.dataType)
313
+ };
314
+ }
315
+
316
+ export { __UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition, wireObjectTypeFullMetadataToSdkObjectTypeDefinition, wirePropertyV2ToSdkPropertyDefinition, wireQueryDataTypeToQueryDataTypeDefinition, wireQueryParameterV2ToQueryParameterDefinition, wireQueryTypeV2ToSdkQueryDefinition, wireQueryTypeV2ToSdkQueryDefinitionNoParams };
154
317
  //# sourceMappingURL=index.js.map
155
318
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/wirePropertyV2ToSdkPropertyDefinition.ts","../../src/__UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition.ts","../../src/wirePropertyV2ToSdkPrimaryKeyTypeDefinition.ts","../../src/wireObjectTypeFullMetadataToSdkObjectTypeDefinition.ts"],"names":[],"mappings":";AAgBO,SAAS,qCAAA,CAAsC,KAAO,EAAA,UAAA,GAAa,IAAM,EAAA;AAC9E,EAAQ,QAAA,KAAA,CAAM,SAAS,IAAM;AAAA,IAC3B,KAAK,SAAA,CAAA;AAAA,IACL,KAAK,QAAA,CAAA;AAAA,IACL,KAAK,MAAA,CAAA;AAAA,IACL,KAAK,SAAA,CAAA;AAAA,IACL,KAAK,QAAA,CAAA;AAAA,IACL,KAAK,OAAA,CAAA;AAAA,IACL,KAAK,MAAA,CAAA;AAAA,IACL,KAAK,OAAA,CAAA;AAAA,IACL,KAAK,SAAA,CAAA;AAAA,IACL,KAAK,MAAA,CAAA;AAAA,IACL,KAAK,YAAA,CAAA;AAAA,IACL,KAAK,UAAA,CAAA;AAAA,IACL,KAAK,UAAA,CAAA;AAAA,IACL,KAAK,WAAA,CAAA;AAAA,IACL,KAAK,YAAA,CAAA;AAAA,IACL,KAAK,SAAA;AACH,MAAO,OAAA;AAAA,QACL,aAAa,KAAM,CAAA,WAAA;AAAA,QACnB,YAAc,EAAA,KAAA;AAAA,QACd,aAAa,KAAM,CAAA,WAAA;AAAA,QACnB,IAAA,EAAM,yCAA0C,CAAA,KAAA,CAAM,QAAQ,CAAA;AAAA,QAC9D,QAAU,EAAA,KAAA,CAAM,QAAY,IAAA,IAAA,GAAO,aAAa,KAAM,CAAA,QAAA;AAAA,OACxD,CAAA;AAAA,IACF,KAAK,OACH,EAAA;AACE,MAAO,OAAA;AAAA,QACL,aAAa,KAAM,CAAA,WAAA;AAAA,QACnB,YAAc,EAAA,IAAA;AAAA,QACd,aAAa,KAAM,CAAA,WAAA;AAAA,QACnB,IAAA,EAAM,yCAA0C,CAAA,KAAA,CAAM,QAAQ,CAAA;AAAA,QAC9D,QAAU,EAAA,IAAA;AAAA,OACZ,CAAA;AAAA,KACF;AAAA,IACF;AACE,MAAU,KAAM,CAAA,SAAA;AAChB,MAAM,MAAA,IAAI,MAAM,CAAwB,qBAAA,EAAA,IAAA,CAAK,UAAU,KAAM,CAAA,QAAQ,CAAC,CAAE,CAAA,CAAA,CAAA;AAAA,GAC5E;AACF,CAAA;AACA,SAAS,0CAA0C,YAAc,EAAA;AAC/D,EAAA,QAAQ,aAAa,IAAM;AAAA,IACzB,KAAK,SAAA,CAAA;AAAA,IACL,KAAK,QAAA,CAAA;AAAA,IACL,KAAK,MAAA,CAAA;AAAA,IACL,KAAK,SAAA,CAAA;AAAA,IACL,KAAK,QAAA,CAAA;AAAA,IACL,KAAK,OAAA,CAAA;AAAA,IACL,KAAK,MAAA,CAAA;AAAA,IACL,KAAK,OAAA,CAAA;AAAA,IACL,KAAK,SAAA,CAAA;AAAA,IACL,KAAK,YAAA,CAAA;AAAA,IACL,KAAK,UAAA,CAAA;AAAA,IACL,KAAK,UAAA,CAAA;AAAA,IACL,KAAK,WAAA,CAAA;AAAA,IACL,KAAK,SAAA;AACH,MAAA,OAAO,YAAa,CAAA,IAAA,CAAA;AAAA,IACtB,KAAK,MAAA;AACH,MAAO,OAAA,UAAA,CAAA;AAAA,IACT,KAAK,OAAA;AACH,MAAO,OAAA,yCAAA,CAA0C,aAAa,OAAO,CAAA,CAAA;AAAA,IACvE,KAAK,YAAA;AACH,MAAI,IAAA,YAAA,CAAa,QAAS,CAAA,IAAA,KAAS,QAAU,EAAA;AAC3C,QAAO,OAAA,kBAAA,CAAA;AAAA,OACT;AACA,MAAO,OAAA,mBAAA,CAAA;AAAA,IACT;AAEE,MAAA,MAAM,IAAI,KAAM,CAAA,CAAA,qBAAA,EAAwB,KAAK,SAAU,CAAA,YAAY,CAAC,CAAE,CAAA,CAAA,CAAA;AAAA,GAC1E;AACF,CAAA;;;ACrEO,SAAS,mDAAA,CAAoD,eAAe,EAAI,EAAA;AACrF,EAAO,OAAA;AAAA,IACL,IAAM,EAAA,WAAA;AAAA,IACN,SAAS,aAAc,CAAA,OAAA;AAAA,IACvB,aAAa,aAAc,CAAA,WAAA;AAAA,IAC3B,aAAa,aAAc,CAAA,WAAA;AAAA,IAC3B,YAAY,aAAc,CAAA,iBAAA;AAAA,IAC1B,UAAY,EAAA,MAAA,CAAO,WAAY,CAAA,MAAA,CAAO,OAAQ,CAAA,aAAA,CAAc,UAAU,CAAA,CAAE,GAAI,CAAA,CAAC,CAAC,GAAA,EAAK,KAAK,CAAM,KAAA;AAC5F,MAAA,OAAO,CAAC,GAAA,EAAK,qCAAsC,CAAA,KAAA,EAAO,IAAI,CAAC,CAAA,CAAA;AAAA,KAChE,CAAC,CAAA;AAAA,IACF,OAAO,EAAC;AAAA,GACV,CAAA;AACF,CAAA;;;ACbO,SAAS,4CAA4C,KAAO,EAAA;AACjE,EAAQ,QAAA,KAAA,CAAM,SAAS,IAAM;AAAA,IAC3B,KAAK,SAAA,CAAA;AAAA,IACL,KAAK,QAAA,CAAA;AAAA,IACL,KAAK,QAAA,CAAA;AAAA,IACL,KAAK,SAAA,CAAA;AAAA,IACL,KAAK,MAAA,CAAA;AAAA,IACL,KAAK,MAAA,CAAA;AAAA,IACL,KAAK,OACH,EAAA;AACE,MAAA,OAAO,MAAM,QAAS,CAAA,IAAA,CAAA;AAAA,KACxB;AAAA,IACF,KAAK,MACH,EAAA;AACE,MAAO,OAAA,UAAA,CAAA;AAAA,KACT;AAAA,IACF,KAAK,WACH,EAAA;AACE,MAAO,OAAA,WAAA,CAAA;AAAA,KACT;AAAA,IACF,KAAK,UAAA,CAAA;AAAA,IACL,KAAK,UAAA,CAAA;AAAA,IACL,KAAK,SAAA,CAAA;AAAA,IACL,KAAK,YAAA,CAAA;AAAA,IACL,KAAK,YAAA,CAAA;AAAA,IACL,KAAK,OAAA,CAAA;AAAA,IACL,KAAK,SAAA,CAAA;AAAA,IACL,KAAK,OAAA;AACH,MAAA,MAAM,IAAI,KAAM,CAAA,CAAA,mCAAA,EAAsC,KAAM,CAAA,QAAA,CAAS,IAAI,CAAE,CAAA,CAAA,CAAA;AAAA,IAC7E;AACE,MAAU,KAAM,CAAA,SAAA;AAChB,MAAA,MAAM,IAAI,KAAA,CAAM,CAA4C,yCAAA,EAAA,KAAA,CAAM,QAAQ,CAAE,CAAA,CAAA,CAAA;AAAA,GAChF;AACF,CAAA;;;AC/BO,SAAS,mDAAA,CAAoD,oBAAoB,EAAI,EAAA;AAC1F,EAAA,IAAI,mBAAmB,UAAW,CAAA,UAAA,CAAW,mBAAmB,UAAW,CAAA,UAAU,MAAM,KAAW,CAAA,EAAA;AACpG,IAAM,MAAA,IAAI,KAAM,CAAA,CAAA,YAAA,EAAe,kBAAmB,CAAA,UAAA,CAAW,UAAU,CAAiB,cAAA,EAAA,kBAAA,CAAmB,UAAW,CAAA,OAAO,CAAE,CAAA,CAAA,CAAA;AAAA,GACjI;AAGA,EAAA,IAAI,kBAAmB,CAAA,qBAAA,IAAyB,IAAQ,IAAA,kBAAA,CAAmB,wBAAwB,IAAM,EAAA;AACvG,IAAM,MAAA,IAAI,MAAM,2FAA2F,CAAA,CAAA;AAAA,GAC7G;AACA,EAAM,MAAA,YAAA,GAAe,mBAAmB,qBAAwB,GAAA,MAAA,CAAO,YAAY,MAAO,CAAA,OAAA,CAAQ,kBAAmB,CAAA,qBAAqB,CAAE,CAAA,GAAA,CAAI,CAAC,CAAC,gBAAA,EAAkB,IAAI,CAAM,KAAA,CAAC,kBAAkB,IAAK,CAAA,UAAU,CAAC,CAAC,CAAI,GAAA,KAAA,CAAA,CAAA;AACtN,EAAO,OAAA;AAAA,IACL,IAAM,EAAA,QAAA;AAAA,IACN,OAAA,EAAS,mBAAmB,UAAW,CAAA,OAAA;AAAA,IACvC,WAAA,EAAa,mBAAmB,UAAW,CAAA,WAAA;AAAA,IAC3C,iBAAA,EAAmB,mBAAmB,UAAW,CAAA,UAAA;AAAA,IACjD,cAAA,EAAgB,4CAA4C,kBAAmB,CAAA,UAAA,CAAW,WAAW,kBAAmB,CAAA,UAAA,CAAW,UAAU,CAAC,CAAA;AAAA,IAC9I,OAAO,MAAO,CAAA,WAAA,CAAY,kBAAmB,CAAA,SAAA,CAAU,IAAI,CAAY,QAAA,KAAA;AACrE,MAAO,OAAA,CAAC,SAAS,OAAS,EAAA;AAAA,QACxB,YAAA,EAAc,SAAS,WAAgB,KAAA,MAAA;AAAA,QACvC,YAAY,QAAS,CAAA,iBAAA;AAAA,OACtB,CAAA,CAAA;AAAA,KACF,CAAC,CAAA;AAAA,IACF,UAAA,EAAY,MAAO,CAAA,WAAA,CAAY,MAAO,CAAA,OAAA,CAAQ,kBAAmB,CAAA,UAAA,CAAW,UAAU,CAAA,CAAE,GAAI,CAAA,CAAC,CAAC,GAAA,EAAK,KAAK,CAAA,KAAM,CAAC,GAAA,EAAK,qCAAsC,CAAA,KAAA,EAAO,EAAE,EAAA,IAAM,kBAAmB,CAAA,UAAA,CAAW,UAAe,KAAA,GAAA,CAAI,CAAC,CAAC,CAAC,CAAA;AAAA,IAC7N,MAAM,kBAAmB,CAAA,yBAAA;AAAA,IACzB,WAAA,EAAa,WAAY,CAAA,kBAAA,CAAmB,yBAAyB,CAAA;AAAA,IACrE,YAAY,kBAAmB,CAAA,oBAAA;AAAA,IAC/B,YAAA;AAAA,IACA,mBAAA,EAAqB,eAAe,MAAO,CAAA,WAAA,CAAY,OAAO,OAAQ,CAAA,YAAY,EAAE,GAAI,CAAA,CAAC,CAAC,gBAAkB,EAAA,KAAK,MAAM,CAAC,gBAAA,EAAkB,YAAY,KAAK,CAAC,CAAC,CAAC,CAAI,GAAA,KAAA,CAAA;AAAA,GACpK,CAAA;AACF,CAAA;AACA,SAAS,YAAY,CAAG,EAAA;AACtB,EAAA,OAAO,IAAI,MAAO,CAAA,WAAA,CAAY,OAAO,OAAQ,CAAA,CAAC,EAAE,GAAI,CAAA,CAAC,CAAC,CAAA,EAAG,CAAC,CAAM,KAAA,CAAC,GAAG,CAAC,CAAC,CAAC,CAAI,GAAA,KAAA,CAAA,CAAA;AAC7E","file":"index.js","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\nexport function wirePropertyV2ToSdkPropertyDefinition(input, isNullable = true) {\n switch (input.dataType.type) {\n case \"integer\":\n case \"string\":\n case \"byte\":\n case \"decimal\":\n case \"double\":\n case \"float\":\n case \"long\":\n case \"short\":\n case \"boolean\":\n case \"date\":\n case \"attachment\":\n case \"geopoint\":\n case \"geoshape\":\n case \"timestamp\":\n case \"timeseries\":\n case \"marking\":\n return {\n displayName: input.displayName,\n multiplicity: false,\n description: input.description,\n type: objectPropertyTypeToSdkPropertyDefinition(input.dataType),\n nullable: input.nullable == null ? isNullable : input.nullable\n };\n case \"array\":\n {\n return {\n displayName: input.displayName,\n multiplicity: true,\n description: input.description,\n type: objectPropertyTypeToSdkPropertyDefinition(input.dataType),\n nullable: true\n };\n }\n default:\n const _ = input.dataType;\n throw new Error(`Unexpected data type ${JSON.stringify(input.dataType)}`);\n }\n}\nfunction objectPropertyTypeToSdkPropertyDefinition(propertyType) {\n switch (propertyType.type) {\n case \"integer\":\n case \"string\":\n case \"byte\":\n case \"decimal\":\n case \"double\":\n case \"float\":\n case \"long\":\n case \"short\":\n case \"boolean\":\n case \"attachment\":\n case \"geopoint\":\n case \"geoshape\":\n case \"timestamp\":\n case \"marking\":\n return propertyType.type;\n case \"date\":\n return \"datetime\";\n case \"array\":\n return objectPropertyTypeToSdkPropertyDefinition(propertyType.subType);\n case \"timeseries\":\n if (propertyType.itemType.type === \"string\") {\n return \"stringTimeseries\";\n }\n return \"numericTimeseries\";\n default:\n const _ = propertyType;\n throw new Error(`Unexpected data type ${JSON.stringify(propertyType)}`);\n }\n}","/*\n * Copyright 2024 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 { wirePropertyV2ToSdkPropertyDefinition } from \"./wirePropertyV2ToSdkPropertyDefinition.js\";\nexport function __UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition(interfaceType, v2) {\n return {\n type: \"interface\",\n apiName: interfaceType.apiName,\n displayName: interfaceType.displayName,\n description: interfaceType.description,\n implements: interfaceType.extendsInterfaces,\n properties: Object.fromEntries(Object.entries(interfaceType.properties).map(([key, value]) => {\n return [key, wirePropertyV2ToSdkPropertyDefinition(value, true)];\n })),\n links: {}\n };\n}","/*\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\nexport function wirePropertyV2ToSdkPrimaryKeyTypeDefinition(input) {\n switch (input.dataType.type) {\n case \"integer\":\n case \"double\":\n case \"string\":\n case \"boolean\":\n case \"byte\":\n case \"long\":\n case \"short\":\n {\n return input.dataType.type;\n }\n case \"date\":\n {\n return \"datetime\";\n }\n case \"timestamp\":\n {\n return \"timestamp\";\n }\n case \"geopoint\":\n case \"geoshape\":\n case \"decimal\":\n case \"attachment\":\n case \"timeseries\":\n case \"array\":\n case \"marking\":\n case \"float\":\n throw new Error(`Type not supported for primaryKey: ${input.dataType.type}`);\n default:\n const _ = input.dataType;\n throw new Error(`Unknown type encountered for primaryKey: ${input.dataType}`);\n }\n}","/*\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 { wirePropertyV2ToSdkPrimaryKeyTypeDefinition } from \"./wirePropertyV2ToSdkPrimaryKeyTypeDefinition.js\";\nimport { wirePropertyV2ToSdkPropertyDefinition } from \"./wirePropertyV2ToSdkPropertyDefinition.js\";\nexport function wireObjectTypeFullMetadataToSdkObjectTypeDefinition(objectTypeWithLink, v2) {\n if (objectTypeWithLink.objectType.properties[objectTypeWithLink.objectType.primaryKey] === undefined) {\n throw new Error(`Primary key ${objectTypeWithLink.objectType.primaryKey} not found in ${objectTypeWithLink.objectType.apiName}`);\n }\n\n // saved ontology.json files may not have this implementsInterfaces2 so we need to handle\n if (objectTypeWithLink.implementsInterfaces2 == null && objectTypeWithLink.implementsInterfaces != null) {\n throw new Error(\"Your ontology.json file is missing the implementsInterfaces2 field. Please regenerate it.\");\n }\n const interfaceMap = objectTypeWithLink.implementsInterfaces2 ? Object.fromEntries(Object.entries(objectTypeWithLink.implementsInterfaces2).map(([interfaceApiName, impl]) => [interfaceApiName, impl.properties])) : undefined;\n return {\n type: \"object\",\n apiName: objectTypeWithLink.objectType.apiName,\n description: objectTypeWithLink.objectType.description,\n primaryKeyApiName: objectTypeWithLink.objectType.primaryKey,\n primaryKeyType: wirePropertyV2ToSdkPrimaryKeyTypeDefinition(objectTypeWithLink.objectType.properties[objectTypeWithLink.objectType.primaryKey]),\n links: Object.fromEntries(objectTypeWithLink.linkTypes.map(linkType => {\n return [linkType.apiName, {\n multiplicity: linkType.cardinality === \"MANY\",\n targetType: linkType.objectTypeApiName\n }];\n })),\n properties: Object.fromEntries(Object.entries(objectTypeWithLink.objectType.properties).map(([key, value]) => [key, wirePropertyV2ToSdkPropertyDefinition(value, !(v2 && objectTypeWithLink.objectType.primaryKey === key))])),\n spts: objectTypeWithLink.sharedPropertyTypeMapping,\n inverseSpts: invertProps(objectTypeWithLink.sharedPropertyTypeMapping),\n implements: objectTypeWithLink.implementsInterfaces,\n interfaceMap,\n inverseInterfaceMap: interfaceMap ? Object.fromEntries(Object.entries(interfaceMap).map(([interfaceApiName, props]) => [interfaceApiName, invertProps(props)])) : undefined\n };\n}\nfunction invertProps(a) {\n return a ? Object.fromEntries(Object.entries(a).map(([k, v]) => [v, k])) : undefined;\n}"]}
1
+ {"version":3,"sources":["../../src/wirePropertyV2ToSdkPropertyDefinition.ts","../../src/__UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition.ts","../../src/wirePropertyV2ToSdkPrimaryKeyTypeDefinition.ts","../../src/wireObjectTypeFullMetadataToSdkObjectTypeDefinition.ts","../../src/isNullableQueryDataType.ts","../../src/wireQueryDataTypeToQueryDataTypeDefinition.ts","../../src/wireQueryTypeV2ToSdkQueryDefinition.ts"],"names":[],"mappings":"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","file":"index.js","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\nexport function wirePropertyV2ToSdkPropertyDefinition(input, isNullable = true) {\n switch (input.dataType.type) {\n case \"integer\":\n case \"string\":\n case \"byte\":\n case \"decimal\":\n case \"double\":\n case \"float\":\n case \"long\":\n case \"short\":\n case \"boolean\":\n case \"date\":\n case \"attachment\":\n case \"geopoint\":\n case \"geoshape\":\n case \"timestamp\":\n case \"timeseries\":\n case \"marking\":\n return {\n displayName: input.displayName,\n multiplicity: false,\n description: input.description,\n type: objectPropertyTypeToSdkPropertyDefinition(input.dataType),\n nullable: input.nullable == null ? isNullable : input.nullable\n };\n case \"array\":\n {\n return {\n displayName: input.displayName,\n multiplicity: true,\n description: input.description,\n type: objectPropertyTypeToSdkPropertyDefinition(input.dataType),\n nullable: true\n };\n }\n default:\n const _ = input.dataType;\n throw new Error(`Unexpected data type ${JSON.stringify(input.dataType)}`);\n }\n}\nfunction objectPropertyTypeToSdkPropertyDefinition(propertyType) {\n switch (propertyType.type) {\n case \"integer\":\n case \"string\":\n case \"byte\":\n case \"decimal\":\n case \"double\":\n case \"float\":\n case \"long\":\n case \"short\":\n case \"boolean\":\n case \"attachment\":\n case \"geopoint\":\n case \"geoshape\":\n case \"timestamp\":\n case \"marking\":\n return propertyType.type;\n case \"date\":\n return \"datetime\";\n case \"array\":\n return objectPropertyTypeToSdkPropertyDefinition(propertyType.subType);\n case \"timeseries\":\n if (propertyType.itemType.type === \"string\") {\n return \"stringTimeseries\";\n }\n return \"numericTimeseries\";\n default:\n const _ = propertyType;\n throw new Error(`Unexpected data type ${JSON.stringify(propertyType)}`);\n }\n}","/*\n * Copyright 2024 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 { wirePropertyV2ToSdkPropertyDefinition } from \"./wirePropertyV2ToSdkPropertyDefinition.js\";\nexport function __UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition(interfaceType, v2) {\n return {\n type: \"interface\",\n apiName: interfaceType.apiName,\n displayName: interfaceType.displayName,\n description: interfaceType.description,\n implements: interfaceType.extendsInterfaces,\n properties: Object.fromEntries(Object.entries(interfaceType.properties).map(([key, value]) => {\n return [key, wirePropertyV2ToSdkPropertyDefinition(value, true)];\n })),\n links: {}\n };\n}","/*\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\nexport function wirePropertyV2ToSdkPrimaryKeyTypeDefinition(input) {\n switch (input.dataType.type) {\n case \"integer\":\n case \"double\":\n case \"string\":\n case \"boolean\":\n case \"byte\":\n case \"long\":\n case \"short\":\n {\n return input.dataType.type;\n }\n case \"date\":\n {\n return \"datetime\";\n }\n case \"timestamp\":\n {\n return \"timestamp\";\n }\n case \"geopoint\":\n case \"geoshape\":\n case \"decimal\":\n case \"attachment\":\n case \"timeseries\":\n case \"array\":\n case \"marking\":\n case \"float\":\n throw new Error(`Type not supported for primaryKey: ${input.dataType.type}`);\n default:\n const _ = input.dataType;\n throw new Error(`Unknown type encountered for primaryKey: ${input.dataType}`);\n }\n}","/*\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 { wirePropertyV2ToSdkPrimaryKeyTypeDefinition } from \"./wirePropertyV2ToSdkPrimaryKeyTypeDefinition.js\";\nimport { wirePropertyV2ToSdkPropertyDefinition } from \"./wirePropertyV2ToSdkPropertyDefinition.js\";\nexport function wireObjectTypeFullMetadataToSdkObjectTypeDefinition(objectTypeWithLink, v2) {\n if (objectTypeWithLink.objectType.properties[objectTypeWithLink.objectType.primaryKey] === undefined) {\n throw new Error(`Primary key ${objectTypeWithLink.objectType.primaryKey} not found in ${objectTypeWithLink.objectType.apiName}`);\n }\n\n // saved ontology.json files may not have this implementsInterfaces2 so we need to handle\n if (objectTypeWithLink.implementsInterfaces2 == null && objectTypeWithLink.implementsInterfaces != null) {\n throw new Error(\"Your ontology.json file is missing the implementsInterfaces2 field. Please regenerate it.\");\n }\n const interfaceMap = objectTypeWithLink.implementsInterfaces2 ? Object.fromEntries(Object.entries(objectTypeWithLink.implementsInterfaces2).map(([interfaceApiName, impl]) => [interfaceApiName, impl.properties])) : {};\n return {\n type: \"object\",\n apiName: objectTypeWithLink.objectType.apiName,\n description: objectTypeWithLink.objectType.description,\n primaryKeyApiName: objectTypeWithLink.objectType.primaryKey,\n primaryKeyType: wirePropertyV2ToSdkPrimaryKeyTypeDefinition(objectTypeWithLink.objectType.properties[objectTypeWithLink.objectType.primaryKey]),\n links: Object.fromEntries(objectTypeWithLink.linkTypes.map(linkType => {\n return [linkType.apiName, {\n multiplicity: linkType.cardinality === \"MANY\",\n targetType: linkType.objectTypeApiName\n }];\n })),\n properties: Object.fromEntries(Object.entries(objectTypeWithLink.objectType.properties).map(([key, value]) => [key, wirePropertyV2ToSdkPropertyDefinition(value, !(v2 && objectTypeWithLink.objectType.primaryKey === key))])),\n spts: objectTypeWithLink.sharedPropertyTypeMapping,\n inverseSpts: invertProps(objectTypeWithLink.sharedPropertyTypeMapping),\n implements: objectTypeWithLink.implementsInterfaces,\n interfaceMap,\n inverseInterfaceMap: Object.fromEntries(Object.entries(interfaceMap).map(([interfaceApiName, props]) => [interfaceApiName, invertProps(props)]))\n };\n}\nfunction invertProps(a) {\n return a ? Object.fromEntries(Object.entries(a).map(([k, v]) => [v, k])) : undefined;\n}","/*\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\nexport function isNullableQueryDataType(input) {\n if (input.type === \"null\") {\n return true;\n }\n if (input.type === \"union\") {\n return input.unionTypes.some(t => isNullableQueryDataType(t));\n }\n return false;\n}","/*\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 { isNullableQueryDataType } from \"./isNullableQueryDataType.js\";\nexport function wireQueryDataTypeToQueryDataTypeDefinition(input) {\n switch (input.type) {\n case \"double\":\n case \"float\":\n case \"integer\":\n case \"long\":\n case \"attachment\":\n case \"boolean\":\n case \"date\":\n case \"string\":\n case \"timestamp\":\n return {\n type: input.type,\n nullable: false\n };\n case \"object\":\n return {\n type: \"object\",\n object: input.objectTypeApiName,\n nullable: false\n };\n case \"objectSet\":\n return {\n type: \"objectSet\",\n objectSet: input.objectTypeApiName,\n nullable: false\n };\n case \"array\":\n return {\n ...wireQueryDataTypeToQueryDataTypeDefinition(input.subType),\n multiplicity: true\n };\n case \"set\":\n return {\n type: \"set\",\n set: wireQueryDataTypeToQueryDataTypeDefinition(input.subType),\n nullable: false\n };\n case \"union\":\n const allowNulls = isNullableQueryDataType(input);\n\n // special case for a union where one half is nullable to skip the union step and just allow nulls directly\n if (allowNulls && input.unionTypes.length === 2) {\n const nonNull = input.unionTypes.find(t => t.type != null);\n if (nonNull) {\n return {\n ...wireQueryDataTypeToQueryDataTypeDefinition(nonNull),\n nullable: true\n };\n }\n }\n return {\n type: \"union\",\n union: input.unionTypes.reduce((acc, t) => {\n if (t.type === \"null\") {\n return acc;\n }\n acc.push(wireQueryDataTypeToQueryDataTypeDefinition(t));\n return acc;\n }, []),\n nullable: allowNulls\n };\n case \"struct\":\n return {\n type: \"struct\",\n struct: Object.fromEntries(input.fields.map(f => [f.name, wireQueryDataTypeToQueryDataTypeDefinition(f.fieldType)])),\n nullable: false\n };\n case \"twoDimensionalAggregation\":\n return {\n type: \"twoDimensionalAggregation\",\n twoDimensionalAggregation: get2DQueryAggregationProps(input),\n nullable: false\n };\n case \"threeDimensionalAggregation\":\n return {\n type: \"threeDimensionalAggregation\",\n threeDimensionalAggregation: get3DQueryAggregationProps(input),\n nullable: false\n };\n case \"null\":\n case \"unsupported\":\n throw new Error(`Accidentally tried to handle QueryDataType.type ${input.type}`);\n default:\n const _ = input;\n throw new Error(`Unsupported QueryDataType.type ${input.type}`);\n }\n}\nfunction get2DQueryAggregationProps(input) {\n if (input.keyType.type === \"range\") {\n return {\n keyType: input.keyType.type,\n keySubtype: input.keyType.subType.type,\n valueType: input.valueType.type\n };\n } else {\n if (guardInvalidKeyTypes(input.keyType)) {\n return {\n keyType: input.keyType.type,\n valueType: input.valueType.type\n };\n }\n throw new Error(`Cannot create 2D aggregation with ${input.keyType.type} as its type`);\n }\n}\nfunction get3DQueryAggregationProps(input) {\n if (input.keyType.type === \"range\") {\n return {\n keyType: input.keyType.type,\n keySubtype: input.keyType.subType.type,\n valueType: get2DQueryAggregationProps(input.valueType)\n };\n } else {\n if (guardInvalidKeyTypes(input.keyType)) {\n return {\n keyType: input.keyType.type,\n valueType: get2DQueryAggregationProps(input.valueType)\n };\n }\n throw new Error(`Cannot create 3D aggregation with ${input.keyType.type} as its type`);\n }\n}\n\n/**\n * Guard against aggregation key types that are allowed by the backend types but are illegal to actually use\n */\nfunction guardInvalidKeyTypes(key) {\n return key.type === \"string\" || key.type === \"boolean\";\n}","/*\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 { wireQueryDataTypeToQueryDataTypeDefinition } from \"./wireQueryDataTypeToQueryDataTypeDefinition.js\";\nexport function wireQueryTypeV2ToSdkQueryDefinition(input) {\n return {\n type: \"query\",\n apiName: input.apiName,\n description: input.description,\n displayName: input.displayName,\n version: input.version,\n parameters: Object.fromEntries(Object.entries(input.parameters).map(([name, parameter]) => [name, wireQueryParameterV2ToQueryParameterDefinition(parameter)])),\n output: wireQueryDataTypeToQueryDataTypeDefinition(input.output)\n };\n}\nexport function wireQueryTypeV2ToSdkQueryDefinitionNoParams(input) {\n return {\n type: \"query\",\n apiName: input.apiName,\n description: input.description,\n displayName: input.displayName,\n version: input.version\n };\n}\nexport function wireQueryParameterV2ToQueryParameterDefinition(parameter) {\n return {\n description: parameter.description,\n ...wireQueryDataTypeToQueryDataTypeDefinition(parameter.dataType)\n };\n}"]}
@@ -0,0 +1,3 @@
1
+ import type { QueryDataType } from "@osdk/internal.foundry.core";
2
+ export declare function isNullableQueryDataType(input: QueryDataType): boolean;
3
+ //# sourceMappingURL=isNullableQueryDataType.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"isNullableQueryDataType.d.ts","sourceRoot":"","sources":["../../src/isNullableQueryDataType.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,6BAA6B,CAAC;AAEjE,wBAAgB,uBAAuB,CAAC,KAAK,EAAE,aAAa,GAAG,OAAO,CAQrE"}
@@ -1,8 +1,8 @@
1
1
  import type { ObjectTypeDefinition } from "@osdk/api";
2
- import type { ObjectTypeFullMetadata } from "@osdk/gateway/types";
2
+ import type { ObjectTypeFullMetadata, PropertyApiName, PropertyV2 } from "@osdk/internal.foundry.core";
3
3
  export declare function wireObjectTypeFullMetadataToSdkObjectTypeDefinition(objectTypeWithLink: ObjectTypeFullMetadata & {
4
4
  objectType: {
5
- properties: Record<string, {
5
+ properties: Record<PropertyApiName, PropertyV2 & {
6
6
  nullable?: boolean;
7
7
  }>;
8
8
  };
@@ -1 +1 @@
1
- {"version":3,"file":"wireObjectTypeFullMetadataToSdkObjectTypeDefinition.d.ts","sourceRoot":"","sources":["../../src/wireObjectTypeFullMetadataToSdkObjectTypeDefinition.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,WAAW,CAAC;AACtD,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,qBAAqB,CAAC;AAIlE,wBAAgB,mDAAmD,CACjE,kBAAkB,EAAE,sBAAsB,GAAG;IAC3C,UAAU,EAAE;QAAE,UAAU,EAAE,MAAM,CAAC,MAAM,EAAE;YAAE,QAAQ,CAAC,EAAE,OAAO,CAAA;SAAE,CAAC,CAAA;KAAE,CAAC;CACpE,EACD,EAAE,EAAE,OAAO,GACV,oBAAoB,CAAC,GAAG,CAAC,CAkE3B"}
1
+ {"version":3,"file":"wireObjectTypeFullMetadataToSdkObjectTypeDefinition.d.ts","sourceRoot":"","sources":["../../src/wireObjectTypeFullMetadataToSdkObjectTypeDefinition.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,WAAW,CAAC;AACtD,OAAO,KAAK,EACV,sBAAsB,EACtB,eAAe,EACf,UAAU,EACX,MAAM,6BAA6B,CAAC;AAIrC,wBAAgB,mDAAmD,CACjE,kBAAkB,EAAE,sBAAsB,GAAG;IAC3C,UAAU,EAAE;QACV,UAAU,EAAE,MAAM,CAAC,eAAe,EAAE,UAAU,GAAG;YAAE,QAAQ,CAAC,EAAE,OAAO,CAAA;SAAE,CAAC,CAAC;KAC1E,CAAC;CACH,EACD,EAAE,EAAE,OAAO,GACV,oBAAoB,CAAC,GAAG,CAAC,CAgE3B"}
@@ -1,4 +1,4 @@
1
1
  import type { PrimaryKeyTypes } from "@osdk/api";
2
- import type { PropertyV2 } from "@osdk/gateway/types";
2
+ import type { PropertyV2 } from "@osdk/internal.foundry.core";
3
3
  export declare function wirePropertyV2ToSdkPrimaryKeyTypeDefinition(input: PropertyV2): PrimaryKeyTypes;
4
4
  //# sourceMappingURL=wirePropertyV2ToSdkPrimaryKeyTypeDefinition.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"wirePropertyV2ToSdkPrimaryKeyTypeDefinition.d.ts","sourceRoot":"","sources":["../../src/wirePropertyV2ToSdkPrimaryKeyTypeDefinition.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,WAAW,CAAC;AACjD,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAEtD,wBAAgB,2CAA2C,CACzD,KAAK,EAAE,UAAU,GAChB,eAAe,CAkCjB"}
1
+ {"version":3,"file":"wirePropertyV2ToSdkPrimaryKeyTypeDefinition.d.ts","sourceRoot":"","sources":["../../src/wirePropertyV2ToSdkPrimaryKeyTypeDefinition.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,WAAW,CAAC;AACjD,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,6BAA6B,CAAC;AAE9D,wBAAgB,2CAA2C,CACzD,KAAK,EAAE,UAAU,GAChB,eAAe,CAkCjB"}
@@ -1,5 +1,5 @@
1
1
  import type { ObjectTypePropertyDefinition } from "@osdk/api";
2
- import type { PropertyV2, SharedPropertyType } from "@osdk/gateway/types";
2
+ import type { PropertyV2, SharedPropertyType } from "@osdk/internal.foundry.core";
3
3
  export declare function wirePropertyV2ToSdkPropertyDefinition(input: (PropertyV2 | SharedPropertyType) & {
4
4
  nullable?: boolean;
5
5
  }, isNullable?: boolean): ObjectTypePropertyDefinition;
@@ -1 +1 @@
1
- {"version":3,"file":"wirePropertyV2ToSdkPropertyDefinition.d.ts","sourceRoot":"","sources":["../../src/wirePropertyV2ToSdkPropertyDefinition.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,EACV,4BAA4B,EAE7B,MAAM,WAAW,CAAC;AACnB,OAAO,KAAK,EAEV,UAAU,EACV,kBAAkB,EACnB,MAAM,qBAAqB,CAAC;AAE7B,wBAAgB,qCAAqC,CACnD,KAAK,EAAE,CAAC,UAAU,GAAG,kBAAkB,CAAC,GAAG;IAAE,QAAQ,CAAC,EAAE,OAAO,CAAA;CAAE,EACjE,UAAU,GAAE,OAAc,GACzB,4BAA4B,CAwC9B"}
1
+ {"version":3,"file":"wirePropertyV2ToSdkPropertyDefinition.d.ts","sourceRoot":"","sources":["../../src/wirePropertyV2ToSdkPropertyDefinition.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,EACV,4BAA4B,EAE7B,MAAM,WAAW,CAAC;AACnB,OAAO,KAAK,EAEV,UAAU,EACV,kBAAkB,EACnB,MAAM,6BAA6B,CAAC;AAErC,wBAAgB,qCAAqC,CACnD,KAAK,EAAE,CAAC,UAAU,GAAG,kBAAkB,CAAC,GAAG;IAAE,QAAQ,CAAC,EAAE,OAAO,CAAA;CAAE,EACjE,UAAU,GAAE,OAAc,GACzB,4BAA4B,CAwC9B"}
@@ -0,0 +1,4 @@
1
+ import type { QueryDataTypeDefinition } from "@osdk/api";
2
+ import type { QueryDataType } from "@osdk/internal.foundry.core";
3
+ export declare function wireQueryDataTypeToQueryDataTypeDefinition<K extends string>(input: QueryDataType): QueryDataTypeDefinition<K, any>;
4
+ //# sourceMappingURL=wireQueryDataTypeToQueryDataTypeDefinition.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"wireQueryDataTypeToQueryDataTypeDefinition.d.ts","sourceRoot":"","sources":["../../src/wireQueryDataTypeToQueryDataTypeDefinition.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,EACV,uBAAuB,EAGxB,MAAM,WAAW,CAAC;AACnB,OAAO,KAAK,EAEV,aAAa,EAGd,MAAM,6BAA6B,CAAC;AAGrC,wBAAgB,0CAA0C,CACxD,CAAC,SAAS,MAAM,EAEhB,KAAK,EAAE,aAAa,GACnB,uBAAuB,CAAC,CAAC,EAAE,GAAG,CAAC,CAuGjC"}
@@ -0,0 +1,12 @@
1
+ import type { QueryDefinition, QueryParameterDefinition } from "@osdk/api";
2
+ import type { QueryParameterV2, QueryTypeV2 } from "@osdk/internal.foundry.core";
3
+ export declare function wireQueryTypeV2ToSdkQueryDefinition(input: QueryTypeV2): QueryDefinition<any, any>;
4
+ export declare function wireQueryTypeV2ToSdkQueryDefinitionNoParams(input: QueryTypeV2): {
5
+ type: string;
6
+ apiName: import("@osdk/internal.foundry.core").QueryApiName;
7
+ description: string | undefined;
8
+ displayName: import("@osdk/internal.foundry.core").DisplayName | undefined;
9
+ version: import("@osdk/internal.foundry.core").FunctionVersion;
10
+ };
11
+ export declare function wireQueryParameterV2ToQueryParameterDefinition(parameter: QueryParameterV2): QueryParameterDefinition<any>;
12
+ //# sourceMappingURL=wireQueryTypeV2ToSdkQueryDefinition.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"wireQueryTypeV2ToSdkQueryDefinition.d.ts","sourceRoot":"","sources":["../../src/wireQueryTypeV2ToSdkQueryDefinition.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,EAAE,eAAe,EAAE,wBAAwB,EAAE,MAAM,WAAW,CAAC;AAC3E,OAAO,KAAK,EACV,gBAAgB,EAChB,WAAW,EACZ,MAAM,6BAA6B,CAAC;AAKrC,wBAAgB,mCAAmC,CACjD,KAAK,EAAE,WAAW,GACjB,eAAe,CAAC,GAAG,EAAE,GAAG,CAAC,CAc3B;AAED,wBAAgB,2CAA2C,CACzD,KAAK,EAAE,WAAW;;;;;;EASnB;AAED,wBAAgB,8CAA8C,CAC5D,SAAS,EAAE,gBAAgB,GAC1B,wBAAwB,CAAC,GAAG,CAAC,CAK/B"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@osdk/generator-converters",
3
- "version": "0.8.0-beta.1",
3
+ "version": "2.0.0-beta.10",
4
4
  "description": "",
5
5
  "access": "public",
6
6
  "license": "Apache-2.0",
@@ -10,24 +10,22 @@
10
10
  },
11
11
  "exports": {
12
12
  ".": {
13
- "require": "./build/cjs/index.cjs",
14
13
  "browser": "./build/browser/index.js",
15
14
  "import": "./build/esm/index.js"
16
15
  },
17
16
  "./*": {
18
- "require": "./build/cjs/public/*.cjs",
19
17
  "browser": "./build/browser/public/*.js",
20
18
  "import": "./build/esm/public/*.js"
21
19
  }
22
20
  },
23
21
  "dependencies": {
24
- "@osdk/api": "~1.10.0-beta.1",
25
- "@osdk/gateway": "~2.4.0"
22
+ "@osdk/api": "~2.0.0-beta.10"
26
23
  },
27
24
  "devDependencies": {
28
25
  "ts-expect": "^1.3.0",
29
26
  "typescript": "^5.5.4",
30
27
  "vitest": "^2.0.4",
28
+ "@osdk/internal.foundry.core": "~0.2.0-beta.7",
31
29
  "@osdk/monorepo.api-extractor": "~0.0.0",
32
30
  "@osdk/monorepo.tsconfig": "~0.0.0",
33
31
  "@osdk/monorepo.tsup": "~0.0.0"
@@ -45,12 +43,11 @@
45
43
  "templates",
46
44
  "*.d.ts"
47
45
  ],
48
- "main": "./build/cjs/index.cjs",
49
46
  "module": "./build/esm/index.js",
50
- "types": "./build/cjs/index.d.cts",
47
+ "types": "./build/esm/index.d.ts",
51
48
  "type": "module",
52
49
  "scripts": {
53
- "check-attw": "monorepo.tool.attw both",
50
+ "check-attw": "monorepo.tool.attw esm",
54
51
  "check-spelling": "cspell --quiet .",
55
52
  "clean": "rm -rf lib dist types build tsconfig.tsbuildinfo",
56
53
  "fix-lint": "eslint . --fix && dprint fmt --config $(find-up dprint.json)",
@@ -59,6 +56,6 @@
59
56
  "test:watch": "vitest",
60
57
  "transpile": "monorepo.tool.transpile",
61
58
  "transpileWatch": "tsup --watch",
62
- "typecheck": "monorepo.tool.typecheck both"
59
+ "typecheck": "monorepo.tool.typecheck esm"
63
60
  }
64
61
  }
@@ -1,4 +0,0 @@
1
- import type { InterfaceDefinition } from "@osdk/api";
2
- import type { InterfaceType } from "@osdk/gateway/types";
3
- export declare function __UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition(interfaceType: InterfaceType, v2: boolean): InterfaceDefinition<any, any>;
4
- //# sourceMappingURL=__UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"__UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition.d.ts","sourceRoot":"","sources":["../../src/__UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,WAAW,CAAC;AACrD,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAGzD,wBAAgB,mDAAmD,CACjE,aAAa,EAAE,aAAa,EAC5B,EAAE,EAAE,OAAO,GACV,mBAAmB,CAAC,GAAG,EAAE,GAAG,CAAC,CAsB/B"}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=empty.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"empty.test.d.ts","sourceRoot":"","sources":["../../src/empty.test.ts"],"names":[],"mappings":""}
@@ -1,159 +0,0 @@
1
- 'use strict';
2
-
3
- // src/wirePropertyV2ToSdkPropertyDefinition.ts
4
- function wirePropertyV2ToSdkPropertyDefinition(input, isNullable = true) {
5
- switch (input.dataType.type) {
6
- case "integer":
7
- case "string":
8
- case "byte":
9
- case "decimal":
10
- case "double":
11
- case "float":
12
- case "long":
13
- case "short":
14
- case "boolean":
15
- case "date":
16
- case "attachment":
17
- case "geopoint":
18
- case "geoshape":
19
- case "timestamp":
20
- case "timeseries":
21
- case "marking":
22
- return {
23
- displayName: input.displayName,
24
- multiplicity: false,
25
- description: input.description,
26
- type: objectPropertyTypeToSdkPropertyDefinition(input.dataType),
27
- nullable: input.nullable == null ? isNullable : input.nullable
28
- };
29
- case "array": {
30
- return {
31
- displayName: input.displayName,
32
- multiplicity: true,
33
- description: input.description,
34
- type: objectPropertyTypeToSdkPropertyDefinition(input.dataType),
35
- nullable: true
36
- };
37
- }
38
- default:
39
- input.dataType;
40
- throw new Error(`Unexpected data type ${JSON.stringify(input.dataType)}`);
41
- }
42
- }
43
- function objectPropertyTypeToSdkPropertyDefinition(propertyType) {
44
- switch (propertyType.type) {
45
- case "integer":
46
- case "string":
47
- case "byte":
48
- case "decimal":
49
- case "double":
50
- case "float":
51
- case "long":
52
- case "short":
53
- case "boolean":
54
- case "attachment":
55
- case "geopoint":
56
- case "geoshape":
57
- case "timestamp":
58
- case "marking":
59
- return propertyType.type;
60
- case "date":
61
- return "datetime";
62
- case "array":
63
- return objectPropertyTypeToSdkPropertyDefinition(propertyType.subType);
64
- case "timeseries":
65
- if (propertyType.itemType.type === "string") {
66
- return "stringTimeseries";
67
- }
68
- return "numericTimeseries";
69
- default:
70
- throw new Error(`Unexpected data type ${JSON.stringify(propertyType)}`);
71
- }
72
- }
73
-
74
- // src/__UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition.ts
75
- function __UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition(interfaceType, v2) {
76
- return {
77
- type: "interface",
78
- apiName: interfaceType.apiName,
79
- displayName: interfaceType.displayName,
80
- description: interfaceType.description,
81
- implements: interfaceType.extendsInterfaces,
82
- properties: Object.fromEntries(Object.entries(interfaceType.properties).map(([key, value]) => {
83
- return [key, wirePropertyV2ToSdkPropertyDefinition(value, true)];
84
- })),
85
- links: {}
86
- };
87
- }
88
-
89
- // src/wirePropertyV2ToSdkPrimaryKeyTypeDefinition.ts
90
- function wirePropertyV2ToSdkPrimaryKeyTypeDefinition(input) {
91
- switch (input.dataType.type) {
92
- case "integer":
93
- case "double":
94
- case "string":
95
- case "boolean":
96
- case "byte":
97
- case "long":
98
- case "short": {
99
- return input.dataType.type;
100
- }
101
- case "date": {
102
- return "datetime";
103
- }
104
- case "timestamp": {
105
- return "timestamp";
106
- }
107
- case "geopoint":
108
- case "geoshape":
109
- case "decimal":
110
- case "attachment":
111
- case "timeseries":
112
- case "array":
113
- case "marking":
114
- case "float":
115
- throw new Error(`Type not supported for primaryKey: ${input.dataType.type}`);
116
- default:
117
- input.dataType;
118
- throw new Error(`Unknown type encountered for primaryKey: ${input.dataType}`);
119
- }
120
- }
121
-
122
- // src/wireObjectTypeFullMetadataToSdkObjectTypeDefinition.ts
123
- function wireObjectTypeFullMetadataToSdkObjectTypeDefinition(objectTypeWithLink, v2) {
124
- if (objectTypeWithLink.objectType.properties[objectTypeWithLink.objectType.primaryKey] === void 0) {
125
- throw new Error(`Primary key ${objectTypeWithLink.objectType.primaryKey} not found in ${objectTypeWithLink.objectType.apiName}`);
126
- }
127
- if (objectTypeWithLink.implementsInterfaces2 == null && objectTypeWithLink.implementsInterfaces != null) {
128
- throw new Error("Your ontology.json file is missing the implementsInterfaces2 field. Please regenerate it.");
129
- }
130
- const interfaceMap = objectTypeWithLink.implementsInterfaces2 ? Object.fromEntries(Object.entries(objectTypeWithLink.implementsInterfaces2).map(([interfaceApiName, impl]) => [interfaceApiName, impl.properties])) : void 0;
131
- return {
132
- type: "object",
133
- apiName: objectTypeWithLink.objectType.apiName,
134
- description: objectTypeWithLink.objectType.description,
135
- primaryKeyApiName: objectTypeWithLink.objectType.primaryKey,
136
- primaryKeyType: wirePropertyV2ToSdkPrimaryKeyTypeDefinition(objectTypeWithLink.objectType.properties[objectTypeWithLink.objectType.primaryKey]),
137
- links: Object.fromEntries(objectTypeWithLink.linkTypes.map((linkType) => {
138
- return [linkType.apiName, {
139
- multiplicity: linkType.cardinality === "MANY",
140
- targetType: linkType.objectTypeApiName
141
- }];
142
- })),
143
- properties: Object.fromEntries(Object.entries(objectTypeWithLink.objectType.properties).map(([key, value]) => [key, wirePropertyV2ToSdkPropertyDefinition(value, !(v2 && objectTypeWithLink.objectType.primaryKey === key))])),
144
- spts: objectTypeWithLink.sharedPropertyTypeMapping,
145
- inverseSpts: invertProps(objectTypeWithLink.sharedPropertyTypeMapping),
146
- implements: objectTypeWithLink.implementsInterfaces,
147
- interfaceMap,
148
- inverseInterfaceMap: interfaceMap ? Object.fromEntries(Object.entries(interfaceMap).map(([interfaceApiName, props]) => [interfaceApiName, invertProps(props)])) : void 0
149
- };
150
- }
151
- function invertProps(a) {
152
- return a ? Object.fromEntries(Object.entries(a).map(([k, v]) => [v, k])) : void 0;
153
- }
154
-
155
- exports.__UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition = __UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition;
156
- exports.wireObjectTypeFullMetadataToSdkObjectTypeDefinition = wireObjectTypeFullMetadataToSdkObjectTypeDefinition;
157
- exports.wirePropertyV2ToSdkPropertyDefinition = wirePropertyV2ToSdkPropertyDefinition;
158
- //# sourceMappingURL=index.cjs.map
159
- //# sourceMappingURL=index.cjs.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../../src/wirePropertyV2ToSdkPropertyDefinition.ts","../../src/__UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition.ts","../../src/wirePropertyV2ToSdkPrimaryKeyTypeDefinition.ts","../../src/wireObjectTypeFullMetadataToSdkObjectTypeDefinition.ts"],"names":[],"mappings":"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","file":"index.cjs","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\nexport function wirePropertyV2ToSdkPropertyDefinition(input, isNullable = true) {\n switch (input.dataType.type) {\n case \"integer\":\n case \"string\":\n case \"byte\":\n case \"decimal\":\n case \"double\":\n case \"float\":\n case \"long\":\n case \"short\":\n case \"boolean\":\n case \"date\":\n case \"attachment\":\n case \"geopoint\":\n case \"geoshape\":\n case \"timestamp\":\n case \"timeseries\":\n case \"marking\":\n return {\n displayName: input.displayName,\n multiplicity: false,\n description: input.description,\n type: objectPropertyTypeToSdkPropertyDefinition(input.dataType),\n nullable: input.nullable == null ? isNullable : input.nullable\n };\n case \"array\":\n {\n return {\n displayName: input.displayName,\n multiplicity: true,\n description: input.description,\n type: objectPropertyTypeToSdkPropertyDefinition(input.dataType),\n nullable: true\n };\n }\n default:\n const _ = input.dataType;\n throw new Error(`Unexpected data type ${JSON.stringify(input.dataType)}`);\n }\n}\nfunction objectPropertyTypeToSdkPropertyDefinition(propertyType) {\n switch (propertyType.type) {\n case \"integer\":\n case \"string\":\n case \"byte\":\n case \"decimal\":\n case \"double\":\n case \"float\":\n case \"long\":\n case \"short\":\n case \"boolean\":\n case \"attachment\":\n case \"geopoint\":\n case \"geoshape\":\n case \"timestamp\":\n case \"marking\":\n return propertyType.type;\n case \"date\":\n return \"datetime\";\n case \"array\":\n return objectPropertyTypeToSdkPropertyDefinition(propertyType.subType);\n case \"timeseries\":\n if (propertyType.itemType.type === \"string\") {\n return \"stringTimeseries\";\n }\n return \"numericTimeseries\";\n default:\n const _ = propertyType;\n throw new Error(`Unexpected data type ${JSON.stringify(propertyType)}`);\n }\n}","/*\n * Copyright 2024 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 { wirePropertyV2ToSdkPropertyDefinition } from \"./wirePropertyV2ToSdkPropertyDefinition.js\";\nexport function __UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition(interfaceType, v2) {\n return {\n type: \"interface\",\n apiName: interfaceType.apiName,\n displayName: interfaceType.displayName,\n description: interfaceType.description,\n implements: interfaceType.extendsInterfaces,\n properties: Object.fromEntries(Object.entries(interfaceType.properties).map(([key, value]) => {\n return [key, wirePropertyV2ToSdkPropertyDefinition(value, true)];\n })),\n links: {}\n };\n}","/*\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\nexport function wirePropertyV2ToSdkPrimaryKeyTypeDefinition(input) {\n switch (input.dataType.type) {\n case \"integer\":\n case \"double\":\n case \"string\":\n case \"boolean\":\n case \"byte\":\n case \"long\":\n case \"short\":\n {\n return input.dataType.type;\n }\n case \"date\":\n {\n return \"datetime\";\n }\n case \"timestamp\":\n {\n return \"timestamp\";\n }\n case \"geopoint\":\n case \"geoshape\":\n case \"decimal\":\n case \"attachment\":\n case \"timeseries\":\n case \"array\":\n case \"marking\":\n case \"float\":\n throw new Error(`Type not supported for primaryKey: ${input.dataType.type}`);\n default:\n const _ = input.dataType;\n throw new Error(`Unknown type encountered for primaryKey: ${input.dataType}`);\n }\n}","/*\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 { wirePropertyV2ToSdkPrimaryKeyTypeDefinition } from \"./wirePropertyV2ToSdkPrimaryKeyTypeDefinition.js\";\nimport { wirePropertyV2ToSdkPropertyDefinition } from \"./wirePropertyV2ToSdkPropertyDefinition.js\";\nexport function wireObjectTypeFullMetadataToSdkObjectTypeDefinition(objectTypeWithLink, v2) {\n if (objectTypeWithLink.objectType.properties[objectTypeWithLink.objectType.primaryKey] === undefined) {\n throw new Error(`Primary key ${objectTypeWithLink.objectType.primaryKey} not found in ${objectTypeWithLink.objectType.apiName}`);\n }\n\n // saved ontology.json files may not have this implementsInterfaces2 so we need to handle\n if (objectTypeWithLink.implementsInterfaces2 == null && objectTypeWithLink.implementsInterfaces != null) {\n throw new Error(\"Your ontology.json file is missing the implementsInterfaces2 field. Please regenerate it.\");\n }\n const interfaceMap = objectTypeWithLink.implementsInterfaces2 ? Object.fromEntries(Object.entries(objectTypeWithLink.implementsInterfaces2).map(([interfaceApiName, impl]) => [interfaceApiName, impl.properties])) : undefined;\n return {\n type: \"object\",\n apiName: objectTypeWithLink.objectType.apiName,\n description: objectTypeWithLink.objectType.description,\n primaryKeyApiName: objectTypeWithLink.objectType.primaryKey,\n primaryKeyType: wirePropertyV2ToSdkPrimaryKeyTypeDefinition(objectTypeWithLink.objectType.properties[objectTypeWithLink.objectType.primaryKey]),\n links: Object.fromEntries(objectTypeWithLink.linkTypes.map(linkType => {\n return [linkType.apiName, {\n multiplicity: linkType.cardinality === \"MANY\",\n targetType: linkType.objectTypeApiName\n }];\n })),\n properties: Object.fromEntries(Object.entries(objectTypeWithLink.objectType.properties).map(([key, value]) => [key, wirePropertyV2ToSdkPropertyDefinition(value, !(v2 && objectTypeWithLink.objectType.primaryKey === key))])),\n spts: objectTypeWithLink.sharedPropertyTypeMapping,\n inverseSpts: invertProps(objectTypeWithLink.sharedPropertyTypeMapping),\n implements: objectTypeWithLink.implementsInterfaces,\n interfaceMap,\n inverseInterfaceMap: interfaceMap ? Object.fromEntries(Object.entries(interfaceMap).map(([interfaceApiName, props]) => [interfaceApiName, invertProps(props)])) : undefined\n };\n}\nfunction invertProps(a) {\n return a ? Object.fromEntries(Object.entries(a).map(([k, v]) => [v, k])) : undefined;\n}"]}
@@ -1,4 +0,0 @@
1
- export { __UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition } from "./__UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition.cjs";
2
- export { wireObjectTypeFullMetadataToSdkObjectTypeDefinition } from "./wireObjectTypeFullMetadataToSdkObjectTypeDefinition.cjs";
3
- export { wirePropertyV2ToSdkPropertyDefinition } from "./wirePropertyV2ToSdkPropertyDefinition.cjs";
4
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAE,mDAAmD,EAAE,MAAM,0DAA0D,CAAC;AAC/H,OAAO,EAAE,mDAAmD,EAAE,MAAM,0DAA0D,CAAC;AAC/H,OAAO,EAAE,qCAAqC,EAAE,MAAM,4CAA4C,CAAC"}
@@ -1,10 +0,0 @@
1
- import type { ObjectTypeDefinition } from "@osdk/api";
2
- import type { ObjectTypeFullMetadata } from "@osdk/gateway/types";
3
- export declare function wireObjectTypeFullMetadataToSdkObjectTypeDefinition(objectTypeWithLink: ObjectTypeFullMetadata & {
4
- objectType: {
5
- properties: Record<string, {
6
- nullable?: boolean;
7
- }>;
8
- };
9
- }, v2: boolean): ObjectTypeDefinition<any>;
10
- //# sourceMappingURL=wireObjectTypeFullMetadataToSdkObjectTypeDefinition.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"wireObjectTypeFullMetadataToSdkObjectTypeDefinition.d.ts","sourceRoot":"","sources":["../../src/wireObjectTypeFullMetadataToSdkObjectTypeDefinition.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,WAAW,CAAC;AACtD,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,qBAAqB,CAAC;AAIlE,wBAAgB,mDAAmD,CACjE,kBAAkB,EAAE,sBAAsB,GAAG;IAC3C,UAAU,EAAE;QAAE,UAAU,EAAE,MAAM,CAAC,MAAM,EAAE;YAAE,QAAQ,CAAC,EAAE,OAAO,CAAA;SAAE,CAAC,CAAA;KAAE,CAAC;CACpE,EACD,EAAE,EAAE,OAAO,GACV,oBAAoB,CAAC,GAAG,CAAC,CAkE3B"}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=wireObjectTypeFullMetadataToSdkObjectTypeDefinition.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"wireObjectTypeFullMetadataToSdkObjectTypeDefinition.test.d.ts","sourceRoot":"","sources":["../../src/wireObjectTypeFullMetadataToSdkObjectTypeDefinition.test.ts"],"names":[],"mappings":""}
@@ -1,4 +0,0 @@
1
- import type { PrimaryKeyTypes } from "@osdk/api";
2
- import type { PropertyV2 } from "@osdk/gateway/types";
3
- export declare function wirePropertyV2ToSdkPrimaryKeyTypeDefinition(input: PropertyV2): PrimaryKeyTypes;
4
- //# sourceMappingURL=wirePropertyV2ToSdkPrimaryKeyTypeDefinition.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"wirePropertyV2ToSdkPrimaryKeyTypeDefinition.d.ts","sourceRoot":"","sources":["../../src/wirePropertyV2ToSdkPrimaryKeyTypeDefinition.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,WAAW,CAAC;AACjD,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAEtD,wBAAgB,2CAA2C,CACzD,KAAK,EAAE,UAAU,GAChB,eAAe,CAkCjB"}
@@ -1,6 +0,0 @@
1
- import type { ObjectTypePropertyDefinition } from "@osdk/api";
2
- import type { PropertyV2, SharedPropertyType } from "@osdk/gateway/types";
3
- export declare function wirePropertyV2ToSdkPropertyDefinition(input: (PropertyV2 | SharedPropertyType) & {
4
- nullable?: boolean;
5
- }, isNullable?: boolean): ObjectTypePropertyDefinition;
6
- //# sourceMappingURL=wirePropertyV2ToSdkPropertyDefinition.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"wirePropertyV2ToSdkPropertyDefinition.d.ts","sourceRoot":"","sources":["../../src/wirePropertyV2ToSdkPropertyDefinition.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,EACV,4BAA4B,EAE7B,MAAM,WAAW,CAAC;AACnB,OAAO,KAAK,EAEV,UAAU,EACV,kBAAkB,EACnB,MAAM,qBAAqB,CAAC;AAE7B,wBAAgB,qCAAqC,CACnD,KAAK,EAAE,CAAC,UAAU,GAAG,kBAAkB,CAAC,GAAG;IAAE,QAAQ,CAAC,EAAE,OAAO,CAAA;CAAE,EACjE,UAAU,GAAE,OAAc,GACzB,4BAA4B,CAwC9B"}