react-bricks 5.0.0-alpha.4 → 5.0.0-alpha.6
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.
- package/astro/package.json +1 -1
- package/astro/server/package.json +1 -1
- package/astro/server/react-bricks-astro-server.d.ts +3 -3
- package/frontend/package.json +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
- package/react-bricks.d.ts +3 -3
- package/react-bricks.esm.js +1 -1
- package/rsc/client/package.json +1 -1
- package/rsc/package.json +1 -1
- package/rsc/react-bricks-rsc.d.ts +3 -3
package/astro/package.json
CHANGED
|
@@ -1078,13 +1078,13 @@ type FetchTagsResult = {
|
|
|
1078
1078
|
totalPages: number;
|
|
1079
1079
|
};
|
|
1080
1080
|
};
|
|
1081
|
-
declare function fetchTags(apiKey: string, page
|
|
1081
|
+
declare function fetchTags(apiKey: string, page?: number, pageSize?: number, options?: {
|
|
1082
1082
|
q?: string;
|
|
1083
1083
|
language?: string;
|
|
1084
1084
|
}, fetchOptions?: types.FetchOptions): Promise<FetchTagsResult>;
|
|
1085
1085
|
declare function fetchTags(options: {
|
|
1086
|
-
page
|
|
1087
|
-
pageSize
|
|
1086
|
+
page?: number;
|
|
1087
|
+
pageSize?: number;
|
|
1088
1088
|
filterBy?: {
|
|
1089
1089
|
q?: string;
|
|
1090
1090
|
language?: string;
|