@dbsp/nql 1.3.0 → 1.4.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/index.d.ts +4 -0
- package/dist/index.js +1153 -34
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -459,6 +459,10 @@ declare class NqlCompiler {
|
|
|
459
459
|
* Compile an NQL program to IntentAST.
|
|
460
460
|
*/
|
|
461
461
|
compile(program: NqlProgram): CompileResult;
|
|
462
|
+
private compileProgram;
|
|
463
|
+
private registerQueryBindingOutputSchema;
|
|
464
|
+
private canonicalizeMutationBinding;
|
|
465
|
+
private getMutationBindingOutputSchema;
|
|
462
466
|
private compileSingleStatement;
|
|
463
467
|
}
|
|
464
468
|
/**
|