@timardex/cluemart-shared 1.3.47 → 1.3.48
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/{auth-CmCrmpRo.d.ts → auth-BD8pG4QE.d.ts} +1 -1
- package/dist/{auth-svPMD8ug.d.mts → auth-Cp-vzzpW.d.mts} +1 -1
- package/dist/formFields/index.d.mts +1 -1
- package/dist/formFields/index.d.ts +1 -1
- package/dist/{global-BylKHE-S.d.ts → global-BKEcBQxZ.d.ts} +20 -1
- package/dist/{global-_ClapcHu.d.mts → global-DjZooB3t.d.mts} +20 -1
- package/dist/graphql/index.cjs +129 -8
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.d.mts +37 -6
- package/dist/graphql/index.d.ts +37 -6
- package/dist/graphql/index.mjs +123 -7
- package/dist/graphql/index.mjs.map +1 -1
- package/dist/hooks/index.cjs +22 -0
- package/dist/hooks/index.cjs.map +1 -1
- package/dist/hooks/index.d.mts +5 -4
- package/dist/hooks/index.d.ts +5 -4
- package/dist/hooks/index.mjs +21 -0
- package/dist/hooks/index.mjs.map +1 -1
- package/dist/index.cjs +151 -8
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +55 -4
- package/dist/index.d.ts +55 -4
- package/dist/index.mjs +144 -7
- package/dist/index.mjs.map +1 -1
- package/dist/{post-zflSHvi5.d.mts → post-CLTR6oRS.d.mts} +1 -1
- package/dist/{post-ChjjnO9v.d.ts → post-D83V8snF.d.ts} +1 -1
- package/dist/types/index.d.mts +3 -3
- package/dist/types/index.d.ts +3 -3
- package/dist/utils/index.d.mts +1 -1
- package/dist/utils/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { F as FormField, a as FormDateField, O as OptionItem, R as Requirement, S as StallType, C as Category } from '../global-
|
|
1
|
+
import { F as FormField, a as FormDateField, O as OptionItem, R as Requirement, S as StallType, C as Category } from '../global-DjZooB3t.mjs';
|
|
2
2
|
import 'react-hook-form';
|
|
3
3
|
import '../enums/index.mjs';
|
|
4
4
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { F as FormField, a as FormDateField, O as OptionItem, R as Requirement, S as StallType, C as Category } from '../global-
|
|
1
|
+
import { F as FormField, a as FormDateField, O as OptionItem, R as Requirement, S as StallType, C as Category } from '../global-BKEcBQxZ.js';
|
|
2
2
|
import 'react-hook-form';
|
|
3
3
|
import '../enums/index.js';
|
|
4
4
|
|
|
@@ -188,6 +188,25 @@ interface VendorType extends BaseResourceType {
|
|
|
188
188
|
type VendorInfoType = Omit<VendorInfoFormData, "_id" | "documentsUpload"> & {
|
|
189
189
|
_id: string;
|
|
190
190
|
};
|
|
191
|
+
type UnregisteredVendorInvitationType = {
|
|
192
|
+
dateTime: DateTimeType[];
|
|
193
|
+
eventId: string;
|
|
194
|
+
location: LocationType;
|
|
195
|
+
};
|
|
196
|
+
interface UnregisteredVendorFormData {
|
|
197
|
+
categories: Category[];
|
|
198
|
+
email: string;
|
|
199
|
+
name: string;
|
|
200
|
+
region: string;
|
|
201
|
+
invitations: UnregisteredVendorInvitationType[] | null;
|
|
202
|
+
}
|
|
203
|
+
type CreateUnregisteredVendorFormData = CreateFormData<UnregisteredVendorFormData>;
|
|
204
|
+
type UnregisteredVendorType = UnregisteredVendorFormData & {
|
|
205
|
+
_id: string;
|
|
206
|
+
createdAt: Date;
|
|
207
|
+
deletedAt: Date | null;
|
|
208
|
+
updatedAt: Date | null;
|
|
209
|
+
};
|
|
191
210
|
|
|
192
211
|
type Nullable<T> = {
|
|
193
212
|
[K in keyof T]: T[K] | null | undefined;
|
|
@@ -354,4 +373,4 @@ interface CreateFormData<T extends FieldValues> {
|
|
|
354
373
|
watch: UseFormWatch<T>;
|
|
355
374
|
}
|
|
356
375
|
|
|
357
|
-
export type { AssociateType as A, BaseResourceTypeFormData as B, Category as C, DeviceInfo as D, EventType as E, FormField as F, GeocodeLocation as G,
|
|
376
|
+
export type { AssociateType as A, BaseResourceTypeFormData as B, Category as C, DeviceInfo as D, EventType as E, FormField as F, GeocodeLocation as G, DateTimeWithPriceType as H, ImageObjectType as I, PaymentInfoType as J, RelationDate as K, LocationType as L, MapMultiLocation as M, Nullable as N, OptionItem as O, PosterUsageType as P, VendorLocation as Q, Requirement as R, StallType as S, TermsAgreement as T, UnregisteredVendorType as U, VendorType as V, VendorMenuType as W, VendorAttributes as X, UnregisteredVendorInvitationType as Y, CreateUnregisteredVendorFormData as Z, FormDateField as a, EventInfoType as b, RelationType as c, ResourceConnectionsType as d, VendorInfoType as e, UserActivityEventType as f, UserLicenceType as g, VendorFormData as h, CreateVendorFormData as i, VendorInfoFormData as j, CreateVendorInfoFormData as k, EventFormData as l, CreateEventFormData as m, EventInfoFormData as n, CreateEventInfoFormData as o, UnregisteredVendorFormData as p, ResourceContactDetailsType as q, ResourceImageType as r, SocialMediaType as s, OwnerType as t, BaseResourceType as u, DateTimeType as v, Region as w, SubcategoryItems as x, Subcategory as y, CreateFormData as z };
|
|
@@ -188,6 +188,25 @@ interface VendorType extends BaseResourceType {
|
|
|
188
188
|
type VendorInfoType = Omit<VendorInfoFormData, "_id" | "documentsUpload"> & {
|
|
189
189
|
_id: string;
|
|
190
190
|
};
|
|
191
|
+
type UnregisteredVendorInvitationType = {
|
|
192
|
+
dateTime: DateTimeType[];
|
|
193
|
+
eventId: string;
|
|
194
|
+
location: LocationType;
|
|
195
|
+
};
|
|
196
|
+
interface UnregisteredVendorFormData {
|
|
197
|
+
categories: Category[];
|
|
198
|
+
email: string;
|
|
199
|
+
name: string;
|
|
200
|
+
region: string;
|
|
201
|
+
invitations: UnregisteredVendorInvitationType[] | null;
|
|
202
|
+
}
|
|
203
|
+
type CreateUnregisteredVendorFormData = CreateFormData<UnregisteredVendorFormData>;
|
|
204
|
+
type UnregisteredVendorType = UnregisteredVendorFormData & {
|
|
205
|
+
_id: string;
|
|
206
|
+
createdAt: Date;
|
|
207
|
+
deletedAt: Date | null;
|
|
208
|
+
updatedAt: Date | null;
|
|
209
|
+
};
|
|
191
210
|
|
|
192
211
|
type Nullable<T> = {
|
|
193
212
|
[K in keyof T]: T[K] | null | undefined;
|
|
@@ -354,4 +373,4 @@ interface CreateFormData<T extends FieldValues> {
|
|
|
354
373
|
watch: UseFormWatch<T>;
|
|
355
374
|
}
|
|
356
375
|
|
|
357
|
-
export type { AssociateType as A, BaseResourceTypeFormData as B, Category as C, DeviceInfo as D, EventType as E, FormField as F, GeocodeLocation as G,
|
|
376
|
+
export type { AssociateType as A, BaseResourceTypeFormData as B, Category as C, DeviceInfo as D, EventType as E, FormField as F, GeocodeLocation as G, DateTimeWithPriceType as H, ImageObjectType as I, PaymentInfoType as J, RelationDate as K, LocationType as L, MapMultiLocation as M, Nullable as N, OptionItem as O, PosterUsageType as P, VendorLocation as Q, Requirement as R, StallType as S, TermsAgreement as T, UnregisteredVendorType as U, VendorType as V, VendorMenuType as W, VendorAttributes as X, UnregisteredVendorInvitationType as Y, CreateUnregisteredVendorFormData as Z, FormDateField as a, EventInfoType as b, RelationType as c, ResourceConnectionsType as d, VendorInfoType as e, UserActivityEventType as f, UserLicenceType as g, VendorFormData as h, CreateVendorFormData as i, VendorInfoFormData as j, CreateVendorInfoFormData as k, EventFormData as l, CreateEventFormData as m, EventInfoFormData as n, CreateEventInfoFormData as o, UnregisteredVendorFormData as p, ResourceContactDetailsType as q, ResourceImageType as r, SocialMediaType as s, OwnerType as t, BaseResourceType as u, DateTimeType as v, Region as w, SubcategoryItems as x, Subcategory as y, CreateFormData as z };
|
package/dist/graphql/index.cjs
CHANGED
|
@@ -44,6 +44,7 @@ __export(graphql_exports, {
|
|
|
44
44
|
useCreateRelation: () => useCreateRelation,
|
|
45
45
|
useCreateResourceActivity: () => useCreateResourceActivity,
|
|
46
46
|
useCreateTester: () => useCreateTester,
|
|
47
|
+
useCreateUnregisteredVendor: () => useCreateUnregisteredVendor,
|
|
47
48
|
useCreateUser: () => useCreateUser,
|
|
48
49
|
useCreateVendor: () => useCreateVendor,
|
|
49
50
|
useCreateVendorInfo: () => useCreateVendorInfo,
|
|
@@ -56,6 +57,7 @@ __export(graphql_exports, {
|
|
|
56
57
|
useDeletePost: () => useDeletePost,
|
|
57
58
|
useDeleteRelation: () => useDeleteRelation,
|
|
58
59
|
useDeleteTester: () => useDeleteTester,
|
|
60
|
+
useDeleteUnregisteredVendor: () => useDeleteUnregisteredVendor,
|
|
59
61
|
useDeleteUser: () => useDeleteUser,
|
|
60
62
|
useDeleteVendor: () => useDeleteVendor,
|
|
61
63
|
useGetAd: () => useGetAd,
|
|
@@ -79,11 +81,13 @@ __export(graphql_exports, {
|
|
|
79
81
|
useGetPostsByType: () => useGetPostsByType,
|
|
80
82
|
useGetRelation: () => useGetRelation,
|
|
81
83
|
useGetRelationByEventAndVendor: () => useGetRelationByEventAndVendor,
|
|
82
|
-
|
|
84
|
+
useGetResourceActivity: () => useGetResourceActivity,
|
|
83
85
|
useGetResourceConnections: () => useGetResourceConnections,
|
|
84
86
|
useGetSubscriptionStatus: () => useGetSubscriptionStatus,
|
|
85
87
|
useGetTester: () => useGetTester,
|
|
86
88
|
useGetTesters: () => useGetTesters,
|
|
89
|
+
useGetUnregisteredVendor: () => useGetUnregisteredVendor,
|
|
90
|
+
useGetUnregisteredVendors: () => useGetUnregisteredVendors,
|
|
87
91
|
useGetUser: () => useGetUser,
|
|
88
92
|
useGetUserActivities: () => useGetUserActivities,
|
|
89
93
|
useGetUserChats: () => useGetUserChats,
|
|
@@ -123,6 +127,7 @@ __export(graphql_exports, {
|
|
|
123
127
|
useUpdateRelation: () => useUpdateRelation,
|
|
124
128
|
useUpdateSubscriptionPlan: () => useUpdateSubscriptionPlan,
|
|
125
129
|
useUpdateTester: () => useUpdateTester,
|
|
130
|
+
useUpdateUnregisteredVendor: () => useUpdateUnregisteredVendor,
|
|
126
131
|
useUpdateUser: () => useUpdateUser,
|
|
127
132
|
useUpdateVendor: () => useUpdateVendor,
|
|
128
133
|
useUpdateVendorInfo: () => useUpdateVendorInfo,
|
|
@@ -777,6 +782,38 @@ var VENDOR_INFO = import_client5.gql`
|
|
|
777
782
|
${VENDOR_ATTRIBUTES_FRAGMENT}
|
|
778
783
|
${RESOURCE_IMAGE_FIELDS_FRAGMENT}
|
|
779
784
|
`;
|
|
785
|
+
var UNREGISTERED_VENDOR_INVITATION_FRAGMENT = import_client5.gql`
|
|
786
|
+
fragment UnregisteredVendorInvitationFields on UnregisteredVendorInvitationType {
|
|
787
|
+
dateTime {
|
|
788
|
+
..EventDateTimeFields
|
|
789
|
+
}
|
|
790
|
+
eventId
|
|
791
|
+
location {
|
|
792
|
+
...LocationFields
|
|
793
|
+
}
|
|
794
|
+
}
|
|
795
|
+
${EVENT_DATETIME_FIELDS_FRAGMENT}
|
|
796
|
+
${LOCATION_FIELDS_FRAGMENT}
|
|
797
|
+
`;
|
|
798
|
+
var UNREGISTERED_VENDOR = import_client5.gql`
|
|
799
|
+
fragment UnregisteredVendorFields on UnregisteredVendorType {
|
|
800
|
+
_id
|
|
801
|
+
categories {
|
|
802
|
+
...CategoryFields
|
|
803
|
+
}
|
|
804
|
+
createdAt
|
|
805
|
+
deletedAt
|
|
806
|
+
email
|
|
807
|
+
invitations {
|
|
808
|
+
...UnregisteredVendorInvitationFields
|
|
809
|
+
}
|
|
810
|
+
name
|
|
811
|
+
region
|
|
812
|
+
updatedAt
|
|
813
|
+
}
|
|
814
|
+
${CATEGORY_FIELDS_FRAGMENT}
|
|
815
|
+
${UNREGISTERED_VENDOR_INVITATION_FRAGMENT}
|
|
816
|
+
`;
|
|
780
817
|
var GET_VENDORS = import_client5.gql`
|
|
781
818
|
query getVendors {
|
|
782
819
|
vendors {
|
|
@@ -817,6 +854,22 @@ var GET_VENDOR_INFO = import_client5.gql`
|
|
|
817
854
|
}
|
|
818
855
|
${VENDOR_INFO}
|
|
819
856
|
`;
|
|
857
|
+
var GET_UNREGISTERED_VENDORS = import_client5.gql`
|
|
858
|
+
query getUnregisteredVendors {
|
|
859
|
+
unregisteredVendors {
|
|
860
|
+
...UnregisteredVendorFields
|
|
861
|
+
}
|
|
862
|
+
}
|
|
863
|
+
${UNREGISTERED_VENDOR}
|
|
864
|
+
`;
|
|
865
|
+
var GET_UNREGISTERED_VENDOR = import_client5.gql`
|
|
866
|
+
query getUnregisteredVendor($_id: ID!) {
|
|
867
|
+
unregisteredVendor(_id: $_id) {
|
|
868
|
+
...UnregisteredVendorFields
|
|
869
|
+
}
|
|
870
|
+
}
|
|
871
|
+
${UNREGISTERED_VENDOR}
|
|
872
|
+
`;
|
|
820
873
|
|
|
821
874
|
// src/graphql/hooks/admin/hooksMutation.ts
|
|
822
875
|
var useAdminUpdateResourceType = () => {
|
|
@@ -2145,6 +2198,30 @@ var UPDATE_VENDOR_INFO_MUTATION = import_client35.gql`
|
|
|
2145
2198
|
}
|
|
2146
2199
|
${VENDOR_INFO}
|
|
2147
2200
|
`;
|
|
2201
|
+
var CREATE_UNREGISTERED_VENDOR_MUTATION = import_client35.gql`
|
|
2202
|
+
mutation createUnregisteredVendor($input: UnregisteredVendorInputType!) {
|
|
2203
|
+
createUnregisteredVendor(input: $input) {
|
|
2204
|
+
...UnregisteredVendorFields
|
|
2205
|
+
}
|
|
2206
|
+
}
|
|
2207
|
+
${UNREGISTERED_VENDOR}
|
|
2208
|
+
`;
|
|
2209
|
+
var UPDATE_UNREGISTERED_VENDOR_MUTATION = import_client35.gql`
|
|
2210
|
+
mutation updateUnregisteredVendor(
|
|
2211
|
+
$_id: ID!
|
|
2212
|
+
$input: UnregisteredVendorInputType!
|
|
2213
|
+
) {
|
|
2214
|
+
updateUnregisteredVendor(_id: $_id, input: $input) {
|
|
2215
|
+
...UnregisteredVendorFields
|
|
2216
|
+
}
|
|
2217
|
+
}
|
|
2218
|
+
${UNREGISTERED_VENDOR}
|
|
2219
|
+
`;
|
|
2220
|
+
var DELETE_UNREGISTERED_VENDOR_MUTATION = import_client35.gql`
|
|
2221
|
+
mutation deleteUnregisteredVendor($_id: ID!) {
|
|
2222
|
+
deleteUnregisteredVendor(_id: $_id)
|
|
2223
|
+
}
|
|
2224
|
+
`;
|
|
2148
2225
|
|
|
2149
2226
|
// src/graphql/hooks/vendor/hooksMutation.ts
|
|
2150
2227
|
var useCreateVendor = () => {
|
|
@@ -2218,6 +2295,24 @@ var useUpdateVendorInfo = () => {
|
|
|
2218
2295
|
});
|
|
2219
2296
|
return { error, loading, updateVendorInfo };
|
|
2220
2297
|
};
|
|
2298
|
+
var useCreateUnregisteredVendor = () => {
|
|
2299
|
+
const [createUnregisteredVendor, { loading, error }] = (0, import_client36.useMutation)(
|
|
2300
|
+
CREATE_UNREGISTERED_VENDOR_MUTATION
|
|
2301
|
+
);
|
|
2302
|
+
return { createUnregisteredVendor, error, loading };
|
|
2303
|
+
};
|
|
2304
|
+
var useUpdateUnregisteredVendor = () => {
|
|
2305
|
+
const [updateUnregisteredVendor, { loading, error }] = (0, import_client36.useMutation)(
|
|
2306
|
+
UPDATE_UNREGISTERED_VENDOR_MUTATION
|
|
2307
|
+
);
|
|
2308
|
+
return { error, loading, updateUnregisteredVendor };
|
|
2309
|
+
};
|
|
2310
|
+
var useDeleteUnregisteredVendor = () => {
|
|
2311
|
+
const [deleteUnregisteredVendor, { loading, error }] = (0, import_client36.useMutation)(
|
|
2312
|
+
DELETE_UNREGISTERED_VENDOR_MUTATION
|
|
2313
|
+
);
|
|
2314
|
+
return { deleteUnregisteredVendor, error, loading };
|
|
2315
|
+
};
|
|
2221
2316
|
|
|
2222
2317
|
// src/graphql/hooks/vendor/hooksQuery.ts
|
|
2223
2318
|
var import_client37 = require("@apollo/client");
|
|
@@ -2280,6 +2375,27 @@ var useGetVendorInfo = (vendorId) => {
|
|
|
2280
2375
|
vendorInfo
|
|
2281
2376
|
};
|
|
2282
2377
|
};
|
|
2378
|
+
var useGetUnregisteredVendors = () => {
|
|
2379
|
+
const { loading, error, data, refetch } = (0, import_client37.useQuery)(GET_UNREGISTERED_VENDORS, {
|
|
2380
|
+
fetchPolicy: "network-only"
|
|
2381
|
+
});
|
|
2382
|
+
const unregisteredVendors = data?.unregisteredVendors || [];
|
|
2383
|
+
return {
|
|
2384
|
+
error,
|
|
2385
|
+
loading,
|
|
2386
|
+
refetch,
|
|
2387
|
+
unregisteredVendors
|
|
2388
|
+
};
|
|
2389
|
+
};
|
|
2390
|
+
var useGetUnregisteredVendor = (_id) => {
|
|
2391
|
+
const { loading, error, data, refetch } = (0, import_client37.useQuery)(GET_UNREGISTERED_VENDOR, {
|
|
2392
|
+
fetchPolicy: "network-only",
|
|
2393
|
+
skip: !_id,
|
|
2394
|
+
variables: { _id }
|
|
2395
|
+
});
|
|
2396
|
+
const unregisteredVendor = data?.unregisteredVendor;
|
|
2397
|
+
return { error, loading, refetch, unregisteredVendor };
|
|
2398
|
+
};
|
|
2283
2399
|
|
|
2284
2400
|
// src/graphql/hooks/tester/hooksMutation.ts
|
|
2285
2401
|
var import_client39 = require("@apollo/client");
|
|
@@ -2850,12 +2966,12 @@ var RESOURCE_ACTIVITIES_FIELDS_FRAGMENT = import_client50.gql`
|
|
|
2850
2966
|
}
|
|
2851
2967
|
}
|
|
2852
2968
|
`;
|
|
2853
|
-
var
|
|
2854
|
-
query
|
|
2969
|
+
var GET_RESOURCE_ACTIVITY = import_client50.gql`
|
|
2970
|
+
query getResourceActivity(
|
|
2855
2971
|
$resourceType: ResourceTypeEnum!
|
|
2856
2972
|
$resourceId: ID!
|
|
2857
2973
|
) {
|
|
2858
|
-
|
|
2974
|
+
resourceActivity(resourceType: $resourceType, resourceId: $resourceId) {
|
|
2859
2975
|
...ResourceActivitiesFields
|
|
2860
2976
|
}
|
|
2861
2977
|
}
|
|
@@ -2863,8 +2979,8 @@ var GET_RESOURCE_ACTIVITIES = import_client50.gql`
|
|
|
2863
2979
|
`;
|
|
2864
2980
|
|
|
2865
2981
|
// src/graphql/hooks/resourceActivities/hooksQuery.ts
|
|
2866
|
-
var
|
|
2867
|
-
const { data, loading, error, refetch } = (0, import_client51.useQuery)(
|
|
2982
|
+
var useGetResourceActivity = (resourceId, resourceType) => {
|
|
2983
|
+
const { data, loading, error, refetch } = (0, import_client51.useQuery)(GET_RESOURCE_ACTIVITY, {
|
|
2868
2984
|
fetchPolicy: "network-only",
|
|
2869
2985
|
variables: { resourceId, resourceType }
|
|
2870
2986
|
});
|
|
@@ -2872,7 +2988,7 @@ var useGetResourceActivities = (resourceId, resourceType) => {
|
|
|
2872
2988
|
error,
|
|
2873
2989
|
loading,
|
|
2874
2990
|
refetch,
|
|
2875
|
-
|
|
2991
|
+
resourceActivity: data?.resourceActivity || null
|
|
2876
2992
|
};
|
|
2877
2993
|
};
|
|
2878
2994
|
|
|
@@ -3293,6 +3409,7 @@ var useGetPostsByType = (postType) => {
|
|
|
3293
3409
|
useCreateRelation,
|
|
3294
3410
|
useCreateResourceActivity,
|
|
3295
3411
|
useCreateTester,
|
|
3412
|
+
useCreateUnregisteredVendor,
|
|
3296
3413
|
useCreateUser,
|
|
3297
3414
|
useCreateVendor,
|
|
3298
3415
|
useCreateVendorInfo,
|
|
@@ -3305,6 +3422,7 @@ var useGetPostsByType = (postType) => {
|
|
|
3305
3422
|
useDeletePost,
|
|
3306
3423
|
useDeleteRelation,
|
|
3307
3424
|
useDeleteTester,
|
|
3425
|
+
useDeleteUnregisteredVendor,
|
|
3308
3426
|
useDeleteUser,
|
|
3309
3427
|
useDeleteVendor,
|
|
3310
3428
|
useGetAd,
|
|
@@ -3328,11 +3446,13 @@ var useGetPostsByType = (postType) => {
|
|
|
3328
3446
|
useGetPostsByType,
|
|
3329
3447
|
useGetRelation,
|
|
3330
3448
|
useGetRelationByEventAndVendor,
|
|
3331
|
-
|
|
3449
|
+
useGetResourceActivity,
|
|
3332
3450
|
useGetResourceConnections,
|
|
3333
3451
|
useGetSubscriptionStatus,
|
|
3334
3452
|
useGetTester,
|
|
3335
3453
|
useGetTesters,
|
|
3454
|
+
useGetUnregisteredVendor,
|
|
3455
|
+
useGetUnregisteredVendors,
|
|
3336
3456
|
useGetUser,
|
|
3337
3457
|
useGetUserActivities,
|
|
3338
3458
|
useGetUserChats,
|
|
@@ -3372,6 +3492,7 @@ var useGetPostsByType = (postType) => {
|
|
|
3372
3492
|
useUpdateRelation,
|
|
3373
3493
|
useUpdateSubscriptionPlan,
|
|
3374
3494
|
useUpdateTester,
|
|
3495
|
+
useUpdateUnregisteredVendor,
|
|
3375
3496
|
useUpdateUser,
|
|
3376
3497
|
useUpdateVendor,
|
|
3377
3498
|
useUpdateVendorInfo,
|