Skip to content

Commit

Permalink
Feat(Designer): Moving first lib into shared folder (#4229)
Browse files Browse the repository at this point in the history
* designer build passes and parsers in new lib

* updated prod build
  • Loading branch information
DanielleCogs committed Feb 21, 2024
1 parent c44f7c5 commit 671689d
Show file tree
Hide file tree
Showing 109 changed files with 156 additions and 162 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/production-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
{ dist: './dist/libs/utils', package: 'utils' },
{ dist: './dist/libs/designer-ui', package: 'designer-ui' },
{ dist: './dist/libs/services/designer-client-services', package: 'services-designer-client-services' },
{ dist: './dist/libs/parsers', package: 'parsers' },
{ dist: './dist/libs/logic-apps-shared', package: 'logic-apps-shared' },
{ dist: './dist/libs/services/intl', package: 'services-intl' },
{ dist: './dist/libs/vscode-extension', package: 'vscode-extension' },
{ dist: './dist/libs/chatbot', package: 'chatbot' },
Expand Down
88 changes: 40 additions & 48 deletions CHANGELOG.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion apps/vs-code-designer/src/app/commands/deploy/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ import { notifyDeployComplete } from './notifyDeployComplete';
import { updateAppSettingsWithIdentityDetails } from './updateAppSettings';
import { verifyAppSettings } from './verifyAppSettings';
import type { SiteConfigResource, StringDictionary, Site } from '@azure/arm-appservice';
import { ResolutionService } from '@microsoft/parsers-logic-apps';
import { ResolutionService } from '@microsoft/logic-apps-shared';
import { deploy as innerDeploy, getDeployFsPath, runPreDeployTask, getDeployNode } from '@microsoft/vscode-azext-azureappservice';
import type { IDeployContext } from '@microsoft/vscode-azext-azureappservice';
import { ScmType } from '@microsoft/vscode-azext-azureappservice/out/src/ScmType';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import { tryGetWebviewPanel } from '../../../utils/codeless/common';
import { getWebViewHTML } from '../../../utils/codeless/getWebViewHTML';
import type { IAzureConnectorsContext } from '../azureConnectorWizard';
import { ResolutionService } from '@microsoft/parsers-logic-apps';
import { ResolutionService } from '@microsoft/logic-apps-shared';
import { isEmptyString } from '@microsoft/utils-logic-apps';
import type { IActionContext } from '@microsoft/vscode-azext-utils';
import type { Artifacts, AzureConnectorDetails, ConnectionsData, FileDetails, Parameter } from '@microsoft/vscode-extension';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { AuthenticationProperty } from '../AuthenticationProperty';
import { AUTHENTICATION_PROPERTIES, containsUserAssignedIdentities } from '../util';
import { MSIAuthenticationDefault } from './MSIAuthDefault';
import type { IDropdownOption } from '@fluentui/react';
import { isTemplateExpression } from '@microsoft/parsers-logic-apps';
import { isTemplateExpression } from '@microsoft/logic-apps-shared';
import type { ManagedIdentity } from '@microsoft/utils-logic-apps';
import { ResourceIdentityType, equals } from '@microsoft/utils-logic-apps';
import type { Dispatch, SetStateAction } from 'react';
Expand Down
2 changes: 1 addition & 1 deletion libs/designer-ui/src/lib/code/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import constants from '../constants';
import type { Token, ValueSegment } from '../editor';
import { TokenType } from '../editor';
import { getIntl } from '@microsoft/intl-logic-apps';
import { decodePropertySegment, OutputKeys } from '@microsoft/parsers-logic-apps';
import { decodePropertySegment, OutputKeys } from '@microsoft/logic-apps-shared';
import { ArgumentException, endsWith, equals, prettifyJsonString, UnsupportedException } from '@microsoft/utils-logic-apps';

const OperationCategory = {
Expand Down
4 changes: 2 additions & 2 deletions libs/designer-ui/src/lib/editor/base/plugins/Paste.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import { ValueSegmentType, type ValueSegment, TokenType } from '../../models/par
import type { TokenNode } from '../nodes/tokenNode';
import { $createTokenNode } from '../nodes/tokenNode';
import { useLexicalComposerContext } from '@lexical/react/LexicalComposerContext';
import type { Expression } from '@microsoft/parsers-logic-apps';
import { ExpressionParser } from '@microsoft/parsers-logic-apps';
import type { Expression } from '@microsoft/logic-apps-shared';
import { ExpressionParser } from '@microsoft/logic-apps-shared';
import { $createParagraphNode, $createTextNode, $getSelection, COMMAND_PRIORITY_LOW, PASTE_COMMAND } from 'lexical';
import { useEffect } from 'react';

Expand Down
2 changes: 1 addition & 1 deletion libs/designer-ui/src/lib/editor/base/utils/keyvalueitem.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { isEmpty } from '../../../dictionary/expandeddictionary';
import { ValueSegmentType, type ValueSegment } from '../../models/parameter';
import { insertQutationForStringType } from './helper';
import { convertSegmentsToString } from './parsesegments';
import { isNumber } from '@microsoft/parsers-logic-apps';
import { isNumber } from '@microsoft/logic-apps-shared';
import { guid, isBoolean } from '@microsoft/utils-logic-apps';

export interface KeyValueItem {
Expand Down
4 changes: 2 additions & 2 deletions libs/designer-ui/src/lib/editor/base/utils/parsesegments.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ import type { ListNode, ListItemNode } from '@lexical/list';
import { $isListNode, $isListItemNode, $createListItemNode } from '@lexical/list';
import type { HeadingNode } from '@lexical/rich-text';
import { $isHeadingNode } from '@lexical/rich-text';
import type { Expression } from '@microsoft/parsers-logic-apps';
import { ExpressionParser } from '@microsoft/parsers-logic-apps';
import type { Expression } from '@microsoft/logic-apps-shared';
import { ExpressionParser } from '@microsoft/logic-apps-shared';
import { wrapTokenValue } from '@microsoft/utils-logic-apps';
import type { LexicalNode, ParagraphNode, RootNode } from 'lexical';
import {
Expand Down
2 changes: 1 addition & 1 deletion libs/designer-ui/src/lib/editor/models/parameter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import type {
InputDependencies,
ParameterDeserializationOptions,
ParameterSerializationOptions,
} from '@microsoft/parsers-logic-apps';
} from '@microsoft/logic-apps-shared';
import type { Exception, OpenAPIV2 } from '@microsoft/utils-logic-apps';

export interface ParameterInfo {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {
} from '../../dynamicallyaddedparameter/helper';
import type { ValueSegment } from '../../editor';
import { ValueSegmentType } from '../../editor';
import type { Schema } from '@microsoft/parsers-logic-apps';
import type { Schema } from '@microsoft/logic-apps-shared';
import { guid } from '@microsoft/utils-logic-apps';

type PartialDynamicallyAddedParameterInputsModel = Pick<
Expand Down
2 changes: 1 addition & 1 deletion libs/designer-ui/src/lib/querybuilder/helper.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { GroupItemProps, GroupedItems, RowItemProps } from '.';
import { GroupType } from '.';
import type { ValueSegment } from '../editor';
import { isNumber, isBoolean } from '@microsoft/parsers-logic-apps';
import { isNumber, isBoolean } from '@microsoft/logic-apps-shared';

export const checkHeights = (item: GroupItemProps | RowItemProps, returnVal: number[], height: number): number[] => {
if (item.checked) {
Expand Down
2 changes: 1 addition & 1 deletion libs/designer-ui/src/lib/staticResult/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { StaticResult } from './StaticResult';
import { deserializePropertyValues, parseStaticResultSchema, serializePropertyValues } from './util';
import type { IButtonStyles } from '@fluentui/react';
import { DefaultButton, PrimaryButton, Toggle } from '@fluentui/react';
import type { Schema } from '@microsoft/parsers-logic-apps';
import type { Schema } from '@microsoft/logic-apps-shared';
import type { OpenAPIV2 } from '@microsoft/utils-logic-apps';
import { useEffect, useMemo, useState } from 'react';
import { useIntl } from 'react-intl';
Expand Down
4 changes: 2 additions & 2 deletions libs/designer-ui/src/lib/tokenpicker/tokenpickerfooter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import type { GetValueSegmentHandler } from './tokenpickersection/tokenpickeropt
import { getExpressionTokenTitle, getExpressionOutput } from './util';
import { PrimaryButton } from '@fluentui/react';
import { useLexicalComposerContext } from '@lexical/react/LexicalComposerContext';
import type { Expression } from '@microsoft/parsers-logic-apps';
import { ExpressionExceptionCode, ExpressionParser, ScannerException } from '@microsoft/parsers-logic-apps';
import type { Expression } from '@microsoft/logic-apps-shared';
import { ExpressionExceptionCode, ExpressionParser, ScannerException } from '@microsoft/logic-apps-shared';
import { guid } from '@microsoft/utils-logic-apps';
import type { LexicalEditor, NodeKey } from 'lexical';
import { useMemo } from 'react';
Expand Down
4 changes: 2 additions & 2 deletions libs/designer-ui/src/lib/tokenpicker/util.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Token } from './models/token';
import type { Expression, ExpressionFunction, ExpressionLiteral } from '@microsoft/parsers-logic-apps';
import { ExpressionType } from '@microsoft/parsers-logic-apps';
import type { Expression, ExpressionFunction, ExpressionLiteral } from '@microsoft/logic-apps-shared';
import { ExpressionType } from '@microsoft/logic-apps-shared';
import { UnsupportedException } from '@microsoft/utils-logic-apps';

export function getExpressionTokenTitle(expression: Expression): string {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import Constants from '../../constants';
import { isHighContrastBlack } from '../../utils';
import type { FunctionDefinition, SignatureInfo } from './templatefunctions';
import { FunctionGroupDefinitions } from './templatefunctions';
import { ExpressionScanner, ExpressionTokenType } from '@microsoft/parsers-logic-apps';
import type { ExpressionToken } from '@microsoft/parsers-logic-apps';
import { ExpressionScanner, ExpressionTokenType } from '@microsoft/logic-apps-shared';
import type { ExpressionToken } from '@microsoft/logic-apps-shared';
import { equals, first, getPropertyValue, map } from '@microsoft/utils-logic-apps';
import type { languages, editor, Position } from 'monaco-editor';

Expand Down
2 changes: 1 addition & 1 deletion libs/designer-ui/src/lib/workflow/schema/generator.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { InvalidJsonSchemaTypeException } from '../exceptions/invalidjsonschematype';
import { isTemplateExpression } from '@microsoft/parsers-logic-apps';
import { isTemplateExpression } from '@microsoft/logic-apps-shared';
import type { OpenAPIV2 } from '@microsoft/utils-logic-apps';
import { createCopy, clone } from '@microsoft/utils-logic-apps';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {
StandardOperationManifestService,
OperationManifestService,
} from '@microsoft/designer-client-services-logic-apps';
import { createItem } from '@microsoft/parsers-logic-apps';
import { createItem } from '@microsoft/logic-apps-shared';
import type { LogicAppsV2, OperationManifest } from '@microsoft/utils-logic-apps';
import { ConnectionReferenceKeyFormat } from '@microsoft/utils-logic-apps';

Expand Down
4 changes: 2 additions & 2 deletions libs/designer/src/lib/core/actions/bjsworkflow/add.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ import type { NodeDataWithOperationMetadata } from './operationdeserializer';
import type { Settings } from './settings';
import { getOperationSettings, getSplitOnValue } from './settings';
import { ConnectionService, OperationManifestService, StaticResultService } from '@microsoft/designer-client-services-logic-apps';
import type { SwaggerParser } from '@microsoft/parsers-logic-apps';
import { ManifestParser } from '@microsoft/parsers-logic-apps';
import type { SwaggerParser } from '@microsoft/logic-apps-shared';
import { ManifestParser } from '@microsoft/logic-apps-shared';
import type {
Connector,
DiscoveryOperation,
Expand Down
4 changes: 2 additions & 2 deletions libs/designer/src/lib/core/actions/bjsworkflow/initialize.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ import {
} from '@microsoft/designer-client-services-logic-apps';
import type { OutputToken, ParameterInfo } from '@microsoft/designer-ui';
import { getIntl } from '@microsoft/intl-logic-apps';
import type { SchemaProperty, InputParameter, SwaggerParser, OutputParameter } from '@microsoft/parsers-logic-apps';
import type { SchemaProperty, InputParameter, SwaggerParser, OutputParameter } from '@microsoft/logic-apps-shared';
import {
isDynamicListExtension,
isDynamicPropertiesExtension,
Expand All @@ -59,7 +59,7 @@ import {
DynamicSchemaType,
ManifestParser,
PropertyName,
} from '@microsoft/parsers-logic-apps';
} from '@microsoft/logic-apps-shared';
import {
CustomSwaggerServiceNames,
UnsupportedException,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ import {
StaticResultService,
} from '@microsoft/designer-client-services-logic-apps';
import { getIntl } from '@microsoft/intl-logic-apps';
import type { InputParameter, OutputParameter } from '@microsoft/parsers-logic-apps';
import { ManifestParser } from '@microsoft/parsers-logic-apps';
import type { InputParameter, OutputParameter } from '@microsoft/logic-apps-shared';
import { ManifestParser } from '@microsoft/logic-apps-shared';
import type { LogicAppsV2, OperationManifest } from '@microsoft/utils-logic-apps';
import { isArmResourceId, uniqueArray, getPropertyValue, map, aggregate, equals, getRecordEntry } from '@microsoft/utils-logic-apps';
import type { Dispatch } from '@reduxjs/toolkit';
Expand Down
4 changes: 2 additions & 2 deletions libs/designer/src/lib/core/actions/bjsworkflow/serializer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import { LogEntryLevel, LoggerService, OperationManifestService, WorkflowService
import type { ParameterInfo } from '@microsoft/designer-ui';
import { UIConstants } from '@microsoft/designer-ui';
import { getIntl } from '@microsoft/intl-logic-apps';
import type { Segment } from '@microsoft/parsers-logic-apps';
import type { Segment } from '@microsoft/logic-apps-shared';
import {
create,
removeConnectionPrefix,
Expand All @@ -33,7 +33,7 @@ import {
SegmentType,
DeserializationType,
PropertySerializationType,
} from '@microsoft/parsers-logic-apps';
} from '@microsoft/logic-apps-shared';
import type { LocationSwapMap, LogicAppsV2, OperationManifest, SubGraphDetail } from '@microsoft/utils-logic-apps';
import {
SerializationErrorCode,
Expand Down
4 changes: 2 additions & 2 deletions libs/designer/src/lib/core/actions/bjsworkflow/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import { WorkflowKind } from '../../state/workflow/workflowInterfaces';
import { getSplitOnOptions } from '../../utils/outputs';
import { getTokenExpressionValue } from '../../utils/parameters/helper';
import { TokenType } from '@microsoft/designer-ui';
import type { SwaggerParser } from '@microsoft/parsers-logic-apps';
import { convertToStringLiteral, getSplitOnArrayAliasMetadata } from '@microsoft/parsers-logic-apps';
import type { SwaggerParser } from '@microsoft/logic-apps-shared';
import { convertToStringLiteral, getSplitOnArrayAliasMetadata } from '@microsoft/logic-apps-shared';
import type {
DownloadChunkMetadata,
LogicApps,
Expand Down
2 changes: 1 addition & 1 deletion libs/designer/src/lib/core/queries/connections.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { getReactQueryClient } from '../ReactQueryProvider';
import { ConnectionService } from '@microsoft/designer-client-services-logic-apps';
import { SwaggerParser } from '@microsoft/parsers-logic-apps';
import { SwaggerParser } from '@microsoft/logic-apps-shared';
import type { Connector } from '@microsoft/utils-logic-apps';
import { equals } from '@microsoft/utils-logic-apps';
import { useMemo } from 'react';
Expand Down
4 changes: 2 additions & 2 deletions libs/designer/src/lib/core/queries/connector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import type {
TreeDynamicValue,
} from '@microsoft/designer-client-services-logic-apps';
import { ConnectorService } from '@microsoft/designer-client-services-logic-apps';
import type { FilePickerInfo, LegacyDynamicSchemaExtension, LegacyDynamicValuesExtension } from '@microsoft/parsers-logic-apps';
import { Types } from '@microsoft/parsers-logic-apps';
import type { FilePickerInfo, LegacyDynamicSchemaExtension, LegacyDynamicValuesExtension } from '@microsoft/logic-apps-shared';
import { Types } from '@microsoft/logic-apps-shared';
import type { OpenAPIV2 } from '@microsoft/utils-logic-apps';
import { getPropertyValue, equals, getJSONValue, getObjectPropertyValue, isNullOrUndefined } from '@microsoft/utils-logic-apps';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { normalizeKey } from '../../utils/tokens';
import { resetNodesLoadStatus, resetWorkflowState } from '../global';
import { LogEntryLevel, LoggerService } from '@microsoft/designer-client-services-logic-apps';
import type { ParameterInfo, Token } from '@microsoft/designer-ui';
import type { FilePickerInfo, InputParameter, OutputParameter, SwaggerParser } from '@microsoft/parsers-logic-apps';
import type { FilePickerInfo, InputParameter, OutputParameter, SwaggerParser } from '@microsoft/logic-apps-shared';
import { getRecordEntry, type OpenAPIV2, type OperationInfo } from '@microsoft/utils-logic-apps';
import { createSlice } from '@reduxjs/toolkit';
import type { PayloadAction } from '@reduxjs/toolkit';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import type { RootState } from '../../store';
import { useConnector, useConnectorAndSwagger, useNodeConnectionId } from '../connection/connectionSelector';
import type { NodeOperation } from '../operation/operationMetadataSlice';
import { OperationManifestService } from '@microsoft/designer-client-services-logic-apps';
import type { Operation } from '@microsoft/parsers-logic-apps';
import { SwaggerParser } from '@microsoft/parsers-logic-apps';
import type { Operation } from '@microsoft/logic-apps-shared';
import { SwaggerParser } from '@microsoft/logic-apps-shared';
import { getObjectPropertyValue, getRecordEntry } from '@microsoft/utils-logic-apps';
import { createSelector } from '@reduxjs/toolkit';
import { useMemo } from 'react';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { resetWorkflowState } from '../global';
import type { Schema } from '@microsoft/parsers-logic-apps';
import type { Schema } from '@microsoft/logic-apps-shared';
import type { PayloadAction } from '@reduxjs/toolkit';
import { createSlice } from '@reduxjs/toolkit';

Expand Down
2 changes: 1 addition & 1 deletion libs/designer/src/lib/core/utils/__test__/outputs.spec.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { getUpdatedManifestForSplitOn } from '../outputs';
import { onNewEmail } from '@microsoft/parsers-logic-apps';
import { onNewEmail } from '@microsoft/logic-apps-shared';
import type { OperationManifest } from '@microsoft/utils-logic-apps';
import { ConnectionReferenceKeyFormat } from '@microsoft/utils-logic-apps';

Expand Down
2 changes: 1 addition & 1 deletion libs/designer/src/lib/core/utils/graph.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { isWorkflowGraph } from '../parsers/models/workflowNode';
import type { WorkflowEdge, WorkflowNode } from '../parsers/models/workflowNode';
import type { NodesMetadata, Operations, WorkflowState } from '../state/workflow/workflowInterfaces';
import { isTemplateExpression } from '@microsoft/parsers-logic-apps';
import { isTemplateExpression } from '@microsoft/logic-apps-shared';
import type { WorkflowEdgeType, WorkflowNodeType } from '@microsoft/utils-logic-apps';
import { hasInvalidChars, startsWith, equals, WORKFLOW_EDGE_TYPES, WORKFLOW_NODE_TYPES, getRecordEntry } from '@microsoft/utils-logic-apps';
import type { ElkExtendedEdge, ElkNode } from 'elkjs';
Expand Down
4 changes: 2 additions & 2 deletions libs/designer/src/lib/core/utils/loops.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import { getSplitOnValue } from './setting';
import { foreachOperationInfo, OperationManifestService } from '@microsoft/designer-client-services-logic-apps';
import type { OutputToken, Token } from '@microsoft/designer-ui';
import { TokenType } from '@microsoft/designer-ui';
import type { Dereference, Expression, ExpressionFunction, ExpressionLiteral, Segment } from '@microsoft/parsers-logic-apps';
import type { Dereference, Expression, ExpressionFunction, ExpressionLiteral, Segment } from '@microsoft/logic-apps-shared';
import {
OutputKeys,
containsWildIndexSegment,
Expand All @@ -44,7 +44,7 @@ import {
isTemplateExpression,
parseEx,
SegmentType,
} from '@microsoft/parsers-logic-apps';
} from '@microsoft/logic-apps-shared';
import type { OperationManifest } from '@microsoft/utils-logic-apps';
import { clone, equals, first, getRecordEntry, isNullOrUndefined } from '@microsoft/utils-logic-apps';
import { createAsyncThunk } from '@reduxjs/toolkit';
Expand Down
2 changes: 1 addition & 1 deletion libs/designer/src/lib/core/utils/openapi/schema.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ExtensionProperties as SwaggerExtensionProperties } from '@microsoft/parsers-logic-apps';
import { ExtensionProperties as SwaggerExtensionProperties } from '@microsoft/logic-apps-shared';
import type { OpenAPIV2 } from '@microsoft/utils-logic-apps';

export const getTitleOrSummary = (schema: OpenAPIV2.SchemaObject): string | undefined => {
Expand Down
4 changes: 2 additions & 2 deletions libs/designer/src/lib/core/utils/outputs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ import type {
OutputParameter,
OutputParameters,
Schema,
} from '@microsoft/parsers-logic-apps';
} from '@microsoft/logic-apps-shared';
import {
create,
OutputKeys,
Expand All @@ -45,7 +45,7 @@ import {
isTemplateExpression,
isFunction,
isStringLiteral,
} from '@microsoft/parsers-logic-apps';
} from '@microsoft/logic-apps-shared';
import type { OpenAPIV2, OperationManifest } from '@microsoft/utils-logic-apps';
import {
ConnectionReferenceKeyFormat,
Expand Down
Loading

0 comments on commit 671689d

Please sign in to comment.