clientnode 4.0.1433 → 4.0.1434
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/Logger.js +34 -20
- package/dist/array.js +34 -20
- package/dist/bundle/Logger.js +34 -20
- package/dist/bundle/array.js +34 -20
- package/dist/bundle/data-transfer.js +34 -20
- package/dist/bundle/datetime.js +46 -21
- package/dist/bundle/expression/evaluators.js +46 -21
- package/dist/bundle/expression/index.js +46 -21
- package/dist/bundle/index.js +47 -18
- package/dist/bundle/indicators.js +34 -20
- package/dist/bundle/number.js +34 -20
- package/dist/bundle/object.js +46 -20
- package/dist/bundle/scope.js +45 -18
- package/dist/bundle/string.js +46 -20
- package/dist/bundle/test-helper.js +34 -20
- package/dist/compatible/Logger.js +34 -20
- package/dist/compatible/array.js +34 -20
- package/dist/compatible/data-transfer.js +34 -20
- package/dist/compatible/datetime.js +46 -21
- package/dist/compatible/expression/evaluators.js +46 -21
- package/dist/compatible/expression/index.js +46 -21
- package/dist/compatible/index.js +47 -18
- package/dist/compatible/indicators.js +34 -20
- package/dist/compatible/number.js +34 -20
- package/dist/compatible/object.js +46 -20
- package/dist/compatible/scope.js +45 -18
- package/dist/compatible/string.js +46 -20
- package/dist/compatible/test-helper.js +34 -20
- package/dist/data-transfer.js +34 -20
- package/dist/datetime.js +46 -21
- package/dist/expression/evaluators.js +46 -21
- package/dist/expression/index.js +46 -21
- package/dist/index.js +47 -18
- package/dist/indicators.js +34 -20
- package/dist/number.js +34 -20
- package/dist/object.d.ts +22 -6
- package/dist/object.js +46 -20
- package/dist/scope.js +45 -18
- package/dist/string.d.ts +13 -0
- package/dist/string.js +46 -20
- package/dist/test-helper.js +34 -20
- package/dist/type.d.ts +13 -0
- package/package.json +1 -1
package/dist/type.d.ts
CHANGED
|
@@ -126,6 +126,19 @@ export type EvaluatedObject<Type extends object> = {
|
|
|
126
126
|
export type RecursiveEvaluateable<Type> = Evaluateable | {
|
|
127
127
|
[Property in keyof Type]: (Evaluateable | (Type[Property] extends Array<infer OtherType> ? Array<RecursiveEvaluateable<OtherType>> : Type[Property] extends Mapping<unknown> ? RecursiveEvaluateable<Type[Property]> : Evaluateable | Type[Property]));
|
|
128
128
|
};
|
|
129
|
+
export interface AsyncEvaluateObject {
|
|
130
|
+
__await_evaluate__: string;
|
|
131
|
+
}
|
|
132
|
+
export interface AsyncExecuteObject {
|
|
133
|
+
__await_execute__: string;
|
|
134
|
+
}
|
|
135
|
+
export type AsyncEvaluateable = AsyncEvaluateObject | AsyncExecuteObject;
|
|
136
|
+
export type AsyncEvaluatedObject<Type extends object> = {
|
|
137
|
+
[Property in keyof Type]: (Type[Property] extends AsyncEvaluateable ? unknown : Type[Property] extends object ? AsyncEvaluatedObject<Type[Property]> : Type[Property]);
|
|
138
|
+
};
|
|
139
|
+
export type RecursiveAsyncEvaluateable<Type> = AsyncEvaluateable | {
|
|
140
|
+
[Property in keyof Type]: (AsyncEvaluateable | (Type[Property] extends Array<infer OtherType> ? Array<RecursiveAsyncEvaluateable<OtherType>> : Type[Property] extends Mapping<unknown> ? RecursiveAsyncEvaluateable<Type[Property]> : AsyncEvaluateable | Type[Property]));
|
|
141
|
+
};
|
|
129
142
|
export interface PaginateOptions {
|
|
130
143
|
boundaryCount: number;
|
|
131
144
|
disabled: boolean;
|