@sqlanvil/core 1.1.2 → 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 +9 -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
|
|
@@ -13706,6 +13712,7 @@ interface IWrapperConfig {
|
|
|
13706
13712
|
[key: string]: string;
|
|
13707
13713
|
};
|
|
13708
13714
|
credential?: IWrapperCredential;
|
|
13715
|
+
userMappingConnection?: string;
|
|
13709
13716
|
foreignTables?: IForeignTableConfigEntry[];
|
|
13710
13717
|
filename?: string;
|
|
13711
13718
|
}
|
|
@@ -13884,6 +13891,7 @@ declare class Session {
|
|
|
13884
13891
|
contextable: (ctx: IActionContext) => string;
|
|
13885
13892
|
}];
|
|
13886
13893
|
}): void;
|
|
13894
|
+
private findActions;
|
|
13887
13895
|
resolve(ref: Resolvable | string[], ...rest: string[]): string;
|
|
13888
13896
|
operate(name: string, queryOrConfig?: Contextable<IActionContext, string | string[]> | sqlanvil.ActionConfig.OperationConfig): Operation;
|
|
13889
13897
|
rlsPolicy(config: IRlsPolicyConfig): RlsPolicy;
|
|
@@ -13926,7 +13934,7 @@ declare function jitCompiler(rpcCallback: RpcCallback): IJitCompiler;
|
|
|
13926
13934
|
|
|
13927
13935
|
declare function main(coreExecutionRequest: Uint8Array | string): Uint8Array | string;
|
|
13928
13936
|
|
|
13929
|
-
declare const version = "1.
|
|
13937
|
+
declare const version = "1.3.0";
|
|
13930
13938
|
|
|
13931
13939
|
declare const session: Session;
|
|
13932
13940
|
declare const supportedFeatures: sqlanvil.SupportedFeatures[];
|