@timardex/cluemart-shared 1.2.4 → 1.2.6

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/index.cjs CHANGED
@@ -91,6 +91,7 @@ __export(index_exports, {
91
91
  packagingOptions: () => packagingOptions,
92
92
  paymentMethodOptions: () => paymentMethodOptions,
93
93
  producedIngOptions: () => producedIngOptions,
94
+ productLabelGroups: () => productLabelGroups,
94
95
  profileFields: () => profileFields,
95
96
  registerFields: () => registerFields,
96
97
  removeTypename: () => removeTypename,
@@ -560,6 +561,73 @@ var availableCityTypes = [
560
561
  "Wellington"
561
562
  ];
562
563
  var availableCityOptions = mapArrayToOptions(availableCityTypes);
564
+ var productLabelGroups = [
565
+ {
566
+ category: "Food Sensitivity",
567
+ items: [
568
+ { abbreviation: "DF", fullName: "Dairy-Free" },
569
+ { abbreviation: "EF", fullName: "Egg-Free" },
570
+ { abbreviation: "GF", fullName: "Gluten-Free" },
571
+ { abbreviation: "NF", fullName: "Nut-Free" }
572
+ ]
573
+ },
574
+ {
575
+ category: "Lifestyle",
576
+ items: [
577
+ { abbreviation: "KETO", fullName: "Keto-Friendly" },
578
+ { abbreviation: "P", fullName: "Paleo" },
579
+ { abbreviation: "V", fullName: "Vegan" },
580
+ { abbreviation: "VG", fullName: "Vegetarian" }
581
+ ]
582
+ },
583
+ {
584
+ category: "Natural",
585
+ items: [
586
+ { abbreviation: "ECO", fullName: "Eco-Friendly" },
587
+ { abbreviation: "ORGANIC", fullName: "Organic Product" }
588
+ ]
589
+ },
590
+ {
591
+ category: "Market Character",
592
+ items: [
593
+ { abbreviation: "HM", fullName: "Handmade" },
594
+ { abbreviation: "LOC", fullName: "Local Product" }
595
+ ]
596
+ },
597
+ {
598
+ category: "Cosmetic / Natural",
599
+ items: [
600
+ { abbreviation: "AROM", fullName: "Aromatherapy" },
601
+ { abbreviation: "CRF", fullName: "Cruelty-Free" },
602
+ { abbreviation: "HYPO", fullName: "Hypoallergenic" }
603
+ ]
604
+ },
605
+ {
606
+ category: "Animal Related",
607
+ items: [
608
+ { abbreviation: "GF-PET", fullName: "Grain-Free (Pet)" },
609
+ { abbreviation: "PF", fullName: "Pet-Friendly" }
610
+ ]
611
+ },
612
+ {
613
+ category: "Plant / Natural",
614
+ items: [
615
+ { abbreviation: "NPF", fullName: "Non-Pesticide / Chemical-Free" },
616
+ { abbreviation: "PLN", fullName: "Plant-Based" }
617
+ ]
618
+ },
619
+ {
620
+ category: "Gift / Design",
621
+ items: [
622
+ { abbreviation: "ART", fullName: "Artisan" },
623
+ { abbreviation: "LTD", fullName: "Limited Edition" }
624
+ ]
625
+ },
626
+ {
627
+ category: "Sustainability",
628
+ items: [{ abbreviation: "ZWP", fullName: "Zero-Waste Product" }]
629
+ }
630
+ ];
563
631
 
564
632
  // src/formFields/vendor/vendorInfo.ts
565
633
  var vendorElectricity = {
@@ -2189,6 +2257,20 @@ var USER_FIELDS_FRAGMENT = import_client2.gql`
2189
2257
  }
2190
2258
  refreshToken
2191
2259
  role
2260
+ termsAgreement {
2261
+ appBuildNumber
2262
+ appId
2263
+ appVersion
2264
+ brand
2265
+ deviceName
2266
+ installationId
2267
+ manufacturer
2268
+ modelName
2269
+ osName
2270
+ osVersion
2271
+ termVersion
2272
+ timestamp
2273
+ }
2192
2274
  vendor
2193
2275
  updatedAt
2194
2276
  }
@@ -6143,6 +6225,7 @@ var fonts = {
6143
6225
  packagingOptions,
6144
6226
  paymentMethodOptions,
6145
6227
  producedIngOptions,
6228
+ productLabelGroups,
6146
6229
  profileFields,
6147
6230
  registerFields,
6148
6231
  removeTypename,