@timardex/cluemart-shared 1.5.835 → 1.5.837
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/{affiliate-DSZKkCju.d.ts → affiliate-DWonTXNb.d.ts} +1 -2
- package/dist/{affiliate-C0wLdUpL.d.mts → affiliate-DmvU25zu.d.mts} +1 -2
- package/dist/{chunk-QBU7N4P2.mjs → chunk-A7IXLYYS.mjs} +2 -2
- package/dist/{chunk-L4DYYGRX.mjs → chunk-EAO3C6JU.mjs} +1 -2
- package/dist/{chunk-L4DYYGRX.mjs.map → chunk-EAO3C6JU.mjs.map} +1 -1
- package/dist/{chunk-OBZTGPBJ.mjs → chunk-QMJB5OJ4.mjs} +1 -1
- package/dist/{chunk-OBZTGPBJ.mjs.map → chunk-QMJB5OJ4.mjs.map} +1 -1
- package/dist/formFields/index.mjs +2 -2
- package/dist/graphql/index.cjs +0 -1
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.d.mts +1 -1
- package/dist/graphql/index.d.ts +1 -1
- package/dist/graphql/index.mjs +1 -1
- package/dist/hooks/index.cjs +16 -37
- package/dist/hooks/index.cjs.map +1 -1
- package/dist/hooks/index.d.mts +3 -3
- package/dist/hooks/index.d.ts +3 -3
- package/dist/hooks/index.mjs +19 -39
- package/dist/hooks/index.mjs.map +1 -1
- package/dist/index.cjs +0 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +1 -2
- package/dist/index.d.ts +1 -2
- package/dist/index.mjs +0 -1
- package/dist/index.mjs.map +1 -1
- package/dist/types/index.cjs.map +1 -1
- package/dist/types/index.d.mts +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types/index.mjs +1 -1
- package/dist/utils/index.d.mts +1 -1
- package/dist/utils/index.d.ts +1 -1
- package/dist/utils/index.mjs +2 -2
- package/package.json +1 -1
- /package/dist/{chunk-QBU7N4P2.mjs.map → chunk-A7IXLYYS.mjs.map} +0 -0
package/dist/index.d.mts
CHANGED
|
@@ -1529,7 +1529,6 @@ type AffiliateDetailsType = AffiliateUserDefaultFields & {
|
|
|
1529
1529
|
irdNumber: string;
|
|
1530
1530
|
location: LocationType;
|
|
1531
1531
|
participantType: EnumAffiliateParticipantType;
|
|
1532
|
-
region: string;
|
|
1533
1532
|
socialMedia: SocialMediaType[] | null;
|
|
1534
1533
|
};
|
|
1535
1534
|
declare enum EnumAffiliateRewardType {
|
|
@@ -1576,7 +1575,7 @@ interface AffiliateType {
|
|
|
1576
1575
|
redeemHistory?: RedeemHistoryType[] | null;
|
|
1577
1576
|
updatedAt: Date | null;
|
|
1578
1577
|
}
|
|
1579
|
-
type AffiliateFormData = AffiliateDetailsType & Pick<AffiliateType, "_id">;
|
|
1578
|
+
type AffiliateFormData = Omit<AffiliateDetailsType, "email" | "firstName" | "lastName"> & Pick<AffiliateType, "_id">;
|
|
1580
1579
|
type CreateAffiliateFormData = CreateFormData<AffiliateFormData>;
|
|
1581
1580
|
|
|
1582
1581
|
declare const vendorElectricity: {
|
package/dist/index.d.ts
CHANGED
|
@@ -1529,7 +1529,6 @@ type AffiliateDetailsType = AffiliateUserDefaultFields & {
|
|
|
1529
1529
|
irdNumber: string;
|
|
1530
1530
|
location: LocationType;
|
|
1531
1531
|
participantType: EnumAffiliateParticipantType;
|
|
1532
|
-
region: string;
|
|
1533
1532
|
socialMedia: SocialMediaType[] | null;
|
|
1534
1533
|
};
|
|
1535
1534
|
declare enum EnumAffiliateRewardType {
|
|
@@ -1576,7 +1575,7 @@ interface AffiliateType {
|
|
|
1576
1575
|
redeemHistory?: RedeemHistoryType[] | null;
|
|
1577
1576
|
updatedAt: Date | null;
|
|
1578
1577
|
}
|
|
1579
|
-
type AffiliateFormData = AffiliateDetailsType & Pick<AffiliateType, "_id">;
|
|
1578
|
+
type AffiliateFormData = Omit<AffiliateDetailsType, "email" | "firstName" | "lastName"> & Pick<AffiliateType, "_id">;
|
|
1580
1579
|
type CreateAffiliateFormData = CreateFormData<AffiliateFormData>;
|
|
1581
1580
|
|
|
1582
1581
|
declare const vendorElectricity: {
|