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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-bricks-rsc-client",
3
- "version": "5.0.0-alpha.4",
3
+ "version": "5.0.0-alpha.6",
4
4
  "main": "index.js",
5
5
  "module": "react-bricks-rsc-client.esm.js",
6
6
  "types": "./react-bricks-rsc-client.d.ts",
package/rsc/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-bricks-rsc",
3
- "version": "5.0.0-alpha.4",
3
+ "version": "5.0.0-alpha.6",
4
4
  "main": "index.js",
5
5
  "module": "react-bricks-rsc.esm.js",
6
6
  "types": "./react-bricks-rsc.d.ts",
@@ -1357,13 +1357,13 @@ type FetchTagsResult = {
1357
1357
  totalPages: number;
1358
1358
  };
1359
1359
  };
1360
- declare function fetchTags(apiKey: string, page: number, pageSize: number, options?: {
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: number;
1366
- pageSize: number;
1365
+ page?: number;
1366
+ pageSize?: number;
1367
1367
  filterBy?: {
1368
1368
  q?: string;
1369
1369
  language?: string;