Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge user.yaml #2694

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.6",
"regenerated": "2024-09-23 19:10:10.010692",
"spec_repo_commit": "41592dc6"
"regenerated": "2024-09-24 14:14:13.957652",
"spec_repo_commit": "77d3d5e5"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2024-09-23 19:10:10.024754",
"spec_repo_commit": "41592dc6"
"regenerated": "2024-09-24 14:14:13.975514",
"spec_repo_commit": "77d3d5e5"
}
}
}
120 changes: 120 additions & 0 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24635,16 +24635,36 @@ components:
UserCreateAttributes:
description: Attributes of the created user.
properties:
created_at:
description: The `UserCreateAttributes` `created_at`.
format: date-time
type: string
disabled:
description: The `UserCreateAttributes` `disabled`.
type: boolean
email:
description: The email of the user.
example: [email protected]
type: string
handle:
description: The `UserCreateAttributes` `handle`.
type: string
modified_at:
description: The `UserCreateAttributes` `modified_at`.
format: date-time
type: string
name:
description: The name of the user.
type: string
service_account:
description: The `UserCreateAttributes` `service_account`.
type: boolean
title:
description: The title of the user.
type: string
verified:
description: The `UserCreateAttributes` `verified`.
type: boolean
required:
- email
type: object
Expand Down Expand Up @@ -24694,6 +24714,10 @@ components:
invite_type:
description: Type of invitation.
type: string
login_method:
description: The `UserInvitationDataAttributes` `login_method`.
nullable: true
type: string
uuid:
description: UUID of the user invitation.
type: string
Expand Down Expand Up @@ -24755,6 +24779,79 @@ components:
type: string
x-enum-varnames:
- USER_INVITATIONS
UserOrgsSerializable:
description: The definition of `UserOrgsSerializable` object.
properties:
attributes:
$ref: '#/components/schemas/UserOrgsSerializableAttributes'
id:
description: The `UserOrgsSerializable` `id`.
type: string
type:
$ref: '#/components/schemas/UserOrgsSerializableType'
required:
- type
type: object
UserOrgsSerializableAttributes:
description: The definition of `UserOrgsSerializableAttributes` object.
properties:
disabled:
description: The `UserOrgsSerializableAttributes` `disabled`.
type: boolean
email:
description: The `UserOrgsSerializableAttributes` `email`.
type: string
name:
description: The `UserOrgsSerializableAttributes` `name`.
type: string
org_id:
description: The `UserOrgsSerializableAttributes` `org_id`.
type: string
title:
description: The `UserOrgsSerializableAttributes` `title`.
type: string
verified:
description: The `UserOrgsSerializableAttributes` `verified`.
type: boolean
type: object
UserOrgsSerializableType:
default: users
description: The definition of `UserOrgsSerializableType` object.
enum:
- users
example: users
type: string
x-enum-varnames:
- USERS
UserOverrideIdentityProvider:
description: The definition of `UserOverrideIdentityProvider` object.
properties:
attributes:
$ref: '#/components/schemas/UserOverrideIdentityProviderAttributes'
id:
description: The `UserOverrideIdentityProvider` `id`.
type: string
type:
$ref: '#/components/schemas/UserOverrideIdentityProviderType'
required:
- type
type: object
UserOverrideIdentityProviderAttributes:
description: The definition of `UserOverrideIdentityProviderAttributes` object.
properties:
authentication_method:
description: The `UserOverrideIdentityProviderAttributes` `authentication_method`.
type: string
type: object
UserOverrideIdentityProviderType:
default: identity_providers
description: The definition of `UserOverrideIdentityProviderType` object.
enum:
- identity_providers
example: identity_providers
type: string
x-enum-varnames:
- IDENTITY_PROVIDERS
UserRelationshipData:
description: Relationship to user object.
properties:
Expand Down Expand Up @@ -24800,6 +24897,8 @@ components:
- $ref: '#/components/schemas/Organization'
- $ref: '#/components/schemas/Permission'
- $ref: '#/components/schemas/Role'
- $ref: '#/components/schemas/UserOverrideIdentityProvider'
- $ref: '#/components/schemas/UserOrgsSerializable'
UserResponseRelationships:
description: Relationships of the user object returned by the API.
properties:
Expand Down Expand Up @@ -25038,15 +25137,36 @@ components:
UserUpdateAttributes:
description: Attributes of the edited user.
properties:
created_at:
description: The `UserUpdateAttributes` `created_at`.
format: date-time
type: string
disabled:
description: If the user is enabled or disabled.
type: boolean
email:
description: The email of the user.
type: string
handle:
description: The `UserUpdateAttributes` `handle`.
type: string
modified_at:
description: The `UserUpdateAttributes` `modified_at`.
format: date-time
type: string
name:
description: The name of the user.
type: string
service_account:
description: The `UserUpdateAttributes` `service_account`.
type: boolean
title:
description: The `UserUpdateAttributes` `title`.
nullable: true
type: string
verified:
description: The `UserUpdateAttributes` `verified`.
type: boolean
type: object
UserUpdateData:
description: Object to update a user.
Expand Down
Loading
Loading