@cbm-common/cbm-types 0.0.16 → 0.0.18
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/lib/components/add-client/add-client.d.ts +2 -2
- package/lib/components/add-client/animations.d.ts +1 -1
- package/lib/components/add-client/constants.d.ts +9 -9
- package/lib/components/add-client/types.d.ts +7 -7
- package/lib/domain/repositories/driver.domain.repository.d.ts +3 -3
- package/package.json +1 -1
- package/public-api.d.ts +4 -4
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare class CbmAddClientComponent {
|
|
2
|
-
}
|
|
1
|
+
export declare class CbmAddClientComponent {
|
|
2
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const fadeInOutAnimation: import("@angular/animations").AnimationTriggerMetadata;
|
|
1
|
+
export declare const fadeInOutAnimation: import("@angular/animations").AnimationTriggerMetadata;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
export declare const DOCUMENT_TYPES_CODES: {
|
|
2
|
-
readonly RUC: "04";
|
|
3
|
-
readonly CEDULA: "05";
|
|
4
|
-
readonly PASAPORTE: "06";
|
|
5
|
-
readonly VENTA_A_CONSUMIDOR_FINAL: "07";
|
|
6
|
-
readonly IDENTIFICACION_DEL_EXTERIOR: "08";
|
|
7
|
-
};
|
|
8
|
-
export declare const PAGE_SIZE = 20;
|
|
9
|
-
export declare const phoneRegex: RegExp;
|
|
1
|
+
export declare const DOCUMENT_TYPES_CODES: {
|
|
2
|
+
readonly RUC: "04";
|
|
3
|
+
readonly CEDULA: "05";
|
|
4
|
+
readonly PASAPORTE: "06";
|
|
5
|
+
readonly VENTA_A_CONSUMIDOR_FINAL: "07";
|
|
6
|
+
readonly IDENTIFICACION_DEL_EXTERIOR: "08";
|
|
7
|
+
};
|
|
8
|
+
export declare const PAGE_SIZE = 20;
|
|
9
|
+
export declare const phoneRegex: RegExp;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export type TStatus = 'init' | 'loading' | 'success' | 'failed';
|
|
2
|
-
export interface IPagination {
|
|
3
|
-
page: number;
|
|
4
|
-
size: number;
|
|
5
|
-
totalPages: number | null;
|
|
6
|
-
totalRecords: number;
|
|
7
|
-
}
|
|
1
|
+
export type TStatus = 'init' | 'loading' | 'success' | 'failed';
|
|
2
|
+
export interface IPagination {
|
|
3
|
+
page: number;
|
|
4
|
+
size: number;
|
|
5
|
+
totalPages: number | null;
|
|
6
|
+
totalRecords: number;
|
|
7
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { CbmDriverModel } from
|
|
2
|
-
import { ICbmDriverInfrastructureRepository } from
|
|
1
|
+
import { CbmDriverModel } from '../models/driver.domian.model';
|
|
2
|
+
import { ICbmDriverInfrastructureRepository } from '../../infrastructure/repositories/driver.infrastructure.repository';
|
|
3
3
|
import { Observable } from 'rxjs';
|
|
4
|
-
export declare class
|
|
4
|
+
export declare class CbmDriverDomainRepository implements ICbmDriverInfrastructureRepository {
|
|
5
5
|
private readonly service;
|
|
6
6
|
constructor(service: ICbmDriverInfrastructureRepository);
|
|
7
7
|
list(params: CbmDriverModel.ListParams): Observable<CbmDriverModel.ListResponse>;
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -99,7 +99,7 @@ export * from './lib/domain/repositories/document-type.domain.repository';
|
|
|
99
99
|
export * from './lib/domain/models/document-type.model';
|
|
100
100
|
|
|
101
101
|
//#region driver repository
|
|
102
|
-
export * from './lib/domain/repositories/driver.domain.repository';
|
|
102
|
+
// export * from './lib/domain/repositories/driver.domain.repository';
|
|
103
103
|
export * from './lib/domain/models/driver.domian.model';
|
|
104
104
|
|
|
105
105
|
//#region financial bank repository
|
|
@@ -160,15 +160,15 @@ export * from './lib/components/accounting-seat/types';
|
|
|
160
160
|
|
|
161
161
|
//#region advanced item search modal component
|
|
162
162
|
export * from './lib/components/advanced-item-search-modal/advanced-item-search-modal';
|
|
163
|
-
export * from './lib/components/advanced-item-search-modal/types';
|
|
163
|
+
// export * from './lib/components/advanced-item-search-modal/types';
|
|
164
164
|
|
|
165
165
|
//#region attachments component
|
|
166
166
|
export * from './lib/components/attachments/attachments';
|
|
167
|
-
export * from './lib/components/attachments/types';
|
|
167
|
+
// export * from './lib/components/attachments/types';
|
|
168
168
|
|
|
169
169
|
//#region documents reference component
|
|
170
170
|
export * from './lib/components/documents-reference/documents-reference';
|
|
171
|
-
export * from './lib/components/documents-reference/types';
|
|
171
|
+
// export * from './lib/components/documents-reference/types';
|
|
172
172
|
|
|
173
173
|
//#region dropzone component
|
|
174
174
|
export * from './lib/components/dropzone/dropzone';
|