@osdk/maker 0.12.0-beta.8 → 0.12.0-beta.9

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 (40) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/README.md +88 -62
  3. package/build/browser/api/defineAction.js +91 -78
  4. package/build/browser/api/defineAction.js.map +1 -1
  5. package/build/browser/api/defineLink.js +2 -2
  6. package/build/browser/api/defineLink.js.map +1 -1
  7. package/build/browser/api/defineObject.js +6 -2
  8. package/build/browser/api/defineObject.js.map +1 -1
  9. package/build/browser/api/defineOntology.js +2 -2
  10. package/build/browser/api/defineOntology.js.map +1 -1
  11. package/build/browser/api/overall.test.js +1123 -452
  12. package/build/browser/api/overall.test.js.map +1 -1
  13. package/build/browser/api/types.js.map +1 -1
  14. package/build/browser/cli/main.js +1 -1
  15. package/build/browser/index.js.map +1 -1
  16. package/build/cjs/index.cjs +100 -84
  17. package/build/cjs/index.cjs.map +1 -1
  18. package/build/cjs/index.d.cts +23 -14
  19. package/build/esm/api/defineAction.js +91 -78
  20. package/build/esm/api/defineAction.js.map +1 -1
  21. package/build/esm/api/defineLink.js +2 -2
  22. package/build/esm/api/defineLink.js.map +1 -1
  23. package/build/esm/api/defineObject.js +6 -2
  24. package/build/esm/api/defineObject.js.map +1 -1
  25. package/build/esm/api/defineOntology.js +2 -2
  26. package/build/esm/api/defineOntology.js.map +1 -1
  27. package/build/esm/api/overall.test.js +1123 -452
  28. package/build/esm/api/overall.test.js.map +1 -1
  29. package/build/esm/api/types.js.map +1 -1
  30. package/build/esm/cli/main.js +1 -1
  31. package/build/esm/index.js.map +1 -1
  32. package/build/types/api/defineAction.d.ts +6 -6
  33. package/build/types/api/defineAction.d.ts.map +1 -1
  34. package/build/types/api/defineObject.d.ts +2 -2
  35. package/build/types/api/defineObject.d.ts.map +1 -1
  36. package/build/types/api/types.d.ts +15 -6
  37. package/build/types/api/types.d.ts.map +1 -1
  38. package/build/types/index.d.ts +1 -1
  39. package/build/types/index.d.ts.map +1 -1
  40. package/package.json +4 -4
