├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .gitignore ├── .npmrc ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── NOTES.md ├── README.md ├── SECURITY.md ├── package.json ├── package.nls.json ├── resources ├── azIntegrationAccount.svg ├── azIntegrationAccountAgreement.svg ├── azIntegrationAccountMap.svg ├── azIntegrationAccountPartner.svg ├── azIntegrationAccountSchema.svg ├── azLogicApps.png ├── azLogicApps.svg ├── azLogicAppsWorkflow.svg ├── azLogicAppsWorkflowVersion.svg ├── azure.svg ├── dark │ ├── AddBuildDefinitionToProject.svg │ ├── BulletList.svg │ ├── CreateLogicApp.svg │ ├── CreateProject.svg │ ├── Edit.svg │ ├── Filter.svg │ ├── Refresh.svg │ ├── Run.svg │ └── eye.svg ├── light │ ├── AddBuildDefinitionToProject.svg │ ├── BulletList.svg │ ├── CreateLogicApp.svg │ ├── CreateProject.svg │ ├── Edit.svg │ ├── Filter.svg │ ├── Refresh.svg │ ├── Run.svg │ └── eye.svg ├── open-in-designer.gif ├── open-in-monitoring-view.gif ├── recurrence-trigger.gif ├── run-after.gif └── status │ ├── Aborted.svg │ ├── Cancelled.svg │ ├── Failed.svg │ ├── Running.svg │ ├── Skipped.svg │ ├── Succeeded.svg │ └── Unknown.svg ├── snippets └── logicapps.snippets.json ├── src ├── commands │ ├── integration-account │ │ ├── IntegrationAccountAgreementCommands.ts │ │ ├── integrationAccountCommands.ts │ │ ├── integrationAccountMapCommands.ts │ │ ├── integrationAccountPartnerCommands.ts │ │ └── integrationAccountSchemaCommands.ts │ └── logic-app │ │ ├── addBuildDefinitionToProject.ts │ │ ├── addLogicAppToProject.ts │ │ ├── createLogicApp.ts │ │ ├── createProject.ts │ │ ├── deleteLogicApp.ts │ │ ├── disableLogicApp.ts │ │ ├── enableLogicApp.ts │ │ ├── openInDesigner.ts │ │ ├── openInEditor.ts │ │ ├── openInPortal.ts │ │ ├── openRunActionInEditor.ts │ │ ├── openRunInEditor.ts │ │ ├── openRunInMonitoringView.ts │ │ ├── openTriggerInEditor.ts │ │ ├── openVersionInDesigner.ts │ │ ├── openVersionInEditor.ts │ │ ├── promoteVersion.ts │ │ ├── resubmitRun.ts │ │ └── runTrigger.ts ├── constants.ts ├── editors │ ├── integration-account │ │ ├── IntegrationAccountMapEditor.ts │ │ ├── IntegrationAccountSchemaEditor.ts │ │ ├── integrationAccountAgreementEditor.ts │ │ └── integrationAccountPartnerEditor.ts │ └── logic-app │ │ └── LogicAppEditor.ts ├── extension.ts ├── extensionVariables.ts ├── localize.ts ├── test │ ├── index.js │ ├── index.test.js │ └── runTest.js ├── tree │ ├── integration-account │ │ ├── IntegrationAccountAgreementTreeItem.ts │ │ ├── IntegrationAccountAgreementsTreeItem.ts │ │ ├── IntegrationAccountMapTreeItem.ts │ │ ├── IntegrationAccountMapsTreeItem.ts │ │ ├── IntegrationAccountPartnerTreeItem.ts │ │ ├── IntegrationAccountPartnersTreeItem.ts │ │ ├── IntegrationAccountSchemaTreeItem.ts │ │ ├── IntegrationAccountSchemasTreeItem.ts │ │ ├── IntegrationAccountTreeItem.ts │ │ └── IntegrationAccountsProvider.ts │ └── logic-app │ │ ├── LogicAppCurrentVersionTreeItem.ts │ │ ├── LogicAppRunActionTreeItem.ts │ │ ├── LogicAppRunActionsTreeItem.ts │ │ ├── LogicAppRunTreeItem.ts │ │ ├── LogicAppRunsTreeItem.ts │ │ ├── LogicAppTreeItem.ts │ │ ├── LogicAppTriggerTreeItem.ts │ │ ├── LogicAppTriggersTreeItem.ts │ │ ├── LogicAppVersionTreeItem.ts │ │ ├── LogicAppVersionsTreeItem.ts │ │ └── LogicAppsProvider.ts ├── utils │ ├── authorizationUtils.ts │ ├── commandUtils.ts │ ├── dialogResponses.ts │ ├── integration-account │ │ ├── agreementUtils.ts │ │ ├── default-content │ │ │ └── agreementsDefaultContent.ts │ │ ├── integrationAccountUtils.ts │ │ ├── mapUtils.ts │ │ ├── partnerUtils.ts │ │ └── schemaUtils.ts │ ├── locationUtils.ts │ ├── logic-app │ │ ├── callbackUtils.ts │ │ ├── connectionReferenceUtils.ts │ │ ├── designerUtils.ts │ │ ├── monitoringViewUtils.ts │ │ └── templateUtils.ts │ ├── nodeUtils.ts │ ├── readOnlyUtils.ts │ ├── stringUtils.ts │ └── workspaceUtils.ts └── wizard │ ├── integration-account │ ├── agreements │ │ ├── agreementCreateStep.ts │ │ ├── agreementNameStep.ts │ │ ├── agreementTypeStep.ts │ │ ├── createAgreementWizard.ts │ │ ├── guestIdentityStep.ts │ │ ├── guestPartnerStep.ts │ │ ├── hostIdentityStep.ts │ │ ├── hostPartnerStep.ts │ │ ├── identityStep.ts │ │ └── partnerStep.ts │ ├── createIntegrationAccountWizard.ts │ ├── integrationAccountCreateStep.ts │ ├── integrationAccountNameStep.ts │ ├── integrationAccountSkuStep.ts │ ├── maps │ │ ├── createMapWizard.ts │ │ ├── mapCreateStep.ts │ │ ├── mapNameStep.ts │ │ └── mapTypeStep.ts │ ├── partners │ │ ├── createPartnerWizard.ts │ │ ├── partnerCreateStep.ts │ │ ├── partnerNameStep.ts │ │ ├── partnerQualifierStep.ts │ │ └── partnerValueStep.ts │ └── schemas │ │ ├── createSchemaWizard.ts │ │ ├── schemaCreateStep.ts │ │ └── schemaNameStep.ts │ └── logic-app │ ├── BuildDefinitionCreateStep.ts │ ├── BuildDefinitionFilenameStep.ts │ ├── CsmFileCreateStep.ts │ ├── CsmFilenameStep.ts │ ├── CsmParametersFileCreateStep.ts │ ├── CsmParametersFilenameStep.ts │ ├── GenerateBuildDefinitionStep.ts │ ├── LocationListStep.ts │ ├── LogicAppCreateStep.ts │ ├── LogicAppNameStep.ts │ ├── ResourceGroupNameStep.ts │ ├── ServiceConnectionNameStep.ts │ ├── WorkspaceFolderSelectionStep.ts │ ├── createBuildDefinition.ts │ └── createLogicApp.ts ├── tsconfig.json └── webpack.config.js /.eslintignore: -------------------------------------------------------------------------------- 1 | .vscode-test 2 | node_modules 3 | out 4 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/.npmrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/NOTES.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/SECURITY.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/package.json -------------------------------------------------------------------------------- /package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/package.nls.json -------------------------------------------------------------------------------- /resources/azIntegrationAccount.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/resources/azIntegrationAccount.svg -------------------------------------------------------------------------------- /resources/azIntegrationAccountAgreement.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/resources/azIntegrationAccountAgreement.svg -------------------------------------------------------------------------------- /resources/azIntegrationAccountMap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/resources/azIntegrationAccountMap.svg -------------------------------------------------------------------------------- /resources/azIntegrationAccountPartner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/resources/azIntegrationAccountPartner.svg -------------------------------------------------------------------------------- /resources/azIntegrationAccountSchema.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/resources/azIntegrationAccountSchema.svg -------------------------------------------------------------------------------- /resources/azLogicApps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/resources/azLogicApps.png -------------------------------------------------------------------------------- /resources/azLogicApps.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/resources/azLogicApps.svg -------------------------------------------------------------------------------- /resources/azLogicAppsWorkflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/resources/azLogicAppsWorkflow.svg -------------------------------------------------------------------------------- /resources/azLogicAppsWorkflowVersion.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/resources/azLogicAppsWorkflowVersion.svg -------------------------------------------------------------------------------- /resources/azure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/resources/azure.svg -------------------------------------------------------------------------------- /resources/dark/AddBuildDefinitionToProject.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/resources/dark/AddBuildDefinitionToProject.svg -------------------------------------------------------------------------------- /resources/dark/BulletList.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/resources/dark/BulletList.svg -------------------------------------------------------------------------------- /resources/dark/CreateLogicApp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/resources/dark/CreateLogicApp.svg -------------------------------------------------------------------------------- /resources/dark/CreateProject.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/resources/dark/CreateProject.svg -------------------------------------------------------------------------------- /resources/dark/Edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/resources/dark/Edit.svg -------------------------------------------------------------------------------- /resources/dark/Filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/resources/dark/Filter.svg -------------------------------------------------------------------------------- /resources/dark/Refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/resources/dark/Refresh.svg -------------------------------------------------------------------------------- /resources/dark/Run.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/resources/dark/Run.svg -------------------------------------------------------------------------------- /resources/dark/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/resources/dark/eye.svg -------------------------------------------------------------------------------- /resources/light/AddBuildDefinitionToProject.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/resources/light/AddBuildDefinitionToProject.svg -------------------------------------------------------------------------------- /resources/light/BulletList.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/resources/light/BulletList.svg -------------------------------------------------------------------------------- /resources/light/CreateLogicApp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/resources/light/CreateLogicApp.svg -------------------------------------------------------------------------------- /resources/light/CreateProject.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/resources/light/CreateProject.svg -------------------------------------------------------------------------------- /resources/light/Edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/resources/light/Edit.svg -------------------------------------------------------------------------------- /resources/light/Filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/resources/light/Filter.svg -------------------------------------------------------------------------------- /resources/light/Refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/resources/light/Refresh.svg -------------------------------------------------------------------------------- /resources/light/Run.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/resources/light/Run.svg -------------------------------------------------------------------------------- /resources/light/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/resources/light/eye.svg -------------------------------------------------------------------------------- /resources/open-in-designer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/resources/open-in-designer.gif -------------------------------------------------------------------------------- /resources/open-in-monitoring-view.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/resources/open-in-monitoring-view.gif -------------------------------------------------------------------------------- /resources/recurrence-trigger.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/resources/recurrence-trigger.gif -------------------------------------------------------------------------------- /resources/run-after.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/resources/run-after.gif -------------------------------------------------------------------------------- /resources/status/Aborted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/resources/status/Aborted.svg -------------------------------------------------------------------------------- /resources/status/Cancelled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/resources/status/Cancelled.svg -------------------------------------------------------------------------------- /resources/status/Failed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/resources/status/Failed.svg -------------------------------------------------------------------------------- /resources/status/Running.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/resources/status/Running.svg -------------------------------------------------------------------------------- /resources/status/Skipped.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/resources/status/Skipped.svg -------------------------------------------------------------------------------- /resources/status/Succeeded.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/resources/status/Succeeded.svg -------------------------------------------------------------------------------- /resources/status/Unknown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/resources/status/Unknown.svg -------------------------------------------------------------------------------- /snippets/logicapps.snippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/snippets/logicapps.snippets.json -------------------------------------------------------------------------------- /src/commands/integration-account/IntegrationAccountAgreementCommands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/commands/integration-account/IntegrationAccountAgreementCommands.ts -------------------------------------------------------------------------------- /src/commands/integration-account/integrationAccountCommands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/commands/integration-account/integrationAccountCommands.ts -------------------------------------------------------------------------------- /src/commands/integration-account/integrationAccountMapCommands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/commands/integration-account/integrationAccountMapCommands.ts -------------------------------------------------------------------------------- /src/commands/integration-account/integrationAccountPartnerCommands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/commands/integration-account/integrationAccountPartnerCommands.ts -------------------------------------------------------------------------------- /src/commands/integration-account/integrationAccountSchemaCommands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/commands/integration-account/integrationAccountSchemaCommands.ts -------------------------------------------------------------------------------- /src/commands/logic-app/addBuildDefinitionToProject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/commands/logic-app/addBuildDefinitionToProject.ts -------------------------------------------------------------------------------- /src/commands/logic-app/addLogicAppToProject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/commands/logic-app/addLogicAppToProject.ts -------------------------------------------------------------------------------- /src/commands/logic-app/createLogicApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/commands/logic-app/createLogicApp.ts -------------------------------------------------------------------------------- /src/commands/logic-app/createProject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/commands/logic-app/createProject.ts -------------------------------------------------------------------------------- /src/commands/logic-app/deleteLogicApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/commands/logic-app/deleteLogicApp.ts -------------------------------------------------------------------------------- /src/commands/logic-app/disableLogicApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/commands/logic-app/disableLogicApp.ts -------------------------------------------------------------------------------- /src/commands/logic-app/enableLogicApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/commands/logic-app/enableLogicApp.ts -------------------------------------------------------------------------------- /src/commands/logic-app/openInDesigner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/commands/logic-app/openInDesigner.ts -------------------------------------------------------------------------------- /src/commands/logic-app/openInEditor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/commands/logic-app/openInEditor.ts -------------------------------------------------------------------------------- /src/commands/logic-app/openInPortal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/commands/logic-app/openInPortal.ts -------------------------------------------------------------------------------- /src/commands/logic-app/openRunActionInEditor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/commands/logic-app/openRunActionInEditor.ts -------------------------------------------------------------------------------- /src/commands/logic-app/openRunInEditor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/commands/logic-app/openRunInEditor.ts -------------------------------------------------------------------------------- /src/commands/logic-app/openRunInMonitoringView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/commands/logic-app/openRunInMonitoringView.ts -------------------------------------------------------------------------------- /src/commands/logic-app/openTriggerInEditor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/commands/logic-app/openTriggerInEditor.ts -------------------------------------------------------------------------------- /src/commands/logic-app/openVersionInDesigner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/commands/logic-app/openVersionInDesigner.ts -------------------------------------------------------------------------------- /src/commands/logic-app/openVersionInEditor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/commands/logic-app/openVersionInEditor.ts -------------------------------------------------------------------------------- /src/commands/logic-app/promoteVersion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/commands/logic-app/promoteVersion.ts -------------------------------------------------------------------------------- /src/commands/logic-app/resubmitRun.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/commands/logic-app/resubmitRun.ts -------------------------------------------------------------------------------- /src/commands/logic-app/runTrigger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/commands/logic-app/runTrigger.ts -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/editors/integration-account/IntegrationAccountMapEditor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/editors/integration-account/IntegrationAccountMapEditor.ts -------------------------------------------------------------------------------- /src/editors/integration-account/IntegrationAccountSchemaEditor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/editors/integration-account/IntegrationAccountSchemaEditor.ts -------------------------------------------------------------------------------- /src/editors/integration-account/integrationAccountAgreementEditor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/editors/integration-account/integrationAccountAgreementEditor.ts -------------------------------------------------------------------------------- /src/editors/integration-account/integrationAccountPartnerEditor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/editors/integration-account/integrationAccountPartnerEditor.ts -------------------------------------------------------------------------------- /src/editors/logic-app/LogicAppEditor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/editors/logic-app/LogicAppEditor.ts -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/extensionVariables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/extensionVariables.ts -------------------------------------------------------------------------------- /src/localize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/localize.ts -------------------------------------------------------------------------------- /src/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/test/index.js -------------------------------------------------------------------------------- /src/test/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/test/index.test.js -------------------------------------------------------------------------------- /src/test/runTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/test/runTest.js -------------------------------------------------------------------------------- /src/tree/integration-account/IntegrationAccountAgreementTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/tree/integration-account/IntegrationAccountAgreementTreeItem.ts -------------------------------------------------------------------------------- /src/tree/integration-account/IntegrationAccountAgreementsTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/tree/integration-account/IntegrationAccountAgreementsTreeItem.ts -------------------------------------------------------------------------------- /src/tree/integration-account/IntegrationAccountMapTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/tree/integration-account/IntegrationAccountMapTreeItem.ts -------------------------------------------------------------------------------- /src/tree/integration-account/IntegrationAccountMapsTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/tree/integration-account/IntegrationAccountMapsTreeItem.ts -------------------------------------------------------------------------------- /src/tree/integration-account/IntegrationAccountPartnerTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/tree/integration-account/IntegrationAccountPartnerTreeItem.ts -------------------------------------------------------------------------------- /src/tree/integration-account/IntegrationAccountPartnersTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/tree/integration-account/IntegrationAccountPartnersTreeItem.ts -------------------------------------------------------------------------------- /src/tree/integration-account/IntegrationAccountSchemaTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/tree/integration-account/IntegrationAccountSchemaTreeItem.ts -------------------------------------------------------------------------------- /src/tree/integration-account/IntegrationAccountSchemasTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/tree/integration-account/IntegrationAccountSchemasTreeItem.ts -------------------------------------------------------------------------------- /src/tree/integration-account/IntegrationAccountTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/tree/integration-account/IntegrationAccountTreeItem.ts -------------------------------------------------------------------------------- /src/tree/integration-account/IntegrationAccountsProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/tree/integration-account/IntegrationAccountsProvider.ts -------------------------------------------------------------------------------- /src/tree/logic-app/LogicAppCurrentVersionTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/tree/logic-app/LogicAppCurrentVersionTreeItem.ts -------------------------------------------------------------------------------- /src/tree/logic-app/LogicAppRunActionTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/tree/logic-app/LogicAppRunActionTreeItem.ts -------------------------------------------------------------------------------- /src/tree/logic-app/LogicAppRunActionsTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/tree/logic-app/LogicAppRunActionsTreeItem.ts -------------------------------------------------------------------------------- /src/tree/logic-app/LogicAppRunTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/tree/logic-app/LogicAppRunTreeItem.ts -------------------------------------------------------------------------------- /src/tree/logic-app/LogicAppRunsTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/tree/logic-app/LogicAppRunsTreeItem.ts -------------------------------------------------------------------------------- /src/tree/logic-app/LogicAppTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/tree/logic-app/LogicAppTreeItem.ts -------------------------------------------------------------------------------- /src/tree/logic-app/LogicAppTriggerTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/tree/logic-app/LogicAppTriggerTreeItem.ts -------------------------------------------------------------------------------- /src/tree/logic-app/LogicAppTriggersTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/tree/logic-app/LogicAppTriggersTreeItem.ts -------------------------------------------------------------------------------- /src/tree/logic-app/LogicAppVersionTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/tree/logic-app/LogicAppVersionTreeItem.ts -------------------------------------------------------------------------------- /src/tree/logic-app/LogicAppVersionsTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/tree/logic-app/LogicAppVersionsTreeItem.ts -------------------------------------------------------------------------------- /src/tree/logic-app/LogicAppsProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/tree/logic-app/LogicAppsProvider.ts -------------------------------------------------------------------------------- /src/utils/authorizationUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/utils/authorizationUtils.ts -------------------------------------------------------------------------------- /src/utils/commandUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/utils/commandUtils.ts -------------------------------------------------------------------------------- /src/utils/dialogResponses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/utils/dialogResponses.ts -------------------------------------------------------------------------------- /src/utils/integration-account/agreementUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/utils/integration-account/agreementUtils.ts -------------------------------------------------------------------------------- /src/utils/integration-account/default-content/agreementsDefaultContent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/utils/integration-account/default-content/agreementsDefaultContent.ts -------------------------------------------------------------------------------- /src/utils/integration-account/integrationAccountUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/utils/integration-account/integrationAccountUtils.ts -------------------------------------------------------------------------------- /src/utils/integration-account/mapUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/utils/integration-account/mapUtils.ts -------------------------------------------------------------------------------- /src/utils/integration-account/partnerUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/utils/integration-account/partnerUtils.ts -------------------------------------------------------------------------------- /src/utils/integration-account/schemaUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/utils/integration-account/schemaUtils.ts -------------------------------------------------------------------------------- /src/utils/locationUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/utils/locationUtils.ts -------------------------------------------------------------------------------- /src/utils/logic-app/callbackUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/utils/logic-app/callbackUtils.ts -------------------------------------------------------------------------------- /src/utils/logic-app/connectionReferenceUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/utils/logic-app/connectionReferenceUtils.ts -------------------------------------------------------------------------------- /src/utils/logic-app/designerUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/utils/logic-app/designerUtils.ts -------------------------------------------------------------------------------- /src/utils/logic-app/monitoringViewUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/utils/logic-app/monitoringViewUtils.ts -------------------------------------------------------------------------------- /src/utils/logic-app/templateUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/utils/logic-app/templateUtils.ts -------------------------------------------------------------------------------- /src/utils/nodeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/utils/nodeUtils.ts -------------------------------------------------------------------------------- /src/utils/readOnlyUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/utils/readOnlyUtils.ts -------------------------------------------------------------------------------- /src/utils/stringUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/utils/stringUtils.ts -------------------------------------------------------------------------------- /src/utils/workspaceUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/utils/workspaceUtils.ts -------------------------------------------------------------------------------- /src/wizard/integration-account/agreements/agreementCreateStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/wizard/integration-account/agreements/agreementCreateStep.ts -------------------------------------------------------------------------------- /src/wizard/integration-account/agreements/agreementNameStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/wizard/integration-account/agreements/agreementNameStep.ts -------------------------------------------------------------------------------- /src/wizard/integration-account/agreements/agreementTypeStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/wizard/integration-account/agreements/agreementTypeStep.ts -------------------------------------------------------------------------------- /src/wizard/integration-account/agreements/createAgreementWizard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/wizard/integration-account/agreements/createAgreementWizard.ts -------------------------------------------------------------------------------- /src/wizard/integration-account/agreements/guestIdentityStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/wizard/integration-account/agreements/guestIdentityStep.ts -------------------------------------------------------------------------------- /src/wizard/integration-account/agreements/guestPartnerStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/wizard/integration-account/agreements/guestPartnerStep.ts -------------------------------------------------------------------------------- /src/wizard/integration-account/agreements/hostIdentityStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/wizard/integration-account/agreements/hostIdentityStep.ts -------------------------------------------------------------------------------- /src/wizard/integration-account/agreements/hostPartnerStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/wizard/integration-account/agreements/hostPartnerStep.ts -------------------------------------------------------------------------------- /src/wizard/integration-account/agreements/identityStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/wizard/integration-account/agreements/identityStep.ts -------------------------------------------------------------------------------- /src/wizard/integration-account/agreements/partnerStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/wizard/integration-account/agreements/partnerStep.ts -------------------------------------------------------------------------------- /src/wizard/integration-account/createIntegrationAccountWizard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/wizard/integration-account/createIntegrationAccountWizard.ts -------------------------------------------------------------------------------- /src/wizard/integration-account/integrationAccountCreateStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/wizard/integration-account/integrationAccountCreateStep.ts -------------------------------------------------------------------------------- /src/wizard/integration-account/integrationAccountNameStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/wizard/integration-account/integrationAccountNameStep.ts -------------------------------------------------------------------------------- /src/wizard/integration-account/integrationAccountSkuStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/wizard/integration-account/integrationAccountSkuStep.ts -------------------------------------------------------------------------------- /src/wizard/integration-account/maps/createMapWizard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/wizard/integration-account/maps/createMapWizard.ts -------------------------------------------------------------------------------- /src/wizard/integration-account/maps/mapCreateStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/wizard/integration-account/maps/mapCreateStep.ts -------------------------------------------------------------------------------- /src/wizard/integration-account/maps/mapNameStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/wizard/integration-account/maps/mapNameStep.ts -------------------------------------------------------------------------------- /src/wizard/integration-account/maps/mapTypeStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/wizard/integration-account/maps/mapTypeStep.ts -------------------------------------------------------------------------------- /src/wizard/integration-account/partners/createPartnerWizard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/wizard/integration-account/partners/createPartnerWizard.ts -------------------------------------------------------------------------------- /src/wizard/integration-account/partners/partnerCreateStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/wizard/integration-account/partners/partnerCreateStep.ts -------------------------------------------------------------------------------- /src/wizard/integration-account/partners/partnerNameStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/wizard/integration-account/partners/partnerNameStep.ts -------------------------------------------------------------------------------- /src/wizard/integration-account/partners/partnerQualifierStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/wizard/integration-account/partners/partnerQualifierStep.ts -------------------------------------------------------------------------------- /src/wizard/integration-account/partners/partnerValueStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/wizard/integration-account/partners/partnerValueStep.ts -------------------------------------------------------------------------------- /src/wizard/integration-account/schemas/createSchemaWizard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/wizard/integration-account/schemas/createSchemaWizard.ts -------------------------------------------------------------------------------- /src/wizard/integration-account/schemas/schemaCreateStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/wizard/integration-account/schemas/schemaCreateStep.ts -------------------------------------------------------------------------------- /src/wizard/integration-account/schemas/schemaNameStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/wizard/integration-account/schemas/schemaNameStep.ts -------------------------------------------------------------------------------- /src/wizard/logic-app/BuildDefinitionCreateStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/wizard/logic-app/BuildDefinitionCreateStep.ts -------------------------------------------------------------------------------- /src/wizard/logic-app/BuildDefinitionFilenameStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/wizard/logic-app/BuildDefinitionFilenameStep.ts -------------------------------------------------------------------------------- /src/wizard/logic-app/CsmFileCreateStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/wizard/logic-app/CsmFileCreateStep.ts -------------------------------------------------------------------------------- /src/wizard/logic-app/CsmFilenameStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/wizard/logic-app/CsmFilenameStep.ts -------------------------------------------------------------------------------- /src/wizard/logic-app/CsmParametersFileCreateStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/wizard/logic-app/CsmParametersFileCreateStep.ts -------------------------------------------------------------------------------- /src/wizard/logic-app/CsmParametersFilenameStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/wizard/logic-app/CsmParametersFilenameStep.ts -------------------------------------------------------------------------------- /src/wizard/logic-app/GenerateBuildDefinitionStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/wizard/logic-app/GenerateBuildDefinitionStep.ts -------------------------------------------------------------------------------- /src/wizard/logic-app/LocationListStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/wizard/logic-app/LocationListStep.ts -------------------------------------------------------------------------------- /src/wizard/logic-app/LogicAppCreateStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/wizard/logic-app/LogicAppCreateStep.ts -------------------------------------------------------------------------------- /src/wizard/logic-app/LogicAppNameStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/wizard/logic-app/LogicAppNameStep.ts -------------------------------------------------------------------------------- /src/wizard/logic-app/ResourceGroupNameStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/wizard/logic-app/ResourceGroupNameStep.ts -------------------------------------------------------------------------------- /src/wizard/logic-app/ServiceConnectionNameStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/wizard/logic-app/ServiceConnectionNameStep.ts -------------------------------------------------------------------------------- /src/wizard/logic-app/WorkspaceFolderSelectionStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/wizard/logic-app/WorkspaceFolderSelectionStep.ts -------------------------------------------------------------------------------- /src/wizard/logic-app/createBuildDefinition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/wizard/logic-app/createBuildDefinition.ts -------------------------------------------------------------------------------- /src/wizard/logic-app/createLogicApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/src/wizard/logic-app/createLogicApp.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-azurelogicapps/HEAD/webpack.config.js --------------------------------------------------------------------------------