Skip to content

Commit

Permalink
refactor(typo): fix typo in PAM types file name
Browse files Browse the repository at this point in the history
  • Loading branch information
parfeon committed May 22, 2024
1 parent 8f6baf5 commit 628d9a2
Show file tree
Hide file tree
Showing 9 changed files with 6 additions and 6 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion lib/types/core/pubnub-common.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import * as History from './types/api/history';
import * as MessageAction from './types/api/message-action';
import * as FileSharing from './types/api/file-sharing';
import { PubNubFileInterface } from './types/file';
import * as PAM from './types/api/access-panager';
import * as PAM from './types/api/access-manager';
import { SubscriptionOptions } from '../entities/commonTypes';
import { ChannelMetadata } from '../entities/ChannelMetadata';
import { SubscriptionSet } from '../entities/SubscriptionSet';
Expand Down
2 changes: 1 addition & 1 deletion src/core/endpoints/access_manager/audit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { TransportResponse } from '../../types/transport-response';
import { PubNubAPIError } from '../../../errors/pubnub-api-error';
import { AbstractRequest } from '../../components/request';
import RequestOperation from '../../constants/operations';
import * as PAM from '../../types/api/access-panager';
import * as PAM from '../../types/api/access-manager';
import { KeySet, Query } from '../../types/api';

// --------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion src/core/endpoints/access_manager/grant.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { TransportResponse } from '../../types/transport-response';
import { PubNubAPIError } from '../../../errors/pubnub-api-error';
import { AbstractRequest } from '../../components/request';
import RequestOperation from '../../constants/operations';
import * as PAM from '../../types/api/access-panager';
import * as PAM from '../../types/api/access-manager';
import { KeySet, Query } from '../../types/api';

// --------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion src/core/endpoints/access_manager/grant_token.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { PubNubAPIError } from '../../../errors/pubnub-api-error';
import { TransportMethod } from '../../types/transport-request';
import { AbstractRequest } from '../../components/request';
import RequestOperation from '../../constants/operations';
import * as PAM from '../../types/api/access-panager';
import * as PAM from '../../types/api/access-manager';
import { KeySet } from '../../types/api';

// --------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion src/core/endpoints/access_manager/revoke_token.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { PubNubAPIError } from '../../../errors/pubnub-api-error';
import { TransportMethod } from '../../types/transport-request';
import { AbstractRequest } from '../../components/request';
import RequestOperation from '../../constants/operations';
import * as PAM from '../../types/api/access-panager';
import * as PAM from '../../types/api/access-manager';
import { encodeString } from '../../utils';
import { KeySet } from '../../types/api';

Expand Down
2 changes: 1 addition & 1 deletion src/core/pubnub-common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ import { RevokeTokenRequest } from './endpoints/access_manager/revoke_token';
import { GrantTokenRequest } from './endpoints/access_manager/grant_token';
import { GrantRequest } from './endpoints/access_manager/grant';
import { AuditRequest } from './endpoints/access_manager/audit';
import * as PAM from './types/api/access-panager';
import * as PAM from './types/api/access-manager';
// endregion
// region Entities
import { SubscriptionOptions } from '../entities/commonTypes';
Expand Down
File renamed without changes.

0 comments on commit 628d9a2

Please sign in to comment.