latestOpenAPI 3.0.12026-08-225657103.3 KB

c09fb78bfb08

List recently published packages by user

Returns a list of packages that a user has recently published

get/users/{id}/packages

Path parameters

idstring uuid required

The ID of a user.

The ID of the user

Response

OK

scopestring required

The name of a scope. This must not be @ prefixed.

namestring required

The name of a package.

descriptionstring required

The description of the package.

createdAtstring date-time required

The date and time when the package was created.

updatedAtstring date-time required

The date and time when the package was last updated.

scoreinteger nullable

The package score percentage (0-100).

versionCountinteger required

The number of versions of the package.

dependencyCountinteger required

The number of dependencies of the package.

dependentCountinteger required

The number of packages that depend on this package.

latestVersionstring nullable

The latest version of the package.

whenFeaturedstring date-time nullable

The date and time when the package was featured.

isArchivedboolean required

Whether the package is archived.

readmeSource'readme' | 'jsdoc' required

The source of the package readme.

Example response

[
  {
    "scope": "denoland",
    "name": "fmt",
    "description": "A module for formatting strings.",
    "githubRepository": {
      "owner": "denoland",
      "name": "deno"
    }
  }
]