@osdk/maker 0.13.0-beta.4 → 0.13.0-beta.6

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 (50) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/build/browser/api/defineAction.js +15 -13
  3. package/build/browser/api/defineAction.js.map +1 -1
  4. package/build/browser/api/defineOntology.js +32 -108
  5. package/build/browser/api/defineOntology.js.map +1 -1
  6. package/build/browser/api/defineSpt.js.map +1 -1
  7. package/build/browser/api/defineValueType.js +2 -1
  8. package/build/browser/api/defineValueType.js.map +1 -1
  9. package/build/browser/api/markingconstraint.test.js +3 -3
  10. package/build/browser/api/markingconstraint.test.js.map +1 -1
  11. package/build/browser/api/objectStatus.test.js +4 -4
  12. package/build/browser/api/objectStatus.test.js.map +1 -1
  13. package/build/browser/api/overall.test.js +607 -271
  14. package/build/browser/api/overall.test.js.map +1 -1
  15. package/build/browser/api/propertyConversionUtils.js +3 -1
  16. package/build/browser/api/propertyConversionUtils.js.map +1 -1
  17. package/build/browser/api/types.js.map +1 -1
  18. package/build/browser/cli/main.js +11 -5
  19. package/build/browser/cli/main.js.map +1 -1
  20. package/build/cjs/index.cjs +64 -129
  21. package/build/cjs/index.cjs.map +1 -1
  22. package/build/cjs/index.d.cts +8 -10
  23. package/build/esm/api/defineAction.js +15 -13
  24. package/build/esm/api/defineAction.js.map +1 -1
  25. package/build/esm/api/defineOntology.js +32 -108
  26. package/build/esm/api/defineOntology.js.map +1 -1
  27. package/build/esm/api/defineSpt.js.map +1 -1
  28. package/build/esm/api/defineValueType.js +2 -1
  29. package/build/esm/api/defineValueType.js.map +1 -1
  30. package/build/esm/api/markingconstraint.test.js +3 -3
  31. package/build/esm/api/markingconstraint.test.js.map +1 -1
  32. package/build/esm/api/objectStatus.test.js +4 -4
  33. package/build/esm/api/objectStatus.test.js.map +1 -1
  34. package/build/esm/api/overall.test.js +607 -271
  35. package/build/esm/api/overall.test.js.map +1 -1
  36. package/build/esm/api/propertyConversionUtils.js +3 -1
  37. package/build/esm/api/propertyConversionUtils.js.map +1 -1
  38. package/build/esm/api/types.js.map +1 -1
  39. package/build/esm/cli/main.js +11 -5
  40. package/build/esm/cli/main.js.map +1 -1
  41. package/build/types/api/defineAction.d.ts.map +1 -1
  42. package/build/types/api/defineOntology.d.ts +1 -6
  43. package/build/types/api/defineOntology.d.ts.map +1 -1
  44. package/build/types/api/defineSpt.d.ts +2 -2
  45. package/build/types/api/defineSpt.d.ts.map +1 -1
  46. package/build/types/api/propertyConversionUtils.d.ts +2 -2
  47. package/build/types/api/propertyConversionUtils.d.ts.map +1 -1
  48. package/build/types/api/types.d.ts +6 -14
  49. package/build/types/api/types.d.ts.map +1 -1
  50. package/package.json +9 -9
