@hyperledger/cactus-core-api
Advanced tools
Comparing version 0.8.0 to 0.8.1-vaultTransitKeychain.5ad9cac4.17
@@ -94,3 +94,5 @@ { | ||
], | ||
"x-enum-varnames": ["WORK"] | ||
"x-enum-varnames": [ | ||
"WORK" | ||
] | ||
}, | ||
@@ -616,2 +618,70 @@ "PrimaryKey": { | ||
} | ||
}, | ||
"DeleteKeychainEntryRequestV1": { | ||
"type": "object", | ||
"required": [ | ||
"key" | ||
], | ||
"properties": { | ||
"key": { | ||
"type": "string", | ||
"description": "The key for the entry to check the presence of on the keychain.", | ||
"minLength": 1, | ||
"maxLength": 1024, | ||
"nullable": false | ||
} | ||
} | ||
}, | ||
"DeleteKeychainEntryResponseV1": { | ||
"type": "object", | ||
"required": [ | ||
"key" | ||
], | ||
"properties": { | ||
"key": { | ||
"type": "string", | ||
"description": "The key that was deleted from the keychain.", | ||
"minLength": 1, | ||
"maxLength": 1024, | ||
"nullable": false | ||
} | ||
} | ||
}, | ||
"HasKeychainEntryRequestV1": { | ||
"type": "object", | ||
"required": [ | ||
"key" | ||
], | ||
"properties": { | ||
"key": { | ||
"type": "string", | ||
"description": "The key to check for presence in the keychain.", | ||
"minLength": 1, | ||
"maxLength": 1024, | ||
"nullable": false | ||
} | ||
} | ||
}, | ||
"HasKeychainEntryResponseV1": { | ||
"type": "object", | ||
"required": ["key", "isPresent", "checkedAt"], | ||
"properties": { | ||
"key": { | ||
"type": "string", | ||
"description": "The key that was used to check the presence of the value in the entry store.", | ||
"minLength": 1, | ||
"maxLength": 1024, | ||
"nullable": false | ||
}, | ||
"checkedAt": { | ||
"type": "string", | ||
"description": "Date and time encoded as JSON when the presence check was performed by the plugin backend.", | ||
"nullable": false | ||
}, | ||
"isPresent": { | ||
"type": "boolean", | ||
"description": "The boolean true or false indicating the presence or absence of an entry under 'key'.", | ||
"nullable": false | ||
} | ||
} | ||
} | ||
@@ -674,2 +744,24 @@ }, | ||
} | ||
}, | ||
"keychain_has_entry_request_body": { | ||
"description": "Request body for checking a keychain entry via its key", | ||
"required": true, | ||
"content": { | ||
"application/json": { | ||
"schema": { | ||
"$ref": "#/components/schemas/HasKeychainEntryRequestV1" | ||
} | ||
} | ||
} | ||
}, | ||
"keychain_delete_entry_request_body": { | ||
"description": "Request body to delete a keychain entry via its key", | ||
"required": true, | ||
"content": { | ||
"application/json": { | ||
"schema": { | ||
"$ref": "#/components/schemas/DeleteKeychainEntryRequestV1" | ||
} | ||
} | ||
} | ||
} | ||
@@ -748,2 +840,40 @@ }, | ||
"description": "Unexpected error." | ||
}, | ||
"keychain_has_entry_200": { | ||
"description": "OK", | ||
"content": { | ||
"application/json": { | ||
"schema": { | ||
"$ref": "#/components/schemas/HasKeychainEntryResponseV1" | ||
} | ||
} | ||
} | ||
}, | ||
"keychain_has_entry_400": { | ||
"description": "Bad request. Key must be a string and longer than 0, shorter than 1024 characters." | ||
}, | ||
"keychain_has_entry_401": { | ||
"description": "Authorization information is missing or invalid." | ||
}, | ||
"keychain_has_entry_500": { | ||
"description": "Unexpected error." | ||
}, | ||
"keychain_delete_entry_200": { | ||
"description": "OK", | ||
"content": { | ||
"application/json": { | ||
"schema": { | ||
"$ref": "#/components/schemas/DeleteKeychainEntryResponseV1" | ||
} | ||
} | ||
} | ||
}, | ||
"keychain_delete_entry_400": { | ||
"description": "Bad request. Key must be a string and longer than 0, shorter than 1024 characters." | ||
}, | ||
"keychain_delete_entry_401": { | ||
"description": "Authorization information is missing or invalid." | ||
}, | ||
"keychain_delete_entry_500": { | ||
"description": "Unexpected error." | ||
} | ||
@@ -750,0 +880,0 @@ } |
@@ -248,2 +248,28 @@ /** | ||
* @export | ||
* @interface DeleteKeychainEntryRequestV1 | ||
*/ | ||
export interface DeleteKeychainEntryRequestV1 { | ||
/** | ||
* The key for the entry to check the presence of on the keychain. | ||
* @type {string} | ||
* @memberof DeleteKeychainEntryRequestV1 | ||
*/ | ||
key: string; | ||
} | ||
/** | ||
* | ||
* @export | ||
* @interface DeleteKeychainEntryResponseV1 | ||
*/ | ||
export interface DeleteKeychainEntryResponseV1 { | ||
/** | ||
* The key that was deleted from the keychain. | ||
* @type {string} | ||
* @memberof DeleteKeychainEntryResponseV1 | ||
*/ | ||
key: string; | ||
} | ||
/** | ||
* | ||
* @export | ||
* @interface GetKeychainEntryRequest | ||
@@ -313,2 +339,40 @@ */ | ||
* @export | ||
* @interface HasKeychainEntryRequestV1 | ||
*/ | ||
export interface HasKeychainEntryRequestV1 { | ||
/** | ||
* The key to check for presence in the keychain. | ||
* @type {string} | ||
* @memberof HasKeychainEntryRequestV1 | ||
*/ | ||
key: string; | ||
} | ||
/** | ||
* | ||
* @export | ||
* @interface HasKeychainEntryResponseV1 | ||
*/ | ||
export interface HasKeychainEntryResponseV1 { | ||
/** | ||
* The key that was used to check the presence of the value in the entry store. | ||
* @type {string} | ||
* @memberof HasKeychainEntryResponseV1 | ||
*/ | ||
key: string; | ||
/** | ||
* Date and time encoded as JSON when the presence check was performed by the plugin backend. | ||
* @type {string} | ||
* @memberof HasKeychainEntryResponseV1 | ||
*/ | ||
checkedAt: string; | ||
/** | ||
* The boolean true or false indicating the presence or absence of an entry under \'key\'. | ||
* @type {boolean} | ||
* @memberof HasKeychainEntryResponseV1 | ||
*/ | ||
isPresent: boolean; | ||
} | ||
/** | ||
* | ||
* @export | ||
* @interface HasObjectRequestV1 | ||
@@ -315,0 +379,0 @@ */ |
@@ -82,2 +82,2 @@ "use strict"; | ||
})(PluginImportType = exports.PluginImportType || (exports.PluginImportType = {})); | ||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBpLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjL21haW4vdHlwZXNjcmlwdC9nZW5lcmF0ZWQvb3BlbmFwaS90eXBlc2NyaXB0LWF4aW9zL2FwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsb0JBQW9CO0FBQ3BCLG9CQUFvQjtBQUNwQjs7Ozs7Ozs7OztHQVVHOzs7QUFvSEg7Ozs7R0FJRztBQUNILElBQVksMkNBRVg7QUFGRCxXQUFZLDJDQUEyQztJQUNuRCwrR0FBZ0UsQ0FBQTtBQUNwRSxDQUFDLEVBRlcsMkNBQTJDLEdBQTNDLG1EQUEyQyxLQUEzQyxtREFBMkMsUUFFdEQ7QUFFRDs7OztHQUlHO0FBQ0gsSUFBWSx3Q0FHWDtBQUhELFdBQVksd0NBQXdDO0lBQ2hELHNIQUEwRSxDQUFBO0lBQzFFLDhHQUFrRSxDQUFBO0FBQ3RFLENBQUMsRUFIVyx3Q0FBd0MsR0FBeEMsZ0RBQXdDLEtBQXhDLGdEQUF3QyxRQUduRDtBQUVEOzs7O0dBSUc7QUFDSCxJQUFZLHdCQUlYO0FBSkQsV0FBWSx3QkFBd0I7SUFDaEMsc0dBQTBFLENBQUE7SUFDMUUsOEZBQWtFLENBQUE7SUFDbEUsNEZBQWdFLENBQUE7QUFDcEUsQ0FBQyxFQUpXLHdCQUF3QixHQUF4QixnQ0FBd0IsS0FBeEIsZ0NBQXdCLFFBSW5DO0FBK0ZEOzs7O0dBSUc7QUFDSCxJQUFZLFNBRVg7QUFGRCxXQUFZLFNBQVM7SUFDakIseUVBQTRELENBQUE7QUFDaEUsQ0FBQyxFQUZXLFNBQVMsR0FBVCxpQkFBUyxLQUFULGlCQUFTLFFBRXBCO0FBNktEOzs7O0dBSUc7QUFDSCxJQUFZLFVBU1g7QUFURCxXQUFZLFVBQVU7SUFDbEIsZ0NBQWtCLENBQUE7SUFDbEIsZ0NBQWtCLENBQUE7SUFDbEIsb0NBQXNCLENBQUE7SUFDdEIsa0NBQW9CLENBQUE7SUFDcEIsc0NBQXdCLENBQUE7SUFDeEIsa0NBQW9CLENBQUE7SUFDcEIsb0NBQXNCLENBQUE7SUFDdEIsd0NBQTBCLENBQUE7QUFDOUIsQ0FBQyxFQVRXLFVBQVUsR0FBVixrQkFBVSxLQUFWLGtCQUFVLFFBU3JCO0FBMkJEOzs7O0dBSUc7QUFDSCxJQUFZLGdCQUdYO0FBSEQsV0FBWSxnQkFBZ0I7SUFDeEIsNkVBQXlELENBQUE7SUFDekQsK0VBQTJELENBQUE7QUFDL0QsQ0FBQyxFQUhXLGdCQUFnQixHQUFoQix3QkFBZ0IsS0FBaEIsd0JBQWdCLFFBRzNCIn0= | ||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBpLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjL21haW4vdHlwZXNjcmlwdC9nZW5lcmF0ZWQvb3BlbmFwaS90eXBlc2NyaXB0LWF4aW9zL2FwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsb0JBQW9CO0FBQ3BCLG9CQUFvQjtBQUNwQjs7Ozs7Ozs7OztHQVVHOzs7QUFvSEg7Ozs7R0FJRztBQUNILElBQVksMkNBRVg7QUFGRCxXQUFZLDJDQUEyQztJQUNuRCwrR0FBZ0UsQ0FBQTtBQUNwRSxDQUFDLEVBRlcsMkNBQTJDLEdBQTNDLG1EQUEyQyxLQUEzQyxtREFBMkMsUUFFdEQ7QUFFRDs7OztHQUlHO0FBQ0gsSUFBWSx3Q0FHWDtBQUhELFdBQVksd0NBQXdDO0lBQ2hELHNIQUEwRSxDQUFBO0lBQzFFLDhHQUFrRSxDQUFBO0FBQ3RFLENBQUMsRUFIVyx3Q0FBd0MsR0FBeEMsZ0RBQXdDLEtBQXhDLGdEQUF3QyxRQUduRDtBQUVEOzs7O0dBSUc7QUFDSCxJQUFZLHdCQUlYO0FBSkQsV0FBWSx3QkFBd0I7SUFDaEMsc0dBQTBFLENBQUE7SUFDMUUsOEZBQWtFLENBQUE7SUFDbEUsNEZBQWdFLENBQUE7QUFDcEUsQ0FBQyxFQUpXLHdCQUF3QixHQUF4QixnQ0FBd0IsS0FBeEIsZ0NBQXdCLFFBSW5DO0FBK0ZEOzs7O0dBSUc7QUFDSCxJQUFZLFNBRVg7QUFGRCxXQUFZLFNBQVM7SUFDakIseUVBQTRELENBQUE7QUFDaEUsQ0FBQyxFQUZXLFNBQVMsR0FBVCxpQkFBUyxLQUFULGlCQUFTLFFBRXBCO0FBNk9EOzs7O0dBSUc7QUFDSCxJQUFZLFVBU1g7QUFURCxXQUFZLFVBQVU7SUFDbEIsZ0NBQWtCLENBQUE7SUFDbEIsZ0NBQWtCLENBQUE7SUFDbEIsb0NBQXNCLENBQUE7SUFDdEIsa0NBQW9CLENBQUE7SUFDcEIsc0NBQXdCLENBQUE7SUFDeEIsa0NBQW9CLENBQUE7SUFDcEIsb0NBQXNCLENBQUE7SUFDdEIsd0NBQTBCLENBQUE7QUFDOUIsQ0FBQyxFQVRXLFVBQVUsR0FBVixrQkFBVSxLQUFWLGtCQUFVLFFBU3JCO0FBMkJEOzs7O0dBSUc7QUFDSCxJQUFZLGdCQUdYO0FBSEQsV0FBWSxnQkFBZ0I7SUFDeEIsNkVBQXlELENBQUE7SUFDekQsK0VBQTJELENBQUE7QUFDL0QsQ0FBQyxFQUhXLGdCQUFnQixHQUFoQix3QkFBZ0IsS0FBaEIsd0JBQWdCLFFBRzNCIn0= |
{ | ||
"name": "@hyperledger/cactus-core-api", | ||
"version": "0.8.0", | ||
"version": "0.8.1-vaultTransitKeychain.5ad9cac4.17+5ad9cac4", | ||
"description": "Contains type definitions/interfaces for the kernel of the codebase. Kept separate from the implementation so that it is easier to use it as a dependency.", | ||
@@ -75,11 +75,11 @@ "main": "dist/lib/main/typescript/index.js", | ||
"devDependencies": { | ||
"@types/express": "4.17.8", | ||
"socket.io": "4.0.1", | ||
"@types/express": "4.17.13", | ||
"socket.io": "4.1.3", | ||
"typescript-optional": "2.0.1" | ||
}, | ||
"dependencies": { | ||
"@hyperledger/cactus-common": "0.8.0", | ||
"@hyperledger/cactus-common": "^0.8.1-vaultTransitKeychain.5ad9cac4.17+5ad9cac4", | ||
"axios": "0.21.1" | ||
}, | ||
"gitHead": "63d34d066ad394ad5a0b50be6f54a8bc09a9226d" | ||
"gitHead": "5ad9cac40807d2fae77e8a8759abd5b9fc4fa87a" | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Network access
Supply chain riskThis module accesses the network.
Found 2 instances in 1 package
Dynamic require
Supply chain riskDynamic require can indicate the package is performing dangerous or unsafe dynamic code execution.
Found 1 instance in 1 package
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 10 instances in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
Minified code
QualityThis package contains minified code. This may be harmless in some cases where minified code is included in packaged libraries, however packages on npm should not minify code.
Found 1 instance in 1 package
Unidentified License
License(Experimental) Something that seems like a license was found, but its contents could not be matched with a known license.
Found 1 instance in 1 package
194
0
100
1
0
2
131562
51
2612
+ Added@hyperledger/cactus-common@0.8.1-vaultTransitKeychain.5ad9cac4.17(transitive)
+ Addedbuffer@6.0.3(transitive)
+ Addedelliptic@6.6.1(transitive)
+ Addednode-gyp-build@4.8.3(transitive)
+ Addedsha3@2.1.4(transitive)
- Removed@hyperledger/cactus-common@0.8.0(transitive)
- Removedbuffer@5.6.0(transitive)
- Removedelliptic@6.6.0(transitive)
- Removednode-gyp-build@4.8.2(transitive)
- Removedsha3@2.1.3(transitive)
Updated@hyperledger/cactus-common@^0.8.1-vaultTransitKeychain.5ad9cac4.17+5ad9cac4