cecon-interfaces 1.8.32 → 1.8.33
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/esm2022/payio/index.mjs +2 -1
- package/dist/esm2022/payio/user/entities/index.mjs +2 -0
- package/dist/esm2022/payio/user/entities/user.entity.mjs +14 -0
- package/dist/esm2022/payio/user/index.mjs +3 -0
- package/dist/esm2022/payio/user/interfaces/i-user.mjs +2 -0
- package/dist/esm2022/payio/user/interfaces/index.mjs +2 -0
- package/dist/fesm2022/cecon-interfaces.mjs +14 -1
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/payio/index.d.ts +1 -0
- package/dist/payio/index.js +1 -0
- package/dist/payio/user/entities/index.d.ts +1 -0
- package/dist/payio/user/entities/index.js +5 -0
- package/dist/payio/user/entities/user.entity.d.ts +5 -0
- package/dist/payio/user/entities/user.entity.js +35 -0
- package/dist/payio/user/index.d.ts +2 -0
- package/dist/payio/user/index.js +18 -0
- package/dist/payio/user/interfaces/i-user.d.ts +3 -0
- package/dist/payio/user/interfaces/i-user.js +2 -0
- package/dist/payio/user/interfaces/index.d.ts +1 -0
- package/dist/payio/user/interfaces/index.js +2 -0
- package/package.json +1 -1
package/dist/payio/index.d.ts
CHANGED
package/dist/payio/index.js
CHANGED
@@ -0,0 +1 @@
|
|
1
|
+
export { PayioUserEntity } from './user.entity';
|
@@ -0,0 +1,5 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.PayioUserEntity = void 0;
|
4
|
+
var user_entity_1 = require("./user.entity");
|
5
|
+
Object.defineProperty(exports, "PayioUserEntity", { enumerable: true, get: function () { return user_entity_1.PayioUserEntity; } });
|
@@ -0,0 +1,35 @@
|
|
1
|
+
"use strict";
|
2
|
+
var __extends = (this && this.__extends) || (function () {
|
3
|
+
var extendStatics = function (d, b) {
|
4
|
+
extendStatics = Object.setPrototypeOf ||
|
5
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
6
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
7
|
+
return extendStatics(d, b);
|
8
|
+
};
|
9
|
+
return function (d, b) {
|
10
|
+
if (typeof b !== "function" && b !== null)
|
11
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
12
|
+
extendStatics(d, b);
|
13
|
+
function __() { this.constructor = d; }
|
14
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
15
|
+
};
|
16
|
+
})();
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
18
|
+
exports.PayioUserEntity = void 0;
|
19
|
+
var users_1 = require("../../../users");
|
20
|
+
var PayioUserEntity = /** @class */ (function (_super) {
|
21
|
+
__extends(PayioUserEntity, _super);
|
22
|
+
function PayioUserEntity(data) {
|
23
|
+
var _this = _super.call(this) || this;
|
24
|
+
if (data) {
|
25
|
+
for (var key in data) {
|
26
|
+
if (data.hasOwnProperty(key) && key in _this) {
|
27
|
+
_this[key] = data[key];
|
28
|
+
}
|
29
|
+
}
|
30
|
+
}
|
31
|
+
return _this;
|
32
|
+
}
|
33
|
+
return PayioUserEntity;
|
34
|
+
}(users_1.UserEntity));
|
35
|
+
exports.PayioUserEntity = PayioUserEntity;
|
@@ -0,0 +1,18 @@
|
|
1
|
+
"use strict";
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
3
|
+
if (k2 === undefined) k2 = k;
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
7
|
+
}
|
8
|
+
Object.defineProperty(o, k2, desc);
|
9
|
+
}) : (function(o, m, k, k2) {
|
10
|
+
if (k2 === undefined) k2 = k;
|
11
|
+
o[k2] = m[k];
|
12
|
+
}));
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
15
|
+
};
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
17
|
+
__exportStar(require("./entities"), exports);
|
18
|
+
__exportStar(require("./interfaces"), exports);
|
@@ -0,0 +1 @@
|
|
1
|
+
export { IPayioUser } from './i-user';
|