@timardex/cluemart-shared 1.5.788 → 1.5.790
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-0oKa4qBB.d.ts → affiliate-B1RBuV0w.d.ts} +7 -2
- package/dist/{affiliate-msmhMpNi.d.mts → affiliate-qEbJvGVD.d.mts} +7 -2
- package/dist/{chunk-JP76OR4F.mjs → chunk-B6DDY5XL.mjs} +11 -1
- package/dist/{chunk-JP76OR4F.mjs.map → chunk-B6DDY5XL.mjs.map} +1 -1
- package/dist/{chunk-63F5FP5R.mjs → chunk-LPPBP3LJ.mjs} +1 -1
- package/dist/{chunk-63F5FP5R.mjs.map → chunk-LPPBP3LJ.mjs.map} +1 -1
- package/dist/{chunk-G4LVRM53.mjs → chunk-Q23R46FE.mjs} +2 -2
- package/dist/{chunk-UGA3F23W.mjs → chunk-R6ONCJE5.mjs} +2 -2
- package/dist/{chunk-ZZBBANGP.mjs → chunk-TWPPOPRF.mjs} +2 -2
- package/dist/formFields/index.mjs +3 -3
- package/dist/graphql/index.cjs +10 -0
- 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 +69 -7
- package/dist/hooks/index.cjs.map +1 -1
- package/dist/hooks/index.d.mts +4 -2
- package/dist/hooks/index.d.ts +4 -2
- package/dist/hooks/index.mjs +62 -12
- package/dist/hooks/index.mjs.map +1 -1
- package/dist/index.cjs +10 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +7 -2
- package/dist/index.d.ts +7 -2
- package/dist/index.mjs +10 -0
- package/dist/index.mjs.map +1 -1
- package/dist/sharing/index.mjs +3 -3
- 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-G4LVRM53.mjs.map → chunk-Q23R46FE.mjs.map} +0 -0
- /package/dist/{chunk-UGA3F23W.mjs.map → chunk-R6ONCJE5.mjs.map} +0 -0
- /package/dist/{chunk-ZZBBANGP.mjs.map → chunk-TWPPOPRF.mjs.map} +0 -0
|
@@ -4,8 +4,13 @@ import { ak as PromoCodeType, aw as SocialMediaType, aA as TermsAgreement, a6 as
|
|
|
4
4
|
type AffiliateContactDetails = {
|
|
5
5
|
mobilePhone: string;
|
|
6
6
|
};
|
|
7
|
+
type AffiliateBankAccountDetailsType = {
|
|
8
|
+
accountHolderName: string;
|
|
9
|
+
accountNumber: string;
|
|
10
|
+
};
|
|
7
11
|
interface AffiliateDetailsType {
|
|
8
|
-
|
|
12
|
+
bankAccountDetails: AffiliateBankAccountDetailsType;
|
|
13
|
+
contactDetails: AffiliateContactDetails;
|
|
9
14
|
region: string;
|
|
10
15
|
socialMedia: SocialMediaType[] | null;
|
|
11
16
|
termsAgreement?: TermsAgreement | null;
|
|
@@ -43,4 +48,4 @@ interface AffiliateType {
|
|
|
43
48
|
type AffiliateFormData = AffiliateDetailsType & Pick<AffiliateType, "_id">;
|
|
44
49
|
type CreateAffiliateFormData = CreateFormData<AffiliateFormData>;
|
|
45
50
|
|
|
46
|
-
export { type AffiliateType as A, type CreateAffiliateFormData as C, EnumAffiliateRewardType as E, type AffiliateFormData as a, type
|
|
51
|
+
export { type AffiliateType as A, type CreateAffiliateFormData as C, EnumAffiliateRewardType as E, type AffiliateFormData as a, type AffiliateBankAccountDetailsType as b, type AffiliateContactDetails as c, type AffiliateDetailsType as d, type AffiliateResourceType as e, type AffiliateReward as f };
|
|
@@ -4,8 +4,13 @@ import { ak as PromoCodeType, aw as SocialMediaType, aA as TermsAgreement, a6 as
|
|
|
4
4
|
type AffiliateContactDetails = {
|
|
5
5
|
mobilePhone: string;
|
|
6
6
|
};
|
|
7
|
+
type AffiliateBankAccountDetailsType = {
|
|
8
|
+
accountHolderName: string;
|
|
9
|
+
accountNumber: string;
|
|
10
|
+
};
|
|
7
11
|
interface AffiliateDetailsType {
|
|
8
|
-
|
|
12
|
+
bankAccountDetails: AffiliateBankAccountDetailsType;
|
|
13
|
+
contactDetails: AffiliateContactDetails;
|
|
9
14
|
region: string;
|
|
10
15
|
socialMedia: SocialMediaType[] | null;
|
|
11
16
|
termsAgreement?: TermsAgreement | null;
|
|
@@ -43,4 +48,4 @@ interface AffiliateType {
|
|
|
43
48
|
type AffiliateFormData = AffiliateDetailsType & Pick<AffiliateType, "_id">;
|
|
44
49
|
type CreateAffiliateFormData = CreateFormData<AffiliateFormData>;
|
|
45
50
|
|
|
46
|
-
export { type AffiliateType as A, type CreateAffiliateFormData as C, EnumAffiliateRewardType as E, type AffiliateFormData as a, type
|
|
51
|
+
export { type AffiliateType as A, type CreateAffiliateFormData as C, EnumAffiliateRewardType as E, type AffiliateFormData as a, type AffiliateBankAccountDetailsType as b, type AffiliateContactDetails as c, type AffiliateDetailsType as d, type AffiliateResourceType as e, type AffiliateReward as f };
|
|
@@ -5092,8 +5092,17 @@ var AFFILIATE_RESOURCE_FIELDS_FRAGMENT = gql40`
|
|
|
5092
5092
|
}
|
|
5093
5093
|
${AFFILIATE_REWARD_FIELDS_FRAGMENT}
|
|
5094
5094
|
`;
|
|
5095
|
+
var AFFILIATE_BANK_ACCOUNT_DETAILS_FIELDS_FRAGMENT = gql40`
|
|
5096
|
+
fragment AffiliateBankAccountDetailsFields on AffiliateBankAccountDetailsType {
|
|
5097
|
+
accountHolderName
|
|
5098
|
+
accountNumber
|
|
5099
|
+
}
|
|
5100
|
+
`;
|
|
5095
5101
|
var AFFILIATE_DETAILS_FIELDS_FRAGMENT = gql40`
|
|
5096
5102
|
fragment AffiliateDetailsFields on AffiliateDetailsType {
|
|
5103
|
+
bankAccountDetails {
|
|
5104
|
+
...AffiliateBankAccountDetailsFields
|
|
5105
|
+
}
|
|
5097
5106
|
contactDetails {
|
|
5098
5107
|
mobilePhone
|
|
5099
5108
|
}
|
|
@@ -5105,6 +5114,7 @@ var AFFILIATE_DETAILS_FIELDS_FRAGMENT = gql40`
|
|
|
5105
5114
|
...TermsAgreementFields
|
|
5106
5115
|
}
|
|
5107
5116
|
}
|
|
5117
|
+
${AFFILIATE_BANK_ACCOUNT_DETAILS_FIELDS_FRAGMENT}
|
|
5108
5118
|
${SOCIAL_MEDIA_FIELDS_FRAGMENT}
|
|
5109
5119
|
${TERMS_AGREEMENT_FIELDS_FRAGMENT}
|
|
5110
5120
|
`;
|
|
@@ -5379,4 +5389,4 @@ export {
|
|
|
5379
5389
|
useUpdateAffiliateDetails,
|
|
5380
5390
|
useDeleteAffiliate
|
|
5381
5391
|
};
|
|
5382
|
-
//# sourceMappingURL=chunk-
|
|
5392
|
+
//# sourceMappingURL=chunk-B6DDY5XL.mjs.map
|