@extrahorizon/javascript-sdk 8.4.0 → 8.4.1-dev-60-97f0a63
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/CHANGELOG.md +6 -0
- package/build/index.cjs.js +5661 -1
- package/build/index.mjs +5519 -1
- package/build/types/services/data/types.d.ts +1 -1
- package/build/types/version.d.ts +1 -1
- package/package.json +1 -2
|
@@ -205,7 +205,7 @@ export interface SchemaInput {
|
|
|
205
205
|
defaultLimit?: number;
|
|
206
206
|
maximumLimit?: number;
|
|
207
207
|
}
|
|
208
|
-
export declare type UpdateSchemaInput =
|
|
208
|
+
export declare type UpdateSchemaInput = Partial<SchemaInput>;
|
|
209
209
|
export declare type IndexFieldsName = string;
|
|
210
210
|
export declare type IndexFieldsType = 'asc' | 'desc' | 'text';
|
|
211
211
|
export interface IndexOptions {
|
package/build/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "8.4.
|
|
1
|
+
export declare const version = "8.4.1-dev-60-97f0a63";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@extrahorizon/javascript-sdk",
|
|
3
|
-
"version": "8.4.
|
|
3
|
+
"version": "8.4.1-dev-60-97f0a63",
|
|
4
4
|
"description": "This package serves as a JavaScript wrapper around all Extra Horizon cloud services.",
|
|
5
5
|
"main": "build/index.cjs.js",
|
|
6
6
|
"types": "build/types/index.d.ts",
|
|
@@ -55,7 +55,6 @@
|
|
|
55
55
|
"nock": "^13.5.4",
|
|
56
56
|
"rimraf": "^5.0.5",
|
|
57
57
|
"rollup": "^2.68.0",
|
|
58
|
-
"rollup-plugin-terser": "^7.0.2",
|
|
59
58
|
"ts-jest": "^29.1.2",
|
|
60
59
|
"typescript": "^4.5.5"
|
|
61
60
|
}
|