Skip to content
Merged
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
5 changes: 5 additions & 0 deletions examples/1.9.x/console-web/examples/apps/create.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ const result = await apps.create({
privacyPolicyUrl: 'https://example.com', // optional
termsUrl: 'https://example.com', // optional
contacts: [], // optional
tagline: '<TAGLINE>', // optional
tags: [], // optional
images: [], // optional
supportUrl: 'https://example.com', // optional
dataDeletionUrl: 'https://example.com', // optional
enabled: false, // optional
type: 'public', // optional
deviceFlow: false, // optional
Expand Down
5 changes: 5 additions & 0 deletions examples/1.9.x/console-web/examples/apps/update.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ const result = await apps.update({
privacyPolicyUrl: 'https://example.com', // optional
termsUrl: 'https://example.com', // optional
contacts: [], // optional
tagline: '<TAGLINE>', // optional
tags: [], // optional
images: [], // optional
supportUrl: 'https://example.com', // optional
dataDeletionUrl: 'https://example.com', // optional
enabled: false, // optional
redirectUris: [], // optional
type: 'public', // optional
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ const result = await compute.createDatabase({
database: '<DATABASE>', // optional
engine: 'postgres', // optional
version: '17', // optional
type: 'shared', // optional
specification: '<SPECIFICATION>', // optional
backend: 'prisma', // optional
cpu: 125, // optional
Expand Down
127 changes: 127 additions & 0 deletions specs/1.9.x/open-api3-1.9.x-client.json
Original file line number Diff line number Diff line change
Expand Up @@ -4339,6 +4339,44 @@
"type": "string"
}
},
"tagline": {
"type": "string",
"description": "Application tagline shown to users during OAuth2 consent.",
"default": "",
"x-example": "<TAGLINE>"
},
"tags": {
"type": "array",
"description": "Application tags shown to users during OAuth2 consent. Maximum of 100 tags are allowed, each up to 64 characters long.",
"default": [],
"x-example": null,
"items": {
"type": "string"
}
},
"images": {
"type": "array",
"description": "Application image URLs shown to users during OAuth2 consent. Maximum of 100 images are allowed.",
"default": [],
"x-example": null,
"items": {
"type": "string"
}
},
"supportUrl": {
"type": "string",
"description": "Application support URL shown to users during OAuth2 consent.",
"default": "",
"x-example": "https:\/\/example.com",
"format": "url"
},
"dataDeletionUrl": {
"type": "string",
"description": "Application data deletion URL shown to users during OAuth2 consent.",
"default": "",
"x-example": "https:\/\/example.com",
"format": "url"
},
"redirectUris": {
"type": "array",
"description": "Redirect URIs (array of valid URLs).",
Expand Down Expand Up @@ -4559,6 +4597,44 @@
"type": "string"
}
},
"tagline": {
"type": "string",
"description": "Application tagline shown to users during OAuth2 consent.",
"default": "",
"x-example": "<TAGLINE>"
},
"tags": {
"type": "array",
"description": "Application tags shown to users during OAuth2 consent. Maximum of 100 tags are allowed, each up to 64 characters long.",
"default": [],
"x-example": null,
"items": {
"type": "string"
}
},
"images": {
"type": "array",
"description": "Application image URLs shown to users during OAuth2 consent. Maximum of 100 images are allowed.",
"default": [],
"x-example": null,
"items": {
"type": "string"
}
},
"supportUrl": {
"type": "string",
"description": "Application support URL shown to users during OAuth2 consent.",
"default": "",
"x-example": "https:\/\/example.com",
"format": "url"
},
"dataDeletionUrl": {
"type": "string",
"description": "Application data deletion URL shown to users during OAuth2 consent.",
"default": "",
"x-example": "https:\/\/example.com",
"format": "url"
},
"enabled": {
"type": "boolean",
"description": "Is application enabled?",
Expand Down Expand Up @@ -19749,6 +19825,42 @@
"support@example.com"
]
},
"tagline": {
"type": "string",
"description": "Application tagline shown to users during OAuth2 consent.",
"x-example": "Automate your workspace."
},
"tags": {
"type": "array",
"description": "Application tags shown to users during OAuth2 consent.",
"items": {
"type": "string"
},
"x-example": [
"productivity",
"automation"
]
},
"images": {
"type": "array",
"description": "Application image URLs shown to users during OAuth2 consent.",
"items": {
"type": "string"
},
"x-example": [
"https:\/\/example.com\/screenshot.png"
]
},
"supportUrl": {
"type": "string",
"description": "Application support URL shown to users during OAuth2 consent.",
"x-example": "https:\/\/example.com\/support"
},
"dataDeletionUrl": {
"type": "string",
"description": "Application data deletion URL shown to users during OAuth2 consent.",
"x-example": "https:\/\/example.com\/data-deletion"
},
"redirectUris": {
"type": "array",
"description": "List of authorized redirect URIs. These URIs can be used to redirect users after they authenticate.",
Expand Down Expand Up @@ -19804,6 +19916,11 @@
"privacyPolicyUrl",
"termsUrl",
"contacts",
"tagline",
"tags",
"images",
"supportUrl",
"dataDeletionUrl",
"redirectUris",
"enabled",
"type",
Expand All @@ -19825,6 +19942,16 @@
"contacts": [
"support@example.com"
],
"tagline": "Automate your workspace.",
"tags": [
"productivity",
"automation"
],
"images": [
"https:\/\/example.com\/screenshot.png"
],
"supportUrl": "https:\/\/example.com\/support",
"dataDeletionUrl": "https:\/\/example.com\/data-deletion",
"redirectUris": [
"https:\/\/example.com\/callback"
],
Expand Down
Loading
Loading