quidproquo-web-admin 0.1.22 → 0.1.24
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/lib/commonjs/LogViewer/logic/actionComponentMap/core/coreCryptoActionComponentMap.js +3 -0
- package/lib/commonjs/LogViewer/logic/actionComponentMap/core/coreCryptoActionComponentMap.js.map +1 -1
- package/lib/commonjs/LogViewer/logic/actionComponentMap/core/coreFileActionComponentMap.js +1 -0
- package/lib/commonjs/LogViewer/logic/actionComponentMap/core/coreFileActionComponentMap.js.map +1 -1
- package/lib/esm/LogViewer/logic/actionComponentMap/core/coreCryptoActionComponentMap.js +3 -0
- package/lib/esm/LogViewer/logic/actionComponentMap/core/coreCryptoActionComponentMap.js.map +1 -1
- package/lib/esm/LogViewer/logic/actionComponentMap/core/coreFileActionComponentMap.js +1 -0
- package/lib/esm/LogViewer/logic/actionComponentMap/core/coreFileActionComponentMap.js.map +1 -1
- package/package.json +7 -7
package/lib/commonjs/LogViewer/logic/actionComponentMap/core/coreCryptoActionComponentMap.js
CHANGED
|
@@ -4,6 +4,9 @@ const quidproquo_core_1 = require("quidproquo-core");
|
|
|
4
4
|
const coreCryptoActionComponentMap = {
|
|
5
5
|
[quidproquo_core_1.CryptoActionType.Encrypt]: ['askCryptoEncrypt', 'keyName', 'context'],
|
|
6
6
|
[quidproquo_core_1.CryptoActionType.Decrypt]: ['askCryptoDecrypt', 'keyName', 'context'],
|
|
7
|
+
[quidproquo_core_1.CryptoActionType.Sign]: ['askCryptoSign', 'keyName'],
|
|
8
|
+
[quidproquo_core_1.CryptoActionType.Verify]: ['askCryptoVerify', 'keyName'],
|
|
9
|
+
[quidproquo_core_1.CryptoActionType.GetPublicKey]: ['askCryptoGetPublicKey', 'keyName'],
|
|
7
10
|
};
|
|
8
11
|
exports.default = coreCryptoActionComponentMap;
|
|
9
12
|
//# sourceMappingURL=coreCryptoActionComponentMap.js.map
|
package/lib/commonjs/LogViewer/logic/actionComponentMap/core/coreCryptoActionComponentMap.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"coreCryptoActionComponentMap.js","sourceRoot":"","sources":["../../../../../../src/LogViewer/logic/actionComponentMap/core/coreCryptoActionComponentMap.ts"],"names":[],"mappings":";;AAAA,qDAAmD;AAEnD,MAAM,4BAA4B,GAA6B;IAC7D,CAAC,kCAAgB,CAAC,OAAO,CAAC,EAAE,CAAC,kBAAkB,EAAE,SAAS,EAAE,SAAS,CAAC;IACtE,CAAC,kCAAgB,CAAC,OAAO,CAAC,EAAE,CAAC,kBAAkB,EAAE,SAAS,EAAE,SAAS,CAAC;
|
|
1
|
+
{"version":3,"file":"coreCryptoActionComponentMap.js","sourceRoot":"","sources":["../../../../../../src/LogViewer/logic/actionComponentMap/core/coreCryptoActionComponentMap.ts"],"names":[],"mappings":";;AAAA,qDAAmD;AAEnD,MAAM,4BAA4B,GAA6B;IAC7D,CAAC,kCAAgB,CAAC,OAAO,CAAC,EAAE,CAAC,kBAAkB,EAAE,SAAS,EAAE,SAAS,CAAC;IACtE,CAAC,kCAAgB,CAAC,OAAO,CAAC,EAAE,CAAC,kBAAkB,EAAE,SAAS,EAAE,SAAS,CAAC;IACtE,CAAC,kCAAgB,CAAC,IAAI,CAAC,EAAE,CAAC,eAAe,EAAE,SAAS,CAAC;IACrD,CAAC,kCAAgB,CAAC,MAAM,CAAC,EAAE,CAAC,iBAAiB,EAAE,SAAS,CAAC;IACzD,CAAC,kCAAgB,CAAC,YAAY,CAAC,EAAE,CAAC,uBAAuB,EAAE,SAAS,CAAC;CACtE,CAAC;AAEF,kBAAe,4BAA4B,CAAC","sourcesContent":["import { CryptoActionType } from 'quidproquo-core';\n\nconst coreCryptoActionComponentMap: Record<string, string[]> = {\n [CryptoActionType.Encrypt]: ['askCryptoEncrypt', 'keyName', 'context'],\n [CryptoActionType.Decrypt]: ['askCryptoDecrypt', 'keyName', 'context'],\n [CryptoActionType.Sign]: ['askCryptoSign', 'keyName'],\n [CryptoActionType.Verify]: ['askCryptoVerify', 'keyName'],\n [CryptoActionType.GetPublicKey]: ['askCryptoGetPublicKey', 'keyName'],\n};\n\nexport default coreCryptoActionComponentMap;\n"]}
|
|
@@ -7,6 +7,7 @@ const coreFileActionComponentMap = {
|
|
|
7
7
|
[quidproquo_core_1.FileActionType.ListDirectory]: ['askFileListDirectory', 'drive', 'folderPath', 'maxFiles', 'pageToken'],
|
|
8
8
|
[quidproquo_core_1.FileActionType.Exists]: ['askFileExists', 'drive', 'filepath'],
|
|
9
9
|
[quidproquo_core_1.FileActionType.Delete]: ['askFileDelete', 'drive', 'filepaths'],
|
|
10
|
+
[quidproquo_core_1.FileActionType.Copy]: ['askFileCopy', 'sourceDrive', 'sourceFilepath', 'targetDrive', 'targetFilepath'],
|
|
10
11
|
[quidproquo_core_1.FileActionType.ReadBinaryContents]: ['askFileReadBinaryContents', 'drive', 'filepath'],
|
|
11
12
|
[quidproquo_core_1.FileActionType.WriteBinaryContents]: ['askFileWriteBinaryContents', 'drive', 'filepath', 'data', 'storageDriveAdvancedWriteOptions'],
|
|
12
13
|
[quidproquo_core_1.FileActionType.GenerateTemporarySecureUrl]: ['askFileGenerateTemporarySecureUrl', 'drive', 'filepath', 'expirationMs'],
|
package/lib/commonjs/LogViewer/logic/actionComponentMap/core/coreFileActionComponentMap.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"coreFileActionComponentMap.js","sourceRoot":"","sources":["../../../../../../src/LogViewer/logic/actionComponentMap/core/coreFileActionComponentMap.ts"],"names":[],"mappings":";;AAAA,qDAAiD;AAEjD,MAAM,0BAA0B,GAA6B;IAC3D,CAAC,gCAAc,CAAC,gBAAgB,CAAC,EAAE,CAAC,yBAAyB,EAAE,OAAO,EAAE,UAAU,CAAC;IACnF,CAAC,gCAAc,CAAC,iBAAiB,CAAC,EAAE,CAAC,0BAA0B,EAAE,OAAO,EAAE,UAAU,EAAE,MAAM,EAAE,kCAAkC,CAAC;IACjI,CAAC,gCAAc,CAAC,aAAa,CAAC,EAAE,CAAC,sBAAsB,EAAE,OAAO,EAAE,YAAY,EAAE,UAAU,EAAE,WAAW,CAAC;IACxG,CAAC,gCAAc,CAAC,MAAM,CAAC,EAAE,CAAC,eAAe,EAAE,OAAO,EAAE,UAAU,CAAC;IAC/D,CAAC,gCAAc,CAAC,MAAM,CAAC,EAAE,CAAC,eAAe,EAAE,OAAO,EAAE,WAAW,CAAC;IAChE,CAAC,gCAAc,CAAC,kBAAkB,CAAC,EAAE,CAAC,2BAA2B,EAAE,OAAO,EAAE,UAAU,CAAC;IACvF,CAAC,gCAAc,CAAC,mBAAmB,CAAC,EAAE,CAAC,4BAA4B,EAAE,OAAO,EAAE,UAAU,EAAE,MAAM,EAAE,kCAAkC,CAAC;IACrI,CAAC,gCAAc,CAAC,0BAA0B,CAAC,EAAE,CAAC,mCAAmC,EAAE,OAAO,EAAE,UAAU,EAAE,cAAc,CAAC;IACvH,CAAC,gCAAc,CAAC,gCAAgC,CAAC,EAAE,CAAC,yCAAyC,EAAE,OAAO,EAAE,UAAU,EAAE,cAAc,EAAE,aAAa,CAAC;IAClJ,CAAC,gCAAc,CAAC,cAAc,CAAC,EAAE,CAAC,uBAAuB,EAAE,OAAO,EAAE,UAAU,CAAC;IAC/E,CAAC,gCAAc,CAAC,eAAe,CAAC,EAAE,CAAC,wBAAwB,EAAE,OAAO,EAAE,UAAU,EAAE,MAAM,EAAE,kCAAkC,CAAC;IAC7H,CAAC,gCAAc,CAAC,aAAa,CAAC,EAAE,CAAC,sBAAsB,EAAE,OAAO,EAAE,UAAU,CAAC;IAC7E,CAAC,gCAAc,CAAC,UAAU,CAAC,EAAE,CAAC,mBAAmB,EAAE,OAAO,EAAE,UAAU,EAAE,UAAU,EAAE,WAAW,CAAC;CACjG,CAAC;AAEF,kBAAe,0BAA0B,CAAC","sourcesContent":["import { FileActionType } from 'quidproquo-core';\n\nconst coreFileActionComponentMap: Record<string, string[]> = {\n [FileActionType.ReadTextContents]: ['askFileReadTextContents', 'drive', 'filepath'],\n [FileActionType.WriteTextContents]: ['askFileWriteTextContents', 'drive', 'filepath', 'data', 'storageDriveAdvancedWriteOptions'],\n [FileActionType.ListDirectory]: ['askFileListDirectory', 'drive', 'folderPath', 'maxFiles', 'pageToken'],\n [FileActionType.Exists]: ['askFileExists', 'drive', 'filepath'],\n [FileActionType.Delete]: ['askFileDelete', 'drive', 'filepaths'],\n [FileActionType.ReadBinaryContents]: ['askFileReadBinaryContents', 'drive', 'filepath'],\n [FileActionType.WriteBinaryContents]: ['askFileWriteBinaryContents', 'drive', 'filepath', 'data', 'storageDriveAdvancedWriteOptions'],\n [FileActionType.GenerateTemporarySecureUrl]: ['askFileGenerateTemporarySecureUrl', 'drive', 'filepath', 'expirationMs'],\n [FileActionType.GenerateTemporaryUploadSecureUrl]: ['askFileGenerateTemporaryUploadSecureUrl', 'drive', 'filepath', 'expirationMs', 'contentType'],\n [FileActionType.ReadObjectJson]: ['askFileReadObjectJson', 'drive', 'filepath'],\n [FileActionType.WriteObjectJson]: ['askFileWriteObjectJson', 'drive', 'filepath', 'data', 'storageDriveAdvancedWriteOptions'],\n [FileActionType.IsColdStorage]: ['askFileIsColdStorage', 'drive', 'filepath'],\n [FileActionType.StreamOpen]: ['askFileStreamOpen', 'drive', 'filepath', 'encoding', 'chunkSize'],\n};\n\nexport default coreFileActionComponentMap;\n"]}
|
|
1
|
+
{"version":3,"file":"coreFileActionComponentMap.js","sourceRoot":"","sources":["../../../../../../src/LogViewer/logic/actionComponentMap/core/coreFileActionComponentMap.ts"],"names":[],"mappings":";;AAAA,qDAAiD;AAEjD,MAAM,0BAA0B,GAA6B;IAC3D,CAAC,gCAAc,CAAC,gBAAgB,CAAC,EAAE,CAAC,yBAAyB,EAAE,OAAO,EAAE,UAAU,CAAC;IACnF,CAAC,gCAAc,CAAC,iBAAiB,CAAC,EAAE,CAAC,0BAA0B,EAAE,OAAO,EAAE,UAAU,EAAE,MAAM,EAAE,kCAAkC,CAAC;IACjI,CAAC,gCAAc,CAAC,aAAa,CAAC,EAAE,CAAC,sBAAsB,EAAE,OAAO,EAAE,YAAY,EAAE,UAAU,EAAE,WAAW,CAAC;IACxG,CAAC,gCAAc,CAAC,MAAM,CAAC,EAAE,CAAC,eAAe,EAAE,OAAO,EAAE,UAAU,CAAC;IAC/D,CAAC,gCAAc,CAAC,MAAM,CAAC,EAAE,CAAC,eAAe,EAAE,OAAO,EAAE,WAAW,CAAC;IAChE,CAAC,gCAAc,CAAC,IAAI,CAAC,EAAE,CAAC,aAAa,EAAE,aAAa,EAAE,gBAAgB,EAAE,aAAa,EAAE,gBAAgB,CAAC;IACxG,CAAC,gCAAc,CAAC,kBAAkB,CAAC,EAAE,CAAC,2BAA2B,EAAE,OAAO,EAAE,UAAU,CAAC;IACvF,CAAC,gCAAc,CAAC,mBAAmB,CAAC,EAAE,CAAC,4BAA4B,EAAE,OAAO,EAAE,UAAU,EAAE,MAAM,EAAE,kCAAkC,CAAC;IACrI,CAAC,gCAAc,CAAC,0BAA0B,CAAC,EAAE,CAAC,mCAAmC,EAAE,OAAO,EAAE,UAAU,EAAE,cAAc,CAAC;IACvH,CAAC,gCAAc,CAAC,gCAAgC,CAAC,EAAE,CAAC,yCAAyC,EAAE,OAAO,EAAE,UAAU,EAAE,cAAc,EAAE,aAAa,CAAC;IAClJ,CAAC,gCAAc,CAAC,cAAc,CAAC,EAAE,CAAC,uBAAuB,EAAE,OAAO,EAAE,UAAU,CAAC;IAC/E,CAAC,gCAAc,CAAC,eAAe,CAAC,EAAE,CAAC,wBAAwB,EAAE,OAAO,EAAE,UAAU,EAAE,MAAM,EAAE,kCAAkC,CAAC;IAC7H,CAAC,gCAAc,CAAC,aAAa,CAAC,EAAE,CAAC,sBAAsB,EAAE,OAAO,EAAE,UAAU,CAAC;IAC7E,CAAC,gCAAc,CAAC,UAAU,CAAC,EAAE,CAAC,mBAAmB,EAAE,OAAO,EAAE,UAAU,EAAE,UAAU,EAAE,WAAW,CAAC;CACjG,CAAC;AAEF,kBAAe,0BAA0B,CAAC","sourcesContent":["import { FileActionType } from 'quidproquo-core';\n\nconst coreFileActionComponentMap: Record<string, string[]> = {\n [FileActionType.ReadTextContents]: ['askFileReadTextContents', 'drive', 'filepath'],\n [FileActionType.WriteTextContents]: ['askFileWriteTextContents', 'drive', 'filepath', 'data', 'storageDriveAdvancedWriteOptions'],\n [FileActionType.ListDirectory]: ['askFileListDirectory', 'drive', 'folderPath', 'maxFiles', 'pageToken'],\n [FileActionType.Exists]: ['askFileExists', 'drive', 'filepath'],\n [FileActionType.Delete]: ['askFileDelete', 'drive', 'filepaths'],\n [FileActionType.Copy]: ['askFileCopy', 'sourceDrive', 'sourceFilepath', 'targetDrive', 'targetFilepath'],\n [FileActionType.ReadBinaryContents]: ['askFileReadBinaryContents', 'drive', 'filepath'],\n [FileActionType.WriteBinaryContents]: ['askFileWriteBinaryContents', 'drive', 'filepath', 'data', 'storageDriveAdvancedWriteOptions'],\n [FileActionType.GenerateTemporarySecureUrl]: ['askFileGenerateTemporarySecureUrl', 'drive', 'filepath', 'expirationMs'],\n [FileActionType.GenerateTemporaryUploadSecureUrl]: ['askFileGenerateTemporaryUploadSecureUrl', 'drive', 'filepath', 'expirationMs', 'contentType'],\n [FileActionType.ReadObjectJson]: ['askFileReadObjectJson', 'drive', 'filepath'],\n [FileActionType.WriteObjectJson]: ['askFileWriteObjectJson', 'drive', 'filepath', 'data', 'storageDriveAdvancedWriteOptions'],\n [FileActionType.IsColdStorage]: ['askFileIsColdStorage', 'drive', 'filepath'],\n [FileActionType.StreamOpen]: ['askFileStreamOpen', 'drive', 'filepath', 'encoding', 'chunkSize'],\n};\n\nexport default coreFileActionComponentMap;\n"]}
|
|
@@ -2,6 +2,9 @@ import { CryptoActionType } from 'quidproquo-core';
|
|
|
2
2
|
const coreCryptoActionComponentMap = {
|
|
3
3
|
[CryptoActionType.Encrypt]: ['askCryptoEncrypt', 'keyName', 'context'],
|
|
4
4
|
[CryptoActionType.Decrypt]: ['askCryptoDecrypt', 'keyName', 'context'],
|
|
5
|
+
[CryptoActionType.Sign]: ['askCryptoSign', 'keyName'],
|
|
6
|
+
[CryptoActionType.Verify]: ['askCryptoVerify', 'keyName'],
|
|
7
|
+
[CryptoActionType.GetPublicKey]: ['askCryptoGetPublicKey', 'keyName'],
|
|
5
8
|
};
|
|
6
9
|
export default coreCryptoActionComponentMap;
|
|
7
10
|
//# sourceMappingURL=coreCryptoActionComponentMap.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"coreCryptoActionComponentMap.js","sourceRoot":"","sources":["../../../../../../src/LogViewer/logic/actionComponentMap/core/coreCryptoActionComponentMap.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,iBAAiB,CAAC;AAEnD,MAAM,4BAA4B,GAA6B;IAC7D,CAAC,gBAAgB,CAAC,OAAO,CAAC,EAAE,CAAC,kBAAkB,EAAE,SAAS,EAAE,SAAS,CAAC;IACtE,CAAC,gBAAgB,CAAC,OAAO,CAAC,EAAE,CAAC,kBAAkB,EAAE,SAAS,EAAE,SAAS,CAAC;
|
|
1
|
+
{"version":3,"file":"coreCryptoActionComponentMap.js","sourceRoot":"","sources":["../../../../../../src/LogViewer/logic/actionComponentMap/core/coreCryptoActionComponentMap.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,iBAAiB,CAAC;AAEnD,MAAM,4BAA4B,GAA6B;IAC7D,CAAC,gBAAgB,CAAC,OAAO,CAAC,EAAE,CAAC,kBAAkB,EAAE,SAAS,EAAE,SAAS,CAAC;IACtE,CAAC,gBAAgB,CAAC,OAAO,CAAC,EAAE,CAAC,kBAAkB,EAAE,SAAS,EAAE,SAAS,CAAC;IACtE,CAAC,gBAAgB,CAAC,IAAI,CAAC,EAAE,CAAC,eAAe,EAAE,SAAS,CAAC;IACrD,CAAC,gBAAgB,CAAC,MAAM,CAAC,EAAE,CAAC,iBAAiB,EAAE,SAAS,CAAC;IACzD,CAAC,gBAAgB,CAAC,YAAY,CAAC,EAAE,CAAC,uBAAuB,EAAE,SAAS,CAAC;CACtE,CAAC;AAEF,eAAe,4BAA4B,CAAC","sourcesContent":["import { CryptoActionType } from 'quidproquo-core';\n\nconst coreCryptoActionComponentMap: Record<string, string[]> = {\n [CryptoActionType.Encrypt]: ['askCryptoEncrypt', 'keyName', 'context'],\n [CryptoActionType.Decrypt]: ['askCryptoDecrypt', 'keyName', 'context'],\n [CryptoActionType.Sign]: ['askCryptoSign', 'keyName'],\n [CryptoActionType.Verify]: ['askCryptoVerify', 'keyName'],\n [CryptoActionType.GetPublicKey]: ['askCryptoGetPublicKey', 'keyName'],\n};\n\nexport default coreCryptoActionComponentMap;\n"]}
|
|
@@ -5,6 +5,7 @@ const coreFileActionComponentMap = {
|
|
|
5
5
|
[FileActionType.ListDirectory]: ['askFileListDirectory', 'drive', 'folderPath', 'maxFiles', 'pageToken'],
|
|
6
6
|
[FileActionType.Exists]: ['askFileExists', 'drive', 'filepath'],
|
|
7
7
|
[FileActionType.Delete]: ['askFileDelete', 'drive', 'filepaths'],
|
|
8
|
+
[FileActionType.Copy]: ['askFileCopy', 'sourceDrive', 'sourceFilepath', 'targetDrive', 'targetFilepath'],
|
|
8
9
|
[FileActionType.ReadBinaryContents]: ['askFileReadBinaryContents', 'drive', 'filepath'],
|
|
9
10
|
[FileActionType.WriteBinaryContents]: ['askFileWriteBinaryContents', 'drive', 'filepath', 'data', 'storageDriveAdvancedWriteOptions'],
|
|
10
11
|
[FileActionType.GenerateTemporarySecureUrl]: ['askFileGenerateTemporarySecureUrl', 'drive', 'filepath', 'expirationMs'],
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"coreFileActionComponentMap.js","sourceRoot":"","sources":["../../../../../../src/LogViewer/logic/actionComponentMap/core/coreFileActionComponentMap.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AAEjD,MAAM,0BAA0B,GAA6B;IAC3D,CAAC,cAAc,CAAC,gBAAgB,CAAC,EAAE,CAAC,yBAAyB,EAAE,OAAO,EAAE,UAAU,CAAC;IACnF,CAAC,cAAc,CAAC,iBAAiB,CAAC,EAAE,CAAC,0BAA0B,EAAE,OAAO,EAAE,UAAU,EAAE,MAAM,EAAE,kCAAkC,CAAC;IACjI,CAAC,cAAc,CAAC,aAAa,CAAC,EAAE,CAAC,sBAAsB,EAAE,OAAO,EAAE,YAAY,EAAE,UAAU,EAAE,WAAW,CAAC;IACxG,CAAC,cAAc,CAAC,MAAM,CAAC,EAAE,CAAC,eAAe,EAAE,OAAO,EAAE,UAAU,CAAC;IAC/D,CAAC,cAAc,CAAC,MAAM,CAAC,EAAE,CAAC,eAAe,EAAE,OAAO,EAAE,WAAW,CAAC;IAChE,CAAC,cAAc,CAAC,kBAAkB,CAAC,EAAE,CAAC,2BAA2B,EAAE,OAAO,EAAE,UAAU,CAAC;IACvF,CAAC,cAAc,CAAC,mBAAmB,CAAC,EAAE,CAAC,4BAA4B,EAAE,OAAO,EAAE,UAAU,EAAE,MAAM,EAAE,kCAAkC,CAAC;IACrI,CAAC,cAAc,CAAC,0BAA0B,CAAC,EAAE,CAAC,mCAAmC,EAAE,OAAO,EAAE,UAAU,EAAE,cAAc,CAAC;IACvH,CAAC,cAAc,CAAC,gCAAgC,CAAC,EAAE,CAAC,yCAAyC,EAAE,OAAO,EAAE,UAAU,EAAE,cAAc,EAAE,aAAa,CAAC;IAClJ,CAAC,cAAc,CAAC,cAAc,CAAC,EAAE,CAAC,uBAAuB,EAAE,OAAO,EAAE,UAAU,CAAC;IAC/E,CAAC,cAAc,CAAC,eAAe,CAAC,EAAE,CAAC,wBAAwB,EAAE,OAAO,EAAE,UAAU,EAAE,MAAM,EAAE,kCAAkC,CAAC;IAC7H,CAAC,cAAc,CAAC,aAAa,CAAC,EAAE,CAAC,sBAAsB,EAAE,OAAO,EAAE,UAAU,CAAC;IAC7E,CAAC,cAAc,CAAC,UAAU,CAAC,EAAE,CAAC,mBAAmB,EAAE,OAAO,EAAE,UAAU,EAAE,UAAU,EAAE,WAAW,CAAC;CACjG,CAAC;AAEF,eAAe,0BAA0B,CAAC","sourcesContent":["import { FileActionType } from 'quidproquo-core';\n\nconst coreFileActionComponentMap: Record<string, string[]> = {\n [FileActionType.ReadTextContents]: ['askFileReadTextContents', 'drive', 'filepath'],\n [FileActionType.WriteTextContents]: ['askFileWriteTextContents', 'drive', 'filepath', 'data', 'storageDriveAdvancedWriteOptions'],\n [FileActionType.ListDirectory]: ['askFileListDirectory', 'drive', 'folderPath', 'maxFiles', 'pageToken'],\n [FileActionType.Exists]: ['askFileExists', 'drive', 'filepath'],\n [FileActionType.Delete]: ['askFileDelete', 'drive', 'filepaths'],\n [FileActionType.ReadBinaryContents]: ['askFileReadBinaryContents', 'drive', 'filepath'],\n [FileActionType.WriteBinaryContents]: ['askFileWriteBinaryContents', 'drive', 'filepath', 'data', 'storageDriveAdvancedWriteOptions'],\n [FileActionType.GenerateTemporarySecureUrl]: ['askFileGenerateTemporarySecureUrl', 'drive', 'filepath', 'expirationMs'],\n [FileActionType.GenerateTemporaryUploadSecureUrl]: ['askFileGenerateTemporaryUploadSecureUrl', 'drive', 'filepath', 'expirationMs', 'contentType'],\n [FileActionType.ReadObjectJson]: ['askFileReadObjectJson', 'drive', 'filepath'],\n [FileActionType.WriteObjectJson]: ['askFileWriteObjectJson', 'drive', 'filepath', 'data', 'storageDriveAdvancedWriteOptions'],\n [FileActionType.IsColdStorage]: ['askFileIsColdStorage', 'drive', 'filepath'],\n [FileActionType.StreamOpen]: ['askFileStreamOpen', 'drive', 'filepath', 'encoding', 'chunkSize'],\n};\n\nexport default coreFileActionComponentMap;\n"]}
|
|
1
|
+
{"version":3,"file":"coreFileActionComponentMap.js","sourceRoot":"","sources":["../../../../../../src/LogViewer/logic/actionComponentMap/core/coreFileActionComponentMap.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AAEjD,MAAM,0BAA0B,GAA6B;IAC3D,CAAC,cAAc,CAAC,gBAAgB,CAAC,EAAE,CAAC,yBAAyB,EAAE,OAAO,EAAE,UAAU,CAAC;IACnF,CAAC,cAAc,CAAC,iBAAiB,CAAC,EAAE,CAAC,0BAA0B,EAAE,OAAO,EAAE,UAAU,EAAE,MAAM,EAAE,kCAAkC,CAAC;IACjI,CAAC,cAAc,CAAC,aAAa,CAAC,EAAE,CAAC,sBAAsB,EAAE,OAAO,EAAE,YAAY,EAAE,UAAU,EAAE,WAAW,CAAC;IACxG,CAAC,cAAc,CAAC,MAAM,CAAC,EAAE,CAAC,eAAe,EAAE,OAAO,EAAE,UAAU,CAAC;IAC/D,CAAC,cAAc,CAAC,MAAM,CAAC,EAAE,CAAC,eAAe,EAAE,OAAO,EAAE,WAAW,CAAC;IAChE,CAAC,cAAc,CAAC,IAAI,CAAC,EAAE,CAAC,aAAa,EAAE,aAAa,EAAE,gBAAgB,EAAE,aAAa,EAAE,gBAAgB,CAAC;IACxG,CAAC,cAAc,CAAC,kBAAkB,CAAC,EAAE,CAAC,2BAA2B,EAAE,OAAO,EAAE,UAAU,CAAC;IACvF,CAAC,cAAc,CAAC,mBAAmB,CAAC,EAAE,CAAC,4BAA4B,EAAE,OAAO,EAAE,UAAU,EAAE,MAAM,EAAE,kCAAkC,CAAC;IACrI,CAAC,cAAc,CAAC,0BAA0B,CAAC,EAAE,CAAC,mCAAmC,EAAE,OAAO,EAAE,UAAU,EAAE,cAAc,CAAC;IACvH,CAAC,cAAc,CAAC,gCAAgC,CAAC,EAAE,CAAC,yCAAyC,EAAE,OAAO,EAAE,UAAU,EAAE,cAAc,EAAE,aAAa,CAAC;IAClJ,CAAC,cAAc,CAAC,cAAc,CAAC,EAAE,CAAC,uBAAuB,EAAE,OAAO,EAAE,UAAU,CAAC;IAC/E,CAAC,cAAc,CAAC,eAAe,CAAC,EAAE,CAAC,wBAAwB,EAAE,OAAO,EAAE,UAAU,EAAE,MAAM,EAAE,kCAAkC,CAAC;IAC7H,CAAC,cAAc,CAAC,aAAa,CAAC,EAAE,CAAC,sBAAsB,EAAE,OAAO,EAAE,UAAU,CAAC;IAC7E,CAAC,cAAc,CAAC,UAAU,CAAC,EAAE,CAAC,mBAAmB,EAAE,OAAO,EAAE,UAAU,EAAE,UAAU,EAAE,WAAW,CAAC;CACjG,CAAC;AAEF,eAAe,0BAA0B,CAAC","sourcesContent":["import { FileActionType } from 'quidproquo-core';\n\nconst coreFileActionComponentMap: Record<string, string[]> = {\n [FileActionType.ReadTextContents]: ['askFileReadTextContents', 'drive', 'filepath'],\n [FileActionType.WriteTextContents]: ['askFileWriteTextContents', 'drive', 'filepath', 'data', 'storageDriveAdvancedWriteOptions'],\n [FileActionType.ListDirectory]: ['askFileListDirectory', 'drive', 'folderPath', 'maxFiles', 'pageToken'],\n [FileActionType.Exists]: ['askFileExists', 'drive', 'filepath'],\n [FileActionType.Delete]: ['askFileDelete', 'drive', 'filepaths'],\n [FileActionType.Copy]: ['askFileCopy', 'sourceDrive', 'sourceFilepath', 'targetDrive', 'targetFilepath'],\n [FileActionType.ReadBinaryContents]: ['askFileReadBinaryContents', 'drive', 'filepath'],\n [FileActionType.WriteBinaryContents]: ['askFileWriteBinaryContents', 'drive', 'filepath', 'data', 'storageDriveAdvancedWriteOptions'],\n [FileActionType.GenerateTemporarySecureUrl]: ['askFileGenerateTemporarySecureUrl', 'drive', 'filepath', 'expirationMs'],\n [FileActionType.GenerateTemporaryUploadSecureUrl]: ['askFileGenerateTemporaryUploadSecureUrl', 'drive', 'filepath', 'expirationMs', 'contentType'],\n [FileActionType.ReadObjectJson]: ['askFileReadObjectJson', 'drive', 'filepath'],\n [FileActionType.WriteObjectJson]: ['askFileWriteObjectJson', 'drive', 'filepath', 'data', 'storageDriveAdvancedWriteOptions'],\n [FileActionType.IsColdStorage]: ['askFileIsColdStorage', 'drive', 'filepath'],\n [FileActionType.StreamOpen]: ['askFileStreamOpen', 'drive', 'filepath', 'encoding', 'chunkSize'],\n};\n\nexport default coreFileActionComponentMap;\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "quidproquo-web-admin",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.24",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./lib/commonjs/index.js",
|
|
6
6
|
"module": "./lib/esm/index.js",
|
|
@@ -47,12 +47,12 @@
|
|
|
47
47
|
"date-fns": "^2.30.0",
|
|
48
48
|
"dayjs": "^1.11.7",
|
|
49
49
|
"javascript-time-ago": "^2.5.9",
|
|
50
|
-
"quidproquo-core": "0.1.
|
|
51
|
-
"quidproquo-features": "0.1.
|
|
52
|
-
"quidproquo-tsconfig": "0.1.
|
|
53
|
-
"quidproquo-web": "0.1.
|
|
54
|
-
"quidproquo-web-react": "0.1.
|
|
55
|
-
"quidproquo-webserver": "0.1.
|
|
50
|
+
"quidproquo-core": "0.1.24",
|
|
51
|
+
"quidproquo-features": "0.1.24",
|
|
52
|
+
"quidproquo-tsconfig": "0.1.24",
|
|
53
|
+
"quidproquo-web": "0.1.24",
|
|
54
|
+
"quidproquo-web-react": "0.1.24",
|
|
55
|
+
"quidproquo-webserver": "0.1.24",
|
|
56
56
|
"react": ">=18.3.1",
|
|
57
57
|
"react-d3-tree": "^3.6.6",
|
|
58
58
|
"react-dom": "18.3.1",
|