@flexbe/sdk 0.2.12 → 0.2.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -21,6 +21,7 @@ export class Pages {
|
|
|
21
21
|
* - status: Filter by page status (could be an array of statuses)
|
|
22
22
|
* - uri: Search by URI (exact match with '/' or partial match with '%word%')
|
|
23
23
|
* - folderId: Filter by folder ID
|
|
24
|
+
* - themeId: Filter by theme ID
|
|
24
25
|
* @throws {UnauthorizedException} When the API key is invalid or expired
|
|
25
26
|
* @throws {ForbiddenException} When the site is not accessible
|
|
26
27
|
* @throws {BadRequestException} When the query parameters are invalid
|
package/dist/cjs/client/pages.js
CHANGED
|
@@ -15,6 +15,7 @@ class Pages {
|
|
|
15
15
|
* - status: Filter by page status (could be an array of statuses)
|
|
16
16
|
* - uri: Search by URI (exact match with '/' or partial match with '%word%')
|
|
17
17
|
* - folderId: Filter by folder ID
|
|
18
|
+
* - themeId: Filter by theme ID
|
|
18
19
|
* @throws {UnauthorizedException} When the API key is invalid or expired
|
|
19
20
|
* @throws {ForbiddenException} When the site is not accessible
|
|
20
21
|
* @throws {BadRequestException} When the query parameters are invalid
|
package/dist/esm/client/pages.js
CHANGED
|
@@ -12,6 +12,7 @@ export class Pages {
|
|
|
12
12
|
* - status: Filter by page status (could be an array of statuses)
|
|
13
13
|
* - uri: Search by URI (exact match with '/' or partial match with '%word%')
|
|
14
14
|
* - folderId: Filter by folder ID
|
|
15
|
+
* - themeId: Filter by theme ID
|
|
15
16
|
* @throws {UnauthorizedException} When the API key is invalid or expired
|
|
16
17
|
* @throws {ForbiddenException} When the site is not accessible
|
|
17
18
|
* @throws {BadRequestException} When the query parameters are invalid
|
|
@@ -13,6 +13,7 @@ export declare class Pages {
|
|
|
13
13
|
* - status: Filter by page status (could be an array of statuses)
|
|
14
14
|
* - uri: Search by URI (exact match with '/' or partial match with '%word%')
|
|
15
15
|
* - folderId: Filter by folder ID
|
|
16
|
+
* - themeId: Filter by theme ID
|
|
16
17
|
* @throws {UnauthorizedException} When the API key is invalid or expired
|
|
17
18
|
* @throws {ForbiddenException} When the site is not accessible
|
|
18
19
|
* @throws {BadRequestException} When the query parameters are invalid
|
|
@@ -56,6 +56,7 @@ export interface Page {
|
|
|
56
56
|
deletedAt: Date | null;
|
|
57
57
|
screenshot: Screenshot | null;
|
|
58
58
|
meta: PageMeta | null;
|
|
59
|
+
themeId: number;
|
|
59
60
|
}
|
|
60
61
|
export interface GetPagesParams {
|
|
61
62
|
offset?: number;
|
|
@@ -64,6 +65,7 @@ export interface GetPagesParams {
|
|
|
64
65
|
status?: PageStatus | PageStatus[];
|
|
65
66
|
uri?: string;
|
|
66
67
|
folderId?: number;
|
|
68
|
+
themeId?: number;
|
|
67
69
|
}
|
|
68
70
|
export interface PageListResponse {
|
|
69
71
|
list: Page[];
|