@narrative.io/data-collaboration-sdk-ts 0.27.0 → 1.0.1
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/build/access-rules/index.d.ts +1 -1
- package/build/access-rules/types.d.ts +1 -1
- package/build/access-tokens/index.d.ts +2 -2
- package/build/apps/index.d.ts +2 -2
- package/build/attributes/index.d.ts +2 -2
- package/build/authentication/index.d.ts +1 -1
- package/build/base-api.d.ts +3 -3
- package/build/company-info/index.d.ts +2 -2
- package/build/connections/index.d.ts +1 -1
- package/build/contracts/index.d.ts +1 -1
- package/build/data-planes/index.d.ts +1 -1
- package/build/data-streams/index.d.ts +2 -2
- package/build/data-streams/index.js +1 -3
- package/build/data-streams/types.d.ts +1 -1
- package/build/datasets/index.d.ts +15 -15
- package/build/datasets/index.js +12 -12
- package/build/datasets/types.d.ts +1 -1
- package/build/forecast/index.d.ts +1 -1
- package/build/forecast/types.d.ts +1 -1
- package/build/health/index.d.ts +1 -1
- package/build/index.d.ts +35 -35
- package/build/index.js +25 -23
- package/build/installations/index.d.ts +2 -2
- package/build/jobs/index.d.ts +2 -2
- package/build/jobs/types.d.ts +3 -3
- package/build/mappings/index.d.ts +2 -2
- package/build/mappings/index.js +3 -3
- package/build/nql/AstParser.js +10 -15
- package/build/nql/AstTraverse.d.ts +1 -1
- package/build/nql/AstTraverse.js +4 -4
- package/build/nql/DataRulesConverter.d.ts +2 -2
- package/build/nql/DataRulesConverter.js +20 -23
- package/build/nql/NQLParser.js +23 -31
- package/build/nql/NqlBuilder.d.ts +2 -2
- package/build/nql/NqlBuilder.js +8 -21
- package/build/nql/SubstraitParser.d.ts +1 -2
- package/build/nql/SubstraitParser.js +27 -39
- package/build/nql/index.d.ts +2 -2
- package/build/nql/types.d.ts +1 -1
- package/build/ping/index.d.ts +1 -1
- package/build/products/index.d.ts +1 -1
- package/build/resources/index.d.ts +3 -3
- package/build/rosetta-stone/index.d.ts +1 -1
- package/build/subscriptions/index.d.ts +2 -2
- package/build/subscriptions/types.d.ts +2 -2
- package/build/uploads/index.d.ts +1 -1
- package/build/uploads/index.js +1 -3
- package/build/utils.js +7 -11
- package/build/whoami/index.d.ts +1 -1
- package/package.json +43 -45
package/build/uploads/index.js
CHANGED
package/build/utils.js
CHANGED
|
@@ -1,14 +1,10 @@
|
|
|
1
|
-
//
|
|
1
|
+
// biome-ignore lint/suspicious/noExplicitAny: blah
|
|
2
2
|
export function applyMixins(derivedCtor, constructors) {
|
|
3
|
-
|
|
4
|
-
Object.getOwnPropertyNames(baseCtor.prototype)
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
Object.defineProperty(derivedCtor.prototype, name, propertyDescriptor);
|
|
10
|
-
});
|
|
11
|
-
});
|
|
3
|
+
for (const baseCtor of constructors) {
|
|
4
|
+
for (const name of Object.getOwnPropertyNames(baseCtor.prototype))
|
|
5
|
+
Object.defineProperty(derivedCtor.prototype, name, Object.getOwnPropertyDescriptor(baseCtor.prototype, name) ||
|
|
6
|
+
Object.create(null));
|
|
7
|
+
}
|
|
12
8
|
}
|
|
13
9
|
/**
|
|
14
10
|
* Adds a trailing slash to the given string if it doesn't already end with one.
|
|
@@ -16,5 +12,5 @@ export function applyMixins(derivedCtor, constructors) {
|
|
|
16
12
|
* @returns The modified string with a trailing slash.
|
|
17
13
|
*/
|
|
18
14
|
export function addTrailingSlash(str) {
|
|
19
|
-
return str.endsWith("/") ? str : str
|
|
15
|
+
return str.endsWith("/") ? str : `${str}/`;
|
|
20
16
|
}
|
package/build/whoami/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,47 +1,45 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
"build"
|
|
46
|
-
]
|
|
2
|
+
"name": "@narrative.io/data-collaboration-sdk-ts",
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"main": "build/index.js",
|
|
5
|
+
"repository": "github:narrative-io/data-collaboration-sdk-ts",
|
|
6
|
+
"source": "src/index.ts",
|
|
7
|
+
"types": "build/index.d.ts",
|
|
8
|
+
"description": "",
|
|
9
|
+
"scripts": {
|
|
10
|
+
"build": "tsc",
|
|
11
|
+
"lint": "npx @biomejs/biome check --apply ./src",
|
|
12
|
+
"prepare": "npx @biomejs/biome check --apply ./src && npm run build",
|
|
13
|
+
"prepublishOnly": "npm test && npm run lint",
|
|
14
|
+
"preversion": "npm run lint",
|
|
15
|
+
"version": "npm run && git add -A src",
|
|
16
|
+
"postversion": "git push && git push --tags",
|
|
17
|
+
"test": "jest --coverage"
|
|
18
|
+
},
|
|
19
|
+
"keywords": [],
|
|
20
|
+
"author": "",
|
|
21
|
+
"license": "ISC",
|
|
22
|
+
"devDependencies": {
|
|
23
|
+
"@babel/core": "7.24.0",
|
|
24
|
+
"@babel/preset-env": "7.24.0",
|
|
25
|
+
"@babel/preset-typescript": "7.23.3",
|
|
26
|
+
"@biomejs/biome": "1.6.1",
|
|
27
|
+
"@commitlint/cli": "19.2.0",
|
|
28
|
+
"@commitlint/config-conventional": "19.1.0",
|
|
29
|
+
"@types/jest": "29.5.12",
|
|
30
|
+
"babel-jest": "29.7.0",
|
|
31
|
+
"jest": "29.7.0",
|
|
32
|
+
"lefthook": "1.6.7",
|
|
33
|
+
"ts-jest": "29.1.2"
|
|
34
|
+
},
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"mande": "2.0.8",
|
|
37
|
+
"zod": "3.22.4"
|
|
38
|
+
},
|
|
39
|
+
"overrides": {
|
|
40
|
+
"semver@<7.5.2": "7.5.2"
|
|
41
|
+
},
|
|
42
|
+
"files": [
|
|
43
|
+
"build"
|
|
44
|
+
]
|
|
47
45
|
}
|