Skip to content

Commit

Permalink
chore(designer): Merge client services library to the shared library (#…
Browse files Browse the repository at this point in the history
…4424)

Merge client services library to the shared library
  • Loading branch information
hartra344 committed Mar 24, 2024
1 parent da3efac commit 619d2f1
Show file tree
Hide file tree
Showing 232 changed files with 119 additions and 305 deletions.
1 change: 0 additions & 1 deletion .github/workflows/production-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,6 @@ jobs:
{ dist: './dist/libs/data-mapper', package: 'data-mapper' },
{ dist: './dist/libs/designer', package: 'designer' },
{ dist: './dist/libs/designer-ui', package: 'designer-ui' },
{ dist: './dist/libs/services/designer-client-services', package: 'services-designer-client-services' },
{ dist: './dist/libs/logic-apps-shared', package: 'logic-apps-shared' },
{ dist: './dist/libs/vscode-extension', package: 'vscode-extension' },
{ dist: './dist/libs/chatbot', package: 'chatbot' },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import { Badge } from '@fluentui/react-components';
import type { ICommandBarItemProps } from '@fluentui/react/lib/CommandBar';
import { CommandBar } from '@fluentui/react/lib/CommandBar';
import { Spinner, SpinnerSize } from '@fluentui/react/lib/Spinner';
import type { ILoggerService } from '@microsoft/designer-client-services-logic-apps';
import { LogEntryLevel, LoggerService } from '@microsoft/designer-client-services-logic-apps';
import type { ILoggerService } from '@microsoft/logic-apps-shared';
import { LogEntryLevel, LoggerService } from '@microsoft/logic-apps-shared';

Check warning on line 7 in apps/designer-standalone/src/app/AzureLogicAppsDesigner/DesignerCommandBar.tsx

View workflow job for this annotation

GitHub Actions / build (20.x)

'@microsoft/logic-apps-shared' imported multiple times

Check warning on line 7 in apps/designer-standalone/src/app/AzureLogicAppsDesigner/DesignerCommandBar.tsx

View workflow job for this annotation

GitHub Actions / build (18.x)

