ob-dj-store 0.0.20.2__py3-none-any.whl → 0.0.20.3__py3-none-any.whl

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 (59) hide show
  1. ob_dj_store/apis/stores/filters.py +5 -19
  2. ob_dj_store/apis/stores/rest/serializers/serializers.py +7 -16
  3. ob_dj_store/apis/stores/views.py +74 -226
  4. ob_dj_store/apis/tap/views.py +2 -6
  5. ob_dj_store/core/stores/admin.py +3 -20
  6. ob_dj_store/core/stores/admin_inlines.py +1 -7
  7. ob_dj_store/core/stores/gateway/tap/admin.py +1 -3
  8. ob_dj_store/core/stores/gateway/tap/managers.py +1 -6
  9. ob_dj_store/core/stores/gateway/tap/migrations/0001_initial.py +1 -3
  10. ob_dj_store/core/stores/gateway/tap/models.py +3 -12
  11. ob_dj_store/core/stores/gateway/tap/utils.py +2 -7
  12. ob_dj_store/core/stores/managers.py +1 -3
  13. ob_dj_store/core/stores/migrations/0001_initial.py +1 -4
  14. ob_dj_store/core/stores/migrations/0005_auto_20220425_2119.py +2 -5
  15. ob_dj_store/core/stores/migrations/0005_auto_20220427_1729.py +1 -2
  16. ob_dj_store/core/stores/migrations/0006_auto_20220428_0100.py +2 -8
  17. ob_dj_store/core/stores/migrations/0007_cart_cartitem_order_orderitem.py +2 -8
  18. ob_dj_store/core/stores/migrations/0010_auto_20220509_1633.py +1 -4
  19. ob_dj_store/core/stores/migrations/0012_auto_20220514_0633.py +1 -4
  20. ob_dj_store/core/stores/migrations/0013_auto_20220518_1539.py +1 -4
  21. ob_dj_store/core/stores/migrations/0014_auto_20220519_0018.py +3 -12
  22. ob_dj_store/core/stores/migrations/0017_auto_20220524_0912.py +3 -10
  23. ob_dj_store/core/stores/migrations/0018_auto_20220524_1613.py +1 -3
  24. ob_dj_store/core/stores/migrations/0021_auto_20220531_1849.py +1 -4
  25. ob_dj_store/core/stores/migrations/0026_auto_20220630_1913.py +8 -32
  26. ob_dj_store/core/stores/migrations/0031_auto_20220811_1733.py +1 -4
  27. ob_dj_store/core/stores/migrations/0033_auto_20220815_0133.py +2 -8
  28. ob_dj_store/core/stores/migrations/0039_auto_20220831_1521.py +1 -4
  29. ob_dj_store/core/stores/migrations/0044_remove_productvariant_has_inventory.py +1 -4
  30. ob_dj_store/core/stores/migrations/0049_auto_20221029_1524.py +2 -8
  31. ob_dj_store/core/stores/migrations/0050_favoriteextra.py +1 -3
  32. ob_dj_store/core/stores/migrations/0052_auto_20221129_1732.py +2 -8
  33. ob_dj_store/core/stores/migrations/0059_auto_20230217_2006.py +2 -8
  34. ob_dj_store/core/stores/migrations/0062_auto_20230226_2005.py +2 -6
  35. ob_dj_store/core/stores/migrations/0064_auto_20230228_1814.py +1 -2
  36. ob_dj_store/core/stores/migrations/0066_auto_20230304_1532.py +2 -8
  37. ob_dj_store/core/stores/migrations/0070_auto_20230323_1628.py +1 -4
  38. ob_dj_store/core/stores/migrations/0071_auto_20230328_1825.py +2 -5
  39. ob_dj_store/core/stores/migrations/0082_auto_20230613_1424.py +1 -4
  40. ob_dj_store/core/stores/migrations/0084_payment_result.py +1 -3
  41. ob_dj_store/core/stores/migrations/0087_auto_20230828_2138.py +1 -4
  42. ob_dj_store/core/stores/migrations/0097_auto_20231108_1939.py +1 -4
  43. ob_dj_store/core/stores/migrations/0100_remove_shippingmethod_type_arabic.py +1 -4
  44. ob_dj_store/core/stores/migrations/0106_alter_paymentmethod_payment_provider.py +35 -0
  45. ob_dj_store/core/stores/models/_address.py +1 -3
  46. ob_dj_store/core/stores/models/_cart.py +1 -3
  47. ob_dj_store/core/stores/models/_feedback.py +1 -3
  48. ob_dj_store/core/stores/models/_inventory.py +1 -2
  49. ob_dj_store/core/stores/models/_order.py +5 -19
  50. ob_dj_store/core/stores/models/_payment.py +3 -12
  51. ob_dj_store/core/stores/models/_product.py +4 -16
  52. ob_dj_store/core/stores/models/_store.py +3 -11
  53. ob_dj_store/core/stores/models/_wallet.py +7 -23
  54. ob_dj_store/core/stores/receivers.py +7 -20
  55. ob_dj_store/core/stores/utils.py +1 -2
  56. {ob_dj_store-0.0.20.2.dist-info → ob_dj_store-0.0.20.3.dist-info}/METADATA +1 -1
  57. {ob_dj_store-0.0.20.2.dist-info → ob_dj_store-0.0.20.3.dist-info}/RECORD +59 -58
  58. {ob_dj_store-0.0.20.2.dist-info → ob_dj_store-0.0.20.3.dist-info}/WHEEL +1 -1
  59. {ob_dj_store-0.0.20.2.dist-info → ob_dj_store-0.0.20.3.dist-info}/top_level.txt +0 -0
@@ -1,30 +1,30 @@
1
1
  ob_dj_store/apis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  ob_dj_store/apis/stores/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
