@adonoustech/bacon-core 1.13.2 → 1.13.3
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.
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.BaconIoTPermsBrokerRequestEvent = void 0;
|
|
3
4
|
const BaconBaseBrokerRequestEvent_1 = require("../base/BaconBaseBrokerRequestEvent");
|
|
4
5
|
class BaconIoTPermsBrokerRequestEvent extends BaconBaseBrokerRequestEvent_1.BaconBaseBrokerRequestEvent {
|
|
5
6
|
constructor() {
|
|
6
|
-
super();
|
|
7
|
+
super(); // none of the base class properties are being used except for the kind
|
|
7
8
|
}
|
|
8
9
|
}
|
|
9
|
-
exports.
|
|
10
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
10
|
+
exports.BaconIoTPermsBrokerRequestEvent = BaconIoTPermsBrokerRequestEvent;
|
|
11
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiQmFjb25Jb1RQZXJtc0Jyb2tlclJlcXVlc3RFdmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9jb25jcmV0ZS9CYWNvbklvVFBlcm1zQnJva2VyUmVxdWVzdEV2ZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7OztBQUFBLHFGQUFrRjtBQUlsRixNQUFhLCtCQUFnQyxTQUFRLHlEQUEyQjtJQU01RTtRQUNJLEtBQUssRUFBRSxDQUFDLENBQUUsdUVBQXVFO0lBQ3JGLENBQUM7Q0FDSjtBQVRELDBFQVNDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQmFjb25CYXNlQnJva2VyUmVxdWVzdEV2ZW50IH0gZnJvbSBcIi4uL2Jhc2UvQmFjb25CYXNlQnJva2VyUmVxdWVzdEV2ZW50XCI7XHJcbmltcG9ydCB7IEJhY29uQnVzaW5lc3NMYXllcktpbmRzIH0gZnJvbSBcIi4uL2VudW1zXCI7XHJcbmltcG9ydCB7IEJhY29uSU9UUGVybXNSZXF1ZXN0UGF5bG9hZCB9IGZyb20gXCIuLi9pbnRlcmZhY2VzXCI7XHJcblxyXG5leHBvcnQgY2xhc3MgQmFjb25Jb1RQZXJtc0Jyb2tlclJlcXVlc3RFdmVudCBleHRlbmRzIEJhY29uQmFzZUJyb2tlclJlcXVlc3RFdmVudCB7XHJcblxyXG4gICAga2luZDogQmFjb25CdXNpbmVzc0xheWVyS2luZHMuQmFjb25JT1RQZXJtc1JlcXVlc3RFdmVudCB8IHVuZGVmaW5lZDtcclxuICAgIHVzZXJTdWI6IHN0cmluZyB8IHVuZGVmaW5lZDtcclxuICAgIHBheWxvYWQ6IEJhY29uSU9UUGVybXNSZXF1ZXN0UGF5bG9hZCB8IHVuZGVmaW5lZDtcclxuXHJcbiAgICBjb25zdHJ1Y3RvcigpIHtcclxuICAgICAgICBzdXBlcigpOyAgLy8gbm9uZSBvZiB0aGUgYmFzZSBjbGFzcyBwcm9wZXJ0aWVzIGFyZSBiZWluZyB1c2VkIGV4Y2VwdCBmb3IgdGhlIGtpbmRcclxuICAgIH1cclxufSJdfQ==
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { BaconBaseBrokerRequestEvent } from "../base/BaconBaseBrokerRequestEvent";
|
|
2
2
|
import { BaconBusinessLayerKinds } from "../enums";
|
|
3
3
|
import { BaconIOTPermsRequestPayload } from "../interfaces";
|
|
4
|
-
export
|
|
4
|
+
export declare class BaconIoTPermsBrokerRequestEvent extends BaconBaseBrokerRequestEvent {
|
|
5
5
|
kind: BaconBusinessLayerKinds.BaconIOTPermsRequestEvent | undefined;
|
|
6
6
|
userSub: string | undefined;
|
|
7
7
|
payload: BaconIOTPermsRequestPayload | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adonoustech/bacon-core",
|
|
3
|
-
"version": "1.13.
|
|
3
|
+
"version": "1.13.3",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
6
6
|
"build:es": "tsc -p tsconfig.es.json",
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"bugs": {
|
|
45
45
|
"url": "https://github.com/AdonousTech/bacon-core/issues"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "93f212b9c36bb3b52c9a0647049a763a94bb7e5d"
|
|
48
48
|
}
|
|
@@ -2,13 +2,13 @@ import { BaconBaseBrokerRequestEvent } from "../base/BaconBaseBrokerRequestEvent
|
|
|
2
2
|
import { BaconBusinessLayerKinds } from "../enums";
|
|
3
3
|
import { BaconIOTPermsRequestPayload } from "../interfaces";
|
|
4
4
|
|
|
5
|
-
export
|
|
5
|
+
export class BaconIoTPermsBrokerRequestEvent extends BaconBaseBrokerRequestEvent {
|
|
6
6
|
|
|
7
7
|
kind: BaconBusinessLayerKinds.BaconIOTPermsRequestEvent | undefined;
|
|
8
8
|
userSub: string | undefined;
|
|
9
9
|
payload: BaconIOTPermsRequestPayload | undefined;
|
|
10
10
|
|
|
11
11
|
constructor() {
|
|
12
|
-
super();
|
|
12
|
+
super(); // none of the base class properties are being used except for the kind
|
|
13
13
|
}
|
|
14
14
|
}
|