Skip to content

Commit

Permalink
feat: update via SDK Studio (#150)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-app[bot] authored Mar 14, 2024
1 parent e3e8a04 commit cd447ae
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion api.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Methods:
Types:

- <code><a href="./src/resources/ips.ts">IPs</a></code>
- <code><a href="./src/resources/ips.ts">JdcloudIPs</a></code>
- <code><a href="./src/resources/ips.ts">JDCloudIPs</a></code>
- <code><a href="./src/resources/ips.ts">IPListResponse</a></code>

Methods:
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ export namespace Cloudflare {
export import OriginCACertificateCreateParams = API.OriginCACertificateCreateParams;

export import IPs = API.IPs;
export import JdcloudIPs = API.JdcloudIPs;
export import JDCloudIPs = API.JDCloudIPs;
export import IPListResponse = API.IPListResponse;
export import IPListParams = API.IPListParams;

Expand Down
2 changes: 1 addition & 1 deletion src/resources/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export {
} from './healthchecks/healthchecks';
export { Hostnames } from './hostnames/hostnames';
export { Hyperdrive } from './hyperdrive/hyperdrive';
export { IPs, JdcloudIPs, IPListResponse, IPListParams } from './ips';
export { IPs, JDCloudIPs, IPListResponse, IPListParams } from './ips';
export { Images } from './images/images';
export { Intel } from './intel/intel';
export {
Expand Down
6 changes: 3 additions & 3 deletions src/resources/ips.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export interface IPs {
ipv6_cidrs?: Array<string>;
}

export interface JdcloudIPs {
export interface JDCloudIPs {
/**
* A digest of the IP data. Useful for determining if the data has changed.
*/
Expand All @@ -66,7 +66,7 @@ export interface JdcloudIPs {
jdcloud_cidrs?: Array<string>;
}

export type IPListResponse = IPs | JdcloudIPs;
export type IPListResponse = IPs | JDCloudIPs;

export interface IPListParams {
/**
Expand All @@ -77,7 +77,7 @@ export interface IPListParams {

export namespace IPs {
export import IPs = IPsAPI.IPs;
export import JdcloudIPs = IPsAPI.JdcloudIPs;
export import JDCloudIPs = IPsAPI.JDCloudIPs;
export import IPListResponse = IPsAPI.IPListResponse;
export import IPListParams = IPsAPI.IPListParams;
}

0 comments on commit cd447ae

Please sign in to comment.