@whenessel/seql-js 1.6.0 → 1.7.0
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/seql-js.d.ts +2 -0
- package/dist/seql-js.js +622 -525
- package/dist/seql-js.js.map +1 -1
- package/dist/seql-js.umd.cjs +3 -3
- package/dist/seql-js.umd.cjs.map +1 -1
- package/package.json +1 -1
package/dist/seql-js.d.ts
CHANGED
|
@@ -1250,6 +1250,8 @@ declare interface StringifyOptions {
|
|
|
1250
1250
|
simplifyTarget?: boolean;
|
|
1251
1251
|
/** Include resolution constraints in SEQL Selector (default: true) */
|
|
1252
1252
|
includeConstraints?: boolean;
|
|
1253
|
+
/** Output format: 'compact' uses short aliases and no spaces, 'verbose' uses full names (default: 'compact') */
|
|
1254
|
+
format?: 'compact' | 'verbose';
|
|
1253
1255
|
}
|
|
1254
1256
|
|
|
1255
1257
|
/**
|