@timardex/cluemart-shared 1.2.95 → 1.2.96
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/graphql/index.cjs +11 -8
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.mjs +11 -8
- package/dist/graphql/index.mjs.map +1 -1
- package/dist/index.cjs +11 -8
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +11 -8
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/graphql/index.cjs
CHANGED
|
@@ -187,13 +187,23 @@ var CATEGORY_FIELDS_FRAGMENT = import_client2.gql`
|
|
|
187
187
|
}
|
|
188
188
|
}
|
|
189
189
|
`;
|
|
190
|
+
var LICENCE_FIELDS_FRAGMENT = import_client2.gql`
|
|
191
|
+
fragment LicenceFields on UserLicenceType {
|
|
192
|
+
expiryDate
|
|
193
|
+
issuedDate
|
|
194
|
+
licenceType
|
|
195
|
+
}
|
|
196
|
+
`;
|
|
190
197
|
var ASSOCIATES_FIELDS_FRAGMENT = import_client2.gql`
|
|
191
198
|
fragment AssociatesFields on AssociateType {
|
|
192
199
|
email
|
|
193
200
|
resourceId
|
|
194
201
|
resourceType
|
|
195
|
-
licence
|
|
202
|
+
licence {
|
|
203
|
+
...LicenceFields
|
|
204
|
+
}
|
|
196
205
|
}
|
|
206
|
+
${LICENCE_FIELDS_FRAGMENT}
|
|
197
207
|
`;
|
|
198
208
|
var TERMS_AGREEMENT_FIELDS_FRAGMENT = import_client2.gql`
|
|
199
209
|
fragment TermsAgreementFields on TermsAgreementType {
|
|
@@ -211,13 +221,6 @@ var TERMS_AGREEMENT_FIELDS_FRAGMENT = import_client2.gql`
|
|
|
211
221
|
timestamp
|
|
212
222
|
}
|
|
213
223
|
`;
|
|
214
|
-
var LICENCE_FIELDS_FRAGMENT = import_client2.gql`
|
|
215
|
-
fragment LicenceFields on UserLicenceType {
|
|
216
|
-
expiryDate
|
|
217
|
-
issuedDate
|
|
218
|
-
licenceType
|
|
219
|
-
}
|
|
220
|
-
`;
|
|
221
224
|
var EVENT_DATETIME_FIELDS_FRAGMENT = import_client2.gql`
|
|
222
225
|
fragment EventDateTimeFields on EventDateTimeType {
|
|
223
226
|
dateStatus
|