Skip to content

Commit

Permalink
Deploying from phrase/openapi@ce2ed948
Browse files Browse the repository at this point in the history
  • Loading branch information
Phrase committed Jan 2, 2024
1 parent 47127e5 commit 18f96ec
Show file tree
Hide file tree
Showing 11 changed files with 220 additions and 195 deletions.
4 changes: 4 additions & 0 deletions .openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,8 @@ docs/CommentsListParameters.md
docs/CurrentUser.md
docs/CustomMetadataApi.md
docs/CustomMetadataDataType.md
docs/CustomMetadataPropertiesCreateParameters.md
docs/CustomMetadataPropertiesUpdateParameters.md
docs/CustomMetadataProperty.md
docs/CustomMetadataPropertyCreate422Response.md
docs/CustomMetadataPropertyCreate422ResponseErrorsInner.md
Expand Down Expand Up @@ -335,6 +337,8 @@ model_comment_update_parameters.go
model_comments_list_parameters.go
model_current_user.go
model_custom_metadata_data_type.go
model_custom_metadata_properties_create_parameters.go
model_custom_metadata_properties_update_parameters.go
model_custom_metadata_property.go
model_custom_metadata_property_create_422_response.go
model_custom_metadata_property_create_422_response_errors_inner.go
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -361,6 +361,8 @@ Class | Method | HTTP request | Description
- [CommentsListParameters](docs/CommentsListParameters.md)
- [CurrentUser](docs/CurrentUser.md)
- [CustomMetadataDataType](docs/CustomMetadataDataType.md)
- [CustomMetadataPropertiesCreateParameters](docs/CustomMetadataPropertiesCreateParameters.md)
- [CustomMetadataPropertiesUpdateParameters](docs/CustomMetadataPropertiesUpdateParameters.md)
- [CustomMetadataProperty](docs/CustomMetadataProperty.md)
- [CustomMetadataPropertyCreate422Response](docs/CustomMetadataPropertyCreate422Response.md)
- [CustomMetadataPropertyCreate422ResponseErrorsInner](docs/CustomMetadataPropertyCreate422ResponseErrorsInner.md)
Expand Down
180 changes: 78 additions & 102 deletions api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3536,62 +3536,12 @@ paths:
schema:
type: string
style: simple
- description: name of the property
example:
- Fruit
explode: true
in: query
name: name
required: true
schema:
type: string
style: form
- description: Data Type of Custom Metadata Property
example: boolean
explode: true
in: query
name: data_type
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/custom_metadata_properties_create_parameters'
required: true
schema:
$ref: '#/components/schemas/custom_metadata_data_type'
style: form
- description: description of property
example:
- A healthy snack for all ages
explode: true
in: query
name: description
required: false
schema:
type: string
style: form
- description: ids of projects that the property belongs to
example:
- abcd1234cdef1234abcd1234cdef1234
explode: true
in: query
name: project_ids
required: false
schema:
items:
type: string
type: array
style: form
- description: value options of property (only applies to single or multi select
properties)
example:
- Apple
- Banana
- Coconut
explode: true
in: query
name: value_options
required: false
schema:
items:
type: string
type: array
style: form
responses:
"200":
content:
Expand Down Expand Up @@ -3862,53 +3812,12 @@ paths:
schema:
type: string
style: simple
- description: name of the property
example:
- Fruit
explode: true
in: query
name: name
required: false
schema:
type: string
style: form
- description: description of property
example:
- A healthy snack for all ages
explode: true
in: query
name: description
required: false
schema:
type: string
style: form
- description: ids of projects that the property belongs to
example:
- abcd1234cdef1234abcd1234cdef1234
explode: true
in: query
name: project_ids
required: false
schema:
items:
type: string
type: array
style: form
- description: value options of property (only applies to single or multi select
properties)
example:
- Apple
- Banana
- Coconut
explode: true
in: query
name: value_options
required: false
schema:
items:
type: string
type: array
style: form
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/custom_metadata_properties_update_parameters'
required: true
responses:
"200":
content:
Expand Down Expand Up @@ -27995,6 +27904,7 @@ components:
title: custom_metadata_property
type: object
custom_metadata_data_type:
description: data type of the property
enum:
- boolean
- date
Expand All @@ -28004,6 +27914,7 @@ components:
- single_select
- string
- text
example: string
type: string
key_preview:
properties:
Expand Down Expand Up @@ -30548,6 +30459,41 @@ components:
type: string
title: styleguide/update/parameters
type: object
custom_metadata_properties_create_parameters:
properties:
name:
description: name of the property
example: Fruit
type: string
data_type:
$ref: '#/components/schemas/custom_metadata_data_type'
project_ids:
description: ids of projects that the property belongs to
example:
- abcd1234cdef1234abcd1234cdef1234
- abcd1234cdef1234abcd1234cdef4321
items:
type: string
type: array
description:
description: description of property
example: A healthy snack for all ages
type: string
value_options:
description: value options of property (only applies to single or multi
select properties)
example:
- Apple
- Banana
- Coconut
items:
type: string
type: array
required:
- data_type
- name
title: custom_metadata_properties/create/parameters
type: object
custom_metadata_property_create_422_response_errors_inner:
properties:
resource:
Expand All @@ -30572,6 +30518,36 @@ components:
$ref: '#/components/schemas/custom_metadata_property_create_422_response_errors_inner'
type: array
type: object
custom_metadata_properties_update_parameters:
properties:
name:
description: name of the property
example: Fruit
type: string
project_ids:
description: ids of projects that the property belongs to
example:
- abcd1234cdef1234abcd1234cdef1234
- abcd1234cdef1234abcd1234cdef4321
items:
type: string
type: array
description:
description: description of property
example: A healthy snack for all ages
type: string
value_options:
description: value options of property (only applies to single or multi
select properties)
example:
- Apple
- Banana
- Coconut
items:
type: string
type: array
title: custom_metadata_properties/update/parameters
type: object
invitation_create_parameters:
properties:
email:
Expand Down
Loading

0 comments on commit 18f96ec

Please sign in to comment.