@bigbinary/neeto-fields-frontend 1.0.3 → 1.0.4
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/README.md +0 -4
- package/dist/index.cjs.js +4559 -204
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +4562 -207
- package/dist/index.js.map +1 -1
- package/package.json +3 -1
package/README.md
CHANGED
|
@@ -455,8 +455,6 @@ This is a React Query hook for fetching all the fields.
|
|
|
455
455
|
|
|
456
456
|
- `resourceType`: The resource_type of the fields to be fetched.
|
|
457
457
|
- `ownerId`: The ID of the owner in case the owner is not an organization.
|
|
458
|
-
- `pageSize` The page size for fetching the fields.
|
|
459
|
-
- `pageIndex`: The page index for fetching the fields.
|
|
460
458
|
|
|
461
459
|
#### Usage:
|
|
462
460
|
|
|
@@ -465,8 +463,6 @@ const {
|
|
|
465
463
|
data: { fields },
|
|
466
464
|
} = useFetchFields({
|
|
467
465
|
resourceType: "users",
|
|
468
|
-
pageSize: 10,
|
|
469
|
-
pageIndex: 1,
|
|
470
466
|
ownerId: "ownerId",
|
|
471
467
|
});
|
|
472
468
|
```
|