@cbm-common/cbm-types 0.0.12 → 0.0.14
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/package.json +10 -10
- package/public-api.d.ts +142 -1
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
}
|
|
2
|
+
"name": "@cbm-common/cbm-types",
|
|
3
|
+
"version": "0.0.14",
|
|
4
|
+
"main": "index.js",
|
|
5
|
+
"types": "public-api.d.ts",
|
|
6
|
+
"exports": {
|
|
7
|
+
".": {
|
|
8
|
+
"import": "./index.js",
|
|
9
|
+
"types": "./public-api.d.ts"
|
|
11
10
|
}
|
|
12
|
-
}
|
|
11
|
+
}
|
|
12
|
+
}
|
package/public-api.d.ts
CHANGED
|
@@ -42,6 +42,147 @@ export * from './lib/domain/services/web-socket/web-socket.service';
|
|
|
42
42
|
export * from './lib/domain/repositories/user.domain.repository';
|
|
43
43
|
export * from './lib/domain/models/user.domain.model';
|
|
44
44
|
|
|
45
|
+
//#region alternative item repository
|
|
46
|
+
export * from './lib/domain/repositories/alternative-item.domain.repository';
|
|
47
|
+
export * from './lib/domain/models/alternative-item.domain.model';
|
|
48
|
+
|
|
49
|
+
//#region bank movements repository
|
|
50
|
+
export * from './lib/domain/repositories/bank-movements.domain.repository';
|
|
51
|
+
export * from './lib/domain/models/bank-movements.domain.model';
|
|
52
|
+
|
|
53
|
+
//#region bank repository
|
|
54
|
+
export * from './lib/domain/repositories/bank.domain.repository';
|
|
55
|
+
export * from './lib/domain/models/bank.domain.model';
|
|
56
|
+
|
|
57
|
+
//#region card settlement repository
|
|
58
|
+
export * from './lib/domain/repositories/card-settlement.domain.repository';
|
|
59
|
+
export * from './lib/domain/models/card-settlement.domain.model';
|
|
60
|
+
|
|
61
|
+
//#region cash liquidation repository
|
|
62
|
+
export * from './lib/domain/repositories/cash-liquidation.domain.repository';
|
|
63
|
+
export * from './lib/domain/models/cash-liquidation.domain.model';
|
|
64
|
+
|
|
65
|
+
//#region client branch repository
|
|
66
|
+
export * from './lib/domain/repositories/client-branch.domain.repository';
|
|
67
|
+
export * from './lib/domain/models/client-branch.domain.model';
|
|
68
|
+
|
|
69
|
+
//#region client category repository
|
|
70
|
+
export * from './lib/domain/repositories/client-category.domain.repository';
|
|
71
|
+
export * from './lib/domain/models/client-category.domain.model';
|
|
72
|
+
|
|
73
|
+
//#region client group repository
|
|
74
|
+
export * from './lib/domain/repositories/client-group.domain.repository';
|
|
75
|
+
export * from './lib/domain/models/client-group.domain.model';
|
|
76
|
+
|
|
77
|
+
//#region client repository
|
|
78
|
+
export * from './lib/domain/repositories/client.domain.repository';
|
|
79
|
+
export * from './lib/domain/models/client.domain.model';
|
|
80
|
+
|
|
81
|
+
//#region contact repository
|
|
82
|
+
export * from './lib/domain/repositories/contact.domain.repository';
|
|
83
|
+
export * from './lib/domain/models/contact.domain.model';
|
|
84
|
+
|
|
85
|
+
//#region cost center repository
|
|
86
|
+
export * from './lib/domain/repositories/cost-center.domain.repository';
|
|
87
|
+
export * from './lib/domain/models/cost-center.domain.model';
|
|
88
|
+
|
|
89
|
+
//#region deadline repository
|
|
90
|
+
export * from './lib/domain/repositories/deadline.domain.repository';
|
|
91
|
+
export * from './lib/domain/models/deadline.domian.model';
|
|
92
|
+
|
|
93
|
+
//#region document reference repository
|
|
94
|
+
export * from './lib/domain/repositories/document-reference.domain.repository';
|
|
95
|
+
export * from './lib/domain/models/document-reference.domain.model';
|
|
96
|
+
|
|
97
|
+
//#region document type repository
|
|
98
|
+
export * from './lib/domain/repositories/document-type.domain.repository';
|
|
99
|
+
export * from './lib/domain/models/document-type.model';
|
|
100
|
+
|
|
101
|
+
//#region driver repository
|
|
102
|
+
export * from './lib/domain/repositories/driver.domain.repository';
|
|
103
|
+
export * from './lib/domain/models/driver.domian.model';
|
|
104
|
+
|
|
105
|
+
//#region financial bank repository
|
|
106
|
+
export * from './lib/domain/repositories/financial-bank.domain.repository';
|
|
107
|
+
export * from './lib/domain/models/financial-bank.domain.model';
|
|
108
|
+
|
|
109
|
+
//#region group repository
|
|
110
|
+
export * from './lib/domain/repositories/group.domain.repository';
|
|
111
|
+
export * from './lib/domain/models/group.domain.model';
|
|
112
|
+
|
|
113
|
+
//#region item repository
|
|
114
|
+
export * from './lib/domain/repositories/item.domain.repository';
|
|
115
|
+
export * from './lib/domain/models/item.domain.model';
|
|
116
|
+
|
|
117
|
+
//#region kit repository
|
|
118
|
+
export * from './lib/domain/repositories/kit.domain.repository';
|
|
119
|
+
export * from './lib/domain/models/kit.domain.model';
|
|
120
|
+
|
|
121
|
+
//#region outgoing banking transaction repository
|
|
122
|
+
export * from './lib/domain/repositories/outgoing-banking-transaction.domain.repository';
|
|
123
|
+
export * from './lib/domain/models/outgoing-banking-transaction.domain.model';
|
|
124
|
+
|
|
125
|
+
//#region price list repository
|
|
126
|
+
export * from './lib/domain/repositories/price-list.domain.repository';
|
|
127
|
+
export * from './lib/domain/models/price-list.domain.model';
|
|
128
|
+
|
|
129
|
+
//#region report financials repository
|
|
130
|
+
export * from './lib/domain/repositories/report-financials.domain.repository';
|
|
131
|
+
export * from './lib/domain/models/report-financials.domain.model';
|
|
132
|
+
|
|
133
|
+
//#region seat repository
|
|
134
|
+
export * from './lib/domain/repositories/seat.domain.repository';
|
|
135
|
+
export * from './lib/domain/models/seat.domain.model';
|
|
136
|
+
|
|
137
|
+
//#region seller repository
|
|
138
|
+
export * from './lib/domain/repositories/seller.domain.repository';
|
|
139
|
+
export * from './lib/domain/models/seller.domain.model';
|
|
140
|
+
|
|
141
|
+
//#region upload repository
|
|
142
|
+
export * from './lib/domain/repositories/upload.domain.repository';
|
|
143
|
+
export * from './lib/domain/models/upload.domain.model';
|
|
144
|
+
|
|
145
|
+
//#region warehouse repository
|
|
146
|
+
export * from './lib/domain/repositories/warehouse.domain.repository';
|
|
147
|
+
export * from './lib/domain/models/warehouse.domain.model';
|
|
148
|
+
|
|
45
149
|
//#region record detail metadata component
|
|
46
150
|
export * from './lib/components/record-detail-metadata/record-detail-metadata';
|
|
47
|
-
export * from './lib/components/record-detail-metadata/types';
|
|
151
|
+
export * from './lib/components/record-detail-metadata/types';
|
|
152
|
+
|
|
153
|
+
//#region user history component
|
|
154
|
+
export * from './lib/components/user-history/user-history';
|
|
155
|
+
export * from './lib/components/user-history/types';
|
|
156
|
+
|
|
157
|
+
//#region accounting seat component
|
|
158
|
+
export * from './lib/components/accounting-seat/accounting-seat';
|
|
159
|
+
export * from './lib/components/accounting-seat/types';
|
|
160
|
+
|
|
161
|
+
//#region advanced item search modal component
|
|
162
|
+
export * from './lib/components/advanced-item-search-modal/advanced-item-search-modal';
|
|
163
|
+
export * from './lib/components/advanced-item-search-modal/types';
|
|
164
|
+
|
|
165
|
+
//#region attachments component
|
|
166
|
+
export * from './lib/components/attachments/attachments';
|
|
167
|
+
export * from './lib/components/attachments/types';
|
|
168
|
+
|
|
169
|
+
//#region documents reference component
|
|
170
|
+
export * from './lib/components/documents-reference/documents-reference';
|
|
171
|
+
export * from './lib/components/documents-reference/types';
|
|
172
|
+
|
|
173
|
+
//#region dropzone component
|
|
174
|
+
export * from './lib/components/dropzone/dropzone';
|
|
175
|
+
|
|
176
|
+
//#region empty component
|
|
177
|
+
export * from './lib/components/empty/empty';
|
|
178
|
+
|
|
179
|
+
//#region json modal component
|
|
180
|
+
export * from './lib/components/json-modal/json-modal';
|
|
181
|
+
|
|
182
|
+
//#region pagination nav component
|
|
183
|
+
export * from './lib/components/pagination-nav/pagination-nav';
|
|
184
|
+
export * from './lib/components/pagination-nav/pagination-nav.model';
|
|
185
|
+
|
|
186
|
+
//#region tree select component
|
|
187
|
+
export * from './lib/components/tree-select/tree-select';
|
|
188
|
+
export * from './lib/components/tree-select/types';
|