@gen3/core 0.12.34 → 0.12.36
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/dist/cjs/index.js +24 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/dts/features/indexd/indexdSlice.d.ts +16 -1
- package/dist/dts/features/indexd/indexdSlice.d.ts.map +1 -1
- package/dist/esm/index.js +24 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +16 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -25564,8 +25564,23 @@ interface Statistics {
|
|
|
25564
25564
|
}
|
|
25565
25565
|
|
|
25566
25566
|
interface IndexdMetadataRequestParams {
|
|
25567
|
-
limit?: number;
|
|
25568
25567
|
filters: KeyValuePair[];
|
|
25568
|
+
params?: {
|
|
25569
|
+
limit?: number;
|
|
25570
|
+
page?: number;
|
|
25571
|
+
size?: number;
|
|
25572
|
+
form?: 'bundle' | 'object' | 'all';
|
|
25573
|
+
urls_metadata?: string;
|
|
25574
|
+
metadata?: string;
|
|
25575
|
+
hash?: string;
|
|
25576
|
+
uploader?: string;
|
|
25577
|
+
ids?: string;
|
|
25578
|
+
urls?: string[];
|
|
25579
|
+
acl?: string;
|
|
25580
|
+
authz?: string;
|
|
25581
|
+
negate_params?: string;
|
|
25582
|
+
start?: string;
|
|
25583
|
+
};
|
|
25569
25584
|
}
|
|
25570
25585
|
interface IndexObject {
|
|
25571
25586
|
acl: string[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gen3/core",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.36",
|
|
4
4
|
"author": "CTDS",
|
|
5
5
|
"description": "Core module for Gen3.2. Packages provides an interface for interacting with the gen3 API, various types, and a redux store for managing state.",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -80,5 +80,5 @@
|
|
|
80
80
|
"files": [
|
|
81
81
|
"dist"
|
|
82
82
|
],
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "8d3068786ea63bcf1b0b5bf22b20fec6641ff547"
|
|
84
84
|
}
|