- ob_dj_store/apis/stores/filters.py,sha256=zKBXPBoqIyFlSeZOECp97RTWvSLqNPnlPhEp7p8W5tE,9702
3
+ ob_dj_store/apis/stores/filters.py,sha256=kbKtrg9ba9R5ptN9xOOEo-ZZ2IZbQfGH6BJCGUzF1bc,9510
4
4
  ob_dj_store/apis/stores/urls.py,sha256=7vwogfIGcKS0hHYK3iBXKQwi1kCA_vuHY1eZt8rAspg,2021
5
- ob_dj_store/apis/stores/views.py,sha256=aE4LFPHzs_CtzZ8K5-vAbDn_51hyhi0KIsi7cV8dpkA,43372
6
- ob_dj_store/apis/stores/rest/serializers/serializers.py,sha256=16tyWBbwC9NGEvfGDz8WdQe6QJo8GYPPzTdpb1Tdlvs,66061
5
+ ob_dj_store/apis/stores/views.py,sha256=P8hkpMxC080QlPGFXaQXV2wKoo-B0aUg-hToHtMG24s,41612
6
+ ob_dj_store/apis/stores/rest/serializers/serializers.py,sha256=-wX38Bbdg4XY3wpod5z1gFDrJ6bCG5T1U3GWt9jpZyw,65925
7
7
  ob_dj_store/apis/tap/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
8
  ob_dj_store/apis/tap/serializers.py,sha256=KPrBK4h2-fWvEVf6vOj2ww5-USV9WqpyYicIqoHIiXI,1065
9
9
  ob_dj_store/apis/tap/urls.py,sha256=bnOTv6an11kxpo_FdqlhsizlGPLVpNxBjCyKcf3_C9M,367
10
- ob_dj_store/apis/tap/views.py,sha256=vG0rC-PQHCnrbNsPW1gClx0rkaIjALEAuj5cQKmCTo0,2664
10
+ ob_dj_store/apis/tap/views.py,sha256=sWqNT3nnEFXwRlVokoZREpCOwMQtyd_ZzrvUtQ6c5L0,2620
11
11
  ob_dj_store/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
12
12
  ob_dj_store/core/stores/__init__.py,sha256=-izNGrxNn_nn3IQXd5pkuES9lSF-AHYb14yhNPozYCI,65
13
- ob_dj_store/core/stores/admin.py,sha256=IbkkC8ILwFDzWD1vxNfBwRpbSm4fGZOR8yya-ZbSJho,14646
14
- ob_dj_store/core/stores/admin_inlines.py,sha256=2EOyWvl5ebm9kxHB8HXixAzUSx7FpGubPTwxGEJ66E0,2946
13
+ ob_dj_store/core/stores/admin.py,sha256=hQ6r-mjdOBifj5sxFzHQIFFPB_CPSJ84CgqXAqwdW04,14408
14
+ ob_dj_store/core/stores/admin_inlines.py,sha256=urX6WQVbIhaM55lVnqZz2q7LbaIEyoFOVPEpKQKDxIE,2866
15
15
  ob_dj_store/core/stores/apps.py,sha256=ZadmEER_dNcQTH617b3fAsYZJSyRw0g46Kjp4eOAsOU,498
16
- ob_dj_store/core/stores/managers.py,sha256=lz2CE4PJCI1ViO-CU61LqTr43O41aGRQkbWZUR5Fmfg,9909
17
- ob_dj_store/core/stores/receivers.py,sha256=DljYC97C_e1mHduKw9Un6YQmxIdwSIter7yVVZwggFA,3768
16
+ ob_dj_store/core/stores/managers.py,sha256=4vdWqnfOuTbBgLiPt0yyF4TFzYFzzgLJgRT3iKGWqhk,9877
17
+ ob_dj_store/core/stores/receivers.py,sha256=vduxOB9M6IgQ8E7dYrbC4T0PjOqLCgAVi2PwElTzNhM,3676
18
18
  ob_dj_store/core/stores/settings_validation.py,sha256=eTkRaI6CG5OEJQyI5CF-cNAcvjzXf3GwX5sR97O3v98,3977
19
- ob_dj_store/core/stores/utils.py,sha256=-oHJot3pLF2sLE3Bv0AU_qXFshNOAO3h8Y1yMfgF6K8,3439
19
+ ob_dj_store/core/stores/utils.py,sha256=r6YdjQu5gsrZmO_qgXb21xcB50tbAI9vffN4Yp6n6iA,3427
20
20
  ob_dj_store/core/stores/gateway/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
21
  ob_dj_store/core/stores/gateway/tap/__init__.py,sha256=5Z6azpb6tmr1nRvKwQWzlYw9ruvw-9ZMBWRqEngDKTM,40
22
- ob_dj_store/core/stores/gateway/tap/admin.py,sha256=3KgawxLjvpMsYXl_hx1DlKYpsMd-ojSA4FNazVA4CIk,1183
22
+ ob_dj_store/core/stores/gateway/tap/admin.py,sha256=tGtLg6ttkZXb7JtFPD-5r46pCmb1BsbQpv182KlY3-o,1153
23
23
  ob_dj_store/core/stores/gateway/tap/apps.py,sha256=kWwPjuAJeEmEasVDzUbvRsGaQWL-aYe4JDHNLvCVXPs,212
24
- ob_dj_store/core/stores/gateway/tap/managers.py,sha256=vjZAVFwV7FMIzNeaTh-A68RfFrfSoKEkuBI16VIAa10,875
25
- ob_dj_store/core/stores/gateway/tap/models.py,sha256=CG5lSG97xUX172zw2FKjYrgMEKxTPRxE0TB64I5KXQM,4852
26
- ob_dj_store/core/stores/gateway/tap/utils.py,sha256=jsdE-ACKy7hUYXgQXCg1NFNF5H9I3mGVJabZHWhmKdg,5240
27
- ob_dj_store/core/stores/gateway/tap/migrations/0001_initial.py,sha256=_303R1R2tVVdPSMtwpuLUxvWbxQ2BML1Gsd-VhfnZEM,4808
24
+ ob_dj_store/core/stores/gateway/tap/managers.py,sha256=FmnJVWwShbNJPU_USZA2hC8g2W3D_S4J3sxN8JROlRo,817
25
+ ob_dj_store/core/stores/gateway/tap/models.py,sha256=ZbMdglR2a8MhHO-qfOFP7tjxiA8XmZb8IKP5L7TXrZY,4786
26
+ ob_dj_store/core/stores/gateway/tap/utils.py,sha256=bajB6TH83AVPzm9npshgIZy-PUd0dt4vS4msLs2h998,5206
27
+ ob_dj_store/core/stores/gateway/tap/migrations/0001_initial.py,sha256=U8Cv1zLEb4SB4uX5Jjt6QJi7RkZ46-3TF18NcupHb-8,4778
28
28
  ob_dj_store/core/stores/gateway/tap/migrations/0002_auto_20220815_1610.py,sha256=gRsekTbqUH4h5yg5d1zWuai7Wiv6-rfsmjnXundgin8,674
