Skip to content

Commit

Permalink
pushpull config updates
Browse files Browse the repository at this point in the history
  • Loading branch information
nlarew committed Nov 27, 2023
1 parent 98825a6 commit 676976b
Showing 1 changed file with 15 additions and 7 deletions.
22 changes: 15 additions & 7 deletions source/openapi-admin-v3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3622,7 +3622,7 @@ paths:
type: object
properties:
environment:
$ref: "#/components/schemas/AppEnvironment"
$ref: "#/components/schemas/NullableAppEnvironment"
responses:
"200":
description: Success
Expand Down Expand Up @@ -5069,7 +5069,7 @@ components:
deployment_model:
$ref: "#/components/schemas/DeploymentModel"
environment:
$ref: "#/components/schemas/AppEnvironment"
$ref: "#/components/schemas/NullableAppEnvironment"
AppConstructor:
description: An object that describes a new app to create
allOf:
Expand Down Expand Up @@ -5122,12 +5122,22 @@ components:
- standard
- atlas
- data-api
NullableAppEnvironment:
allOf:
- type: string
description: The application's environment. An empty string indicates that the app does not have a specified environment.
enum:
- ""
- "development"
- "testing"
- "qa"
- "production"
- $ref: "#/components/schemas/AppEnvironment"
AppEnvironment:
type: string
description: The application's environment. An empty string indicates that the app does not have a specified environment.
description: The application's environment.
example: "production"
enum:
- ""
- "development"
- "testing"
- "qa"
Expand Down Expand Up @@ -8384,9 +8394,6 @@ components:
PushPullAppConfig:
type: object
properties:
app_id:
type: string
description: The App's public Client App ID.
name:
type: string
description: The App's name.
Expand All @@ -8395,6 +8402,7 @@ components:
deployment_model:
$ref: "#/components/schemas/DeploymentModel"
environment:
description: The App's environment tag. If not specified, the App has no environment tag.
$ref: "#/components/schemas/AppEnvironment"
auth_providers:
type: array
Expand Down

0 comments on commit 676976b

Please sign in to comment.