@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/index.cjs
CHANGED
|
@@ -2452,13 +2452,23 @@ var CATEGORY_FIELDS_FRAGMENT = import_client2.gql`
|
|
|
2452
2452
|
}
|
|
2453
2453
|
}
|
|
2454
2454
|
`;
|
|
2455
|
+
var LICENCE_FIELDS_FRAGMENT = import_client2.gql`
|
|
2456
|
+
fragment LicenceFields on UserLicenceType {
|
|
2457
|
+
expiryDate
|
|
2458
|
+
issuedDate
|
|
2459
|
+
licenceType
|
|
2460
|
+
}
|
|
2461
|
+
`;
|
|
2455
2462
|
var ASSOCIATES_FIELDS_FRAGMENT = import_client2.gql`
|
|
2456
2463
|
fragment AssociatesFields on AssociateType {
|
|
2457
2464
|
email
|
|
2458
2465
|
resourceId
|
|
2459
2466
|
resourceType
|
|
2460
|
-
licence
|
|
2467
|
+
licence {
|
|
2468
|
+
...LicenceFields
|
|
2469
|
+
}
|
|
2461
2470
|
}
|
|
2471
|
+
${LICENCE_FIELDS_FRAGMENT}
|
|
2462
2472
|
`;
|
|
2463
2473
|
var TERMS_AGREEMENT_FIELDS_FRAGMENT = import_client2.gql`
|
|
2464
2474
|
fragment TermsAgreementFields on TermsAgreementType {
|
|
@@ -2476,13 +2486,6 @@ var TERMS_AGREEMENT_FIELDS_FRAGMENT = import_client2.gql`
|
|
|
2476
2486
|
timestamp
|
|
2477
2487
|
}
|
|
2478
2488
|
`;
|
|
2479
|
-
var LICENCE_FIELDS_FRAGMENT = import_client2.gql`
|
|
2480
|
-
fragment LicenceFields on UserLicenceType {
|
|
2481
|
-
expiryDate
|
|
2482
|
-
issuedDate
|
|
2483
|
-
licenceType
|
|
2484
|
-
}
|
|
2485
|
-
`;
|
|
2486
2489
|
var EVENT_DATETIME_FIELDS_FRAGMENT = import_client2.gql`
|
|
2487
2490
|
fragment EventDateTimeFields on EventDateTimeType {
|
|
2488
2491
|
dateStatus
|