29
29
  ob_dj_store/core/stores/gateway/tap/migrations/0003_auto_20220818_1938.py,sha256=pptUxq-AZtziRen5EvuahAVihcINEx_WTdpI28HBVUs,598
30
30
  ob_dj_store/core/stores/gateway/tap/migrations/0004_tapcustomer.py,sha256=tazV01JhO5JOVKixrK64vf7_5tJMSxXf26goHPwyWGo,2579
@@ -32,78 +32,78 @@ ob_dj_store/core/stores/gateway/tap/migrations/0005_alter_tappayment_payment_url
32
32
  ob_dj_store/core/stores/gateway/tap/migrations/0006_alter_tappayment_source.py,sha256=K-aktQ87sbvSedumIo-dxrJ32CjCwbEWqLyGGzexqhU,655
33
33
  ob_dj_store/core/stores/gateway/tap/migrations/0007_alter_tappayment_source.py,sha256=OXK2Esw908DBYlf5rkvqc645gKSOfkUL0RFOmcTrVFM,700
34
34
  ob_dj_store/core/stores/gateway/tap/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
35
- ob_dj_store/core/stores/migrations/0001_initial.py,sha256=5i8Md2FO7kVzONZWbK38KpVMOBgSHzAJY4krKllkNwU,2154
35
+ ob_dj_store/core/stores/migrations/0001_initial.py,sha256=Ny58kubU6qNVr2TYD1p61Sb8jQGgdLjVN5HwywugN8k,2108
36
36
  ob_dj_store/core/stores/migrations/0002_auto_20220422_0205.py,sha256=hnfr60m50hyIL2QkPfD8rKWLtfVjW58L9vNkYo72ZII,382
37
37
  ob_dj_store/core/stores/migrations/0003_openinghours.py,sha256=1wxdKYz8xvViGAWwF-EqLNMaDqtZFNx-cbc1QHSwClk,1901
38
38
  ob_dj_store/core/stores/migrations/0004_auto_20220422_2326.py,sha256=il2zOQNXhEWUSn83w2I8QEEGjPT7y44CpuwkcDePOG8,379
39
- ob_dj_store/core/stores/migrations/0005_auto_20220425_2119.py,sha256=9IZvzVz0QhJA20t_4oJAn6kgG13ydpigIl67o3YZFmk,1334
40
- ob_dj_store/core/stores/migrations/0005_auto_20220427_1729.py,sha256=cw85j07G_NTH3BpsZeoUZzSDhQn_wDj9sDLiJVh_7xY,1049
41
- ob_dj_store/core/stores/migrations/0006_auto_20220428_0100.py,sha256=8dQ-3R1CR1kuphbeEBgHiPAEuGi2009uX1AjjNdoHqo,10941
42
- ob_dj_store/core/stores/migrations/0007_cart_cartitem_order_orderitem.py,sha256=4b4K3T5fb6GiMEOudUcPi5IY9Ak0uTuEbHyzqGOlrD8,5587
39
+ ob_dj_store/core/stores/migrations/0005_auto_20220425_2119.py,sha256=pVowwBdpf-m6EOyU6Jxx0rDwGSxeJnmJOi15MhIuFlY,1292
40
+ ob_dj_store/core/stores/migrations/0005_auto_20220427_1729.py,sha256=p8gzmEpPa6819Ocj5kNbxdYUX95aT2ZHltIRlAwHFwA,1037
41
+ ob_dj_store/core/stores/migrations/0006_auto_20220428_0100.py,sha256=GBWyleUseVKNKEN2FdFysvZWXP2N43qkrAReP-pubPM,10849
42
+ ob_dj_store/core/stores/migrations/0007_cart_cartitem_order_orderitem.py,sha256=BneKjHdRi2ggoFvFFqFCN-NoQBoaCGa_dvDlkwNrwEo,5495
43
43
  ob_dj_store/core/stores/migrations/0008_order_status.py,sha256=yBIGQk4pKmE70IPzBfvFdRswqEMoJOPLyhLeUwrMmYw,870
44
44
  ob_dj_store/core/stores/migrations/0009_auto_20220508_2142.py,sha256=DDhoKQhp8qJRQfIdE824DcnbeWugeyfPw-CtPUe6sFg,1846
45
- ob_dj_store/core/stores/migrations/0010_auto_20220509_1633.py,sha256=9nIdPxwCOLzRmxFB0a_638BAdT6IC5zjHIkvHUgfwOQ,893
45
+ ob_dj_store/core/stores/migrations/0010_auto_20220509_1633.py,sha256=9kiNtpCtal-aGWFLjOJHb0VSCIYCJBnpezGS1GlbblI,859
46
46
  ob_dj_store/core/stores/migrations/0011_favorite.py,sha256=lukINP8oCHUOaFshVM4aLUGhi-dBN9L6h02eNixrc_c,1841
