Skip to content
This repository was archived by the owner on Mar 27, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"author": "Transcend Inc.",
"name": "@transcend-io/privacy-types",
"description": "Core enums and types that can be useful when interacting with Transcend's public APIs.",
"version": "4.107.0",
"version": "4.108.0",
"homepage": "https://github.com/transcend-io/privacy-types",
"repository": {
"type": "git",
Expand Down
1 change: 1 addition & 0 deletions src/code.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ export const CodePackageType = makeEnum({
RequirementsTxt: 'REQUIREMENTS_TXT',
Gradle: 'GRADLE',
CocoaPods: 'COCOA_PODS',
Swift: 'SWIFT',
Pubspec: 'PUBSPEC',
Gemfile: 'GEMFILE',
ComposerJson: 'COMPOSER_JSON',
Expand Down
2 changes: 2 additions & 0 deletions src/getRegistryLink.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ export const CODE_PACKAGE_TYPE_TO_LINK: {
`https://www.npmjs.com/package/${name}`,
[CodePackageType.RequirementsTxt]: (name) =>
`https://pypi.org/project/${name}`,
[CodePackageType.Swift]: (name) =>
`https://swiftpackageindex.com/search?query=${name}`,
[CodePackageType.Pubspec]: (name) => `https://pub.dev/packages/${name}`,
[CodePackageType.Gemfile]: (name) => `https://rubygems.org/gems/${name}`,
[CodePackageType.ComposerJson]: (name) =>
Expand Down