@resistdesign/voltra 3.0.0-alpha.6 → 3.0.0-alpha.8
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/README.md +36 -7
- package/api/index.d.ts +1 -1
- package/api/index.js +2209 -1741
- package/common/index.d.ts +1 -1
- package/common/index.js +64 -606
- package/{index-C3-iD9Mh.d.ts → index-sIX5qe0K.d.ts} +2 -12
- package/{index-DbLgMAxB.d.ts → index-t9LXRpCu.d.ts} +1 -1
- package/index.d.ts +2 -2
- package/index.js +2327 -1836
- package/package.json +6 -1
|
@@ -1,15 +1,7 @@
|
|
|
1
|
-
import { f as TypeInfoMap, h as TypeInfo, C as ComparisonOperators, F as FieldCriterion, S as SearchCriteria, T as TypeInfoDataItem, i as SortField, d as TypeKeyword, j as ItemRelationshipInfoType, k as ItemRelationshipInfoKeys, H as HelperTypes, l as ItemRelationshipInfoTypes, m as SearchTypes } from './SearchTypes-DjN6YQzE.js';
|
|
2
1
|
import { V as Validation, T as TypeInfoValidationResults } from './Validation-CFP59oIP.js';
|
|
2
|
+
import { h as TypeInfo, C as ComparisonOperators, F as FieldCriterion, S as SearchCriteria, T as TypeInfoDataItem, f as TypeInfoMap, i as SortField, d as TypeKeyword, j as ItemRelationshipInfoType, k as ItemRelationshipInfoKeys, H as HelperTypes, l as ItemRelationshipInfoTypes, m as SearchTypes } from './SearchTypes-DjN6YQzE.js';
|
|
3
3
|
import { TypeAliasDeclaration, Node } from 'typescript';
|
|
4
4
|
|
|
5
|
-
/**
|
|
6
|
-
* Extracts type information from TypeScript content.
|
|
7
|
-
*
|
|
8
|
-
* @param source - TypeScript source text to parse.
|
|
9
|
-
* @returns Map of exported type info definitions.
|
|
10
|
-
*/
|
|
11
|
-
declare const getTypeInfoMapFromTypeScript: (source: string) => TypeInfoMap;
|
|
12
|
-
|
|
13
5
|
/**
|
|
14
6
|
* AST mapping helpers for extracting type aliases from TypeScript sources.
|
|
15
7
|
*/
|
|
@@ -47,7 +39,6 @@ declare namespace Constants {
|
|
|
47
39
|
/**
|
|
48
40
|
* @packageDocumentation
|
|
49
41
|
*
|
|
50
|
-
* Type parsing utilities for deriving TypeInfo from TypeScript source.
|
|
51
42
|
* Includes TypeInfo definitions, validation helpers, and AST mapping.
|
|
52
43
|
*/
|
|
53
44
|
|
|
@@ -55,9 +46,8 @@ declare const index$5_Constants: typeof Constants;
|
|
|
55
46
|
declare const index$5_TypeInfo: typeof TypeInfo;
|
|
56
47
|
declare const index$5_TypeMapping: typeof TypeMapping;
|
|
57
48
|
declare const index$5_Validation: typeof Validation;
|
|
58
|
-
declare const index$5_getTypeInfoMapFromTypeScript: typeof getTypeInfoMapFromTypeScript;
|
|
59
49
|
declare namespace index$5 {
|
|
60
|
-
export { index$5_Constants as Constants, index$5_TypeInfo as TypeInfo, index$5_TypeMapping as TypeMapping, index$5_Validation as Validation
|
|
50
|
+
export { index$5_Constants as Constants, index$5_TypeInfo as TypeInfo, index$5_TypeMapping as TypeMapping, index$5_Validation as Validation };
|
|
61
51
|
}
|
|
62
52
|
|
|
63
53
|
/**
|
|
@@ -475,7 +475,7 @@ declare function searchExact({ query, indexField, limit, cursor, backend, limits
|
|
|
475
475
|
/**
|
|
476
476
|
* The supported ordering strategy for cursors.
|
|
477
477
|
* */
|
|
478
|
-
type SortingStrategy =
|
|
478
|
+
type SortingStrategy = "docIdAsc";
|
|
479
479
|
/**
|
|
480
480
|
* Cursor planner metadata used to resume searches efficiently.
|
|
481
481
|
* */
|
package/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export { i as API } from './index-
|
|
1
|
+
export { i as API } from './index-t9LXRpCu.js';
|
|
2
2
|
export { i as App } from './index-IokxSNxm.js';
|
|
3
3
|
export { i as IaC } from './index-BjFkoQmK.js';
|
|
4
|
-
export { i as Common } from './index-
|
|
4
|
+
export { i as Common } from './index-sIX5qe0K.js';
|
|
5
5
|
import '@aws-sdk/client-dynamodb';
|
|
6
6
|
import '@aws-sdk/client-s3';
|
|
7
7
|
import './SearchTypes-DjN6YQzE.js';
|