47
- ob_dj_store/core/stores/migrations/0012_auto_20220514_0633.py,sha256=lgwrprFYuV5KHCoi_eC6bvxqcTGiI6HwWr6j2JR3704,5640
48
- ob_dj_store/core/stores/migrations/0013_auto_20220518_1539.py,sha256=nvRN076GqI0QmQiqj4u3LuPzAdukHzghfygdf1Eo1hE,3098
49
- ob_dj_store/core/stores/migrations/0014_auto_20220519_0018.py,sha256=_xH51A-v5pMIIvOocF1CjePvIqf8sfg4Vh_79OYRJLo,2888
47
+ ob_dj_store/core/stores/migrations/0012_auto_20220514_0633.py,sha256=hVEEnHqKjX5H1I_BFT08CIJWb84o0STMrcG8_asjjN8,5606
48
+ ob_dj_store/core/stores/migrations/0013_auto_20220518_1539.py,sha256=fT3Ldj5WgF3BcC70R9eR9aswZE7WTLsyH-40la5XFn4,3052
49
+ ob_dj_store/core/stores/migrations/0014_auto_20220519_0018.py,sha256=v-rWCmQzHW_uX_7-T-vzJZRTq7K8GlHZ4th6q08d6GQ,2774
50
50
  ob_dj_store/core/stores/migrations/0015_inventory_inventoryoperations.py,sha256=ixVWNSGxuAC4Xl5P5UTg4395PISyLKwY6DFG8kY-tBM,4368
51
51
  ob_dj_store/core/stores/migrations/0016_productvariant_preparation_time.py,sha256=kXjrtWNASnQkYcbN9ymeoH0qo7dVNBGibe_lxuIMigM,521
52
- ob_dj_store/core/stores/migrations/0017_auto_20220524_0912.py,sha256=Us3yf1IHScvsk1IcyaSjSGaFHsZk8sKUjd9yneBbtlw,2860
53
- ob_dj_store/core/stores/migrations/0018_auto_20220524_1613.py,sha256=CIaapalLvjY6K9eBCRWS9PJgg6HoSwXgV4kyHCmLZLU,552
52
+ ob_dj_store/core/stores/migrations/0017_auto_20220524_0912.py,sha256=nMrg4kkJBGbrp7aljjROTk7q6IfkseKWh2d92fPIKEM,2774
53
+ ob_dj_store/core/stores/migrations/0018_auto_20220524_1613.py,sha256=M0G5Tiu7-4ckM7yI3KqhFbTmlYb5HWgRi6Yb_K4LmJE,528
54
54
  ob_dj_store/core/stores/migrations/0019_product_is_featured.py,sha256=c8cIcX6vWv7exBkhsH4cFT_ibqSNXP0ejWgywcBkRTo,393
55
55
  ob_dj_store/core/stores/migrations/0020_orderhistory.py,sha256=ic3-LYbWuu-BYerwWNnPW4LaZjgu3QGaqQ4vSl8yByo,1947
56
- ob_dj_store/core/stores/migrations/0021_auto_20220531_1849.py,sha256=7F4XUthfMPlZZuKDfCf1lDbqsW-MM98Z6CPhZNESivo,1726
56
+ ob_dj_store/core/stores/migrations/0021_auto_20220531_1849.py,sha256=zI_VFakxVCy-Icp7hZ0NGSxbDiVorVE7jcg8J4hG_yo,1692
57
57
  ob_dj_store/core/stores/migrations/0022_order_pickup_time.py,sha256=--87wTaEfVU1T0e40VpPPwy-MPhL9T_Gv76GCorBqqw,425
58
58
  ob_dj_store/core/stores/migrations/0023_feedback_feedbackattribute_feedbackconfig.py,sha256=QX4Za6OXME80FjkyI3ofO99Q9kszOPoNkJ77nh-w_Ms,4025
59
59
  ob_dj_store/core/stores/migrations/0024_auto_20220609_1552.py,sha256=hElOQFIRGnXzFLwYCeQKYyRr2FOYOBJq495wXGaHwyI,984
60
60
  ob_dj_store/core/stores/migrations/0025_productvariant_is_primary.py,sha256=AOrU8HFI_wKseYhMsxMnUDorCeBSMNw8XIwevF-4jdU,399
61
- ob_dj_store/core/stores/migrations/0026_auto_20220630_1913.py,sha256=4TaxpedoI4w38Lgdg5R60Zhuhuuvx8PWX0kwtrARYfM,2934
61
+ ob_dj_store/core/stores/migrations/0026_auto_20220630_1913.py,sha256=6HbLIJ4HIdiuBNr6Ah0-PPqpqGcaaCr58uEn7NB4LnY,2662
62
62
  ob_dj_store/core/stores/migrations/0027_auto_20220713_1759.py,sha256=_oDmJl7KEi9X-_JNGEcJnMxDwwLj-RvgtHlXeDJdZAg,986
63
63
  ob_dj_store/core/stores/migrations/0028_phonecontact.py,sha256=QNMUFOoPTP7gaOqYGpVYHHdH2MpN6hzzNrclcmN020Q,1762
64
64
  ob_dj_store/core/stores/migrations/0029_auto_20220726_1750.py,sha256=1hGyG437gORlfv9v8b8n73RgoNmYe6s2If_eAWA8d44,691
65
65
  ob_dj_store/core/stores/migrations/0030_category_parent.py,sha256=4ju8KUODHrx8sIlmfP4IUtY9H_KIavCySzLYLHn7ooQ,620
66
- ob_dj_store/core/stores/migrations/0031_auto_20220811_1733.py,sha256=46TjW6p1BEmH-tS0erEfMQ_a8b45U7XyI65Hc20RdnQ,1252
66
+ ob_dj_store/core/stores/migrations/0031_auto_20220811_1733.py,sha256=tzqk88b2GxBtPlV7R-4fxr7r8AAtyjkO8_EOiB0m-j8,1218
67
67
  ob_dj_store/core/stores/migrations/0032_auto_20220812_1951.py,sha256=W_QlnnRRiNrrEaDSZsnLlUiwIGDN6WA_rbWztX_Z3aw,1079
