@osdk/maker-experimental 0.6.0-beta.2 → 0.6.0-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/bin/maker-experimental.mjs +6 -0
- package/build/browser/api/defineOntologyV2.js +35 -0
- package/build/browser/api/defineOntologyV2.js.map +1 -0
- package/build/browser/cli/main.js +120 -0
- package/build/browser/cli/main.js.map +1 -0
- package/build/browser/cli/marketplaceSerialization/BlockGeneratorResult.js +2 -0
- package/build/browser/cli/marketplaceSerialization/BlockGeneratorResult.js.map +1 -0
- package/build/browser/cli/marketplaceSerialization/CodeBlockSetSpec.js +2 -0
- package/build/browser/cli/marketplaceSerialization/CodeBlockSetSpec.js.map +1 -0
- package/build/browser/cli/marketplaceSerialization/CodeBlockSpec.js +53 -0
- package/build/browser/cli/marketplaceSerialization/CodeBlockSpec.js.map +1 -0
- package/build/browser/cli/marketplaceSerialization/StoreManifestEntry.js +2 -0
- package/build/browser/cli/marketplaceSerialization/StoreManifestEntry.js.map +1 -0
- package/build/browser/cli/marketplaceSerialization/index.js +2 -0
- package/build/browser/cli/marketplaceSerialization/index.js.map +1 -0
- package/build/browser/cli/marketplaceSerialization/specGenerators.js +70 -0
- package/build/browser/cli/marketplaceSerialization/specGenerators.js.map +1 -0
- package/build/browser/cli/marketplaceSerialization/supportingTypes.js +2 -0
- package/build/browser/cli/marketplaceSerialization/supportingTypes.js.map +1 -0
- package/build/browser/conversion/toConjure/distributeTypeHelper.js +23 -0
- package/build/browser/conversion/toConjure/distributeTypeHelper.js.map +1 -0
- package/build/browser/conversion/toMarketplace/convertActionHelpers.js +469 -0
- package/build/browser/conversion/toMarketplace/convertActionHelpers.js.map +1 -0
- package/build/browser/conversion/toMarketplace/convertActionParameterConditionalOverride.js +96 -0
- package/build/browser/conversion/toMarketplace/convertActionParameterConditionalOverride.js.map +1 -0
- package/build/browser/conversion/toMarketplace/convertActionParameters.js +81 -0
- package/build/browser/conversion/toMarketplace/convertActionParameters.js.map +1 -0
- package/build/browser/conversion/toMarketplace/convertActionSections.js +45 -0
- package/build/browser/conversion/toMarketplace/convertActionSections.js.map +1 -0
- package/build/browser/conversion/toMarketplace/convertActionValidation.js +160 -0
- package/build/browser/conversion/toMarketplace/convertActionValidation.js.map +1 -0
- package/build/browser/conversion/toMarketplace/convertActionVisibility.js +41 -0
- package/build/browser/conversion/toMarketplace/convertActionVisibility.js.map +1 -0
- package/build/browser/conversion/toMarketplace/convertCardinality.js +23 -0
- package/build/browser/conversion/toMarketplace/convertCardinality.js.map +1 -0
- package/build/browser/conversion/toMarketplace/convertConditionDefinition.js +88 -0
- package/build/browser/conversion/toMarketplace/convertConditionDefinition.js.map +1 -0
- package/build/browser/conversion/toMarketplace/convertDataConstraintToDataConstraints.js +26 -0
- package/build/browser/conversion/toMarketplace/convertDataConstraintToDataConstraints.js.map +1 -0
- package/build/browser/conversion/toMarketplace/convertDatasourceDefinition.js +352 -0
- package/build/browser/conversion/toMarketplace/convertDatasourceDefinition.js.map +1 -0
- package/build/browser/conversion/toMarketplace/convertInterface.js +75 -0
- package/build/browser/conversion/toMarketplace/convertInterface.js.map +1 -0
- package/build/browser/conversion/toMarketplace/convertInterfacePropertyType.js +62 -0
- package/build/browser/conversion/toMarketplace/convertInterfacePropertyType.js.map +1 -0
- package/build/browser/conversion/toMarketplace/convertLink.js +247 -0
- package/build/browser/conversion/toMarketplace/convertLink.js.map +1 -0
- package/build/browser/conversion/toMarketplace/convertMappingValue.js +76 -0
- package/build/browser/conversion/toMarketplace/convertMappingValue.js.map +1 -0
- package/build/browser/conversion/toMarketplace/convertNullabilityToDataConstraint.js +42 -0
- package/build/browser/conversion/toMarketplace/convertNullabilityToDataConstraint.js.map +1 -0
- package/build/browser/conversion/toMarketplace/convertObject.js +262 -0
- package/build/browser/conversion/toMarketplace/convertObject.js.map +1 -0
- package/build/browser/conversion/toMarketplace/convertObjectPropertyType.js +59 -0
- package/build/browser/conversion/toMarketplace/convertObjectPropertyType.js.map +1 -0
- package/build/browser/conversion/toMarketplace/convertOntologyDefinition.js +29 -0
- package/build/browser/conversion/toMarketplace/convertOntologyDefinition.js.map +1 -0
- package/build/browser/conversion/toMarketplace/convertOntologyDefinitionToWireBlockData.js +236 -0
- package/build/browser/conversion/toMarketplace/convertOntologyDefinitionToWireBlockData.js.map +1 -0
- package/build/browser/conversion/toMarketplace/convertOntologyToValueTypeIr.js +24 -0
- package/build/browser/conversion/toMarketplace/convertOntologyToValueTypeIr.js.map +1 -0
- package/build/browser/conversion/toMarketplace/convertSectionConditionalOverride.js +35 -0
- package/build/browser/conversion/toMarketplace/convertSectionConditionalOverride.js.map +1 -0
- package/build/browser/conversion/toMarketplace/convertSpt.js +65 -0
- package/build/browser/conversion/toMarketplace/convertSpt.js.map +1 -0
- package/build/browser/conversion/toMarketplace/convertValueType.js +20 -0
- package/build/browser/conversion/toMarketplace/convertValueType.js.map +1 -0
- package/build/browser/conversion/toMarketplace/convertValueTypeDataConstraints.js +30 -0
- package/build/browser/conversion/toMarketplace/convertValueTypeDataConstraints.js.map +1 -0
- package/build/browser/conversion/toMarketplace/convertValueTypesToIr.js +34 -0
- package/build/browser/conversion/toMarketplace/convertValueTypesToIr.js.map +1 -0
- package/build/browser/conversion/toMarketplace/dataConstraintToPropertyTypeDataConstraint.js +83 -0
- package/build/browser/conversion/toMarketplace/dataConstraintToPropertyTypeDataConstraint.js.map +1 -0
- package/build/browser/conversion/toMarketplace/getFormContentOrdering.js +39 -0
- package/build/browser/conversion/toMarketplace/getFormContentOrdering.js.map +1 -0
- package/build/browser/conversion/toMarketplace/propertyTypeTypeToOntologyIrInterfaceType.js +146 -0
- package/build/browser/conversion/toMarketplace/propertyTypeTypeToOntologyIrInterfaceType.js.map +1 -0
- package/build/browser/conversion/toMarketplace/propertyTypeTypeToOntologyIrType.js +156 -0
- package/build/browser/conversion/toMarketplace/propertyTypeTypeToOntologyIrType.js.map +1 -0
- package/build/browser/conversion/toMarketplace/shapeExtractors/ActionTypeShapeExtractor.js +442 -0
- package/build/browser/conversion/toMarketplace/shapeExtractors/ActionTypeShapeExtractor.js.map +1 -0
- package/build/browser/conversion/toMarketplace/shapeExtractors/ActionTypeShapeExtractor.test.js +562 -0
- package/build/browser/conversion/toMarketplace/shapeExtractors/ActionTypeShapeExtractor.test.js.map +1 -0
- package/build/browser/conversion/toMarketplace/shapeExtractors/IrShapeExtractor.js +513 -0
- package/build/browser/conversion/toMarketplace/shapeExtractors/IrShapeExtractor.js.map +1 -0
- package/build/browser/conversion/toMarketplace/shapeExtractors/LinkTypeShapeExtractor.js +274 -0
- package/build/browser/conversion/toMarketplace/shapeExtractors/LinkTypeShapeExtractor.js.map +1 -0
- package/build/browser/conversion/toMarketplace/shapeExtractors/ObjectTypeShapeExtractor.js +425 -0
- package/build/browser/conversion/toMarketplace/shapeExtractors/ObjectTypeShapeExtractor.js.map +1 -0
- package/build/browser/conversion/toMarketplace/shapeExtractors/ObjectTypeShapeExtractor.test.js +677 -0
- package/build/browser/conversion/toMarketplace/shapeExtractors/ObjectTypeShapeExtractor.test.js.map +1 -0
- package/build/browser/conversion/toMarketplace/typeVisitors.js +615 -0
- package/build/browser/conversion/toMarketplace/typeVisitors.js.map +1 -0
- package/build/browser/index.js +2 -0
- package/build/browser/index.js.map +1 -1
- package/build/browser/util/generateRid.js +476 -0
- package/build/browser/util/generateRid.js.map +1 -0
- package/build/cjs/ActionTypeShapeExtractor-5IVLHAPH.cjs +395 -0
- package/build/cjs/ActionTypeShapeExtractor-5IVLHAPH.cjs.map +1 -0
- package/build/cjs/chunk-AWYOBJ25.cjs +440 -0
- package/build/cjs/chunk-AWYOBJ25.cjs.map +1 -0
- package/build/cjs/index.cjs +3965 -2663
- package/build/cjs/index.cjs.map +1 -1
- package/build/cjs/index.d.cts +103 -1
- package/build/esm/api/defineOntologyV2.js +35 -0
- package/build/esm/api/defineOntologyV2.js.map +1 -0
- package/build/esm/cli/main.js +120 -0
- package/build/esm/cli/main.js.map +1 -0
- package/build/esm/cli/marketplaceSerialization/BlockGeneratorResult.js +2 -0
- package/build/esm/cli/marketplaceSerialization/BlockGeneratorResult.js.map +1 -0
- package/build/esm/cli/marketplaceSerialization/CodeBlockSetSpec.js +2 -0
- package/build/esm/cli/marketplaceSerialization/CodeBlockSetSpec.js.map +1 -0
- package/build/esm/cli/marketplaceSerialization/CodeBlockSpec.js +53 -0
- package/build/esm/cli/marketplaceSerialization/CodeBlockSpec.js.map +1 -0
- package/build/esm/cli/marketplaceSerialization/StoreManifestEntry.js +2 -0
- package/build/esm/cli/marketplaceSerialization/StoreManifestEntry.js.map +1 -0
- package/build/esm/cli/marketplaceSerialization/index.js +2 -0
- package/build/esm/cli/marketplaceSerialization/index.js.map +1 -0
- package/build/esm/cli/marketplaceSerialization/specGenerators.js +70 -0
- package/build/esm/cli/marketplaceSerialization/specGenerators.js.map +1 -0
- package/build/esm/cli/marketplaceSerialization/supportingTypes.js +2 -0
- package/build/esm/cli/marketplaceSerialization/supportingTypes.js.map +1 -0
- package/build/esm/conversion/toConjure/distributeTypeHelper.js +23 -0
- package/build/esm/conversion/toConjure/distributeTypeHelper.js.map +1 -0
- package/build/esm/conversion/toMarketplace/convertActionHelpers.js +469 -0
- package/build/esm/conversion/toMarketplace/convertActionHelpers.js.map +1 -0
- package/build/esm/conversion/toMarketplace/convertActionParameterConditionalOverride.js +96 -0
- package/build/esm/conversion/toMarketplace/convertActionParameterConditionalOverride.js.map +1 -0
- package/build/esm/conversion/toMarketplace/convertActionParameters.js +81 -0
- package/build/esm/conversion/toMarketplace/convertActionParameters.js.map +1 -0
- package/build/esm/conversion/toMarketplace/convertActionSections.js +45 -0
- package/build/esm/conversion/toMarketplace/convertActionSections.js.map +1 -0
- package/build/esm/conversion/toMarketplace/convertActionValidation.js +160 -0
- package/build/esm/conversion/toMarketplace/convertActionValidation.js.map +1 -0
- package/build/esm/conversion/toMarketplace/convertActionVisibility.js +41 -0
- package/build/esm/conversion/toMarketplace/convertActionVisibility.js.map +1 -0
- package/build/esm/conversion/toMarketplace/convertCardinality.js +23 -0
- package/build/esm/conversion/toMarketplace/convertCardinality.js.map +1 -0
- package/build/esm/conversion/toMarketplace/convertConditionDefinition.js +88 -0
- package/build/esm/conversion/toMarketplace/convertConditionDefinition.js.map +1 -0
- package/build/esm/conversion/toMarketplace/convertDataConstraintToDataConstraints.js +26 -0
- package/build/esm/conversion/toMarketplace/convertDataConstraintToDataConstraints.js.map +1 -0
- package/build/esm/conversion/toMarketplace/convertDatasourceDefinition.js +352 -0
- package/build/esm/conversion/toMarketplace/convertDatasourceDefinition.js.map +1 -0
- package/build/esm/conversion/toMarketplace/convertInterface.js +75 -0
- package/build/esm/conversion/toMarketplace/convertInterface.js.map +1 -0
- package/build/esm/conversion/toMarketplace/convertInterfacePropertyType.js +62 -0
- package/build/esm/conversion/toMarketplace/convertInterfacePropertyType.js.map +1 -0
- package/build/esm/conversion/toMarketplace/convertLink.js +247 -0
- package/build/esm/conversion/toMarketplace/convertLink.js.map +1 -0
- package/build/esm/conversion/toMarketplace/convertMappingValue.js +76 -0
- package/build/esm/conversion/toMarketplace/convertMappingValue.js.map +1 -0
- package/build/esm/conversion/toMarketplace/convertNullabilityToDataConstraint.js +42 -0
- package/build/esm/conversion/toMarketplace/convertNullabilityToDataConstraint.js.map +1 -0
- package/build/esm/conversion/toMarketplace/convertObject.js +262 -0
- package/build/esm/conversion/toMarketplace/convertObject.js.map +1 -0
- package/build/esm/conversion/toMarketplace/convertObjectPropertyType.js +59 -0
- package/build/esm/conversion/toMarketplace/convertObjectPropertyType.js.map +1 -0
- package/build/esm/conversion/toMarketplace/convertOntologyDefinition.js +29 -0
- package/build/esm/conversion/toMarketplace/convertOntologyDefinition.js.map +1 -0
- package/build/esm/conversion/toMarketplace/convertOntologyDefinitionToWireBlockData.js +236 -0
- package/build/esm/conversion/toMarketplace/convertOntologyDefinitionToWireBlockData.js.map +1 -0
- package/build/esm/conversion/toMarketplace/convertOntologyToValueTypeIr.js +24 -0
- package/build/esm/conversion/toMarketplace/convertOntologyToValueTypeIr.js.map +1 -0
- package/build/esm/conversion/toMarketplace/convertSectionConditionalOverride.js +35 -0
- package/build/esm/conversion/toMarketplace/convertSectionConditionalOverride.js.map +1 -0
- package/build/esm/conversion/toMarketplace/convertSpt.js +65 -0
- package/build/esm/conversion/toMarketplace/convertSpt.js.map +1 -0
- package/build/esm/conversion/toMarketplace/convertValueType.js +20 -0
- package/build/esm/conversion/toMarketplace/convertValueType.js.map +1 -0
- package/build/esm/conversion/toMarketplace/convertValueTypeDataConstraints.js +30 -0
- package/build/esm/conversion/toMarketplace/convertValueTypeDataConstraints.js.map +1 -0
- package/build/esm/conversion/toMarketplace/convertValueTypesToIr.js +34 -0
- package/build/esm/conversion/toMarketplace/convertValueTypesToIr.js.map +1 -0
- package/build/esm/conversion/toMarketplace/dataConstraintToPropertyTypeDataConstraint.js +83 -0
- package/build/esm/conversion/toMarketplace/dataConstraintToPropertyTypeDataConstraint.js.map +1 -0
- package/build/esm/conversion/toMarketplace/getFormContentOrdering.js +39 -0
- package/build/esm/conversion/toMarketplace/getFormContentOrdering.js.map +1 -0
- package/build/esm/conversion/toMarketplace/propertyTypeTypeToOntologyIrInterfaceType.js +146 -0
- package/build/esm/conversion/toMarketplace/propertyTypeTypeToOntologyIrInterfaceType.js.map +1 -0
- package/build/esm/conversion/toMarketplace/propertyTypeTypeToOntologyIrType.js +156 -0
- package/build/esm/conversion/toMarketplace/propertyTypeTypeToOntologyIrType.js.map +1 -0
- package/build/esm/conversion/toMarketplace/shapeExtractors/ActionTypeShapeExtractor.js +442 -0
- package/build/esm/conversion/toMarketplace/shapeExtractors/ActionTypeShapeExtractor.js.map +1 -0
- package/build/esm/conversion/toMarketplace/shapeExtractors/ActionTypeShapeExtractor.test.js +562 -0
- package/build/esm/conversion/toMarketplace/shapeExtractors/ActionTypeShapeExtractor.test.js.map +1 -0
- package/build/esm/conversion/toMarketplace/shapeExtractors/IrShapeExtractor.js +513 -0
- package/build/esm/conversion/toMarketplace/shapeExtractors/IrShapeExtractor.js.map +1 -0
- package/build/esm/conversion/toMarketplace/shapeExtractors/LinkTypeShapeExtractor.js +274 -0
- package/build/esm/conversion/toMarketplace/shapeExtractors/LinkTypeShapeExtractor.js.map +1 -0
- package/build/esm/conversion/toMarketplace/shapeExtractors/ObjectTypeShapeExtractor.js +425 -0
- package/build/esm/conversion/toMarketplace/shapeExtractors/ObjectTypeShapeExtractor.js.map +1 -0
- package/build/esm/conversion/toMarketplace/shapeExtractors/ObjectTypeShapeExtractor.test.js +677 -0
- package/build/esm/conversion/toMarketplace/shapeExtractors/ObjectTypeShapeExtractor.test.js.map +1 -0
- package/build/esm/conversion/toMarketplace/typeVisitors.js +615 -0
- package/build/esm/conversion/toMarketplace/typeVisitors.js.map +1 -0
- package/build/esm/index.js +2 -0
- package/build/esm/index.js.map +1 -1
- package/build/esm/util/generateRid.js +476 -0
- package/build/esm/util/generateRid.js.map +1 -0
- package/build/types/api/defineOntologyV2.d.ts +3 -0
- package/build/types/api/defineOntologyV2.d.ts.map +1 -0
- package/build/types/cli/main.d.ts +1 -0
- package/build/types/cli/main.d.ts.map +1 -0
- package/build/types/cli/marketplaceSerialization/BlockGeneratorResult.d.ts +69 -0
- package/build/types/cli/marketplaceSerialization/BlockGeneratorResult.d.ts.map +1 -0
- package/build/types/cli/marketplaceSerialization/CodeBlockSetSpec.d.ts +60 -0
- package/build/types/cli/marketplaceSerialization/CodeBlockSetSpec.d.ts.map +1 -0
- package/build/types/cli/marketplaceSerialization/CodeBlockSpec.d.ts +48 -0
- package/build/types/cli/marketplaceSerialization/CodeBlockSpec.d.ts.map +1 -0
- package/build/types/cli/marketplaceSerialization/StoreManifestEntry.d.ts +13 -0
- package/build/types/cli/marketplaceSerialization/StoreManifestEntry.d.ts.map +1 -0
- package/build/types/cli/marketplaceSerialization/index.d.ts +11 -0
- package/build/types/cli/marketplaceSerialization/index.d.ts.map +1 -0
- package/build/types/cli/marketplaceSerialization/specGenerators.d.ts +10 -0
- package/build/types/cli/marketplaceSerialization/specGenerators.d.ts.map +1 -0
- package/build/types/cli/marketplaceSerialization/supportingTypes.d.ts +31 -0
- package/build/types/cli/marketplaceSerialization/supportingTypes.d.ts.map +1 -0
- package/build/types/conversion/toConjure/distributeTypeHelper.d.ts +3 -0
- package/build/types/conversion/toConjure/distributeTypeHelper.d.ts.map +1 -0
- package/build/types/conversion/toMarketplace/convertActionHelpers.d.ts +7 -0
- package/build/types/conversion/toMarketplace/convertActionHelpers.d.ts.map +1 -0
- package/build/types/conversion/toMarketplace/convertActionParameterConditionalOverride.d.ts +4 -0
- package/build/types/conversion/toMarketplace/convertActionParameterConditionalOverride.d.ts.map +1 -0
- package/build/types/conversion/toMarketplace/convertActionParameters.d.ts +4 -0
- package/build/types/conversion/toMarketplace/convertActionParameters.d.ts.map +1 -0
- package/build/types/conversion/toMarketplace/convertActionSections.d.ts +4 -0
- package/build/types/conversion/toMarketplace/convertActionSections.d.ts.map +1 -0
- package/build/types/conversion/toMarketplace/convertActionValidation.d.ts +4 -0
- package/build/types/conversion/toMarketplace/convertActionValidation.d.ts.map +1 -0
- package/build/types/conversion/toMarketplace/convertActionVisibility.d.ts +2 -0
- package/build/types/conversion/toMarketplace/convertActionVisibility.d.ts.map +1 -0
- package/build/types/conversion/toMarketplace/convertCardinality.d.ts +3 -0
- package/build/types/conversion/toMarketplace/convertCardinality.d.ts.map +1 -0
- package/build/types/conversion/toMarketplace/convertConditionDefinition.d.ts +3 -0
- package/build/types/conversion/toMarketplace/convertConditionDefinition.d.ts.map +1 -0
- package/build/types/conversion/toMarketplace/convertDataConstraintToDataConstraints.d.ts +2 -0
- package/build/types/conversion/toMarketplace/convertDataConstraintToDataConstraints.d.ts.map +1 -0
- package/build/types/conversion/toMarketplace/convertDatasourceDefinition.d.ts +4 -0
- package/build/types/conversion/toMarketplace/convertDatasourceDefinition.d.ts.map +1 -0
- package/build/types/conversion/toMarketplace/convertInterface.d.ts +4 -0
- package/build/types/conversion/toMarketplace/convertInterface.d.ts.map +1 -0
- package/build/types/conversion/toMarketplace/convertInterfacePropertyType.d.ts +4 -0
- package/build/types/conversion/toMarketplace/convertInterfacePropertyType.d.ts.map +1 -0
- package/build/types/conversion/toMarketplace/convertLink.d.ts +9 -0
- package/build/types/conversion/toMarketplace/convertLink.d.ts.map +1 -0
- package/build/types/conversion/toMarketplace/convertMappingValue.d.ts +4 -0
- package/build/types/conversion/toMarketplace/convertMappingValue.d.ts.map +1 -0
- package/build/types/conversion/toMarketplace/convertNullabilityToDataConstraint.d.ts +6 -0
- package/build/types/conversion/toMarketplace/convertNullabilityToDataConstraint.d.ts.map +1 -0
- package/build/types/conversion/toMarketplace/convertObject.d.ts +10 -0
- package/build/types/conversion/toMarketplace/convertObject.d.ts.map +1 -0
- package/build/types/conversion/toMarketplace/convertObjectPropertyType.d.ts +4 -0
- package/build/types/conversion/toMarketplace/convertObjectPropertyType.d.ts.map +1 -0
- package/build/types/conversion/toMarketplace/convertOntologyDefinition.d.ts +4 -0
- package/build/types/conversion/toMarketplace/convertOntologyDefinition.d.ts.map +1 -0
- package/build/types/conversion/toMarketplace/convertOntologyDefinitionToWireBlockData.d.ts +4 -0
- package/build/types/conversion/toMarketplace/convertOntologyDefinitionToWireBlockData.d.ts.map +1 -0
- package/build/types/conversion/toMarketplace/convertOntologyToValueTypeIr.d.ts +3 -0
- package/build/types/conversion/toMarketplace/convertOntologyToValueTypeIr.d.ts.map +1 -0
- package/build/types/conversion/toMarketplace/convertSectionConditionalOverride.d.ts +3 -0
- package/build/types/conversion/toMarketplace/convertSectionConditionalOverride.d.ts.map +1 -0
- package/build/types/conversion/toMarketplace/convertSpt.d.ts +4 -0
- package/build/types/conversion/toMarketplace/convertSpt.d.ts.map +1 -0
- package/build/types/conversion/toMarketplace/convertValueType.d.ts +4 -0
- package/build/types/conversion/toMarketplace/convertValueType.d.ts.map +1 -0
- package/build/types/conversion/toMarketplace/convertValueTypeDataConstraints.d.ts +2 -0
- package/build/types/conversion/toMarketplace/convertValueTypeDataConstraints.d.ts.map +1 -0
- package/build/types/conversion/toMarketplace/convertValueTypesToIr.d.ts +3 -0
- package/build/types/conversion/toMarketplace/convertValueTypesToIr.d.ts.map +1 -0
- package/build/types/conversion/toMarketplace/dataConstraintToPropertyTypeDataConstraint.d.ts +2 -0
- package/build/types/conversion/toMarketplace/dataConstraintToPropertyTypeDataConstraint.d.ts.map +1 -0
- package/build/types/conversion/toMarketplace/getFormContentOrdering.d.ts +3 -0
- package/build/types/conversion/toMarketplace/getFormContentOrdering.d.ts.map +1 -0
- package/build/types/conversion/toMarketplace/propertyTypeTypeToOntologyIrInterfaceType.d.ts +4 -0
- package/build/types/conversion/toMarketplace/propertyTypeTypeToOntologyIrInterfaceType.d.ts.map +1 -0
- package/build/types/conversion/toMarketplace/propertyTypeTypeToOntologyIrType.d.ts +4 -0
- package/build/types/conversion/toMarketplace/propertyTypeTypeToOntologyIrType.d.ts.map +1 -0
- package/build/types/conversion/toMarketplace/shapeExtractors/ActionTypeShapeExtractor.d.ts +13 -0
- package/build/types/conversion/toMarketplace/shapeExtractors/ActionTypeShapeExtractor.d.ts.map +1 -0
- package/build/types/conversion/toMarketplace/shapeExtractors/ActionTypeShapeExtractor.test.d.ts +1 -0
- package/build/types/conversion/toMarketplace/shapeExtractors/ActionTypeShapeExtractor.test.d.ts.map +1 -0
- package/build/types/conversion/toMarketplace/shapeExtractors/IrShapeExtractor.d.ts +11 -0
- package/build/types/conversion/toMarketplace/shapeExtractors/IrShapeExtractor.d.ts.map +1 -0
- package/build/types/conversion/toMarketplace/shapeExtractors/LinkTypeShapeExtractor.d.ts +43 -0
- package/build/types/conversion/toMarketplace/shapeExtractors/LinkTypeShapeExtractor.d.ts.map +1 -0
- package/build/types/conversion/toMarketplace/shapeExtractors/ObjectTypeShapeExtractor.d.ts +28 -0
- package/build/types/conversion/toMarketplace/shapeExtractors/ObjectTypeShapeExtractor.d.ts.map +1 -0
- package/build/types/conversion/toMarketplace/shapeExtractors/ObjectTypeShapeExtractor.test.d.ts +1 -0
- package/build/types/conversion/toMarketplace/shapeExtractors/ObjectTypeShapeExtractor.test.d.ts.map +1 -0
- package/build/types/conversion/toMarketplace/typeVisitors.d.ts +17 -0
- package/build/types/conversion/toMarketplace/typeVisitors.d.ts.map +1 -0
- package/build/types/index.d.ts +3 -0
- package/build/types/index.d.ts.map +1 -1
- package/build/types/util/generateRid.d.ts +216 -0
- package/build/types/util/generateRid.d.ts.map +1 -0
- package/package.json +10 -4
- package/build/cjs/chunk-ZPP374PZ.cjs +0 -17
- package/build/cjs/chunk-ZPP374PZ.cjs.map +0 -1
- package/build/cjs/prompt-VSXFWPU4.cjs +0 -955
- package/build/cjs/prompt-VSXFWPU4.cjs.map +0 -1
|
@@ -0,0 +1,442 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2025 Palantir Technologies, Inc. All rights reserved.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
|
|
17
|
+
import { ReadableIdGenerator } from "../../../util/generateRid.js";
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* Helper to create LocalizedTitleAndDescription with empty localizations
|
|
21
|
+
*/
|
|
22
|
+
function createLocalizedAbout(fallbackTitle, fallbackDescription) {
|
|
23
|
+
return {
|
|
24
|
+
fallbackTitle,
|
|
25
|
+
fallbackDescription: fallbackDescription ?? "",
|
|
26
|
+
localizedTitle: {},
|
|
27
|
+
localizedDescription: {}
|
|
28
|
+
};
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
* Converts OntologyIR BaseParameterType to marketplace BaseParameterType.
|
|
33
|
+
* Matches the Java BaseParameterTypeConverter visitor pattern.
|
|
34
|
+
*/
|
|
35
|
+
class BaseParameterTypeConverter {
|
|
36
|
+
constructor(objectTypeIds, interfaceTypes) {
|
|
37
|
+
this.objectTypeIds = objectTypeIds ?? {};
|
|
38
|
+
this.interfaceTypes = interfaceTypes ?? {};
|
|
39
|
+
}
|
|
40
|
+
convert(parameterType) {
|
|
41
|
+
const pt = parameterType;
|
|
42
|
+
const t = pt.type;
|
|
43
|
+
switch (t) {
|
|
44
|
+
// Simple types - return {type: "name", name: {}}
|
|
45
|
+
case "boolean":
|
|
46
|
+
return {
|
|
47
|
+
type: "boolean",
|
|
48
|
+
boolean: {}
|
|
49
|
+
};
|
|
50
|
+
case "booleanList":
|
|
51
|
+
return {
|
|
52
|
+
type: "booleanList",
|
|
53
|
+
booleanList: {}
|
|
54
|
+
};
|
|
55
|
+
case "integer":
|
|
56
|
+
return {
|
|
57
|
+
type: "integer",
|
|
58
|
+
integer: {}
|
|
59
|
+
};
|
|
60
|
+
case "integerList":
|
|
61
|
+
return {
|
|
62
|
+
type: "integerList",
|
|
63
|
+
integerList: {}
|
|
64
|
+
};
|
|
65
|
+
case "long":
|
|
66
|
+
return {
|
|
67
|
+
type: "long",
|
|
68
|
+
long: {}
|
|
69
|
+
};
|
|
70
|
+
case "longList":
|
|
71
|
+
return {
|
|
72
|
+
type: "longList",
|
|
73
|
+
longList: {}
|
|
74
|
+
};
|
|
75
|
+
case "double":
|
|
76
|
+
return {
|
|
77
|
+
type: "double",
|
|
78
|
+
double: {}
|
|
79
|
+
};
|
|
80
|
+
case "doubleList":
|
|
81
|
+
return {
|
|
82
|
+
type: "doubleList",
|
|
83
|
+
doubleList: {}
|
|
84
|
+
};
|
|
85
|
+
case "string":
|
|
86
|
+
return {
|
|
87
|
+
type: "string",
|
|
88
|
+
string: {}
|
|
89
|
+
};
|
|
90
|
+
case "stringList":
|
|
91
|
+
return {
|
|
92
|
+
type: "stringList",
|
|
93
|
+
stringList: {}
|
|
94
|
+
};
|
|
95
|
+
case "decimal":
|
|
96
|
+
{
|
|
97
|
+
const dec = pt.decimal;
|
|
98
|
+
return {
|
|
99
|
+
type: "decimal",
|
|
100
|
+
decimal: {
|
|
101
|
+
precision: dec?.precision,
|
|
102
|
+
scale: dec?.scale
|
|
103
|
+
}
|
|
104
|
+
};
|
|
105
|
+
}
|
|
106
|
+
case "decimalList":
|
|
107
|
+
{
|
|
108
|
+
const dec = pt.decimalList;
|
|
109
|
+
return {
|
|
110
|
+
type: "decimalList",
|
|
111
|
+
decimalList: {
|
|
112
|
+
precision: dec?.precision,
|
|
113
|
+
scale: dec?.scale
|
|
114
|
+
}
|
|
115
|
+
};
|
|
116
|
+
}
|
|
117
|
+
case "geohash":
|
|
118
|
+
return {
|
|
119
|
+
type: "geohash",
|
|
120
|
+
geohash: {}
|
|
121
|
+
};
|
|
122
|
+
case "geohashList":
|
|
123
|
+
return {
|
|
124
|
+
type: "geohashList",
|
|
125
|
+
geohashList: {}
|
|
126
|
+
};
|
|
127
|
+
case "geoshape":
|
|
128
|
+
return {
|
|
129
|
+
type: "geoshape",
|
|
130
|
+
geoshape: {}
|
|
131
|
+
};
|
|
132
|
+
case "geoshapeList":
|
|
133
|
+
return {
|
|
134
|
+
type: "geoshapeList",
|
|
135
|
+
geoshapeList: {}
|
|
136
|
+
};
|
|
137
|
+
case "timeSeriesReference":
|
|
138
|
+
return {
|
|
139
|
+
type: "timeSeriesReference",
|
|
140
|
+
timeSeriesReference: {}
|
|
141
|
+
};
|
|
142
|
+
case "timestamp":
|
|
143
|
+
return {
|
|
144
|
+
type: "timestamp",
|
|
145
|
+
timestamp: {}
|
|
146
|
+
};
|
|
147
|
+
case "timestampList":
|
|
148
|
+
return {
|
|
149
|
+
type: "timestampList",
|
|
150
|
+
timestampList: {}
|
|
151
|
+
};
|
|
152
|
+
case "date":
|
|
153
|
+
return {
|
|
154
|
+
type: "date",
|
|
155
|
+
date: {}
|
|
156
|
+
};
|
|
157
|
+
case "dateList":
|
|
158
|
+
return {
|
|
159
|
+
type: "dateList",
|
|
160
|
+
dateList: {}
|
|
161
|
+
};
|
|
162
|
+
case "attachment":
|
|
163
|
+
return {
|
|
164
|
+
type: "attachment",
|
|
165
|
+
attachment: {}
|
|
166
|
+
};
|
|
167
|
+
case "attachmentList":
|
|
168
|
+
return {
|
|
169
|
+
type: "attachmentList",
|
|
170
|
+
attachmentList: {}
|
|
171
|
+
};
|
|
172
|
+
case "marking":
|
|
173
|
+
return {
|
|
174
|
+
type: "marking",
|
|
175
|
+
marking: {}
|
|
176
|
+
};
|
|
177
|
+
case "markingList":
|
|
178
|
+
return {
|
|
179
|
+
type: "markingList",
|
|
180
|
+
markingList: {}
|
|
181
|
+
};
|
|
182
|
+
case "mediaReference":
|
|
183
|
+
return {
|
|
184
|
+
type: "mediaReference",
|
|
185
|
+
mediaReference: {}
|
|
186
|
+
};
|
|
187
|
+
case "objectTypeReference":
|
|
188
|
+
return {
|
|
189
|
+
type: "objectTypeReference",
|
|
190
|
+
objectTypeReference: {}
|
|
191
|
+
};
|
|
192
|
+
case "geotimeSeriesReference":
|
|
193
|
+
return {
|
|
194
|
+
type: "geotimeSeriesReference",
|
|
195
|
+
geotimeSeriesReference: {}
|
|
196
|
+
};
|
|
197
|
+
case "geotimeSeriesReferenceList":
|
|
198
|
+
return {
|
|
199
|
+
type: "geotimeSeriesReferenceList",
|
|
200
|
+
geotimeSeriesReferenceList: {}
|
|
201
|
+
};
|
|
202
|
+
|
|
203
|
+
// Object reference types - need to look up objectTypeId in knownIdentifiers
|
|
204
|
+
case "objectReference":
|
|
205
|
+
{
|
|
206
|
+
const objRef = pt.objectReference;
|
|
207
|
+
const blockId = objRef ? this.objectTypeIds[objRef.objectTypeId] : undefined;
|
|
208
|
+
return {
|
|
209
|
+
type: "objectReference",
|
|
210
|
+
objectReference: {
|
|
211
|
+
objectTypeId: blockId ?? ""
|
|
212
|
+
}
|
|
213
|
+
};
|
|
214
|
+
}
|
|
215
|
+
case "objectReferenceList":
|
|
216
|
+
{
|
|
217
|
+
const objRef = pt.objectReferenceList;
|
|
218
|
+
const blockId = objRef ? this.objectTypeIds[objRef.objectTypeId] : undefined;
|
|
219
|
+
return {
|
|
220
|
+
type: "objectReferenceList",
|
|
221
|
+
objectReferenceList: {
|
|
222
|
+
objectTypeId: blockId ?? ""
|
|
223
|
+
}
|
|
224
|
+
};
|
|
225
|
+
}
|
|
226
|
+
case "objectSetRid":
|
|
227
|
+
{
|
|
228
|
+
const objRef = pt.objectSetRid;
|
|
229
|
+
const blockId = objRef ? this.objectTypeIds[objRef.objectTypeId] : undefined;
|
|
230
|
+
return {
|
|
231
|
+
type: "objectSetRid",
|
|
232
|
+
objectSetRid: {
|
|
233
|
+
objectTypeId: blockId ?? ""
|
|
234
|
+
}
|
|
235
|
+
};
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
// Interface reference types - need to look up interfaceTypeRid in knownIdentifiers
|
|
239
|
+
case "interfaceReference":
|
|
240
|
+
{
|
|
241
|
+
const ifRef = pt.interfaceReference;
|
|
242
|
+
const blockId = ifRef ? this.interfaceTypes[ifRef.interfaceTypeRid] : undefined;
|
|
243
|
+
return {
|
|
244
|
+
type: "interfaceReference",
|
|
245
|
+
interfaceReference: {
|
|
246
|
+
interfaceTypeRid: blockId ?? ""
|
|
247
|
+
}
|
|
248
|
+
};
|
|
249
|
+
}
|
|
250
|
+
case "interfaceReferenceList":
|
|
251
|
+
{
|
|
252
|
+
const ifRef = pt.interfaceReferenceList;
|
|
253
|
+
const blockId = ifRef ? this.interfaceTypes[ifRef.interfaceTypeRid] : undefined;
|
|
254
|
+
return {
|
|
255
|
+
type: "interfaceReferenceList",
|
|
256
|
+
interfaceReferenceList: {
|
|
257
|
+
interfaceTypeRid: blockId ?? ""
|
|
258
|
+
}
|
|
259
|
+
};
|
|
260
|
+
}
|
|
261
|
+
case "interfaceObjectSetRid":
|
|
262
|
+
{
|
|
263
|
+
const ifRef = pt.interfaceObjectSetRid;
|
|
264
|
+
const blockId = ifRef ? this.interfaceTypes[ifRef.interfaceTypeRid] : undefined;
|
|
265
|
+
return {
|
|
266
|
+
type: "interfaceObjectSetRid",
|
|
267
|
+
interfaceObjectSetRid: {
|
|
268
|
+
interfaceTypeRid: blockId ?? ""
|
|
269
|
+
}
|
|
270
|
+
};
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
// Struct types
|
|
274
|
+
case "struct":
|
|
275
|
+
{
|
|
276
|
+
const structType = pt.struct;
|
|
277
|
+
const convertedFields = {};
|
|
278
|
+
if (structType?.structFieldTypes) {
|
|
279
|
+
for (const [fieldName, fieldType] of Object.entries(structType.structFieldTypes)) {
|
|
280
|
+
convertedFields[fieldName] = this.convertStructField(fieldType);
|
|
281
|
+
}
|
|
282
|
+
}
|
|
283
|
+
return {
|
|
284
|
+
type: "struct",
|
|
285
|
+
struct: {
|
|
286
|
+
structFieldTypes: convertedFields
|
|
287
|
+
}
|
|
288
|
+
};
|
|
289
|
+
}
|
|
290
|
+
case "structList":
|
|
291
|
+
{
|
|
292
|
+
const structType = pt.structList;
|
|
293
|
+
const convertedFields = {};
|
|
294
|
+
if (structType?.structFieldTypes) {
|
|
295
|
+
for (const [fieldName, fieldType] of Object.entries(structType.structFieldTypes)) {
|
|
296
|
+
convertedFields[fieldName] = this.convertStructField(fieldType);
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
// Java converts structList to struct (not structList)
|
|
300
|
+
return {
|
|
301
|
+
type: "struct",
|
|
302
|
+
struct: {
|
|
303
|
+
structFieldTypes: convertedFields
|
|
304
|
+
}
|
|
305
|
+
};
|
|
306
|
+
}
|
|
307
|
+
default:
|
|
308
|
+
throw new Error(`Unknown BaseParameterType: ${t}`);
|
|
309
|
+
}
|
|
310
|
+
}
|
|
311
|
+
convertStructField(fieldType) {
|
|
312
|
+
const t = fieldType.type;
|
|
313
|
+
switch (t) {
|
|
314
|
+
case "boolean":
|
|
315
|
+
return {
|
|
316
|
+
type: "boolean",
|
|
317
|
+
boolean: {}
|
|
318
|
+
};
|
|
319
|
+
case "integer":
|
|
320
|
+
return {
|
|
321
|
+
type: "integer",
|
|
322
|
+
integer: {}
|
|
323
|
+
};
|
|
324
|
+
case "long":
|
|
325
|
+
return {
|
|
326
|
+
type: "long",
|
|
327
|
+
long: {}
|
|
328
|
+
};
|
|
329
|
+
case "double":
|
|
330
|
+
return {
|
|
331
|
+
type: "double",
|
|
332
|
+
double: {}
|
|
333
|
+
};
|
|
334
|
+
case "string":
|
|
335
|
+
return {
|
|
336
|
+
type: "string",
|
|
337
|
+
string: {}
|
|
338
|
+
};
|
|
339
|
+
case "date":
|
|
340
|
+
return {
|
|
341
|
+
type: "date",
|
|
342
|
+
date: {}
|
|
343
|
+
};
|
|
344
|
+
case "timestamp":
|
|
345
|
+
return {
|
|
346
|
+
type: "timestamp",
|
|
347
|
+
timestamp: {}
|
|
348
|
+
};
|
|
349
|
+
case "geohash":
|
|
350
|
+
return {
|
|
351
|
+
type: "geohash",
|
|
352
|
+
geohash: {}
|
|
353
|
+
};
|
|
354
|
+
case "objectReference":
|
|
355
|
+
{
|
|
356
|
+
const objRef = fieldType.objectReference;
|
|
357
|
+
const blockId = objRef ? this.objectTypeIds[objRef.objectTypeId] : undefined;
|
|
358
|
+
return {
|
|
359
|
+
type: "objectReference",
|
|
360
|
+
objectReference: {
|
|
361
|
+
objectTypeId: blockId ?? ""
|
|
362
|
+
}
|
|
363
|
+
};
|
|
364
|
+
}
|
|
365
|
+
default:
|
|
366
|
+
throw new Error(`Unknown struct field BaseParameterType: ${t}`);
|
|
367
|
+
}
|
|
368
|
+
}
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
/**
|
|
372
|
+
* Extracts action type shapes from an ActionTypeBlockDataV2
|
|
373
|
+
*/
|
|
374
|
+
export class ActionTypeShapeExtractor {
|
|
375
|
+
/**
|
|
376
|
+
* Extract action type shapes from block data
|
|
377
|
+
*/
|
|
378
|
+
extract(actionType, ridGenerator, knownIdentifiers) {
|
|
379
|
+
const actionApiName = actionType.actionType.metadata.apiName;
|
|
380
|
+
const actionReadableId = ReadableIdGenerator.getForActionType(actionApiName);
|
|
381
|
+
|
|
382
|
+
// Verify this readable ID exists in the rid generator
|
|
383
|
+
const actionTypeRid = ridGenerator.getActionTypeRids().get(actionReadableId);
|
|
384
|
+
if (!actionTypeRid) {
|
|
385
|
+
return {
|
|
386
|
+
inputShapes: new Map(),
|
|
387
|
+
outputShapes: new Map(),
|
|
388
|
+
inputShapeMetadata: new Map()
|
|
389
|
+
};
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
// Build action type shape
|
|
393
|
+
const actionOutputShape = {
|
|
394
|
+
about: createLocalizedAbout(actionType.actionType.metadata.displayMetadata.displayName, actionType.actionType.metadata.displayMetadata.description),
|
|
395
|
+
parameters: {},
|
|
396
|
+
// Legacy field, kept empty
|
|
397
|
+
parametersV2: Object.entries(actionType.parameterIds ?? {}).map(([_key, parameterId]) => {
|
|
398
|
+
const paramReadableId = this.getParameterReadableId(actionApiName, parameterId);
|
|
399
|
+
return this.toBlockInternalId(paramReadableId, ridGenerator);
|
|
400
|
+
})
|
|
401
|
+
};
|
|
402
|
+
const baseParameterTypeConverter = new BaseParameterTypeConverter(knownIdentifiers.objectTypeIds, knownIdentifiers.interfaceTypes);
|
|
403
|
+
|
|
404
|
+
// Build parameter output shapes
|
|
405
|
+
const allOutputShapes = new Map();
|
|
406
|
+
|
|
407
|
+
// Add parameter shapes
|
|
408
|
+
const parameters = actionType.actionType.metadata.parameters;
|
|
409
|
+
if (parameters) {
|
|
410
|
+
for (const [parameterId, parameter] of Object.entries(parameters)) {
|
|
411
|
+
const paramReadableId = this.getParameterReadableId(actionApiName, parameterId);
|
|
412
|
+
const parameterShape = {
|
|
413
|
+
about: createLocalizedAbout(parameter.displayMetadata.displayName, parameter.displayMetadata.description),
|
|
414
|
+
type: baseParameterTypeConverter.convert(parameter.type),
|
|
415
|
+
actionType: this.toBlockInternalId(actionReadableId, ridGenerator)
|
|
416
|
+
};
|
|
417
|
+
allOutputShapes.set(paramReadableId, {
|
|
418
|
+
type: "actionParameter",
|
|
419
|
+
actionParameter: parameterShape
|
|
420
|
+
});
|
|
421
|
+
}
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
// Add the action type shape itself
|
|
425
|
+
allOutputShapes.set(actionReadableId, {
|
|
426
|
+
type: "action",
|
|
427
|
+
action: actionOutputShape
|
|
428
|
+
});
|
|
429
|
+
return {
|
|
430
|
+
inputShapes: new Map(),
|
|
431
|
+
outputShapes: allOutputShapes,
|
|
432
|
+
inputShapeMetadata: new Map()
|
|
433
|
+
};
|
|
434
|
+
}
|
|
435
|
+
getParameterReadableId(actionApiName, parameterId) {
|
|
436
|
+
return `action-${actionApiName}-parameter-${parameterId}`;
|
|
437
|
+
}
|
|
438
|
+
toBlockInternalId(readableId, ridGenerator) {
|
|
439
|
+
return ridGenerator.toBlockInternalId(readableId);
|
|
440
|
+
}
|
|
441
|
+
}
|
|
442
|
+
//# sourceMappingURL=ActionTypeShapeExtractor.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ActionTypeShapeExtractor.js","names":["ReadableIdGenerator","createLocalizedAbout","fallbackTitle","fallbackDescription","localizedTitle","localizedDescription","BaseParameterTypeConverter","constructor","objectTypeIds","interfaceTypes","convert","parameterType","pt","t","type","boolean","booleanList","integer","integerList","long","longList","double","doubleList","string","stringList","dec","decimal","precision","scale","decimalList","geohash","geohashList","geoshape","geoshapeList","timeSeriesReference","timestamp","timestampList","date","dateList","attachment","attachmentList","marking","markingList","mediaReference","objectTypeReference","geotimeSeriesReference","geotimeSeriesReferenceList","objRef","objectReference","blockId","objectTypeId","undefined","objectReferenceList","objectSetRid","ifRef","interfaceReference","interfaceTypeRid","interfaceReferenceList","interfaceObjectSetRid","structType","struct","convertedFields","structFieldTypes","fieldName","fieldType","Object","entries","convertStructField","structList","Error","ActionTypeShapeExtractor","extract","actionType","ridGenerator","knownIdentifiers","actionApiName","metadata","apiName","actionReadableId","getForActionType","actionTypeRid","getActionTypeRids","get","inputShapes","Map","outputShapes","inputShapeMetadata","actionOutputShape","about","displayMetadata","displayName","description","parameters","parametersV2","parameterIds","map","_key","parameterId","paramReadableId","getParameterReadableId","toBlockInternalId","baseParameterTypeConverter","allOutputShapes","parameter","parameterShape","set","actionParameter","action","readableId"],"sources":["ActionTypeShapeExtractor.ts"],"sourcesContent":["/*\n * Copyright 2025 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 ActionType,\n ActionTypeBlockDataV2,\n KnownMarketplaceIdentifiers,\n} from \"@osdk/client.unstable\";\nimport type {\n ActionTypeParameterShape,\n ActionTypeShape,\n BaseParameterType,\n LocalizedTitleAndDescription,\n OutputShape,\n} from \"@osdk/client.unstable/api\";\nimport {\n type BlockShapes,\n type OntologyRidGenerator,\n type ReadableId,\n ReadableIdGenerator,\n} from \"../../../util/generateRid.js\";\n\n/**\n * Helper to create LocalizedTitleAndDescription with empty localizations\n */\nfunction createLocalizedAbout(\n fallbackTitle: string,\n fallbackDescription?: string,\n): LocalizedTitleAndDescription {\n return {\n fallbackTitle,\n fallbackDescription: fallbackDescription ?? \"\",\n localizedTitle: {},\n localizedDescription: {},\n };\n}\n\n/**\n * Converts OntologyIR BaseParameterType to marketplace BaseParameterType.\n * Matches the Java BaseParameterTypeConverter visitor pattern.\n */\nclass BaseParameterTypeConverter {\n private readonly objectTypeIds: Record<string, string>;\n private readonly interfaceTypes: Record<string, string>;\n\n constructor(\n objectTypeIds?: Record<string, string>,\n interfaceTypes?: Record<string, string>,\n ) {\n this.objectTypeIds = objectTypeIds ?? {};\n this.interfaceTypes = interfaceTypes ?? {};\n }\n\n convert(parameterType: { type: string }): BaseParameterType {\n const pt = parameterType as Record<string, unknown> & { type: string };\n const t = pt.type;\n switch (t) {\n // Simple types - return {type: \"name\", name: {}}\n case \"boolean\":\n return { type: \"boolean\", boolean: {} } as BaseParameterType;\n case \"booleanList\":\n return { type: \"booleanList\", booleanList: {} } as BaseParameterType;\n case \"integer\":\n return { type: \"integer\", integer: {} } as BaseParameterType;\n case \"integerList\":\n return { type: \"integerList\", integerList: {} } as BaseParameterType;\n case \"long\":\n return { type: \"long\", long: {} } as BaseParameterType;\n case \"longList\":\n return { type: \"longList\", longList: {} } as BaseParameterType;\n case \"double\":\n return { type: \"double\", double: {} } as BaseParameterType;\n case \"doubleList\":\n return { type: \"doubleList\", doubleList: {} } as BaseParameterType;\n case \"string\":\n return { type: \"string\", string: {} } as BaseParameterType;\n case \"stringList\":\n return { type: \"stringList\", stringList: {} } as BaseParameterType;\n case \"decimal\": {\n const dec = pt.decimal as\n | { precision?: number; scale?: number }\n | undefined;\n return {\n type: \"decimal\",\n decimal: { precision: dec?.precision, scale: dec?.scale },\n } as BaseParameterType;\n }\n case \"decimalList\": {\n const dec = pt.decimalList as\n | { precision?: number; scale?: number }\n | undefined;\n return {\n type: \"decimalList\",\n decimalList: { precision: dec?.precision, scale: dec?.scale },\n } as BaseParameterType;\n }\n case \"geohash\":\n return { type: \"geohash\", geohash: {} } as BaseParameterType;\n case \"geohashList\":\n return { type: \"geohashList\", geohashList: {} } as BaseParameterType;\n case \"geoshape\":\n return { type: \"geoshape\", geoshape: {} } as BaseParameterType;\n case \"geoshapeList\":\n return { type: \"geoshapeList\", geoshapeList: {} } as BaseParameterType;\n case \"timeSeriesReference\":\n return {\n type: \"timeSeriesReference\",\n timeSeriesReference: {},\n } as BaseParameterType;\n case \"timestamp\":\n return { type: \"timestamp\", timestamp: {} } as BaseParameterType;\n case \"timestampList\":\n return {\n type: \"timestampList\",\n timestampList: {},\n } as BaseParameterType;\n case \"date\":\n return { type: \"date\", date: {} } as BaseParameterType;\n case \"dateList\":\n return { type: \"dateList\", dateList: {} } as BaseParameterType;\n case \"attachment\":\n return { type: \"attachment\", attachment: {} } as BaseParameterType;\n case \"attachmentList\":\n return {\n type: \"attachmentList\",\n attachmentList: {},\n } as BaseParameterType;\n case \"marking\":\n return { type: \"marking\", marking: {} } as BaseParameterType;\n case \"markingList\":\n return { type: \"markingList\", markingList: {} } as BaseParameterType;\n case \"mediaReference\":\n return {\n type: \"mediaReference\",\n mediaReference: {},\n } as BaseParameterType;\n case \"objectTypeReference\":\n return {\n type: \"objectTypeReference\",\n objectTypeReference: {},\n } as BaseParameterType;\n case \"geotimeSeriesReference\":\n return {\n type: \"geotimeSeriesReference\",\n geotimeSeriesReference: {},\n } as BaseParameterType;\n case \"geotimeSeriesReferenceList\":\n return {\n type: \"geotimeSeriesReferenceList\",\n geotimeSeriesReferenceList: {},\n } as BaseParameterType;\n\n // Object reference types - need to look up objectTypeId in knownIdentifiers\n case \"objectReference\": {\n const objRef = pt.objectReference as\n | { objectTypeId: string }\n | undefined;\n const blockId = objRef\n ? this.objectTypeIds[objRef.objectTypeId]\n : undefined;\n return {\n type: \"objectReference\",\n objectReference: { objectTypeId: blockId ?? \"\" },\n } as BaseParameterType;\n }\n case \"objectReferenceList\": {\n const objRef = pt.objectReferenceList as\n | { objectTypeId: string }\n | undefined;\n const blockId = objRef\n ? this.objectTypeIds[objRef.objectTypeId]\n : undefined;\n return {\n type: \"objectReferenceList\",\n objectReferenceList: { objectTypeId: blockId ?? \"\" },\n } as BaseParameterType;\n }\n case \"objectSetRid\": {\n const objRef = pt.objectSetRid as { objectTypeId: string } | undefined;\n const blockId = objRef\n ? this.objectTypeIds[objRef.objectTypeId]\n : undefined;\n return {\n type: \"objectSetRid\",\n objectSetRid: { objectTypeId: blockId ?? \"\" },\n } as BaseParameterType;\n }\n\n // Interface reference types - need to look up interfaceTypeRid in knownIdentifiers\n case \"interfaceReference\": {\n const ifRef = pt.interfaceReference as\n | { interfaceTypeRid: string }\n | undefined;\n const blockId = ifRef\n ? this.interfaceTypes[ifRef.interfaceTypeRid]\n : undefined;\n return {\n type: \"interfaceReference\",\n interfaceReference: { interfaceTypeRid: blockId ?? \"\" },\n } as BaseParameterType;\n }\n case \"interfaceReferenceList\": {\n const ifRef = pt.interfaceReferenceList as\n | { interfaceTypeRid: string }\n | undefined;\n const blockId = ifRef\n ? this.interfaceTypes[ifRef.interfaceTypeRid]\n : undefined;\n return {\n type: \"interfaceReferenceList\",\n interfaceReferenceList: { interfaceTypeRid: blockId ?? \"\" },\n } as BaseParameterType;\n }\n case \"interfaceObjectSetRid\": {\n const ifRef = pt.interfaceObjectSetRid as\n | { interfaceTypeRid: string }\n | undefined;\n const blockId = ifRef\n ? this.interfaceTypes[ifRef.interfaceTypeRid]\n : undefined;\n return {\n type: \"interfaceObjectSetRid\",\n interfaceObjectSetRid: { interfaceTypeRid: blockId ?? \"\" },\n } as BaseParameterType;\n }\n\n // Struct types\n case \"struct\": {\n const structType = pt.struct as {\n structFieldTypes?: Record<\n string,\n { type: string; [key: string]: unknown }\n >;\n } | undefined;\n const convertedFields: Record<string, unknown> = {};\n if (structType?.structFieldTypes) {\n for (\n const [fieldName, fieldType] of Object.entries(\n structType.structFieldTypes,\n )\n ) {\n convertedFields[fieldName] = this.convertStructField(fieldType);\n }\n }\n return {\n type: \"struct\",\n struct: { structFieldTypes: convertedFields },\n } as BaseParameterType;\n }\n case \"structList\": {\n const structType = pt.structList as {\n structFieldTypes?: Record<\n string,\n { type: string; [key: string]: unknown }\n >;\n } | undefined;\n const convertedFields: Record<string, unknown> = {};\n if (structType?.structFieldTypes) {\n for (\n const [fieldName, fieldType] of Object.entries(\n structType.structFieldTypes,\n )\n ) {\n convertedFields[fieldName] = this.convertStructField(fieldType);\n }\n }\n // Java converts structList to struct (not structList)\n return {\n type: \"struct\",\n struct: { structFieldTypes: convertedFields },\n } as BaseParameterType;\n }\n\n default:\n throw new Error(`Unknown BaseParameterType: ${t}`);\n }\n }\n\n private convertStructField(\n fieldType: { type: string; [key: string]: unknown },\n ): unknown {\n const t = fieldType.type;\n switch (t) {\n case \"boolean\":\n return { type: \"boolean\", boolean: {} };\n case \"integer\":\n return { type: \"integer\", integer: {} };\n case \"long\":\n return { type: \"long\", long: {} };\n case \"double\":\n return { type: \"double\", double: {} };\n case \"string\":\n return { type: \"string\", string: {} };\n case \"date\":\n return { type: \"date\", date: {} };\n case \"timestamp\":\n return { type: \"timestamp\", timestamp: {} };\n case \"geohash\":\n return { type: \"geohash\", geohash: {} };\n case \"objectReference\": {\n const objRef = fieldType.objectReference as\n | { objectTypeId: string }\n | undefined;\n const blockId = objRef\n ? this.objectTypeIds[objRef.objectTypeId]\n : undefined;\n return {\n type: \"objectReference\",\n objectReference: { objectTypeId: blockId ?? \"\" },\n };\n }\n default:\n throw new Error(`Unknown struct field BaseParameterType: ${t}`);\n }\n }\n}\n\n/**\n * Extracts action type shapes from an ActionTypeBlockDataV2\n */\nexport class ActionTypeShapeExtractor {\n /**\n * Extract action type shapes from block data\n */\n extract(\n actionType: ActionTypeBlockDataV2,\n ridGenerator: OntologyRidGenerator,\n knownIdentifiers: KnownMarketplaceIdentifiers,\n ): BlockShapes {\n const actionApiName =\n (actionType.actionType as ActionType).metadata.apiName;\n const actionReadableId = ReadableIdGenerator.getForActionType(\n actionApiName,\n );\n\n // Verify this readable ID exists in the rid generator\n const actionTypeRid = ridGenerator.getActionTypeRids().get(\n actionReadableId,\n );\n if (!actionTypeRid) {\n return {\n inputShapes: new Map(),\n outputShapes: new Map(),\n inputShapeMetadata: new Map(),\n };\n }\n\n // Build action type shape\n const actionOutputShape: ActionTypeShape = {\n about: createLocalizedAbout(\n (actionType.actionType as ActionType).metadata.displayMetadata\n .displayName,\n (actionType.actionType as ActionType).metadata.displayMetadata\n .description,\n ),\n parameters: {}, // Legacy field, kept empty\n parametersV2: Object.entries(actionType.parameterIds ?? {}).map(\n ([_key, parameterId]) => {\n const paramReadableId = this.getParameterReadableId(\n actionApiName,\n parameterId,\n );\n return this.toBlockInternalId(paramReadableId, ridGenerator);\n },\n ),\n };\n\n const baseParameterTypeConverter = new BaseParameterTypeConverter(\n knownIdentifiers.objectTypeIds,\n knownIdentifiers.interfaceTypes,\n );\n\n // Build parameter output shapes\n const allOutputShapes = new Map<ReadableId, OutputShape>();\n\n // Add parameter shapes\n const parameters =\n (actionType.actionType as ActionType).metadata.parameters;\n if (parameters) {\n for (const [parameterId, parameter] of Object.entries(parameters)) {\n const paramReadableId = this.getParameterReadableId(\n actionApiName,\n parameterId,\n );\n\n const parameterShape: ActionTypeParameterShape = {\n about: createLocalizedAbout(\n parameter.displayMetadata.displayName,\n parameter.displayMetadata.description,\n ),\n type: baseParameterTypeConverter.convert(parameter.type),\n actionType: this.toBlockInternalId(actionReadableId, ridGenerator),\n };\n\n allOutputShapes.set(paramReadableId, {\n type: \"actionParameter\",\n actionParameter: parameterShape,\n });\n }\n }\n\n // Add the action type shape itself\n allOutputShapes.set(actionReadableId, {\n type: \"action\",\n action: actionOutputShape,\n });\n\n return {\n inputShapes: new Map(),\n outputShapes: allOutputShapes,\n inputShapeMetadata: new Map(),\n };\n }\n\n private getParameterReadableId(\n actionApiName: string,\n parameterId: string,\n ): ReadableId {\n return `action-${actionApiName}-parameter-${parameterId}` as ReadableId;\n }\n\n private toBlockInternalId(\n readableId: ReadableId,\n ridGenerator: OntologyRidGenerator,\n ): string {\n return ridGenerator.toBlockInternalId(readableId);\n }\n}\n"],"mappings":"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","ignoreList":[]}
|