Skip to content

Commit c9760a4

Browse files
feat: release 1.4.x
1 parent 5b03c92 commit c9760a4

File tree

2 files changed

+0
-58
lines changed

2 files changed

+0
-58
lines changed

mod.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ import { Functions } from "./src/services/functions.ts";
1212
import { Graphql } from "./src/services/graphql.ts";
1313
import { Health } from "./src/services/health.ts";
1414
import { Locale } from "./src/services/locale.ts";
15-
import { Project } from "./src/services/project.ts";
16-
import { Proxy } from "./src/services/proxy.ts";
1715
import { Storage } from "./src/services/storage.ts";
1816
import { Teams } from "./src/services/teams.ts";
1917
import { Users } from "./src/services/users.ts";
@@ -33,8 +31,6 @@ export {
3331
Graphql,
3432
Health,
3533
Locale,
36-
Project,
37-
Proxy,
3834
Storage,
3935
Teams,
4036
Users,

src/models.d.ts

Lines changed: 0 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -285,19 +285,6 @@ export namespace Models {
285285
*/
286286
variables: Variable[];
287287
}
288-
/**
289-
* Rule List
290-
*/
291-
export type ProxyRuleList = {
292-
/**
293-
* Total number of rules documents that matched your query.
294-
*/
295-
total: number;
296-
/**
297-
* List of rules.
298-
*/
299-
rules: ProxyRule[];
300-
}
301288
/**
302289
* Locale codes list
303290
*/
@@ -2008,45 +1995,4 @@ export namespace Models {
20081995
*/
20091996
value: string;
20101997
}
2011-
/**
2012-
* Rule
2013-
*/
2014-
export type ProxyRule = {
2015-
/**
2016-
* Rule ID.
2017-
*/
2018-
$id: string;
2019-
/**
2020-
* Rule creation date in ISO 8601 format.
2021-
*/
2022-
$createdAt: string;
2023-
/**
2024-
* Rule update date in ISO 8601 format.
2025-
*/
2026-
$updatedAt: string;
2027-
/**
2028-
* Domain name.
2029-
*/
2030-
domain: string;
2031-
/**
2032-
* Action definition for the rule. Possible values are "api", "function", or "redirect"
2033-
*/
2034-
resourceType: string;
2035-
/**
2036-
* ID of resource for the action type. If resourceType is "api" or "url", it is empty. If resourceType is "function", it is ID of the function.
2037-
*/
2038-
resourceId: string;
2039-
/**
2040-
* Domain verification status. Possible values are "created", "verifying", "verified" and "unverified"
2041-
*/
2042-
status: string;
2043-
/**
2044-
* Certificate generation logs. This will return an empty string if generation did not run, or succeeded.
2045-
*/
2046-
logs: string;
2047-
/**
2048-
* Certificate auto-renewal date in ISO 8601 format.
2049-
*/
2050-
renewAt: string;
2051-
}
20521998
}

0 commit comments

Comments
 (0)