UNPKG

@mondaycom/apps-cli

Version:

A cli tool to manage apps (and monday-code projects) in monday.com

8 lines (7 loc) 656 B
import { APP_VARIABLE_MANAGEMENT_MODES } from '../consts/manage-app-variables.js'; import { AppId } from '../types/general/index.js'; import { Region } from '../types/general/region.js'; export declare const listAppSecretKeys: (appId: AppId, region?: Region) => Promise<Array<string>>; export declare const setSecret: (appId: AppId, key: string, value: string, region?: Region) => Promise<void>; export declare const deleteSecret: (appId: AppId, key: string, region?: Region) => Promise<boolean>; export declare const handleSecretRequest: (appId: AppId, mode: APP_VARIABLE_MANAGEMENT_MODES, key?: string, value?: string, region?: Region) => Promise<void>;