@@ -1 +1 @@
1
- {"version":3,"file":"types.js","names":["OntologyEntityTypeEnum"],"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 ApiNameValueTypeReference,\n BaseType,\n DataConstraint,\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 OntologyIrMarketplaceInterfaceType,\n OntologyIrObjectType,\n OntologyIrParameterDateRangeValue,\n OntologyIrPropertyType,\n OntologyIrValidationRule,\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 { 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 >\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 interface ActionParameter {\n id: ParameterId;\n displayName: string;\n type: ActionParameterType;\n validation: ActionParameterValidation;\n description?: string;\n typeClasses?: Array<TypeClass>;\n}\n\nexport interface ActionParameterValidation {\n allowedValues: ActionParameterAllowedValues;\n required: ActionParameterRequirementConstraint;\n defaultVisibility?: \"editable\" | \"disabled\" | \"hidden\";\n conditionalOverrides?: Array<ActionParameterConditionalOverride>;\n}\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\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 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 }\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, Array<ParameterId>>;\n status: ActionStatus;\n entities: OntologyIrActionTypeEntities;\n formContentOrdering: Array<OntologyIrFormContent>;\n validation: Array<OntologyIrValidationRule>;\n typeClasses: Array<TypeClass>;\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?: ApiNameValueTypeReference;\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: ObjectType;\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: ObjectType;\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: ObjectType;\n metadata: LinkTypeMetadata;\n}\n\nexport interface ManyToManyLinkTypeUserDefinition {\n apiName: LinkTypeId;\n many: ManyToManyObjectLinkReferenceUserDefinition;\n toMany: ManyToManyObjectLinkReferenceUserDefinition;\n}\n\nexport interface ManyToManyObjectLinkReferenceUserDefinition {\n object: ObjectType;\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 | \"objectReference\"\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;;AA+EA,WAAYA,sBAAsB,0BAAtBA,sBAAsB;EAAtBA,sBAAsB;EAAtBA,sBAAsB;EAAtBA,sBAAsB;EAAtBA,sBAAsB;EAAtBA,sBAAsB;EAAtBA,sBAAsB;EAAA,OAAtBA,sBAAsB;AAAA;;AA2DlC;;AAoCA","ignoreList":[]}
1
+ {"version":3,"file":"types.js","names":["OntologyEntityTypeEnum"],"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 ApiNameValueTypeReference,\n BaseType,\n DataConstraint,\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 OntologyIrMarketplaceInterfaceType,\n OntologyIrObjectType,\n OntologyIrParameterDateRangeValue,\n OntologyIrPropertyType,\n OntologyIrValidationRule,\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 { 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 >\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 parameterLevelValidations?: Record<string, ActionParameterValidation>;\n actionLevelValidation?: ActionLevelValidationDefinition;\n excludedProperties?: Array<ParameterId>;\n};\n\nexport interface ActionParameter {\n id: ParameterId;\n displayName: string;\n type: ActionParameterType;\n validation: ActionParameterValidation;\n description?: string;\n typeClasses?: Array<TypeClass>;\n}\n\nexport interface ActionParameterValidation {\n allowedValues?: ActionParameterAllowedValues;\n required?: ActionParameterRequirementConstraint;\n defaultVisibility?: \"editable\" | \"disabled\" | \"hidden\";\n conditionalOverrides?: Array<ActionParameterConditionalOverride>;\n}\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\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 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 }\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, Array<ParameterId>>;\n status: ActionStatus;\n entities: OntologyIrActionTypeEntities;\n formContentOrdering: Array<OntologyIrFormContent>;\n validation: Array<OntologyIrValidationRule>;\n typeClasses: Array<TypeClass>;\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?: ApiNameValueTypeReference;\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 | \"objectReference\"\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;;AA+EA,WAAYA,sBAAsB,0BAAtBA,sBAAsB;EAAtBA,sBAAsB;EAAtBA,sBAAsB;EAAtBA,sBAAsB;EAAtBA,sBAAsB;EAAtBA,sBAAsB;EAAtBA,sBAAsB;EAAA,OAAtBA,sBAAsB;AAAA;;AAqElC;;AAoCA","ignoreList":[]}
@@ -24,7 +24,7 @@ import { hideBin } from "yargs/helpers";
24
24
  import { defineOntology } from "../api/defineOntology.js";
25
25
  const apiNamespaceRegex = /^[a-z0-9-]+(\.[a-z0-9-]+)*\.$/;