68
- ob_dj_store/core/stores/migrations/0033_auto_20220815_0133.py,sha256=-1941xLBL1AaZYC90wk414RK9j1o57YYpmMKlEJd1DU,1587
68
+ ob_dj_store/core/stores/migrations/0033_auto_20220815_0133.py,sha256=-MfivOwWGYzUlzKHR0EePGQWW2M7cX6DPuz-DHU6H9M,1519
69
69
  ob_dj_store/core/stores/migrations/0034_auto_20220815_1528.py,sha256=sz615ULUfw4IznTXMlxWG-K_Z5lf1crUonAdNCMFRf0,745
70
70
  ob_dj_store/core/stores/migrations/0035_auto_20220818_1938.py,sha256=G9qpbojQfSe-Uc6qEJPIXQXRGJKMnbq5-7-gKEuW-l0,805
71
71
  ob_dj_store/core/stores/migrations/0036_productattribute_is_mandatory.py,sha256=N-o-eVacSB8bc7oElVilmP0DxIDLsvFX1zt-4TMngqs,403
72
72
  ob_dj_store/core/stores/migrations/0037_auto_20220825_1736.py,sha256=bjQzDMTazDpAl4mAIOuXGOqTQ29XoqaKAr7E-5lfUKQ,2432
73
73
  ob_dj_store/core/stores/migrations/0038_cartitem_extra_infos.py,sha256=hoM0JBp_7-mkXF2dH39dAIr3f-cF_cpMD4TedpzxNCM,399
74
- ob_dj_store/core/stores/migrations/0039_auto_20220831_1521.py,sha256=JQV5zfAEZWlsTnrSrWBn36WFdWTdSPgb53hz5SULS6M,770
74
+ ob_dj_store/core/stores/migrations/0039_auto_20220831_1521.py,sha256=O-do78veU2_IMZM2XOq2R8dEAX18QowFmkEIePKpGXM,736
75
75
  ob_dj_store/core/stores/migrations/0040_auto_20220902_1806.py,sha256=pUyR690JBJ9_LZwNF1hspmTrYQT_eFk6ApbsXoCbGLM,640
76
76
  ob_dj_store/core/stores/migrations/0041_auto_20220912_1506.py,sha256=k0vMOMa5vNvVoQhfExuFfxF6V65ypVITY9nYBofBB0E,1476
77
77
  ob_dj_store/core/stores/migrations/0042_wallet_wallettransaction.py,sha256=FCv1P17ihg5AKjOCpOYzQOQTNQ53xRbbFQyWJ8YIE3o,2623
78
78
  ob_dj_store/core/stores/migrations/0043_auto_20220919_1854.py,sha256=XmsmFgDhwK3cQMJtDFIDyMlPWZff_72ZUMVgYDh-0tw,1016
79
- ob_dj_store/core/stores/migrations/0044_remove_productvariant_has_inventory.py,sha256=k4MQal6oUWzk-NEYBGHwFFQhk74lXoJGNPjhBVFfcfU,343
79
+ ob_dj_store/core/stores/migrations/0044_remove_productvariant_has_inventory.py,sha256=ay-k2j4jT_hVIN8qbqerno6XPR-0fg-gi3kFCTTMDXc,309
80
80
  ob_dj_store/core/stores/migrations/0045_shippingmethod_type.py,sha256=UyTT4wBUNhlT6gEXumHCFodZLp_HWVnY9Xg7tZfly08,667
81
81
  ob_dj_store/core/stores/migrations/0046_auto_20221014_1720.py,sha256=3fkf7fGCZrouqffljKNFbV3LuZkS-5lslD98DdaMEzc,1909
82
82
  ob_dj_store/core/stores/migrations/0047_auto_20221018_1433.py,sha256=5hIkQFBMhjgoGVoQcJ33LrJqjPmH585Wf3nnkusxPm8,1227
83
83
  ob_dj_store/core/stores/migrations/0048_auto_20221026_1933.py,sha256=Z2yrm7fHYFYmH0dXNYzPyIKN4UnLWziRs37pE1R1poo,527
84
- ob_dj_store/core/stores/migrations/0049_auto_20221029_1524.py,sha256=iaV5yIVBjTAmZypodY5G0tWKSfs2P-9EpcI__4hcG1o,1176
85
- ob_dj_store/core/stores/migrations/0050_favoriteextra.py,sha256=CftVdunCOqi_VPbeUOcPj1Al0Uo6sTAXvvWyJ7Lw0TM,1717
84
+ ob_dj_store/core/stores/migrations/0049_auto_20221029_1524.py,sha256=NTJhAI-kDvJsQc4hVo-Ouqwyqaibo5wDQZMStRfIoR0,1108
85
+ ob_dj_store/core/stores/migrations/0050_favoriteextra.py,sha256=DWVjMmyBi4kqStEJSpq9GiIyl3Hq1Gywww1z7WCd4Lc,1687
86
86
  ob_dj_store/core/stores/migrations/0051_order_car_id.py,sha256=Gwwh7Q1kUZMgTXVUD1b1tof0GQmlMmFz0wOHlG4IN7s,396
87
- ob_dj_store/core/stores/migrations/0052_auto_20221129_1732.py,sha256=U5uJlijATvs5iW3_x77AP_JuAYeMpPfSOeuwXGyWUdU,453
87
+ ob_dj_store/core/stores/migrations/0052_auto_20221129_1732.py,sha256=M4E5BTW0VM-T30vIRqeoCQ2dvuw3jUT2xnXD7554APY,385
88
88
  ob_dj_store/core/stores/migrations/0053_inventory_plu.py,sha256=8Xdk-mdrjkpF6GKg4w-02vO3-jtlSk6--vOmvagDIgU,406
89
89
  ob_dj_store/core/stores/migrations/0054_auto_20221230_1501.py,sha256=OHQH4GfV5tBEGg5dZcNG3Vn7RYNJVxueAv6MSUJbAYA,2356
90
90
  ob_dj_store/core/stores/migrations/0055_store_image.py,sha256=CRSI3Ubr4REg6zT1hA10ojbjq_lTis2UzwCPTjfpNs0,546
