cooptypes 0.5.27 → 0.5.28
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.cts +3 -0
- package/dist/index.d.mts +3 -0
- package/dist/index.d.ts +3 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -6375,6 +6375,7 @@ interface IBankAccount {
|
|
|
6375
6375
|
};
|
|
6376
6376
|
}
|
|
6377
6377
|
interface IIndividualData {
|
|
6378
|
+
username: string;
|
|
6378
6379
|
first_name: string;
|
|
6379
6380
|
last_name: string;
|
|
6380
6381
|
middle_name: string;
|
|
@@ -6384,6 +6385,7 @@ interface IIndividualData {
|
|
|
6384
6385
|
email: string;
|
|
6385
6386
|
}
|
|
6386
6387
|
interface IOrganizationData {
|
|
6388
|
+
username: string;
|
|
6387
6389
|
type: 'coop' | 'ooo' | 'oao' | 'zao' | 'pao' | 'ao';
|
|
6388
6390
|
is_cooperative: boolean;
|
|
6389
6391
|
short_name: string;
|
|
@@ -6404,6 +6406,7 @@ interface IOrganizationData {
|
|
|
6404
6406
|
bank_account: IBankAccount;
|
|
6405
6407
|
}
|
|
6406
6408
|
interface IEntrepreneurData {
|
|
6409
|
+
username: string;
|
|
6407
6410
|
first_name: string;
|
|
6408
6411
|
last_name: string;
|
|
6409
6412
|
middle_name: string;
|
package/dist/index.d.mts
CHANGED
|
@@ -6375,6 +6375,7 @@ interface IBankAccount {
|
|
|
6375
6375
|
};
|
|
6376
6376
|
}
|
|
6377
6377
|
interface IIndividualData {
|
|
6378
|
+
username: string;
|
|
6378
6379
|
first_name: string;
|
|
6379
6380
|
last_name: string;
|
|
6380
6381
|
middle_name: string;
|
|
@@ -6384,6 +6385,7 @@ interface IIndividualData {
|
|
|
6384
6385
|
email: string;
|
|
6385
6386
|
}
|
|
6386
6387
|
interface IOrganizationData {
|
|
6388
|
+
username: string;
|
|
6387
6389
|
type: 'coop' | 'ooo' | 'oao' | 'zao' | 'pao' | 'ao';
|
|
6388
6390
|
is_cooperative: boolean;
|
|
6389
6391
|
short_name: string;
|
|
@@ -6404,6 +6406,7 @@ interface IOrganizationData {
|
|
|
6404
6406
|
bank_account: IBankAccount;
|
|
6405
6407
|
}
|
|
6406
6408
|
interface IEntrepreneurData {
|
|
6409
|
+
username: string;
|
|
6407
6410
|
first_name: string;
|
|
6408
6411
|
last_name: string;
|
|
6409
6412
|
middle_name: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -6375,6 +6375,7 @@ interface IBankAccount {
|
|
|
6375
6375
|
};
|
|
6376
6376
|
}
|
|
6377
6377
|
interface IIndividualData {
|
|
6378
|
+
username: string;
|
|
6378
6379
|
first_name: string;
|
|
6379
6380
|
last_name: string;
|
|
6380
6381
|
middle_name: string;
|
|
@@ -6384,6 +6385,7 @@ interface IIndividualData {
|
|
|
6384
6385
|
email: string;
|
|
6385
6386
|
}
|
|
6386
6387
|
interface IOrganizationData {
|
|
6388
|
+
username: string;
|
|
6387
6389
|
type: 'coop' | 'ooo' | 'oao' | 'zao' | 'pao' | 'ao';
|
|
6388
6390
|
is_cooperative: boolean;
|
|
6389
6391
|
short_name: string;
|
|
@@ -6404,6 +6406,7 @@ interface IOrganizationData {
|
|
|
6404
6406
|
bank_account: IBankAccount;
|
|
6405
6407
|
}
|
|
6406
6408
|
interface IEntrepreneurData {
|
|
6409
|
+
username: string;
|
|
6407
6410
|
first_name: string;
|
|
6408
6411
|
last_name: string;
|
|
6409
6412
|
middle_name: string;
|