@heliofi/common 0.1.89 → 0.1.91
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/src/domain/model/apiKey/dtos/updateApiKey.dto.d.ts +2 -2
- package/dist/src/domain/model/apiKey/dtos/updateApiKey.dto.js +1 -1
- package/dist/src/domain/model/apiKey/dtos/updateApiKey.dto.js.map +1 -1
- package/dist/src/domain/model/contact/dtos/createContact.dto.js +0 -1
- package/dist/src/domain/model/contact/dtos/createContact.dto.js.map +1 -1
- package/dist/src/domain/model/contact/dtos/updateContact.dto.js +0 -1
- package/dist/src/domain/model/contact/dtos/updateContact.dto.js.map +1 -1
- package/dist/src/domain/model/contact/entities/Contact.entity.d.ts +2 -3
- package/dist/src/domain/model/contact/entities/Contact.entity.js.map +1 -1
- package/dist/src/domain/model/currency/dtos/createCurrency.dto.d.ts +10 -8
- package/dist/src/domain/model/currency/dtos/createCurrency.dto.js +8 -0
- package/dist/src/domain/model/currency/dtos/createCurrency.dto.js.map +1 -1
- package/dist/src/domain/model/currency/dtos/updateCurrency.dto.d.ts +10 -8
- package/dist/src/domain/model/currency/dtos/updateCurrency.dto.js +6 -0
- package/dist/src/domain/model/currency/dtos/updateCurrency.dto.js.map +1 -1
- package/dist/src/domain/model/currency/entities/BaseCurrency.d.ts +10 -8
- package/dist/src/domain/model/currency/entities/BaseCurrency.js.map +1 -1
- package/dist/src/domain/model/currency/entities/CurrencyType.d.ts +4 -0
- package/dist/src/domain/model/currency/entities/CurrencyType.js +9 -0
- package/dist/src/domain/model/currency/entities/CurrencyType.js.map +1 -0
- package/dist/src/domain/model/currency/entities/index.d.ts +1 -0
- package/dist/src/domain/model/currency/entities/index.js +1 -0
- package/dist/src/domain/model/currency/entities/index.js.map +1 -1
- package/dist/src/domain/model/index.d.ts +2 -0
- package/dist/src/domain/model/index.js +2 -0
- package/dist/src/domain/model/index.js.map +1 -1
- package/dist/src/domain/model/invoice/dtos/createInvoice.dto.d.ts +11 -0
- package/dist/src/domain/model/invoice/dtos/createInvoice.dto.js +63 -0
- package/dist/src/domain/model/invoice/dtos/createInvoice.dto.js.map +1 -0
- package/dist/src/domain/model/invoice/dtos/index.d.ts +2 -0
- package/dist/src/domain/model/invoice/dtos/index.js +19 -0
- package/dist/src/domain/model/invoice/dtos/index.js.map +1 -0
- package/dist/src/domain/model/invoice/dtos/updateInvoice.dto.d.ts +11 -0
- package/dist/src/domain/model/invoice/dtos/updateInvoice.dto.js +63 -0
- package/dist/src/domain/model/invoice/dtos/updateInvoice.dto.js.map +1 -0
- package/dist/src/domain/model/invoice/entities/Invoice.entity.d.ts +15 -0
- package/dist/src/domain/model/invoice/entities/Invoice.entity.js +8 -0
- package/dist/src/domain/model/invoice/entities/Invoice.entity.js.map +1 -0
- package/dist/src/domain/model/invoice/entities/InvoiceStatus.d.ts +5 -0
- package/dist/src/domain/model/invoice/entities/InvoiceStatus.js +10 -0
- package/dist/src/domain/model/invoice/entities/InvoiceStatus.js.map +1 -0
- package/dist/src/domain/model/invoice/entities/index.d.ts +2 -0
- package/dist/src/domain/model/invoice/entities/index.js +19 -0
- package/dist/src/domain/model/invoice/entities/index.js.map +1 -0
- package/dist/src/domain/model/invoice/index.d.ts +2 -0
- package/dist/src/domain/model/invoice/index.js +19 -0
- package/dist/src/domain/model/invoice/index.js.map +1 -0
- package/dist/src/domain/model/invoiceItem/dtos/index.d.ts +1 -0
- package/dist/src/domain/model/invoiceItem/dtos/index.js +18 -0
- package/dist/src/domain/model/invoiceItem/dtos/index.js.map +1 -0
- package/dist/src/domain/model/invoiceItem/dtos/invoiceItem.dto.d.ts +7 -0
- package/dist/src/domain/model/invoiceItem/dtos/invoiceItem.dto.js +44 -0
- package/dist/src/domain/model/invoiceItem/dtos/invoiceItem.dto.js.map +1 -0
- package/dist/src/domain/model/invoiceItem/entities/InvoiceItem.entity.d.ts +7 -0
- package/dist/src/domain/model/invoiceItem/entities/InvoiceItem.entity.js +21 -0
- package/dist/src/domain/model/invoiceItem/entities/InvoiceItem.entity.js.map +1 -0
- package/dist/src/domain/model/invoiceItem/entities/index.d.ts +1 -0
- package/dist/src/domain/model/invoiceItem/entities/index.js +18 -0
- package/dist/src/domain/model/invoiceItem/entities/index.js.map +1 -0
- package/dist/src/domain/model/invoiceItem/index.d.ts +2 -0
- package/dist/src/domain/model/invoiceItem/index.js +19 -0
- package/dist/src/domain/model/invoiceItem/index.js.map +1 -0
- package/dist/src/domain/model/paylink-tx/entities/PaylinkTxWithShallowEnrichedPaylink.d.ts +8 -6
- package/dist/src/domain/model/paylink-tx/entities/PaylinkTxWithShallowEnrichedPaylink.js.map +1 -1
- package/dist/src/domain/model/payment-request/entities/BasePaymentRequest.d.ts +14 -14
- package/dist/src/domain/model/paystream/dtos/createPaystream.dto.d.ts +19 -19
- package/dist/src/domain/model/paystream/dtos/updatePaystream.dto.d.ts +18 -18
- package/dist/src/domain/model/paystream/entities/BasePaystream.d.ts +3 -3
- package/dist/src/domain/model/paystream/entities/Paystream.d.ts +3 -3
- package/dist/src/domain/model/paystream/entities/ShallowEnrichedPaystream.d.ts +4 -4
- package/dist/src/domain/model/paystream-tx/entities/PaystreamTx.d.ts +10 -8
- package/dist/src/domain/model/paystream-tx/entities/PaystreamTx.js.map +1 -1
- package/dist/src/domain/model/paystream-tx/entities/PaystreamTxWithMeta.d.ts +9 -0
- package/dist/src/domain/model/paystream-tx/entities/PaystreamTxWithMeta.js +32 -0
- package/dist/src/domain/model/paystream-tx/entities/PaystreamTxWithMeta.js.map +1 -0
- package/dist/src/domain/model/paystream-tx/entities/index.d.ts +1 -0
- package/dist/src/domain/model/paystream-tx/entities/index.js +1 -0
- package/dist/src/domain/model/paystream-tx/entities/index.js.map +1 -1
- package/dist/src/domain/model/webhook/index.d.ts +1 -0
- package/dist/src/domain/model/webhook/index.js +1 -0
- package/dist/src/domain/model/webhook/index.js.map +1 -1
- package/dist/src/domain/model/webhook/stream-transaction-hook/dtos/CreateStreamTransactionHook.dto.d.ts +6 -0
- package/dist/src/domain/model/webhook/stream-transaction-hook/dtos/CreateStreamTransactionHook.dto.js +31 -0
- package/dist/src/domain/model/webhook/stream-transaction-hook/dtos/CreateStreamTransactionHook.dto.js.map +1 -0
- package/dist/src/domain/model/webhook/stream-transaction-hook/dtos/index.d.ts +1 -0
- package/dist/src/domain/model/webhook/stream-transaction-hook/dtos/index.js +18 -0
- package/dist/src/domain/model/webhook/stream-transaction-hook/dtos/index.js.map +1 -0
- package/dist/src/domain/model/webhook/stream-transaction-hook/entities/EndStreamEventPayload.d.ts +7 -0
- package/dist/src/domain/model/webhook/stream-transaction-hook/entities/EndStreamEventPayload.js +13 -0
- package/dist/src/domain/model/webhook/stream-transaction-hook/entities/EndStreamEventPayload.js.map +1 -0
- package/dist/src/domain/model/webhook/stream-transaction-hook/entities/StartStreamEventPayload.d.ts +7 -0
- package/dist/src/domain/model/webhook/stream-transaction-hook/entities/StartStreamEventPayload.js +13 -0
- package/dist/src/domain/model/webhook/stream-transaction-hook/entities/StartStreamEventPayload.js.map +1 -0
- package/dist/src/domain/model/webhook/stream-transaction-hook/entities/StreamEventPayload.d.ts +7 -0
- package/dist/src/domain/model/webhook/stream-transaction-hook/entities/StreamEventPayload.js +8 -0
- package/dist/src/domain/model/webhook/stream-transaction-hook/entities/StreamEventPayload.js.map +1 -0
- package/dist/src/domain/model/webhook/stream-transaction-hook/entities/StreamTransactionEvent.entity.d.ts +4 -0
- package/dist/src/domain/model/webhook/stream-transaction-hook/entities/StreamTransactionEvent.entity.js +9 -0
- package/dist/src/domain/model/webhook/stream-transaction-hook/entities/StreamTransactionEvent.entity.js.map +1 -0
- package/dist/src/domain/model/webhook/stream-transaction-hook/entities/StreamTransactionHook.entity.d.ts +11 -0
- package/dist/src/domain/model/webhook/stream-transaction-hook/entities/StreamTransactionHook.entity.js +8 -0
- package/dist/src/domain/model/webhook/stream-transaction-hook/entities/StreamTransactionHook.entity.js.map +1 -0
- package/dist/src/domain/model/webhook/stream-transaction-hook/entities/index.d.ts +5 -0
- package/dist/src/domain/model/webhook/stream-transaction-hook/entities/index.js +22 -0
- package/dist/src/domain/model/webhook/stream-transaction-hook/entities/index.js.map +1 -0
- package/dist/src/domain/model/webhook/stream-transaction-hook/index.d.ts +2 -0
- package/dist/src/domain/model/webhook/stream-transaction-hook/index.js +19 -0
- package/dist/src/domain/model/webhook/stream-transaction-hook/index.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Entity } from '../../../entity';
|
|
2
|
+
import { StreamTransactionEvent } from './StreamTransactionEvent.entity';
|
|
3
|
+
export declare class StreamTransactionHookEntity extends Entity {
|
|
4
|
+
id: string;
|
|
5
|
+
stream: string;
|
|
6
|
+
company: string;
|
|
7
|
+
targetUrl: string;
|
|
8
|
+
events: StreamTransactionEvent[];
|
|
9
|
+
sharedToken: string;
|
|
10
|
+
creator?: string;
|
|
11
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.StreamTransactionHookEntity = void 0;
|
|
4
|
+
const entity_1 = require("../../../entity");
|
|
5
|
+
class StreamTransactionHookEntity extends entity_1.Entity {
|
|
6
|
+
}
|
|
7
|
+
exports.StreamTransactionHookEntity = StreamTransactionHookEntity;
|
|
8
|
+
//# sourceMappingURL=StreamTransactionHook.entity.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"StreamTransactionHook.entity.js","sourceRoot":"","sources":["../../../../../../../src/domain/model/webhook/stream-transaction-hook/entities/StreamTransactionHook.entity.ts"],"names":[],"mappings":";;;AAAA,4CAAyC;AAGzC,MAAa,2BAA4B,SAAQ,eAAM;CAQtD;AARD,kEAQC"}
|
|
@@ -0,0 +1,22 @@
|
|
|
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("./StreamTransactionEvent.entity"), exports);
|
|
18
|
+
__exportStar(require("./StreamTransactionHook.entity"), exports);
|
|
19
|
+
__exportStar(require("./StartStreamEventPayload"), exports);
|
|
20
|
+
__exportStar(require("./EndStreamEventPayload"), exports);
|
|
21
|
+
__exportStar(require("./StreamEventPayload"), exports);
|
|
22
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../src/domain/model/webhook/stream-transaction-hook/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,kEAAgD;AAChD,iEAA+C;AAC/C,4DAA0C;AAC1C,0DAAwC;AACxC,uDAAqC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
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("./dtos"), exports);
|
|
19
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/domain/model/webhook/stream-transaction-hook/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6CAA2B;AAC3B,yCAAuB"}
|