@cbm-common/cbm-types 0.0.192 → 0.0.194
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-provider/add-provider.d.ts +2 -2
- package/lib/components/add-provider/add-provider.model.d.ts +1 -1
- package/lib/components/documents-reference/components/delete/delete.d.ts +6 -6
- package/lib/directives/text-input/text-input.directive.d.ts +3 -2
- package/lib/domain/models/provider.domain.model.d.ts +14 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -1
|
@@ -17,7 +17,7 @@ import { CbmTreeSelect } from '../tree-select/types';
|
|
|
17
17
|
import { TStatus } from './types';
|
|
18
18
|
import { CbmModalConfirmComponent } from '../modal-confirm/modal-confirm';
|
|
19
19
|
import { AccountValidatorsDomainService } from '../../domain/services/account-validators.domain.service';
|
|
20
|
-
import {
|
|
20
|
+
import { CbmAddProviderModel } from './add-provider.model';
|
|
21
21
|
export declare class CbmAddProviderComponent {
|
|
22
22
|
private providerRepository;
|
|
23
23
|
private providerGroupRepository;
|
|
@@ -31,7 +31,7 @@ export declare class CbmAddProviderComponent {
|
|
|
31
31
|
confirmationModalRef: import("@angular/core").Signal<ConfirmationModal | undefined>;
|
|
32
32
|
modalConfirmRef: import("@angular/core").Signal<CbmModalConfirmComponent | undefined>;
|
|
33
33
|
providerId: import("@angular/core").InputSignal<string | undefined>;
|
|
34
|
-
componentConfig: import("@angular/core").InputSignal<
|
|
34
|
+
componentConfig: import("@angular/core").InputSignal<CbmAddProviderModel.ComponentConfig>;
|
|
35
35
|
cancel: import("@angular/core").OutputEmitterRef<void>;
|
|
36
36
|
save: import("@angular/core").OutputEmitterRef<any>;
|
|
37
37
|
update: import("@angular/core").OutputEmitterRef<any>;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { DestroyRef, OnInit } from '@angular/core';
|
|
2
2
|
import { FormControl, ValidatorFn } from '@angular/forms';
|
|
3
|
-
import { TLabels } from
|
|
4
|
-
import { CbmModalConfirmComponent } from
|
|
5
|
-
import { CbmRecordDetailMetadataModel } from
|
|
6
|
-
import { CbmDocumentReferenceModel } from
|
|
7
|
-
import { CbmDocumentReferenceDomainRepository } from
|
|
8
|
-
import { CbmNotificationService } from
|
|
3
|
+
import { TLabels } from '../../types';
|
|
4
|
+
import { CbmModalConfirmComponent } from '../../../modal-confirm/modal-confirm';
|
|
5
|
+
import { CbmRecordDetailMetadataModel } from '../../../record-detail-metadata/types';
|
|
6
|
+
import { CbmDocumentReferenceModel } from '../../../../domain/models/document-reference.domain.model';
|
|
7
|
+
import { CbmDocumentReferenceDomainRepository } from '../../../../domain/repositories/document-reference.domain.repository';
|
|
8
|
+
import { CbmNotificationService } from '../../../../domain/services/notification/notification.service';
|
|
9
9
|
export declare class DeleteComponent implements OnInit {
|
|
10
10
|
private notificationService;
|
|
11
11
|
private documentReferenceRepository;
|
|
@@ -2,8 +2,8 @@ import { ElementRef } from '@angular/core';
|
|
|
2
2
|
import { TCbmTextInputTransform } from './types';
|
|
3
3
|
export declare class CbmTextInputDirective {
|
|
4
4
|
private elementRef;
|
|
5
|
-
maxTextLength: import("@angular/core").InputSignal<number
|
|
6
|
-
maxWordLength: import("@angular/core").InputSignal<number
|
|
5
|
+
maxTextLength: import("@angular/core").InputSignal<number>;
|
|
6
|
+
maxWordLength: import("@angular/core").InputSignal<number>;
|
|
7
7
|
transform: import("@angular/core").InputSignal<TCbmTextInputTransform | undefined>;
|
|
8
8
|
pattern: import("@angular/core").InputSignal<string | RegExp | undefined>;
|
|
9
9
|
selfReference: boolean;
|
|
@@ -11,4 +11,5 @@ export declare class CbmTextInputDirective {
|
|
|
11
11
|
onKeyDown(event: KeyboardEvent): void;
|
|
12
12
|
onPaste(event: ClipboardEvent): void;
|
|
13
13
|
onInput(): void;
|
|
14
|
+
onBlur(): void;
|
|
14
15
|
}
|
|
@@ -119,6 +119,13 @@ export declare namespace CbmProviderModel {
|
|
|
119
119
|
updated_at?: number;
|
|
120
120
|
updated_user?: string;
|
|
121
121
|
document_name_pay?: string;
|
|
122
|
+
foreign_tax_regime_type?: string;
|
|
123
|
+
payment_country_code?: string;
|
|
124
|
+
payment_country_name?: string;
|
|
125
|
+
payment_destination_country_code?: string;
|
|
126
|
+
payment_destination_country_name?: string;
|
|
127
|
+
double_taxation_treaty_applies?: boolean;
|
|
128
|
+
legal_withholding_applies?: string;
|
|
122
129
|
provider_contact?: Data.ProviderContact[];
|
|
123
130
|
provider_category?: Data.ProviderCategory;
|
|
124
131
|
}
|
|
@@ -225,6 +232,13 @@ export declare namespace CbmProviderModel {
|
|
|
225
232
|
bank_account_number?: string;
|
|
226
233
|
document_type_pay_code?: string;
|
|
227
234
|
document_type_pay_name?: string;
|
|
235
|
+
foreign_tax_regime_type?: string;
|
|
236
|
+
payment_country_code?: string;
|
|
237
|
+
payment_country_name?: string;
|
|
238
|
+
payment_destination_country_code?: string;
|
|
239
|
+
payment_destination_country_name?: string;
|
|
240
|
+
double_taxation_treaty_applies?: boolean;
|
|
241
|
+
legal_withholding_applies?: string;
|
|
228
242
|
contacts?: UpdateManagementBody.Contact[];
|
|
229
243
|
delete_contacts?: string;
|
|
230
244
|
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -256,6 +256,7 @@ export * from './lib/components/add-client/add-client';
|
|
|
256
256
|
|
|
257
257
|
// #region add provider component
|
|
258
258
|
export * from './lib/components/add-provider/add-provider';
|
|
259
|
+
export * from './lib/components/add-provider/add-provider.model';
|
|
259
260
|
|
|
260
261
|
// #region additional data modal component
|
|
261
262
|
export * from './lib/components/additional-data-modal/additional-data-modal';
|
|
@@ -529,4 +530,3 @@ export * from './lib/components/excel-import-view/excel-import-view';
|
|
|
529
530
|
|
|
530
531
|
//#region excel import list
|
|
531
532
|
export * from './lib/components/excel-import-list/excel-import-list';
|
|
532
|
-
|