91
91
  ob_dj_store/core/stores/migrations/0056_auto_20230213_2224.py,sha256=hFGv7ixE_Vqq8wkbI0vBXUiOmoFFnotK-h3XyO6GKB8,855
92
92
  ob_dj_store/core/stores/migrations/0057_auto_20230214_1724.py,sha256=CxsfFxdmay12VetEwJIbYQe8uXokOxdBkVhWknTsEuc,1076
93
93
  ob_dj_store/core/stores/migrations/0058_attributechoice_is_default.py,sha256=nv_venn0REDJxpG6KR3ByygtS8hV1vZGBe2hdiioRpM,399
94
- ob_dj_store/core/stores/migrations/0059_auto_20230217_2006.py,sha256=ZaTZRC10L9uzMuya0rXHcsvJzsfF6H9-kcbzrrKVZMQ,1304
94
+ ob_dj_store/core/stores/migrations/0059_auto_20230217_2006.py,sha256=cZnFjSCqMKMguft4zoieJ3-bbHEhhnWuKv2b7u7o9oM,1236
95
95
  ob_dj_store/core/stores/migrations/0060_alter_orderitem_product_variant.py,sha256=wyGWekRoR3XAGFfNScNV1jvqMz_HgWACCeiodUa_fGA,607
96
96
  ob_dj_store/core/stores/migrations/0061_auto_20230223_1435.py,sha256=Rqi0XMNw21mVlSzmWo132xaJfamUeyZ1l0_wdr6ipg0,796
97
- ob_dj_store/core/stores/migrations/0062_auto_20230226_2005.py,sha256=ApzGG5teYcLd4horeCzxIWnVPTeRoMNlJProUhYHacY,1187
97
+ ob_dj_store/core/stores/migrations/0062_auto_20230226_2005.py,sha256=7YkuRJt-hEq4atzZ7T97DFoSrXqUu59tWocC5JJGFJU,1141
98
98
  ob_dj_store/core/stores/migrations/0063_alter_store_payment_methods.py,sha256=QKIrNVtjttvYn4IO1GpGkA2gX4cyqjHNbFQ7q7cQqno,571
99
- ob_dj_store/core/stores/migrations/0064_auto_20230228_1814.py,sha256=6fgusQrMykN_tlNBxiJqLNvrHBA0yI32JK0kQ4VfNpQ,644
99
+ ob_dj_store/core/stores/migrations/0064_auto_20230228_1814.py,sha256=UqqmZTuoS16XF1wWUrOsOc9pX6SIZgvXAWG6_ZGQPEc,632
100
100
  ob_dj_store/core/stores/migrations/0065_auto_20230228_1932.py,sha256=r3-ThPhh_Lf4J3tYbCLiRbLSui5VSqwaVCtzvEZes_8,919
101
- ob_dj_store/core/stores/migrations/0066_auto_20230304_1532.py,sha256=IVOFLoaaFyRM50EBdfw9W4ixUP_F1n6LRm4zQJ9Yfaw,1977
101
+ ob_dj_store/core/stores/migrations/0066_auto_20230304_1532.py,sha256=UK5J3_DpqDM_9DNbavM7ra2MSahErnYJtZKX_MBwP_Q,1909
102
102
  ob_dj_store/core/stores/migrations/0067_auto_20230309_2014.py,sha256=D2ZZO10Js7a2EKX1ksbkdDHJp-JQhhVux8uFAiWOUfo,1291
103
103
  ob_dj_store/core/stores/migrations/0068_auto_20230309_2251.py,sha256=BCjkQj7q_-6Da2BFRLgvtYPlgtmcgf9D-sRkM_H5XfU,1255
104
104
  ob_dj_store/core/stores/migrations/0069_alter_cartitem_options.py,sha256=6AVZ_rJDEhkGX2XmgOV7Fq7LdnpzU9fxVpbax6rgaEo,481
105
- ob_dj_store/core/stores/migrations/0070_auto_20230323_1628.py,sha256=KhCMGxWLiPuMsYa4DleMVq6l_uiYdnwX6fGCAfFjEAE,624
106
- ob_dj_store/core/stores/migrations/0071_auto_20230328_1825.py,sha256=BV0s0EwRsAm-2xdgoo98O5zt_SonJwWpTCLzyenmtkA,1536
105
+ ob_dj_store/core/stores/migrations/0070_auto_20230323_1628.py,sha256=V6BQ2cqnO53eYdpyGyWz1-AcSFnEA6rWcpoJirD7C8c,590
106
+ ob_dj_store/core/stores/migrations/0071_auto_20230328_1825.py,sha256=5dFLuzxjVTkeuBAkcr_9V0SZD1TWPs76vjZrdYA3cqg,1500
107
107
  ob_dj_store/core/stores/migrations/0072_alter_order_extra_infos.py,sha256=-OYreEAVlB9Pe4Mt8nxVCAGcvQGc4Z4cvjfUgt9T97o,622
108
108
  ob_dj_store/core/stores/migrations/0073_wallettransaction_is_cashback.py,sha256=sWNqgWeypkXtt9g1bH8oUmfUslqq6AETy5SypEV4R-4,407
109
109
  ob_dj_store/core/stores/migrations/0074_productvariant_label.py,sha256=dLZPbjKlQaHOBKPaHVi8PMItuwbokOnlf2_14N_pjIg,473
@@ -114,12 +114,12 @@ ob_dj_store/core/stores/migrations/0078_auto_20230503_1259.py,sha256=Svf1krUGKEs
114
114
  ob_dj_store/core/stores/migrations/0079_auto_20230504_1919.py,sha256=W5hEiToK5bapvxwHheNtZKXEaHsgCvj3K5JahgcDMME,1347
115
115
  ob_dj_store/core/stores/migrations/0080_productvariant_description.py,sha256=m7QgiqQwfGYJgXcWWuk12aCZtfZERKllYhh4MPOyEyo,404
