@vertexvis/utils 0.22.1-canary.11 → 0.22.1-canary.13
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/mapper.d.ts
CHANGED
|
@@ -178,6 +178,7 @@ export declare function read<T, R1, R2, R3, R4, R5, R6>(a: Func<T, R1>, b: Func<
|
|
|
178
178
|
export declare function read<T, R1, R2, R3, R4, R5, R6, R7>(a: Func<T, R1>, b: Func<T, R2>, c: Func<T, R3>, d: Func<T, R4>, e: Func<T, R5>, f: Func<T, R6>, g: Func<T, R7>): Func<T, [R1, R2, R3, R4, R5, R6, R7]>;
|
|
179
179
|
export declare function read<T, R1, R2, R3, R4, R5, R6, R7, R8>(a: Func<T, R1>, b: Func<T, R2>, c: Func<T, R3>, d: Func<T, R4>, e: Func<T, R5>, f: Func<T, R6>, g: Func<T, R7>, h: Func<T, R8>): Func<T, [R1, R2, R3, R4, R5, R6, R7, R8]>;
|
|
180
180
|
export declare function read<T, R1, R2, R3, R4, R5, R6, R7, R8, R9>(a: Func<T, R1>, b: Func<T, R2>, c: Func<T, R3>, d: Func<T, R4>, e: Func<T, R5>, f: Func<T, R6>, g: Func<T, R7>, h: Func<T, R8>, i: Func<T, R9>): Func<T, [R1, R2, R3, R4, R5, R6, R7, R8, R9]>;
|
|
181
|
+
export declare function read<T, R1, R2, R3, R4, R5, R6, R7, R8, R9, R10>(a: Func<T, R1>, b: Func<T, R2>, c: Func<T, R3>, d: Func<T, R4>, e: Func<T, R5>, f: Func<T, R6>, g: Func<T, R7>, h: Func<T, R8>, i: Func<T, R9>, j: Func<T, R10>): Func<T, [R1, R2, R3, R4, R5, R6, R7, R8, R9, R10]>;
|
|
181
182
|
/**
|
|
182
183
|
* Defines a mapper that reads the values from an input and invokes a builder to
|
|
183
184
|
* transform data from one schema to another.
|
|
@@ -252,6 +253,7 @@ export declare function compose<T, A, B, C, D, E, R>(a: Func<T, A>, b: Func<A, B
|
|
|
252
253
|
export declare function compose<T, A, B, C, D, E, F, R>(a: Func<T, A>, b: Func<A, B>, c: Func<B, C>, d: Func<C, D>, e: Func<D, E>, f: Func<E, F>, g: Func<F, R>): Func<T, R>;
|
|
253
254
|
export declare function compose<T, A, B, C, D, E, F, G, R>(a: Func<T, A>, b: Func<A, B>, c: Func<B, C>, d: Func<C, D>, e: Func<D, E>, f: Func<E, F>, g: Func<F, G>, h: Func<G, R>): Func<T, R>;
|
|
254
255
|
export declare function compose<T, A, B, C, D, E, F, G, H, R>(a: Func<T, A>, b: Func<A, B>, c: Func<B, C>, d: Func<C, D>, e: Func<D, E>, f: Func<E, F>, g: Func<F, G>, h: Func<G, H>, i: Func<H, R>): Func<T, R>;
|
|
256
|
+
export declare function compose<T, A, B, C, D, E, F, G, H, I, R>(a: Func<T, A>, b: Func<A, B>, c: Func<B, C>, d: Func<C, D>, e: Func<D, E>, f: Func<E, F>, g: Func<F, G>, h: Func<G, H>, i: Func<H, I>, j: Func<I, R>): Func<T, R>;
|
|
255
257
|
/**
|
|
256
258
|
* Returns a mapper that returns the first defined result of a mapper. If all
|
|
257
259
|
* mappers return `undefined`, then `undefined` is returned.
|
|
@@ -264,3 +266,4 @@ export declare function pickFirst<T, A, B, C, D, E, F>(a: Func<T, A | undefined>
|
|
|
264
266
|
export declare function pickFirst<T, A, B, C, D, E, F, G>(a: Func<T, A | undefined>, b: Func<T, B | undefined>, c: Func<T, C | undefined>, d: Func<T, D | undefined>, e: Func<T, E | undefined>, f: Func<T, F | undefined>, g: Func<T, G | undefined>): Func<T, A | B | C | D | E | F | G | undefined>;
|
|
265
267
|
export declare function pickFirst<T, A, B, C, D, E, F, G, H>(a: Func<T, A | undefined>, b: Func<T, B | undefined>, c: Func<T, C | undefined>, d: Func<T, D | undefined>, e: Func<T, E | undefined>, f: Func<T, F | undefined>, g: Func<T, G | undefined>, h: Func<T, H | undefined>): Func<T, A | B | C | D | E | F | G | H | undefined>;
|
|
266
268
|
export declare function pickFirst<T, A, B, C, D, E, F, G, H, I>(a: Func<T, A | undefined>, b: Func<T, B | undefined>, c: Func<T, C | undefined>, d: Func<T, D | undefined>, e: Func<T, E | undefined>, f: Func<T, F | undefined>, g: Func<T, G | undefined>, h: Func<T, H | undefined>, i: Func<T, I | undefined>): Func<T, A | B | C | D | E | F | G | H | I | undefined>;
|
|
269
|
+
export declare function pickFirst<T, A, B, C, D, E, F, G, H, I, J>(a: Func<T, A | undefined>, b: Func<T, B | undefined>, c: Func<T, C | undefined>, d: Func<T, D | undefined>, e: Func<T, E | undefined>, f: Func<T, F | undefined>, g: Func<T, G | undefined>, h: Func<T, H | undefined>, i: Func<T, I | undefined>, j: Func<T, J | undefined>): Func<T, A | B | C | D | E | F | G | H | I | J | undefined>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vertexvis/utils",
|
|
3
|
-
"version": "0.22.1-canary.
|
|
3
|
+
"version": "0.22.1-canary.13",
|
|
4
4
|
"description": "Utility library for Viewer SDK.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Vertex Developers <support@vertexvis.com> (https://developer.vertexvis.com)",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"@types/uuid": "^8.3.4",
|
|
48
48
|
"@vertexvis/eslint-config-vertexvis-typescript": "^0.5.0",
|
|
49
49
|
"@vertexvis/jest-config-vertexvis": "^0.5.4",
|
|
50
|
-
"@vertexwebsdk/build": "0.22.1-canary.
|
|
50
|
+
"@vertexwebsdk/build": "0.22.1-canary.13",
|
|
51
51
|
"eslint": "^8.17.0",
|
|
52
52
|
"jest": "^27.5.1",
|
|
53
53
|
"rollup": "^2.75.6",
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
"peerDependencies": {
|
|
59
59
|
"tslib": ">=2.1.0"
|
|
60
60
|
},
|
|
61
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "7fd75fb162e0930846e47409d36cd7b3ab9c4573"
|
|
62
62
|
}
|