Skip to content

Commit 40aefb4

Browse files
chore(api): Fix config indentation
1 parent 691036a commit 40aefb4

File tree

4 files changed

+13
-9
lines changed

4 files changed

+13
-9
lines changed

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 1749
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-887425a86ebb666a1808471f4eb4c44730a7376820f8427f4d913079def00917.yml
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-b15b44e0efd207de48e7e74e742b0b4b190c74f12a941a1a0ef59a51656a5224.yml
33
openapi_spec_hash: 83243c9ee06f88d0fa91e9b185d8a42e
4-
config_hash: 609def1a180087b5109306455be2068d
4+
config_hash: d0ab46f06dbe6f6e33d86a3ede15ac44

api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ Methods:
142142

143143
Types:
144144

145-
- <code><a href="./src/resources/ips.ts">IPs</a></code>
145+
- <code><a href="./src/resources/ips.ts">IPsArray</a></code>
146146
- <code><a href="./src/resources/ips.ts">IPListResponse</a></code>
147147

148148
Methods:

src/resources/addressing/address-maps/address-maps.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ export interface AddressMapCreateResponse {
245245
/**
246246
* The set of IPs on the Address Map.
247247
*/
248-
ips?: IPsAPI.IPs;
248+
ips?: IPsAPI.IPsArray;
249249

250250
/**
251251
* Zones and Accounts which will be assigned IPs on this Address Map. A zone
@@ -390,7 +390,7 @@ export interface AddressMapGetResponse {
390390
/**
391391
* The set of IPs on the Address Map.
392392
*/
393-
ips?: IPsAPI.IPs;
393+
ips?: IPsAPI.IPsArray;
394394

395395
/**
396396
* Zones and Accounts which will be assigned IPs on this Address Map. A zone

src/resources/ips.ts

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ export class IPs extends APIResource {
2929
/**
3030
* The set of IPs on the Address Map.
3131
*/
32-
export type IPs = Array<IPs.IPItem>;
32+
export type IPsArray = Array<IPsArray.IPsArrayItem>;
3333

34-
export namespace IPs {
35-
export interface IPItem {
34+
export namespace IPsArray {
35+
export interface IPsArrayItem {
3636
created_at?: string;
3737

3838
/**
@@ -93,5 +93,9 @@ export interface IPListParams {
9393
}
9494

9595
export declare namespace IPs {
96-
export { type IPs as IPs, type IPListResponse as IPListResponse, type IPListParams as IPListParams };
96+
export {
97+
type IPsArray as IPsArray,
98+
type IPListResponse as IPListResponse,
99+
type IPListParams as IPListParams,
100+
};
97101
}

0 commit comments

Comments
 (0)