@@ -36,7 +36,9 @@ export function getPropertyTypeName(type) {
36
36
  export function convertValueType(valueType) {
37
37
  return {
38
38
  apiName: valueType.apiName,
39
- version: valueType.version
39
+ version: valueType.version,
40
+ packageNamespace: valueType.packageNamespace,
41
+ displayMetadata: valueType.displayMetadata
40
42
  };
41
43
  }
42
44
  export function convertValueTypeDataConstraints(dataConstraints) {
@@ -1 +1 @@
1
- {"version":3,"file":"propertyConversionUtils.js","names":["invariant","defaultTypeClasses","kind","name","shouldNotHaveRenderHints","type","includes","getPropertyTypeName","hasRenderHints","typeClasses","some","tc","toLowerCase","convertValueType","valueType","apiName","version","convertValueTypeDataConstraints","dataConstraints","length","undefined","propertyTypeConstraints","map","constraint","constraints","dataConstraintToPropertyTypeDataConstraint","failureMessage","dc","Error","struct","elementConstraints","Object","fromEntries","entries","field","convertDataConstraintToDataConstraints","convertNullabilityToDataConstraint","prop","nullability","nullabilityV2","noEmptyCollections","noNulls","process","env","NODE_ENV","convertType","marking","markingType","structFields","Array","key","structDefinition","fieldTypeDefinition","displayMetadata","displayName","description","aliases","fieldType","push","analyzerOverride","enableAsciiFolding","isLongText","supportsEfficientLeadingWildcard","supportsExactMatching","geohash","precision","scale","mediaReference","geotimeSeriesReference","distributeTypeHelper"],"sources":["propertyConversionUtils.ts"],"sourcesContent":["/*\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 type {\n DataConstraint,\n DataConstraints,\n OntologyIrStructFieldType,\n OntologyIrType,\n PropertyTypeDataConstraints,\n PropertyTypeDataConstraints_array,\n PropertyTypeDataConstraints_boolean,\n PropertyTypeDataConstraints_date,\n PropertyTypeDataConstraints_decimal,\n PropertyTypeDataConstraints_double,\n PropertyTypeDataConstraints_float,\n PropertyTypeDataConstraints_integer,\n PropertyTypeDataConstraints_long,\n PropertyTypeDataConstraints_short,\n PropertyTypeDataConstraints_string,\n PropertyTypeDataConstraints_struct,\n PropertyTypeDataConstraints_timestamp,\n PropertyTypeDataConstraintsWrapper,\n ValueTypeApiNameReference,\n ValueTypeDataConstraint,\n} from \"@osdk/client.unstable\";\nimport invariant from \"tiny-invariant\";\nimport type {\n Nullability,\n PropertyTypeType,\n TypeClass,\n ValueTypeDefinitionVersion,\n} from \"./types.js\";\n\nexport const defaultTypeClasses: TypeClass[] = [{\n kind: \"render_hint\",\n name: \"SELECTABLE\",\n}, { kind: \"render_hint\", name: \"SORTABLE\" }];\n\n// ExperimentalTimeDependentV1 and Attachment types should be included here once supported\nexport function shouldNotHaveRenderHints(type: PropertyTypeType): boolean {\n return [\"struct\", \"mediaReference\", \"geotimeSeries\"].includes(\n getPropertyTypeName(type),\n );\n}\n\nexport function hasRenderHints(typeClasses: TypeClass[] | undefined): boolean {\n return (typeClasses ?? []).some(tc =>\n tc.kind.toLowerCase() === \"render_hint\"\n );\n}\n\nexport function getPropertyTypeName(type: PropertyTypeType): string {\n return typeof type === \"object\" ? type.type : type;\n}\n\nexport function convertValueType(\n valueType: ValueTypeDefinitionVersion,\n): ValueTypeApiNameReference {\n return {\n apiName: valueType.apiName,\n version: valueType.version,\n };\n}\n\nexport function convertValueTypeDataConstraints(\n dataConstraints: ValueTypeDataConstraint[],\n): DataConstraints | undefined {\n if (dataConstraints.length === 0) {\n return undefined;\n }\n\n const propertyTypeConstraints: PropertyTypeDataConstraintsWrapper[] =\n dataConstraints.map(\n (constraint): PropertyTypeDataConstraintsWrapper => ({\n constraints: dataConstraintToPropertyTypeDataConstraint(\n constraint.constraint.constraint,\n ),\n failureMessage: constraint.constraint.failureMessage,\n }),\n );\n\n return {\n propertyTypeConstraints,\n };\n}\n\nexport function dataConstraintToPropertyTypeDataConstraint(\n dc: DataConstraint,\n): PropertyTypeDataConstraints {\n switch (dc.type) {\n case \"array\":\n return { ...dc } as PropertyTypeDataConstraints_array;\n\n case \"boolean\":\n return { ...dc } as PropertyTypeDataConstraints_boolean;\n\n case \"binary\":\n throw new Error(\"Binary type constraints are not supported\");\n\n case \"date\":\n return { ...dc } as PropertyTypeDataConstraints_date;\n\n case \"decimal\":\n return { ...dc } as PropertyTypeDataConstraints_decimal;\n\n case \"double\":\n return { ...dc } as PropertyTypeDataConstraints_double;\n\n case \"float\":\n return { ...dc } as PropertyTypeDataConstraints_float;\n\n case \"integer\":\n return { ...dc } as PropertyTypeDataConstraints_integer;\n\n case \"long\":\n return { ...dc } as PropertyTypeDataConstraints_long;\n\n case \"map\":\n throw new Error(\"Map type constraints are not supported\");\n\n case \"nullable\":\n throw new Error(\"Nullable constraints are not supported\");\n\n case \"short\":\n return { ...dc } as PropertyTypeDataConstraints_short;\n\n case \"string\":\n return { ...dc } as PropertyTypeDataConstraints_string;\n\n case \"struct\":\n return {\n type: \"struct\",\n struct: {\n elementConstraints: Object.fromEntries(\n Object.entries(dc.struct.elementConstraints).map((\n [field, constraint],\n ) => [\n field,\n convertDataConstraintToDataConstraints(constraint),\n ]),\n ),\n },\n } as PropertyTypeDataConstraints_struct;\n\n case \"structV2\":\n throw new Error(\"StructV2 constraints are not supported\");\n\n case \"timestamp\":\n return { ...dc } as PropertyTypeDataConstraints_timestamp;\n\n default:\n throw new Error(`Unknown DataConstraint type: ${(dc as any).type}`);\n }\n}\n\nexport function convertDataConstraintToDataConstraints(\n dc: DataConstraint,\n): DataConstraints {\n return {\n propertyTypeConstraints: [\n {\n constraints: dataConstraintToPropertyTypeDataConstraint(dc),\n // known limitation: structs don't carry field-level data constraint failure messages\n },\n ],\n };\n}\n\nexport function convertNullabilityToDataConstraint(\n prop: { type: PropertyTypeType; nullability?: Nullability },\n): DataConstraints | undefined {\n if (typeof prop.type === \"object\" && prop.type.type === \"marking\") {\n if (prop.nullability === undefined) {\n return {\n propertyTypeConstraints: [],\n nullability: undefined,\n nullabilityV2: { noEmptyCollections: true, noNulls: true },\n };\n }\n invariant(\n prop.nullability?.noNulls,\n \"Marking property type has noNulls set to false, marking properties must not be nullable\",\n );\n return {\n propertyTypeConstraints: [],\n nullability: undefined,\n nullabilityV2: prop.nullability,\n };\n }\n return prop.nullability === undefined ? undefined : {\n propertyTypeConstraints: [],\n nullability: undefined,\n nullabilityV2: prop.nullability,\n };\n}\n\nexport function convertType(\n type: PropertyTypeType,\n): OntologyIrType {\n switch (true) {\n case (typeof type === \"object\" && \"markingType\" in type):\n return {\n \"type\": \"marking\",\n marking: { markingType: type.markingType },\n };\n\n case (typeof type === \"object\" && \"structDefinition\" in type):\n const structFields: Array<OntologyIrStructFieldType> = new Array();\n for (const key in type.structDefinition) {\n const fieldTypeDefinition = type.structDefinition[key];\n let field: OntologyIrStructFieldType;\n if (typeof fieldTypeDefinition === \"string\") {\n field = {\n apiName: key,\n displayMetadata: { displayName: key, description: undefined },\n typeClasses: [],\n aliases: [],\n fieldType: convertType(fieldTypeDefinition),\n };\n } else {\n // If it is a full form type definition then process it as such\n if (\"fieldType\" in fieldTypeDefinition) {\n field = {\n ...fieldTypeDefinition,\n apiName: key,\n fieldType: convertType(fieldTypeDefinition.fieldType),\n typeClasses: fieldTypeDefinition.typeClasses ?? [],\n aliases: fieldTypeDefinition.aliases ?? [],\n };\n } else {\n field = {\n apiName: key,\n displayMetadata: { displayName: key, description: undefined },\n typeClasses: [],\n aliases: [],\n fieldType: convertType(fieldTypeDefinition),\n };\n }\n }\n\n structFields.push(field);\n }\n\n return {\n type: \"struct\",\n struct: { structFields },\n };\n\n case (typeof type === \"object\" && \"isLongText\" in type):\n return {\n \"type\": \"string\",\n \"string\": {\n analyzerOverride: undefined,\n enableAsciiFolding: undefined,\n isLongText: type.isLongText,\n supportsEfficientLeadingWildcard:\n type.supportsEfficientLeadingWildcard,\n supportsExactMatching: type.supportsExactMatching,\n },\n };\n\n case (type === \"geopoint\"):\n return { type: \"geohash\", geohash: {} };\n\n case (type === \"decimal\"):\n return { type, [type]: { precision: undefined, scale: undefined } };\n\n case (type === \"string\"):\n return {\n type,\n [type]: {\n analyzerOverride: undefined,\n enableAsciiFolding: undefined,\n isLongText: false,\n supportsEfficientLeadingWildcard: false,\n supportsExactMatching: true,\n },\n };\n\n case (type === \"mediaReference\"):\n return {\n type: type,\n mediaReference: {},\n };\n\n case (type === \"geotimeSeries\"):\n return {\n type: \"geotimeSeriesReference\",\n geotimeSeriesReference: {},\n };\n\n default:\n // use helper function to distribute `type` properly\n return distributeTypeHelper(type);\n }\n}\n\n/**\n * Helper function to avoid duplication. Makes the types match properly with the correct\n * behavior without needing to switch on type.\n * @param type\n * @returns\n */\nexport function distributeTypeHelper<T extends string>(\n type: T,\n): T extends any ? { type: T } & { [K in T]: {} } : never {\n return { type, [type]: {} } as any; // any cast to match conditional return type\n}\n"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"file":"propertyConversionUtils.js","names":["invariant","defaultTypeClasses","kind","name","shouldNotHaveRenderHints","type","includes","getPropertyTypeName","hasRenderHints","typeClasses","some","tc","toLowerCase","convertValueType","valueType","apiName","version","packageNamespace","displayMetadata","convertValueTypeDataConstraints","dataConstraints","length","undefined","propertyTypeConstraints","map","constraint","constraints","dataConstraintToPropertyTypeDataConstraint","failureMessage","dc","Error","struct","elementConstraints","Object","fromEntries","entries","field","convertDataConstraintToDataConstraints","convertNullabilityToDataConstraint","prop","nullability","nullabilityV2","noEmptyCollections","noNulls","process","env","NODE_ENV","convertType","marking","markingType","structFields","Array","key","structDefinition","fieldTypeDefinition","displayName","description","aliases","fieldType","push","analyzerOverride","enableAsciiFolding","isLongText","supportsEfficientLeadingWildcard","supportsExactMatching","geohash","precision","scale","mediaReference","geotimeSeriesReference","distributeTypeHelper"],"sources":["propertyConversionUtils.ts"],"sourcesContent":["/*\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 type {\n DataConstraint,\n DataConstraints,\n OntologyIrStructFieldType,\n OntologyIrType,\n OntologyIrValueTypeReferenceWithMetadata,\n PropertyTypeDataConstraints,\n PropertyTypeDataConstraints_array,\n PropertyTypeDataConstraints_boolean,\n PropertyTypeDataConstraints_date,\n PropertyTypeDataConstraints_decimal,\n PropertyTypeDataConstraints_double,\n PropertyTypeDataConstraints_float,\n PropertyTypeDataConstraints_integer,\n PropertyTypeDataConstraints_long,\n PropertyTypeDataConstraints_short,\n PropertyTypeDataConstraints_string,\n PropertyTypeDataConstraints_struct,\n PropertyTypeDataConstraints_timestamp,\n PropertyTypeDataConstraintsWrapper,\n ValueTypeDataConstraint,\n} from \"@osdk/client.unstable\";\nimport invariant from \"tiny-invariant\";\nimport type {\n Nullability,\n PropertyTypeType,\n TypeClass,\n ValueTypeDefinitionVersion,\n} from \"./types.js\";\n\nexport const defaultTypeClasses: TypeClass[] = [{\n kind: \"render_hint\",\n name: \"SELECTABLE\",\n}, { kind: \"render_hint\", name: \"SORTABLE\" }];\n\n// ExperimentalTimeDependentV1 and Attachment types should be included here once supported\nexport function shouldNotHaveRenderHints(type: PropertyTypeType): boolean {\n return [\"struct\", \"mediaReference\", \"geotimeSeries\"].includes(\n getPropertyTypeName(type),\n );\n}\n\nexport function hasRenderHints(typeClasses: TypeClass[] | undefined): boolean {\n return (typeClasses ?? []).some(tc =>\n tc.kind.toLowerCase() === \"render_hint\"\n );\n}\n\nexport function getPropertyTypeName(type: PropertyTypeType): string {\n return typeof type === \"object\" ? type.type : type;\n}\n\nexport function convertValueType(\n valueType: ValueTypeDefinitionVersion,\n): OntologyIrValueTypeReferenceWithMetadata {\n return {\n apiName: valueType.apiName,\n version: valueType.version,\n packageNamespace: valueType.packageNamespace,\n displayMetadata: valueType.displayMetadata,\n };\n}\n\nexport function convertValueTypeDataConstraints(\n dataConstraints: ValueTypeDataConstraint[],\n): DataConstraints | undefined {\n if (dataConstraints.length === 0) {\n return undefined;\n }\n\n const propertyTypeConstraints: PropertyTypeDataConstraintsWrapper[] =\n dataConstraints.map(\n (constraint): PropertyTypeDataConstraintsWrapper => ({\n constraints: dataConstraintToPropertyTypeDataConstraint(\n constraint.constraint.constraint,\n ),\n failureMessage: constraint.constraint.failureMessage,\n }),\n );\n\n return {\n propertyTypeConstraints,\n };\n}\n\nexport function dataConstraintToPropertyTypeDataConstraint(\n dc: DataConstraint,\n): PropertyTypeDataConstraints {\n switch (dc.type) {\n case \"array\":\n return { ...dc } as PropertyTypeDataConstraints_array;\n\n case \"boolean\":\n return { ...dc } as PropertyTypeDataConstraints_boolean;\n\n case \"binary\":\n throw new Error(\"Binary type constraints are not supported\");\n\n case \"date\":\n return { ...dc } as PropertyTypeDataConstraints_date;\n\n case \"decimal\":\n return { ...dc } as PropertyTypeDataConstraints_decimal;\n\n case \"double\":\n return { ...dc } as PropertyTypeDataConstraints_double;\n\n case \"float\":\n return { ...dc } as PropertyTypeDataConstraints_float;\n\n case \"integer\":\n return { ...dc } as PropertyTypeDataConstraints_integer;\n\n case \"long\":\n return { ...dc } as PropertyTypeDataConstraints_long;\n\n case \"map\":\n throw new Error(\"Map type constraints are not supported\");\n\n case \"nullable\":\n throw new Error(\"Nullable constraints are not supported\");\n\n case \"short\":\n return { ...dc } as PropertyTypeDataConstraints_short;\n\n case \"string\":\n return { ...dc } as PropertyTypeDataConstraints_string;\n\n case \"struct\":\n return {\n type: \"struct\",\n struct: {\n elementConstraints: Object.fromEntries(\n Object.entries(dc.struct.elementConstraints).map((\n [field, constraint],\n ) => [\n field,\n convertDataConstraintToDataConstraints(constraint),\n ]),\n ),\n },\n } as PropertyTypeDataConstraints_struct;\n\n case \"structV2\":\n throw new Error(\"StructV2 constraints are not supported\");\n\n case \"timestamp\":\n return { ...dc } as PropertyTypeDataConstraints_timestamp;\n\n default:\n throw new Error(`Unknown DataConstraint type: ${(dc as any).type}`);\n }\n}\n\nexport function convertDataConstraintToDataConstraints(\n dc: DataConstraint,\n): DataConstraints {\n return {\n propertyTypeConstraints: [\n {\n constraints: dataConstraintToPropertyTypeDataConstraint(dc),\n // known limitation: structs don't carry field-level data constraint failure messages\n },\n ],\n };\n}\n\nexport function convertNullabilityToDataConstraint(\n prop: { type: PropertyTypeType; nullability?: Nullability },\n): DataConstraints | undefined {\n if (typeof prop.type === \"object\" && prop.type.type === \"marking\") {\n if (prop.nullability === undefined) {\n return {\n propertyTypeConstraints: [],\n nullability: undefined,\n nullabilityV2: { noEmptyCollections: true, noNulls: true },\n };\n }\n invariant(\n prop.nullability?.noNulls,\n \"Marking property type has noNulls set to false, marking properties must not be nullable\",\n );\n return {\n propertyTypeConstraints: [],\n nullability: undefined,\n nullabilityV2: prop.nullability,\n };\n }\n return prop.nullability === undefined ? undefined : {\n propertyTypeConstraints: [],\n nullability: undefined,\n nullabilityV2: prop.nullability,\n };\n}\n\nexport function convertType(\n type: PropertyTypeType,\n): OntologyIrType {\n switch (true) {\n case (typeof type === \"object\" && \"markingType\" in type):\n return {\n \"type\": \"marking\",\n marking: { markingType: type.markingType },\n };\n\n case (typeof type === \"object\" && \"structDefinition\" in type):\n const structFields: Array<OntologyIrStructFieldType> = new Array();\n for (const key in type.structDefinition) {\n const fieldTypeDefinition = type.structDefinition[key];\n let field: OntologyIrStructFieldType;\n if (typeof fieldTypeDefinition === \"string\") {\n field = {\n apiName: key,\n displayMetadata: { displayName: key, description: undefined },\n typeClasses: [],\n aliases: [],\n fieldType: convertType(fieldTypeDefinition),\n };\n } else {\n // If it is a full form type definition then process it as such\n if (\"fieldType\" in fieldTypeDefinition) {\n field = {\n ...fieldTypeDefinition,\n apiName: key,\n fieldType: convertType(fieldTypeDefinition.fieldType),\n typeClasses: fieldTypeDefinition.typeClasses ?? [],\n aliases: fieldTypeDefinition.aliases ?? [],\n };\n } else {\n field = {\n apiName: key,\n displayMetadata: { displayName: key, description: undefined },\n typeClasses: [],\n aliases: [],\n fieldType: convertType(fieldTypeDefinition),\n };\n }\n }\n\n structFields.push(field);\n }\n\n return {\n type: \"struct\",\n struct: { structFields },\n };\n\n case (typeof type === \"object\" && \"isLongText\" in type):\n return {\n \"type\": \"string\",\n \"string\": {\n analyzerOverride: undefined,\n enableAsciiFolding: undefined,\n isLongText: type.isLongText,\n supportsEfficientLeadingWildcard:\n type.supportsEfficientLeadingWildcard,\n supportsExactMatching: type.supportsExactMatching,\n },\n };\n\n case (type === \"geopoint\"):\n return { type: \"geohash\", geohash: {} };\n\n case (type === \"decimal\"):\n return { type, [type]: { precision: undefined, scale: undefined } };\n\n case (type === \"string\"):\n return {\n type,\n [type]: {\n analyzerOverride: undefined,\n enableAsciiFolding: undefined,\n isLongText: false,\n supportsEfficientLeadingWildcard: false,\n supportsExactMatching: true,\n },\n };\n\n case (type === \"mediaReference\"):\n return {\n type: type,\n mediaReference: {},\n };\n\n case (type === \"geotimeSeries\"):\n return {\n type: \"geotimeSeriesReference\",\n geotimeSeriesReference: {},\n };\n\n default:\n // use helper function to distribute `type` properly\n return distributeTypeHelper(type);\n }\n}\n\n/**\n * Helper function to avoid duplication. Makes the types match properly with the correct\n * behavior without needing to switch on type.\n * @param type\n * @returns\n */\nexport function distributeTypeHelper<T extends string>(\n type: T,\n): T extends any ? { type: T } & { [K in T]: {} } : never {\n return { type, [type]: {} } as any; // any cast to match conditional return type\n}\n"],"mappings":"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","ignoreList":[]}
@@ -1 +1 @@
1
- {"version":3,"file":"types.js","names":["OntologyEntityTypeEnum","MODIFY_OBJECT_PARAMETER","CREATE_OR_MODIFY_OBJECT_PARAMETER"],"sources":["types.ts"],"sourcesContent":["/*\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 type {\n ActionTypeApiName,\n ActionTypeStatus_deprecated,\n BaseType,\n ButtonDisplayMetadata,\n DataConstraint,\n DisplayMetadataConfigurationDefaultLayout,\n DisplayMetadataConfigurationDisplayAndFormat,\n ExampleValue,\n FailureMessage,\n ImportedTypes,\n InterfaceTypeApiName,\n InterfaceTypeStatus,\n LinkTypeDisplayMetadata,\n LinkTypeMetadata,\n OntologyIrActionTypeEntities,\n OntologyIrBaseParameterType_decimal,\n OntologyIrBaseParameterType_decimalList,\n OntologyIrBaseParameterType_interfaceReference,\n OntologyIrBaseParameterType_interfaceReferenceList,\n OntologyIrBaseParameterType_objectReference,\n OntologyIrBaseParameterType_objectReferenceList,\n OntologyIrBaseParameterType_objectSetRid,\n OntologyIrBaseParameterType_objectTypeReference,\n OntologyIrBaseParameterType_struct,\n OntologyIrBaseParameterType_structList,\n OntologyIrBaseParameterType_timestamp,\n OntologyIrBaseParameterType_timestampList,\n OntologyIrCondition,\n OntologyIrConditionValue,\n OntologyIrFormContent,\n OntologyIrLabelledValue,\n OntologyIrLinkTypeStatus,\n OntologyIrLogicRule,\n OntologyIrLogicRuleValue_interfaceParameterPropertyValue,\n OntologyIrLogicRuleValue_objectParameterPropertyValue,\n OntologyIrLogicRuleValue_parameterId,\n OntologyIrLogicRuleValue_staticValue,\n OntologyIrLogicRuleValue_synchronousWebhookOutput,\n OntologyIrMarketplaceInterfaceType,\n OntologyIrObjectType,\n OntologyIrParameterDateRangeValue,\n OntologyIrParameterPrefill,\n OntologyIrPropertyType,\n OntologyIrValidationRule,\n ParameterId,\n SectionId,\n SharedPropertyTypeGothamMapping,\n StructFieldType,\n ValidationRuleDisplayMetadata,\n ValueTypeApiName,\n ValueTypeApiNameReference,\n ValueTypeDataConstraint,\n ValueTypeDisplayMetadata,\n ValueTypeStatus,\n ValueTypeVersion,\n Visibility,\n} from \"@osdk/client.unstable\";\n\nimport type { OntologyFullMetadata } from \"@osdk/foundry.ontologies\";\nimport type { BlueprintIcon } from \"./iconNames.js\";\n\nexport interface Ontology extends\n Omit<\n OntologyFullMetadata,\n | \"ontology\"\n | \"sharedPropertyTypes\"\n | \"interfaceTypes\"\n | \"objectTypes\"\n | \"actionTypes\"\n | \"valueTypes\"\n >\n{\n interfaceTypes: Record<string, InterfaceType>;\n sharedPropertyTypes: Record<string, SharedPropertyType>;\n objectTypes: Record<string, ObjectType>;\n valueTypes: Record<string, ValueTypeDefinitionVersion[]>;\n linkTypes: Record<string, LinkType>;\n actionTypes: Record<string, ActionType>;\n importedTypes: ImportedTypes;\n}\n\nexport interface OntologyEntityBase {\n __type: OntologyEntityTypeEnum;\n apiName: string;\n}\n\nexport enum OntologyEntityTypeEnum {\n OBJECT_TYPE = \"OBJECT_TYPE\",\n LINK_TYPE = \"LINK_TYPE\",\n INTERFACE_TYPE = \"INTERFACE_TYPE\",\n SHARED_PROPERTY_TYPE = \"SHARED_PROPERTY_TYPE\",\n ACTION_TYPE = \"ACTION_TYPE\",\n VALUE_TYPE = \"VALUE_TYPE\",\n}\nexport interface OntologyEntityTypeMapping {\n [OntologyEntityTypeEnum.OBJECT_TYPE]: ObjectType;\n [OntologyEntityTypeEnum.ACTION_TYPE]: ActionType;\n [OntologyEntityTypeEnum.LINK_TYPE]: LinkType;\n [OntologyEntityTypeEnum.INTERFACE_TYPE]: InterfaceType;\n [OntologyEntityTypeEnum.SHARED_PROPERTY_TYPE]: SharedPropertyType;\n [OntologyEntityTypeEnum.VALUE_TYPE]: ValueTypeDefinitionVersion;\n}\n\nexport type OntologyDefinition =\n & {\n [K in Exclude<OntologyEntityTypeEnum, \"VALUE_TYPE\">]: Record<\n string,\n OntologyEntityTypeMapping[K]\n >;\n }\n & {\n VALUE_TYPE: Record<string, ValueTypeDefinitionVersion[]>;\n };\n\nexport type OntologyEntityType =\n OntologyEntityTypeMapping[keyof OntologyEntityTypeMapping];\n\nexport type ActionType =\n & OntologyEntityBase\n & RequiredFields<\n Partial<ActionTypeInner>,\n \"apiName\" | \"displayName\" | \"rules\" | \"status\"\n >\n & {\n __type: OntologyEntityTypeEnum.ACTION_TYPE;\n };\n\nexport type ActionTypeDefinition = Omit<ActionType, \"__type\">;\n\nexport type ActionTypeUserDefinition = {\n objectType: ObjectTypeDefinition;\n apiName?: string;\n displayName?: string;\n status?: ActionStatus;\n parameterConfiguration?: Record<string, ActionParameterConfiguration>;\n nonParameterMappings?: Record<string, MappingValue>;\n actionLevelValidation?: ActionLevelValidationDefinition;\n excludedProperties?: Array<ParameterId>;\n sections?: Array<ActionSection>;\n defaultFormat?: DisplayMetadataConfigurationDefaultLayout;\n enableLayoutSwitch?: boolean;\n displayAndFormat?: DisplayMetadataConfigurationDisplayAndFormat;\n parameterOrdering?: Array<string>;\n submissionMetadata?: SubmissionMetadata;\n // Used for Create or Modify actions\n primaryKeyOption?: \"autoGenerated\" | \"userInput\";\n};\n\nexport const MODIFY_OBJECT_PARAMETER: string = \"objectToModifyParameter\";\n\nexport const CREATE_OR_MODIFY_OBJECT_PARAMETER: string =\n \"objectToCreateOrModifyParameter\";\n\nexport interface ActionParameter {\n id: ParameterId;\n displayName: string;\n type: ActionParameterType;\n validation: ActionParameterValidation;\n description?: string;\n typeClasses?: Array<TypeClass>;\n defaultValue?: OntologyIrParameterPrefill;\n}\n\nexport type ActionParameterValidation = Omit<\n ActionParameterConfiguration,\n \"displayName\" | \"defaultValue\"\n>;\n\nexport interface ActionParameterConfiguration {\n allowedValues?: ActionParameterAllowedValues;\n required?: ActionParameterRequirementConstraint;\n defaultVisibility?: \"editable\" | \"disabled\" | \"hidden\";\n conditionalOverrides?: Array<ActionParameterConditionalOverride>;\n defaultValue?: OntologyIrParameterPrefill;\n displayName?: string;\n description?: string;\n // should only be used on non-property parameters\n customParameterType?: ActionParameterType;\n}\n\nexport type ActionSection = {\n id: string;\n displayName: string;\n parameters: Array<string>;\n defaultVisibility?: \"visible\" | \"hidden\";\n description?: string;\n columnCount?: 1 | 2;\n showTitleBar?: boolean;\n collapsedByDefault?: boolean;\n style?: \"box\" | \"minimal\";\n conditionalOverrides?: Array<SectionConditionalOverride>;\n};\n\nexport type SubmissionMetadata = {\n submitButtonDisplayMetadata?: ButtonDisplayMetadata;\n successMessage: string;\n undoButtonConfiguration?: boolean;\n};\n\nexport type MappingValue =\n | CustomMapping\n | UuidMappingValue\n | CurrentTimeMappingValue\n | CurrentUserMappingValue;\n\nexport type UuidMappingValue = {\n type: \"uuid\";\n linkId?: string;\n};\n\nexport type CurrentTimeMappingValue = {\n type: \"currentTime\";\n};\n\nexport type CurrentUserMappingValue = {\n type: \"currentUser\";\n};\n\nexport type CustomMapping =\n | OntologyIrLogicRuleValue_parameterId\n | OntologyIrLogicRuleValue_staticValue\n | OntologyIrLogicRuleValue_objectParameterPropertyValue\n | OntologyIrLogicRuleValue_interfaceParameterPropertyValue\n | OntologyIrLogicRuleValue_synchronousWebhookOutput;\n\n// TODO(ethana): add more commonly used conditions - parameter matching, organizations, etc.\nexport type ConditionDefinition =\n | UnionCondition\n | OntologyIrCondition\n | GroupValidationRule\n | ParameterValidationRule;\n\nexport type UnionCondition = {\n type: \"and\" | \"or\";\n conditions: Array<ConditionDefinition>;\n};\n\nexport type ActionParameterConditionalOverride =\n | VisibilityOverride\n | DisabledOverride\n | RequiredOverride\n | DefaultValueOverride\n | ConstraintOverride;\n\nexport type SectionConditionalOverride = VisibilityOverride;\n\nexport type VisibilityOverride = {\n type: \"visibility\";\n condition: ConditionDefinition;\n};\n\nexport type DisabledOverride = {\n type: \"disabled\";\n condition: ConditionDefinition;\n};\n\nexport type RequiredOverride = {\n type: \"required\";\n condition: ConditionDefinition;\n};\n\nexport type DefaultValueOverride = {\n type: \"defaultValue\";\n condition: ConditionDefinition;\n defaultValue: OntologyIrParameterPrefill;\n};\n\nexport type ConstraintOverride = {\n type: \"constraint\";\n condition: ConditionDefinition;\n constraint: ActionParameterAllowedValues;\n};\n\nexport type ActionParameterRequirementConstraint =\n | boolean\n | { listLength: { min?: number; max?: number } };\n\n// TODO(dpaquin): cleanup? or does \"type: foo\" actually make sense here\nexport type ActionParameterAllowedValues =\n | {\n type: \"oneOf\";\n oneOf: Array<OntologyIrLabelledValue>;\n otherValueAllowed?: boolean;\n }\n | {\n type: \"range\";\n min?: OntologyIrConditionValue;\n max?: OntologyIrConditionValue;\n }\n | { type: \"text\"; minLength?: number; maxLength?: number; regex?: string }\n | {\n type: \"datetime\";\n maximum?: OntologyIrParameterDateRangeValue;\n minimum?: OntologyIrParameterDateRangeValue;\n }\n | { type: \"objectTypeReference\"; interfaceTypes: Array<InterfaceTypeApiName> }\n | { type: \"objectQuery\" }\n | { type: \"attachment\" }\n | { type: \"boolean\" }\n | { type: \"objectSetRid\" }\n | { type: \"cbacMarking\" }\n | { type: \"mandatoryMarking\" }\n | { type: \"objectList\" }\n | { type: \"mediaReference\" }\n | { type: \"timeSeriesReference\" }\n | { type: \"geohash\" }\n | { type: \"geoshape\" }\n | { type: \"geotimeSeriesReference\" }\n | { type: \"interfaceObjectQuery\" }\n | { type: \"redacted\" };\n\nexport interface ActionTypeInner {\n apiName: ActionTypeApiName;\n displayName: string;\n description: string;\n icon: { locator: BlueprintIcon; color: string };\n parameters: Array<ActionParameter>;\n rules: Array<OntologyIrLogicRule>;\n sections: Record<SectionId, ActionSection>;\n status: ActionStatus;\n entities: OntologyIrActionTypeEntities;\n parameterOrdering: Array<string>;\n formContentOrdering: Array<OntologyIrFormContent>;\n validation: Array<OntologyIrValidationRule>;\n typeClasses: Array<TypeClass>;\n defaultFormat: DisplayMetadataConfigurationDefaultLayout;\n enableLayoutSwitch: boolean;\n displayAndFormat: DisplayMetadataConfigurationDisplayAndFormat;\n submissionMetadata: SubmissionMetadata;\n}\n\nexport type ActionValidationRule = OntologyIrValidationRule;\n\nexport type ActionLevelValidationDefinition = {\n condition: ConditionDefinition;\n displayMetadata?: ValidationRuleDisplayMetadata;\n};\n\nexport type GroupValidationRule = {\n type: \"group\";\n name: string;\n};\n\nexport type ParameterValidationRule = {\n type: \"parameter\";\n parameterId: string;\n matches: OntologyIrConditionValue;\n};\n\nexport type ActionStatus =\n | \"active\"\n | \"experimental\"\n | \"example\"\n | ActionTypeStatus_deprecated;\n\nexport type { InterfaceTypeStatus };\n\nexport type ObjectTypeStatus =\n | \"active\"\n | \"experimental\"\n | {\n type: \"deprecated\";\n message: string;\n deadline: string;\n };\n\nexport type RequiredFields<T, K extends keyof T> = T & Required<Pick<T, K>>;\nexport type OptionalFields<T, K extends keyof T> =\n & Pick<Partial<T>, K>\n & Omit<T, K>;\n\nexport interface ObjectTypeInner extends\n Omit<\n OntologyIrObjectType,\n | \"titlePropertyTypeRid\"\n | \"propertyTypes\"\n | \"allImplementsInterfaces\"\n | \"implementsInterfaces2\"\n | \"displayMetadata\"\n | \"primaryKeys\"\n | \"status\"\n >\n{\n primaryKeyPropertyApiName: string;\n properties: Array<ObjectPropertyType>;\n titlePropertyApiName: string;\n implementsInterfaces: Array<InterfaceImplementation>;\n description: string | undefined;\n icon: { locator: BlueprintIcon; color: string } | undefined;\n displayName: string;\n pluralDisplayName: string;\n visibility: Visibility;\n editsEnabled: boolean;\n status?: ObjectTypeStatus;\n}\n\nexport type InterfaceImplementation = {\n implements: InterfaceType;\n propertyMapping: { interfaceProperty: string; mapsTo: string }[];\n};\n\nexport type ObjectType =\n & OntologyEntityBase\n & RequiredFields<\n Partial<ObjectTypeInner>,\n | \"apiName\"\n | \"primaryKeyPropertyApiName\"\n | \"displayName\"\n | \"pluralDisplayName\"\n | \"titlePropertyApiName\"\n >\n & {\n datasource?: ObjectTypeDatasourceDefinition;\n __type: OntologyEntityTypeEnum.OBJECT_TYPE;\n };\n\nexport type ObjectTypeDefinition = {\n apiName: string;\n primaryKeyPropertyApiName: string;\n displayName: string;\n pluralDisplayName: string;\n titlePropertyApiName: string;\n properties?: { [key: string]: ObjectPropertyTypeUserDefinition };\n implementsInterfaces?: Array<InterfaceImplementation>;\n description?: string;\n icon?: { locator: BlueprintIcon; color: string };\n visibility?: Visibility;\n editsEnabled?: boolean;\n status?: ObjectTypeStatus;\n datasource?: ObjectTypeDatasourceDefinition;\n};\n\nexport interface ObjectPropertyTypeInner extends\n Omit<\n OntologyIrPropertyType,\n | \"sharedPropertyTypeApiName\"\n | \"type\"\n | \"inlineAction\"\n | \"sharedPropertyTypeRid\"\n | \"valueType\"\n | \"ruleSetBinding\"\n | \"displayMetadata\"\n | \"dataConstraints\"\n | \"status\"\n >\n{\n type: PropertyTypeType;\n array?: boolean;\n valueType: ValueTypeDefinitionVersion;\n sharedPropertyType: SharedPropertyType;\n description: string | undefined;\n displayName: string;\n visibility: Visibility;\n nullability?: Nullability;\n status?: ObjectTypeStatus;\n editOnly?: boolean;\n}\n\nexport type ObjectPropertyType = RequiredFields<\n Partial<ObjectPropertyTypeInner>,\n \"apiName\" | \"type\" | \"displayName\"\n>;\n\nexport type ObjectPropertyTypeUserDefinition = RequiredFields<\n Partial<ObjectPropertyTypeInner>,\n \"type\"\n>;\n\nexport interface InterfacePropertyType {\n sharedPropertyType: SharedPropertyType;\n required: boolean;\n}\nexport interface InterfaceType extends\n OntologyEntityBase,\n Omit<\n OntologyIrMarketplaceInterfaceType,\n // we want our simplified representation\n | \"properties\"\n // these things don't need to exist as the system works fine without them (I'm told)\n | \"allProperties\"\n | \"allLinks\"\n | \"extendsInterfaces\"\n | \"allExtendsInterfaces\"\n | \"propertiesV2\"\n | \"allPropertiesV2\"\n | \"propertiesV3\"\n | \"allPropertiesV3\"\n >\n{\n propertiesV2: Record<string, InterfacePropertyType>;\n extendsInterfaces: Array<InterfaceType>;\n status: InterfaceTypeStatus;\n __type: OntologyEntityTypeEnum.INTERFACE_TYPE;\n}\n\nexport interface PropertyType {\n type: PropertyTypeType;\n array?: boolean;\n description?: string;\n displayName?: string;\n valueType?: ValueTypeApiNameReference;\n visibility?: Visibility;\n typeClasses?: TypeClass[];\n nullability?: Nullability;\n}\n\nexport interface Nullability {\n noEmptyCollections: boolean;\n noNulls: boolean;\n}\n\nexport type TypeClass = { kind: string; name: string };\n\nexport interface SharedPropertyType extends OntologyEntityBase, PropertyType {\n apiName: string;\n nonNameSpacedApiName: string;\n gothamMapping?: SharedPropertyTypeGothamMapping;\n __type: OntologyEntityTypeEnum.SHARED_PROPERTY_TYPE;\n}\n\nexport type PropertyTypeType =\n | PropertyTypeTypePrimitive\n | PropertyTypeTypeExotic;\n\nexport type PropertyTypeTypePrimitive =\n | \"boolean\"\n | \"byte\"\n | \"date\"\n | \"decimal\"\n | \"double\"\n | \"float\"\n | \"integer\"\n | \"long\"\n | \"short\"\n | \"string\"\n | \"timestamp\";\n\nexport type PropertyTypeTypeExotic =\n | \"geopoint\"\n | \"geoshape\"\n | \"mediaReference\"\n | \"geotimeSeries\"\n | PropertyTypeTypeMarking\n | PropertyTypeTypeStruct\n | PropertyTypeTypeString;\n\ntype PropertyTypeTypeMarking = {\n type: \"marking\";\n markingType: \"MANDATORY\" | \"CBAC\";\n markingInputGroupName: string;\n};\n\nexport type PropertyTypeTypeStruct = {\n type: \"struct\";\n structDefinition: {\n [api_name: string]:\n | StructPropertyType\n | Exclude<PropertyTypeTypesWithoutStruct, PropertyTypeTypeMarking>;\n };\n};\n\ntype PropertyTypeTypeString = {\n type: \"string\";\n isLongText: boolean;\n supportsEfficientLeadingWildcard: boolean;\n supportsExactMatching: boolean;\n};\n\nexport type PropertyTypeTypesWithoutStruct = Exclude<\n PropertyTypeType,\n PropertyTypeTypeStruct\n>;\n\ntype Optional<T, K extends keyof T> = Pick<Partial<T>, K> & Omit<T, K>;\n\nexport interface StructPropertyType extends\n Optional<\n Omit<\n StructFieldType,\n \"fieldType\" | \"structFieldRid\" | \"apiName\"\n >,\n \"typeClasses\" | \"aliases\"\n >\n{\n fieldType: PropertyTypeTypesWithoutStruct;\n}\n\nexport type ObjectTypePropertyApiName = string;\nexport type LinkTypeId = string;\n\nexport type LinkType =\n | (OntologyEntityBase & OneToManyLinkTypeDefinition & {\n __type: OntologyEntityTypeEnum.LINK_TYPE;\n })\n | (OntologyEntityBase & ManyToManyLinkTypeDefinition & {\n __type: OntologyEntityTypeEnum.LINK_TYPE;\n });\n\nexport type LinkTypeDefinition =\n | Omit<\n OntologyEntityBase & OneToManyLinkTypeUserDefinition & {\n __type: OntologyEntityTypeEnum.LINK_TYPE;\n },\n \"__type\"\n >\n | Omit<\n OntologyEntityBase & ManyToManyLinkTypeUserDefinition & {\n __type: OntologyEntityTypeEnum.LINK_TYPE;\n },\n \"__type\"\n >;\n\nexport interface OneToManyLinkTypeDefinition {\n apiName: LinkTypeId;\n one: OneToManyObjectLinkReference;\n toMany: OneToManyObjectLinkReference;\n manyForeignKeyProperty: ObjectTypePropertyApiName;\n cardinality: \"OneToMany\" | \"OneToOne\" | undefined;\n editsEnabled?: boolean;\n status?: OntologyIrLinkTypeStatus;\n redacted?: boolean;\n}\n\nexport interface OneToManyObjectLinkReference {\n object: ObjectTypeDefinition;\n metadata: LinkTypeMetadata;\n}\n\nexport interface OneToManyLinkTypeUserDefinition {\n apiName: LinkTypeId;\n one: OneToManyObjectLinkReferenceUserDefinition;\n toMany: OneToManyObjectLinkReferenceUserDefinition;\n manyForeignKeyProperty: ObjectTypePropertyApiName;\n cardinality?: \"OneToMany\" | \"OneToOne\" | undefined;\n}\n\nexport interface OneToManyObjectLinkReferenceUserDefinition {\n object: ObjectTypeDefinition;\n metadata: LinkTypeMetadataUserDefinition;\n}\n\nexport interface ManyToManyLinkTypeDefinition {\n apiName: LinkTypeId;\n many: ManyToManyObjectLinkReference;\n toMany: ManyToManyObjectLinkReference;\n editsEnabled?: boolean;\n status?: OntologyIrLinkTypeStatus;\n redacted?: boolean;\n}\n\nexport interface ManyToManyObjectLinkReference {\n object: ObjectTypeDefinition;\n metadata: LinkTypeMetadata;\n}\n\nexport interface ManyToManyLinkTypeUserDefinition {\n apiName: LinkTypeId;\n many: ManyToManyObjectLinkReferenceUserDefinition;\n toMany: ManyToManyObjectLinkReferenceUserDefinition;\n}\n\nexport interface ManyToManyObjectLinkReferenceUserDefinition {\n object: ObjectTypeDefinition;\n metadata: LinkTypeMetadataUserDefinition;\n}\n\nexport interface LinkTypeMetadataUserDefinition {\n apiName: string;\n displayName?: string;\n pluralDisplayName?: string;\n visibility?: Visibility;\n groupDisplayName?: string;\n}\n\nexport type LinkSideMetadata = OptionalFields<\n RequiredFields<\n Omit<LinkTypeMetadata, \"displayMetadata\"> & LinkTypeDisplayMetadata,\n \"apiName\"\n >,\n \"visibility\" | \"typeClasses\"\n>;\nexport interface ValueTypeType_array {\n constraints: {\n constraint: Extract<DataConstraint, { type: \"array\" }>[\"array\"];\n failureMessage?: FailureMessage;\n }[];\n type: \"array\";\n value: {\n type: \"array\";\n elementType: ValueTypeType[\"value\"];\n };\n}\n\nexport interface ValueTypeType_boolean {\n constraints: {\n constraint: Extract<DataConstraint, { type: \"boolean\" }>[\"boolean\"];\n failureMessage?: FailureMessage;\n }[];\n type: \"boolean\";\n value: \"boolean\";\n}\n\nexport interface ValueTypeType_binary {\n constraints: {\n constraint: Extract<DataConstraint, { type: \"binary\" }>[\"binary\"];\n failureMessage?: FailureMessage;\n }[];\n type: \"binary\";\n value: \"binary\";\n}\n\nexport interface ValueTypeType_byte {\n constraints: {\n constraint: Extract<DataConstraint, { type: \"byte\" }>[\"byte\"];\n failureMessage?: FailureMessage;\n }[];\n type: \"byte\";\n value: \"byte\";\n}\n\nexport interface ValueTypeType_date {\n constraints: {\n constraint: Extract<DataConstraint, { type: \"date\" }>[\"date\"];\n failureMessage?: FailureMessage;\n }[];\n type: \"date\";\n value: \"date\";\n}\n\nexport interface ValueTypeType_decimal {\n constraints: {\n constraint: Extract<DataConstraint, { type: \"decimal\" }>[\"decimal\"];\n failureMessage?: FailureMessage;\n }[];\n type: \"decimal\";\n value: \"decimal\";\n}\n\nexport interface ValueTypeType_double {\n constraints: {\n constraint: Extract<DataConstraint, { type: \"double\" }>[\"double\"];\n failureMessage?: FailureMessage;\n }[];\n type: \"double\";\n value: \"double\";\n}\n\nexport interface ValueTypeType_float {\n constraints: {\n constraint: Extract<DataConstraint, { type: \"float\" }>[\"float\"];\n failureMessage?: FailureMessage;\n }[];\n type: \"float\";\n value: \"float\";\n}\n\nexport interface ValueTypeType_integer {\n constraints: {\n constraint: Extract<DataConstraint, { type: \"integer\" }>[\"integer\"];\n failureMessage?: FailureMessage;\n }[];\n type: \"integer\";\n value: \"integer\";\n}\n\nexport interface ValueTypeType_long {\n constraints: {\n constraint: Extract<DataConstraint, { type: \"long\" }>[\"long\"];\n failureMessage?: FailureMessage;\n }[];\n type: \"long\";\n value: \"long\";\n}\n\nexport interface ValueTypeType_map {\n constraints: {\n constraint: Extract<DataConstraint, { type: \"map\" }>[\"map\"];\n failureMessage?: FailureMessage;\n }[];\n type: \"map\";\n value: {\n type: \"map\";\n keyType: ValueTypeType[\"value\"];\n valueType: ValueTypeType[\"value\"];\n };\n}\n\nexport interface ValueTypeType_optional {\n constraints: {\n constraint: Extract<DataConstraint, { type: \"optional\" }>[\"optional\"];\n failureMessage?: FailureMessage;\n }[];\n type: \"optional\";\n value: {\n type: \"optional\";\n wrappedType: ValueTypeType[\"value\"];\n };\n}\n\nexport interface ValueTypeType_short {\n constraints: {\n constraint: Extract<DataConstraint, { type: \"short\" }>[\"short\"];\n failureMessage?: FailureMessage;\n }[];\n type: \"short\";\n value: \"short\";\n}\n\nexport interface ValueTypeType_string {\n constraints: {\n constraint: Extract<DataConstraint, { type: \"string\" }>[\"string\"];\n failureMessage?: FailureMessage;\n }[];\n type: \"string\";\n value: \"string\";\n}\n\nexport interface ValueTypeType_structV2 {\n constraints: {\n constraint: Extract<DataConstraint, { type: \"structV2\" }>[\"structV2\"];\n failureMessage?: FailureMessage;\n }[];\n type: \"structV2\";\n value: {\n type: \"struct\";\n fields: Array<{\n identifier: string;\n baseType: ValueTypeType[\"value\"];\n }>;\n };\n}\nexport interface ValueTypeType_timestamp {\n constraints: {\n constraint: Extract<DataConstraint, { type: \"timestamp\" }>[\"timestamp\"];\n failureMessage?: FailureMessage;\n }[];\n type: \"timestamp\";\n value: \"timestamp\";\n}\n\nexport type ValueTypeType =\n | ValueTypeType_array\n | ValueTypeType_boolean\n | ValueTypeType_binary\n | ValueTypeType_byte\n | ValueTypeType_date\n | ValueTypeType_decimal\n | ValueTypeType_double\n | ValueTypeType_float\n | ValueTypeType_integer\n | ValueTypeType_long\n | ValueTypeType_map\n | ValueTypeType_optional\n | ValueTypeType_short\n | ValueTypeType_string\n | ValueTypeType_structV2\n | ValueTypeType_timestamp;\n\nexport type ValueTypeDefinitionVersion = OntologyEntityBase & {\n apiName: ValueTypeApiName;\n displayMetadata: ValueTypeDisplayMetadata;\n status: ValueTypeStatus;\n version: ValueTypeVersion;\n baseType: BaseType;\n constraints: ValueTypeDataConstraint[];\n exampleValues: ExampleValue[];\n __type: OntologyEntityTypeEnum.VALUE_TYPE;\n};\n\nexport interface ObjectTypeDatasourceDefinition_dataset {\n type: \"dataset\";\n}\n\nexport interface ObjectTypeDatasourceDefinition_stream {\n type: \"stream\";\n // Retention period must be in ISO 8601 duration format\n retentionPeriod?: string;\n}\n\nexport interface ObjectTypeDatasourceDefinition_restrictedView {\n type: \"restrictedView\";\n}\n\nexport type ObjectTypeDatasourceDefinition =\n | ObjectTypeDatasourceDefinition_stream\n | ObjectTypeDatasourceDefinition_dataset\n | ObjectTypeDatasourceDefinition_restrictedView;\n\nexport type ActionParameterTypePrimitive =\n | \"boolean\"\n | \"booleanList\"\n | \"integer\"\n | \"integerList\"\n | \"long\"\n | \"longList\"\n | \"double\"\n | \"doubleList\"\n | \"string\"\n | \"stringList\"\n | \"decimal\"\n | \"decimalList\"\n | \"timestamp\"\n | \"timestampList\"\n | \"geohash\"\n | \"geohashList\"\n | \"geoshape\"\n | \"geoshapeList\"\n | \"timeSeriesReference\"\n | \"date\"\n | \"dateList\"\n | \"objectTypeReference\"\n | \"attachment\"\n | \"attachmentList\"\n | \"marking\"\n | \"markingList\"\n | \"mediaReference\"\n | \"mediaReferenceList\"\n | \"geotimeSeriesReference\"\n | \"geotimeSeriesReferenceList\";\n\nexport type ActionParameterTypeComplex =\n | OntologyIrBaseParameterType_decimal\n | OntologyIrBaseParameterType_decimalList\n | OntologyIrBaseParameterType_timestamp\n | OntologyIrBaseParameterType_timestampList\n | OntologyIrBaseParameterType_objectReference\n | OntologyIrBaseParameterType_objectReferenceList\n | OntologyIrBaseParameterType_objectSetRid\n | OntologyIrBaseParameterType_objectTypeReference\n | OntologyIrBaseParameterType_objectReference\n | OntologyIrBaseParameterType_interfaceReference\n | OntologyIrBaseParameterType_interfaceReferenceList\n | OntologyIrBaseParameterType_struct\n | OntologyIrBaseParameterType_structList;\n\nexport type ActionParameterType =\n | ActionParameterTypePrimitive\n | ActionParameterTypeComplex;\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAyFA,WAAYA,sBAAsB,0BAAtBA,sBAAsB;EAAtBA,sBAAsB;EAAtBA,sBAAsB;EAAtBA,sBAAsB;EAAtBA,sBAAsB;EAAtBA,sBAAsB;EAAtBA,sBAAsB;EAAA,OAAtBA,sBAAsB;AAAA;AA8DlC,OAAO,MAAMC,uBAA+B,GAAG,yBAAyB;AAExE,OAAO,MAAMC,iCAAyC,GACpD,iCAAiC;;AA0EnC;;AAoDA","ignoreList":[]}
1
+ {"version":3,"file":"types.js","names":["OntologyEntityTypeEnum","MODIFY_OBJECT_PARAMETER","CREATE_OR_MODIFY_OBJECT_PARAMETER"],"sources":["types.ts"],"sourcesContent":["/*\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 type {\n ActionTypeApiName,\n ActionTypeStatus_deprecated,\n BaseType,\n ButtonDisplayMetadata,\n DataConstraint,\n DisplayMetadataConfigurationDefaultLayout,\n DisplayMetadataConfigurationDisplayAndFormat,\n ExampleValue,\n FailureMessage,\n InterfaceTypeApiName,\n InterfaceTypeStatus,\n LinkTypeDisplayMetadata,\n LinkTypeMetadata,\n OntologyIrActionTypeEntities,\n OntologyIrBaseParameterType_decimal,\n OntologyIrBaseParameterType_decimalList,\n OntologyIrBaseParameterType_interfaceReference,\n OntologyIrBaseParameterType_interfaceReferenceList,\n OntologyIrBaseParameterType_objectReference,\n OntologyIrBaseParameterType_objectReferenceList,\n OntologyIrBaseParameterType_objectSetRid,\n OntologyIrBaseParameterType_objectTypeReference,\n OntologyIrBaseParameterType_struct,\n OntologyIrBaseParameterType_structList,\n OntologyIrBaseParameterType_timestamp,\n OntologyIrBaseParameterType_timestampList,\n OntologyIrCondition,\n OntologyIrConditionValue,\n OntologyIrFormContent,\n OntologyIrLabelledValue,\n OntologyIrLinkTypeStatus,\n OntologyIrLogicRule,\n OntologyIrLogicRuleValue_interfaceParameterPropertyValue,\n OntologyIrLogicRuleValue_objectParameterPropertyValue,\n OntologyIrLogicRuleValue_parameterId,\n OntologyIrLogicRuleValue_staticValue,\n OntologyIrLogicRuleValue_synchronousWebhookOutput,\n OntologyIrMarketplaceInterfaceType,\n OntologyIrObjectType,\n OntologyIrParameterDateRangeValue,\n OntologyIrParameterPrefill,\n OntologyIrPropertyType,\n OntologyIrValidationRule,\n OntologyIrValueTypeReferenceWithMetadata,\n ParameterId,\n SectionId,\n SharedPropertyTypeGothamMapping,\n StructFieldType,\n ValidationRuleDisplayMetadata,\n ValueTypeApiName,\n ValueTypeDataConstraint,\n ValueTypeDisplayMetadata,\n ValueTypeStatus,\n ValueTypeVersion,\n Visibility,\n} from \"@osdk/client.unstable\";\n\nimport type { BlueprintIcon } from \"./iconNames.js\";\n\nexport interface OntologyEntityBase {\n __type: OntologyEntityTypeEnum;\n apiName: string;\n}\n\nexport enum OntologyEntityTypeEnum {\n OBJECT_TYPE = \"OBJECT_TYPE\",\n LINK_TYPE = \"LINK_TYPE\",\n INTERFACE_TYPE = \"INTERFACE_TYPE\",\n SHARED_PROPERTY_TYPE = \"SHARED_PROPERTY_TYPE\",\n ACTION_TYPE = \"ACTION_TYPE\",\n VALUE_TYPE = \"VALUE_TYPE\",\n}\nexport interface OntologyEntityTypeMapping {\n [OntologyEntityTypeEnum.OBJECT_TYPE]: ObjectType;\n [OntologyEntityTypeEnum.ACTION_TYPE]: ActionType;\n [OntologyEntityTypeEnum.LINK_TYPE]: LinkType;\n [OntologyEntityTypeEnum.INTERFACE_TYPE]: InterfaceType;\n [OntologyEntityTypeEnum.SHARED_PROPERTY_TYPE]: SharedPropertyType;\n [OntologyEntityTypeEnum.VALUE_TYPE]: ValueTypeDefinitionVersion;\n}\n\nexport type OntologyDefinition =\n & {\n [K in Exclude<OntologyEntityTypeEnum, \"VALUE_TYPE\">]: Record<\n string,\n OntologyEntityTypeMapping[K]\n >;\n }\n & {\n VALUE_TYPE: Record<string, ValueTypeDefinitionVersion[]>;\n };\n\nexport type OntologyEntityType =\n OntologyEntityTypeMapping[keyof OntologyEntityTypeMapping];\n\nexport type ActionType =\n & OntologyEntityBase\n & RequiredFields<\n Partial<ActionTypeInner>,\n \"apiName\" | \"displayName\" | \"rules\" | \"status\"\n >\n & {\n __type: OntologyEntityTypeEnum.ACTION_TYPE;\n };\n\nexport type ActionTypeDefinition = Omit<ActionType, \"__type\">;\n\nexport type ActionTypeUserDefinition = {\n objectType: ObjectTypeDefinition;\n apiName?: string;\n displayName?: string;\n status?: ActionStatus;\n parameterConfiguration?: Record<string, ActionParameterConfiguration>;\n nonParameterMappings?: Record<string, MappingValue>;\n actionLevelValidation?: ActionLevelValidationDefinition;\n excludedProperties?: Array<ParameterId>;\n sections?: Array<ActionSection>;\n defaultFormat?: DisplayMetadataConfigurationDefaultLayout;\n enableLayoutSwitch?: boolean;\n displayAndFormat?: DisplayMetadataConfigurationDisplayAndFormat;\n parameterOrdering?: Array<string>;\n submissionMetadata?: SubmissionMetadata;\n // Used for Create or Modify actions\n primaryKeyOption?: \"autoGenerated\" | \"userInput\";\n};\n\nexport const MODIFY_OBJECT_PARAMETER: string = \"objectToModifyParameter\";\n\nexport const CREATE_OR_MODIFY_OBJECT_PARAMETER: string =\n \"objectToCreateOrModifyParameter\";\n\nexport interface ActionParameter {\n id: ParameterId;\n displayName: string;\n type: ActionParameterType;\n validation: ActionParameterValidation;\n description?: string;\n typeClasses?: Array<TypeClass>;\n defaultValue?: OntologyIrParameterPrefill;\n}\n\nexport type ActionParameterValidation = Omit<\n ActionParameterConfiguration,\n \"displayName\" | \"defaultValue\"\n>;\n\nexport interface ActionParameterConfiguration {\n allowedValues?: ActionParameterAllowedValues;\n required?: ActionParameterRequirementConstraint;\n defaultVisibility?: \"editable\" | \"disabled\" | \"hidden\";\n conditionalOverrides?: Array<ActionParameterConditionalOverride>;\n defaultValue?: OntologyIrParameterPrefill;\n displayName?: string;\n description?: string;\n // should only be used on non-property parameters\n customParameterType?: ActionParameterType;\n}\n\nexport type ActionSection = {\n id: string;\n displayName: string;\n parameters: Array<string>;\n defaultVisibility?: \"visible\" | \"hidden\";\n description?: string;\n columnCount?: 1 | 2;\n showTitleBar?: boolean;\n collapsedByDefault?: boolean;\n style?: \"box\" | \"minimal\";\n conditionalOverrides?: Array<SectionConditionalOverride>;\n};\n\nexport type SubmissionMetadata = {\n submitButtonDisplayMetadata?: ButtonDisplayMetadata;\n successMessage: string;\n undoButtonConfiguration?: boolean;\n};\n\nexport type MappingValue =\n | CustomMapping\n | UuidMappingValue\n | CurrentTimeMappingValue\n | CurrentUserMappingValue;\n\nexport type UuidMappingValue = {\n type: \"uuid\";\n linkId?: string;\n};\n\nexport type CurrentTimeMappingValue = {\n type: \"currentTime\";\n};\n\nexport type CurrentUserMappingValue = {\n type: \"currentUser\";\n};\n\nexport type CustomMapping =\n | OntologyIrLogicRuleValue_parameterId\n | OntologyIrLogicRuleValue_staticValue\n | OntologyIrLogicRuleValue_objectParameterPropertyValue\n | OntologyIrLogicRuleValue_interfaceParameterPropertyValue\n | OntologyIrLogicRuleValue_synchronousWebhookOutput;\n\n// TODO(ethana): add more commonly used conditions - parameter matching, organizations, etc.\nexport type ConditionDefinition =\n | UnionCondition\n | OntologyIrCondition\n | GroupValidationRule\n | ParameterValidationRule;\n\nexport type UnionCondition = {\n type: \"and\" | \"or\";\n conditions: Array<ConditionDefinition>;\n};\n\nexport type ActionParameterConditionalOverride =\n | VisibilityOverride\n | DisabledOverride\n | RequiredOverride\n | DefaultValueOverride\n | ConstraintOverride;\n\nexport type SectionConditionalOverride = VisibilityOverride;\n\nexport type VisibilityOverride = {\n type: \"visibility\";\n condition: ConditionDefinition;\n};\n\nexport type DisabledOverride = {\n type: \"disabled\";\n condition: ConditionDefinition;\n};\n\nexport type RequiredOverride = {\n type: \"required\";\n condition: ConditionDefinition;\n};\n\nexport type DefaultValueOverride = {\n type: \"defaultValue\";\n condition: ConditionDefinition;\n defaultValue: OntologyIrParameterPrefill;\n};\n\nexport type ConstraintOverride = {\n type: \"constraint\";\n condition: ConditionDefinition;\n constraint: ActionParameterAllowedValues;\n};\n\nexport type ActionParameterRequirementConstraint =\n | boolean\n | { listLength: { min?: number; max?: number } };\n\n// TODO(dpaquin): cleanup? or does \"type: foo\" actually make sense here\nexport type ActionParameterAllowedValues =\n | {\n type: \"oneOf\";\n oneOf: Array<OntologyIrLabelledValue>;\n otherValueAllowed?: boolean;\n }\n | {\n type: \"range\";\n min?: OntologyIrConditionValue;\n max?: OntologyIrConditionValue;\n }\n | { type: \"text\"; minLength?: number; maxLength?: number; regex?: string }\n | {\n type: \"datetime\";\n maximum?: OntologyIrParameterDateRangeValue;\n minimum?: OntologyIrParameterDateRangeValue;\n }\n | { type: \"objectTypeReference\"; interfaceTypes: Array<InterfaceTypeApiName> }\n | { type: \"objectQuery\" }\n | { type: \"attachment\" }\n | { type: \"boolean\" }\n | { type: \"objectSetRid\" }\n | { type: \"cbacMarking\" }\n | { type: \"mandatoryMarking\" }\n | { type: \"objectList\" }\n | { type: \"mediaReference\" }\n | { type: \"timeSeriesReference\" }\n | { type: \"geohash\" }\n | { type: \"geoshape\" }\n | { type: \"geotimeSeriesReference\" }\n | { type: \"interfaceObjectQuery\" }\n | { type: \"redacted\" };\n\nexport interface ActionTypeInner {\n apiName: ActionTypeApiName;\n displayName: string;\n description: string;\n icon: { locator: BlueprintIcon; color: string };\n parameters: Array<ActionParameter>;\n rules: Array<OntologyIrLogicRule>;\n sections: Record<SectionId, ActionSection>;\n status: ActionStatus;\n entities: OntologyIrActionTypeEntities;\n parameterOrdering: Array<string>;\n formContentOrdering: Array<OntologyIrFormContent>;\n validation: Array<OntologyIrValidationRule>;\n typeClasses: Array<TypeClass>;\n defaultFormat: DisplayMetadataConfigurationDefaultLayout;\n enableLayoutSwitch: boolean;\n displayAndFormat: DisplayMetadataConfigurationDisplayAndFormat;\n submissionMetadata: SubmissionMetadata;\n}\n\nexport type ActionValidationRule = OntologyIrValidationRule;\n\nexport type ActionLevelValidationDefinition = Array<ActionLevelValidationRule>;\n\nexport type ActionLevelValidationRule = {\n condition: ConditionDefinition;\n displayMetadata?: ValidationRuleDisplayMetadata;\n};\n\nexport type GroupValidationRule = {\n type: \"group\";\n name: string;\n};\n\nexport type ParameterValidationRule = {\n type: \"parameter\";\n parameterId: string;\n matches: OntologyIrConditionValue;\n};\n\nexport type ActionStatus =\n | \"active\"\n | \"experimental\"\n | \"example\"\n | ActionTypeStatus_deprecated;\n\nexport type { InterfaceTypeStatus };\n\nexport type ObjectTypeStatus =\n | \"active\"\n | \"experimental\"\n | {\n type: \"deprecated\";\n message: string;\n deadline: string;\n };\n\nexport type RequiredFields<T, K extends keyof T> = T & Required<Pick<T, K>>;\nexport type OptionalFields<T, K extends keyof T> =\n & Pick<Partial<T>, K>\n & Omit<T, K>;\n\nexport interface ObjectTypeInner extends\n Omit<\n OntologyIrObjectType,\n | \"titlePropertyTypeRid\"\n | \"propertyTypes\"\n | \"allImplementsInterfaces\"\n | \"implementsInterfaces2\"\n | \"displayMetadata\"\n | \"primaryKeys\"\n | \"status\"\n >\n{\n primaryKeyPropertyApiName: string;\n properties: Array<ObjectPropertyType>;\n titlePropertyApiName: string;\n implementsInterfaces: Array<InterfaceImplementation>;\n description: string | undefined;\n icon: { locator: BlueprintIcon; color: string } | undefined;\n displayName: string;\n pluralDisplayName: string;\n visibility: Visibility;\n editsEnabled: boolean;\n status?: ObjectTypeStatus;\n}\n\nexport type InterfaceImplementation = {\n implements: InterfaceType;\n propertyMapping: { interfaceProperty: string; mapsTo: string }[];\n};\n\nexport type ObjectType =\n & OntologyEntityBase\n & RequiredFields<\n Partial<ObjectTypeInner>,\n | \"apiName\"\n | \"primaryKeyPropertyApiName\"\n | \"displayName\"\n | \"pluralDisplayName\"\n | \"titlePropertyApiName\"\n >\n & {\n datasource?: ObjectTypeDatasourceDefinition;\n __type: OntologyEntityTypeEnum.OBJECT_TYPE;\n };\n\nexport type ObjectTypeDefinition = {\n apiName: string;\n primaryKeyPropertyApiName: string;\n displayName: string;\n pluralDisplayName: string;\n titlePropertyApiName: string;\n properties?: { [key: string]: ObjectPropertyTypeUserDefinition };\n implementsInterfaces?: Array<InterfaceImplementation>;\n description?: string;\n icon?: { locator: BlueprintIcon; color: string };\n visibility?: Visibility;\n editsEnabled?: boolean;\n status?: ObjectTypeStatus;\n datasource?: ObjectTypeDatasourceDefinition;\n};\n\nexport interface ObjectPropertyTypeInner extends\n Omit<\n OntologyIrPropertyType,\n | \"sharedPropertyTypeApiName\"\n | \"type\"\n | \"inlineAction\"\n | \"sharedPropertyTypeRid\"\n | \"valueType\"\n | \"ruleSetBinding\"\n | \"displayMetadata\"\n | \"dataConstraints\"\n | \"status\"\n >\n{\n type: PropertyTypeType;\n array?: boolean;\n valueType: ValueTypeDefinitionVersion;\n sharedPropertyType: SharedPropertyType;\n description: string | undefined;\n displayName: string;\n visibility: Visibility;\n nullability?: Nullability;\n status?: ObjectTypeStatus;\n editOnly?: boolean;\n}\n\nexport type ObjectPropertyType = RequiredFields<\n Partial<ObjectPropertyTypeInner>,\n \"apiName\" | \"type\" | \"displayName\"\n>;\n\nexport type ObjectPropertyTypeUserDefinition = RequiredFields<\n Partial<ObjectPropertyTypeInner>,\n \"type\"\n>;\n\nexport interface InterfacePropertyType {\n sharedPropertyType: SharedPropertyType;\n required: boolean;\n}\nexport interface InterfaceType extends\n OntologyEntityBase,\n Omit<\n OntologyIrMarketplaceInterfaceType,\n // we want our simplified representation\n | \"properties\"\n // these things don't need to exist as the system works fine without them (I'm told)\n | \"propertiesV2\"\n | \"propertiesV3\"\n | \"extendsInterfaces\"\n >\n{\n propertiesV2: Record<string, InterfacePropertyType>;\n extendsInterfaces: Array<InterfaceType>;\n status: InterfaceTypeStatus;\n __type: OntologyEntityTypeEnum.INTERFACE_TYPE;\n}\n\nexport interface PropertyType {\n type: PropertyTypeType;\n array?: boolean;\n description?: string;\n displayName?: string;\n valueType?: OntologyIrValueTypeReferenceWithMetadata;\n visibility?: Visibility;\n typeClasses?: TypeClass[];\n nullability?: Nullability;\n}\n\nexport interface Nullability {\n noEmptyCollections: boolean;\n noNulls: boolean;\n}\n\nexport type TypeClass = { kind: string; name: string };\n\nexport interface SharedPropertyType extends OntologyEntityBase, PropertyType {\n apiName: string;\n nonNameSpacedApiName: string;\n gothamMapping?: SharedPropertyTypeGothamMapping;\n __type: OntologyEntityTypeEnum.SHARED_PROPERTY_TYPE;\n}\n\nexport type PropertyTypeType =\n | PropertyTypeTypePrimitive\n | PropertyTypeTypeExotic;\n\nexport type PropertyTypeTypePrimitive =\n | \"boolean\"\n | \"byte\"\n | \"date\"\n | \"decimal\"\n | \"double\"\n | \"float\"\n | \"integer\"\n | \"long\"\n | \"short\"\n | \"string\"\n | \"timestamp\";\n\nexport type PropertyTypeTypeExotic =\n | \"geopoint\"\n | \"geoshape\"\n | \"mediaReference\"\n | \"geotimeSeries\"\n | PropertyTypeTypeMarking\n | PropertyTypeTypeStruct\n | PropertyTypeTypeString;\n\ntype PropertyTypeTypeMarking = {\n type: \"marking\";\n markingType: \"MANDATORY\" | \"CBAC\";\n markingInputGroupName: string;\n};\n\nexport type PropertyTypeTypeStruct = {\n type: \"struct\";\n structDefinition: {\n [api_name: string]:\n | StructPropertyType\n | Exclude<PropertyTypeTypesWithoutStruct, PropertyTypeTypeMarking>;\n };\n};\n\ntype PropertyTypeTypeString = {\n type: \"string\";\n isLongText: boolean;\n supportsEfficientLeadingWildcard: boolean;\n supportsExactMatching: boolean;\n};\n\nexport type PropertyTypeTypesWithoutStruct = Exclude<\n PropertyTypeType,\n PropertyTypeTypeStruct\n>;\n\ntype Optional<T, K extends keyof T> = Pick<Partial<T>, K> & Omit<T, K>;\n\nexport interface StructPropertyType extends\n Optional<\n Omit<\n StructFieldType,\n \"fieldType\" | \"structFieldRid\" | \"apiName\"\n >,\n \"typeClasses\" | \"aliases\"\n >\n{\n fieldType: PropertyTypeTypesWithoutStruct;\n}\n\nexport type ObjectTypePropertyApiName = string;\nexport type LinkTypeId = string;\n\nexport type LinkType =\n | (OntologyEntityBase & OneToManyLinkTypeDefinition & {\n __type: OntologyEntityTypeEnum.LINK_TYPE;\n })\n | (OntologyEntityBase & ManyToManyLinkTypeDefinition & {\n __type: OntologyEntityTypeEnum.LINK_TYPE;\n });\n\nexport type LinkTypeDefinition =\n | Omit<\n OntologyEntityBase & OneToManyLinkTypeUserDefinition & {\n __type: OntologyEntityTypeEnum.LINK_TYPE;\n },\n \"__type\"\n >\n | Omit<\n OntologyEntityBase & ManyToManyLinkTypeUserDefinition & {\n __type: OntologyEntityTypeEnum.LINK_TYPE;\n },\n \"__type\"\n >;\n\nexport interface OneToManyLinkTypeDefinition {\n apiName: LinkTypeId;\n one: OneToManyObjectLinkReference;\n toMany: OneToManyObjectLinkReference;\n manyForeignKeyProperty: ObjectTypePropertyApiName;\n cardinality: \"OneToMany\" | \"OneToOne\" | undefined;\n editsEnabled?: boolean;\n status?: OntologyIrLinkTypeStatus;\n redacted?: boolean;\n}\n\nexport interface OneToManyObjectLinkReference {\n object: ObjectTypeDefinition;\n metadata: LinkTypeMetadata;\n}\n\nexport interface OneToManyLinkTypeUserDefinition {\n apiName: LinkTypeId;\n one: OneToManyObjectLinkReferenceUserDefinition;\n toMany: OneToManyObjectLinkReferenceUserDefinition;\n manyForeignKeyProperty: ObjectTypePropertyApiName;\n cardinality?: \"OneToMany\" | \"OneToOne\" | undefined;\n}\n\nexport interface OneToManyObjectLinkReferenceUserDefinition {\n object: ObjectTypeDefinition;\n metadata: LinkTypeMetadataUserDefinition;\n}\n\nexport interface ManyToManyLinkTypeDefinition {\n apiName: LinkTypeId;\n many: ManyToManyObjectLinkReference;\n toMany: ManyToManyObjectLinkReference;\n editsEnabled?: boolean;\n status?: OntologyIrLinkTypeStatus;\n redacted?: boolean;\n}\n\nexport interface ManyToManyObjectLinkReference {\n object: ObjectTypeDefinition;\n metadata: LinkTypeMetadata;\n}\n\nexport interface ManyToManyLinkTypeUserDefinition {\n apiName: LinkTypeId;\n many: ManyToManyObjectLinkReferenceUserDefinition;\n toMany: ManyToManyObjectLinkReferenceUserDefinition;\n}\n\nexport interface ManyToManyObjectLinkReferenceUserDefinition {\n object: ObjectTypeDefinition;\n metadata: LinkTypeMetadataUserDefinition;\n}\n\nexport interface LinkTypeMetadataUserDefinition {\n apiName: string;\n displayName?: string;\n pluralDisplayName?: string;\n visibility?: Visibility;\n groupDisplayName?: string;\n}\n\nexport type LinkSideMetadata = OptionalFields<\n RequiredFields<\n Omit<LinkTypeMetadata, \"displayMetadata\"> & LinkTypeDisplayMetadata,\n \"apiName\"\n >,\n \"visibility\" | \"typeClasses\"\n>;\nexport interface ValueTypeType_array {\n constraints: {\n constraint: Extract<DataConstraint, { type: \"array\" }>[\"array\"];\n failureMessage?: FailureMessage;\n }[];\n type: \"array\";\n value: {\n type: \"array\";\n elementType: ValueTypeType[\"value\"];\n };\n}\n\nexport interface ValueTypeType_boolean {\n constraints: {\n constraint: Extract<DataConstraint, { type: \"boolean\" }>[\"boolean\"];\n failureMessage?: FailureMessage;\n }[];\n type: \"boolean\";\n value: \"boolean\";\n}\n\nexport interface ValueTypeType_binary {\n constraints: {\n constraint: Extract<DataConstraint, { type: \"binary\" }>[\"binary\"];\n failureMessage?: FailureMessage;\n }[];\n type: \"binary\";\n value: \"binary\";\n}\n\nexport interface ValueTypeType_byte {\n constraints: {\n constraint: Extract<DataConstraint, { type: \"byte\" }>[\"byte\"];\n failureMessage?: FailureMessage;\n }[];\n type: \"byte\";\n value: \"byte\";\n}\n\nexport interface ValueTypeType_date {\n constraints: {\n constraint: Extract<DataConstraint, { type: \"date\" }>[\"date\"];\n failureMessage?: FailureMessage;\n }[];\n type: \"date\";\n value: \"date\";\n}\n\nexport interface ValueTypeType_decimal {\n constraints: {\n constraint: Extract<DataConstraint, { type: \"decimal\" }>[\"decimal\"];\n failureMessage?: FailureMessage;\n }[];\n type: \"decimal\";\n value: \"decimal\";\n}\n\nexport interface ValueTypeType_double {\n constraints: {\n constraint: Extract<DataConstraint, { type: \"double\" }>[\"double\"];\n failureMessage?: FailureMessage;\n }[];\n type: \"double\";\n value: \"double\";\n}\n\nexport interface ValueTypeType_float {\n constraints: {\n constraint: Extract<DataConstraint, { type: \"float\" }>[\"float\"];\n failureMessage?: FailureMessage;\n }[];\n type: \"float\";\n value: \"float\";\n}\n\nexport interface ValueTypeType_integer {\n constraints: {\n constraint: Extract<DataConstraint, { type: \"integer\" }>[\"integer\"];\n failureMessage?: FailureMessage;\n }[];\n type: \"integer\";\n value: \"integer\";\n}\n\nexport interface ValueTypeType_long {\n constraints: {\n constraint: Extract<DataConstraint, { type: \"long\" }>[\"long\"];\n failureMessage?: FailureMessage;\n }[];\n type: \"long\";\n value: \"long\";\n}\n\nexport interface ValueTypeType_map {\n constraints: {\n constraint: Extract<DataConstraint, { type: \"map\" }>[\"map\"];\n failureMessage?: FailureMessage;\n }[];\n type: \"map\";\n value: {\n type: \"map\";\n keyType: ValueTypeType[\"value\"];\n valueType: ValueTypeType[\"value\"];\n };\n}\n\nexport interface ValueTypeType_optional {\n constraints: {\n constraint: Extract<DataConstraint, { type: \"optional\" }>[\"optional\"];\n failureMessage?: FailureMessage;\n }[];\n type: \"optional\";\n value: {\n type: \"optional\";\n wrappedType: ValueTypeType[\"value\"];\n };\n}\n\nexport interface ValueTypeType_short {\n constraints: {\n constraint: Extract<DataConstraint, { type: \"short\" }>[\"short\"];\n failureMessage?: FailureMessage;\n }[];\n type: \"short\";\n value: \"short\";\n}\n\nexport interface ValueTypeType_string {\n constraints: {\n constraint: Extract<DataConstraint, { type: \"string\" }>[\"string\"];\n failureMessage?: FailureMessage;\n }[];\n type: \"string\";\n value: \"string\";\n}\n\nexport interface ValueTypeType_structV2 {\n constraints: {\n constraint: Extract<DataConstraint, { type: \"structV2\" }>[\"structV2\"];\n failureMessage?: FailureMessage;\n }[];\n type: \"structV2\";\n value: {\n type: \"struct\";\n fields: Array<{\n identifier: string;\n baseType: ValueTypeType[\"value\"];\n }>;\n };\n}\nexport interface ValueTypeType_timestamp {\n constraints: {\n constraint: Extract<DataConstraint, { type: \"timestamp\" }>[\"timestamp\"];\n failureMessage?: FailureMessage;\n }[];\n type: \"timestamp\";\n value: \"timestamp\";\n}\n\nexport type ValueTypeType =\n | ValueTypeType_array\n | ValueTypeType_boolean\n | ValueTypeType_binary\n | ValueTypeType_byte\n | ValueTypeType_date\n | ValueTypeType_decimal\n | ValueTypeType_double\n | ValueTypeType_float\n | ValueTypeType_integer\n | ValueTypeType_long\n | ValueTypeType_map\n | ValueTypeType_optional\n | ValueTypeType_short\n | ValueTypeType_string\n | ValueTypeType_structV2\n | ValueTypeType_timestamp;\n\nexport type ValueTypeDefinitionVersion = OntologyEntityBase & {\n apiName: ValueTypeApiName;\n packageNamespace: string;\n displayMetadata: ValueTypeDisplayMetadata;\n status: ValueTypeStatus;\n version: ValueTypeVersion;\n baseType: BaseType;\n constraints: ValueTypeDataConstraint[];\n exampleValues: ExampleValue[];\n __type: OntologyEntityTypeEnum.VALUE_TYPE;\n};\n\nexport interface ObjectTypeDatasourceDefinition_dataset {\n type: \"dataset\";\n}\n\nexport interface ObjectTypeDatasourceDefinition_stream {\n type: \"stream\";\n // Retention period must be in ISO 8601 duration format\n retentionPeriod?: string;\n}\n\nexport interface ObjectTypeDatasourceDefinition_restrictedView {\n type: \"restrictedView\";\n}\n\nexport type ObjectTypeDatasourceDefinition =\n | ObjectTypeDatasourceDefinition_stream\n | ObjectTypeDatasourceDefinition_dataset\n | ObjectTypeDatasourceDefinition_restrictedView;\n\nexport type ActionParameterTypePrimitive =\n | \"boolean\"\n | \"booleanList\"\n | \"integer\"\n | \"integerList\"\n | \"long\"\n | \"longList\"\n | \"double\"\n | \"doubleList\"\n | \"string\"\n | \"stringList\"\n | \"decimal\"\n | \"decimalList\"\n | \"timestamp\"\n | \"timestampList\"\n | \"geohash\"\n | \"geohashList\"\n | \"geoshape\"\n | \"geoshapeList\"\n | \"timeSeriesReference\"\n | \"date\"\n | \"dateList\"\n | \"objectTypeReference\"\n | \"attachment\"\n | \"attachmentList\"\n | \"marking\"\n | \"markingList\"\n | \"mediaReference\"\n | \"mediaReferenceList\"\n | \"geotimeSeriesReference\"\n | \"geotimeSeriesReferenceList\";\n\nexport type ActionParameterTypeComplex =\n | OntologyIrBaseParameterType_decimal\n | OntologyIrBaseParameterType_decimalList\n | OntologyIrBaseParameterType_timestamp\n | OntologyIrBaseParameterType_timestampList\n | OntologyIrBaseParameterType_objectReference\n | OntologyIrBaseParameterType_objectReferenceList\n | OntologyIrBaseParameterType_objectSetRid\n | OntologyIrBaseParameterType_objectTypeReference\n | OntologyIrBaseParameterType_objectReference\n | OntologyIrBaseParameterType_interfaceReference\n | OntologyIrBaseParameterType_interfaceReferenceList\n | OntologyIrBaseParameterType_struct\n | OntologyIrBaseParameterType_structList;\n\nexport type ActionParameterType =\n | ActionParameterTypePrimitive\n | ActionParameterTypeComplex;\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAmEA,WAAYA,sBAAsB,0BAAtBA,sBAAsB;EAAtBA,sBAAsB;EAAtBA,sBAAsB;EAAtBA,sBAAsB;EAAtBA,sBAAsB;EAAtBA,sBAAsB;EAAtBA,sBAAsB;EAAA,OAAtBA,sBAAsB;AAAA;AA8DlC,OAAO,MAAMC,uBAA+B,GAAG,yBAAyB;AAExE,OAAO,MAAMC,iCAAyC,GACpD,iCAAiC;;AA0EnC;;AAoDA","ignoreList":[]}
@@ -23,7 +23,7 @@ import { hideBin } from "yargs/helpers";
23
23
  import { defineOntology } from "../api/defineOntology.js";
24
24
  const apiNamespaceRegex = /^[a-z0-9-]+(\.[a-z0-9-]+)*\.$/;
25
25
  export default async function main(args = process.argv) {
26
- const commandLineOpts = await yargs(hideBin(args)).version("0.13.0-beta.4" ?? "").wrap(Math.min(150, yargs().terminalWidth())).strict().help().options({
26
+ const commandLineOpts = await yargs(hideBin(args)).version("0.13.0-beta.6" ?? "").wrap(Math.min(150, yargs().terminalWidth())).strict().help().options({
27
27
  input: {
28
28
  alias: "i",
29
29
  describe: "Input file",
@@ -75,12 +75,18 @@ export default async function main(args = process.argv) {
75
75
  !apiNamespaceRegex.test(apiNamespace) ? process.env.NODE_ENV !== "production" ? invariant(false, "API namespace is invalid! It is expected to conform to ^[a-z0-9-]+(\.[a-z0-9-]+)*\.$") : invariant(false) : void 0;
76
76
  }
77
77
  consola.info(`Loading ontology from ${commandLineOpts.input}`);
78
- const ontology = await loadOntology(commandLineOpts.input, apiNamespace, commandLineOpts.outputDir, commandLineOpts.dependencies);
78
+ const ontologyIr = await loadOntology(commandLineOpts.input, apiNamespace, commandLineOpts.outputDir, commandLineOpts.dependencies);
79
79
  consola.info(`Saving ontology to ${commandLineOpts.output}`);
80
- await fs.writeFile(commandLineOpts.output, JSON.stringify(ontology.ontology, null, 2));
80
+ await fs.writeFile(commandLineOpts.output, JSON.stringify({
81
+ ontology: ontologyIr.ontology,
82
+ importedOntology: ontologyIr.importedOntology
83
+ }, null, 2));
81
84
  // No point in generating block if there aren't any value types
82
- if (ontology.valueType.valueTypes.length > 0) {
83
- await fs.writeFile(commandLineOpts.valueTypesOutput, JSON.stringify(ontology.valueType, null, 2));
85
+ if (ontologyIr.valueTypes.valueTypes.length > 0 || ontologyIr.importedValueTypes.valueTypes.length > 0) {
86
+ await fs.writeFile(commandLineOpts.valueTypesOutput, JSON.stringify({
87
+ valueTypes: ontologyIr.valueTypes,
88
+ importedValueTypes: ontologyIr.importedValueTypes
89
+ }, null, 2));
84
90
  }
85
91
  }
86
92
  async function loadOntology(input, apiNamespace, outputDir, dependencyFile) {
@@ -1 +1 @@
1
- {"version":3,"file":"main.js","names":["consola","fs","path","invariant","yargs","hideBin","defineOntology","apiNamespaceRegex","main","args","process","argv","commandLineOpts","version","wrap","Math","min","terminalWidth","strict","help","options","input","alias","describe","type","default","coerce","resolve","output","apiNamespace","snapshotDir","outputDir","valueTypesOutput","dependencies","parseAsync","length","slice","env","NODE_ENV","test","info","ontology","loadOntology","writeFile","JSON","stringify","valueType","valueTypes","dependencyFile","q"],"sources":["main.ts"],"sourcesContent":["/*\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 { consola } from \"consola\";\nimport * as fs from \"node:fs/promises\";\nimport * as path from \"node:path\";\nimport invariant from \"tiny-invariant\";\nimport yargs from \"yargs\";\nimport { hideBin } from \"yargs/helpers\";\nimport { defineOntology } from \"../api/defineOntology.js\";\n\nconst apiNamespaceRegex = /^[a-z0-9-]+(\\.[a-z0-9-]+)*\\.$/;\n\nexport default async function main(\n args: string[] = process.argv,\n): Promise<void> {\n const commandLineOpts: {\n input: string;\n output: string;\n apiNamespace: string;\n snapshotDir: string;\n valueTypesOutput: string;\n outputDir?: string;\n dependencies?: string;\n } = await yargs(hideBin(args))\n .version(process.env.PACKAGE_VERSION ?? \"\")\n .wrap(Math.min(150, yargs().terminalWidth()))\n .strict()\n .help()\n .options({\n input: {\n alias: \"i\",\n describe: \"Input file\",\n type: \"string\",\n default: \".ontology/ontology.ts\",\n coerce: path.resolve,\n },\n output: {\n alias: \"o\",\n describe: \"Output file\",\n type: \"string\",\n default: \"ontology.json\",\n coerce: path.resolve,\n },\n apiNamespace: {\n describe: \"Api name prefix for namespaced ontology types\",\n type: \"string\",\n default: \"\",\n },\n snapshotDir: {\n alias: \"s\",\n describe: \"Snapshot directory\",\n type: \"string\",\n default: \"snapshots\",\n coerce: path.resolve,\n },\n outputDir: {\n alias: \"d\",\n describe: \"Directory for generated ontology entities\",\n type: \"string\",\n coerce: path.resolve,\n },\n valueTypesOutput: {\n describe: \"Value Type Output File\",\n type: \"string\",\n default: \"value-types.json\",\n coerce: path.resolve,\n },\n dependencies: {\n describe: \"File to write dependencies to\",\n type: \"string\",\n coerce: path.resolve,\n },\n })\n .parseAsync();\n let apiNamespace = \"\";\n if (commandLineOpts.apiNamespace.length !== 0) {\n apiNamespace = (commandLineOpts.apiNamespace.slice(-1) !== \".\")\n ? commandLineOpts.apiNamespace + \".\"\n : commandLineOpts.apiNamespace;\n invariant(apiNamespace.length < 1024, \"API namespace is too long.\");\n invariant(\n apiNamespaceRegex.test(apiNamespace),\n \"API namespace is invalid! It is expected to conform to ^[a-z0-9-]+(\\.[a-z0-9-]+)*\\.$\",\n );\n }\n consola.info(`Loading ontology from ${commandLineOpts.input}`);\n\n const ontology = await loadOntology(\n commandLineOpts.input,\n apiNamespace,\n commandLineOpts.outputDir,\n commandLineOpts.dependencies,\n );\n\n consola.info(`Saving ontology to ${commandLineOpts.output}`);\n await fs.writeFile(\n commandLineOpts.output,\n JSON.stringify(ontology.ontology, null, 2),\n );\n // No point in generating block if there aren't any value types\n if (ontology.valueType.valueTypes.length > 0) {\n await fs.writeFile(\n commandLineOpts.valueTypesOutput,\n JSON.stringify(ontology.valueType, null, 2),\n );\n }\n}\n\nasync function loadOntology(\n input: string,\n apiNamespace: string,\n outputDir: string | undefined,\n dependencyFile: string | undefined,\n) {\n const q = await defineOntology(\n apiNamespace,\n async () => await import(input),\n outputDir,\n dependencyFile,\n );\n return q;\n}\n"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"file":"main.js","names":["consola","fs","path","invariant","yargs","hideBin","defineOntology","apiNamespaceRegex","main","args","process","argv","commandLineOpts","version","wrap","Math","min","terminalWidth","strict","help","options","input","alias","describe","type","default","coerce","resolve","output","apiNamespace","snapshotDir","outputDir","valueTypesOutput","dependencies","parseAsync","length","slice","env","NODE_ENV","test","info","ontologyIr","loadOntology","writeFile","JSON","stringify","ontology","importedOntology","valueTypes","importedValueTypes","dependencyFile","q"],"sources":["main.ts"],"sourcesContent":["/*\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 { consola } from \"consola\";\nimport * as fs from \"node:fs/promises\";\nimport * as path from \"node:path\";\nimport invariant from \"tiny-invariant\";\nimport yargs from \"yargs\";\nimport { hideBin } from \"yargs/helpers\";\nimport { defineOntology } from \"../api/defineOntology.js\";\n\nconst apiNamespaceRegex = /^[a-z0-9-]+(\\.[a-z0-9-]+)*\\.$/;\n\nexport default async function main(\n args: string[] = process.argv,\n): Promise<void> {\n const commandLineOpts: {\n input: string;\n output: string;\n apiNamespace: string;\n snapshotDir: string;\n valueTypesOutput: string;\n outputDir?: string;\n dependencies?: string;\n } = await yargs(hideBin(args))\n .version(process.env.PACKAGE_VERSION ?? \"\")\n .wrap(Math.min(150, yargs().terminalWidth()))\n .strict()\n .help()\n .options({\n input: {\n alias: \"i\",\n describe: \"Input file\",\n type: \"string\",\n default: \".ontology/ontology.ts\",\n coerce: path.resolve,\n },\n output: {\n alias: \"o\",\n describe: \"Output file\",\n type: \"string\",\n default: \"ontology.json\",\n coerce: path.resolve,\n },\n apiNamespace: {\n describe: \"Api name prefix for namespaced ontology types\",\n type: \"string\",\n default: \"\",\n },\n snapshotDir: {\n alias: \"s\",\n describe: \"Snapshot directory\",\n type: \"string\",\n default: \"snapshots\",\n coerce: path.resolve,\n },\n outputDir: {\n alias: \"d\",\n describe: \"Directory for generated ontology entities\",\n type: \"string\",\n coerce: path.resolve,\n },\n valueTypesOutput: {\n describe: \"Value Type Output File\",\n type: \"string\",\n default: \"value-types.json\",\n coerce: path.resolve,\n },\n dependencies: {\n describe: \"File to write dependencies to\",\n type: \"string\",\n coerce: path.resolve,\n },\n })\n .parseAsync();\n let apiNamespace = \"\";\n if (commandLineOpts.apiNamespace.length !== 0) {\n apiNamespace = (commandLineOpts.apiNamespace.slice(-1) !== \".\")\n ? commandLineOpts.apiNamespace + \".\"\n : commandLineOpts.apiNamespace;\n invariant(apiNamespace.length < 1024, \"API namespace is too long.\");\n invariant(\n apiNamespaceRegex.test(apiNamespace),\n \"API namespace is invalid! It is expected to conform to ^[a-z0-9-]+(\\.[a-z0-9-]+)*\\.$\",\n );\n }\n consola.info(`Loading ontology from ${commandLineOpts.input}`);\n\n const ontologyIr = await loadOntology(\n commandLineOpts.input,\n apiNamespace,\n commandLineOpts.outputDir,\n commandLineOpts.dependencies,\n );\n\n consola.info(`Saving ontology to ${commandLineOpts.output}`);\n await fs.writeFile(\n commandLineOpts.output,\n JSON.stringify(\n {\n ontology: ontologyIr.ontology,\n importedOntology: ontologyIr.importedOntology,\n },\n null,\n 2,\n ),\n );\n // No point in generating block if there aren't any value types\n if (\n ontologyIr.valueTypes.valueTypes.length > 0\n || ontologyIr.importedValueTypes.valueTypes.length > 0\n ) {\n await fs.writeFile(\n commandLineOpts.valueTypesOutput,\n JSON.stringify(\n {\n valueTypes: ontologyIr.valueTypes,\n importedValueTypes: ontologyIr.importedValueTypes,\n },\n null,\n 2,\n ),\n );\n }\n}\n\nasync function loadOntology(\n input: string,\n apiNamespace: string,\n outputDir: string | undefined,\n dependencyFile: string | undefined,\n) {\n const q = await defineOntology(\n apiNamespace,\n async () => await import(input),\n outputDir,\n dependencyFile,\n );\n return q;\n}\n"],"mappings":"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","ignoreList":[]}
@@ -1 +1 @@
1
- {"mappings":"AAmCA,cACO,sCAKA,iBACA,2BACA,+BAIA,oBAIA,4BAKA,YAAa;AAEpB,OAAO,iBAAS,kCACdA,eAAe,eACfC,aAAa,sBACbC,aAAa,kCACZ;AAkGH,OAAO,iBAAS,yBACdC,KAAK,2BACJ;AAiFH,OAAO,iBAAS,kCACdH,eAAe,eACfC,aAAa,sBACbC,aAAa,kCACZ;AA8FH,OAAO,iBAAS,yBACdC,KAAK,2BACJ;AA2GH,OAAO,iBAAS,yBACdA,KAAK,2BACJ;AA4CH,OAAO,iBAAS,iCACdA,KAAK,2BACJ;AA8GH,OAAO,iBAAS,aAAaC,WAAW,uBAAuB","names":["interfaceType: InterfaceType","objectType?: ObjectTypeDefinition","validation?: ActionLevelValidationDefinition","def: ActionTypeUserDefinition","actionDef: ActionTypeDefinition"],"sources":["../../../src/api/defineAction.ts"],"version":3,"file":"defineAction.d.ts"}
1
+ {"mappings":"AAmCA,cACO,sCAKA,iBACA,2BACA,+BAIA,oBAIA,4BAKA,YAAa;AAEpB,OAAO,iBAAS,kCACdA,eAAe,eACfC,aAAa,sBACbC,aAAa,kCACZ;AAgGH,OAAO,iBAAS,yBACdC,KAAK,2BACJ;AA+EH,OAAO,iBAAS,kCACdH,eAAe,eACfC,aAAa,sBACbC,aAAa,kCACZ;AA4FH,OAAO,iBAAS,yBACdC,KAAK,2BACJ;AAyGH,OAAO,iBAAS,yBACdA,KAAK,2BACJ;AA0CH,OAAO,iBAAS,iCACdA,KAAK,2BACJ;AA4GH,OAAO,iBAAS,aAAaC,WAAW,uBAAuB","names":["interfaceType: InterfaceType","objectType?: ObjectTypeDefinition","validation?: ActionLevelValidationDefinition","def: ActionTypeUserDefinition","actionDef: ActionTypeDefinition"],"sources":["../../../src/api/defineAction.ts"],"version":3,"file":"defineAction.d.ts"}
@@ -1,11 +1,7 @@
1
1
  import type { OntologyIr, OntologyIrAllowedParameterValues, OntologyIrValueTypeBlockData } from "@osdk/client.unstable";
2
2
  import type { ActionParameterAllowedValues, OntologyEntityType } from "./types.js";
3
- type OntologyAndValueTypeIrs = {
4
- ontology: OntologyIr
5
- valueType: OntologyIrValueTypeBlockData
6
- };
7
3
  export declare function updateOntology<T extends OntologyEntityType>(entity: T): void;
8
- export declare function defineOntology(ns: string, body: () => void | Promise<void>, outputDir: string | undefined, dependencyFile?: string): Promise<OntologyAndValueTypeIrs>;
4
+ export declare function defineOntology(ns: string, body: () => void | Promise<void>, outputDir: string | undefined, dependencyFile?: string): Promise<OntologyIr>;
9
5
  export declare function writeStaticObjects(outputDir: string): void;
10
6
  export declare function dumpOntologyFullMetadata(): OntologyIr;
11
7
  export declare function dumpValueTypeWireType(): OntologyIrValueTypeBlockData;
@@ -14,4 +10,3 @@ export declare function sanitize(namespace: string, s: string): string;
14
10
  export declare function extractNamespace(apiName: string): string;
15
11
  export declare function withoutNamespace(apiName: string): string;
16
12
  export declare function addNamespaceIfNone(apiName: string): string;
17
- export {};
@@ -1 +1 @@
1
- {"mappings":"AAgBA,cAGE,YAGA,kCAkBA,oCAQK,uBAAwB;AAqB/B,cAEE,8BASA,0BAEK,YAAa;KAkBf,0BAA0B;CAC7B,UAAU;CACV,WAAW;AACZ;AAED,OAAO,iBAAS,eACd,UAAU,oBAEVA,QAAQ;AAiBV,OAAO,iBAAe,eACpBC,YACAC,mBAAmB,eACnBC,+BACAC,0BACC,QAAQ;AA0CX,OAAO,iBAAS,mBAAmBC;AAysBnC,OAAO,iBAAS,4BAA4B;AAI5C,OAAO,iBAAS,yBAAyB;AA2RzC,OAAO,iBAAS,qBACdC,eAAe,+BACd;AAqLH,OAAO,iBAAS,SAASC,mBAAmBC;AAI5C,OAAO,iBAAS,iBAAiBC;AAIjC,OAAO,iBAAS,iBAAiBA;AA8CjC,OAAO,iBAAS,mBAAmBA","names":["entity: T","ns: string","body: () => void | Promise<void>","outputDir: string | undefined","dependencyFile?: string","outputDir: string","allowedValues: ActionParameterAllowedValues","namespace: string","s: string","apiName: string"],"sources":["../../../src/api/defineOntology.ts"],"version":3,"file":"defineOntology.d.ts"}
1
+ {"mappings":"AAgBA,cAGE,YAGA,kCAiBA,oCAQK,uBAAwB;AAqB/B,cAEE,8BASA,0BAGK,YAAa;AAkBpB,OAAO,iBAAS,eACd,UAAU,oBAEVA,QAAQ;AAiBV,OAAO,iBAAe,eACpBC,YACAC,mBAAmB,eACnBC,+BACAC,0BACC,QAAQ;AAuCX,OAAO,iBAAS,mBAAmBC;AAinBnC,OAAO,iBAAS,4BAA4B;AAI5C,OAAO,iBAAS,yBAAyB;AA6RzC,OAAO,iBAAS,qBACdC,eAAe,+BACd;AAqLH,OAAO,iBAAS,SAASC,mBAAmBC;AAI5C,OAAO,iBAAS,iBAAiBC;AAIjC,OAAO,iBAAS,iBAAiBA;AA8CjC,OAAO,iBAAS,mBAAmBA","names":["entity: T","ns: string","body: () => void | Promise<void>","outputDir: string | undefined","dependencyFile?: string","outputDir: string","allowedValues: ActionParameterAllowedValues","namespace: string","s: string","apiName: string"],"sources":["../../../src/api/defineOntology.ts"],"version":3,"file":"defineOntology.d.ts"}
@@ -1,4 +1,4 @@
1
- import type { SharedPropertyTypeGothamMapping, ValueTypeApiNameReference, Visibility } from "@osdk/client.unstable";
1
+ import type { OntologyIrValueTypeReferenceWithMetadata, SharedPropertyTypeGothamMapping, Visibility } from "@osdk/client.unstable";
2
2
  import { type PropertyTypeType, type SharedPropertyType } from "./types.js";
3
3
  export interface SharedPropertyTypeDefinition {
4
4
  apiName: string;
@@ -6,7 +6,7 @@ export interface SharedPropertyTypeDefinition {
6
6
  array?: boolean;
7
7
  description?: string;
8
8
  displayName?: string;
9
- valueType?: ValueTypeApiNameReference;
9
+ valueType?: OntologyIrValueTypeReferenceWithMetadata;
10
10
  visibility?: Visibility;
11
11
  typeClasses?: SharedPropertyType["typeClasses"];
12
12
  gothamMapping?: SharedPropertyTypeGothamMapping;
@@ -1 +1 @@
1
- {"mappings":"AAgBA,cACE,iCACA,2BACA,kBACK,uBAAwB;AAa/B,cAEO,uBACA,0BACA,YAAa;AAEpB,iBAAiB,6BAA6B;CAC5C;CACA,MAAM;CACN;CACA;CACA;CACA,YAAY;CACZ,aAAa;CACb,cAAc,mBAAmB;CACjC,gBAAgB;AACjB;AAED,OAAO,iBAAS,yBACdA,QAAQ,+BACP","names":["sptDef: SharedPropertyTypeDefinition"],"sources":["../../../src/api/defineSpt.ts"],"version":3,"file":"defineSpt.d.ts"}
1
+ {"mappings":"AAgBA,cACE,0CACA,iCACA,kBACK,uBAAwB;AAa/B,cAEO,uBACA,0BACA,YAAa;AAEpB,iBAAiB,6BAA6B;CAC5C;CACA,MAAM;CACN;CACA;CACA;CACA,YAAY;CACZ,aAAa;CACb,cAAc,mBAAmB;CACjC,gBAAgB;AACjB;AAED,OAAO,iBAAS,yBACdA,QAAQ,+BACP","names":["sptDef: SharedPropertyTypeDefinition"],"sources":["../../../src/api/defineSpt.ts"],"version":3,"file":"defineSpt.d.ts"}
@@ -1,10 +1,10 @@
1
- import type { DataConstraint, DataConstraints, OntologyIrType, PropertyTypeDataConstraints, ValueTypeApiNameReference, ValueTypeDataConstraint } from "@osdk/client.unstable";
1
+ import type { DataConstraint, DataConstraints, OntologyIrType, OntologyIrValueTypeReferenceWithMetadata, PropertyTypeDataConstraints, ValueTypeDataConstraint } from "@osdk/client.unstable";
2
2
  import type { Nullability, PropertyTypeType, TypeClass, ValueTypeDefinitionVersion } from "./types.js";
3
3
  export declare const defaultTypeClasses: TypeClass[];
4
4
  export declare function shouldNotHaveRenderHints(type: PropertyTypeType): boolean;
5
5
  export declare function hasRenderHints(typeClasses: TypeClass[] | undefined): boolean;
6
6
  export declare function getPropertyTypeName(type: PropertyTypeType): string;
7
- export declare function convertValueType(valueType: ValueTypeDefinitionVersion): ValueTypeApiNameReference;
7
+ export declare function convertValueType(valueType: ValueTypeDefinitionVersion): OntologyIrValueTypeReferenceWithMetadata;
8
8
  export declare function convertValueTypeDataConstraints(dataConstraints: ValueTypeDataConstraint[]): DataConstraints | undefined;
9
9
  export declare function dataConstraintToPropertyTypeDataConstraint(dc: DataConstraint): PropertyTypeDataConstraints;
10
10
  export declare function convertDataConstraintToDataConstraints(dc: DataConstraint): DataConstraints;
@@ -1 +1 @@
1
- {"mappings":"AAgBA,cACE,gBACA,iBAEA,gBACA,6BAcA,2BACA,+BACK,uBAAwB;AAE/B,cACE,aACA,kBACA,WACA,kCACK,YAAa;AAEpB,OAAO,cAAMA,oBAAoB;AAMjC,OAAO,iBAAS,yBAAyBC,MAAM;AAM/C,OAAO,iBAAS,eAAeC,aAAa;AAM5C,OAAO,iBAAS,oBAAoBD,MAAM;AAI1C,OAAO,iBAAS,iBACdE,WAAW,6BACV;AAOH,OAAO,iBAAS,gCACdC,iBAAiB,4BAChB;AAoBH,OAAO,iBAAS,2CACdC,IAAI,iBACH;AAmEH,OAAO,iBAAS,uCACdA,IAAI,iBACH;AAWH,OAAO,iBAAS,mCACdC,MAAM;CAAE,MAAM;CAAkB,cAAc;AAAa,IAC1D;AA0BH,OAAO,iBAAS,YACdL,MAAM,mBACL;;;;;;;AAyGH,OAAO,iBAAS,qBAAqB,kBACnCM,MAAM,IACL,gBAAgB;CAAE,MAAM;AAAG,OAAM,KAAK,KAAI,CAAE","names":["defaultTypeClasses: TypeClass[]","type: PropertyTypeType","typeClasses: TypeClass[] | undefined","valueType: ValueTypeDefinitionVersion","dataConstraints: ValueTypeDataConstraint[]","dc: DataConstraint","prop: { type: PropertyTypeType; nullability?: Nullability }","type: T"],"sources":["../../../src/api/propertyConversionUtils.ts"],"version":3,"file":"propertyConversionUtils.d.ts"}
1
+ {"mappings":"AAgBA,cACE,gBACA,iBAEA,gBACA,0CACA,6BAcA,+BACK,uBAAwB;AAE/B,cACE,aACA,kBACA,WACA,kCACK,YAAa;AAEpB,OAAO,cAAMA,oBAAoB;AAMjC,OAAO,iBAAS,yBAAyBC,MAAM;AAM/C,OAAO,iBAAS,eAAeC,aAAa;AAM5C,OAAO,iBAAS,oBAAoBD,MAAM;AAI1C,OAAO,iBAAS,iBACdE,WAAW,6BACV;AASH,OAAO,iBAAS,gCACdC,iBAAiB,4BAChB;AAoBH,OAAO,iBAAS,2CACdC,IAAI,iBACH;AAmEH,OAAO,iBAAS,uCACdA,IAAI,iBACH;AAWH,OAAO,iBAAS,mCACdC,MAAM;CAAE,MAAM;CAAkB,cAAc;AAAa,IAC1D;AA0BH,OAAO,iBAAS,YACdL,MAAM,mBACL;;;;;;;AAyGH,OAAO,iBAAS,qBAAqB,kBACnCM,MAAM,IACL,gBAAgB;CAAE,MAAM;AAAG,OAAM,KAAK,KAAI,CAAE","names":["defaultTypeClasses: TypeClass[]","type: PropertyTypeType","typeClasses: TypeClass[] | undefined","valueType: ValueTypeDefinitionVersion","dataConstraints: ValueTypeDataConstraint[]","dc: DataConstraint","prop: { type: PropertyTypeType; nullability?: Nullability }","type: T"],"sources":["../../../src/api/propertyConversionUtils.ts"],"version":3,"file":"propertyConversionUtils.d.ts"}
@@ -1,15 +1,5 @@
1
- import type { ActionTypeApiName, ActionTypeStatus_deprecated, BaseType, ButtonDisplayMetadata, DataConstraint, DisplayMetadataConfigurationDefaultLayout, DisplayMetadataConfigurationDisplayAndFormat, ExampleValue, FailureMessage, ImportedTypes, InterfaceTypeApiName, InterfaceTypeStatus, LinkTypeDisplayMetadata, LinkTypeMetadata, OntologyIrActionTypeEntities, OntologyIrBaseParameterType_decimal, OntologyIrBaseParameterType_decimalList, OntologyIrBaseParameterType_interfaceReference, OntologyIrBaseParameterType_interfaceReferenceList, OntologyIrBaseParameterType_objectReference, OntologyIrBaseParameterType_objectReferenceList, OntologyIrBaseParameterType_objectSetRid, OntologyIrBaseParameterType_objectTypeReference, OntologyIrBaseParameterType_struct, OntologyIrBaseParameterType_structList, OntologyIrBaseParameterType_timestamp, OntologyIrBaseParameterType_timestampList, OntologyIrCondition, OntologyIrConditionValue, OntologyIrFormContent, OntologyIrLabelledValue, OntologyIrLinkTypeStatus, OntologyIrLogicRule, OntologyIrLogicRuleValue_interfaceParameterPropertyValue, OntologyIrLogicRuleValue_objectParameterPropertyValue, OntologyIrLogicRuleValue_parameterId, OntologyIrLogicRuleValue_staticValue, OntologyIrLogicRuleValue_synchronousWebhookOutput, OntologyIrMarketplaceInterfaceType, OntologyIrObjectType, OntologyIrParameterDateRangeValue, OntologyIrParameterPrefill, OntologyIrPropertyType, OntologyIrValidationRule, ParameterId, SectionId, SharedPropertyTypeGothamMapping, StructFieldType, ValidationRuleDisplayMetadata, ValueTypeApiName, ValueTypeApiNameReference, ValueTypeDataConstraint, ValueTypeDisplayMetadata, ValueTypeStatus, ValueTypeVersion, Visibility } from "@osdk/client.unstable";
2
- import type { OntologyFullMetadata } from "@osdk/foundry.ontologies";
1
+ import type { ActionTypeApiName, ActionTypeStatus_deprecated, BaseType, ButtonDisplayMetadata, DataConstraint, DisplayMetadataConfigurationDefaultLayout, DisplayMetadataConfigurationDisplayAndFormat, ExampleValue, FailureMessage, InterfaceTypeApiName, InterfaceTypeStatus, LinkTypeDisplayMetadata, LinkTypeMetadata, OntologyIrActionTypeEntities, OntologyIrBaseParameterType_decimal, OntologyIrBaseParameterType_decimalList, OntologyIrBaseParameterType_interfaceReference, OntologyIrBaseParameterType_interfaceReferenceList, OntologyIrBaseParameterType_objectReference, OntologyIrBaseParameterType_objectReferenceList, OntologyIrBaseParameterType_objectSetRid, OntologyIrBaseParameterType_objectTypeReference, OntologyIrBaseParameterType_struct, OntologyIrBaseParameterType_structList, OntologyIrBaseParameterType_timestamp, OntologyIrBaseParameterType_timestampList, OntologyIrCondition, OntologyIrConditionValue, OntologyIrFormContent, OntologyIrLabelledValue, OntologyIrLinkTypeStatus, OntologyIrLogicRule, OntologyIrLogicRuleValue_interfaceParameterPropertyValue, OntologyIrLogicRuleValue_objectParameterPropertyValue, OntologyIrLogicRuleValue_parameterId, OntologyIrLogicRuleValue_staticValue, OntologyIrLogicRuleValue_synchronousWebhookOutput, OntologyIrMarketplaceInterfaceType, OntologyIrObjectType, OntologyIrParameterDateRangeValue, OntologyIrParameterPrefill, OntologyIrPropertyType, OntologyIrValidationRule, OntologyIrValueTypeReferenceWithMetadata, ParameterId, SectionId, SharedPropertyTypeGothamMapping, StructFieldType, ValidationRuleDisplayMetadata, ValueTypeApiName, ValueTypeDataConstraint, ValueTypeDisplayMetadata, ValueTypeStatus, ValueTypeVersion, Visibility } from "@osdk/client.unstable";
3
2
  import type { BlueprintIcon } from "./iconNames.js";
4
- export interface Ontology extends Omit<OntologyFullMetadata, "ontology" | "sharedPropertyTypes" | "interfaceTypes" | "objectTypes" | "actionTypes" | "valueTypes"> {
5
- interfaceTypes: Record<string, InterfaceType>;
6
- sharedPropertyTypes: Record<string, SharedPropertyType>;
7
- objectTypes: Record<string, ObjectType>;
8
- valueTypes: Record<string, ValueTypeDefinitionVersion[]>;
9
- linkTypes: Record<string, LinkType>;
10
- actionTypes: Record<string, ActionType>;
11
- importedTypes: ImportedTypes;
12
- }
13
3
  export interface OntologyEntityBase {
14
4
  __type: OntologyEntityTypeEnum;
15
5
  apiName: string;
@@ -213,7 +203,8 @@ export interface ActionTypeInner {
213
203
  submissionMetadata: SubmissionMetadata;
214
204
  }
215
205
  export type ActionValidationRule = OntologyIrValidationRule;
216
- export type ActionLevelValidationDefinition = {
206
+ export type ActionLevelValidationDefinition = Array<ActionLevelValidationRule>;
207
+ export type ActionLevelValidationRule = {
217
208
  condition: ConditionDefinition
218
209
  displayMetadata?: ValidationRuleDisplayMetadata
219
210
  };
@@ -306,7 +297,7 @@ export interface InterfacePropertyType {
306
297
  sharedPropertyType: SharedPropertyType;
307
298
  required: boolean;
308
299
  }
309
- export interface InterfaceType extends OntologyEntityBase, Omit<OntologyIrMarketplaceInterfaceType, "properties" | "allProperties" | "allLinks" | "extendsInterfaces" | "allExtendsInterfaces" | "propertiesV2" | "allPropertiesV2" | "propertiesV3" | "allPropertiesV3"> {
300
+ export interface InterfaceType extends OntologyEntityBase, Omit<OntologyIrMarketplaceInterfaceType, "properties" | "propertiesV2" | "propertiesV3" | "extendsInterfaces"> {
310
301
  propertiesV2: Record<string, InterfacePropertyType>;
311
302
  extendsInterfaces: Array<InterfaceType>;
312
303
  status: InterfaceTypeStatus;
@@ -317,7 +308,7 @@ export interface PropertyType {
317
308
  array?: boolean;
318
309
  description?: string;
319
310
  displayName?: string;
320
- valueType?: ValueTypeApiNameReference;
311
+ valueType?: OntologyIrValueTypeReferenceWithMetadata;
321
312
  visibility?: Visibility;
322
313
  typeClasses?: TypeClass[];
323
314
  nullability?: Nullability;
@@ -609,6 +600,7 @@ export interface ValueTypeType_timestamp {
609
600
  export type ValueTypeType = ValueTypeType_array | ValueTypeType_boolean | ValueTypeType_binary | ValueTypeType_byte | ValueTypeType_date | ValueTypeType_decimal | ValueTypeType_double | ValueTypeType_float | ValueTypeType_integer | ValueTypeType_long | ValueTypeType_map | ValueTypeType_optional | ValueTypeType_short | ValueTypeType_string | ValueTypeType_structV2 | ValueTypeType_timestamp;
610
601
  export type ValueTypeDefinitionVersion = OntologyEntityBase & {
611
602
  apiName: ValueTypeApiName
603
+ packageNamespace: string
612
604
  displayMetadata: ValueTypeDisplayMetadata
613
605
  status: ValueTypeStatus
614
606
  version: ValueTypeVersion
@@ -1 +1 @@
1
- {"mappings":"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","names":["MODIFY_OBJECT_PARAMETER: string","CREATE_OR_MODIFY_OBJECT_PARAMETER: string"],"sources":["../../../src/api/types.ts"],"version":3,"file":"types.d.ts"}
1
+ {"mappings":"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","names":["MODIFY_OBJECT_PARAMETER: string","CREATE_OR_MODIFY_OBJECT_PARAMETER: string"],"sources":["../../../src/api/types.ts"],"version":3,"file":"types.d.ts"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@osdk/maker",
3
- "version": "0.13.0-beta.4",
3
+ "version": "0.13.0-beta.6",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
@@ -28,22 +28,22 @@
28
28
  },
29
29
  "dependencies": {
30
30
  "consola": "^3.4.2",
31
- "jiti": "^2.0.0",
32
- "semver-ts": "^1.0.0",
31
+ "jiti": "^2.5.1",
32
+ "semver-ts": "^1.0.3",
33
33
  "tiny-invariant": "^1.3.3",
34
34
  "ts-node": "^10.9.2",
35
35
  "yargs": "^17.7.2",
36
- "@osdk/api": "~2.5.0-beta.4"
36
+ "@osdk/api": "~2.5.0-beta.7"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@osdk/foundry.ontologies": "2.30.0",
40
- "@types/node": "^20.0.0",
41
- "@types/yargs": "^17.0.32",
40
+ "@types/node": "^20.19.13",
41
+ "@types/yargs": "^17.0.33",
42
42
  "typescript": "~5.5.4",
43
- "vitest": "^3.0.5",
43
+ "vitest": "^3.2.4",
44
44
  "@osdk/monorepo.api-extractor": "~0.4.0-beta.1",
45
- "@osdk/client.unstable": "~2.5.0-beta.4",
46
- "@osdk/monorepo.tsconfig": "~0.4.0-beta.1"
45
+ "@osdk/monorepo.tsconfig": "~0.4.0-beta.1",
46
+ "@osdk/client.unstable": "~2.5.0-beta.7"
47
47
  },
48
48
  "publishConfig": {
49
49
  "access": "public"