'@microsoft/logic-apps-shared' imported multiple times
import type { RootState, Workflow } from '@microsoft/logic-apps-designer';
import {
store as DesignerStore,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { ArtifactProperties } from '../Models/Workflow';
import type { DynamicCallServiceOptions } from './ChildWorkflow';
import type { ListDynamicValue } from '@microsoft/designer-client-services-logic-apps';
import type { ListDynamicValue } from '@microsoft/logic-apps-shared';

interface ArtifactServiceOptions extends DynamicCallServiceOptions {
integrationAccountCallbackUrl: string | undefined;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { ArmResources } from '../Models/Arm';
import type { Workflow } from '../Models/Workflow';
import type { HttpClient } from './HttpClient';
import type { ListDynamicValue } from '@microsoft/designer-client-services-logic-apps';
import type { ListDynamicValue } from '@microsoft/logic-apps-shared';
import { hasProperty, getPropertyValue } from '@microsoft/logic-apps-shared';

export interface DynamicCallServiceOptions {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { ConnectionCreationInfo, IHttpClient } from '@microsoft/designer-client-services-logic-apps';
import type { ConnectionCreationInfo, IHttpClient } from '@microsoft/logic-apps-shared';

type CreateConnectionFunc = (connectionInfo: ConnectionCreationInfo, connectionName: string) => Promise<ConnectionCreationInfo>;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { environment } from '../../../environments/environment';
import type { HttpRequestOptions, IHttpClient } from '@microsoft/designer-client-services-logic-apps';
import type { HttpRequestOptions, IHttpClient } from '@microsoft/logic-apps-shared';
import axios from 'axios';
import axiosRetry from 'axios-retry';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ import {
StandardOperationManifestService,
StandardRunService,
StandardSearchService,
} from '@microsoft/designer-client-services-logic-apps';
import type { ContentType, IWorkflowService } from '@microsoft/designer-client-services-logic-apps';
} from '@microsoft/logic-apps-shared';

Check warning on line 38 in apps/designer-standalone/src/app/AzureLogicAppsDesigner/laDesigner.tsx

View workflow job for this annotation

GitHub Actions / build (20.x)

'@microsoft/logic-apps-shared' imported multiple times

Check warning on line 38 in apps/designer-standalone/src/app/AzureLogicAppsDesigner/laDesigner.tsx

View workflow job for this annotation

GitHub Actions / build (18.x)

'@microsoft/logic-apps-shared' imported multiple times
import type { ContentType, IWorkflowService } from '@microsoft/logic-apps-shared';

Check warning on line 39 in apps/designer-standalone/src/app/AzureLogicAppsDesigner/laDesigner.tsx

View workflow job for this annotation

GitHub Actions / build (20.x)

'@microsoft/logic-apps-shared' imported multiple times

Check warning on line 39 in apps/designer-standalone/src/app/AzureLogicAppsDesigner/laDesigner.tsx

View workflow job for this annotation

GitHub Actions / build (18.x)

'@microsoft/logic-apps-shared' imported multiple times
import type { Workflow } from '@microsoft/logic-apps-designer';
import {
DesignerProvider,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ import {
ConsumptionSearchService,
BaseChatbotService,
ConsumptionRunService,
} from '@microsoft/designer-client-services-logic-apps';
} from '@microsoft/logic-apps-shared';

Check warning on line 39 in apps/designer-standalone/src/app/AzureLogicAppsDesigner/laDesignerConsumption.tsx

View workflow job for this annotation

GitHub Actions / build (20.x)

'@microsoft/logic-apps-shared' imported multiple times

Check warning on line 39 in apps/designer-standalone/src/app/AzureLogicAppsDesigner/laDesignerConsumption.tsx

View workflow job for this annotation

GitHub Actions / build (18.x)

'@microsoft/logic-apps-shared' imported multiple times
import type { Workflow } from '@microsoft/logic-apps-designer';
import {
DesignerProvider,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import type {
IConnectionParameterEditorProps,
IConnectionParameterEditorService,
IConnectionParameterInfo,
} from '@microsoft/designer-client-services-logic-apps';
} from '@microsoft/logic-apps-shared';
import { ConnectionParameterRow, UniversalConnectionParameter } from '@microsoft/logic-apps-designer';
import { useEffect, useState } from 'react';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { IEditorParameterInfo, IEditorProps, IEditorService } from '@microsoft/designer-client-services-logic-apps';
import type { IEditorParameterInfo, IEditorProps, IEditorService } from '@microsoft/logic-apps-shared';
import { createLiteralValueSegment } from '@microsoft/logic-apps-designer';

export class CustomEditorService implements IEditorService {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* eslint-disable @typescript-eslint/no-empty-function */
import type { HttpRequestOptions, IHttpClient } from '@microsoft/designer-client-services-logic-apps';
import type { HttpRequestOptions, IHttpClient } from '@microsoft/logic-apps-shared';

export class HttpClient implements IHttpClient {
async get<ReturnType>(_options: HttpRequestOptions<unknown>): Promise<ReturnType> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ import {
StandardRunService,
ConsumptionOperationManifestService,
ConsumptionConnectionService,
} from '@microsoft/designer-client-services-logic-apps';
import type { ContentType } from '@microsoft/designer-client-services-logic-apps';
} from '@microsoft/logic-apps-shared';

Check warning on line 18 in apps/designer-standalone/src/app/LocalDesigner/localDesigner.tsx

View workflow job for this annotation

GitHub Actions / build (20.x)

'@microsoft/logic-apps-shared' imported multiple times

Check warning on line 18 in apps/designer-standalone/src/app/LocalDesigner/localDesigner.tsx

View workflow job for this annotation

GitHub Actions / build (18.x)

'@microsoft/logic-apps-shared' imported multiple times
import type { ContentType } from '@microsoft/logic-apps-shared';
import { DesignerProvider, BJSWorkflowProvider, Designer } from '@microsoft/logic-apps-designer';
import { ResourceIdentityType } from '@microsoft/logic-apps-shared';

Check warning on line 21 in apps/designer-standalone/src/app/LocalDesigner/localDesigner.tsx

View workflow job for this annotation

GitHub Actions / build (20.x)

'@microsoft/logic-apps-shared' imported multiple times

Check warning on line 21 in apps/designer-standalone/src/app/LocalDesigner/localDesigner.tsx

View workflow job for this annotation

GitHub Actions / build (18.x)

'@microsoft/logic-apps-shared' imported multiple times
import { useSelector } from 'react-redux';
Expand Down
2 changes: 1 addition & 1 deletion apps/vs-code-react/src/app/designer/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import './app.less';
import { getDesignerServices } from './servicesHelper';
import { convertConnectionsDataToReferences } from './utilities/workflow';
import { Spinner, SpinnerSize, Text } from '@fluentui/react';
import type { ConnectionCreationInfo } from '@microsoft/designer-client-services-logic-apps';
import type { ConnectionCreationInfo } from '@microsoft/logic-apps-shared';
import type { ConnectionReferences } from '@microsoft/logic-apps-designer';
import { DesignerProvider, BJSWorkflowProvider, Designer, getTheme, useThemeObserver } from '@microsoft/logic-apps-designer';
import type { LogicAppsV2 } from '@microsoft/logic-apps-shared';
Expand Down
2 changes: 1 addition & 1 deletion apps/vs-code-react/src/app/designer/services/oAuth.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { JwtTokenConstants, JwtTokenHelper } from './JwtHelper';
import type { IOAuthPopup, IOAuthService, OAuthPopupOptions } from '@microsoft/designer-client-services-logic-apps';
import type { IOAuthPopup, IOAuthService, OAuthPopupOptions } from '@microsoft/logic-apps-shared';
import { ExtensionCommand } from '@microsoft/vscode-extension';

export interface LoginResult {
Expand Down
4 changes: 2 additions & 2 deletions apps/vs-code-react/src/app/designer/servicesHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ import {
BaseApiManagementService,
BaseFunctionService,
BaseAppServiceService,
} from '@microsoft/designer-client-services-logic-apps';
} from '@microsoft/logic-apps-shared';
import type {
ApiHubServiceDetails,
ConnectionCreationInfo,
ContentType,
IHostService,
IWorkflowService,
} from '@microsoft/designer-client-services-logic-apps';
} from '@microsoft/logic-apps-shared';
import type { ManagedIdentity } from '@microsoft/logic-apps-shared';
import { HTTP_METHODS, clone } from '@microsoft/logic-apps-shared';
import type { ConnectionAndAppSetting, ConnectionsData, IDesignerPanelMetadata } from '@microsoft/vscode-extension';
Expand Down
8 changes: 5 additions & 3 deletions apps/vs-code-react/src/app/overview/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,18 @@ import type { RunDisplayItem } from '../../run-service';
import type { RootState } from '../../state/store';
import { VSCodeContext } from '../../webviewCommunication';
import './overview.less';
import { StandardRunService } from '@microsoft/designer-client-services-logic-apps';
import type { CallbackInfo } from '@microsoft/designer-client-services-logic-apps';
import { StandardRunService } from '@microsoft/logic-apps-shared';
import { Overview, isRunError, mapToRunItem } from '@microsoft/designer-ui';
import type { Runs } from '@microsoft/logic-apps-shared';
import { ExtensionCommand, HttpClient } from '@microsoft/vscode-extension';
import { useCallback, useContext, useMemo } from 'react';
import { useInfiniteQuery, useMutation } from 'react-query';
import { useSelector } from 'react-redux';
import invariant from 'tiny-invariant';

export interface CallbackInfo {
method?: string;
value: string;
}
export const OverviewApp = () => {
const workflowState = useSelector((state: RootState) => state.workflow);
const vscode = useContext(VSCodeContext);
Expand Down
2 changes: 1 addition & 1 deletion apps/vs-code-react/src/run-service/types.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { InitializePayload, Status } from '../state/WorkflowSlice';
import type { ApiHubServiceDetails } from '@microsoft/designer-client-services-logic-apps';
import type { ApiHubServiceDetails } from '@microsoft/logic-apps-shared';
import type { SchemaType } from '@microsoft/logic-apps-shared';
import type { MapDefinitionData, ExtensionCommand, ConnectionsData, IDesignerPanelMetadata } from '@microsoft/vscode-extension';

Expand Down
2 changes: 1 addition & 1 deletion apps/vs-code-react/src/state/DesignerSlice.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { ApiHubServiceDetails, ListDynamicValue } from '@microsoft/designer-client-services-logic-apps';
import type { ApiHubServiceDetails, ListDynamicValue } from '@microsoft/logic-apps-shared';
import type { ConnectionsData, ICallbackUrlResponse, IDesignerPanelMetadata } from '@microsoft/vscode-extension';
import type { PayloadAction } from '@reduxjs/toolkit';
import { createSlice } from '@reduxjs/toolkit';
Expand Down
1 change: 0 additions & 1 deletion cypress.json

This file was deleted.

2 changes: 1 addition & 1 deletion libs/chatbot/jest.setup.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import messages from '../logic-apps-shared/src/intl/compiled-lang/strings.json';
import { InitLoggerService } from '@microsoft/designer-client-services-logic-apps';
import { InitLoggerService } from '@microsoft/logic-apps-shared';
import { createIntl, createIntlCache } from 'react-intl';
import * as Intl from 'react-intl';

Expand Down
2 changes: 1 addition & 1 deletion libs/chatbot/src/lib/ui/chatbot.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { CopilotPanelHeader } from './panelheader';
import type { ITextField } from '@fluentui/react';
import { useTheme, Panel, PanelType, css, getId } from '@fluentui/react';
import { ShieldCheckmarkRegular } from '@fluentui/react-icons';
import { LogEntryLevel, LoggerService, ChatbotService } from '@microsoft/designer-client-services-logic-apps';
import { LogEntryLevel, LoggerService, ChatbotService } from '@microsoft/logic-apps-shared';
import type { ConversationItem, ChatEntryReaction, AdditionalParametersItem } from '@microsoft/designer-ui';
import {
PanelLocation,
Expand Down
2 changes: 1 addition & 1 deletion libs/chatbot/src/lib/ui/panelheader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { FontSizes, Link } from '@fluentui/react';
import { Tooltip } from '@fluentui/react-components';
import { ShieldCheckmarkRegular } from '@fluentui/react-icons';
import { IconButton } from '@fluentui/react/lib/Button';
import { LogEntryLevel, LoggerService } from '@microsoft/designer-client-services-logic-apps';
import { LogEntryLevel, LoggerService } from '@microsoft/logic-apps-shared';
import { useIntl } from 'react-intl';

interface CopilotPanelHeaderProps {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as DesignerClientServices from '@microsoft/designer-client-services-logic-apps';
import * as DesignerClientServices from '@microsoft/logic-apps-shared';
import type { Connector, OperationApi } from '@microsoft/logic-apps-shared';
import { isBuiltInConnector } from '../index';

Expand Down
2 changes: 1 addition & 1 deletion libs/designer-ui/src/lib/connectors/predicates.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { HostService } from '@microsoft/designer-client-services-logic-apps';
import { HostService } from '@microsoft/logic-apps-shared';
import type { Connector, OperationApi } from '@microsoft/logic-apps-shared';
import { getAllConnectorProperties, isBuiltInConnectorId, isCustomConnectorId, isString } from '@microsoft/logic-apps-shared';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { TooltipHost } from '@fluentui/react/lib/Tooltip';
import { Depths } from '@fluentui/theme';
import { useLexicalComposerContext } from '@lexical/react/LexicalComposerContext';
import { OnChangePlugin } from '@lexical/react/LexicalOnChangePlugin';
import { LogEntryLevel, LoggerService } from '@microsoft/designer-client-services-logic-apps';
import { LogEntryLevel, LoggerService } from '@microsoft/logic-apps-shared';
import type { NodeKey } from 'lexical';
import { $getSelection } from 'lexical';
import { useCallback, useEffect, useLayoutEffect, useRef, useState } from 'react';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { ValueSegmentType } from '../../../models/parameter';
import { convertStringToSegments } from '../editorToSegment';
import type { ValueSegment } from '@microsoft/designer-client-services-logic-apps';
import type { ValueSegment } from '@microsoft/logic-apps-shared';

type SimplifiedValueSegment = Omit<ValueSegment, 'id'>;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {
encodeStringSegmentTokensInDomContext,
encodeStringSegmentTokensInLexicalContext,
} from '../parsesegments';
import type { ValueSegment } from '@microsoft/designer-client-services-logic-apps';
import type { ValueSegment } from '@microsoft/logic-apps-shared';

describe('lib/editor/base/utils/parseSegments', () => {
describe('decodeStringSegmentTokensInDomContext', () => {
Expand Down
2 changes: 1 addition & 1 deletion libs/designer-ui/src/lib/html/plugins/toolbar/Toolbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import { ListPlugin } from '@lexical/react/LexicalListPlugin';
import { $isHeadingNode } from '@lexical/rich-text';
import { $getSelectionStyleValueForProperty } from '@lexical/selection';
import { mergeRegister, $getNearestNodeOfType, $findMatchingParent } from '@lexical/utils';
import type { ValueSegment } from '@microsoft/designer-client-services-logic-apps';
import type { ValueSegment } from '@microsoft/logic-apps-shared';
import { isApple } from '@microsoft/logic-apps-shared';
import {
$getRoot,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {
isHtmlStringValueSafeForLexical,
isTagNameSupportedByLexical,
} from '../util';
import type { ValueSegment } from '@microsoft/designer-client-services-logic-apps';
import type { ValueSegment } from '@microsoft/logic-apps-shared';

describe('lib/html/plugins/toolbar/helper/util', () => {
describe('cleanHtmlString', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { encodeStringSegmentTokensInDomContext } from '../../../../editor/base/utils/parsesegments';
import type { ValueSegment } from '@microsoft/designer-client-services-logic-apps';
import type { ValueSegment } from '@microsoft/logic-apps-shared';

const htmlUnsafeCharacters = ['<', '>'];
const htmlUnsafeCharacterEncodingMap: Record<string, string> = htmlUnsafeCharacters.reduce(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import { DesignerSearchBox } from '../../../searchbox';
import { Checkbox } from '@fluentui/react';
import type { IDropdownOption } from '@fluentui/react/lib/Dropdown';
import { Dropdown } from '@fluentui/react/lib/Dropdown';
import type { OperationRuntimeCategory } from '@microsoft/designer-client-services-logic-apps';
import { LogEntryLevel, LoggerService, SearchService } from '@microsoft/designer-client-services-logic-apps';
import type { OperationRuntimeCategory } from '@microsoft/logic-apps-shared';
import { LogEntryLevel, LoggerService, SearchService } from '@microsoft/logic-apps-shared';
import type { IntlShape } from 'react-intl';
import { useIntl } from 'react-intl';

Expand Down
2 changes: 1 addition & 1 deletion libs/designer-ui/src/lib/picker/filepickereditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { UpdateEditorFromFilePicker } from './plugins/UpdateEditorFromFilePicker
import type { IBreadcrumbItem, IIconProps, ITooltipHostStyles } from '@fluentui/react';
import { TooltipHost, IconButton } from '@fluentui/react';
import { useId } from '@fluentui/react-hooks';
import type { TreeDynamicValue } from '@microsoft/designer-client-services-logic-apps';
import type { TreeDynamicValue } from '@microsoft/logic-apps-shared';
import { equals, guid } from '@microsoft/logic-apps-shared';
import { useState } from 'react';
import { useIntl } from 'react-intl';
Expand Down
2 changes: 1 addition & 1 deletion libs/designer-ui/src/lib/picker/picker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Spinner } from '@fluentui/react';
import type { IBreadcrumbItem } from '@fluentui/react/lib/Breadcrumb';
import type { ICalloutContentStyles } from '@fluentui/react/lib/Callout';
import { FocusTrapCallout } from '@fluentui/react/lib/Callout';
import type { TreeDynamicValue } from '@microsoft/designer-client-services-logic-apps';
import type { TreeDynamicValue } from '@microsoft/logic-apps-shared';
import { useIntl } from 'react-intl';

const calloutStyles: Partial<ICalloutContentStyles> = {
Expand Down
2 changes: 1 addition & 1 deletion libs/designer-ui/src/lib/picker/pickerItem.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { useId } from '../useId';
import { Icon, IconButton, TooltipHost } from '@fluentui/react';
import type { IIconStyles } from '@fluentui/react';
import type { TreeDynamicValue } from '@microsoft/designer-client-services-logic-apps';
import type { TreeDynamicValue } from '@microsoft/logic-apps-shared';
import { useIntl } from 'react-intl';

export const PickerItemType = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { ValueSegmentType } from '../../../editor';
import type { CustomTokenFieldProps } from '../customTokenField';
import { CustomTokenField, isCustomEditor, toCustomEditorAndOptions } from '../customTokenField';
import { TokenField } from '../settingTokenField';
import type { IRenderDefaultEditorParams } from '@microsoft/designer-client-services-logic-apps';
import type { IRenderDefaultEditorParams } from '@microsoft/logic-apps-shared';
import * as ReactShallowRenderer from 'react-test-renderer/shallow';

describe('ui/settings/customTokenField', () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import type {
ICustomEditorOptions,
IEditorProps,
IRenderDefaultEditorParams,
} from '@microsoft/designer-client-services-logic-apps';
} from '@microsoft/logic-apps-shared';
import { equals } from '@microsoft/logic-apps-shared';
import { useCallback } from 'react';

Expand Down
2 changes: 1 addition & 1 deletion libs/designer-ui/src/lib/tokenpicker/tokenpickerfooter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import type { GetValueSegmentHandler } from './tokenpickersection/tokenpickeropt
import { getExpressionOutput, getExpressionTokenTitle } from './util';
import { PrimaryButton } from '@fluentui/react';
import { useLexicalComposerContext } from '@lexical/react/LexicalComposerContext';
import { LogEntryLevel, LoggerService } from '@microsoft/designer-client-services-logic-apps';
import { LogEntryLevel, LoggerService } from '@microsoft/logic-apps-shared';
import type { Expression } from '@microsoft/logic-apps-shared';
import { ExpressionExceptionCode, ExpressionParser, ScannerException, guid } from '@microsoft/logic-apps-shared';
import type { LexicalEditor, NodeKey } from 'lexical';
Expand Down
2 changes: 1 addition & 1 deletion libs/designer-ui/src/lib/tokenpicker/tokenpickerheader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { CLOSE_TOKENPICKER } from '../editor/base/plugins/CloseTokenPicker';
import type { IButtonStyles } from '@fluentui/react';
import { IconButton } from '@fluentui/react';
import { useLexicalComposerContext } from '@lexical/react/LexicalComposerContext';
import { LogEntryLevel, LoggerService } from '@microsoft/designer-client-services-logic-apps';
import { LogEntryLevel, LoggerService } from '@microsoft/logic-apps-shared';
import type { LexicalEditor } from 'lexical';
import { useIntl } from 'react-intl';

Expand Down
2 changes: 1 addition & 1 deletion libs/designer/jest.setup.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import messages from '../logic-apps-shared/src/intl/compiled-lang/strings.json';
import { InitLoggerService } from '@microsoft/designer-client-services-logic-apps';
import { InitLoggerService } from '@microsoft/logic-apps-shared';
import { createIntl, createIntlCache } from 'react-intl';
import * as Intl from 'react-intl';

Expand Down
2 changes: 1 addition & 1 deletion libs/designer/src/lib/__test__/mock-http-client.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { IHttpClient } from '@microsoft/designer-client-services-logic-apps';
import type { IHttpClient } from '@microsoft/logic-apps-shared';

export class MockHttpClient implements IHttpClient {
dispose() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,7 @@ import {
getLegacyConnectionReferenceKey,
getManifestBasedConnectionMapping,
} from '../../../actions/bjsworkflow/connections';
import {
InitOperationManifestService,
StandardOperationManifestService,
OperationManifestService,
} from '@microsoft/designer-client-services-logic-apps';
import { InitOperationManifestService, StandardOperationManifestService, OperationManifestService } from '@microsoft/logic-apps-shared';
import { createItem, ConnectionReferenceKeyFormat } from '@microsoft/logic-apps-shared';
import type { LogicAppsV2, OperationManifest } from '@microsoft/logic-apps-shared';

Expand Down
2 changes: 1 addition & 1 deletion libs/designer/src/lib/core/actions/bjsworkflow/add.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ import {
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 { ConnectionService, OperationManifestService, StaticResultService } from '@microsoft/logic-apps-shared';
import type {
Connector,
DiscoveryOperation,
Expand Down
Loading

0 comments on commit 619d2f1

Please sign in to comment.