Skip to content

Commit

Permalink
feat(api): OpenAPI spec update via Stainless API (#750)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-app[bot] authored and stainless-bot committed Jun 4, 2024
1 parent e3ca8ab commit f75453d
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
configured_endpoints: 1335
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-3b4dbcd29fdd5e0f88ee4097d3c58c446c6876505a522503afa704ebf51b8281.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-909b9ecb3be7ec2f54817533e4ea551d1eac37c0df72ec91b5c9179f9e8195c1.yml
28 changes: 28 additions & 0 deletions src/resources/zero-trust/risk-scoring/integrations/integrations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,13 @@ export interface IntegrationCreateResponse {
* The base URL for the tenant. E.g. "https://tenant.okta.com"
*/
tenant_url: string;

/**
* The URL for the Shared Signals Framework configuration, e.g.
* "/.well-known/sse-configuration/{integration_uuid}/".
* https://openid.net/specs/openid-sse-framework-1_0.html#rfc.section.6.2.1
*/
well_known_url: string;
}

export interface IntegrationUpdateResponse {
Expand Down Expand Up @@ -166,6 +173,13 @@ export interface IntegrationUpdateResponse {
* The base URL for the tenant. E.g. "https://tenant.okta.com"
*/
tenant_url: string;

/**
* The URL for the Shared Signals Framework configuration, e.g.
* "/.well-known/sse-configuration/{integration_uuid}/".
* https://openid.net/specs/openid-sse-framework-1_0.html#rfc.section.6.2.1
*/
well_known_url: string;
}

export interface IntegrationListResponse {
Expand Down Expand Up @@ -202,6 +216,13 @@ export interface IntegrationListResponse {
* The base URL for the tenant. E.g. "https://tenant.okta.com"
*/
tenant_url: string;

/**
* The URL for the Shared Signals Framework configuration, e.g.
* "/.well-known/sse-configuration/{integration_uuid}/".
* https://openid.net/specs/openid-sse-framework-1_0.html#rfc.section.6.2.1
*/
well_known_url: string;
}

export type IntegrationDeleteResponse = unknown;
Expand Down Expand Up @@ -240,6 +261,13 @@ export interface IntegrationGetResponse {
* The base URL for the tenant. E.g. "https://tenant.okta.com"
*/
tenant_url: string;

/**
* The URL for the Shared Signals Framework configuration, e.g.
* "/.well-known/sse-configuration/{integration_uuid}/".
* https://openid.net/specs/openid-sse-framework-1_0.html#rfc.section.6.2.1
*/
well_known_url: string;
}

export interface IntegrationCreateParams {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,13 @@ export interface ReferenceGetResponse {
* The base URL for the tenant. E.g. "https://tenant.okta.com"
*/
tenant_url: string;

/**
* The URL for the Shared Signals Framework configuration, e.g.
* "/.well-known/sse-configuration/{integration_uuid}/".
* https://openid.net/specs/openid-sse-framework-1_0.html#rfc.section.6.2.1
*/
well_known_url: string;
}

export interface ReferenceGetParams {
Expand Down

0 comments on commit f75453d

Please sign in to comment.