@useparagon/core 1.1.6 → 1.1.8-canary-1
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.
|
@@ -79,6 +79,7 @@ export type ICustomIntegrationConfig = {
|
|
|
79
79
|
workflowDisplayOrder: Constructable<IWorkflow>[];
|
|
80
80
|
theme?: ConnectPortalThemeValues;
|
|
81
81
|
overviewText?: string;
|
|
82
|
+
showWatermark?: boolean;
|
|
82
83
|
apiBaseUrl: string;
|
|
83
84
|
testEndpointPath: string;
|
|
84
85
|
userProfileConfig?: UserProfileUIConfig;
|
|
@@ -47,6 +47,7 @@ import type IORedis from 'ioredis';
|
|
|
47
47
|
import type lodashFp from 'lodash/fp';
|
|
48
48
|
import type csvSync from 'csv/lib/sync';
|
|
49
49
|
import type pdfLib from 'pdf-lib';
|
|
50
|
+
import type duckdb from 'duckdb';
|
|
50
51
|
type ParagonUtils = {
|
|
51
52
|
mapIntegrationObjects: (mapping: Record<string, any>, objects: Record<string, any>[]) => Record<string, any>[];
|
|
52
53
|
mapApplicationObjects: (mapping: Record<string, any>, objects: Record<string, any>[]) => Record<string, any>[];
|
|
@@ -114,5 +115,6 @@ export type FunctionStepLibraries = {
|
|
|
114
115
|
'@aws-sdk/lib-storage': typeof import('@aws-sdk/lib-storage');
|
|
115
116
|
'@azure/storage-blob': typeof import('@azure/storage-blob');
|
|
116
117
|
'pdf-lib': typeof pdfLib;
|
|
118
|
+
duckdb: typeof duckdb;
|
|
117
119
|
};
|
|
118
120
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@useparagon/core",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.8-canary-1",
|
|
4
4
|
"description": "Core libraries for paragraph",
|
|
5
5
|
"repository": "https://github.com/useparagon/paragraph",
|
|
6
6
|
"packageManager": "pnpm@8.10.5",
|
|
@@ -71,6 +71,7 @@
|
|
|
71
71
|
"cheerio": "1.0.0-rc.12",
|
|
72
72
|
"csv": "5.5.3",
|
|
73
73
|
"date-fns": "2.30.0",
|
|
74
|
+
"duckdb": "1.3.4",
|
|
74
75
|
"eslint": "8.55.0",
|
|
75
76
|
"eslint-config-prettier": "8.10.0",
|
|
76
77
|
"eslint-plugin-import": "2.29.0",
|