116
116
  ob_dj_store/core/stores/migrations/0081_storeattributechoice.py,sha256=guZBDV-DKfOssqnhUPixspjRzaZtHw3f70eCK4Eqo2c,2089
117
- ob_dj_store/core/stores/migrations/0082_auto_20230613_1424.py,sha256=rV97rHjkSceVBsnJbn5agpE6uiarWXIA-G8Gl5n0_kU,506
117
+ ob_dj_store/core/stores/migrations/0082_auto_20230613_1424.py,sha256=ldZXu0uG-l-oQpWa0x2swrRcTa0xfXAw1-nBnrsSkYk,472
118
118
  ob_dj_store/core/stores/migrations/0083_productvariant_is_special.py,sha256=lKKne5BoTsKyHXUi7Rorn03FD8wzDWzEZonZ2wp5W-Y,398
119
- ob_dj_store/core/stores/migrations/0084_payment_result.py,sha256=fSI5OutBEicAFeJmDIKYPviTfk7pL7v2xCd2n6kRFgI,387
119
+ ob_dj_store/core/stores/migrations/0084_payment_result.py,sha256=MYbsR_GqD0a6mLMdV9IgudjmrAZDIs_PEmwF-u6SyDU,363
120
120
  ob_dj_store/core/stores/migrations/0085_auto_20230726_1528.py,sha256=inhGNw0kttcsSGb3KZLXGu0aVEwnCNKFM5XOjD51g7Y,643
121
121
  ob_dj_store/core/stores/migrations/0086_wallet_is_active.py,sha256=wS5H-i1BvbzpuqhtfUZ08CPGAH5X0W8Z8oEnPJ87RCQ,388
122
- ob_dj_store/core/stores/migrations/0087_auto_20230828_2138.py,sha256=ESHEN8RnSQh_WzsfVhwqdPO5pnSwtRhtWRT2gsUB5ZY,1785
122
+ ob_dj_store/core/stores/migrations/0087_auto_20230828_2138.py,sha256=smgFY-wUk4HzL2hbCpKy8hquuLGSxz-ooe5BBlIGMmQ,1751
123
123
  ob_dj_store/core/stores/migrations/0088_alter_paymentmethod_payment_provider.py,sha256=SuZ2YFSPaZB2O54jP7U31NH2JD5tKmyR0kalLIuAvQ8,932
124
124
  ob_dj_store/core/stores/migrations/0089_discount_partner_partnerauthinfo_partneremaildomain_partnerotpauth.py,sha256=c8IbAcCLkxw0ttI0UQxWkY0ZyBOD_AUDRn6dSXNshLA,7374
125
125
  ob_dj_store/core/stores/migrations/0090_auto_20231006_1356.py,sha256=wJGLZDhri35X_Tr72gYrzZP6EEuz3qiKRN9BDsmLfCU,871
@@ -129,33 +129,34 @@ ob_dj_store/core/stores/migrations/0093_auto_20231017_2033.py,sha256=xsLVknby38N
129
129
  ob_dj_store/core/stores/migrations/0094_countrypaymentmethod.py,sha256=SX1nuI3rhDfTPGR6R37y99k1bRmYLx4VZPEHAZ0zfuM,1537
130
130
  ob_dj_store/core/stores/migrations/0095_auto_20231101_1531.py,sha256=a_xgTTK1FxH5sChrManVdvcADNSPE2C3MOnRl1VkSpg,9688
131
131
  ob_dj_store/core/stores/migrations/0096_discount_discount_pos_id.py,sha256=UMK1yhbYho5JK5pvFSbAGuPU9nl9U2obBejeXlaoCxA,418
132
- ob_dj_store/core/stores/migrations/0097_auto_20231108_1939.py,sha256=zlz85pUO_3TynWIVcJfWESoapuffdY4aed8FQXhOF1s,1177
132
+ ob_dj_store/core/stores/migrations/0097_auto_20231108_1939.py,sha256=oHeVcLBzIe2yrUmilKC-DU3Yxssp96XiGsdRgqXVJ1o,1143
133
133
  ob_dj_store/core/stores/migrations/0098_alter_discount_discount_rate.py,sha256=JkIwox2MiBxDtjvUZVHbF7zQZwL0JiejDglFf5lANGk,577
134
134
  ob_dj_store/core/stores/migrations/0099_alter_product_name_arabic.py,sha256=dVv63A8f01zqA12KMWhV8Gu4brt8UYZ152TPk_aKiZw,483
135
- ob_dj_store/core/stores/migrations/0100_remove_shippingmethod_type_arabic.py,sha256=3rwZhXsOqbo4jdW6AT5ClaDqXPYbMfP1JOesNzy-Ldw,347
135
+ ob_dj_store/core/stores/migrations/0100_remove_shippingmethod_type_arabic.py,sha256=JvTkBEXD3nnZ3AnR54HT1i2c4JGsu683cXg6eGGPcUE,313
136
136
  ob_dj_store/core/stores/migrations/0101_store_is_digital.py,sha256=yDs7c23WLdhnx82VBw0Fs_YJ0-IgfxLMvMsCkIiThFU,404
137
137
  ob_dj_store/core/stores/migrations/0102_partner_name_arabic.py,sha256=iJIiy5isLYv9Jv2sd-NOyZkwySNlXOEqGTOWE3wLH5w,411
138
138
  ob_dj_store/core/stores/migrations/0103_alter_paymentmethod_payment_provider.py,sha256=yCDvU60LMCrJM4BDdyl1PpMcAirJDAyjpqTDH_cjC8g,1079
139
139
  ob_dj_store/core/stores/migrations/0104_wallettransaction_is_redeemed.py,sha256=1AFAvPFR2G3zwrJoilpdNVUk3xp8jwAxc2a8WQEXc3g,420
140
140
  ob_dj_store/core/stores/migrations/0105_store_is_open_after_midnight.py,sha256=8EXutaPuUQjk94hAduLFoYVxPkPLMNCdD8TTmUdqfZ8,412
