@inceptionbg/main 1.0.20 → 1.0.21
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/dist/index.d.ts +19 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -116,6 +116,17 @@ interface IPartner {
|
|
|
116
116
|
internalSend?: boolean;
|
|
117
117
|
sefSend?: boolean;
|
|
118
118
|
}
|
|
119
|
+
interface IPartnersSearch {
|
|
120
|
+
name?: string;
|
|
121
|
+
taxId?: string;
|
|
122
|
+
registrationNumber?: string;
|
|
123
|
+
nameLike?: string;
|
|
124
|
+
fullText?: string;
|
|
125
|
+
sort?: string;
|
|
126
|
+
physicalPerson?: boolean;
|
|
127
|
+
foreignLegalEntity?: boolean;
|
|
128
|
+
includeCurrentOrganization?: boolean;
|
|
129
|
+
}
|
|
119
130
|
interface IBusinessActivity {
|
|
120
131
|
id: string;
|
|
121
132
|
name: string;
|
|
@@ -136,6 +147,13 @@ interface IBankAccountSearch {
|
|
|
136
147
|
accountNumberLike?: string;
|
|
137
148
|
main?: boolean;
|
|
138
149
|
}
|
|
150
|
+
interface INote {
|
|
151
|
+
uuid: string;
|
|
152
|
+
subject: string;
|
|
153
|
+
note: string;
|
|
154
|
+
date?: string;
|
|
155
|
+
createdBy?: IUser;
|
|
156
|
+
}
|
|
139
157
|
interface IContactPerson {
|
|
140
158
|
uuid: string;
|
|
141
159
|
representation: string;
|
|
@@ -505,4 +523,4 @@ interface Props {
|
|
|
505
523
|
}
|
|
506
524
|
declare const Sidebar: FC<Props>;
|
|
507
525
|
|
|
508
|
-
export { AxiosTokenHandler, ErrorContext, Header, IBankAccount, IBankAccountSearch, ICountry, IMunicipality, IOrganization, IOrganizationFetchOption, IOrganizationPrivileges, IOrganizationSearch, IPartner, IPlace, ISidebarItem, IToken, IUser, IUserPreferences, IUserPrivileges, LoginPage, NoAccessInfo, NoMatchPage, NotificationsContext, NotificationsProvider, OrganizationStatus, OrganizationStatuses, SelectOrgPage, Sidebar, UserFetchOption, UserOrgContext, UserOrgProvider };
|
|
526
|
+
export { AxiosTokenHandler, ErrorContext, Header, IBankAccount, IBankAccountSearch, IContactPerson, ICountry, IMunicipality, INote, IOrganization, IOrganizationFetchOption, IOrganizationPrivileges, IOrganizationSearch, IPartner, IPartnersSearch, IPlace, ISidebarItem, IToken, IUser, IUserPreferences, IUserPrivileges, LoginPage, NoAccessInfo, NoMatchPage, NotificationsContext, NotificationsProvider, OrganizationStatus, OrganizationStatuses, SelectOrgPage, Sidebar, UserFetchOption, UserOrgContext, UserOrgProvider };
|