@hitsoft/e-donusum 1.0.123-Test → 1.0.124-test
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/esm2020/lib/components/hit-despatches/hit-despatch.component.mjs +49 -32
- package/esm2020/lib/components/hit-failed-despatches/hit-failed-despatch.component.mjs +3 -3
- package/esm2020/lib/components/hit-failed-invoices/hit-failed-invoice.component.mjs +3 -3
- package/esm2020/lib/components/hit-inbound-despatches/hit-inbound-despatch.component.mjs +13 -81
- package/esm2020/lib/components/hit-inbound-invoices/hit-inbound-invoice.component.mjs +16 -123
- package/esm2020/lib/components/hit-invoices/hit-invoice.component.mjs +58 -18
- package/esm2020/lib/components/hit-invoices-sent/hit-invoice-sent.component.mjs +4 -4
- package/esm2020/lib/components/hit-params-generals/hit-params-generals-part2/hit-params-general-part2.component.mjs +3 -14
- package/esm2020/lib/hit-proxy/hit-despatches/hit-despatch.service.mjs +10 -1
- package/esm2020/lib/hit-proxy/hit-inbound-despatches/hit-inbound-despatch.service.mjs +4 -29
- package/esm2020/lib/hit-proxy/hit-inbound-invoices/hit-inbound-invoice.service.mjs +1 -17
- package/esm2020/lib/hit-proxy/hit-invoices/hit-invoice.service.mjs +10 -1
- package/esm2020/lib/hit-proxy/hit-params-generals/hit-params-general.service.mjs +1 -10
- package/esm2020/lib/hit-proxy/shared/hit-shared.service.mjs +8 -45
- package/fesm2015/hitsoft-e-donusum.mjs +176 -373
- package/fesm2015/hitsoft-e-donusum.mjs.map +1 -1
- package/fesm2020/hitsoft-e-donusum.mjs +174 -370
- package/fesm2020/hitsoft-e-donusum.mjs.map +1 -1
- package/lib/components/hit-despatches/hit-despatch.component.d.ts +9 -3
- package/lib/components/hit-inbound-despatches/hit-inbound-despatch.component.d.ts +1 -12
- package/lib/components/hit-inbound-invoices/hit-inbound-invoice.component.d.ts +1 -13
- package/lib/components/hit-invoices/hit-invoice.component.d.ts +9 -2
- package/lib/components/hit-params-generals/hit-params-generals-part2/hit-params-general-part2.component.d.ts +0 -1
- package/lib/hit-proxy/hit-despatches/hit-despatch.service.d.ts +4 -0
- package/lib/hit-proxy/hit-inbound-despatches/hit-inbound-despatch.service.d.ts +1 -7
- package/lib/hit-proxy/hit-inbound-invoices/hit-inbound-invoice.service.d.ts +0 -3
- package/lib/hit-proxy/hit-invoices/hit-invoice.service.d.ts +8 -1
- package/lib/hit-proxy/hit-params-generals/hit-params-general.service.d.ts +0 -4
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ListService } from '@abp/ng.core';
|
|
2
|
-
import { OnInit } from '@angular/core';
|
|
2
|
+
import { OnDestroy, OnInit } from '@angular/core';
|
|
3
3
|
import { DxDataGridComponent } from 'devextreme-angular';
|
|
4
4
|
import { HitDespatchService } from '../../hit-proxy/hit-despatches/hit-despatch.service';
|
|
5
5
|
import { HitFileDocumentTypeService } from '../../hit-proxy/hit-file-document-type/hit-file-document-type.service';
|
|
@@ -8,7 +8,7 @@ import { HitGibPartnerPkService } from '../../hit-proxy/hit-gib-partner-pks/hit-
|
|
|
8
8
|
import { HitDocumentSerialService } from '../../hit-proxy/hit-document-serials/hit-document-serial.service';
|
|
9
9
|
import { HitSharedService } from '../../hit-proxy/shared/hit-shared.service';
|
|
10
10
|
import * as i0 from "@angular/core";
|
|
11
|
-
export declare class HitDespatchComponent implements OnInit {
|
|
11
|
+
export declare class HitDespatchComponent implements OnInit, OnDestroy {
|
|
12
12
|
readonly list: ListService;
|
|
13
13
|
readonly service: HitDespatchService;
|
|
14
14
|
private readonly fileDocumentTypeService;
|
|
@@ -28,6 +28,10 @@ export declare class HitDespatchComponent implements OnInit {
|
|
|
28
28
|
despatchSerialDataSource: any;
|
|
29
29
|
despatchFileNameLookup: any;
|
|
30
30
|
despatchFilesDataSource: any;
|
|
31
|
+
isTriggerGetDespatchesBusy: boolean;
|
|
32
|
+
triggerElapsedSeconds: number;
|
|
33
|
+
private _pollingInterval;
|
|
34
|
+
private _elapsedInterval;
|
|
31
35
|
isFileModalOpen: boolean;
|
|
32
36
|
isFileModalBusy: boolean;
|
|
33
37
|
isPKModalOpen: boolean;
|
|
@@ -58,9 +62,11 @@ export declare class HitDespatchComponent implements OnInit {
|
|
|
58
62
|
showAllFiles(record: any): void;
|
|
59
63
|
DownloadFile(record: any): void;
|
|
60
64
|
downloadPDFMultiple(): void;
|
|
61
|
-
viewPDFsMultiple(): void;
|
|
62
65
|
getZipDate(): string;
|
|
63
66
|
getReceiptAdvicePreview(record: any): void;
|
|
67
|
+
triggerGetDespatchesFromConnector(): void;
|
|
68
|
+
private _stopPolling;
|
|
69
|
+
ngOnDestroy(): void;
|
|
64
70
|
static ɵfac: i0.ɵɵFactoryDeclaration<HitDespatchComponent, never>;
|
|
65
71
|
static ɵcmp: i0.ɵɵComponentDeclaration<HitDespatchComponent, "lib-despatch", never, {}, {}, never, never, false>;
|
|
66
72
|
}
|
|
@@ -6,7 +6,6 @@ import { FormBuilder, FormGroup } from '@angular/forms';
|
|
|
6
6
|
import { ToasterService } from '@abp/ng.theme.shared';
|
|
7
7
|
import { HitInboundDespatchService } from '../../hit-proxy/hit-inbound-despatches/hit-inbound-despatch.service';
|
|
8
8
|
import { HitDespatchLineService } from '../../hit-proxy/hit-despatch-lines/hit-despatch-line.service';
|
|
9
|
-
import { HitFileDocumentTypeService } from '../../hit-proxy/hit-file-document-type/hit-file-document-type.service';
|
|
10
9
|
import * as i0 from "@angular/core";
|
|
11
10
|
export declare class HitInboundDespatchComponent implements OnInit {
|
|
12
11
|
readonly list: ListService;
|
|
@@ -15,7 +14,6 @@ export declare class HitInboundDespatchComponent implements OnInit {
|
|
|
15
14
|
private readonly invoiceService;
|
|
16
15
|
private readonly formBuilder;
|
|
17
16
|
private readonly toasterService;
|
|
18
|
-
private readonly fileDocumentTypeService;
|
|
19
17
|
dxInboundDespatchInstance: DxDataGridComponent;
|
|
20
18
|
dxDespatchRowsInstance: DxDataGridComponent;
|
|
21
19
|
inboundDespatchDataSource: any;
|
|
@@ -26,11 +24,7 @@ export declare class HitInboundDespatchComponent implements OnInit {
|
|
|
26
24
|
isModalOpenForResponse: boolean;
|
|
27
25
|
faturaOnizleme: any;
|
|
28
26
|
formResponse: FormGroup;
|
|
29
|
-
|
|
30
|
-
despatchFileNameLookup: any;
|
|
31
|
-
isFileModalOpen: boolean;
|
|
32
|
-
isFileModalBusy: boolean;
|
|
33
|
-
constructor(list: ListService, despatchService: HitInboundDespatchService, despatchLineService: HitDespatchLineService, invoiceService: HitInvoiceService, formBuilder: FormBuilder, toasterService: ToasterService, fileDocumentTypeService: HitFileDocumentTypeService);
|
|
27
|
+
constructor(list: ListService, despatchService: HitInboundDespatchService, despatchLineService: HitDespatchLineService, invoiceService: HitInvoiceService, formBuilder: FormBuilder, toasterService: ToasterService);
|
|
34
28
|
ngOnInit(): void;
|
|
35
29
|
openResponseModal(record: any): void;
|
|
36
30
|
buildForm(record: any): void;
|
|
@@ -39,11 +33,6 @@ export declare class HitInboundDespatchComponent implements OnInit {
|
|
|
39
33
|
getReceiverResponseName(responseId: any): any;
|
|
40
34
|
getIconClass(responseId: any): "" | "fas fa-clock" | "fas fa-check-circle" | "fas fa-times-circle" | "fas fa-minus-circle";
|
|
41
35
|
getInboundDespatchPreview(record: any): void;
|
|
42
|
-
downloadPDFMultiple(): void;
|
|
43
|
-
getZipDate(): string;
|
|
44
|
-
viewPDFsMultiple(): void;
|
|
45
|
-
showAllFiles(record: any): void;
|
|
46
|
-
DownloadFile(record: any): void;
|
|
47
36
|
static ɵfac: i0.ɵɵFactoryDeclaration<HitInboundDespatchComponent, never>;
|
|
48
37
|
static ɵcmp: i0.ɵɵComponentDeclaration<HitInboundDespatchComponent, "lib-inbound-despatch", never, {}, {}, never, never, false>;
|
|
49
38
|
}
|
|
@@ -10,7 +10,6 @@ import { OpenDocumentDto } from '../../hit-proxy/hit-inbound-invoices/models';
|
|
|
10
10
|
import { HitBranchesService } from '../../hit-proxy/hit-branches/hit-branch.service';
|
|
11
11
|
import { HitParamsGeneralsService } from '../../hit-proxy/hit-params-generals/hit-params-general.service';
|
|
12
12
|
import { HitSharedService } from '../../hit-proxy/shared/hit-shared.service';
|
|
13
|
-
import { HitFileDocumentTypeService } from '../../hit-proxy/hit-file-document-type/hit-file-document-type.service';
|
|
14
13
|
import * as i0 from "@angular/core";
|
|
15
14
|
export declare class HitInboundInvoiceComponent implements OnInit {
|
|
16
15
|
readonly list: ListService;
|
|
@@ -26,7 +25,6 @@ export declare class HitInboundInvoiceComponent implements OnInit {
|
|
|
26
25
|
private readonly ref;
|
|
27
26
|
private readonly confirmation;
|
|
28
27
|
private readonly hitSharedService;
|
|
29
|
-
private readonly fileDocumentTypeService;
|
|
30
28
|
dxInboundInvoiceInstance: DxDataGridComponent;
|
|
31
29
|
dxPurchaseOrderDocuments: DxDataGridComponent;
|
|
32
30
|
dxPurchaseDespatchDocuments: DxDataGridComponent;
|
|
@@ -90,11 +88,7 @@ export declare class HitInboundInvoiceComponent implements OnInit {
|
|
|
90
88
|
hasValidSelection: boolean;
|
|
91
89
|
branchPopupVisible: boolean;
|
|
92
90
|
selectedBranchId: number;
|
|
93
|
-
|
|
94
|
-
invoiceFileNameLookup: any;
|
|
95
|
-
isFileModalOpen: boolean;
|
|
96
|
-
isFileModalBusy: boolean;
|
|
97
|
-
constructor(list: ListService, service: HitInboundInvoiceService, invoiceService: HitInvoiceService, hitBranchesService: HitBranchesService, hitParamsGeneralsService: HitParamsGeneralsService, formBuilder: FormBuilder, formBuilderForPartner: FormBuilder, formBuilderForDocument: FormBuilder, toasterService: ToasterService, businessPartnerGroupService: HitBusinessPartnerGroupService, ref: ChangeDetectorRef, confirmation: ConfirmationService, hitSharedService: HitSharedService, fileDocumentTypeService: HitFileDocumentTypeService);
|
|
91
|
+
constructor(list: ListService, service: HitInboundInvoiceService, invoiceService: HitInvoiceService, hitBranchesService: HitBranchesService, hitParamsGeneralsService: HitParamsGeneralsService, formBuilder: FormBuilder, formBuilderForPartner: FormBuilder, formBuilderForDocument: FormBuilder, toasterService: ToasterService, businessPartnerGroupService: HitBusinessPartnerGroupService, ref: ChangeDetectorRef, confirmation: ConfirmationService, hitSharedService: HitSharedService);
|
|
98
92
|
countryGridBox_displayExpr(): string;
|
|
99
93
|
stateGridBox_displayExpr(): string;
|
|
100
94
|
serialGridBox_displayExpr(): string;
|
|
@@ -108,7 +102,6 @@ export declare class HitInboundInvoiceComponent implements OnInit {
|
|
|
108
102
|
ngOnInit(): void;
|
|
109
103
|
getInboundInvoice(): void;
|
|
110
104
|
getInvoicePreview(record: any): void;
|
|
111
|
-
viewPDFsMultiple(): void;
|
|
112
105
|
openResponseModal(record: any): void;
|
|
113
106
|
buildForm(record: any): void;
|
|
114
107
|
sendInvoiceResponse(response: boolean): void;
|
|
@@ -137,13 +130,8 @@ export declare class HitInboundInvoiceComponent implements OnInit {
|
|
|
137
130
|
createMultipleEmptyDrafts(): void;
|
|
138
131
|
onResultPopupClosed: () => void;
|
|
139
132
|
closeResultPopup: () => void;
|
|
140
|
-
downloadIncomingPDFMultiple(): void;
|
|
141
|
-
downloadPDFMultiple(): void;
|
|
142
|
-
getZipDate(): string;
|
|
143
133
|
openBranchPopup(): void;
|
|
144
134
|
confirmBranchSelection: () => void;
|
|
145
|
-
showAllFiles(record: any): void;
|
|
146
|
-
DownloadFile(record: any): void;
|
|
147
135
|
static ɵfac: i0.ɵɵFactoryDeclaration<HitInboundInvoiceComponent, never>;
|
|
148
136
|
static ɵcmp: i0.ɵɵComponentDeclaration<HitInboundInvoiceComponent, "lib-inbound-invoice", never, {}, {}, never, never, false>;
|
|
149
137
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ListService } from '@abp/ng.core';
|
|
2
|
-
import { OnInit } from '@angular/core';
|
|
2
|
+
import { OnDestroy, OnInit } from '@angular/core';
|
|
3
3
|
import { DxDataGridComponent } from 'devextreme-angular';
|
|
4
4
|
import { HitInvoiceService } from '../../hit-proxy/hit-invoices/hit-invoice.service';
|
|
5
5
|
import { HitGibPartnerPkService } from '../../hit-proxy/hit-gib-partner-pks/hit-gib-partner-pk.service';
|
|
@@ -7,7 +7,7 @@ import { ToasterService } from '@abp/ng.theme.shared';
|
|
|
7
7
|
import { HitDocumentSerialService } from '../../hit-proxy/hit-document-serials/hit-document-serial.service';
|
|
8
8
|
import { ConfirmationService } from '@abp/ng.theme.shared';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
|
-
export declare class HitInvoiceComponent implements OnInit {
|
|
10
|
+
export declare class HitInvoiceComponent implements OnInit, OnDestroy {
|
|
11
11
|
readonly list: ListService;
|
|
12
12
|
private readonly invoiceService;
|
|
13
13
|
private readonly gibPartnerPkService;
|
|
@@ -36,6 +36,10 @@ export declare class HitInvoiceComponent implements OnInit {
|
|
|
36
36
|
selectedInvoiceIds: string[];
|
|
37
37
|
faturaOnizleme: any;
|
|
38
38
|
isModalOpenForNotQueue: boolean;
|
|
39
|
+
isTriggerGetInvoicesBusy: boolean;
|
|
40
|
+
triggerElapsedSeconds: number;
|
|
41
|
+
private _pollingInterval;
|
|
42
|
+
private _elapsedInterval;
|
|
39
43
|
invoiceNotSendQueueDataSource: any;
|
|
40
44
|
constructor(list: ListService, invoiceService: HitInvoiceService, gibPartnerPkService: HitGibPartnerPkService, hitDocumentSerialService: HitDocumentSerialService, toasterService: ToasterService, confirmation: ConfirmationService);
|
|
41
45
|
ngOnInit(): void;
|
|
@@ -50,6 +54,9 @@ export declare class HitInvoiceComponent implements OnInit {
|
|
|
50
54
|
sendInvoiceMultiple(): void;
|
|
51
55
|
sendInvoiceToEntegrator(): void;
|
|
52
56
|
getInvoicesFromConnector(): void;
|
|
57
|
+
triggerGetInvoicesFromConnector(): void;
|
|
58
|
+
private _stopPolling;
|
|
59
|
+
ngOnDestroy(): void;
|
|
53
60
|
getInvoicePreview(record: any): void;
|
|
54
61
|
getInvoiceXML(record: any): void;
|
|
55
62
|
getReceiverResponseName(responseId: any): any;
|
|
@@ -18,7 +18,6 @@ export declare class HitParamsGeneralPart2Component implements OnInit {
|
|
|
18
18
|
valid: EventEmitter<boolean>;
|
|
19
19
|
submitButtonDisabled: boolean;
|
|
20
20
|
integratorDataSource: any;
|
|
21
|
-
downloadTokenSecret: string;
|
|
22
21
|
constructor(service: ParamsGeneralService, fb: FormBuilder, hitParamsGeneralsService: HitParamsGeneralsService, toasterService: ToasterService, hitEntegratorsService: HitEntegratorsService);
|
|
23
22
|
ngOnInit(): void;
|
|
24
23
|
buildForm(): void;
|
|
@@ -23,6 +23,10 @@ export declare class HitDespatchService {
|
|
|
23
23
|
updateDespatchSerial: (despatchId: string, serial: string) => import("rxjs").Observable<any>;
|
|
24
24
|
getDespatchXML: (despatchGUID: string, tableValue: number) => import("rxjs").Observable<any>;
|
|
25
25
|
getDespatchPdfsMultiple: (despatchIds: string[]) => import("rxjs").Observable<any>;
|
|
26
|
+
triggerGetDespatchesFromConnector: () => import("rxjs").Observable<string>;
|
|
27
|
+
getDespatchJobStatus: (jobId: string) => import("rxjs").Observable<{
|
|
28
|
+
state: string;
|
|
29
|
+
}>;
|
|
26
30
|
constructor(restService: RestService, devexService: DevexpressRestService);
|
|
27
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<HitDespatchService, never>;
|
|
28
32
|
static ɵprov: i0.ɵɵInjectableDeclaration<HitDespatchService>;
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { RestService } from "@abp/ng.core";
|
|
2
2
|
import { DevexpressRestService } from "../devexpress-query-builder/devexpress-query-builder";
|
|
3
3
|
import { DespatchMainResponseDto } from "./models";
|
|
4
|
-
import { HttpClient } from '@angular/common/http';
|
|
5
4
|
import * as i0 from "@angular/core";
|
|
6
5
|
export declare class HitInboundDespatchService {
|
|
7
6
|
private restService;
|
|
8
7
|
private devexService;
|
|
9
|
-
private http;
|
|
10
8
|
apiName: string;
|
|
11
9
|
LoadInboundDespatches: import("devextreme-aspnet-data-nojquery").CustomStore;
|
|
12
10
|
sendDespatchResponse: (mainResponse: DespatchMainResponseDto) => import("rxjs").Observable<any>;
|
|
13
11
|
getInboundDespatch: (startDate: string, endDate: string) => import("rxjs").Observable<any>;
|
|
14
12
|
getDespatchPreviewInbound: (despatchGUID: string) => import("rxjs").Observable<any>;
|
|
15
|
-
|
|
16
|
-
getIncomingDespatchPdfsMultiple(ids: string[]): import("rxjs").Observable<Blob>;
|
|
17
|
-
LoadInboundDespatchFiles: (despatchGUID: string) => import("devextreme-aspnet-data-nojquery").CustomStore;
|
|
18
|
-
downloadFileById: (blobID: string) => import("rxjs").Observable<any>;
|
|
19
|
-
constructor(restService: RestService, devexService: DevexpressRestService, http: HttpClient);
|
|
13
|
+
constructor(restService: RestService, devexService: DevexpressRestService);
|
|
20
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<HitInboundDespatchService, never>;
|
|
21
15
|
static ɵprov: i0.ɵɵInjectableDeclaration<HitInboundDespatchService>;
|
|
22
16
|
}
|
|
@@ -22,9 +22,6 @@ export declare class HitInboundInvoiceService {
|
|
|
22
22
|
createPurchaseInvoiceDocument: (requestDto: ConnectorPurchaseInvoiceDocumentDto, invoiceID: string) => import("rxjs").Observable<any>;
|
|
23
23
|
processManual: (invoiceID: string) => import("rxjs").Observable<any>;
|
|
24
24
|
createMultipleEmptyDrafts: (requestDto: ConnectorMultipleEmptyDraftDto[]) => import("rxjs").Observable<any>;
|
|
25
|
-
getIncomingInvoicePdfsMultiple: (invoiceIds: string[]) => import("rxjs").Observable<Blob>;
|
|
26
|
-
LoadInboundInvoiceFiles: (invoiceGUID: string) => import("devextreme-aspnet-data-nojquery").CustomStore;
|
|
27
|
-
downloadFileById: (blobID: string) => import("rxjs").Observable<any>;
|
|
28
25
|
constructor(restService: RestService, devexService: DevexpressRestService);
|
|
29
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<HitInboundInvoiceService, never>;
|
|
30
27
|
static ɵprov: i0.ɵɵInjectableDeclaration<HitInboundInvoiceService>;
|
|
@@ -8,7 +8,10 @@ export declare class HitInvoiceService {
|
|
|
8
8
|
LoadInvoices: import("devextreme-aspnet-data-nojquery").CustomStore;
|
|
9
9
|
LoadInvoicesSent: import("devextreme-aspnet-data-nojquery").CustomStore;
|
|
10
10
|
LoadInvoiceFiles: (invoiceUUID: string) => import("devextreme-aspnet-data-nojquery").CustomStore;
|
|
11
|
-
sendInvoiceById: (input: string[]) => import("rxjs").Observable<
|
|
11
|
+
sendInvoiceById: (input: string[]) => import("rxjs").Observable<{
|
|
12
|
+
multiPkDocEntries: number[];
|
|
13
|
+
cancelledDocEntries: number[];
|
|
14
|
+
}>;
|
|
12
15
|
getInvoicePdfsMultiple: (invoiceIds: string[]) => import("rxjs").Observable<any>;
|
|
13
16
|
setInvoiceCancelBydId: (invoiceId: string, status: number) => import("rxjs").Observable<any>;
|
|
14
17
|
updateInvoiceReceiver: (invoiceUUID: string, receiverPK: string, isDefaultPK: boolean) => import("rxjs").Observable<any>;
|
|
@@ -17,6 +20,10 @@ export declare class HitInvoiceService {
|
|
|
17
20
|
returnBaseStateInvoiceById: (invoiceIds: string[]) => import("rxjs").Observable<any>;
|
|
18
21
|
sendInvoiceToEntegrator: () => import("rxjs").Observable<any>;
|
|
19
22
|
getInvoicesFromConnector: () => import("rxjs").Observable<any>;
|
|
23
|
+
triggerGetInvoicesFromConnector: () => import("rxjs").Observable<string>;
|
|
24
|
+
getJobStatus: (jobId: string) => import("rxjs").Observable<{
|
|
25
|
+
state: string;
|
|
26
|
+
}>;
|
|
20
27
|
getStatuses: () => import("rxjs").Observable<any>;
|
|
21
28
|
getSapObjects: () => import("rxjs").Observable<any>;
|
|
22
29
|
getReceiverResponses: () => import("rxjs").Observable<any>;
|
|
@@ -4,10 +4,6 @@ export declare class HitParamsGeneralsService {
|
|
|
4
4
|
private restService;
|
|
5
5
|
apiName: string;
|
|
6
6
|
getParamsGeneral: () => import("rxjs").Observable<any>;
|
|
7
|
-
getDownloadTokenSecret: () => import("rxjs").Observable<{
|
|
8
|
-
value: string;
|
|
9
|
-
}>;
|
|
10
|
-
setDownloadTokenSecret: (value: string) => import("rxjs").Observable<void>;
|
|
11
7
|
constructor(restService: RestService);
|
|
12
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<HitParamsGeneralsService, never>;
|
|
13
9
|
static ɵprov: i0.ɵɵInjectableDeclaration<HitParamsGeneralsService>;
|