141
+ ob_dj_store/core/stores/migrations/0106_alter_paymentmethod_payment_provider.py,sha256=BDDfVs0fMifUnSlZ4zIct78F6PvfP5gyrVFyifrCvE4,1092
141
142
  ob_dj_store/core/stores/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
142
143
  ob_dj_store/core/stores/models/__init__.py,sha256=VeWrDiIbw94ZDSFD-62rz9iTTW87iPdwDW5jcjxm7bs,2045
143
- ob_dj_store/core/stores/models/_address.py,sha256=8zV444A8M7P8yqQHjEOCROUykWPQ1ndSdd2IIX8wwWY,2207
144
- ob_dj_store/core/stores/models/_cart.py,sha256=UKN_rBf9G0RAe5C1JplnEi6zTtc5toB-Dsq5Xl0rvN4,7495
144
+ ob_dj_store/core/stores/models/_address.py,sha256=uf9W4dnlXkEFhhsK75ZsDwWq5R2JEngf7VhBiLEnIVs,2193
145
+ ob_dj_store/core/stores/models/_cart.py,sha256=PVyjkJ0qfq9LGOd_LxnVFaG_g5AyKJGSaMr-jVC1UPg,7481
145
146
  ob_dj_store/core/stores/models/_favorite.py,sha256=3yyMCoiftGOPAQwkMI2J29r3x6NJsRYri9f8gXiF1e8,3306
146
- ob_dj_store/core/stores/models/_feedback.py,sha256=eCUVgprNK5hSRKOS4M_pdR7QH2-rqhoYevlpykhCOLg,1472
147
- ob_dj_store/core/stores/models/_inventory.py,sha256=ZU8xDMQZxLnFehkBEGWr-os4AF1IlCn5XnBxvRq9IAs,4314
148
- ob_dj_store/core/stores/models/_order.py,sha256=JhCjKIJssQCOkbvPs9XMqqlZLEnEfweJ0lBIFrChU2c,9761
147
+ ob_dj_store/core/stores/models/_feedback.py,sha256=5kQ_AD9nkY57UOKo_qHg4_nEQAdFjK4VZjZ_R88q33Q,1456
148
+ ob_dj_store/core/stores/models/_inventory.py,sha256=_rGlVL5HjOlHQVB8CI0776CPcE5r6szv1w3PjtkYnWM,4306
149
+ ob_dj_store/core/stores/models/_order.py,sha256=VWWPgQVcGDcZciRK1ssgVB2rlWTgzwc5Xx8WrWkOJTs,9631
149
150
  ob_dj_store/core/stores/models/_partner.py,sha256=OuYvevUWn1sYHs9PcFf51EUUC1uqytQss8Bx91aMOH8,4732
150
- ob_dj_store/core/stores/models/_payment.py,sha256=bzuf9J0rh1LwKrS_krtxa55x2rHYvwehupJop9zRy6A,6491
151
- ob_dj_store/core/stores/models/_product.py,sha256=5VhwWtgrn3pB0WlWtcZpBJMaXQ9gz7uKI7nWxHJvpdQ,17895
152
- ob_dj_store/core/stores/models/_store.py,sha256=z6xKU4eY8rZXPeIi3C3WJYX9YvGx_nsyYOBHr93kpCo,9926
153
- ob_dj_store/core/stores/models/_wallet.py,sha256=i98dxN3Wl6LFOndJEy9FzZUvJfuy2GlCSZ8PAq6Xgzk,5507
151
+ ob_dj_store/core/stores/models/_payment.py,sha256=FTV-NmvQjxwwR5C5X7qYWV-ZUIZfqMMEjkBNaS-drLs,6421
152
+ ob_dj_store/core/stores/models/_product.py,sha256=A1C7Z1zchb6jarmT-5Fbabo2HLQPG7zEMHk3WmbGd2k,17803
153
+ ob_dj_store/core/stores/models/_store.py,sha256=FIHL4OdIWkm2UeefQZoYJBScCdkkwHj12iS9UqhcxsI,9856
154
+ ob_dj_store/core/stores/models/_wallet.py,sha256=_qVNn2T0p-IIp4duiRSXLZ1hs9MeOnFrFabSghMWNgw,5341
154
155
  ob_dj_store/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
155
156
  ob_dj_store/utils/helpers.py,sha256=o7wgypM7mI2vZqZKkhxnTcnHJC8GMQDOuYMnRwXr6tY,2058
156
157
  ob_dj_store/utils/model.py,sha256=DV7hOhTaZL3gh9sptts2jTUFlTArKG3i7oPioq9HLFE,303
157
158
  ob_dj_store/utils/utils.py,sha256=8UVAFB56qUSjJJ5f9vnermtw638gdFy4CFRCuMbns_M,1342
158
- ob_dj_store-0.0.20.2.dist-info/METADATA,sha256=_yjSTgCVEnJmDq9qsRD0HOIz3d4B1ucy1FkEiPU53ls,2827
159
- ob_dj_store-0.0.20.2.dist-info/WHEEL,sha256=y4mX-SOX4fYIkonsAGA5N0Oy-8_gI4FXw5HNI1xqvWg,91
160
- ob_dj_store-0.0.20.2.dist-info/top_level.txt,sha256=CZG3G0ptTkzGnc0dFYN-ZD7YKdJBmm47bsmGwofD_lk,12
161
- ob_dj_store-0.0.20.2.dist-info/RECORD,,
159
+ ob_dj_store-0.0.20.3.dist-info/METADATA,sha256=VH3f8kDLwdvABc0Szf4xSKpOqyfQEl2WIkvxzueZ27A,2827
160
+ ob_dj_store-0.0.20.3.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
161
+ ob_dj_store-0.0.20.3.dist-info/top_level.txt,sha256=CZG3G0ptTkzGnc0dFYN-ZD7YKdJBmm47bsmGwofD_lk,12
162
+ ob_dj_store-0.0.20.3.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (70.2.0)
2
+ Generator: setuptools (75.6.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5