@dropins/storefront-order 0.1.0-alpha23 → 0.1.0-alpha25

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.
Files changed (36) hide show
  1. package/api/getOrderDetailsById/graphql/orderItemsFragment.graphql.d.ts +1 -1
  2. package/api/getStoreConfig/graphql/StoreConfigQuery.d.ts +1 -1
  3. package/api.js +8 -7
  4. package/chunks/CartSummaryItem.js +1 -1
  5. package/chunks/OrderLoaders.js +1 -1
  6. package/chunks/ReturnsListContent.js +1 -1
  7. package/chunks/getCustomerOrdersReturn.js +1 -1
  8. package/chunks/getFormValues.js +1 -1
  9. package/chunks/getStoreConfig.js +8 -9
  10. package/chunks/returnOrdersHelper.js +1 -1
  11. package/chunks/transform-attributes-form.js +1 -1
  12. package/chunks/transform-order-details.js +8 -7
  13. package/components/ShippingStatusCard/ShippingStatusCard.d.ts +1 -1
  14. package/configs/mock.config.d.ts +784 -19
  15. package/containers/CreateReturn.js +1 -1
  16. package/containers/CustomerDetails.js +1 -1
  17. package/containers/OrderCostSummary.js +1 -1
  18. package/containers/OrderProductList.js +1 -1
  19. package/containers/OrderReturns.js +1 -1
  20. package/containers/OrderSearch.js +1 -1
  21. package/containers/OrderStatus.js +3 -3
  22. package/containers/ReturnsList.js +1 -1
  23. package/containers/ShippingStatus.js +1 -1
  24. package/data/models/order-details.d.ts +4 -3
  25. package/data/models/store-config.d.ts +0 -1
  26. package/hooks/containers/useCreateReturn.d.ts +48 -3
  27. package/i18n/en_US.json.d.ts +3 -0
  28. package/lib/categorizeProducts.d.ts +66 -0
  29. package/lib/returnOrdersHelper.d.ts +11 -76
  30. package/package.json +1 -1
  31. package/render.js +2 -2
  32. package/types/api/getOrderDetails.types.d.ts +6 -5
  33. package/types/customerDetails.types.d.ts +7 -5
  34. package/types/orderProductList.types.d.ts +0 -1
  35. package/types/shippingStatus.types.d.ts +11 -1
  36. package/chunks/form.types.js +0 -3
@@ -883,25 +883,7 @@ export declare const storyBookOrderData: {
883
883
  code: string;
884
884
  };
885
885
  };
