Product
Socket Now Supports uv.lock Files
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
@quenty/adorneedata
Advanced tools
Bridges attributes and serialization
npm install @quenty/adorneedata --save
These are the requirements for this attribute data library.
return AdorneeData.new({
CurrencyColor = Color3.new();
CurrencyNameTranslationKey = "";
CurrencyFormatTranslationKey = "";
CurrencyImageId = "";
CurrencyShowType = CurrencyShowTypes.NONE;
GivePlayerCurrency = false;
CurrencySaves = false;
})
We should be able to create new data that is validated
CurrencyDefinitionData:CreateData({
CurrencyKey = CurrencyDefinitionConstants.DEFAULT_CURRENCY_KEY
CurrencyColor = Color3.fromRGB(55, 180, 74)
CurrencyTranslationKey = "currency.default.name"
CurrencyFormatTranslationKey = "currency.default.format"
DoesSave = true
ImageId = "rbxassetid://10049671651"
})
We should be able to create partial data
CurrencyDefinitionData:CreatePartialData({
CurrencyKey = CurrencyDefinitionConstants.DEFAULT_CURRENCY_KEY
CurrencyColor = Color3.fromRGB(55, 180, 74)
CurrencyTranslationKey = "currency.default.name"
CurrencyFormatTranslationKey = "currency.default.format"
DoesSave = true
ImageId = "rbxassetid://10049671651"
})
We should be able to check data types
function CurrencyService:InitCurrencyDefinition(currencyDefinitionData)
assert(CurrencyDefinitionData:IsData(currencyDefinitionData), "Bad currencyDefinitionData")
local currencyDefinition = CurrencyDefinition:Create("Folder")
CurrencyDefinitionData:SetAttributes(currencyDefinition, currencyDefinitionData)
return currencyDefinition
end
Should replace following files:
t
interface asserting typeShould be able to flash to constant
FAQs
Bridges attributes and serialization
The npm package @quenty/adorneedata receives a total of 18 weekly downloads. As such, @quenty/adorneedata popularity was classified as not popular.
We found that @quenty/adorneedata demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.