@adonoustech/bacon-core 1.11.1 → 1.11.2
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/cjs/base/BaconBaseAWSDataReqStr.js +20 -0
- package/dist/cjs/base/BaconBaseActor.js +12 -0
- package/dist/cjs/base/BaconBaseActorFactory.js +27 -0
- package/dist/cjs/base/BaconBaseActorInitTrigSvc.js +42 -0
- package/dist/cjs/base/BaconBaseLoggerEvt.js +8 -0
- package/dist/cjs/base/BaconBaseLoggerEvtFact.js +20 -0
- package/dist/cjs/base/index.js +10 -0
- package/dist/cjs/concrete/Bacon3PClient.js +11 -0
- package/dist/cjs/concrete/BaconAccessLoggerEvent.js +13 -0
- package/dist/cjs/concrete/BaconDDBReqDelStr.js +16 -0
- package/dist/cjs/concrete/BaconDDBReqGetStr.js +16 -0
- package/dist/cjs/concrete/BaconDDBReqPutStr.js +16 -0
- package/dist/cjs/concrete/BaconDDBReqQueryStr.js +16 -0
- package/dist/cjs/concrete/BaconDDBReqUpdateStr.js +16 -0
- package/dist/cjs/concrete/BaconGenericLoggerEvent.js +13 -0
- package/dist/cjs/concrete/BaconSP.js +11 -0
- package/dist/cjs/concrete/BaconSuperAdmin.js +11 -0
- package/dist/cjs/concrete/index.js +14 -0
- package/dist/cjs/constants/bacon-idps.js +5 -0
- package/dist/cjs/constants/index.js +5 -0
- package/dist/cjs/enums/bacon-actor-init-statuses.js +9 -0
- package/dist/cjs/enums/bacon-actor-init-trig-sources.js +31 -0
- package/dist/cjs/enums/bacon-actor-oidc-props.js +37 -0
- package/dist/cjs/enums/bacon-actor-statuses.js +11 -0
- package/dist/cjs/enums/bacon-actor-types.js +14 -0
- package/dist/cjs/enums/bacon-aws-data-req-instructions.js +12 -0
- package/dist/cjs/enums/bacon-aws-regions.js +31 -0
- package/dist/cjs/enums/bacon-bl-kinds.js +10 -0
- package/dist/cjs/enums/bacon-data-layer-kinds.js +12 -0
- package/dist/cjs/enums/bacon-logger-codes.js +14 -0
- package/dist/cjs/enums/bacon-logger-evt-types.js +10 -0
- package/dist/cjs/enums/index.js +15 -0
- package/dist/cjs/index.js +15 -0
- package/dist/cjs/interfaces/i-actor-init-status.js +3 -0
- package/dist/cjs/interfaces/i-actor-init-trig-ctx.js +3 -0
- package/dist/cjs/interfaces/i-actor-init-trig-req.js +3 -0
- package/dist/cjs/interfaces/i-actor-init-trig-resp.js +3 -0
- package/dist/cjs/interfaces/i-actor-init-trig-user-attr.js +3 -0
- package/dist/cjs/interfaces/i-actor-init-trigger-evt.js +3 -0
- package/dist/cjs/interfaces/i-actor-status.js +3 -0
- package/dist/cjs/interfaces/i-oidc-address-claim.js +3 -0
- package/dist/cjs/interfaces/i-oidc-identity.js +3 -0
- package/dist/cjs/interfaces/i-oidc-profile.js +3 -0
- package/dist/cjs/interfaces/index.js +14 -0
- package/dist/cjs/static/Bacon3PClientFactory.js +13 -0
- package/dist/cjs/static/BaconAccessLoggerEvtFactory.js +13 -0
- package/dist/cjs/static/BaconGenericLoggerEvtFactory.js +13 -0
- package/dist/cjs/static/BaconSPFactory.js +13 -0
- package/dist/cjs/static/BaconSuperAdminFactory.js +13 -0
- package/dist/cjs/static/index.js +9 -0
- package/dist/es/base/BaconBaseAWSDataReqStr.js +18 -0
- package/dist/es/base/BaconBaseActor.js +10 -0
- package/dist/es/base/BaconBaseActorFactory.js +26 -0
- package/dist/es/base/BaconBaseActorInitTrigSvc.js +42 -0
- package/dist/es/base/BaconBaseLoggerEvt.js +7 -0
- package/dist/es/base/BaconBaseLoggerEvtFact.js +19 -0
- package/dist/es/base/index.js +7 -0
- package/dist/es/concrete/Bacon3PClient.js +11 -0
- package/dist/es/concrete/BaconAccessLoggerEvent.js +14 -0
- package/dist/es/concrete/BaconDDBReqDelStr.js +16 -0
- package/dist/es/concrete/BaconDDBReqGetStr.js +16 -0
- package/dist/es/concrete/BaconDDBReqPutStr.js +16 -0
- package/dist/es/concrete/BaconDDBReqQueryStr.js +16 -0
- package/dist/es/concrete/BaconDDBReqUpdateStr.js +16 -0
- package/dist/es/concrete/BaconGenericLoggerEvent.js +14 -0
- package/dist/es/concrete/BaconSP.js +11 -0
- package/dist/es/concrete/BaconSuperAdmin.js +11 -0
- package/dist/es/concrete/index.js +11 -0
- package/dist/es/constants/bacon-idps.js +2 -0
- package/dist/es/constants/index.js +2 -0
- package/dist/es/enums/bacon-actor-init-statuses.js +6 -0
- package/dist/es/enums/bacon-actor-init-trig-sources.js +28 -0
- package/dist/es/enums/bacon-actor-oidc-props.js +34 -0
- package/dist/es/enums/bacon-actor-statuses.js +8 -0
- package/dist/es/enums/bacon-actor-types.js +11 -0
- package/dist/es/enums/bacon-aws-data-req-instructions.js +9 -0
- package/dist/es/enums/bacon-aws-regions.js +28 -0
- package/dist/es/enums/bacon-bl-kinds.js +7 -0
- package/dist/es/enums/bacon-data-layer-kinds.js +9 -0
- package/dist/es/enums/bacon-logger-codes.js +11 -0
- package/dist/es/enums/bacon-logger-evt-types.js +7 -0
- package/dist/es/enums/index.js +12 -0
- package/dist/es/index.js +12 -0
- package/dist/es/interfaces/i-actor-init-status.js +2 -0
- package/dist/es/interfaces/i-actor-init-trig-ctx.js +2 -0
- package/dist/es/interfaces/i-actor-init-trig-req.js +2 -0
- package/dist/es/interfaces/i-actor-init-trig-resp.js +2 -0
- package/dist/es/interfaces/i-actor-init-trig-user-attr.js +2 -0
- package/dist/es/interfaces/i-actor-init-trigger-evt.js +2 -0
- package/dist/es/interfaces/i-actor-status.js +2 -0
- package/dist/es/interfaces/i-oidc-address-claim.js +2 -0
- package/dist/es/interfaces/i-oidc-identity.js +2 -0
- package/dist/es/interfaces/i-oidc-profile.js +2 -0
- package/dist/es/interfaces/index.js +11 -0
- package/dist/es/static/Bacon3PClientFactory.js +16 -0
- package/dist/es/static/BaconAccessLoggerEvtFactory.js +16 -0
- package/dist/es/static/BaconGenericLoggerEvtFactory.js +16 -0
- package/dist/es/static/BaconSPFactory.js +16 -0
- package/dist/es/static/BaconSuperAdminFactory.js +16 -0
- package/dist/es/static/index.js +6 -0
- package/package.json +2 -2
- package/tsconfig.json +2 -0
- package/dist/base/BaconBaseAWSDataReqStr.js +0 -18
- package/dist/base/BaconBaseAWSDataReqStr.js.map +0 -1
- package/dist/base/BaconBaseActor.js +0 -10
- package/dist/base/BaconBaseActor.js.map +0 -1
- package/dist/base/BaconBaseActorFactory.js +0 -26
- package/dist/base/BaconBaseActorFactory.js.map +0 -1
- package/dist/base/BaconBaseActorInitTrigSvc.js +0 -42
- package/dist/base/BaconBaseActorInitTrigSvc.js.map +0 -1
- package/dist/base/BaconBaseLoggerEvt.js +0 -7
- package/dist/base/BaconBaseLoggerEvt.js.map +0 -1
- package/dist/base/BaconBaseLoggerEvtFact.js +0 -19
- package/dist/base/BaconBaseLoggerEvtFact.js.map +0 -1
- package/dist/base/index.js +0 -7
- package/dist/base/index.js.map +0 -1
- package/dist/concrete/Bacon3PClient.js +0 -25
- package/dist/concrete/Bacon3PClient.js.map +0 -1
- package/dist/concrete/BaconAccessLoggerEvent.js +0 -28
- package/dist/concrete/BaconAccessLoggerEvent.js.map +0 -1
- package/dist/concrete/BaconDDBReqDelStr.js +0 -30
- package/dist/concrete/BaconDDBReqDelStr.js.map +0 -1
- package/dist/concrete/BaconDDBReqGetStr.js +0 -30
- package/dist/concrete/BaconDDBReqGetStr.js.map +0 -1
- package/dist/concrete/BaconDDBReqPutStr.js +0 -30
- package/dist/concrete/BaconDDBReqPutStr.js.map +0 -1
- package/dist/concrete/BaconDDBReqQueryStr.js +0 -30
- package/dist/concrete/BaconDDBReqQueryStr.js.map +0 -1
- package/dist/concrete/BaconDDBReqUpdateStr.js +0 -30
- package/dist/concrete/BaconDDBReqUpdateStr.js.map +0 -1
- package/dist/concrete/BaconGenericLoggerEvent.js +0 -28
- package/dist/concrete/BaconGenericLoggerEvent.js.map +0 -1
- package/dist/concrete/BaconSP.js +0 -25
- package/dist/concrete/BaconSP.js.map +0 -1
- package/dist/concrete/BaconSuperAdmin.js +0 -25
- package/dist/concrete/BaconSuperAdmin.js.map +0 -1
- package/dist/concrete/index.js +0 -11
- package/dist/concrete/index.js.map +0 -1
- package/dist/constants/bacon-idps.js +0 -2
- package/dist/constants/bacon-idps.js.map +0 -1
- package/dist/constants/index.js +0 -2
- package/dist/constants/index.js.map +0 -1
- package/dist/enums/bacon-actor-init-statuses.js +0 -2
- package/dist/enums/bacon-actor-init-statuses.js.map +0 -1
- package/dist/enums/bacon-actor-init-trig-sources.js +0 -2
- package/dist/enums/bacon-actor-init-trig-sources.js.map +0 -1
- package/dist/enums/bacon-actor-oidc-props.js +0 -2
- package/dist/enums/bacon-actor-oidc-props.js.map +0 -1
- package/dist/enums/bacon-actor-statuses.js +0 -2
- package/dist/enums/bacon-actor-statuses.js.map +0 -1
- package/dist/enums/bacon-actor-types.js +0 -2
- package/dist/enums/bacon-actor-types.js.map +0 -1
- package/dist/enums/bacon-aws-data-req-instructions.js +0 -2
- package/dist/enums/bacon-aws-data-req-instructions.js.map +0 -1
- package/dist/enums/bacon-aws-regions.js +0 -2
- package/dist/enums/bacon-aws-regions.js.map +0 -1
- package/dist/enums/bacon-bl-kinds.js +0 -2
- package/dist/enums/bacon-bl-kinds.js.map +0 -1
- package/dist/enums/bacon-data-layer-kinds.js +0 -2
- package/dist/enums/bacon-data-layer-kinds.js.map +0 -1
- package/dist/enums/bacon-logger-codes.js +0 -2
- package/dist/enums/bacon-logger-codes.js.map +0 -1
- package/dist/enums/bacon-logger-evt-types.js +0 -2
- package/dist/enums/bacon-logger-evt-types.js.map +0 -1
- package/dist/enums/index.js +0 -12
- package/dist/enums/index.js.map +0 -1
- package/dist/index.js +0 -12
- package/dist/index.js.map +0 -1
- package/dist/interfaces/i-actor-init-status.js +0 -2
- package/dist/interfaces/i-actor-init-status.js.map +0 -1
- package/dist/interfaces/i-actor-init-trig-ctx.js +0 -2
- package/dist/interfaces/i-actor-init-trig-ctx.js.map +0 -1
- package/dist/interfaces/i-actor-init-trig-req.js +0 -2
- package/dist/interfaces/i-actor-init-trig-req.js.map +0 -1
- package/dist/interfaces/i-actor-init-trig-resp.js +0 -2
- package/dist/interfaces/i-actor-init-trig-resp.js.map +0 -1
- package/dist/interfaces/i-actor-init-trig-user-attr.js +0 -2
- package/dist/interfaces/i-actor-init-trig-user-attr.js.map +0 -1
- package/dist/interfaces/i-actor-init-trigger-evt.js +0 -2
- package/dist/interfaces/i-actor-init-trigger-evt.js.map +0 -1
- package/dist/interfaces/i-actor-status.js +0 -2
- package/dist/interfaces/i-actor-status.js.map +0 -1
- package/dist/interfaces/i-oidc-address-claim.js +0 -2
- package/dist/interfaces/i-oidc-address-claim.js.map +0 -1
- package/dist/interfaces/i-oidc-identity.js +0 -2
- package/dist/interfaces/i-oidc-identity.js.map +0 -1
- package/dist/interfaces/i-oidc-profile.js +0 -2
- package/dist/interfaces/i-oidc-profile.js.map +0 -1
- package/dist/interfaces/index.js +0 -11
- package/dist/interfaces/index.js.map +0 -1
- package/dist/static/Bacon3PClientFactory.js +0 -30
- package/dist/static/Bacon3PClientFactory.js.map +0 -1
- package/dist/static/BaconAccessLoggerEvtFactory.js +0 -30
- package/dist/static/BaconAccessLoggerEvtFactory.js.map +0 -1
- package/dist/static/BaconGenericLoggerEvtFactory.js +0 -30
- package/dist/static/BaconGenericLoggerEvtFactory.js.map +0 -1
- package/dist/static/BaconSPFactory.js +0 -30
- package/dist/static/BaconSPFactory.js.map +0 -1
- package/dist/static/BaconSuperAdminFactory.js +0 -30
- package/dist/static/BaconSuperAdminFactory.js.map +0 -1
- package/dist/static/index.js +0 -6
- package/dist/static/index.js.map +0 -1
- /package/dist/{base → types/base}/BaconBaseAWSDataReqStr.d.ts +0 -0
- /package/dist/{base → types/base}/BaconBaseActor.d.ts +0 -0
- /package/dist/{base → types/base}/BaconBaseActorFactory.d.ts +0 -0
- /package/dist/{base → types/base}/BaconBaseActorInitTrigSvc.d.ts +0 -0
- /package/dist/{base → types/base}/BaconBaseLoggerEvt.d.ts +0 -0
- /package/dist/{base → types/base}/BaconBaseLoggerEvtFact.d.ts +0 -0
- /package/dist/{base → types/base}/index.d.ts +0 -0
- /package/dist/{concrete → types/concrete}/Bacon3PClient.d.ts +0 -0
- /package/dist/{concrete → types/concrete}/BaconAccessLoggerEvent.d.ts +0 -0
- /package/dist/{concrete → types/concrete}/BaconDDBReqDelStr.d.ts +0 -0
- /package/dist/{concrete → types/concrete}/BaconDDBReqGetStr.d.ts +0 -0
- /package/dist/{concrete → types/concrete}/BaconDDBReqPutStr.d.ts +0 -0
- /package/dist/{concrete → types/concrete}/BaconDDBReqQueryStr.d.ts +0 -0
- /package/dist/{concrete → types/concrete}/BaconDDBReqUpdateStr.d.ts +0 -0
- /package/dist/{concrete → types/concrete}/BaconGenericLoggerEvent.d.ts +0 -0
- /package/dist/{concrete → types/concrete}/BaconSP.d.ts +0 -0
- /package/dist/{concrete → types/concrete}/BaconSuperAdmin.d.ts +0 -0
- /package/dist/{concrete → types/concrete}/index.d.ts +0 -0
- /package/dist/{constants → types/constants}/bacon-idps.d.ts +0 -0
- /package/dist/{constants → types/constants}/index.d.ts +0 -0
- /package/dist/{enums → types/enums}/bacon-actor-init-statuses.d.ts +0 -0
- /package/dist/{enums → types/enums}/bacon-actor-init-trig-sources.d.ts +0 -0
- /package/dist/{enums → types/enums}/bacon-actor-oidc-props.d.ts +0 -0
- /package/dist/{enums → types/enums}/bacon-actor-statuses.d.ts +0 -0
- /package/dist/{enums → types/enums}/bacon-actor-types.d.ts +0 -0
- /package/dist/{enums → types/enums}/bacon-aws-data-req-instructions.d.ts +0 -0
- /package/dist/{enums → types/enums}/bacon-aws-regions.d.ts +0 -0
- /package/dist/{enums → types/enums}/bacon-bl-kinds.d.ts +0 -0
- /package/dist/{enums → types/enums}/bacon-data-layer-kinds.d.ts +0 -0
- /package/dist/{enums → types/enums}/bacon-logger-codes.d.ts +0 -0
- /package/dist/{enums → types/enums}/bacon-logger-evt-types.d.ts +0 -0
- /package/dist/{enums → types/enums}/index.d.ts +0 -0
- /package/dist/{index.d.ts → types/index.d.ts} +0 -0
- /package/dist/{interfaces → types/interfaces}/i-actor-init-status.d.ts +0 -0
- /package/dist/{interfaces → types/interfaces}/i-actor-init-trig-ctx.d.ts +0 -0
- /package/dist/{interfaces → types/interfaces}/i-actor-init-trig-req.d.ts +0 -0
- /package/dist/{interfaces → types/interfaces}/i-actor-init-trig-resp.d.ts +0 -0
- /package/dist/{interfaces → types/interfaces}/i-actor-init-trig-user-attr.d.ts +0 -0
- /package/dist/{interfaces → types/interfaces}/i-actor-init-trigger-evt.d.ts +0 -0
- /package/dist/{interfaces → types/interfaces}/i-actor-status.d.ts +0 -0
- /package/dist/{interfaces → types/interfaces}/i-oidc-address-claim.d.ts +0 -0
- /package/dist/{interfaces → types/interfaces}/i-oidc-identity.d.ts +0 -0
- /package/dist/{interfaces → types/interfaces}/i-oidc-profile.d.ts +0 -0
- /package/dist/{interfaces → types/interfaces}/index.d.ts +0 -0
- /package/dist/{static → types/static}/Bacon3PClientFactory.d.ts +0 -0
- /package/dist/{static → types/static}/BaconAccessLoggerEvtFactory.d.ts +0 -0
- /package/dist/{static → types/static}/BaconGenericLoggerEvtFactory.d.ts +0 -0
- /package/dist/{static → types/static}/BaconSPFactory.d.ts +0 -0
- /package/dist/{static → types/static}/BaconSuperAdminFactory.d.ts +0 -0
- /package/dist/{static → types/static}/index.d.ts +0 -0
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
var __extends = (this && this.__extends) || (function () {
|
|
2
|
-
var extendStatics = function (d, b) {
|
|
3
|
-
extendStatics = Object.setPrototypeOf ||
|
|
4
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
5
|
-
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
6
|
-
return extendStatics(d, b);
|
|
7
|
-
};
|
|
8
|
-
return function (d, b) {
|
|
9
|
-
if (typeof b !== "function" && b !== null)
|
|
10
|
-
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
11
|
-
extendStatics(d, b);
|
|
12
|
-
function __() { this.constructor = d; }
|
|
13
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
14
|
-
};
|
|
15
|
-
})();
|
|
16
|
-
import { BaconBaseActor } from "../base/BaconBaseActor";
|
|
17
|
-
var Bacon3PClient = /** @class */ (function (_super) {
|
|
18
|
-
__extends(Bacon3PClient, _super);
|
|
19
|
-
function Bacon3PClient(profile) {
|
|
20
|
-
return _super.call(this, profile) || this;
|
|
21
|
-
}
|
|
22
|
-
return Bacon3PClient;
|
|
23
|
-
}(BaconBaseActor));
|
|
24
|
-
export { Bacon3PClient };
|
|
25
|
-
//# sourceMappingURL=Bacon3PClient.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Bacon3PClient.js","sourceRoot":"","sources":["../../src/concrete/Bacon3PClient.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC;AAGxD;IAAmC,iCAAc;IAC7C,uBAAY,OAAqB;eAC7B,kBAAM,OAAO,CAAC;IAClB,CAAC;IAGL,oBAAC;AAAD,CAAC,AAND,CAAmC,cAAc,GAMhD"}
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
var __extends = (this && this.__extends) || (function () {
|
|
2
|
-
var extendStatics = function (d, b) {
|
|
3
|
-
extendStatics = Object.setPrototypeOf ||
|
|
4
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
5
|
-
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
6
|
-
return extendStatics(d, b);
|
|
7
|
-
};
|
|
8
|
-
return function (d, b) {
|
|
9
|
-
if (typeof b !== "function" && b !== null)
|
|
10
|
-
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
11
|
-
extendStatics(d, b);
|
|
12
|
-
function __() { this.constructor = d; }
|
|
13
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
14
|
-
};
|
|
15
|
-
})();
|
|
16
|
-
import { BaconBaseLoggerEvent } from "../base/BaconBaseLoggerEvt";
|
|
17
|
-
var BaconAccessLoggerEvent = /** @class */ (function (_super) {
|
|
18
|
-
__extends(BaconAccessLoggerEvent, _super);
|
|
19
|
-
function BaconAccessLoggerEvent() {
|
|
20
|
-
var _this = _super.call(this) || this;
|
|
21
|
-
_this.eventType = "access" /* BaconLoggerEventTypes.ACCESS */;
|
|
22
|
-
_this.kind = "BaconAccessLoggerEvent" /* BaconBusinessLayerKinds.BaconAccessLoggerEvent */;
|
|
23
|
-
return _this;
|
|
24
|
-
}
|
|
25
|
-
return BaconAccessLoggerEvent;
|
|
26
|
-
}(BaconBaseLoggerEvent));
|
|
27
|
-
export { BaconAccessLoggerEvent };
|
|
28
|
-
//# sourceMappingURL=BaconAccessLoggerEvent.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"BaconAccessLoggerEvent.js","sourceRoot":"","sources":["../../src/concrete/BaconAccessLoggerEvent.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,4BAA4B,CAAC;AAGlE;IAA4C,0CAAoB;IAC5D;QAAA,YACI,iBAAO,SAGV;QAFG,KAAI,CAAC,SAAS,8CAA+B,CAAC;QAC9C,KAAI,CAAC,IAAI,gFAAiD,CAAC;;IAC/D,CAAC;IACL,6BAAC;AAAD,CAAC,AAND,CAA4C,oBAAoB,GAM/D"}
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
var __extends = (this && this.__extends) || (function () {
|
|
2
|
-
var extendStatics = function (d, b) {
|
|
3
|
-
extendStatics = Object.setPrototypeOf ||
|
|
4
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
5
|
-
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
6
|
-
return extendStatics(d, b);
|
|
7
|
-
};
|
|
8
|
-
return function (d, b) {
|
|
9
|
-
if (typeof b !== "function" && b !== null)
|
|
10
|
-
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
11
|
-
extendStatics(d, b);
|
|
12
|
-
function __() { this.constructor = d; }
|
|
13
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
14
|
-
};
|
|
15
|
-
})();
|
|
16
|
-
import { BaconBaseAWSDataRequestStrategy } from '../base/BaconBaseAWSDataReqStr';
|
|
17
|
-
var BaconDDBDataRequestDeleteStrategy = /** @class */ (function (_super) {
|
|
18
|
-
__extends(BaconDDBDataRequestDeleteStrategy, _super);
|
|
19
|
-
/**
|
|
20
|
-
*Creates an instance of BaconDDBDataRequestDeleteStrategy.
|
|
21
|
-
* @param {DeleteItemCommandInput} inputCommand
|
|
22
|
-
* @memberof BaconDDBDataRequestDeleteStrategy
|
|
23
|
-
*/
|
|
24
|
-
function BaconDDBDataRequestDeleteStrategy(inputCommand) {
|
|
25
|
-
return _super.call(this, "delete" /* BaconAWSDataRequestInstructions.DELETE */, "BaconDDBDataRequestDeleteStrategy" /* BaconDataLayerKinds.BaconDDBDataRequestDeleteStrategy */, inputCommand) || this;
|
|
26
|
-
}
|
|
27
|
-
return BaconDDBDataRequestDeleteStrategy;
|
|
28
|
-
}(BaconBaseAWSDataRequestStrategy));
|
|
29
|
-
export { BaconDDBDataRequestDeleteStrategy };
|
|
30
|
-
//# sourceMappingURL=BaconDDBReqDelStr.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"BaconDDBReqDelStr.js","sourceRoot":"","sources":["../../src/concrete/BaconDDBReqDelStr.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AACA,OAAO,EAAE,+BAA+B,EAAE,MAAM,gCAAgC,CAAC;AAIjF;IAAuD,qDAA+B;IAElF;;;;OAIG;IACH,2CAAY,YAAoC;eAC5C,0KAEM,YAAY,CAAC;IACvB,CAAC;IAEL,wCAAC;AAAD,CAAC,AAbD,CAAuD,+BAA+B,GAarF"}
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
var __extends = (this && this.__extends) || (function () {
|
|
2
|
-
var extendStatics = function (d, b) {
|
|
3
|
-
extendStatics = Object.setPrototypeOf ||
|
|
4
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
5
|
-
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
6
|
-
return extendStatics(d, b);
|
|
7
|
-
};
|
|
8
|
-
return function (d, b) {
|
|
9
|
-
if (typeof b !== "function" && b !== null)
|
|
10
|
-
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
11
|
-
extendStatics(d, b);
|
|
12
|
-
function __() { this.constructor = d; }
|
|
13
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
14
|
-
};
|
|
15
|
-
})();
|
|
16
|
-
import { BaconBaseAWSDataRequestStrategy } from '../base/BaconBaseAWSDataReqStr';
|
|
17
|
-
var BaconDDBDataRequestGetStrategy = /** @class */ (function (_super) {
|
|
18
|
-
__extends(BaconDDBDataRequestGetStrategy, _super);
|
|
19
|
-
/**
|
|
20
|
-
*Creates an instance of BaconDDBDataRequestGetStrategy.
|
|
21
|
-
* @param {QueryCommandInput} inputCommand
|
|
22
|
-
* @memberof BaconDDBDataRequestGetStrategy
|
|
23
|
-
*/
|
|
24
|
-
function BaconDDBDataRequestGetStrategy(inputCommand) {
|
|
25
|
-
return _super.call(this, "query" /* BaconAWSDataRequestInstructions.QUERY */, "BaconDDBDataRequestQueryStrategy" /* BaconDataLayerKinds.BaconDDBDataRequestQueryStrategy */, inputCommand) || this;
|
|
26
|
-
}
|
|
27
|
-
return BaconDDBDataRequestGetStrategy;
|
|
28
|
-
}(BaconBaseAWSDataRequestStrategy));
|
|
29
|
-
export { BaconDDBDataRequestGetStrategy };
|
|
30
|
-
//# sourceMappingURL=BaconDDBReqGetStr.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"BaconDDBReqGetStr.js","sourceRoot":"","sources":["../../src/concrete/BaconDDBReqGetStr.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AACA,OAAO,EAAE,+BAA+B,EAAE,MAAM,gCAAgC,CAAC;AAIjF;IAAoD,kDAA+B;IAE/E;;;;OAIG;IACH,wCAAa,YAA+B;eACxC,sKAEM,YAAY,CAAC;IACvB,CAAC;IAEL,qCAAC;AAAD,CAAC,AAbD,CAAoD,+BAA+B,GAalF"}
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
var __extends = (this && this.__extends) || (function () {
|
|
2
|
-
var extendStatics = function (d, b) {
|
|
3
|
-
extendStatics = Object.setPrototypeOf ||
|
|
4
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
5
|
-
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
6
|
-
return extendStatics(d, b);
|
|
7
|
-
};
|
|
8
|
-
return function (d, b) {
|
|
9
|
-
if (typeof b !== "function" && b !== null)
|
|
10
|
-
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
11
|
-
extendStatics(d, b);
|
|
12
|
-
function __() { this.constructor = d; }
|
|
13
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
14
|
-
};
|
|
15
|
-
})();
|
|
16
|
-
import { BaconBaseAWSDataRequestStrategy } from '../base/BaconBaseAWSDataReqStr';
|
|
17
|
-
var BaconDDBDataRequestPutStrategy = /** @class */ (function (_super) {
|
|
18
|
-
__extends(BaconDDBDataRequestPutStrategy, _super);
|
|
19
|
-
/**
|
|
20
|
-
*Creates an instance of BaconDDBDataRequestPutStrategy.
|
|
21
|
-
* @param {PutItemCommandInput} inputCommand
|
|
22
|
-
* @memberof BaconDDBDataRequestPutStrategy
|
|
23
|
-
*/
|
|
24
|
-
function BaconDDBDataRequestPutStrategy(inputCommand) {
|
|
25
|
-
return _super.call(this, "put" /* BaconAWSDataRequestInstructions.PUT */, "BaconDDBDataRequestPutStrategy" /* BaconDataLayerKinds.BaconDDBDataRequestPutStrategy */, inputCommand) || this;
|
|
26
|
-
}
|
|
27
|
-
return BaconDDBDataRequestPutStrategy;
|
|
28
|
-
}(BaconBaseAWSDataRequestStrategy));
|
|
29
|
-
export { BaconDDBDataRequestPutStrategy };
|
|
30
|
-
//# sourceMappingURL=BaconDDBReqPutStr.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"BaconDDBReqPutStr.js","sourceRoot":"","sources":["../../src/concrete/BaconDDBReqPutStr.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AACA,OAAO,EAAE,+BAA+B,EAAE,MAAM,gCAAgC,CAAC;AAIjF;IAAoD,kDAA+B;IAE/E;;;;OAIG;IACH,wCAAY,YAAiC;eACzC,8JAEM,YAAY,CACb;IACT,CAAC;IAEL,qCAAC;AAAD,CAAC,AAdD,CAAoD,+BAA+B,GAclF"}
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
var __extends = (this && this.__extends) || (function () {
|
|
2
|
-
var extendStatics = function (d, b) {
|
|
3
|
-
extendStatics = Object.setPrototypeOf ||
|
|
4
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
5
|
-
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
6
|
-
return extendStatics(d, b);
|
|
7
|
-
};
|
|
8
|
-
return function (d, b) {
|
|
9
|
-
if (typeof b !== "function" && b !== null)
|
|
10
|
-
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
11
|
-
extendStatics(d, b);
|
|
12
|
-
function __() { this.constructor = d; }
|
|
13
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
14
|
-
};
|
|
15
|
-
})();
|
|
16
|
-
import { BaconBaseAWSDataRequestStrategy } from '../base/BaconBaseAWSDataReqStr';
|
|
17
|
-
var BaconDDBDataRequestQueryStrategy = /** @class */ (function (_super) {
|
|
18
|
-
__extends(BaconDDBDataRequestQueryStrategy, _super);
|
|
19
|
-
/**
|
|
20
|
-
*Creates an instance of BaconDDBDataRequestQueryStrategy.
|
|
21
|
-
* @param {QueryCommandInput} inputCommand
|
|
22
|
-
* @memberof BaconDDBDataRequestQueryStrategy
|
|
23
|
-
*/
|
|
24
|
-
function BaconDDBDataRequestQueryStrategy(inputCommand) {
|
|
25
|
-
return _super.call(this, "query" /* BaconAWSDataRequestInstructions.QUERY */, "BaconDDBDataRequestQueryStrategy" /* BaconDataLayerKinds.BaconDDBDataRequestQueryStrategy */, inputCommand) || this;
|
|
26
|
-
}
|
|
27
|
-
return BaconDDBDataRequestQueryStrategy;
|
|
28
|
-
}(BaconBaseAWSDataRequestStrategy));
|
|
29
|
-
export { BaconDDBDataRequestQueryStrategy };
|
|
30
|
-
//# sourceMappingURL=BaconDDBReqQueryStr.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"BaconDDBReqQueryStr.js","sourceRoot":"","sources":["../../src/concrete/BaconDDBReqQueryStr.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AACA,OAAO,EAAE,+BAA+B,EAAE,MAAM,gCAAgC,CAAC;AAIjF;IAAsD,oDAA+B;IAEjF;;;;OAIG;IACH,0CAAY,YAA+B;eACvC,sKAEI,YAAY,CAAC;IACrB,CAAC;IAEL,uCAAC;AAAD,CAAC,AAbD,CAAsD,+BAA+B,GAapF"}
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
var __extends = (this && this.__extends) || (function () {
|
|
2
|
-
var extendStatics = function (d, b) {
|
|
3
|
-
extendStatics = Object.setPrototypeOf ||
|
|
4
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
5
|
-
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
6
|
-
return extendStatics(d, b);
|
|
7
|
-
};
|
|
8
|
-
return function (d, b) {
|
|
9
|
-
if (typeof b !== "function" && b !== null)
|
|
10
|
-
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
11
|
-
extendStatics(d, b);
|
|
12
|
-
function __() { this.constructor = d; }
|
|
13
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
14
|
-
};
|
|
15
|
-
})();
|
|
16
|
-
import { BaconBaseAWSDataRequestStrategy } from '../base/BaconBaseAWSDataReqStr';
|
|
17
|
-
var BaconDDBDataRequestUpdateStrategy = /** @class */ (function (_super) {
|
|
18
|
-
__extends(BaconDDBDataRequestUpdateStrategy, _super);
|
|
19
|
-
/**
|
|
20
|
-
*Creates an instance of BaconDDBDataRequestUpdateStrategy.
|
|
21
|
-
* @param {UpdateItemCommandInput} inputCommand
|
|
22
|
-
* @memberof BaconDDBDataRequestUpdateStrategy
|
|
23
|
-
*/
|
|
24
|
-
function BaconDDBDataRequestUpdateStrategy(inputCommand) {
|
|
25
|
-
return _super.call(this, "update" /* BaconAWSDataRequestInstructions.UPDATE */, "BaconDDBDataRequestUpdateStrategy" /* BaconDataLayerKinds.BaconDDBDataRequestUpdateStrategy */, inputCommand) || this;
|
|
26
|
-
}
|
|
27
|
-
return BaconDDBDataRequestUpdateStrategy;
|
|
28
|
-
}(BaconBaseAWSDataRequestStrategy));
|
|
29
|
-
export { BaconDDBDataRequestUpdateStrategy };
|
|
30
|
-
//# sourceMappingURL=BaconDDBReqUpdateStr.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"BaconDDBReqUpdateStr.js","sourceRoot":"","sources":["../../src/concrete/BaconDDBReqUpdateStr.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AACA,OAAO,EAAE,+BAA+B,EAAE,MAAM,gCAAgC,CAAC;AAIjF;IAAuD,qDAA+B;IAElF;;;;OAIG;IACH,2CAAY,YAAoC;eAE5C,0KAEM,YAAY,CAAC;IACvB,CAAC;IAEL,wCAAC;AAAD,CAAC,AAdD,CAAuD,+BAA+B,GAcrF"}
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
var __extends = (this && this.__extends) || (function () {
|
|
2
|
-
var extendStatics = function (d, b) {
|
|
3
|
-
extendStatics = Object.setPrototypeOf ||
|
|
4
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
5
|
-
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
6
|
-
return extendStatics(d, b);
|
|
7
|
-
};
|
|
8
|
-
return function (d, b) {
|
|
9
|
-
if (typeof b !== "function" && b !== null)
|
|
10
|
-
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
11
|
-
extendStatics(d, b);
|
|
12
|
-
function __() { this.constructor = d; }
|
|
13
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
14
|
-
};
|
|
15
|
-
})();
|
|
16
|
-
import { BaconBaseLoggerEvent } from "../base/BaconBaseLoggerEvt";
|
|
17
|
-
var BaconGenericLoggerEvent = /** @class */ (function (_super) {
|
|
18
|
-
__extends(BaconGenericLoggerEvent, _super);
|
|
19
|
-
function BaconGenericLoggerEvent() {
|
|
20
|
-
var _this = _super.call(this) || this;
|
|
21
|
-
_this.eventType = "generic" /* BaconLoggerEventTypes.GENERIC */;
|
|
22
|
-
_this.kind = "BaconGenericLoggerEvent" /* BaconBusinessLayerKinds.BaconGenericLoggerEvent */;
|
|
23
|
-
return _this;
|
|
24
|
-
}
|
|
25
|
-
return BaconGenericLoggerEvent;
|
|
26
|
-
}(BaconBaseLoggerEvent));
|
|
27
|
-
export { BaconGenericLoggerEvent };
|
|
28
|
-
//# sourceMappingURL=BaconGenericLoggerEvent.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"BaconGenericLoggerEvent.js","sourceRoot":"","sources":["../../src/concrete/BaconGenericLoggerEvent.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,4BAA4B,CAAC;AAGlE;IAA6C,2CAAoB;IAC7D;QAAA,YACI,iBAAO,SAGV;QAFG,KAAI,CAAC,SAAS,gDAAgC,CAAC;QAC/C,KAAI,CAAC,IAAI,kFAAkD,CAAC;;IAChE,CAAC;IACL,8BAAC;AAAD,CAAC,AAND,CAA6C,oBAAoB,GAMhE"}
|
package/dist/concrete/BaconSP.js
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
var __extends = (this && this.__extends) || (function () {
|
|
2
|
-
var extendStatics = function (d, b) {
|
|
3
|
-
extendStatics = Object.setPrototypeOf ||
|
|
4
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
5
|
-
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
6
|
-
return extendStatics(d, b);
|
|
7
|
-
};
|
|
8
|
-
return function (d, b) {
|
|
9
|
-
if (typeof b !== "function" && b !== null)
|
|
10
|
-
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
11
|
-
extendStatics(d, b);
|
|
12
|
-
function __() { this.constructor = d; }
|
|
13
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
14
|
-
};
|
|
15
|
-
})();
|
|
16
|
-
import { BaconBaseActor } from "../base/BaconBaseActor";
|
|
17
|
-
var BaconSP = /** @class */ (function (_super) {
|
|
18
|
-
__extends(BaconSP, _super);
|
|
19
|
-
function BaconSP(profile) {
|
|
20
|
-
return _super.call(this, profile) || this;
|
|
21
|
-
}
|
|
22
|
-
return BaconSP;
|
|
23
|
-
}(BaconBaseActor));
|
|
24
|
-
export { BaconSP };
|
|
25
|
-
//# sourceMappingURL=BaconSP.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"BaconSP.js","sourceRoot":"","sources":["../../src/concrete/BaconSP.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC;AAGxD;IAA6B,2BAAc;IACvC,iBAAY,OAAqB;eAC7B,kBAAM,OAAO,CAAC;IAClB,CAAC;IAGL,cAAC;AAAD,CAAC,AAND,CAA6B,cAAc,GAM1C"}
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
var __extends = (this && this.__extends) || (function () {
|
|
2
|
-
var extendStatics = function (d, b) {
|
|
3
|
-
extendStatics = Object.setPrototypeOf ||
|
|
4
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
5
|
-
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
6
|
-
return extendStatics(d, b);
|
|
7
|
-
};
|
|
8
|
-
return function (d, b) {
|
|
9
|
-
if (typeof b !== "function" && b !== null)
|
|
10
|
-
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
11
|
-
extendStatics(d, b);
|
|
12
|
-
function __() { this.constructor = d; }
|
|
13
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
14
|
-
};
|
|
15
|
-
})();
|
|
16
|
-
import { BaconBaseActor } from "../base/BaconBaseActor";
|
|
17
|
-
var BaconSuperAdmin = /** @class */ (function (_super) {
|
|
18
|
-
__extends(BaconSuperAdmin, _super);
|
|
19
|
-
function BaconSuperAdmin(profile) {
|
|
20
|
-
return _super.call(this, profile) || this;
|
|
21
|
-
}
|
|
22
|
-
return BaconSuperAdmin;
|
|
23
|
-
}(BaconBaseActor));
|
|
24
|
-
export { BaconSuperAdmin };
|
|
25
|
-
//# sourceMappingURL=BaconSuperAdmin.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"BaconSuperAdmin.js","sourceRoot":"","sources":["../../src/concrete/BaconSuperAdmin.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC;AAGxD;IAAqC,mCAAc;IAC/C,yBAAY,OAAqB;eAC7B,kBAAM,OAAO,CAAC;IAClB,CAAC;IAGL,sBAAC;AAAD,CAAC,AAND,CAAqC,cAAc,GAMlD"}
|
package/dist/concrete/index.js
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
export * from './Bacon3PClient';
|
|
2
|
-
export * from './BaconAccessLoggerEvent';
|
|
3
|
-
export * from './BaconDDBReqDelStr';
|
|
4
|
-
export * from './BaconDDBReqGetStr';
|
|
5
|
-
export * from './BaconDDBReqPutStr';
|
|
6
|
-
export * from './BaconDDBReqQueryStr';
|
|
7
|
-
export * from './BaconDDBReqUpdateStr';
|
|
8
|
-
export * from './BaconSP';
|
|
9
|
-
export * from './BaconSuperAdmin';
|
|
10
|
-
export * from './BaconGenericLoggerEvent';
|
|
11
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/concrete/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAC;AAChC,cAAc,0BAA0B,CAAC;AACzC,cAAc,qBAAqB,CAAC;AACpC,cAAc,qBAAqB,CAAC;AACpC,cAAc,qBAAqB,CAAC;AACpC,cAAc,uBAAuB,CAAC;AACtC,cAAc,wBAAwB,CAAC;AACvC,cAAc,WAAW,CAAC;AAC1B,cAAc,mBAAmB,CAAC;AAClC,cAAc,2BAA2B,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"bacon-idps.js","sourceRoot":"","sources":["../../src/constants/bacon-idps.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,IAAM,SAAS,GAAG,CAAC,QAAQ,CAAC,CAAA"}
|
package/dist/constants/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/constants/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"bacon-actor-init-statuses.js","sourceRoot":"","sources":["../../src/enums/bacon-actor-init-statuses.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"bacon-actor-init-trig-sources.js","sourceRoot":"","sources":["../../src/enums/bacon-actor-init-trig-sources.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"bacon-actor-oidc-props.js","sourceRoot":"","sources":["../../src/enums/bacon-actor-oidc-props.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"bacon-actor-statuses.js","sourceRoot":"","sources":["../../src/enums/bacon-actor-statuses.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"bacon-actor-types.js","sourceRoot":"","sources":["../../src/enums/bacon-actor-types.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"bacon-aws-data-req-instructions.js","sourceRoot":"","sources":["../../src/enums/bacon-aws-data-req-instructions.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"bacon-aws-regions.js","sourceRoot":"","sources":["../../src/enums/bacon-aws-regions.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"bacon-bl-kinds.js","sourceRoot":"","sources":["../../src/enums/bacon-bl-kinds.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"bacon-data-layer-kinds.js","sourceRoot":"","sources":["../../src/enums/bacon-data-layer-kinds.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"bacon-logger-codes.js","sourceRoot":"","sources":["../../src/enums/bacon-logger-codes.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"bacon-logger-evt-types.js","sourceRoot":"","sources":["../../src/enums/bacon-logger-evt-types.ts"],"names":[],"mappings":""}
|
package/dist/enums/index.js
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
export * from './bacon-actor-init-statuses';
|
|
2
|
-
export * from './bacon-actor-init-trig-sources';
|
|
3
|
-
export * from './bacon-actor-oidc-props';
|
|
4
|
-
export * from './bacon-actor-statuses';
|
|
5
|
-
export * from './bacon-actor-types';
|
|
6
|
-
export * from './bacon-aws-data-req-instructions';
|
|
7
|
-
export * from './bacon-aws-regions';
|
|
8
|
-
export * from './bacon-bl-kinds';
|
|
9
|
-
export * from './bacon-data-layer-kinds';
|
|
10
|
-
export * from './bacon-logger-codes';
|
|
11
|
-
export * from './bacon-logger-evt-types';
|
|
12
|
-
//# sourceMappingURL=index.js.map
|
package/dist/enums/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/enums/index.ts"],"names":[],"mappings":"AAAA,cAAc,6BAA6B,CAAC;AAC5C,cAAc,iCAAiC,CAAC;AAChD,cAAc,0BAA0B,CAAC;AACzC,cAAc,wBAAwB,CAAC;AACvC,cAAc,qBAAqB,CAAC;AACpC,cAAc,mCAAmC,CAAC;AAClD,cAAc,qBAAqB,CAAC;AACpC,cAAc,kBAAkB,CAAC;AACjC,cAAc,0BAA0B,CAAC;AACzC,cAAc,sBAAsB,CAAC;AACrC,cAAc,0BAA0B,CAAC"}
|
package/dist/index.js
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Bacon Core
|
|
3
|
-
*
|
|
4
|
-
* @module bacon-core
|
|
5
|
-
*/
|
|
6
|
-
export * from './base';
|
|
7
|
-
export * from './concrete';
|
|
8
|
-
export * from './constants';
|
|
9
|
-
export * from './enums';
|
|
10
|
-
export * from './interfaces';
|
|
11
|
-
export * from './static';
|
|
12
|
-
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;EAIE;AAEF,cAAc,QAAQ,CAAC;AACvB,cAAc,YAAY,CAAC;AAC3B,cAAc,aAAa,CAAC;AAC5B,cAAc,SAAS,CAAC;AACxB,cAAc,cAAc,CAAC;AAC7B,cAAc,UAAU,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"i-actor-init-status.js","sourceRoot":"","sources":["../../src/interfaces/i-actor-init-status.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"i-actor-init-trig-ctx.js","sourceRoot":"","sources":["../../src/interfaces/i-actor-init-trig-ctx.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"i-actor-init-trig-req.js","sourceRoot":"","sources":["../../src/interfaces/i-actor-init-trig-req.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"i-actor-init-trig-resp.js","sourceRoot":"","sources":["../../src/interfaces/i-actor-init-trig-resp.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"i-actor-init-trig-user-attr.js","sourceRoot":"","sources":["../../src/interfaces/i-actor-init-trig-user-attr.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"i-actor-init-trigger-evt.js","sourceRoot":"","sources":["../../src/interfaces/i-actor-init-trigger-evt.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"i-actor-status.js","sourceRoot":"","sources":["../../src/interfaces/i-actor-status.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"i-oidc-address-claim.js","sourceRoot":"","sources":["../../src/interfaces/i-oidc-address-claim.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"i-oidc-identity.js","sourceRoot":"","sources":["../../src/interfaces/i-oidc-identity.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"i-oidc-profile.js","sourceRoot":"","sources":["../../src/interfaces/i-oidc-profile.ts"],"names":[],"mappings":""}
|
package/dist/interfaces/index.js
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
export * from './i-actor-init-status';
|
|
2
|
-
export * from './i-actor-init-trig-ctx';
|
|
3
|
-
export * from './i-actor-init-trig-req';
|
|
4
|
-
export * from './i-actor-init-trig-resp';
|
|
5
|
-
export * from './i-actor-init-trig-user-attr';
|
|
6
|
-
export * from './i-actor-init-trigger-evt';
|
|
7
|
-
export * from './i-actor-status';
|
|
8
|
-
export * from './i-oidc-address-claim';
|
|
9
|
-
export * from './i-oidc-identity';
|
|
10
|
-
export * from './i-oidc-profile';
|
|
11
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/interfaces/index.ts"],"names":[],"mappings":"AAAA,cAAc,uBAAuB,CAAC;AACtC,cAAc,yBAAyB,CAAC;AACxC,cAAc,yBAAyB,CAAC;AACxC,cAAc,0BAA0B,CAAC;AACzC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,kBAAkB,CAAC;AACjC,cAAc,wBAAwB,CAAC;AACvC,cAAc,mBAAmB,CAAC;AAClC,cAAc,kBAAkB,CAAC"}
|