Skip to content
Snippets Groups Projects

Iss #34 - Migrate to commons 9.1, Quarkus 3.2, and Java 17 runtime

Merged Iss #34 - Migrate to commons 9.1, Quarkus 3.2, and Java 17 runtime
Merged Martin Lowe requested to merge malowe/eclipse-openvsx-api:malowe/main/34 into main
18 files
+ 170
127
Compare changes
  • Side-by-side
  • Inline
Files
18
+ 78
41
@@ -207,19 +207,19 @@ components:
type: object
properties:
uid:
type: integer
description: The unique user id.
type: string
description: "The unique user id."
name:
type: string
description: The user's ef username name.
description: "The user's ef username name."
picture:
type: string
description: URL of the user's picture.
description: "URL of the user's picture."
mail:
oneOf:
- type: string
- type: "null"
description: The user's email.
description: "The user's email."
eca:
oneOf:
- $ref: "#/components/schemas/Eca"
@@ -228,17 +228,13 @@ components:
oneOf:
- type: boolean
- type: "null"
description: User's committer status.
friends:
oneOf:
- $ref: "#/components/schemas/Friends"
- type: "null"
description: "User's committer status."
first_name:
type: string
description: The user's first name.
description: "The user's first name."
last_name:
type: string
description: The user's last name.
description: "The user's last name."
publisher_agreements:
type: object
propertyNames:
@@ -247,66 +243,114 @@ components:
$ref: "#/components/schemas/ProfilePublisherAgreement"
github_handle:
type: string
description: The user's Github handle.
description: "The user's Github handle."
twitter_handle:
type: string
description: The user's Twitter handle.
description: "The user's Twitter handle."
org:
type: string
description: The user's organization.
org_id:
oneOf:
- type: string
- type: "null"
description: "The user's organization."
org_id:
oneOf:
- type: integer
- type: "null"
description: The user's organization id.
job_title:
type: string
description: The user's job title at the organization.
description: "The user's job title at the organization."
website:
type: string
description: The user's website.
description: "The user's website."
country:
$ref: "#/components/schemas/Country"
bio:
oneOf:
- type: string
- type: "null"
description: The user's account bio
description: "The user's account bio"
interests:
type: array
items:
type: string
description: A list of the user's interests.
description: "A list of the user's interests."
working_groups_interests:
type: array
items:
type: string
description: A list of the user's working group interests.
forums_url:
oneOf:
- type: string
- type: "null"
description: The user's forum URL.
- type: array
description: "A list of the user's working group interests."
public_fields:
oneOf:
- type: "null"
- type: array
description: "A list of the user's public fields."
mail_history:
oneOf:
- type: "null"
- type: array
description: "A list of the user's email history."
mail_alternate:
oneOf:
- type: "null"
- type: array
description: "A list of the user's alternate emails."
gerrit_url:
oneOf:
- type: string
- type: "null"
description: The user's Gerrit URL.
description: "The user's Gerrit URL."
projects_url:
oneOf:
- type: string
- type: "null"
description: The user's projects URL.
description: "The user's projects URL."
mailinglist_url:
oneOf:
- type: string
- type: "null"
description: The user's mailing list URL.
description: "The user's mailing list URL."
mpc_favorites_url:
oneOf:
- type: string
- type: "null"
description: The user's Marketplace favorites URL.
description: "The user's Marketplace favorites URL."
example:
uid: "606609"
name: zacharysabourin
mail: zachary.sabourin@eclipse-foundation.org
picture: https://secure.gravatar.com/avatar/fbbbb03860062596a5cf11105dcc7d47.jpg?d=mm&s=185&r=G
eca:
signed: true
can_contribute_spec_project: true
is_committer: true
first_name: Zachary
last_name: Sabourin
github_handle: zacharysabourin
twitter_handle: sometwitteruser
publisher_agreements:
"open-vsx":
version: "1"
org: Eclipse Foundation
org_id: null
job_title: Web Developer
website: https://google.com
country:
code: CA
name: Canada
bio: This is my bio. Hello!
interests:
- MTG
- Warhammer
- Bass guitar
working_groups_interests:
- adoptium
- oniro
eca_url: https://api.eclipse.org/sandbox/account/profile/zacharysabourin/eca
projects_url: https://api.eclipse.org/sandbox/account/profile/zacharysabourin/projects
gerrit_url: https://api.eclipse.org/sandbox/account/profile/zacharysabourin/gerrit
mailinglist_url: https://api.eclipse.org/sandbox/account/profile/zacharysabourin/mailing-list
mpc_favorites_url: https://api.eclipse.org/marketplace/favorites?name=zacharysabourin
Eca:
type: object
@@ -321,15 +365,6 @@ components:
signed: true
can_contribute_spec_project: true
Friends:
type: object
properties:
friend_id:
type: integer
description: The friend's userid.
example:
friend_id: 6104
Country:
type: object
properties:
@@ -352,3 +387,5 @@ components:
version:
type: string
description: the agreement document version.
example:
version: "1"
Loading