Skip to content

Commit

Permalink
fix: import from @gomomento/sdk-core instead of relative path (#1040)
Browse files Browse the repository at this point in the history
  • Loading branch information
bruuuuuuuce authored Nov 15, 2023
1 parent 47f1f22 commit 65080f1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/client-sdk-nodejs/src/internal/webhook-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ import {
ListWebhooks,
PostUrlWebhookDestination,
GetWebhookSecret,
} from '../../../core';
} from '@gomomento/sdk-core';
import {ChannelCredentials, Interceptor} from '@grpc/grpc-js';
import {IWebhookClient} from '../../../core/src/internal/clients/pubsub/IWebhookClient';
import {IWebhookClient} from '@gomomento/sdk-core/dist/src/internal/clients/pubsub/IWebhookClient';
import {Header, HeaderInterceptorProvider} from './grpc/headers-interceptor';
import {version} from '../../package.json';
import {ClientTimeoutInterceptor} from './grpc/client-timeout-interceptor';
Expand Down
4 changes: 2 additions & 2 deletions packages/client-sdk-web/src/internal/webhook-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import {
PostUrlWebhookDestination,
WebhookDestinationType,
GetWebhookSecret,
} from '../../../core';
import {IWebhookClient} from '../../../core/src/internal/clients/pubsub/IWebhookClient';
} from '@gomomento/sdk-core';
import {IWebhookClient} from '@gomomento/sdk-core/dist/src/internal/clients/pubsub/IWebhookClient';
import {cacheServiceErrorMapper} from '../errors/cache-service-error-mapper';
import {
validateCacheName,
Expand Down

0 comments on commit 65080f1

Please sign in to comment.