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
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 2269
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-a6c352830d1270d0abb5bb983058ea21815e1bb7d2e163965335dcb0e706f057.yml
openapi_spec_hash: 8540f176024efef3ee799015ad4a2dd9
openapi_spec_hash: d440b6377c255296d9fdc0b89e59b511
config_hash: 86a9b8037b215f0a9c5c69239f9c6cfd
4 changes: 2 additions & 2 deletions src/resources/organizations/organization-profile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import * as Core from '../../core';

export class OrganizationProfileResource extends APIResource {
/**
* Modify organization profile. (Currently in Closed Beta - see
* Modify organization profile. (Currently in Public Beta - see
* https://developers.cloudflare.com/fundamentals/organizations/)
*/
update(
Expand All @@ -21,7 +21,7 @@ export class OrganizationProfileResource extends APIResource {
}

/**
* Get an organizations profile if it exists. (Currently in Closed Beta - see
* Get an organizations profile if it exists. (Currently in Public Beta - see
* https://developers.cloudflare.com/fundamentals/organizations/)
*/
get(organizationId: string, options?: Core.RequestOptions): Core.APIPromise<OrganizationProfile> {
Expand Down
10 changes: 5 additions & 5 deletions src/resources/organizations/organizations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export class Organizations extends APIResource {
logs: LogsAPI.Logs = new LogsAPI.Logs(this._client);

/**
* Create a new organization for a user. (Currently in Closed Beta - see
* Create a new organization for a user. (Currently in Public Beta - see
* https://developers.cloudflare.com/fundamentals/organizations/)
*/
create(body: OrganizationCreateParams, options?: Core.RequestOptions): Core.APIPromise<Organization> {
Expand All @@ -29,7 +29,7 @@ export class Organizations extends APIResource {
}

/**
* Modify organization. (Currently in Closed Beta - see
* Modify organization. (Currently in Public Beta - see
* https://developers.cloudflare.com/fundamentals/organizations/)
*/
update(
Expand All @@ -46,7 +46,7 @@ export class Organizations extends APIResource {

/**
* Retrieve a list of organizations a particular user has access to. (Currently in
* Closed Beta - see https://developers.cloudflare.com/fundamentals/organizations/)
* Public Beta - see https://developers.cloudflare.com/fundamentals/organizations/)
*/
list(
query?: OrganizationListParams,
Expand All @@ -66,7 +66,7 @@ export class Organizations extends APIResource {
/**
* Delete an organization. The organization MUST be empty before deleting. It must
* not contain any sub-organizations, accounts, members or users. (Currently in
* Closed Beta - see https://developers.cloudflare.com/fundamentals/organizations/)
* Public Beta - see https://developers.cloudflare.com/fundamentals/organizations/)
*/
delete(organizationId: string, options?: Core.RequestOptions): Core.APIPromise<OrganizationDeleteResponse> {
return (
Expand All @@ -77,7 +77,7 @@ export class Organizations extends APIResource {
}

/**
* Retrieve the details of a certain organization. (Currently in Closed Beta - see
* Retrieve the details of a certain organization. (Currently in Public Beta - see
* https://developers.cloudflare.com/fundamentals/organizations/)
*/
get(organizationId: string, options?: Core.RequestOptions): Core.APIPromise<Organization> {
Expand Down
Loading