@timardex/cluemart-shared 1.7.71 → 1.7.72
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/index.cjs +2 -2
- package/dist/auth/index.cjs.map +1 -1
- package/dist/auth/index.mjs +1 -1
- package/dist/{chunk-ZLSM7HEU.mjs → chunk-5MB4DIEP.mjs} +9 -5
- package/dist/{chunk-ZLSM7HEU.mjs.map → chunk-5MB4DIEP.mjs.map} +1 -1
- package/dist/{chunk-5K35SL2Z.mjs → chunk-ERNBPEQO.mjs} +2 -2
- package/dist/graphql/index.cjs +8 -4
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.d.mts +4 -1
- package/dist/graphql/index.d.ts +4 -1
- package/dist/graphql/index.mjs +2 -2
- package/dist/hooks/index.cjs +2 -2
- package/dist/hooks/index.cjs.map +1 -1
- package/dist/hooks/index.mjs +2 -2
- package/dist/index.cjs +8 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +4 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.mjs +8 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- /package/dist/{chunk-5K35SL2Z.mjs.map → chunk-ERNBPEQO.mjs.map} +0 -0
package/dist/graphql/index.d.mts
CHANGED
|
@@ -953,7 +953,10 @@ declare const useGetUserResources: (userId: string) => {
|
|
|
953
953
|
}>>;
|
|
954
954
|
userResources: ResourceByUser[];
|
|
955
955
|
};
|
|
956
|
-
declare const useGetUsersByPromoCode: (promoCode: string
|
|
956
|
+
declare const useGetUsersByPromoCode: (promoCode: string, options?: {
|
|
957
|
+
limit?: number;
|
|
958
|
+
offset?: number;
|
|
959
|
+
}) => {
|
|
957
960
|
error: _apollo_client.ApolloError | undefined;
|
|
958
961
|
loading: boolean;
|
|
959
962
|
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloQueryResult<{
|
package/dist/graphql/index.d.ts
CHANGED
|
@@ -953,7 +953,10 @@ declare const useGetUserResources: (userId: string) => {
|
|
|
953
953
|
}>>;
|
|
954
954
|
userResources: ResourceByUser[];
|
|
955
955
|
};
|
|
956
|
-
declare const useGetUsersByPromoCode: (promoCode: string
|
|
956
|
+
declare const useGetUsersByPromoCode: (promoCode: string, options?: {
|
|
957
|
+
limit?: number;
|
|
958
|
+
offset?: number;
|
|
959
|
+
}) => {
|
|
957
960
|
error: _apollo_client.ApolloError | undefined;
|
|
958
961
|
loading: boolean;
|
|
959
962
|
refetch: (variables?: Partial<_apollo_client.OperationVariables> | undefined) => Promise<_apollo_client.ApolloQueryResult<{
|
package/dist/graphql/index.mjs
CHANGED
|
@@ -148,7 +148,7 @@ import {
|
|
|
148
148
|
useUpdateUser,
|
|
149
149
|
useUpdateVendor,
|
|
150
150
|
useUpdateVendorInfo
|
|
151
|
-
} from "../chunk-
|
|
151
|
+
} from "../chunk-ERNBPEQO.mjs";
|
|
152
152
|
import {
|
|
153
153
|
GET_EVENT,
|
|
154
154
|
GET_EVENT_INFO,
|
|
@@ -171,7 +171,7 @@ import {
|
|
|
171
171
|
useRequestPasswordReset,
|
|
172
172
|
useResetPassword,
|
|
173
173
|
useValidateVerificationToken
|
|
174
|
-
} from "../chunk-
|
|
174
|
+
} from "../chunk-5MB4DIEP.mjs";
|
|
175
175
|
import "../chunk-X3OLM35T.mjs";
|
|
176
176
|
export {
|
|
177
177
|
ACTIVATE_VENDOR_CLAIM_MUTATION,
|
package/dist/hooks/index.cjs
CHANGED
|
@@ -4325,8 +4325,8 @@ var GET_USER_RESOURCES = import_client23.gql`
|
|
|
4325
4325
|
}
|
|
4326
4326
|
`;
|
|
4327
4327
|
var GET_USERS_BY_PROMO_CODE = import_client23.gql`
|
|
4328
|
-
query getUsersByPromoCode($promoCode: String
|
|
4329
|
-
usersByPromoCode(promoCode: $promoCode) {
|
|
4328
|
+
query getUsersByPromoCode($promoCode: String!, $limit: Int, $offset: Int) {
|
|
4329
|
+
usersByPromoCode(promoCode: $promoCode, limit: $limit, offset: $offset) {
|
|
4330
4330
|
avatar {
|
|
4331
4331
|
...ResourceImageFields
|
|
4332
4332
|
}
|