@sqlanvil/core 1.2.0 → 1.3.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/bundle.d.ts +8 -1
- package/bundle.js +1 -1
- package/configs.proto +5 -0
- package/package.json +1 -1
package/bundle.d.ts
CHANGED
|
@@ -4147,6 +4147,9 @@ namespace sqlanvil {
|
|
|
4147
4147
|
|
|
4148
4148
|
/** Bound values */
|
|
4149
4149
|
values?: (string|null);
|
|
4150
|
+
|
|
4151
|
+
/** Bound subPartition */
|
|
4152
|
+
subPartition?: (sqlanvil.PostgresOptions.IPartition|null);
|
|
4150
4153
|
}
|
|
4151
4154
|
|
|
4152
4155
|
/** Represents a Bound. */
|
|
@@ -4164,6 +4167,9 @@ namespace sqlanvil {
|
|
|
4164
4167
|
/** Bound values. */
|
|
4165
4168
|
public values: string;
|
|
4166
4169
|
|
|
4170
|
+
/** Bound subPartition. */
|
|
4171
|
+
public subPartition?: (sqlanvil.PostgresOptions.IPartition|null);
|
|
4172
|
+
|
|
4167
4173
|
/**
|
|
4168
4174
|
* Creates a new Bound instance using the specified properties.
|
|
4169
4175
|
* @param [properties] Properties to set
|
|
@@ -13885,6 +13891,7 @@ declare class Session {
|
|
|
13885
13891
|
contextable: (ctx: IActionContext) => string;
|
|
13886
13892
|
}];
|
|
13887
13893
|
}): void;
|
|
13894
|
+
private findActions;
|
|
13888
13895
|
resolve(ref: Resolvable | string[], ...rest: string[]): string;
|
|
13889
13896
|
operate(name: string, queryOrConfig?: Contextable<IActionContext, string | string[]> | sqlanvil.ActionConfig.OperationConfig): Operation;
|
|
13890
13897
|
rlsPolicy(config: IRlsPolicyConfig): RlsPolicy;
|
|
@@ -13927,7 +13934,7 @@ declare function jitCompiler(rpcCallback: RpcCallback): IJitCompiler;
|
|
|
13927
13934
|
|
|
13928
13935
|
declare function main(coreExecutionRequest: Uint8Array | string): Uint8Array | string;
|
|
13929
13936
|
|
|
13930
|
-
declare const version = "1.
|
|
13937
|
+
declare const version = "1.3.0";
|
|
13931
13938
|
|
|
13932
13939
|
declare const session: Session;
|
|
13933
13940
|
declare const supportedFeatures: sqlanvil.SupportedFeatures[];
|