26
26
  export default async function main(args = process.argv) {
27
- const commandLineOpts = await yargs(hideBin(args)).version("0.12.0-beta.8" ?? "").wrap(Math.min(150, yargs().terminalWidth())).strict().help().options({
27
+ const commandLineOpts = await yargs(hideBin(args)).version("0.12.0-beta.9" ?? "").wrap(Math.min(150, yargs().terminalWidth())).strict().help().options({
28
28
  input: {
29
29
  alias: "i",
30
30
  describe: "Input file",
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","names":["default","addDependency","defineAction","defineCreateInterfaceObjectAction","defineCreateObjectAction","defineDeleteObjectAction","defineModifyInterfaceObjectAction","defineModifyObjectAction","importSharedPropertyType","defineInterface","defineInterfaceLinkConstraint","defineLink","defineObject","defineOntology","defineSharedPropertyType","defineValueType","importOntologyEntity","OntologyEntityTypeEnum","wrapWithProxy"],"sources":["index.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\nexport { default as default } from \"./cli/main.js\";\n\nexport { addDependency } from \"./api/addDependency.js\";\nexport {\n defineAction,\n defineCreateInterfaceObjectAction,\n defineCreateObjectAction,\n defineDeleteObjectAction,\n defineModifyInterfaceObjectAction,\n defineModifyObjectAction,\n} from \"./api/defineAction.js\";\nexport { importSharedPropertyType } from \"./api/defineImportSpt.js\";\nexport { defineInterface } from \"./api/defineInterface.js\";\nexport { defineInterfaceLinkConstraint } from \"./api/defineInterfaceLinkConstraint.js\";\nexport { defineLink } from \"./api/defineLink.js\";\nexport { defineObject } from \"./api/defineObject.js\";\nexport { defineOntology } from \"./api/defineOntology.js\";\nexport { defineSharedPropertyType } from \"./api/defineSpt.js\";\nexport { defineValueType } from \"./api/defineValueType.js\";\nexport { importOntologyEntity } from \"./api/importOntologyEntity.js\";\nexport type {\n ActionType,\n ConditionDefinition,\n InterfaceType,\n LinkType,\n ObjectType,\n SharedPropertyType,\n ValueTypeDefinitionVersion,\n} from \"./api/types.js\";\nexport { OntologyEntityTypeEnum } from \"./api/types.js\";\nexport { wrapWithProxy } from \"./api/wrapWithProxy.js\";\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,SAASA,OAAkB,QAAQ,eAAe;AAElD,SAASC,aAAa,QAAQ,wBAAwB;AACtD,SACEC,YAAY,EACZC,iCAAiC,EACjCC,wBAAwB,EACxBC,wBAAwB,EACxBC,iCAAiC,EACjCC,wBAAwB,QACnB,uBAAuB;AAC9B,SAASC,wBAAwB,QAAQ,0BAA0B;AACnE,SAASC,eAAe,QAAQ,0BAA0B;AAC1D,SAASC,6BAA6B,QAAQ,wCAAwC;AACtF,SAASC,UAAU,QAAQ,qBAAqB;AAChD,SAASC,YAAY,QAAQ,uBAAuB;AACpD,SAASC,cAAc,QAAQ,yBAAyB;AACxD,SAASC,wBAAwB,QAAQ,oBAAoB;AAC7D,SAASC,eAAe,QAAQ,0BAA0B;AAC1D,SAASC,oBAAoB,QAAQ,+BAA+B;AAUpE,SAASC,sBAAsB,QAAQ,gBAAgB;AACvD,SAASC,aAAa,QAAQ,wBAAwB","ignoreList":[]}
1
+ {"version":3,"file":"index.js","names":["default","addDependency","defineAction","defineCreateInterfaceObjectAction","defineCreateObjectAction","defineDeleteObjectAction","defineModifyInterfaceObjectAction","defineModifyObjectAction","importSharedPropertyType","defineInterface","defineInterfaceLinkConstraint","defineLink","defineObject","defineOntology","defineSharedPropertyType","defineValueType","importOntologyEntity","OntologyEntityTypeEnum","wrapWithProxy"],"sources":["index.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\nexport { default as default } from \"./cli/main.js\";\n\nexport { addDependency } from \"./api/addDependency.js\";\nexport {\n defineAction,\n defineCreateInterfaceObjectAction,\n defineCreateObjectAction,\n defineDeleteObjectAction,\n defineModifyInterfaceObjectAction,\n defineModifyObjectAction,\n} from \"./api/defineAction.js\";\nexport { importSharedPropertyType } from \"./api/defineImportSpt.js\";\nexport { defineInterface } from \"./api/defineInterface.js\";\nexport { defineInterfaceLinkConstraint } from \"./api/defineInterfaceLinkConstraint.js\";\nexport { defineLink } from \"./api/defineLink.js\";\nexport { defineObject } from \"./api/defineObject.js\";\nexport { defineOntology } from \"./api/defineOntology.js\";\nexport { defineSharedPropertyType } from \"./api/defineSpt.js\";\nexport { defineValueType } from \"./api/defineValueType.js\";\nexport { importOntologyEntity } from \"./api/importOntologyEntity.js\";\nexport type {\n ActionParameterConditionalOverride,\n ActionParameterValidation,\n ActionType,\n ConditionDefinition,\n InterfaceType,\n LinkType,\n ObjectType,\n SharedPropertyType,\n ValueTypeDefinitionVersion,\n} from \"./api/types.js\";\nexport { OntologyEntityTypeEnum } from \"./api/types.js\";\nexport { wrapWithProxy } from \"./api/wrapWithProxy.js\";\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,SAASA,OAAkB,QAAQ,eAAe;AAElD,SAASC,aAAa,QAAQ,wBAAwB;AACtD,SACEC,YAAY,EACZC,iCAAiC,EACjCC,wBAAwB,EACxBC,wBAAwB,EACxBC,iCAAiC,EACjCC,wBAAwB,QACnB,uBAAuB;AAC9B,SAASC,wBAAwB,QAAQ,0BAA0B;AACnE,SAASC,eAAe,QAAQ,0BAA0B;AAC1D,SAASC,6BAA6B,QAAQ,wCAAwC;AACtF,SAASC,UAAU,QAAQ,qBAAqB;AAChD,SAASC,YAAY,QAAQ,uBAAuB;AACpD,SAASC,cAAc,QAAQ,yBAAyB;AACxD,SAASC,wBAAwB,QAAQ,oBAAoB;AAC7D,SAASC,eAAe,QAAQ,0BAA0B;AAC1D,SAASC,oBAAoB,QAAQ,+BAA+B;AAYpE,SAASC,sBAAsB,QAAQ,gBAAgB;AACvD,SAASC,aAAa,QAAQ,wBAAwB","ignoreList":[]}
@@ -1,7 +1,7 @@
1
- import { type ActionLevelValidationDefinition, type ActionType, type ActionTypeDefinition, type InterfaceType, type ObjectType } from "./types.js";
2
- export declare function defineCreateInterfaceObjectAction(interfaceType: InterfaceType, objectType?: ObjectType, validation?: ActionLevelValidationDefinition): ActionType;
3
- export declare function defineCreateObjectAction(objectType: ObjectType, validation?: ActionLevelValidationDefinition): ActionType;
4
- export declare function defineModifyInterfaceObjectAction(interfaceType: InterfaceType, objectType?: ObjectType, validation?: ActionLevelValidationDefinition): ActionType;
5
- export declare function defineModifyObjectAction(objectType: ObjectType, validation?: ActionLevelValidationDefinition): ActionType;
6
- export declare function defineDeleteObjectAction(objectType: ObjectType, validation?: ActionLevelValidationDefinition): ActionType;
1
+ import { type ActionLevelValidationDefinition, type ActionType, type ActionTypeDefinition, type ActionTypeUserDefinition, type InterfaceType, type ObjectTypeDefinition } from "./types.js";
2
+ export declare function defineCreateInterfaceObjectAction(interfaceType: InterfaceType, objectType?: ObjectTypeDefinition, validation?: ActionLevelValidationDefinition): ActionType;
3
+ export declare function defineCreateObjectAction(def: ActionTypeUserDefinition): ActionType;
4
+ export declare function defineModifyInterfaceObjectAction(interfaceType: InterfaceType, objectType?: ObjectTypeDefinition, validation?: ActionLevelValidationDefinition): ActionType;
5
+ export declare function defineModifyObjectAction(def: ActionTypeUserDefinition): ActionType;
6
+ export declare function defineDeleteObjectAction(def: ActionTypeUserDefinition): ActionType;
7
7
  export declare function defineAction(actionDef: ActionTypeDefinition): ActionType;
@@ -1 +1 @@
1
- {"mappings":"AA0BA,cACO,sCAKA,iBACA,2BAGA,oBAEA,kBAKA,YAAa;AAEpB,OAAO,iBAAS,kCACdA,eAAe,eACfC,aAAa,YACbC,aAAa,kCACZ;AAkGH,OAAO,iBAAS,yBACdC,YAAY,YACZD,aAAa,kCACZ;AAgEH,OAAO,iBAAS,kCACdF,eAAe,eACfC,aAAa,YACbC,aAAa,kCACZ;AA8FH,OAAO,iBAAS,yBACdC,YAAY,YACZD,aAAa,kCACZ;AAqFH,OAAO,iBAAS,yBACdC,YAAY,YACZD,aAAa,kCACZ;AA6CH,OAAO,iBAAS,aAAaE,WAAW,uBAAuB","names":["interfaceType: InterfaceType","objectType?: ObjectType","validation?: ActionLevelValidationDefinition","objectType: ObjectType","actionDef: ActionTypeDefinition"],"sources":["../../../src/api/defineAction.ts"],"version":3,"file":"defineAction.d.ts"}
1
+ {"mappings":"AA6BA,cACO,sCAKA,iBACA,2BACA,+BAGA,oBAGA,4BAKA,YAAa;AAEpB,OAAO,iBAAS,kCACdA,eAAe,eACfC,aAAa,sBACbC,aAAa,kCACZ;AAkGH,OAAO,iBAAS,yBACdC,KAAK,2BACJ;AAwFH,OAAO,iBAAS,kCACdH,eAAe,eACfC,aAAa,sBACbC,aAAa,kCACZ;AA8FH,OAAO,iBAAS,yBACdC,KAAK,2BACJ;AAsGH,OAAO,iBAAS,yBACdA,KAAK,2BACJ;AA4CH,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,5 +1,5 @@
1
- import type { InterfacePropertyType, InterfaceType, ObjectType, ObjectTypeDefinition, PropertyTypeType, PropertyTypeTypeExotic } from "./types.js";
2
- export declare function defineObject(objectDef: ObjectTypeDefinition): ObjectType;
1
+ import type { InterfacePropertyType, InterfaceType, ObjectTypeDefinition, PropertyTypeType, PropertyTypeTypeExotic } from "./types.js";
2
+ export declare function defineObject(objectDef: ObjectTypeDefinition): ObjectTypeDefinition;
3
3
  export declare function isExotic(type: PropertyTypeType | undefined): type is PropertyTypeTypeExotic;
4
4
  export declare function convertToDisplayName(s: string | undefined | null): string;
5
5
  export declare function convertToPluralDisplayName(s: string | undefined | null): string;
@@ -1 +1 @@
1
- {"mappings":"AAuBA,cACE,uBACA,eAGA,YACA,sBACA,kBACA,8BAEK,YAAa;AAWpB,OAAO,iBAAS,aACdA,WAAW,uBACV;AAgJH,OAAO,iBAAS,SACdC,MAAM,+BACL,QAAQ;AA+CX,OAAO,iBAAS,qBAAqBC;AAOrC,OAAO,iBAAS,2BACdA;AASF,OAAO,iBAAS,0BACdC,eAAe,gBACd,eAAe","names":["objectDef: ObjectTypeDefinition","type: PropertyTypeType | undefined","s: string | undefined | null","interfaceType: InterfaceType"],"sources":["../../../src/api/defineObject.ts"],"version":3,"file":"defineObject.d.ts"}
1
+ {"mappings":"AAuBA,cACE,uBACA,eAIA,sBACA,kBACA,8BAEK,YAAa;AAWpB,OAAO,iBAAS,aACdA,WAAW,uBACV;AAiJH,OAAO,iBAAS,SACdC,MAAM,+BACL,QAAQ;AA+CX,OAAO,iBAAS,qBAAqBC;AAOrC,OAAO,iBAAS,2BACdA;AASF,OAAO,iBAAS,0BACdC,eAAe,gBACd,eAAe","names":["objectDef: ObjectTypeDefinition","type: PropertyTypeType | undefined","s: string | undefined | null","interfaceType: InterfaceType"],"sources":["../../../src/api/defineObject.ts"],"version":3,"file":"defineObject.d.ts"}
@@ -38,6 +38,15 @@ export type ActionType = OntologyEntityBase & RequiredFields<Partial<ActionTypeI
38
38
  __type: OntologyEntityTypeEnum.ACTION_TYPE
39
39
  };
40
40
  export type ActionTypeDefinition = Omit<ActionType, "__type">;
41
+ export type ActionTypeUserDefinition = {
42
+ objectType: ObjectTypeDefinition
43
+ apiName?: string
44
+ displayName?: string
45
+ status?: ActionStatus
46
+ parameterLevelValidations?: Record<string, ActionParameterValidation>
47
+ actionLevelValidation?: ActionLevelValidationDefinition
48
+ excludedProperties?: Array<ParameterId>
49
+ };
41
50
  export interface ActionParameter {
42
51
  id: ParameterId;
43
52
  displayName: string;
@@ -47,8 +56,8 @@ export interface ActionParameter {
47
56
  typeClasses?: Array<TypeClass>;
48
57
  }
49
58
  export interface ActionParameterValidation {
50
- allowedValues: ActionParameterAllowedValues;
51
- required: ActionParameterRequirementConstraint;
59
+ allowedValues?: ActionParameterAllowedValues;
60
+ required?: ActionParameterRequirementConstraint;
52
61
  defaultVisibility?: "editable" | "disabled" | "hidden";
53
62
  conditionalOverrides?: Array<ActionParameterConditionalOverride>;
54
63
  }
@@ -316,7 +325,7 @@ export interface OneToManyLinkTypeDefinition {
316
325
  redacted?: boolean;
317
326
  }
318
327
  export interface OneToManyObjectLinkReference {
319
- object: ObjectType;
328
+ object: ObjectTypeDefinition;
320
329
  metadata: LinkTypeMetadata;
321
330
  }
322
331
  export interface OneToManyLinkTypeUserDefinition {
@@ -327,7 +336,7 @@ export interface OneToManyLinkTypeUserDefinition {
327
336
  cardinality?: "OneToMany" | "OneToOne" | undefined;
328
337
  }
329
338
  export interface OneToManyObjectLinkReferenceUserDefinition {
330
- object: ObjectType;
339
+ object: ObjectTypeDefinition;
331
340
  metadata: LinkTypeMetadataUserDefinition;
332
341
  }
333
342
  export interface ManyToManyLinkTypeDefinition {
@@ -339,7 +348,7 @@ export interface ManyToManyLinkTypeDefinition {
339
348
  redacted?: boolean;
340
349
  }
341
350
  export interface ManyToManyObjectLinkReference {
342
- object: ObjectType;
351
+ object: ObjectTypeDefinition;
343
352
  metadata: LinkTypeMetadata;
344
353
  }
345
354
  export interface ManyToManyLinkTypeUserDefinition {
@@ -348,7 +357,7 @@ export interface ManyToManyLinkTypeUserDefinition {
348
357
  toMany: ManyToManyObjectLinkReferenceUserDefinition;
349
358
  }
350
359
  export interface ManyToManyObjectLinkReferenceUserDefinition {
351
- object: ObjectType;
360
+ object: ObjectTypeDefinition;
352
361
  metadata: LinkTypeMetadataUserDefinition;
353
362
  }
354
363
  export interface LinkTypeMetadataUserDefinition {
@@ -1 +1 @@
1
- {"mappings":"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","names":[],"sources":["../../../src/api/types.ts"],"version":3,"file":"types.d.ts"}
1
+ {"mappings":"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","names":[],"sources":["../../../src/api/types.ts"],"version":3,"file":"types.d.ts"}
@@ -10,6 +10,6 @@ export { defineOntology } from "./api/defineOntology.js";
10
10
  export { defineSharedPropertyType } from "./api/defineSpt.js";
11
11
  export { defineValueType } from "./api/defineValueType.js";
12
12
  export { importOntologyEntity } from "./api/importOntologyEntity.js";
13
- export type { ActionType, ConditionDefinition, InterfaceType, LinkType, ObjectType, SharedPropertyType, ValueTypeDefinitionVersion } from "./api/types.js";
13
+ export type { ActionParameterConditionalOverride, ActionParameterValidation, ActionType, ConditionDefinition, InterfaceType, LinkType, ObjectType, SharedPropertyType, ValueTypeDefinitionVersion } from "./api/types.js";
14
14
  export { OntologyEntityTypeEnum } from "./api/types.js";
15
15
  export { wrapWithProxy } from "./api/wrapWithProxy.js";
@@ -1 +1 @@
1
- {"mappings":"AAgBA,SAAS,eAA0B;AAEnC,SAAS,qBAAqB;AAC9B,SACE,cACA,mCACA,0BACA,0BACA,mCACA,gCACK;AACP,SAAS,gCAAgC;AACzC,SAAS,uBAAuB;AAChC,SAAS,qCAAqC;AAC9C,SAAS,kBAAkB;AAC3B,SAAS,oBAAoB;AAC7B,SAAS,sBAAsB;AAC/B,SAAS,gCAAgC;AACzC,SAAS,uBAAuB;AAChC,SAAS,4BAA4B;AACrC,cACE,YACA,qBACA,eACA,UACA,YACA,oBACA,kCACK;AACP,SAAS,8BAA8B;AACvC,SAAS,qBAAqB","names":[],"sources":["../../src/index.ts"],"version":3,"file":"index.d.ts"}
1
+ {"mappings":"AAgBA,SAAS,eAA0B;AAEnC,SAAS,qBAAqB;AAC9B,SACE,cACA,mCACA,0BACA,0BACA,mCACA,gCACK;AACP,SAAS,gCAAgC;AACzC,SAAS,uBAAuB;AAChC,SAAS,qCAAqC;AAC9C,SAAS,kBAAkB;AAC3B,SAAS,oBAAoB;AAC7B,SAAS,sBAAsB;AAC/B,SAAS,gCAAgC;AACzC,SAAS,uBAAuB;AAChC,SAAS,4BAA4B;AACrC,cACE,oCACA,2BACA,YACA,qBACA,eACA,UACA,YACA,oBACA,kCACK;AACP,SAAS,8BAA8B;AACvC,SAAS,qBAAqB","names":[],"sources":["../../src/index.ts"],"version":3,"file":"index.d.ts"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@osdk/maker",
3
- "version": "0.12.0-beta.8",
3
+ "version": "0.12.0-beta.9",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
@@ -33,7 +33,7 @@
33
33
  "tiny-invariant": "^1.3.3",
34
34
  "ts-node": "^10.9.2",
35
35
  "yargs": "^17.7.2",
36
- "@osdk/api": "~2.4.0-beta.6"
36
+ "@osdk/api": "~2.4.0-beta.7"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@osdk/foundry.ontologies": "2.24.0",
@@ -41,9 +41,9 @@
41
41
  "@types/yargs": "^17.0.32",
42
42
  "typescript": "~5.5.4",
43
43
  "vitest": "^3.0.5",
44
- "@osdk/monorepo.api-extractor": "~0.3.0-beta.1",
45
44
  "@osdk/monorepo.tsconfig": "~0.3.0-beta.1",
46
- "@osdk/client.unstable": "~2.4.0-beta.6"
45
+ "@osdk/client.unstable": "~2.4.0-beta.7",
46
+ "@osdk/monorepo.api-extractor": "~0.3.0-beta.1"
47
47
  },
48
48
  "publishConfig": {
49
49
  "access": "public"