@mohasinac/appkit 4.4.0 → 4.4.1

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.
@@ -400,7 +400,11 @@ export declare const STORE_FIELDS: {
400
400
  readonly BANNER_URL: "storeBannerURL";
401
401
  readonly STATUS: "status";
402
402
  readonly IS_VERIFIED: "isVerified";
403
+ readonly IS_FEATURED: "isFeatured";
403
404
  readonly IS_PUBLIC: "isPublic";
405
+ readonly ADMIN_NOTES: "adminNotes";
406
+ readonly SUSPENSION_REASON: "suspensionReason";
407
+ readonly CAPABILITIES: "capabilities";
404
408
  readonly SHIPPING_CONFIG: "shippingConfig";
405
409
  readonly PAYOUT_DETAILS: "payoutDetails";
406
410
  readonly STATS: "stats";
@@ -437,7 +437,11 @@ export const STORE_FIELDS = {
437
437
  BANNER_URL: "storeBannerURL",
438
438
  STATUS: "status",
439
439
  IS_VERIFIED: "isVerified",
440
+ IS_FEATURED: "isFeatured",
440
441
  IS_PUBLIC: "isPublic",
442
+ ADMIN_NOTES: "adminNotes",
443
+ SUSPENSION_REASON: "suspensionReason",
444
+ CAPABILITIES: "capabilities",
441
445
  SHIPPING_CONFIG: "shippingConfig",
442
446
  PAYOUT_DETAILS: "payoutDetails",
443
447
  STATS: "stats",
@@ -433,6 +433,7 @@ export declare const storeFirestoreSchema: z.ZodObject<{
433
433
  storeDescription?: string | undefined;
434
434
  storeLogoURL?: string | undefined;
435
435
  storeBannerURL?: string | undefined;
436
+ capabilities?: string[] | undefined;
436
437
  shippingConfig?: {
437
438
  providers: {
438
439
  type: "custom" | "self-courier" | "store-pickup";
@@ -458,7 +459,6 @@ export declare const storeFirestoreSchema: z.ZodObject<{
458
459
  shippingPolicy?: string | undefined;
459
460
  isVacationMode?: boolean | undefined;
460
461
  vacationMessage?: string | undefined;
461
- capabilities?: string[] | undefined;
462
462
  vacationReturnDate?: string | Date | z.objectOutputType<{
463
463
  toDate: z.ZodFunction<z.ZodTuple<[], z.ZodUnknown>, z.ZodDate>;
464
464
  }, z.ZodTypeAny, "passthrough"> | undefined;
@@ -518,6 +518,7 @@ export declare const storeFirestoreSchema: z.ZodObject<{
518
518
  storeDescription?: string | undefined;
519
519
  storeLogoURL?: string | undefined;
520
520
  storeBannerURL?: string | undefined;
521
+ capabilities?: string[] | undefined;
521
522
  shippingConfig?: {
522
523
  providers: {
523
524
  type: "custom" | "self-courier" | "store-pickup";
@@ -543,7 +544,6 @@ export declare const storeFirestoreSchema: z.ZodObject<{
543
544
  shippingPolicy?: string | undefined;
544
545
  isVacationMode?: boolean | undefined;
545
546
  vacationMessage?: string | undefined;
546
- capabilities?: string[] | undefined;
547
547
  vacationReturnDate?: string | Date | z.objectInputType<{
548
548
  toDate: z.ZodFunction<z.ZodTuple<[], z.ZodUnknown>, z.ZodDate>;
549
549
  }, z.ZodTypeAny, "passthrough"> | undefined;
@@ -3902,6 +3902,7 @@ export declare const SCHEMAS: {
3902
3902
  storeDescription?: string | undefined;
3903
3903
  storeLogoURL?: string | undefined;
3904
3904
  storeBannerURL?: string | undefined;
3905
+ capabilities?: string[] | undefined;
3905
3906
  shippingConfig?: {
3906
3907
  providers: {
3907
3908
  type: "custom" | "self-courier" | "store-pickup";
@@ -3927,7 +3928,6 @@ export declare const SCHEMAS: {
3927
3928
  shippingPolicy?: string | undefined;
3928
3929
  isVacationMode?: boolean | undefined;
3929
3930
  vacationMessage?: string | undefined;
3930
- capabilities?: string[] | undefined;
3931
3931
  vacationReturnDate?: string | Date | import("zod").objectOutputType<{
3932
3932
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
3933
3933
  }, import("zod").ZodTypeAny, "passthrough"> | undefined;
@@ -3987,6 +3987,7 @@ export declare const SCHEMAS: {
3987
3987
  storeDescription?: string | undefined;
3988
3988
  storeLogoURL?: string | undefined;
3989
3989
  storeBannerURL?: string | undefined;
3990
+ capabilities?: string[] | undefined;
3990
3991
  shippingConfig?: {
3991
3992
  providers: {
3992
3993
  type: "custom" | "self-courier" | "store-pickup";
@@ -4012,7 +4013,6 @@ export declare const SCHEMAS: {
4012
4013
  shippingPolicy?: string | undefined;
4013
4014
  isVacationMode?: boolean | undefined;
4014
4015
  vacationMessage?: string | undefined;
4015
- capabilities?: string[] | undefined;
4016
4016
  vacationReturnDate?: string | Date | import("zod").objectInputType<{
4017
4017
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
4018
4018
  }, import("zod").ZodTypeAny, "passthrough"> | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mohasinac/appkit",
3
- "version": "4.4.0",
3
+ "version": "4.4.1",
4
4
  "license": "MIT",
5
5
  "publishConfig": {
6
6
  "access": "public"