Skip to content

Commit

Permalink
docs: bump to 4a60213b0e99a175612c553dc78596358c513b09
Browse files Browse the repository at this point in the history
  • Loading branch information
aeneasr committed Nov 20, 2023
1 parent 1994a72 commit 6f19444
Showing 1 changed file with 26 additions and 15 deletions.
41 changes: 26 additions & 15 deletions docs/reference/api.json
Original file line number Diff line number Diff line change
Expand Up @@ -2459,6 +2459,12 @@
"current_revision": {
"$ref": "#/components/schemas/normalizedProjectRevision"
},
"environment": {
"description": "The environment of the project.\nprod Production\ndev Development",
"enum": ["prod", "dev"],
"type": "string",
"x-go-enum-desc": "prod Production\ndev Development"
},
"hosts": {
"$ref": "#/components/schemas/StringSliceJSONFormat"
},
Expand Down Expand Up @@ -2499,6 +2505,7 @@
"slug",
"current_revision",
"state",
"environment",
"created_at",
"updated_at"
],
Expand Down Expand Up @@ -3231,10 +3238,6 @@
"description": "The project's name.",
"type": "string"
},
"production": {
"description": "Whether this project is in production mode or not.\n\nIn development mode, a low-security profile is used making it easier to develop against your, for example, local environment.",
"type": "boolean"
},
"project_id": {
"description": "The Revision's Project ID",
"format": "uuid",
Expand All @@ -3257,6 +3260,10 @@
"description": "Enable CORS headers on all public APIs\n\nThis governs the \"serve.public.cors.enabled\" setting.",
"type": "boolean"
},
"strict_security": {
"description": "Whether the project should employ strict security measures. Setting this to true is recommended for going into production.",
"type": "boolean"
},
"updated_at": {
"description": "Last Time Project's Revision was Updated",
"format": "date-time",
Expand Down Expand Up @@ -3415,6 +3422,9 @@
},
"normalizedProjectRevisionThirdPartyProvider": {
"properties": {
"additional_id_token_audiences": {
"$ref": "#/components/schemas/StringSliceJSONFormat"
},
"apple_private_key": {
"$ref": "#/components/schemas/String"
},
Expand Down Expand Up @@ -4555,16 +4565,7 @@
"x-go-enum-desc": "running Running\nhalted Halted\ndeleted Deleted"
}
},
"required": [
"id",
"revision_id",
"slug",
"services",
"state",
"name",
"cors_public",
"cors_admin"
],
"required": ["id", "revision_id", "slug", "services", "state", "name"],
"type": "object"
},
"projectApiKey": {
Expand Down Expand Up @@ -4976,7 +4977,6 @@
"type": "array"
}
},
"required": ["enabled", "origins"],
"type": "object"
},
"projectHost": {
Expand Down Expand Up @@ -8006,6 +8006,17 @@
},
"x-go-enum-desc": " ConsistencyLevelUnset ConsistencyLevelUnset is the unset / default consistency level.\nstrong ConsistencyLevelStrong ConsistencyLevelStrong is the strong consistency level.\neventual ConsistencyLevelEventual ConsistencyLevelEventual is the eventual consistency level using follower read timestamps."
},
{
"description": "IdsFilter is list of ids used to filter identities.\nIf this list is empty, then no filter will be applied.",
"in": "query",
"name": "ids_filter",
"schema": {
"items": {
"type": "string"
},
"type": "array"
}
},
{
"description": "CredentialsIdentifier is the identifier (username, email) of the credentials to look up using exact match.\nOnly one of CredentialsIdentifier and CredentialsIdentifierSimilar can be used.",
"in": "query",
Expand Down

0 comments on commit 6f19444

Please sign in to comment.