Skip to content

Commit

Permalink
feat: update via SDK Studio (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-app[bot] authored Feb 22, 2024
1 parent 352504f commit d51c557
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion api.md
Original file line number Diff line number Diff line change
Expand Up @@ -968,7 +968,7 @@ Methods:
- <code title="delete /accounts/{account_identifier}/subscriptions/{subscription_identifier}">client.subscriptions.<a href="./src/resources/subscriptions.ts">delete</a>(accountIdentifier, subscriptionIdentifier) -> SubscriptionDeleteResponse</code>
- <code title="get /zones/{identifier}/subscription">client.subscriptions.<a href="./src/resources/subscriptions.ts">get</a>(identifier) -> SubscriptionGetResponse</code>

# Acm
# ACM

## TotalTLS

Expand Down
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ export class Cloudflare extends Core.APIClient {
cache: API.Cache = new API.Cache(this);
ssl: API.SSL = new API.SSL(this);
subscriptions: API.Subscriptions = new API.Subscriptions(this);
acm: API.Acm = new API.Acm(this);
acm: API.ACM = new API.ACM(this);
argo: API.Argo = new API.Argo(this);
availablePlans: API.AvailablePlans = new API.AvailablePlans(this);
availableRatePlans: API.AvailableRatePlans = new API.AvailableRatePlans(this);
Expand Down Expand Up @@ -428,7 +428,7 @@ export namespace Cloudflare {
export import SubscriptionCreateParams = API.SubscriptionCreateParams;
export import SubscriptionUpdateParams = API.SubscriptionUpdateParams;

export import Acm = API.Acm;
export import ACM = API.ACM;

export import Argo = API.Argo;

Expand Down
4 changes: 2 additions & 2 deletions src/resources/acm/acm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
import { APIResource } from 'cloudflare/resource';
import * as TotalTLSAPI from 'cloudflare/resources/acm/total-tls';

export class Acm extends APIResource {
export class ACM extends APIResource {
totalTLS: TotalTLSAPI.TotalTLS = new TotalTLSAPI.TotalTLS(this._client);
}

export namespace Acm {
export namespace ACM {
export import TotalTLS = TotalTLSAPI.TotalTLS;
export import TotalTLSCreateResponse = TotalTLSAPI.TotalTLSCreateResponse;
export import TotalTLSGetResponse = TotalTLSAPI.TotalTLSGetResponse;
Expand Down
2 changes: 1 addition & 1 deletion src/resources/acm/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// File generated from our OpenAPI spec by Stainless.

export { Acm } from './acm';
export { ACM } from './acm';
export { TotalTLSCreateResponse, TotalTLSGetResponse, TotalTLSCreateParams, TotalTLS } from './total-tls';
2 changes: 1 addition & 1 deletion src/resources/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// File generated from our OpenAPI spec by Stainless.

export { ACM } from './acm/acm';
export { AICreateResponse, AICreateParams, AI } from './ai';
export { Access } from './access/access';
export {
Expand All @@ -23,7 +24,6 @@ export {
AccountListResponsesV4PagePaginationArray,
Accounts,
} from './accounts';
export { Acm } from './acm/acm';
export { ActivationCheckUpdateResponse, ActivationChecks } from './activation-checks';
export { Addresses } from './addresses/addresses';
export { Addressing } from './addressing/addressing';
Expand Down

0 comments on commit d51c557

Please sign in to comment.