Skip to content

Commit

Permalink
fix(types): fix missing StatusCategory export
Browse files Browse the repository at this point in the history
Fix issue with missing `StatusCategory` export in types definition file.
  • Loading branch information
parfeon committed Jan 7, 2025
1 parent 1a2ddeb commit 9f8c228
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion lib/core/constants/categories.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.StatusCategory = void 0;
/**
* Request processing status categories.
*/
Expand Down Expand Up @@ -80,5 +81,5 @@ var StatusCategory;
* PubNub client unexpectedly disconnected from the real-time updates streams.
*/
StatusCategory["PNDisconnectedUnexpectedlyCategory"] = "PNDisconnectedUnexpectedlyCategory";
})(StatusCategory || (StatusCategory = {}));
})(StatusCategory || (exports.StatusCategory = StatusCategory = {}));
exports.default = StatusCategory;
2 changes: 1 addition & 1 deletion src/core/constants/categories.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* Request processing status categories.
*/
enum StatusCategory {
export enum StatusCategory {
/**
* Call failed when network was unable to complete the call.
*/
Expand Down

0 comments on commit 9f8c228

Please sign in to comment.