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/rsc/client/package.json
CHANGED
package/rsc/package.json
CHANGED
|
@@ -1357,13 +1357,13 @@ type FetchTagsResult = {
|
|
|
1357
1357
|
totalPages: number;
|
|
1358
1358
|
};
|
|
1359
1359
|
};
|
|
1360
|
-
declare function fetchTags(apiKey: string, page
|
|
1360
|
+
declare function fetchTags(apiKey: string, page?: number, pageSize?: number, options?: {
|
|
1361
1361
|
q?: string;
|
|
1362
1362
|
language?: string;
|
|
1363
1363
|
}, fetchOptions?: types.FetchOptions): Promise<FetchTagsResult>;
|
|
1364
1364
|
declare function fetchTags(options: {
|
|
1365
|
-
page
|
|
1366
|
-
pageSize
|
|
1365
|
+
page?: number;
|
|
1366
|
+
pageSize?: number;
|
|
1367
1367
|
filterBy?: {
|
|
1368
1368
|
q?: string;
|
|
1369
1369
|
language?: string;
|