@hitsoft/fbdocumentflow 0.0.1
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/README.md +24 -0
- package/config/enums/index.d.ts +1 -0
- package/config/enums/route-names.d.ts +3 -0
- package/config/fbdocumentflow-config.module.d.ts +8 -0
- package/config/index.d.ts +5 -0
- package/config/providers/document-scenario-route.provider.d.ts +9 -0
- package/config/providers/document-transfer-route.provider.d.ts +9 -0
- package/config/providers/index.d.ts +6 -0
- package/config/providers/partner-mapping-route.provider.d.ts +9 -0
- package/config/providers/project-parameter-route.provider.d.ts +9 -0
- package/config/providers/route.provider.d.ts +8 -0
- package/config/providers/sap-company-profile-route.provider.d.ts +9 -0
- package/config/public-api.d.ts +3 -0
- package/esm2020/config/enums/index.mjs +2 -0
- package/esm2020/config/enums/route-names.mjs +2 -0
- package/esm2020/config/fbdocumentflow-config.module.mjs +30 -0
- package/esm2020/config/hitsoft-fbdocumentflow-config.mjs +5 -0
- package/esm2020/config/providers/document-scenario-route.provider.mjs +20 -0
- package/esm2020/config/providers/document-transfer-route.provider.mjs +20 -0
- package/esm2020/config/providers/index.mjs +7 -0
- package/esm2020/config/providers/partner-mapping-route.provider.mjs +20 -0
- package/esm2020/config/providers/project-parameter-route.provider.mjs +20 -0
- package/esm2020/config/providers/route.provider.mjs +24 -0
- package/esm2020/config/providers/sap-company-profile-route.provider.mjs +20 -0
- package/esm2020/config/public-api.mjs +4 -0
- package/esm2020/hitsoft-fbdocumentflow.mjs +5 -0
- package/esm2020/lib/components/fbdocumentflow.component.mjs +42 -0
- package/esm2020/lib/components/hit-document-scenarios/components/hit-document-scenario.component.mjs +151 -0
- package/esm2020/lib/components/hit-document-scenarios/hit-document-scenario-routing.module.mjs +26 -0
- package/esm2020/lib/components/hit-document-scenarios/hit-document-scenario.module.mjs +24 -0
- package/esm2020/lib/components/hit-document-transfers/components/hit-document-transfer-detail.component.mjs +474 -0
- package/esm2020/lib/components/hit-document-transfers/components/hit-document-transfer.component.mjs +241 -0
- package/esm2020/lib/components/hit-document-transfers/hit-document-transfer-routing.module.mjs +33 -0
- package/esm2020/lib/components/hit-document-transfers/hit-document-transfer.module.mjs +25 -0
- package/esm2020/lib/components/hit-partner-mappings/components/hit-partner-mapping.component.mjs +115 -0
- package/esm2020/lib/components/hit-partner-mappings/hit-partner-mapping-routing.module.mjs +26 -0
- package/esm2020/lib/components/hit-partner-mappings/hit-partner-mapping.module.mjs +24 -0
- package/esm2020/lib/components/hit-project-parameters/components/hit-project-parameter.component.mjs +125 -0
- package/esm2020/lib/components/hit-project-parameters/hit-project-parameter-routing.module.mjs +26 -0
- package/esm2020/lib/components/hit-project-parameters/hit-project-parameter.module.mjs +24 -0
- package/esm2020/lib/components/hit-sap-company-profiles/components/hit-sap-company-profile.component.mjs +88 -0
- package/esm2020/lib/components/hit-sap-company-profiles/hit-sap-company-profile-routing.module.mjs +26 -0
- package/esm2020/lib/components/hit-sap-company-profiles/hit-sap-company-profile.module.mjs +24 -0
- package/esm2020/lib/fbdocumentflow-routing.module.mjs +35 -0
- package/esm2020/lib/fbdocumentflow.module.mjs +29 -0
- package/esm2020/lib/proxy/document-scenarios/document-scenario.service.mjs +27 -0
- package/esm2020/lib/proxy/document-scenarios/index.mjs +3 -0
- package/esm2020/lib/proxy/document-scenarios/models.mjs +6 -0
- package/esm2020/lib/proxy/document-transfers/document-transfer.service.mjs +54 -0
- package/esm2020/lib/proxy/document-transfers/index.mjs +3 -0
- package/esm2020/lib/proxy/document-transfers/models.mjs +32 -0
- package/esm2020/lib/proxy/partner-mappings/index.mjs +3 -0
- package/esm2020/lib/proxy/partner-mappings/models.mjs +2 -0
- package/esm2020/lib/proxy/partner-mappings/partner-mapping.service.mjs +27 -0
- package/esm2020/lib/proxy/project-parameters/index.mjs +3 -0
- package/esm2020/lib/proxy/project-parameters/models.mjs +2 -0
- package/esm2020/lib/proxy/project-parameters/sap-project-parameter.service.mjs +25 -0
- package/esm2020/lib/proxy/sap-company-profiles/index.mjs +3 -0
- package/esm2020/lib/proxy/sap-company-profiles/models.mjs +7 -0
- package/esm2020/lib/proxy/sap-company-profiles/sap-company-profile.service.mjs +27 -0
- package/esm2020/lib/services/fbdocumentflow.service.mjs +21 -0
- package/esm2020/public-api.mjs +7 -0
- package/fesm2015/hitsoft-fbdocumentflow-config.mjs +144 -0
- package/fesm2015/hitsoft-fbdocumentflow-config.mjs.map +1 -0
- package/fesm2015/hitsoft-fbdocumentflow.mjs +1647 -0
- package/fesm2015/hitsoft-fbdocumentflow.mjs.map +1 -0
- package/fesm2020/hitsoft-fbdocumentflow-config.mjs +144 -0
- package/fesm2020/hitsoft-fbdocumentflow-config.mjs.map +1 -0
- package/fesm2020/hitsoft-fbdocumentflow.mjs +1621 -0
- package/fesm2020/hitsoft-fbdocumentflow.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/components/fbdocumentflow.component.d.ts +13 -0
- package/lib/components/hit-document-scenarios/components/hit-document-scenario.component.d.ts +41 -0
- package/lib/components/hit-document-scenarios/hit-document-scenario-routing.module.d.ts +7 -0
- package/lib/components/hit-document-scenarios/hit-document-scenario.module.d.ts +13 -0
- package/lib/components/hit-document-transfers/components/hit-document-transfer-detail.component.d.ts +88 -0
- package/lib/components/hit-document-transfers/components/hit-document-transfer.component.d.ts +61 -0
- package/lib/components/hit-document-transfers/hit-document-transfer-routing.module.d.ts +7 -0
- package/lib/components/hit-document-transfers/hit-document-transfer.module.d.ts +14 -0
- package/lib/components/hit-partner-mappings/components/hit-partner-mapping.component.d.ts +29 -0
- package/lib/components/hit-partner-mappings/hit-partner-mapping-routing.module.d.ts +7 -0
- package/lib/components/hit-partner-mappings/hit-partner-mapping.module.d.ts +13 -0
- package/lib/components/hit-project-parameters/components/hit-project-parameter.component.d.ts +36 -0
- package/lib/components/hit-project-parameters/hit-project-parameter-routing.module.d.ts +7 -0
- package/lib/components/hit-project-parameters/hit-project-parameter.module.d.ts +13 -0
- package/lib/components/hit-sap-company-profiles/components/hit-sap-company-profile.component.d.ts +28 -0
- package/lib/components/hit-sap-company-profiles/hit-sap-company-profile-routing.module.d.ts +7 -0
- package/lib/components/hit-sap-company-profiles/hit-sap-company-profile.module.d.ts +13 -0
- package/lib/fbdocumentflow-routing.module.d.ts +7 -0
- package/lib/fbdocumentflow.module.d.ts +13 -0
- package/lib/proxy/document-scenarios/document-scenario.service.d.ts +16 -0
- package/lib/proxy/document-scenarios/index.d.ts +2 -0
- package/lib/proxy/document-scenarios/models.d.ts +38 -0
- package/lib/proxy/document-transfers/document-transfer.service.d.ts +26 -0
- package/lib/proxy/document-transfers/index.d.ts +2 -0
- package/lib/proxy/document-transfers/models.d.ts +119 -0
- package/lib/proxy/partner-mappings/index.d.ts +2 -0
- package/lib/proxy/partner-mappings/models.d.ts +23 -0
- package/lib/proxy/partner-mappings/partner-mapping.service.d.ts +16 -0
- package/lib/proxy/project-parameters/index.d.ts +2 -0
- package/lib/proxy/project-parameters/models.d.ts +25 -0
- package/lib/proxy/project-parameters/sap-project-parameter.service.d.ts +14 -0
- package/lib/proxy/sap-company-profiles/index.d.ts +2 -0
- package/lib/proxy/sap-company-profiles/models.d.ts +26 -0
- package/lib/proxy/sap-company-profiles/sap-company-profile.service.d.ts +16 -0
- package/lib/services/fbdocumentflow.service.d.ts +10 -0
- package/package.json +41 -0
- package/public-api.d.ts +3 -0
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
import type { FullAuditedEntityDto, PagedAndSortedResultRequestDto } from '@abp/ng.core';
|
|
2
|
+
import type { LegBehavior } from '../document-scenarios/models';
|
|
3
|
+
export declare enum DocumentTransferStatus {
|
|
4
|
+
Draft = 0,
|
|
5
|
+
Running = 1,
|
|
6
|
+
Completed = 2,
|
|
7
|
+
Failed = 3,
|
|
8
|
+
Cancelled = 4
|
|
9
|
+
}
|
|
10
|
+
export declare enum DocumentTransferLegStatus {
|
|
11
|
+
Pending = 0,
|
|
12
|
+
Success = 1,
|
|
13
|
+
Failed = 2,
|
|
14
|
+
Skipped = 3
|
|
15
|
+
}
|
|
16
|
+
export declare enum SapDocumentLifecycle {
|
|
17
|
+
Posted = 0,
|
|
18
|
+
Draft = 1
|
|
19
|
+
}
|
|
20
|
+
export declare enum ConstructionDraftDocumentType {
|
|
21
|
+
PurchaseOrder = 0,
|
|
22
|
+
GoodsReceipt = 1,
|
|
23
|
+
APInvoice = 2
|
|
24
|
+
}
|
|
25
|
+
export interface GetDocumentTransferListInputDto extends PagedAndSortedResultRequestDto {
|
|
26
|
+
sourceCompanyId?: string;
|
|
27
|
+
status?: DocumentTransferStatus;
|
|
28
|
+
}
|
|
29
|
+
export interface DocumentTransferLegDto {
|
|
30
|
+
id: string;
|
|
31
|
+
sequenceNo: number;
|
|
32
|
+
sourceCompanyId: string;
|
|
33
|
+
sourceCompanyName?: string;
|
|
34
|
+
targetCompanyId: string;
|
|
35
|
+
targetCompanyName?: string;
|
|
36
|
+
legBehavior: LegBehavior;
|
|
37
|
+
status: DocumentTransferLegStatus;
|
|
38
|
+
errorMessage?: string;
|
|
39
|
+
createdDocType?: string;
|
|
40
|
+
createdDocEntry?: number;
|
|
41
|
+
createdDocNum?: string;
|
|
42
|
+
createdPurchaseOrderDocEntry?: number;
|
|
43
|
+
createdPurchaseOrderDocNum?: string;
|
|
44
|
+
createdGoodsReceiptDocEntry?: number;
|
|
45
|
+
createdGoodsReceiptDocNum?: string;
|
|
46
|
+
createdInternalOinvDocEntry?: number;
|
|
47
|
+
createdInternalOinvDocNum?: string;
|
|
48
|
+
numAtCard?: string;
|
|
49
|
+
currency?: string;
|
|
50
|
+
exchangeRate?: number;
|
|
51
|
+
freightAmount?: number;
|
|
52
|
+
increaseRateApplied?: number;
|
|
53
|
+
resolvedOpchCardCode?: string;
|
|
54
|
+
plannedIncreaseRate?: number;
|
|
55
|
+
selectedConstructionDraftDocType?: ConstructionDraftDocumentType;
|
|
56
|
+
}
|
|
57
|
+
export interface DocumentTransferDto extends FullAuditedEntityDto<string> {
|
|
58
|
+
intercompanyId: string;
|
|
59
|
+
sourceCompanyId: string;
|
|
60
|
+
sourceCompanyName?: string;
|
|
61
|
+
sourceOinvDocEntry: number;
|
|
62
|
+
sourceOinvDocNum?: string;
|
|
63
|
+
sourceOinvCardCode?: string;
|
|
64
|
+
sourceOinvNumAtCard?: string;
|
|
65
|
+
projectCode?: string;
|
|
66
|
+
scenarioId?: string;
|
|
67
|
+
status: DocumentTransferStatus;
|
|
68
|
+
sourceDocumentLifecycle: SapDocumentLifecycle;
|
|
69
|
+
targetDocumentLifecycle: SapDocumentLifecycle;
|
|
70
|
+
legs: DocumentTransferLegDto[];
|
|
71
|
+
}
|
|
72
|
+
export interface ResolvedFirstTargetDto {
|
|
73
|
+
isResolved: boolean;
|
|
74
|
+
sourceCompanyId: string;
|
|
75
|
+
sourceOinvCardCode?: string;
|
|
76
|
+
sourceOinvNumAtCard?: string;
|
|
77
|
+
sourceOinvDocNum?: string;
|
|
78
|
+
targetCompanyId?: string;
|
|
79
|
+
targetCompanyName?: string;
|
|
80
|
+
projectCode?: string;
|
|
81
|
+
}
|
|
82
|
+
export interface StartDocumentTransferInputDto {
|
|
83
|
+
sourceCompanyId: string;
|
|
84
|
+
sourceOinvDocEntry: number;
|
|
85
|
+
scenarioId?: string;
|
|
86
|
+
sourceDocumentLifecycle?: SapDocumentLifecycle;
|
|
87
|
+
targetDocumentLifecycle?: SapDocumentLifecycle;
|
|
88
|
+
}
|
|
89
|
+
export interface ApplyScenarioInputDto {
|
|
90
|
+
scenarioId?: string;
|
|
91
|
+
}
|
|
92
|
+
export interface UpdateDocumentTransferLegInputDto {
|
|
93
|
+
targetCompanyId: string;
|
|
94
|
+
legBehavior: LegBehavior;
|
|
95
|
+
numAtCard?: string;
|
|
96
|
+
currency?: string;
|
|
97
|
+
exchangeRate?: number;
|
|
98
|
+
freightAmount?: number;
|
|
99
|
+
selectedConstructionDraftDocType?: ConstructionDraftDocumentType;
|
|
100
|
+
}
|
|
101
|
+
export interface GetEligibleSourceInvoicesInputDto {
|
|
102
|
+
sourceCompanyId: string;
|
|
103
|
+
projectCode?: string;
|
|
104
|
+
numAtCard?: string;
|
|
105
|
+
sourceDocumentLifecycle?: SapDocumentLifecycle;
|
|
106
|
+
}
|
|
107
|
+
export interface EligibleSourceInvoiceDto {
|
|
108
|
+
docEntry: number;
|
|
109
|
+
docNum?: string;
|
|
110
|
+
numAtCard?: string;
|
|
111
|
+
projectCode?: string;
|
|
112
|
+
cardCode?: string;
|
|
113
|
+
cardName?: string;
|
|
114
|
+
currency?: string;
|
|
115
|
+
isResolved: boolean;
|
|
116
|
+
targetCompanyId?: string;
|
|
117
|
+
targetCompanyName?: string;
|
|
118
|
+
targetHasDuplicateNumAtCard: boolean;
|
|
119
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import type { FullAuditedEntityDto, PagedAndSortedResultRequestDto } from '@abp/ng.core';
|
|
2
|
+
export interface GetPartnerMappingListInputDto extends PagedAndSortedResultRequestDto {
|
|
3
|
+
sourceCompanyId?: string;
|
|
4
|
+
relatedCompanyId?: string;
|
|
5
|
+
}
|
|
6
|
+
export interface PartnerMappingDto extends FullAuditedEntityDto<string> {
|
|
7
|
+
sourceCompanyId: string;
|
|
8
|
+
sourceCompanyName?: string;
|
|
9
|
+
relatedCompanyId: string;
|
|
10
|
+
relatedCompanyName?: string;
|
|
11
|
+
customerCardCode?: string;
|
|
12
|
+
customerCardName?: string;
|
|
13
|
+
vendorCardCode?: string;
|
|
14
|
+
vendorCardName?: string;
|
|
15
|
+
}
|
|
16
|
+
export interface CreateUpdatePartnerMappingDto {
|
|
17
|
+
sourceCompanyId: string;
|
|
18
|
+
relatedCompanyId: string;
|
|
19
|
+
customerCardCode?: string;
|
|
20
|
+
customerCardName?: string;
|
|
21
|
+
vendorCardCode?: string;
|
|
22
|
+
vendorCardName?: string;
|
|
23
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type { CreateUpdatePartnerMappingDto, GetPartnerMappingListInputDto, PartnerMappingDto } from './models';
|
|
2
|
+
import { RestService } from '@abp/ng.core';
|
|
3
|
+
import type { PagedResultDto } from '@abp/ng.core';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class PartnerMappingService {
|
|
6
|
+
private restService;
|
|
7
|
+
apiName: string;
|
|
8
|
+
create: (input: CreateUpdatePartnerMappingDto) => import("rxjs").Observable<PartnerMappingDto>;
|
|
9
|
+
update: (id: string, input: CreateUpdatePartnerMappingDto) => import("rxjs").Observable<PartnerMappingDto>;
|
|
10
|
+
delete: (id: string) => import("rxjs").Observable<void>;
|
|
11
|
+
get: (id: string) => import("rxjs").Observable<PartnerMappingDto>;
|
|
12
|
+
getList: (input: GetPartnerMappingListInputDto) => import("rxjs").Observable<PagedResultDto<PartnerMappingDto>>;
|
|
13
|
+
constructor(restService: RestService);
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PartnerMappingService, never>;
|
|
15
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PartnerMappingService>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export interface GetSapProjectParameterListInputDto {
|
|
2
|
+
companyId: string;
|
|
3
|
+
filter?: string;
|
|
4
|
+
}
|
|
5
|
+
export interface SapProjectParameterDto {
|
|
6
|
+
prjCode?: string;
|
|
7
|
+
prjName?: string;
|
|
8
|
+
ebaId?: string;
|
|
9
|
+
increaseRate?: number;
|
|
10
|
+
cardCode?: string;
|
|
11
|
+
currency?: string;
|
|
12
|
+
}
|
|
13
|
+
export interface UpdateSapProjectParameterDto {
|
|
14
|
+
increaseRate?: number;
|
|
15
|
+
cardCode?: string;
|
|
16
|
+
currency?: string;
|
|
17
|
+
}
|
|
18
|
+
export interface CreateSapProjectParameterDto {
|
|
19
|
+
prjCode: string;
|
|
20
|
+
prjName: string;
|
|
21
|
+
ebaId?: string;
|
|
22
|
+
increaseRate?: number;
|
|
23
|
+
cardCode?: string;
|
|
24
|
+
currency?: string;
|
|
25
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { CreateSapProjectParameterDto, GetSapProjectParameterListInputDto, SapProjectParameterDto, UpdateSapProjectParameterDto } from './models';
|
|
2
|
+
import { RestService } from '@abp/ng.core';
|
|
3
|
+
import type { ListResultDto } from '@abp/ng.core';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class SapProjectParameterService {
|
|
6
|
+
private restService;
|
|
7
|
+
apiName: string;
|
|
8
|
+
getList: (input: GetSapProjectParameterListInputDto) => import("rxjs").Observable<ListResultDto<SapProjectParameterDto>>;
|
|
9
|
+
create: (companyId: string, input: CreateSapProjectParameterDto) => import("rxjs").Observable<SapProjectParameterDto>;
|
|
10
|
+
update: (companyId: string, prjCode: string, input: UpdateSapProjectParameterDto) => import("rxjs").Observable<void>;
|
|
11
|
+
constructor(restService: RestService);
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SapProjectParameterService, never>;
|
|
13
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SapProjectParameterService>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import type { FullAuditedEntityDto, PagedAndSortedResultRequestDto } from '@abp/ng.core';
|
|
2
|
+
export declare enum CompanyType {
|
|
3
|
+
Source = 0,
|
|
4
|
+
Intermediate = 1,
|
|
5
|
+
Construction = 2
|
|
6
|
+
}
|
|
7
|
+
export interface GetSapCompanyProfileListInputDto extends PagedAndSortedResultRequestDto {
|
|
8
|
+
filter?: string;
|
|
9
|
+
isActive?: boolean;
|
|
10
|
+
}
|
|
11
|
+
export interface SapCompanyProfileDto extends FullAuditedEntityDto<string> {
|
|
12
|
+
companyCode?: string;
|
|
13
|
+
companyName?: string;
|
|
14
|
+
sapCompanyDb?: string;
|
|
15
|
+
serviceLayerUrl?: string;
|
|
16
|
+
companyType: CompanyType;
|
|
17
|
+
isActive: boolean;
|
|
18
|
+
}
|
|
19
|
+
export interface CreateUpdateSapCompanyProfileDto {
|
|
20
|
+
companyCode: string;
|
|
21
|
+
companyName: string;
|
|
22
|
+
sapCompanyDb: string;
|
|
23
|
+
serviceLayerUrl?: string;
|
|
24
|
+
companyType: CompanyType;
|
|
25
|
+
isActive: boolean;
|
|
26
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type { CreateUpdateSapCompanyProfileDto, GetSapCompanyProfileListInputDto, SapCompanyProfileDto } from './models';
|
|
2
|
+
import { RestService } from '@abp/ng.core';
|
|
3
|
+
import type { PagedResultDto } from '@abp/ng.core';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class SapCompanyProfileService {
|
|
6
|
+
private restService;
|
|
7
|
+
apiName: string;
|
|
8
|
+
create: (input: CreateUpdateSapCompanyProfileDto) => import("rxjs").Observable<SapCompanyProfileDto>;
|
|
9
|
+
update: (id: string, input: CreateUpdateSapCompanyProfileDto) => import("rxjs").Observable<SapCompanyProfileDto>;
|
|
10
|
+
delete: (id: string) => import("rxjs").Observable<void>;
|
|
11
|
+
get: (id: string) => import("rxjs").Observable<SapCompanyProfileDto>;
|
|
12
|
+
getList: (input: GetSapCompanyProfileListInputDto) => import("rxjs").Observable<PagedResultDto<SapCompanyProfileDto>>;
|
|
13
|
+
constructor(restService: RestService);
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SapCompanyProfileService, never>;
|
|
15
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SapCompanyProfileService>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { RestService } from '@abp/ng.core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class FBDocumentFlowService {
|
|
4
|
+
private restService;
|
|
5
|
+
apiName: string;
|
|
6
|
+
constructor(restService: RestService);
|
|
7
|
+
sample(): import("rxjs").Observable<any>;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FBDocumentFlowService, never>;
|
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<FBDocumentFlowService>;
|
|
10
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@hitsoft/fbdocumentflow",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"peerDependencies": {
|
|
5
|
+
"@angular/common": ">=9",
|
|
6
|
+
"@angular/core": ">=9",
|
|
7
|
+
"@abp/ng.core": ">=6.0.2",
|
|
8
|
+
"@abp/ng.theme.shared": ">=6.0.2"
|
|
9
|
+
},
|
|
10
|
+
"dependencies": {
|
|
11
|
+
"tslib": "^2.1.0"
|
|
12
|
+
},
|
|
13
|
+
"module": "fesm2015/hitsoft-fbdocumentflow.mjs",
|
|
14
|
+
"es2020": "fesm2020/hitsoft-fbdocumentflow.mjs",
|
|
15
|
+
"esm2020": "esm2020/hitsoft-fbdocumentflow.mjs",
|
|
16
|
+
"fesm2020": "fesm2020/hitsoft-fbdocumentflow.mjs",
|
|
17
|
+
"fesm2015": "fesm2015/hitsoft-fbdocumentflow.mjs",
|
|
18
|
+
"typings": "index.d.ts",
|
|
19
|
+
"exports": {
|
|
20
|
+
"./package.json": {
|
|
21
|
+
"default": "./package.json"
|
|
22
|
+
},
|
|
23
|
+
".": {
|
|
24
|
+
"types": "./index.d.ts",
|
|
25
|
+
"esm2020": "./esm2020/hitsoft-fbdocumentflow.mjs",
|
|
26
|
+
"es2020": "./fesm2020/hitsoft-fbdocumentflow.mjs",
|
|
27
|
+
"es2015": "./fesm2015/hitsoft-fbdocumentflow.mjs",
|
|
28
|
+
"node": "./fesm2015/hitsoft-fbdocumentflow.mjs",
|
|
29
|
+
"default": "./fesm2020/hitsoft-fbdocumentflow.mjs"
|
|
30
|
+
},
|
|
31
|
+
"./config": {
|
|
32
|
+
"types": "./config/index.d.ts",
|
|
33
|
+
"esm2020": "./esm2020/config/hitsoft-fbdocumentflow-config.mjs",
|
|
34
|
+
"es2020": "./fesm2020/hitsoft-fbdocumentflow-config.mjs",
|
|
35
|
+
"es2015": "./fesm2015/hitsoft-fbdocumentflow-config.mjs",
|
|
36
|
+
"node": "./fesm2015/hitsoft-fbdocumentflow-config.mjs",
|
|
37
|
+
"default": "./fesm2020/hitsoft-fbdocumentflow-config.mjs"
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
"sideEffects": false
|
|
41
|
+
}
|
package/public-api.d.ts
ADDED