ob-dj-store 0.0.11.3__py3-none-any.whl → 0.0.11.10__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.
- ob_dj_store/apis/stores/filters.py +33 -18
- ob_dj_store/apis/stores/rest/serializers/serializers.py +129 -53
- ob_dj_store/apis/stores/urls.py +3 -3
- ob_dj_store/apis/stores/views.py +182 -42
- ob_dj_store/core/stores/admin.py +8 -3
- ob_dj_store/core/stores/admin_inlines.py +4 -4
- ob_dj_store/core/stores/gateway/tap/models.py +1 -1
- ob_dj_store/core/stores/gateway/tap/utils.py +4 -4
- ob_dj_store/core/stores/managers.py +8 -6
- ob_dj_store/core/stores/migrations/0056_auto_20230213_2224.py +33 -0
- ob_dj_store/core/stores/migrations/0057_auto_20230214_1724.py +37 -0
- ob_dj_store/core/stores/migrations/0058_attributechoice_is_default.py +18 -0
- ob_dj_store/core/stores/migrations/0059_auto_20230217_2006.py +41 -0
- ob_dj_store/core/stores/migrations/0060_alter_orderitem_product_variant.py +24 -0
- ob_dj_store/core/stores/migrations/0061_auto_20230223_1435.py +28 -0
- ob_dj_store/core/stores/migrations/0062_auto_20230226_2005.py +43 -0
- ob_dj_store/core/stores/migrations/0063_alter_store_payment_methods.py +23 -0
- ob_dj_store/core/stores/migrations/0064_auto_20230228_1814.py +24 -0
- ob_dj_store/core/stores/migrations/0065_auto_20230228_1932.py +34 -0
- ob_dj_store/core/stores/models/_favorite.py +4 -1
- ob_dj_store/core/stores/models/_order.py +4 -2
- ob_dj_store/core/stores/models/_payment.py +31 -11
- ob_dj_store/core/stores/models/_product.py +22 -13
- ob_dj_store/core/stores/models/_store.py +15 -6
- ob_dj_store/core/stores/models/_wallet.py +41 -8
- ob_dj_store/core/stores/receivers.py +79 -4
- ob_dj_store/core/stores/utils.py +12 -6
- ob_dj_store/utils/helpers.py +8 -2
- ob_dj_store/utils/utils.py +43 -3
- {ob_dj_store-0.0.11.3.dist-info → ob_dj_store-0.0.11.10.dist-info}/METADATA +1 -1
- {ob_dj_store-0.0.11.3.dist-info → ob_dj_store-0.0.11.10.dist-info}/RECORD +33 -23
- {ob_dj_store-0.0.11.3.dist-info → ob_dj_store-0.0.11.10.dist-info}/WHEEL +0 -0
- {ob_dj_store-0.0.11.3.dist-info → ob_dj_store-0.0.11.10.dist-info}/top_level.txt +0 -0
@@ -1,29 +1,29 @@
|
|
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=
|
4
|
-
ob_dj_store/apis/stores/urls.py,sha256=
|
5
|
-
ob_dj_store/apis/stores/views.py,sha256=
|
6
|
-
ob_dj_store/apis/stores/rest/serializers/serializers.py,sha256=
|
3
|
+
ob_dj_store/apis/stores/filters.py,sha256=s4US_TysnIgdT8pue_1jlG3V33WhYmCymXK3DuC0rqY,5746
|
4
|
+
ob_dj_store/apis/stores/urls.py,sha256=cPForgFpOgOGCUVAk6DZcZ7qOooMf1zpDIr1BA0L_8A,1593
|
5
|
+
ob_dj_store/apis/stores/views.py,sha256=zoEgQg3qKVlhhHPj96_UoNE-B8Pf8NK4AuUEmTwOhgg,29833
|
6
|
+
ob_dj_store/apis/stores/rest/serializers/serializers.py,sha256=43c_0NyKVZDfmI32f2DR3m6i0G2y3G_yxZEuJBvdAL4,36402
|
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
10
|
ob_dj_store/apis/tap/views.py,sha256=VnVquybTHlJquxsC0RNTy20dtLXalchO0SlGjSDaBng,2666
|
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=
|
14
|
-
ob_dj_store/core/stores/admin_inlines.py,sha256=
|
13
|
+
ob_dj_store/core/stores/admin.py,sha256=4um-O_30xpnfcZHe_sNOyvSTnqLSbeExA2E1QppLEZQ,7354
|
14
|
+
ob_dj_store/core/stores/admin_inlines.py,sha256=SLj8mMa-Sc3oP693R0W9c3Ocyk7eb34IyXbC4E6LL8M,1557
|
15
15
|
ob_dj_store/core/stores/apps.py,sha256=i6D2lcqlluP6FwJSBpekf7BQVzQURwSy_Y97SgqWTkM,434
|
16
|
-
ob_dj_store/core/stores/managers.py,sha256=
|
17
|
-
ob_dj_store/core/stores/receivers.py,sha256=
|
16
|
+
ob_dj_store/core/stores/managers.py,sha256=cDr8TtPxayLwTFNgFs9I87ZXh7ssqM-yAmvEcN9a5LU,6359
|
17
|
+
ob_dj_store/core/stores/receivers.py,sha256=5AYMW8ul5htJPp4gBwRAH1VyT5ugZvDMJmed2sostBM,3194
|
18
18
|
ob_dj_store/core/stores/settings_validation.py,sha256=s9BPEdyCL2aslZwZGLAWEvJBzXlUo0p2TbC1_0E_SDo,327
|
19
|
-
ob_dj_store/core/stores/utils.py,sha256=
|
19
|
+
ob_dj_store/core/stores/utils.py,sha256=_FwZEIwKdfj3CuYHCz3wKqq5TBb8xak7UiiCB1oggKc,1850
|
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
22
|
ob_dj_store/core/stores/gateway/tap/admin.py,sha256=Jzt50VacsSaxJb-ly4sJ0F4NOujixlS4_3DgkdU0JSk,384
|
23
23
|
ob_dj_store/core/stores/gateway/tap/apps.py,sha256=kWwPjuAJeEmEasVDzUbvRsGaQWL-aYe4JDHNLvCVXPs,212
|
24
24
|
ob_dj_store/core/stores/gateway/tap/managers.py,sha256=nJkKPzd_bgTttmZERiWWHiQW0WWcfSHUxNkOKmyrjDY,830
|
25
|
-
ob_dj_store/core/stores/gateway/tap/models.py,sha256=
|
26
|
-
ob_dj_store/core/stores/gateway/tap/utils.py,sha256=
|
25
|
+
ob_dj_store/core/stores/gateway/tap/models.py,sha256=11SYWK-I7NyrJUQAJeTp3jzO94jwWNm_y5QZXd4UFkA,3456
|
26
|
+
ob_dj_store/core/stores/gateway/tap/utils.py,sha256=DB-UVxQT3Sdb17g5PF5a9Ghy6GgKADxcJWt1MxPmlt4,2493
|
27
27
|
ob_dj_store/core/stores/gateway/tap/migrations/0001_initial.py,sha256=_303R1R2tVVdPSMtwpuLUxvWbxQ2BML1Gsd-VhfnZEM,4808
|
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
|
@@ -84,23 +84,33 @@ ob_dj_store/core/stores/migrations/0052_auto_20221129_1732.py,sha256=U5uJlijATvs
|
|
84
84
|
ob_dj_store/core/stores/migrations/0053_inventory_plu.py,sha256=8Xdk-mdrjkpF6GKg4w-02vO3-jtlSk6--vOmvagDIgU,406
|
85
85
|
ob_dj_store/core/stores/migrations/0054_auto_20221230_1501.py,sha256=OHQH4GfV5tBEGg5dZcNG3Vn7RYNJVxueAv6MSUJbAYA,2356
|
86
86
|
ob_dj_store/core/stores/migrations/0055_store_image.py,sha256=CRSI3Ubr4REg6zT1hA10ojbjq_lTis2UzwCPTjfpNs0,546
|
87
|
+
ob_dj_store/core/stores/migrations/0056_auto_20230213_2224.py,sha256=hFGv7ixE_Vqq8wkbI0vBXUiOmoFFnotK-h3XyO6GKB8,855
|
88
|
+
ob_dj_store/core/stores/migrations/0057_auto_20230214_1724.py,sha256=CxsfFxdmay12VetEwJIbYQe8uXokOxdBkVhWknTsEuc,1076
|
89
|
+
ob_dj_store/core/stores/migrations/0058_attributechoice_is_default.py,sha256=nv_venn0REDJxpG6KR3ByygtS8hV1vZGBe2hdiioRpM,399
|
90
|
+
ob_dj_store/core/stores/migrations/0059_auto_20230217_2006.py,sha256=ZaTZRC10L9uzMuya0rXHcsvJzsfF6H9-kcbzrrKVZMQ,1304
|
91
|
+
ob_dj_store/core/stores/migrations/0060_alter_orderitem_product_variant.py,sha256=wyGWekRoR3XAGFfNScNV1jvqMz_HgWACCeiodUa_fGA,607
|
92
|
+
ob_dj_store/core/stores/migrations/0061_auto_20230223_1435.py,sha256=Rqi0XMNw21mVlSzmWo132xaJfamUeyZ1l0_wdr6ipg0,796
|
93
|
+
ob_dj_store/core/stores/migrations/0062_auto_20230226_2005.py,sha256=ApzGG5teYcLd4horeCzxIWnVPTeRoMNlJProUhYHacY,1187
|
94
|
+
ob_dj_store/core/stores/migrations/0063_alter_store_payment_methods.py,sha256=QKIrNVtjttvYn4IO1GpGkA2gX4cyqjHNbFQ7q7cQqno,571
|
95
|
+
ob_dj_store/core/stores/migrations/0064_auto_20230228_1814.py,sha256=6fgusQrMykN_tlNBxiJqLNvrHBA0yI32JK0kQ4VfNpQ,644
|
96
|
+
ob_dj_store/core/stores/migrations/0065_auto_20230228_1932.py,sha256=r3-ThPhh_Lf4J3tYbCLiRbLSui5VSqwaVCtzvEZes_8,919
|
87
97
|
ob_dj_store/core/stores/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
88
98
|
ob_dj_store/core/stores/models/__init__.py,sha256=1lEOqmvQlQJZj9nnObTAQqgnPP1yVGvM8H9yjglZ0VI,1568
|
89
99
|
ob_dj_store/core/stores/models/_address.py,sha256=qS5TQ9Z12zx_4CrrHvG8PoYVkdiOq_MtbKR14WKh3Hw,1661
|
90
100
|
ob_dj_store/core/stores/models/_cart.py,sha256=qgjg5MXTMRIZRJJDx5BQ1pa9__ylfrnYMMRGbB2R53c,4555
|
91
|
-
ob_dj_store/core/stores/models/_favorite.py,sha256=
|
101
|
+
ob_dj_store/core/stores/models/_favorite.py,sha256=bpXlFBNK8jsQkZG1RiDAbNTNSoVP0NOUUxZI8c46QzI,2561
|
92
102
|
ob_dj_store/core/stores/models/_feedback.py,sha256=eCUVgprNK5hSRKOS4M_pdR7QH2-rqhoYevlpykhCOLg,1472
|
93
103
|
ob_dj_store/core/stores/models/_inventory.py,sha256=vAXSpCyUdYDIWgUEUUObQfhAcCcQO6j6zATrHf5dPuQ,3928
|
94
|
-
ob_dj_store/core/stores/models/_order.py,sha256=
|
95
|
-
ob_dj_store/core/stores/models/_payment.py,sha256=
|
96
|
-
ob_dj_store/core/stores/models/_product.py,sha256=
|
97
|
-
ob_dj_store/core/stores/models/_store.py,sha256=
|
98
|
-
ob_dj_store/core/stores/models/_wallet.py,sha256=
|
104
|
+
ob_dj_store/core/stores/models/_order.py,sha256=qtdUpG30dZeDGeh0Z8JhzyyqQIuxTdLfyzd0-xaoo3o,8018
|
105
|
+
ob_dj_store/core/stores/models/_payment.py,sha256=dCOXOYkgxOGJqp0nxEvzHmdZxR_srFUIZAhrB--SP1U,6143
|
106
|
+
ob_dj_store/core/stores/models/_product.py,sha256=yGVp3vl5rCReG4c8ogWy2NUcsTJeqCxP0tm6lQyYx7Y,10928
|
107
|
+
ob_dj_store/core/stores/models/_store.py,sha256=g7QXKbZI886Pdw6smuheVep7Vh1ke42PEhJhnxW4byA,7334
|
108
|
+
ob_dj_store/core/stores/models/_wallet.py,sha256=4LUyWPlgRedthWij-Nkn4diYvWHU755IOBLgpjZOyQ8,3679
|
99
109
|
ob_dj_store/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
100
|
-
ob_dj_store/utils/helpers.py,sha256=
|
110
|
+
ob_dj_store/utils/helpers.py,sha256=02igVH2DSDTZYa6kFSTmBnJeXfTdgjRCRSXQ7mvmCGo,1224
|
101
111
|
ob_dj_store/utils/model.py,sha256=DV7hOhTaZL3gh9sptts2jTUFlTArKG3i7oPioq9HLFE,303
|
102
|
-
ob_dj_store/utils/utils.py,sha256=
|
103
|
-
ob_dj_store-0.0.11.
|
104
|
-
ob_dj_store-0.0.11.
|
105
|
-
ob_dj_store-0.0.11.
|
106
|
-
ob_dj_store-0.0.11.
|
112
|
+
ob_dj_store/utils/utils.py,sha256=euWeNI39P48jGNwKoBCC5AmwQUmgDeb92t0fQtPm-5g,1282
|
113
|
+
ob_dj_store-0.0.11.10.dist-info/METADATA,sha256=pjF7LcR9ltkOqvsxXXp5ZGjaJRR47kGrO_SyxVtGrZ4,2828
|
114
|
+
ob_dj_store-0.0.11.10.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
115
|
+
ob_dj_store-0.0.11.10.dist-info/top_level.txt,sha256=CZG3G0ptTkzGnc0dFYN-ZD7YKdJBmm47bsmGwofD_lk,12
|
116
|
+
ob_dj_store-0.0.11.10.dist-info/RECORD,,
|
File without changes
|
File without changes
|