886
- export declare const storyBookShortOrderData: {
887
- email: string;
888
- status: string;
889
- number: string;
890
- id: string;
891
- orderDate: string;
892
- carrier: string;
893
- shippingMethod: string;
894
- payments: {
895
- code: string;
896
- name: string;
897
- }[];
898
- totalQuantity: number;
899
- shipping: {
900
- amount: number;
901
- currency: string;
902
- code: string;
903
- };
904
- };
886
+ export declare const storyBookShortOrderData: any;
905
887
  export declare const storyBookNormalizeAddress: {
906
888
  billingAddress: ({
907
889
  name: string;
@@ -2893,4 +2875,787 @@ export declare const createReturnOrderMock: {
2893
2875
  };
2894
2876
  returnNumber: string;
2895
2877
  };
2878
+ export declare const shippingStatusCardDataMock: {
2879
+ email: string;
2880
+ availableActions: string[];
2881
+ status: string;
2882
+ number: string;
2883
+ id: string;
2884
+ returns: never[];
2885
+ itemsEligibleForReturn: never[];
2886
+ coupons: never[];
2887
+ shipments: {
2888
+ id: string;
2889
+ tracking: {
2890
+ number: number;
2891
+ carrier: string;
2892
+ title: string;
2893
+ }[];
2894
+ comments: never[];
2895
+ items: {
2896
+ id: string;
2897
+ productSku: string;
2898
+ productName: string;
2899
+ orderItem: {
2900
+ __typename: string;
2901
+ status: string;
2902
+ productSku: string;
2903
+ eligibleForReturn: boolean;
2904
+ productName: string;
2905
+ productUrlKey: string;
2906
+ id: string;
2907
+ quantityOrdered: number;
2908
+ quantityShipped: null;
2909
+ quantityCanceled: number;
2910
+ quantityInvoiced: number;
2911
+ quantityRefunded: number;
2912
+ quantityReturnRequested: number;
2913
+ productSalePrice: {
2914
+ value: number;
2915
+ currency: string;
2916
+ };
2917
+ selectedOptions: never[];
2918
+ product: {
2919
+ __typename: string;
2920
+ canonicalUrl: null;
2921
+ urlKey: string;
2922
+ uid: string;
2923
+ name: string;
2924
+ sku: string;
2925
+ onlyXLeftInStock: null;
2926
+ stockStatus: string;
2927
+ thumbnail: {
2928
+ label: string;
2929
+ url: null;
2930
+ };
2931
+ priceRange: {
2932
+ maximumPrice: {
2933
+ regularPrice: {
2934
+ currency: string;
2935
+ value: number;
2936
+ };
2937
+ };
2938
+ };
2939
+ };
2940
+ prices: {
2941
+ priceIncludingTax: {
2942
+ value: number;
2943
+ currency: string;
2944
+ };
2945
+ originalPrice: {
2946
+ value: number;
2947
+ currency: string;
2948
+ };
2949
+ originalPriceIncludingTax: {
2950
+ value: number;
2951
+ currency: string;
2952
+ };
2953
+ price: {
2954
+ value: number;
2955
+ currency: string;
2956
+ };
2957
+ };
2958
+ };
2959
+ }[];
2960
+ }[];
2961
+ items: {
2962
+ type: string;
2963
+ eligibleForReturn: boolean;
2964
+ productSku: string;
2965
+ productName: string;
2966
+ productUrlKey: string;
2967
+ quantityCanceled: number;
2968
+ quantityInvoiced: number;
2969
+ quantityOrdered: number;
2970
+ quantityRefunded: number;
2971
+ quantityReturned: number;
2972
+ quantityShipped: null;
2973
+ quantityReturnRequested: number;
2974
+ id: string;
2975
+ product: {
2976
+ __typename: string;
2977
+ canonicalUrl: string;
2978
+ urlKey: string;
2979
+ uid: string;
2980
+ name: string;
2981
+ sku: string;
2982
+ onlyXLeftInStock: null;
2983
+ stockStatus: string;
2984
+ thumbnail: {
2985
+ label: string;
2986
+ url: null;
2987
+ };
2988
+ priceRange: {
2989
+ maximumPrice: {
2990
+ regularPrice: {
2991
+ currency: string;
2992
+ value: number;
2993
+ };
2994
+ };
2995
+ };
2996
+ id: string;
2997
+ image: string;
2998
+ productType: string;
2999
+ };
3000
+ thumbnail: {
3001
+ label: string;
3002
+ url: null;
3003
+ };
3004
+ configurableOptions: {};
3005
+ bundleOptions: null;
3006
+ downloadableLinks: null;
3007
+ }[];
3008
+ returnNumber: string;
3009
+ };
3010
+ export declare const customerReturnDetailsFullMock: {
3011
+ order: {
3012
+ grandTotal: {
3013
+ value: number;
3014
+ currency: string;
3015
+ };
3016
+ totalGiftcard: {
3017
+ currency: string;
3018
+ value: number;
3019
+ };
3020
+ subtotal: {
3021
+ currency: string;
3022
+ value: number;
3023
+ };
3024
+ taxes: {
3025
+ amount: {
3026
+ currency: string;
3027
+ value: number;
3028
+ };
3029
+ rate: number;
3030
+ title: string;
3031
+ }[];
3032
+ totalTax: {
3033
+ currency: string;
3034
+ value: number;
3035
+ };
3036
+ totalShipping: {
3037
+ currency: string;
3038
+ value: number;
3039
+ };
3040
+ discounts: {
3041
+ amount: {
3042
+ currency: string;
3043
+ value: number;
3044
+ };
3045
+ label: string;
3046
+ }[];
3047
+ email: string;
3048
+ availableActions: string[];
3049
+ status: string;
3050
+ number: string;
3051
+ id: string;
3052
+ orderDate: string;
3053
+ orderStatusChangeDate: string;
3054
+ carrier: string;
3055
+ shippingMethod: string;
3056
+ isVirtual: boolean;
3057
+ returns: {
3058
+ createdReturnAt: string;
3059
+ returnStatus: string;
3060
+ token: string;
3061
+ orderNumber: string;
3062
+ returnNumber: string;
3063
+ items: ({
3064
+ uid: string;
3065
+ quantity: number;
3066
+ status: string;
3067
+ requestQuantity: number;
3068
+ type: string;
3069
+ eligibleForReturn: boolean;
3070
+ productSku: string;
3071
+ productName: string;
3072
+ productUrlKey: string;
3073
+ quantityCanceled: number;
3074
+ quantityInvoiced: number;
3075
+ quantityOrdered: number;
3076
+ quantityRefunded: number;
3077
+ quantityReturned: number;
3078
+ quantityShipped: number;
3079
+ quantityReturnRequested: number;
3080
+ id: string;
3081
+ discounted: boolean;
3082
+ total: {
3083
+ value: number;
3084
+ currency: string;
3085
+ };
3086
+ totalInclTax: {
3087
+ value: number;
3088
+ currency: string;
3089
+ };
3090
+ price: {
3091
+ value: number;
3092
+ currency: string;
3093
+ };
3094
+ priceInclTax: {
3095
+ value: number;
3096
+ currency: string;
3097
+ };
3098
+ totalQuantity: number;
3099
+ regularPrice: {
3100
+ value: number;
3101
+ currency: string;
3102
+ };
3103
+ product: {
3104
+ __typename: string;
3105
+ canonicalUrl: string;
3106
+ urlKey: string;
3107
+ uid: string;
3108
+ name: string;
3109
+ sku: string;
3110
+ onlyXLeftInStock: null;
3111
+ stockStatus: string;
3112
+ thumbnail: {
3113
+ label: string;
3114
+ url: string;
3115
+ };
3116
+ priceRange: {
3117
+ maximumPrice: {
3118
+ regularPrice: {
3119
+ currency: string;
3120
+ value: number;
3121
+ };
3122
+ };
3123
+ };
3124
+ id: string;
3125
+ image: string;
3126
+ productType: string;
3127
+ };
3128
+ thumbnail: {
3129
+ label: string;
3130
+ url: string;
3131
+ };
3132
+ configurableOptions: {
3133
+ Size?: undefined;
3134
+ Color?: undefined;
3135
+ };
3136
+ bundleOptions: null;
3137
+ itemPrices: {
3138
+ priceIncludingTax: {
3139
+ value: number;
3140
+ currency: string;
3141
+ };
3142
+ originalPrice: {
3143
+ value: number;
3144
+ currency: string;
3145
+ };
3146
+ originalPriceIncludingTax: {
3147
+ value: number;
3148
+ currency: string;
3149
+ };
3150
+ price: {
3151
+ value: number;
3152
+ currency: string;
3153
+ };
3154
+ };
3155
+ downloadableLinks: null;
3156
+ } | {
3157
+ uid: string;
3158
+ quantity: number;
3159
+ status: string;
3160
+ requestQuantity: number;
3161
+ type: string;
3162
+ eligibleForReturn: boolean;
3163
+ productSku: string;
3164
+ productName: string;
3165
+ productUrlKey: string;
3166
+ quantityCanceled: number;
3167
+ quantityInvoiced: number;
3168
+ quantityOrdered: number;
3169
+ quantityRefunded: number;
3170
+ quantityReturned: number;
3171
+ quantityShipped: number;
3172
+ quantityReturnRequested: number;
3173
+ id: string;
3174
+ discounted: boolean;
3175
+ total: {
3176
+ value: number;
3177
+ currency: string;
3178
+ };
3179
+ totalInclTax: {
3180
+ value: number;
3181
+ currency: string;
3182
+ };
3183
+ price: {
3184
+ value: number;
3185
+ currency: string;
3186
+ };
3187
+ priceInclTax: {
3188
+ value: number;
3189
+ currency: string;
3190
+ };
3191
+ totalQuantity: number;
3192
+ regularPrice: {
3193
+ value: number;
3194
+ currency: string;
3195
+ };
3196
+ product: {
3197
+ __typename: string;
3198
+ canonicalUrl: string;
3199
+ urlKey: string;
3200
+ uid: string;
3201
+ name: string;
3202
+ sku: string;
3203
+ onlyXLeftInStock: null;
3204
+ stockStatus: string;
3205
+ thumbnail: {
3206
+ label: string;
3207
+ url: string;
3208
+ };
3209
+ priceRange: {
3210
+ maximumPrice: {
3211
+ regularPrice: {
3212
+ currency: string;
3213
+ value: number;
3214
+ };
3215
+ };
3216
+ };
3217
+ id: string;
3218
+ image: string;
3219
+ productType: string;
3220
+ };
3221
+ thumbnail: {
3222
+ label: string;
3223
+ url: string;
3224
+ };
3225
+ configurableOptions: {
3226
+ Size: string;
3227
+ Color: string;
3228
+ };
3229
+ bundleOptions: null;
3230
+ itemPrices: {
3231
+ priceIncludingTax: {
3232
+ value: number;
3233
+ currency: string;
3234
+ };
3235
+ originalPrice: {
3236
+ value: number;
3237
+ currency: string;
3238
+ };
3239
+ originalPriceIncludingTax: {
3240
+ value: number;
3241
+ currency: string;
3242
+ };
3243
+ price: {
3244
+ value: number;
3245
+ currency: string;
3246
+ };
3247
+ };
3248
+ downloadableLinks: null;
3249
+ })[];
3250
+ tracking: {
3251
+ status: null;
3252
+ carrier: {
3253
+ uid: string;
3254
+ label: string;
3255
+ };
3256
+ trackingNumber: string;
3257
+ }[];
3258
+ }[];
3259
+ itemsEligibleForReturn: {
3260
+ __typename: string;
3261
+ status: string;
3262
+ productSku: string;
3263
+ eligibleForReturn: boolean;
3264
+ productName: string;
3265
+ productUrlKey: string;
3266
+ id: string;
3267
+ quantityOrdered: number;
3268
+ quantityShipped: number;
3269
+ quantityCanceled: number;
3270
+ quantityInvoiced: number;
3271
+ quantityRefunded: number;
3272
+ quantityReturnRequested: number;
3273
+ productSalePrice: {
3274
+ value: number;
3275
+ currency: string;
3276
+ };
3277
+ selectedOptions: {
3278
+ label: string;
3279
+ value: string;
3280
+ }[];
3281
+ product: {
3282
+ __typename: string;
3283
+ canonicalUrl: null;
3284
+ urlKey: string;
3285
+ uid: string;
3286
+ name: string;
3287
+ sku: string;
3288
+ onlyXLeftInStock: null;
3289
+ stockStatus: string;
3290
+ thumbnail: {
3291
+ label: string;
3292
+ url: string;
3293
+ };
3294
+ priceRange: {
3295
+ maximumPrice: {
3296
+ regularPrice: {
3297
+ currency: string;
3298
+ value: number;
3299
+ };
3300
+ };
3301
+ };
3302
+ };
3303
+ prices: {
3304
+ priceIncludingTax: {
3305
+ value: number;
3306
+ currency: string;
3307
+ };
3308
+ originalPrice: {
3309
+ value: number;
3310
+ currency: string;
3311
+ };
3312
+ originalPriceIncludingTax: {
3313
+ value: number;
3314
+ currency: string;
3315
+ };
3316
+ price: {
3317
+ value: number;
3318
+ currency: string;
3319
+ };
3320
+ };
3321
+ }[];
3322
+ coupons: never[];
3323
+ shipments: {
3324
+ id: string;
3325
+ number: string;
3326
+ tracking: {
3327
+ title: string;
3328
+ number: string;
3329
+ carrier: string;
3330
+ }[];
3331
+ comments: never[];
3332
+ items: {
3333
+ id: string;
3334
+ productSku: string;
3335
+ productName: string;
3336
+ orderItem: {
3337
+ __typename: string;
3338
+ status: string;
3339
+ productSku: string;
3340
+ eligibleForReturn: boolean;
3341
+ productName: string;
3342
+ productUrlKey: string;
3343
+ id: string;
3344
+ quantityOrdered: number;
3345
+ quantityShipped: number;
3346
+ quantityCanceled: number;
3347
+ quantityInvoiced: number;
3348
+ quantityRefunded: number;
3349
+ quantityReturnRequested: number;
3350
+ productSalePrice: {
3351
+ value: number;
3352
+ currency: string;
3353
+ };
3354
+ selectedOptions: {
3355
+ label: string;
3356
+ value: string;
3357
+ }[];
3358
+ product: {
3359
+ __typename: string;
3360
+ canonicalUrl: null;
3361
+ urlKey: string;
3362
+ uid: string;
3363
+ name: string;
3364
+ sku: string;
3365
+ onlyXLeftInStock: null;
3366
+ stockStatus: string;
3367
+ thumbnail: {
3368
+ label: string;
3369
+ url: string;
3370
+ };
3371
+ priceRange: {
3372
+ maximumPrice: {
3373
+ regularPrice: {
3374
+ currency: string;
3375
+ value: number;
3376
+ };
3377
+ };
3378
+ };
3379
+ };
3380
+ prices: {
3381
+ priceIncludingTax: {
3382
+ value: number;
3383
+ currency: string;
3384
+ };
3385
+ originalPrice: {
3386
+ value: number;
3387
+ currency: string;
3388
+ };
3389
+ originalPriceIncludingTax: {
3390
+ value: number;
3391
+ currency: string;
3392
+ };
3393
+ price: {
3394
+ value: number;
3395
+ currency: string;
3396
+ };
3397
+ };
3398
+ };
3399
+ }[];
3400
+ }[];
3401
+ payments: {
3402
+ code: string;
3403
+ name: string;
3404
+ }[];
3405
+ shippingAddress: {
3406
+ city: string;
3407
+ company: null;
3408
+ countryCode: string;
3409
+ fax: null;
3410
+ firstName: string;
3411
+ lastName: string;
3412
+ middleName: null;
3413
+ postCode: string;
3414
+ prefix: null;
3415
+ region: string;
3416
+ regionId: string;
3417
+ street: string[];
3418
+ suffix: null;
3419
+ telephone: string;
3420
+ vatId: string;
3421
+ };
3422
+ billingAddress: {
3423
+ city: string;
3424
+ company: null;
3425
+ countryCode: string;
3426
+ fax: null;
3427
+ firstName: string;
3428
+ lastName: string;
3429
+ middleName: null;
3430
+ postCode: string;
3431
+ prefix: null;
3432
+ region: string;
3433
+ regionId: string;
3434
+ street: string[];
3435
+ suffix: null;
3436
+ telephone: string;
3437
+ vatId: string;
3438
+ };
3439
+ items: ({
3440
+ type: string;
3441
+ eligibleForReturn: boolean;
3442
+ productSku: string;
3443
+ productName: string;
3444
+ productUrlKey: string;
3445
+ quantityCanceled: number;
3446
+ quantityInvoiced: number;
3447
+ quantityOrdered: number;
3448
+ quantityRefunded: number;
3449
+ quantityReturned: number;
3450
+ quantityShipped: number;
3451
+ quantityReturnRequested: number;
3452
+ id: string;
3453
+ discounted: boolean;
3454
+ total: {
3455
+ value: number;
3456
+ currency: string;
3457
+ };
3458
+ totalInclTax: {
3459
+ value: number;
3460
+ currency: string;
3461
+ };
3462
+ price: {
3463
+ value: number;
3464
+ currency: string;
3465
+ };
3466
+ priceInclTax: {
3467
+ value: number;
3468
+ currency: string;
3469
+ };
3470
+ totalQuantity: number;
3471
+ regularPrice: {
3472
+ value: number;
3473
+ currency: string;
3474
+ };
3475
+ product: {
3476
+ __typename: string;
3477
+ canonicalUrl: string;
3478
+ urlKey: string;
3479
+ uid: string;
3480
+ name: string;
3481
+ sku: string;
3482
+ onlyXLeftInStock: null;
3483
+ stockStatus: string;
3484
+ thumbnail: {
3485
+ label: string;
3486
+ url: string;
3487
+ };
3488
+ priceRange: {
3489
+ maximumPrice: {
3490
+ regularPrice: {
3491
+ currency: string;
3492
+ value: number;
3493
+ };
3494
+ };
3495
+ };
3496
+ id: string;
3497
+ image: string;
3498
+ productType: string;
3499
+ };
3500
+ thumbnail: {
3501
+ label: string;
3502
+ url: string;
3503
+ };
3504
+ configurableOptions: {
3505
+ Size?: undefined;
3506
+ Color?: undefined;
3507
+ };
3508
+ bundleOptions: null;
3509
+ itemPrices: {
3510
+ priceIncludingTax: {
3511
+ value: number;
3512
+ currency: string;
3513
+ };
3514
+ originalPrice: {
3515
+ value: number;
3516
+ currency: string;
3517
+ };
3518
+ originalPriceIncludingTax: {
3519
+ value: number;
3520
+ currency: string;
3521
+ };
3522
+ price: {
3523
+ value: number;
3524
+ currency: string;
3525
+ };
3526
+ };
3527
+ downloadableLinks: null;
3528
+ } | {
3529
+ type: string;
3530
+ eligibleForReturn: boolean;
3531
+ productSku: string;
3532
+ productName: string;
3533
+ productUrlKey: string;
3534
+ quantityCanceled: number;
3535
+ quantityInvoiced: number;
3536
+ quantityOrdered: number;
3537
+ quantityRefunded: number;
3538
+ quantityReturned: number;
3539
+ quantityShipped: number;
3540
+ quantityReturnRequested: number;
3541
+ id: string;
3542
+ discounted: boolean;
3543
+ total: {
3544
+ value: number;
3545
+ currency: string;
3546
+ };
3547
+ totalInclTax: {
3548
+ value: number;
3549
+ currency: string;
3550
+ };
3551
+ price: {
3552
+ value: number;
3553
+ currency: string;
3554
+ };
3555
+ priceInclTax: {
3556
+ value: number;
3557
+ currency: string;
3558
+ };
3559
+ totalQuantity: number;
3560
+ regularPrice: {
3561
+ value: number;
3562
+ currency: string;
3563
+ };
3564
+ product: {
3565
+ __typename: string;
3566
+ canonicalUrl: string;
3567
+ urlKey: string;
3568
+ uid: string;
3569
+ name: string;
3570
+ sku: string;
3571
+ onlyXLeftInStock: null;
3572
+ stockStatus: string;
3573
+ thumbnail: {
3574
+ label: string;
3575
+ url: string;
3576
+ };
3577
+ priceRange: {
3578
+ maximumPrice: {
3579
+ regularPrice: {
3580
+ currency: string;
3581
+ value: number;
3582
+ };
3583
+ };
3584
+ };
3585
+ id: string;
3586
+ image: string;
3587
+ productType: string;
3588
+ };
3589
+ thumbnail: {
3590
+ label: string;
3591
+ url: string;
3592
+ };
3593
+ configurableOptions: {
3594
+ Size: string;
3595
+ Color: string;
3596
+ };
3597
+ bundleOptions: null;
3598
+ itemPrices: {
3599
+ priceIncludingTax: {
3600
+ value: number;
3601
+ currency: string;
3602
+ };
3603
+ originalPrice: {
3604
+ value: number;
3605
+ currency: string;
3606
+ };
3607
+ originalPriceIncludingTax: {
3608
+ value: number;
3609
+ currency: string;
3610
+ };
3611
+ price: {
3612
+ value: number;
3613
+ currency: string;
3614
+ };
3615
+ };
3616
+ downloadableLinks: null;
3617
+ })[];
3618
+ totalQuantity: number;
3619
+ shipping: {
3620
+ amount: number;
3621
+ currency: string;
3622
+ code: string;
3623
+ };
3624
+ returnNumber: string;
3625
+ };
3626
+ normalizeAddress: {
3627
+ billingAddress: ({
3628
+ name: string;
3629
+ orderNumber: number;
3630
+ value: string;
3631
+ label: null;
3632
+ } | {
3633
+ name: string;
3634
+ orderNumber: number;
3635
+ value: string[];
3636
+ label: null;
3637
+ } | {
3638
+ name: string;
3639
+ orderNumber: number;
3640
+ value: string;
3641
+ label: string;
3642
+ })[];
3643
+ shippingAddress: ({
3644
+ name: string;
3645
+ orderNumber: number;
3646
+ value: string;
3647
+ label: null;
3648
+ } | {
3649
+ name: string;
3650
+ orderNumber: number;
3651
+ value: string;
3652
+ label: string;
3653
+ } | {
3654
+ name: string;
3655
+ orderNumber: number;
3656
+ value: string[];
3657
+ label: string;
3658
+ })[];
3659
+ };
3660
+ };
2896
3661
  //# sourceMappingURL=mock.config.d.ts.map