feat(virtualq): add actions to manage waiters

This commit is contained in:
Ali BARIN
2024-12-20 13:18:25 +00:00
parent 28da91b19a
commit b0e186cfbd
17 changed files with 571 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
import verifyCredentials from './verify-credentials.js';
import isStillVerified from './is-still-verified.js';
export default {
fields: [
{
key: 'apiKey',
label: 'API Key',
type: 'string',
required: true,
readOnly: false,
value: null,
placeholder: null,
description: 'API key of the VirtualQ API service.',
clickToCopy: false,
},
],
verifyCredentials,
isStillVerified,
};