cooptypes 1.0.0 → 1.0.2
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 +20 -1
- package/dist/index.d.mts +20 -1
- package/dist/index.d.ts +20 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1428,6 +1428,7 @@ interface IOrganization$1 {
|
|
|
1428
1428
|
description: string;
|
|
1429
1429
|
is_cooperative: boolean;
|
|
1430
1430
|
is_branched: boolean;
|
|
1431
|
+
is_enrolled: boolean;
|
|
1431
1432
|
coop_type: IName$6;
|
|
1432
1433
|
registration: IAsset$4;
|
|
1433
1434
|
initial: IAsset$4;
|
|
@@ -6616,11 +6617,29 @@ interface ICooperativeData extends IOrganizationData {
|
|
|
6616
6617
|
interface MembersData extends IBoardMember, IIndividualData {
|
|
6617
6618
|
is_chairman: boolean;
|
|
6618
6619
|
}
|
|
6620
|
+
interface IAnnounce {
|
|
6621
|
+
phone: string;
|
|
6622
|
+
email: string;
|
|
6623
|
+
}
|
|
6624
|
+
interface IContacts {
|
|
6625
|
+
full_name: string;
|
|
6626
|
+
full_address: string;
|
|
6627
|
+
details: string;
|
|
6628
|
+
phone: string;
|
|
6629
|
+
email: string;
|
|
6630
|
+
chairman: {
|
|
6631
|
+
first_name: string;
|
|
6632
|
+
last_name: string;
|
|
6633
|
+
middle_name: string;
|
|
6634
|
+
};
|
|
6635
|
+
}
|
|
6619
6636
|
|
|
6637
|
+
type index$1_IAnnounce = IAnnounce;
|
|
6638
|
+
type index$1_IContacts = IContacts;
|
|
6620
6639
|
type index$1_ICooperativeData = ICooperativeData;
|
|
6621
6640
|
type index$1_MembersData = MembersData;
|
|
6622
6641
|
declare namespace index$1 {
|
|
6623
|
-
export type { index$1_ICooperativeData as ICooperativeData, index$1_MembersData as MembersData };
|
|
6642
|
+
export type { index$1_IAnnounce as IAnnounce, index$1_IContacts as IContacts, index$1_ICooperativeData as ICooperativeData, index$1_MembersData as MembersData };
|
|
6624
6643
|
}
|
|
6625
6644
|
|
|
6626
6645
|
declare namespace index {
|
package/dist/index.d.mts
CHANGED
|
@@ -1428,6 +1428,7 @@ interface IOrganization$1 {
|
|
|
1428
1428
|
description: string;
|
|
1429
1429
|
is_cooperative: boolean;
|
|
1430
1430
|
is_branched: boolean;
|
|
1431
|
+
is_enrolled: boolean;
|
|
1431
1432
|
coop_type: IName$6;
|
|
1432
1433
|
registration: IAsset$4;
|
|
1433
1434
|
initial: IAsset$4;
|
|
@@ -6616,11 +6617,29 @@ interface ICooperativeData extends IOrganizationData {
|
|
|
6616
6617
|
interface MembersData extends IBoardMember, IIndividualData {
|
|
6617
6618
|
is_chairman: boolean;
|
|
6618
6619
|
}
|
|
6620
|
+
interface IAnnounce {
|
|
6621
|
+
phone: string;
|
|
6622
|
+
email: string;
|
|
6623
|
+
}
|
|
6624
|
+
interface IContacts {
|
|
6625
|
+
full_name: string;
|
|
6626
|
+
full_address: string;
|
|
6627
|
+
details: string;
|
|
6628
|
+
phone: string;
|
|
6629
|
+
email: string;
|
|
6630
|
+
chairman: {
|
|
6631
|
+
first_name: string;
|
|
6632
|
+
last_name: string;
|
|
6633
|
+
middle_name: string;
|
|
6634
|
+
};
|
|
6635
|
+
}
|
|
6619
6636
|
|
|
6637
|
+
type index$1_IAnnounce = IAnnounce;
|
|
6638
|
+
type index$1_IContacts = IContacts;
|
|
6620
6639
|
type index$1_ICooperativeData = ICooperativeData;
|
|
6621
6640
|
type index$1_MembersData = MembersData;
|
|
6622
6641
|
declare namespace index$1 {
|
|
6623
|
-
export type { index$1_ICooperativeData as ICooperativeData, index$1_MembersData as MembersData };
|
|
6642
|
+
export type { index$1_IAnnounce as IAnnounce, index$1_IContacts as IContacts, index$1_ICooperativeData as ICooperativeData, index$1_MembersData as MembersData };
|
|
6624
6643
|
}
|
|
6625
6644
|
|
|
6626
6645
|
declare namespace index {
|
package/dist/index.d.ts
CHANGED
|
@@ -1428,6 +1428,7 @@ interface IOrganization$1 {
|
|
|
1428
1428
|
description: string;
|
|
1429
1429
|
is_cooperative: boolean;
|
|
1430
1430
|
is_branched: boolean;
|
|
1431
|
+
is_enrolled: boolean;
|
|
1431
1432
|
coop_type: IName$6;
|
|
1432
1433
|
registration: IAsset$4;
|
|
1433
1434
|
initial: IAsset$4;
|
|
@@ -6616,11 +6617,29 @@ interface ICooperativeData extends IOrganizationData {
|
|
|
6616
6617
|
interface MembersData extends IBoardMember, IIndividualData {
|
|
6617
6618
|
is_chairman: boolean;
|
|
6618
6619
|
}
|
|
6620
|
+
interface IAnnounce {
|
|
6621
|
+
phone: string;
|
|
6622
|
+
email: string;
|
|
6623
|
+
}
|
|
6624
|
+
interface IContacts {
|
|
6625
|
+
full_name: string;
|
|
6626
|
+
full_address: string;
|
|
6627
|
+
details: string;
|
|
6628
|
+
phone: string;
|
|
6629
|
+
email: string;
|
|
6630
|
+
chairman: {
|
|
6631
|
+
first_name: string;
|
|
6632
|
+
last_name: string;
|
|
6633
|
+
middle_name: string;
|
|
6634
|
+
};
|
|
6635
|
+
}
|
|
6619
6636
|
|
|
6637
|
+
type index$1_IAnnounce = IAnnounce;
|
|
6638
|
+
type index$1_IContacts = IContacts;
|
|
6620
6639
|
type index$1_ICooperativeData = ICooperativeData;
|
|
6621
6640
|
type index$1_MembersData = MembersData;
|
|
6622
6641
|
declare namespace index$1 {
|
|
6623
|
-
export type { index$1_ICooperativeData as ICooperativeData, index$1_MembersData as MembersData };
|
|
6642
|
+
export type { index$1_IAnnounce as IAnnounce, index$1_IContacts as IContacts, index$1_ICooperativeData as ICooperativeData, index$1_MembersData as MembersData };
|
|
6624
6643
|
}
|
|
6625
6644
|
|
|
6626
6645
|
declare namespace index {
|