@dpuse/dpuse-shared 0.3.674 → 0.3.675
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.
|
@@ -83,6 +83,27 @@ var m = n([
|
|
|
83
83
|
label: n,
|
|
84
84
|
description: []
|
|
85
85
|
};
|
|
86
|
+
}, x = {
|
|
87
|
+
abortOperation: "Abort Operation",
|
|
88
|
+
auditObjectContent: "Audit Object Content",
|
|
89
|
+
createObject: "Create Object",
|
|
90
|
+
describeConnection: "Describe Connection",
|
|
91
|
+
dropObject: "Drop Object",
|
|
92
|
+
findObject: "Find Object",
|
|
93
|
+
getReadableStream: "Get Readable Stream",
|
|
94
|
+
getRecord: "Get Record",
|
|
95
|
+
listNodes: "List Nodes",
|
|
96
|
+
previewObject: "Preview Object",
|
|
97
|
+
removeRecords: "Remove Records",
|
|
98
|
+
retrieveChunks: "Retrieve Chunks",
|
|
99
|
+
retrieveRecords: "Retrieve Records",
|
|
100
|
+
upsertRecords: "Upsert Records"
|
|
86
101
|
};
|
|
102
|
+
function S(e) {
|
|
103
|
+
let t = new Set(e), n = "| Operation | Supported |\n";
|
|
104
|
+
n += "| --------- | --------- |\n";
|
|
105
|
+
for (let e of Object.keys(x)) n += `| ${x[e]} | ${t.has(e) ? "✓" : ""} |\n`;
|
|
106
|
+
return n;
|
|
107
|
+
}
|
|
87
108
|
//#endregion
|
|
88
|
-
export { v as connectorConfigSchema, b as constructConnectorCategoryConfig };
|
|
109
|
+
export { x as CONNECTOR_OPERATION_LABELS, v as connectorConfigSchema, b as constructConnectorCategoryConfig, S as generateConnectorOperationsTable };
|
|
@@ -31,6 +31,8 @@ export type ConnectorConfig = InferOutput<typeof connectorConfigSchema>;
|
|
|
31
31
|
type ConnectorCategoryConfig = InferOutput<typeof connectorCategoryConfigSchema>;
|
|
32
32
|
export declare const constructConnectorCategoryConfig: (id: string, localeId?: import('../../../locale').LocaleId) => LocalisedConfig<ConnectorCategoryConfig>;
|
|
33
33
|
export type ConnectorOperationName = InferOutput<typeof connectorOperationNameSchema>;
|
|
34
|
+
export declare const CONNECTOR_OPERATION_LABELS: Record<ConnectorOperationName, string>;
|
|
35
|
+
export declare function generateConnectorOperationsTable(supported: ConnectorOperationName[]): string;
|
|
34
36
|
export interface AuditObjectContentOptions1 extends EngineConnectorActionOptions {
|
|
35
37
|
chunkSize: number | undefined;
|
|
36
38
|
encodingId: string;
|
package/package.json
CHANGED