@multiplayer-app/session-recorder-common 1.2.37 → 1.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/tsconfig.esm.tsbuildinfo +1 -1
- package/dist/esm/type/index.d.ts +1 -0
- package/dist/esm/type/index.d.ts.map +1 -1
- package/dist/esm/type/index.js +1 -0
- package/dist/esm/type/index.js.map +1 -1
- package/dist/esm/type/user-type.enum.d.ts +6 -0
- package/dist/esm/type/user-type.enum.d.ts.map +1 -0
- package/dist/esm/type/user-type.enum.js +7 -0
- package/dist/esm/type/user-type.enum.js.map +1 -0
- package/dist/esnext/tsconfig.esnext.tsbuildinfo +1 -1
- package/dist/esnext/type/index.d.ts +1 -0
- package/dist/esnext/type/index.d.ts.map +1 -1
- package/dist/esnext/type/index.js +1 -0
- package/dist/esnext/type/index.js.map +1 -1
- package/dist/esnext/type/user-type.enum.d.ts +6 -0
- package/dist/esnext/type/user-type.enum.d.ts.map +1 -0
- package/dist/esnext/type/user-type.enum.js +7 -0
- package/dist/esnext/type/user-type.enum.js.map +1 -0
- package/dist/src/type/index.d.ts +1 -0
- package/dist/src/type/index.d.ts.map +1 -1
- package/dist/src/type/index.js +1 -0
- package/dist/src/type/index.js.map +1 -1
- package/dist/src/type/user-type.enum.d.ts +6 -0
- package/dist/src/type/user-type.enum.d.ts.map +1 -0
- package/dist/src/type/user-type.enum.js +10 -0
- package/dist/src/type/user-type.enum.js.map +1 -0
- package/package.json +1 -1
- package/src/type/index.ts +1 -0
- package/src/type/user-type.enum.ts +5 -0
package/dist/src/type/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/type/index.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/type/index.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAA;AACnC,cAAc,kBAAkB,CAAA"}
|
package/dist/src/type/index.js
CHANGED
|
@@ -15,4 +15,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./session-type.enum"), exports);
|
|
18
|
+
__exportStar(require("./user-type.enum"), exports);
|
|
18
19
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/type/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,sDAAmC","sourcesContent":["export * from './session-type.enum'\
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/type/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,sDAAmC;AACnC,mDAAgC","sourcesContent":["export * from './session-type.enum'\nexport * from './user-type.enum'"]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"user-type.enum.d.ts","sourceRoot":"","sources":["../../../src/type/user-type.enum.ts"],"names":[],"mappings":"AAAA,oBAAY,QAAQ;IAClB,IAAI,SAAS;IACb,OAAO,YAAY;IACnB,UAAU,eAAe;CAC1B"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UserType = void 0;
|
|
4
|
+
var UserType;
|
|
5
|
+
(function (UserType) {
|
|
6
|
+
UserType["USER"] = "USER";
|
|
7
|
+
UserType["VISITOR"] = "VISITOR";
|
|
8
|
+
UserType["API_CLIENT"] = "API_CLIENT";
|
|
9
|
+
})(UserType || (exports.UserType = UserType = {}));
|
|
10
|
+
//# sourceMappingURL=user-type.enum.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"user-type.enum.js","sourceRoot":"","sources":["../../../src/type/user-type.enum.ts"],"names":[],"mappings":";;;AAAA,IAAY,QAIX;AAJD,WAAY,QAAQ;IAClB,yBAAa,CAAA;IACb,+BAAmB,CAAA;IACnB,qCAAyB,CAAA;AAC3B,CAAC,EAJW,QAAQ,wBAAR,QAAQ,QAInB","sourcesContent":["export enum UserType {\n USER = 'USER',\n VISITOR = 'VISITOR',\n API_CLIENT = 'API_CLIENT',\n}\n"]}
|
package/package.json
CHANGED
package/src/type/index.ts
CHANGED