push neon reactor

This commit is contained in:
2026-07-12 15:11:38 +02:00
parent 172e72dbcd
commit aeab5f7820
9597 changed files with 2407488 additions and 0 deletions
@@ -0,0 +1,179 @@
/*!
* Copyright (C) Microsoft Corporation. All rights reserved.
*/
export declare const HelpStrings: {
Global: {
ProgramDescription: string;
Cloud: string;
EnvironmentId: string;
};
Verbs: {
'Add-data-source': {
Description: string;
Options: {
ApiId: string;
ConnectionId: string;
ConnectionRef: string;
ResourceName: string;
Dataset: string;
OrgUrl: string;
SqlStoredProcedure: string;
SolutionId: string;
};
Examples: string[];
};
'Delete-data-source': {
Description: string;
Options: {
ApiId: string;
DataSourceName: string;
SqlStoredProcedure: string;
Force: string;
};
Examples: string[];
};
'Refresh-data-source': {
Description: string;
Options: {
DataSourceName: string;
};
Examples: string[];
};
'Add-dataverse-api': {
Description: string;
Options: {
ApiName: string;
};
Examples: string[];
};
'Create-connection': {
Description: string;
Options: {
ApiId: string;
DisplayName: string;
};
Examples: string[];
};
'Find-dataverse-api': {
Description: string;
Options: {
SearchTerm: string;
};
Examples: string[];
};
Init: {
Description: string;
Options: {
EnvironmentId: string;
Cloud: string;
DisplayName: string;
Description: string;
BuildPath: string;
FileEntryPoint: string;
AppUrl: string;
LogoPath: string;
};
Examples: string[];
};
'List-codeapps': {
Description: string;
Examples: string[];
};
'List-connection-references': {
Description: string;
Options: {
SolutionId: string;
};
Examples: string[];
};
'List-connections': {
Description: string;
Options: {
Search: string;
};
Examples: string[];
};
'List-datasets': {
Description: string;
Options: {
ApiId: string;
ConnectionId: string;
};
Examples: string[];
};
'List-environment-variables': {
Description: string;
Examples: string[];
};
'List-flows': {
Description: string;
Options: {
Search: string;
};
Examples: string[];
};
'Add-flow': {
Description: string;
Options: {
FlowId: string;
};
Examples: string[];
};
'Remove-flow': {
Description: string;
Options: {
FlowDataSourceName: string;
FlowId: string;
};
Examples: string[];
};
'List-sqlStoredProcedures': {
Description: string;
Options: {
ConnectionId: string;
Dataset: string;
};
Examples: string[];
};
'List-tables': {
Description: string;
Options: {
ApiId: string;
ConnectionId: string;
Dataset: string;
};
Examples: string[];
};
Logout: {
Description: string;
Examples: string[];
};
Push: {
Description: string;
Options: {
SolutionName: string;
};
Examples: string[];
};
Run: {
Description: string;
Options: {
Port: string;
LocalAppUrl: string;
};
Examples: string[];
};
Telemetry: {
Description: string;
Options: {
Enable: string;
Disable: string;
ShowSettings: string;
ConsoleOnly: string;
OutputToConsole: string;
};
Examples: string[];
};
};
};
//# sourceMappingURL=HelpStrings.d.ts.map
@@ -0,0 +1 @@
{"version":3,"file":"HelpStrings.d.ts","sourceRoot":"","sources":["../../src/Constants/HelpStrings.ts"],"names":[],"mappings":"AAAA;;GAEG;AAYH,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyOG,CAAC"}
@@ -0,0 +1,235 @@
/*!
* Copyright (C) Microsoft Corporation. All rights reserved.
*/
export const HelpStrings = {
Global: {
ProgramDescription: 'Power Apps CLI for managing Power Apps code apps.',
Cloud: 'Cloud instance to use (e.g., prod, test, etc.).',
EnvironmentId: 'Environment ID to connect to.',
},
Verbs: {
'Add-data-source': {
Description: 'Add a data source to the current Power Apps code app.',
Options: {
ApiId: 'API identifier.',
ConnectionId: 'Connection identifier.',
ConnectionRef: 'Connection reference name.',
ResourceName: 'Table or resource name.',
Dataset: 'Dataset identifier.',
OrgUrl: 'Organization URL.',
SqlStoredProcedure: 'SQL stored procedure name.',
SolutionId: 'Solution identifier.',
},
Examples: [
'npx power-apps add-data-source --api-id dataverse --resource-name contact',
'npx power-apps add-data-source --api-id shared_sql --connection-id <id> --dataset <db> --resource-name <table>',
],
},
'Delete-data-source': {
Description: 'Remove a data source from the Power Apps code app.',
Options: {
ApiId: 'API identifier associated with the data source.',
DataSourceName: 'Data source or table name to remove.',
SqlStoredProcedure: 'SQL stored procedure name to remove.',
Force: 'Skip confirmation prompt.',
},
Examples: [
'npx power-apps delete-data-source --api-id dataverse --data-source-name contact',
'npx power-apps delete-data-source --api-id shared_sql --data-source-name <table>',
'npx power-apps delete-data-source --api-id dataverse --data-source-name contact --force',
],
},
'Refresh-data-source': {
Description: 'Refresh one or all data sources in the current Power Apps code app.',
Options: {
DataSourceName: 'Name of the specific data source to refresh. Omit to refresh all.',
},
Examples: [
'npx power-apps refresh-data-source',
'npx power-apps refresh-data-source --data-source-name contact',
'npx power-apps refresh-data-source -n contact',
],
},
'Add-dataverse-api': {
Description: 'Add a Dataverse API (action or function) to the current Power Apps code app.',
Options: {
ApiName: 'Dataverse API name to add.',
},
Examples: [
'npx power-apps add-dataverse-api --api-name msdyn_CreateOrder',
'npx power-apps add-dataverse-api --api-name WinOpportunity',
],
},
'Create-connection': {
Description: 'Create a connection for a connector. Uses silent SSO for SSO-only connectors; otherwise opens the browser to complete sign-in.',
Options: {
ApiId: 'Connector API identifier (e.g. shared_sql, dataverse, office365).',
DisplayName: 'Optional display name for the new connection.',
},
Examples: [
'npx power-apps create-connection --api-id shared_office365',
'npx power-apps create-connection --api-id shared_sql --display-name "Prod SQL"',
'npx power-apps create-connection --api-id shared_office365 --json',
],
},
'Find-dataverse-api': {
Description: 'Search Dataverse actions and functions in the environment by name.',
Options: {
SearchTerm: 'Search term to filter Dataverse operations by name.',
},
Examples: [
'npx power-apps find-dataverse-api --search "account"',
'npx power-apps find-dataverse-api --search "account" --json',
],
},
Init: {
Description: 'Initialize a new Power Apps code app.',
Options: {
EnvironmentId: 'Environment ID to connect to.',
Cloud: 'Cloud instance to use (e.g., prod, test, etc.).',
DisplayName: 'Display name for the app.',
Description: 'App description.',
BuildPath: 'Build output path (default: ./dist).',
FileEntryPoint: 'Entry point file for the app.',
AppUrl: 'Local URL where the app is hosted.',
LogoPath: 'Path to the app logo file.',
},
Examples: [
'npx power-apps init --environment-id <id> --display-name "My App"',
'npx power-apps init --cloud test --environment-id <id> --display-name "My App" --build-path ./build',
],
},
'List-codeapps': {
Description: 'List all code apps in the environment.',
Examples: ['npx power-apps list-codeapps', 'npx power-apps list-codeapps --json'],
},
'List-connection-references': {
Description: 'List all connection references in the environment.',
Options: {
SolutionId: 'Solution identifier to filter by.',
},
Examples: [
'npx power-apps list-connection-references',
'npx power-apps list-connection-references --json',
],
},
'List-connections': {
Description: 'List all connections in the active environment.',
Options: {
Search: 'Optional search term to filter connections by display name or connector ID.',
},
Examples: [
'npx power-apps list-connections',
'npx power-apps list-connections --search sharepoint',
'npx power-apps list-connections --json',
],
},
'List-datasets': {
Description: 'List all datasets for a connection.',
Options: {
ApiId: 'API identifier.',
ConnectionId: 'Connection identifier.',
},
Examples: [
'npx power-apps list-datasets --api-id shared_sql --connection-id <id>',
'npx power-apps list-datasets --api-id shared_sql --connection-id <id> --json',
],
},
'List-environment-variables': {
Description: 'List all environment variables in the environment.',
Examples: [
'npx power-apps list-environment-variables',
'npx power-apps list-environment-variables --json',
],
},
'List-flows': {
Description: 'List all solution cloud flows that are invokable from Power Apps.',
Options: {
Search: 'Filter flows by name (case-insensitive substring match)',
},
Examples: [
'npx power-apps list-flows',
'npx power-apps list-flows --search "approval" --json',
],
},
'Add-flow': {
Description: 'Add a cloud flow to the current Power Apps code app by flow ID.',
Options: {
FlowId: 'The unique identifier (GUID) of the flow to add.',
},
Examples: ['npx power-apps add-flow --flow-id 00000000-0000-0000-0000-000000000000'],
},
'Remove-flow': {
Description: 'Remove a cloud flow from the current Power Apps code app.',
Options: {
FlowDataSourceName: 'The flow data source name to remove (as it appears in power.config). Provide either this or --flow-id.',
FlowId: 'The flow resource ID (GUID) to remove — same ID used with add-flow. Provide either this or --flow-name.',
},
Examples: [
'npx power-apps remove-flow --flow-name myFlow',
'npx power-apps remove-flow --flow-id 00000000-0000-0000-0000-000000000000',
],
},
'List-sqlStoredProcedures': {
Description: 'List all SQL stored procedures for a dataset.',
Options: {
ConnectionId: 'Connection identifier.',
Dataset: 'Dataset name.',
},
Examples: [
'npx power-apps list-sqlStoredProcedures --connection-id <id> --dataset <db>',
'npx power-apps list-sqlStoredProcedures --connection-id <id> --dataset <db> --json',
],
},
'List-tables': {
Description: 'List all tables for a dataset.',
Options: {
ApiId: 'API identifier.',
ConnectionId: 'Connection identifier.',
Dataset: 'Dataset name.',
},
Examples: [
'npx power-apps list-tables --api-id shared_sql --connection-id <id> --dataset <db>',
'npx power-apps list-tables --api-id shared_sql --connection-id <id> --dataset <db> --json',
],
},
Logout: {
Description: 'Log out the current user.',
Examples: ['npx power-apps logout'],
},
Push: {
Description: 'Push the code app to the Power Apps environment.',
Options: {
SolutionName: 'Solution name to add the app to.',
},
Examples: ['npx power-apps push', 'npx power-apps push --solution-name "MySolution"'],
},
Run: {
Description: 'Run the code app locally.',
Options: {
Port: 'Port number for the local server.',
LocalAppUrl: 'Local URL where the app is hosted.',
},
Examples: [
'npx power-apps run',
'npx power-apps run --port 8080 --local-app-url http://localhost:3000',
],
},
Telemetry: {
Description: 'Manage telemetry settings.',
Options: {
Enable: 'Enable telemetry.',
Disable: 'Disable telemetry.',
ShowSettings: 'Show current telemetry settings.',
ConsoleOnly: 'Output telemetry to console only.',
OutputToConsole: 'Output telemetry to console in addition to sending it.',
},
Examples: [
'npx power-apps telemetry --show-settings',
'npx power-apps telemetry --enable',
'npx power-apps telemetry --show-settings --json',
],
},
},
};
//# sourceMappingURL=HelpStrings.js.map
@@ -0,0 +1 @@
{"version":3,"file":"HelpStrings.js","sourceRoot":"","sources":["../../src/Constants/HelpStrings.ts"],"names":[],"mappings":"AAAA;;GAEG;AAYH,MAAM,CAAC,MAAM,WAAW,GAAG;IACzB,MAAM,EAAE;QACN,kBAAkB,EAAE,mDAAmD;QACvE,KAAK,EAAE,iDAAiD;QACxD,aAAa,EAAE,+BAA+B;KAC/C;IACD,KAAK,EAAE;QACL,iBAAiB,EAAE;YACjB,WAAW,EAAE,uDAAuD;YACpE,OAAO,EAAE;gBACP,KAAK,EAAE,iBAAiB;gBACxB,YAAY,EAAE,wBAAwB;gBACtC,aAAa,EAAE,4BAA4B;gBAC3C,YAAY,EAAE,yBAAyB;gBACvC,OAAO,EAAE,qBAAqB;gBAC9B,MAAM,EAAE,mBAAmB;gBAC3B,kBAAkB,EAAE,4BAA4B;gBAChD,UAAU,EAAE,sBAAsB;aACnC;YACD,QAAQ,EAAE;gBACR,2EAA2E;gBAC3E,gHAAgH;aACjH;SACF;QACD,oBAAoB,EAAE;YACpB,WAAW,EAAE,oDAAoD;YACjE,OAAO,EAAE;gBACP,KAAK,EAAE,iDAAiD;gBACxD,cAAc,EAAE,sCAAsC;gBACtD,kBAAkB,EAAE,sCAAsC;gBAC1D,KAAK,EAAE,2BAA2B;aACnC;YACD,QAAQ,EAAE;gBACR,iFAAiF;gBACjF,kFAAkF;gBAClF,yFAAyF;aAC1F;SACF;QACD,qBAAqB,EAAE;YACrB,WAAW,EAAE,qEAAqE;YAClF,OAAO,EAAE;gBACP,cAAc,EAAE,mEAAmE;aACpF;YACD,QAAQ,EAAE;gBACR,oCAAoC;gBACpC,+DAA+D;gBAC/D,+CAA+C;aAChD;SACF;QACD,mBAAmB,EAAE;YACnB,WAAW,EAAE,8EAA8E;YAC3F,OAAO,EAAE;gBACP,OAAO,EAAE,4BAA4B;aACtC;YACD,QAAQ,EAAE;gBACR,+DAA+D;gBAC/D,4DAA4D;aAC7D;SACF;QACD,mBAAmB,EAAE;YACnB,WAAW,EACT,gIAAgI;YAClI,OAAO,EAAE;gBACP,KAAK,EAAE,mEAAmE;gBAC1E,WAAW,EAAE,+CAA+C;aAC7D;YACD,QAAQ,EAAE;gBACR,4DAA4D;gBAC5D,gFAAgF;gBAChF,mEAAmE;aACpE;SACF;QACD,oBAAoB,EAAE;YACpB,WAAW,EAAE,oEAAoE;YACjF,OAAO,EAAE;gBACP,UAAU,EAAE,qDAAqD;aAClE;YACD,QAAQ,EAAE;gBACR,sDAAsD;gBACtD,6DAA6D;aAC9D;SACF;QACD,IAAI,EAAE;YACJ,WAAW,EAAE,uCAAuC;YACpD,OAAO,EAAE;gBACP,aAAa,EAAE,+BAA+B;gBAC9C,KAAK,EAAE,iDAAiD;gBACxD,WAAW,EAAE,2BAA2B;gBACxC,WAAW,EAAE,kBAAkB;gBAC/B,SAAS,EAAE,sCAAsC;gBACjD,cAAc,EAAE,+BAA+B;gBAC/C,MAAM,EAAE,oCAAoC;gBAC5C,QAAQ,EAAE,4BAA4B;aACvC;YACD,QAAQ,EAAE;gBACR,mEAAmE;gBACnE,qGAAqG;aACtG;SACF;QACD,eAAe,EAAE;YACf,WAAW,EAAE,wCAAwC;YACrD,QAAQ,EAAE,CAAC,8BAA8B,EAAE,qCAAqC,CAAC;SAClF;QACD,4BAA4B,EAAE;YAC5B,WAAW,EAAE,oDAAoD;YACjE,OAAO,EAAE;gBACP,UAAU,EAAE,mCAAmC;aAChD;YACD,QAAQ,EAAE;gBACR,2CAA2C;gBAC3C,kDAAkD;aACnD;SACF;QACD,kBAAkB,EAAE;YAClB,WAAW,EAAE,iDAAiD;YAC9D,OAAO,EAAE;gBACP,MAAM,EAAE,6EAA6E;aACtF;YACD,QAAQ,EAAE;gBACR,iCAAiC;gBACjC,qDAAqD;gBACrD,wCAAwC;aACzC;SACF;QACD,eAAe,EAAE;YACf,WAAW,EAAE,qCAAqC;YAClD,OAAO,EAAE;gBACP,KAAK,EAAE,iBAAiB;gBACxB,YAAY,EAAE,wBAAwB;aACvC;YACD,QAAQ,EAAE;gBACR,uEAAuE;gBACvE,8EAA8E;aAC/E;SACF;QACD,4BAA4B,EAAE;YAC5B,WAAW,EAAE,oDAAoD;YACjE,QAAQ,EAAE;gBACR,2CAA2C;gBAC3C,kDAAkD;aACnD;SACF;QACD,YAAY,EAAE;YACZ,WAAW,EAAE,mEAAmE;YAChF,OAAO,EAAE;gBACP,MAAM,EAAE,yDAAyD;aAClE;YACD,QAAQ,EAAE;gBACR,2BAA2B;gBAC3B,sDAAsD;aACvD;SACF;QACD,UAAU,EAAE;YACV,WAAW,EAAE,iEAAiE;YAC9E,OAAO,EAAE;gBACP,MAAM,EAAE,kDAAkD;aAC3D;YACD,QAAQ,EAAE,CAAC,wEAAwE,CAAC;SACrF;QACD,aAAa,EAAE;YACb,WAAW,EAAE,2DAA2D;YACxE,OAAO,EAAE;gBACP,kBAAkB,EAChB,wGAAwG;gBAC1G,MAAM,EACJ,yGAAyG;aAC5G;YACD,QAAQ,EAAE;gBACR,+CAA+C;gBAC/C,2EAA2E;aAC5E;SACF;QACD,0BAA0B,EAAE;YAC1B,WAAW,EAAE,+CAA+C;YAC5D,OAAO,EAAE;gBACP,YAAY,EAAE,wBAAwB;gBACtC,OAAO,EAAE,eAAe;aACzB;YACD,QAAQ,EAAE;gBACR,6EAA6E;gBAC7E,oFAAoF;aACrF;SACF;QACD,aAAa,EAAE;YACb,WAAW,EAAE,gCAAgC;YAC7C,OAAO,EAAE;gBACP,KAAK,EAAE,iBAAiB;gBACxB,YAAY,EAAE,wBAAwB;gBACtC,OAAO,EAAE,eAAe;aACzB;YACD,QAAQ,EAAE;gBACR,oFAAoF;gBACpF,2FAA2F;aAC5F;SACF;QACD,MAAM,EAAE;YACN,WAAW,EAAE,2BAA2B;YACxC,QAAQ,EAAE,CAAC,uBAAuB,CAAC;SACpC;QACD,IAAI,EAAE;YACJ,WAAW,EAAE,kDAAkD;YAC/D,OAAO,EAAE;gBACP,YAAY,EAAE,kCAAkC;aACjD;YACD,QAAQ,EAAE,CAAC,qBAAqB,EAAE,kDAAkD,CAAC;SACtF;QACD,GAAG,EAAE;YACH,WAAW,EAAE,2BAA2B;YACxC,OAAO,EAAE;gBACP,IAAI,EAAE,mCAAmC;gBACzC,WAAW,EAAE,oCAAoC;aAClD;YACD,QAAQ,EAAE;gBACR,oBAAoB;gBACpB,sEAAsE;aACvE;SACF;QACD,SAAS,EAAE;YACT,WAAW,EAAE,4BAA4B;YACzC,OAAO,EAAE;gBACP,MAAM,EAAE,mBAAmB;gBAC3B,OAAO,EAAE,oBAAoB;gBAC7B,YAAY,EAAE,kCAAkC;gBAChD,WAAW,EAAE,mCAAmC;gBAChD,eAAe,EAAE,wDAAwD;aAC1E;YACD,QAAQ,EAAE;gBACR,0CAA0C;gBAC1C,mCAAmC;gBACnC,iDAAiD;aAClD;SACF;KACF;CACwB,CAAC"}
@@ -0,0 +1,85 @@
/*!
* Copyright (C) Microsoft Corporation. All rights reserved.
*/
/**
* Metadata for each CLI verb used to generate help output
*/
export interface VerbMetadata {
description: string;
}
/**
* Central registry of all CLI verbs with their descriptions.
* This array is used to generate the verb table in --help output.
*
* IMPORTANT: When adding a new verb, you must:
* 1. Add to Verb type in Cli.types.ts
* 2. Add case to executeVerb() switch in Cli.ts
* 3. Add entry to this VERB_REGISTRY array
* 4. Add entry to HelpStrings.Verbs in HelpStrings.ts
*/
export declare const VERB_HELP_REGISTRY: {
init: {
description: string;
};
push: {
description: string;
};
run: {
description: string;
};
'add-data-source': {
description: string;
};
'add-dataverse-api': {
description: string;
};
'create-connection': {
description: string;
};
'find-dataverse-api': {
description: string;
};
'list-codeapps': {
description: string;
};
'list-datasets': {
description: string;
};
'list-tables': {
description: string;
};
'list-sqlStoredProcedures': {
description: string;
};
'delete-data-source': {
description: string;
};
'list-environment-variables': {
description: string;
};
'list-connection-references': {
description: string;
};
'list-connections': {
description: string;
};
'list-flows': {
description: string;
};
'add-flow': {
description: string;
};
'remove-flow': {
description: string;
};
'refresh-data-source': {
description: string;
};
logout: {
description: string;
};
telemetry: {
description: string;
};
};
//# sourceMappingURL=VerbRegistry.d.ts.map
@@ -0,0 +1 @@
{"version":3,"file":"VerbRegistry.d.ts","sourceRoot":"","sources":["../../src/Constants/VerbRegistry.ts"],"names":[],"mappings":"AAAA;;GAEG;AAKH;;GAEG;AACH,MAAM,WAAW,YAAY;IAC3B,WAAW,EAAE,MAAM,CAAC;CACrB;AAED;;;;;;;;;GASG;AACH,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgCU,CAAC"}
@@ -0,0 +1,48 @@
/*!
* Copyright (C) Microsoft Corporation. All rights reserved.
*/
import { HelpStrings } from './HelpStrings.js';
/**
* Central registry of all CLI verbs with their descriptions.
* This array is used to generate the verb table in --help output.
*
* IMPORTANT: When adding a new verb, you must:
* 1. Add to Verb type in Cli.types.ts
* 2. Add case to executeVerb() switch in Cli.ts
* 3. Add entry to this VERB_REGISTRY array
* 4. Add entry to HelpStrings.Verbs in HelpStrings.ts
*/
export const VERB_HELP_REGISTRY = {
init: { description: HelpStrings.Verbs.Init.Description },
push: { description: HelpStrings.Verbs.Push.Description },
run: { description: HelpStrings.Verbs.Run.Description },
'add-data-source': { description: HelpStrings.Verbs['Add-data-source'].Description },
'add-dataverse-api': {
description: HelpStrings.Verbs['Add-dataverse-api'].Description,
},
'create-connection': { description: HelpStrings.Verbs['Create-connection'].Description },
'find-dataverse-api': {
description: HelpStrings.Verbs['Find-dataverse-api'].Description,
},
'list-codeapps': { description: HelpStrings.Verbs['List-codeapps'].Description },
'list-datasets': { description: HelpStrings.Verbs['List-datasets'].Description },
'list-tables': { description: HelpStrings.Verbs['List-tables'].Description },
'list-sqlStoredProcedures': {
description: HelpStrings.Verbs['List-sqlStoredProcedures'].Description,
},
'delete-data-source': { description: HelpStrings.Verbs['Delete-data-source'].Description },
'list-environment-variables': {
description: HelpStrings.Verbs['List-environment-variables'].Description,
},
'list-connection-references': {
description: HelpStrings.Verbs['List-connection-references'].Description,
},
'list-connections': { description: HelpStrings.Verbs['List-connections'].Description },
'list-flows': { description: HelpStrings.Verbs['List-flows'].Description },
'add-flow': { description: HelpStrings.Verbs['Add-flow'].Description },
'remove-flow': { description: HelpStrings.Verbs['Remove-flow'].Description },
'refresh-data-source': { description: HelpStrings.Verbs['Refresh-data-source'].Description },
logout: { description: HelpStrings.Verbs.Logout.Description },
telemetry: { description: HelpStrings.Verbs.Telemetry.Description },
};
//# sourceMappingURL=VerbRegistry.js.map
@@ -0,0 +1 @@
{"version":3,"file":"VerbRegistry.js","sourceRoot":"","sources":["../../src/Constants/VerbRegistry.ts"],"names":[],"mappings":"AAAA;;GAEG;AAGH,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAS5C;;;;;;;;;GASG;AACH,MAAM,CAAC,MAAM,kBAAkB,GAAG;IAChC,IAAI,EAAE,EAAE,WAAW,EAAE,WAAW,CAAC,KAAK,CAAC,IAAI,CAAC,WAAW,EAAE;IACzD,IAAI,EAAE,EAAE,WAAW,EAAE,WAAW,CAAC,KAAK,CAAC,IAAI,CAAC,WAAW,EAAE;IACzD,GAAG,EAAE,EAAE,WAAW,EAAE,WAAW,CAAC,KAAK,CAAC,GAAG,CAAC,WAAW,EAAE;IACvD,iBAAiB,EAAE,EAAE,WAAW,EAAE,WAAW,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,WAAW,EAAE;IACpF,mBAAmB,EAAE;QACnB,WAAW,EAAE,WAAW,CAAC,KAAK,CAAC,mBAAmB,CAAC,CAAC,WAAW;KAChE;IACD,mBAAmB,EAAE,EAAE,WAAW,EAAE,WAAW,CAAC,KAAK,CAAC,mBAAmB,CAAC,CAAC,WAAW,EAAE;IACxF,oBAAoB,EAAE;QACpB,WAAW,EAAE,WAAW,CAAC,KAAK,CAAC,oBAAoB,CAAC,CAAC,WAAW;KACjE;IACD,eAAe,EAAE,EAAE,WAAW,EAAE,WAAW,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,WAAW,EAAE;IAChF,eAAe,EAAE,EAAE,WAAW,EAAE,WAAW,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,WAAW,EAAE;IAChF,aAAa,EAAE,EAAE,WAAW,EAAE,WAAW,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,WAAW,EAAE;IAC5E,0BAA0B,EAAE;QAC1B,WAAW,EAAE,WAAW,CAAC,KAAK,CAAC,0BAA0B,CAAC,CAAC,WAAW;KACvE;IACD,oBAAoB,EAAE,EAAE,WAAW,EAAE,WAAW,CAAC,KAAK,CAAC,oBAAoB,CAAC,CAAC,WAAW,EAAE;IAC1F,4BAA4B,EAAE;QAC5B,WAAW,EAAE,WAAW,CAAC,KAAK,CAAC,4BAA4B,CAAC,CAAC,WAAW;KACzE;IACD,4BAA4B,EAAE;QAC5B,WAAW,EAAE,WAAW,CAAC,KAAK,CAAC,4BAA4B,CAAC,CAAC,WAAW;KACzE;IACD,kBAAkB,EAAE,EAAE,WAAW,EAAE,WAAW,CAAC,KAAK,CAAC,kBAAkB,CAAC,CAAC,WAAW,EAAE;IACtF,YAAY,EAAE,EAAE,WAAW,EAAE,WAAW,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,WAAW,EAAE;IAC1E,UAAU,EAAE,EAAE,WAAW,EAAE,WAAW,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,WAAW,EAAE;IACtE,aAAa,EAAE,EAAE,WAAW,EAAE,WAAW,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,WAAW,EAAE;IAC5E,qBAAqB,EAAE,EAAE,WAAW,EAAE,WAAW,CAAC,KAAK,CAAC,qBAAqB,CAAC,CAAC,WAAW,EAAE;IAC5F,MAAM,EAAE,EAAE,WAAW,EAAE,WAAW,CAAC,KAAK,CAAC,MAAM,CAAC,WAAW,EAAE;IAC7D,SAAS,EAAE,EAAE,WAAW,EAAE,WAAW,CAAC,KAAK,CAAC,SAAS,CAAC,WAAW,EAAE;CAC5B,CAAC"}