fastgenerateapi 1.1.8__py2.py3-none-any.whl → 1.1.10__py2.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.
- fastgenerateapi/__version__.py +1 -1
- fastgenerateapi/api_view/base_view.py +5 -2
- fastgenerateapi/api_view/create_view.py +4 -0
- fastgenerateapi/api_view/delete_filter_view.py +7 -2
- fastgenerateapi/api_view/delete_tree_view.py +8 -2
- fastgenerateapi/api_view/delete_view.py +8 -2
- fastgenerateapi/api_view/get_all_view.py +8 -4
- fastgenerateapi/api_view/get_one_view.py +5 -1
- fastgenerateapi/api_view/get_relation_view.py +3 -0
- fastgenerateapi/api_view/get_tree_view.py +3 -0
- fastgenerateapi/api_view/mixin/base_mixin.py +1 -1
- fastgenerateapi/api_view/switch_view.py +9 -3
- fastgenerateapi/api_view/update_relation_view.py +4 -0
- fastgenerateapi/api_view/update_view.py +4 -0
- fastgenerateapi/channel/connection_manager.py +30 -0
- fastgenerateapi/channel/consumer.py +25 -20
- fastgenerateapi/channel/websocket_view.py +60 -2
- fastgenerateapi/my_fields/enum_field.py +8 -6
- fastgenerateapi/schemas_factory/filter_schema_factory.py +5 -1
- fastgenerateapi/schemas_factory/get_all_schema_factory.py +6 -6
- fastgenerateapi/schemas_factory/response_factory.py +2 -2
- fastgenerateapi/settings/all_settings.py +78 -71
- fastgenerateapi/settings/app_settings.py +14 -5
- fastgenerateapi/settings/db_settings.py +21 -31
- fastgenerateapi/settings/file_settings.py +13 -7
- fastgenerateapi/settings/jwt_settings.py +13 -6
- fastgenerateapi/settings/otlp_settings.py +14 -7
- fastgenerateapi/settings/redis_settings.py +13 -6
- fastgenerateapi/settings/sms_settings.py +13 -6
- fastgenerateapi/settings/system_settings.py +8 -2
- fastgenerateapi/utils/snowflake.py +1 -1
- {fastgenerateapi-1.1.8.dist-info → fastgenerateapi-1.1.10.dist-info}/METADATA +1 -1
- {fastgenerateapi-1.1.8.dist-info → fastgenerateapi-1.1.10.dist-info}/RECORD +36 -35
- {fastgenerateapi-1.1.8.dist-info → fastgenerateapi-1.1.10.dist-info}/LICENSE +0 -0
- {fastgenerateapi-1.1.8.dist-info → fastgenerateapi-1.1.10.dist-info}/WHEEL +0 -0
- {fastgenerateapi-1.1.8.dist-info → fastgenerateapi-1.1.10.dist-info}/top_level.txt +0 -0
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
fastgenerateapi/__init__.py,sha256=eh2qtp7FbjrgaRX5b3H3UWpasFdNHbVFqLUhpqVbaTU,1287
|
|
2
|
-
fastgenerateapi/__version__.py,sha256=
|
|
2
|
+
fastgenerateapi/__version__.py,sha256=R_rrxa7iJyrSeS8MiYiDjbVj5Cg7Keo66D2bNDPA2fM,497
|
|
3
3
|
fastgenerateapi/api_view/__init__.py,sha256=zkaTX5JxsNfjF-dFeEbHfUB58vhPMjm6Iiqx9HgJOrY,14
|
|
4
4
|
fastgenerateapi/api_view/api_view.py,sha256=mfD8GB-hnyI2XO3tkSOlEa2FfBLdq0_Wqvp8gFrXFKU,1160
|
|
5
|
-
fastgenerateapi/api_view/base_view.py,sha256=
|
|
6
|
-
fastgenerateapi/api_view/create_view.py,sha256=
|
|
7
|
-
fastgenerateapi/api_view/delete_filter_view.py,sha256=
|
|
8
|
-
fastgenerateapi/api_view/delete_tree_view.py,sha256
|
|
9
|
-
fastgenerateapi/api_view/delete_view.py,sha256=
|
|
10
|
-
fastgenerateapi/api_view/get_all_view.py,sha256=
|
|
11
|
-
fastgenerateapi/api_view/get_one_view.py,sha256=
|
|
12
|
-
fastgenerateapi/api_view/get_relation_view.py,sha256=
|
|
13
|
-
fastgenerateapi/api_view/get_tree_view.py,sha256=
|
|
5
|
+
fastgenerateapi/api_view/base_view.py,sha256=s8f6zdoRqPRmo6o2FqHZG2MKcn1gc8JELix8VetVo3k,9810
|
|
6
|
+
fastgenerateapi/api_view/create_view.py,sha256=NvJ0ocD2UMHcdipA4W7MYamxAw8sYeXAc176VAdkLek,4621
|
|
7
|
+
fastgenerateapi/api_view/delete_filter_view.py,sha256=ZP9pmRNeCTu_Go4ErfnDPnkPMShEh_Ql18iNCfMNJ3s,2838
|
|
8
|
+
fastgenerateapi/api_view/delete_tree_view.py,sha256=oqkWQNlA7TNZHHRTJJwxidOHxOgmvUpcnu81cT3oTA0,4083
|
|
9
|
+
fastgenerateapi/api_view/delete_view.py,sha256=FvaltPR1ttLfUvBoRoSHP-dGb79LRZlEMSEbYzE_W1E,3497
|
|
10
|
+
fastgenerateapi/api_view/get_all_view.py,sha256=mxX7H9DZR7FMqtSz80qj5GJ5Rg_8a8z5R3gwkZnBqmI,9176
|
|
11
|
+
fastgenerateapi/api_view/get_one_view.py,sha256=jw_H2z4rmRYgNfvBHSBgjnBNe1hpE6-A1EWRQR6bFD0,3762
|
|
12
|
+
fastgenerateapi/api_view/get_relation_view.py,sha256=mhPXoEos_2GQQSk3xlD2t_WYAiYuy1vRFR4jnBnbeSg,9766
|
|
13
|
+
fastgenerateapi/api_view/get_tree_view.py,sha256=8BQomoOU954bXrqGzeFrKS8ydHL9VPxQfwvhV59rQxg,9312
|
|
14
14
|
fastgenerateapi/api_view/sql_get_view.py,sha256=wxYI0JuH8Gw99LfMMwA4rQ_a_tBrKYxYhA7MNGQOx3A,6691
|
|
15
|
-
fastgenerateapi/api_view/switch_view.py,sha256=
|
|
16
|
-
fastgenerateapi/api_view/update_relation_view.py,sha256=
|
|
17
|
-
fastgenerateapi/api_view/update_view.py,sha256=
|
|
15
|
+
fastgenerateapi/api_view/switch_view.py,sha256=M_GSgnziz1vhrvNSwT_8I2oRy4zJnnFHh9HzUJBuy68,3317
|
|
16
|
+
fastgenerateapi/api_view/update_relation_view.py,sha256=Z77KgRE85Nkz3Y513l10CVQLcR0phhfIBCyI7LpV-hY,3762
|
|
17
|
+
fastgenerateapi/api_view/update_view.py,sha256=Y9cZwgQIl88-Gz6IhyufCB8cdVRMZ6NwhGUTUtDV5VA,4106
|
|
18
18
|
fastgenerateapi/api_view/mixin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
|
-
fastgenerateapi/api_view/mixin/base_mixin.py,sha256=
|
|
19
|
+
fastgenerateapi/api_view/mixin/base_mixin.py,sha256=qho7YCd4C1FtzTjsCU7Ax5uRx5-ryLwPEG0i_1IcTvI,6877
|
|
20
20
|
fastgenerateapi/api_view/mixin/dbmodel_mixin.py,sha256=T09Ydqr9Mt75CW6imxyNa8FsZ3wHaVS8WRmViGBmDSc,4757
|
|
21
21
|
fastgenerateapi/api_view/mixin/get_mixin.py,sha256=cpyTHaKFNsAhbtnLkz057rGcaKJXipNS-m9ftITsz1I,266
|
|
22
22
|
fastgenerateapi/api_view/mixin/response_mixin.py,sha256=cTKmrPAxjG-28Ls94-YWCl-YgvGB_0VLdYyR6t_RIhA,4404
|
|
@@ -32,8 +32,9 @@ fastgenerateapi/cache/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3h
|
|
|
32
32
|
fastgenerateapi/cache/cache_decorator.py,sha256=u6dfanX2GMkjsJANgT8qXuEgw1fSPXFsmpL05b0PI44,579
|
|
33
33
|
fastgenerateapi/cache/key_builder.py,sha256=6Vudd19EGg1IUGT5ftPDqLUNCCqXzmQNV69zBfjGf9A,503
|
|
34
34
|
fastgenerateapi/channel/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
35
|
-
fastgenerateapi/channel/
|
|
36
|
-
fastgenerateapi/channel/
|
|
35
|
+
fastgenerateapi/channel/connection_manager.py,sha256=BrsS0TMfgMBu3AQEb2RJwgfEUW27-e3bdZC0lM3qCls,1092
|
|
36
|
+
fastgenerateapi/channel/consumer.py,sha256=9zZ3ctN88ncMHRrWndVSRTeqvMExyU3O3hq38ku7lzw,3209
|
|
37
|
+
fastgenerateapi/channel/websocket_view.py,sha256=lG9rYMO_FTdULi--oEdqCtdguR5ZM8Uzrk6f3z-86zo,2656
|
|
37
38
|
fastgenerateapi/controller/__init__.py,sha256=eM5a3k_G0bf-k_WcwfcBbI-M3kLFJIITBWX85lVyClE,316
|
|
38
39
|
fastgenerateapi/controller/filter_controller.py,sha256=PX-2oOo7WGZWePjm318RCbIlLIdeYwHKG-u1onpjB24,5030
|
|
39
40
|
fastgenerateapi/controller/router_controller.py,sha256=HnvQgFXv2EPmzeiEPjcCyy6pZL2e7s5hB9TW1fRtZvM,5364
|
|
@@ -60,7 +61,7 @@ fastgenerateapi/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3h
|
|
|
60
61
|
fastgenerateapi/model/base_model.py,sha256=0eeIOHvkR4ZBpcs9mh-zlgMglJ8IGX9x7-lxdq8RPfI,1776
|
|
61
62
|
fastgenerateapi/my_fields/__init__.py,sha256=StbTm3_2IBZ8U5kEWxtNyZ3I-Qs-pCFd5vtAZTq52wA,202
|
|
62
63
|
fastgenerateapi/my_fields/aes_field.py,sha256=r4_Jhuq5lgwmITWjUYcFrv5uBR57GPGCVMgy3yNDvp4,4518
|
|
63
|
-
fastgenerateapi/my_fields/enum_field.py,sha256=
|
|
64
|
+
fastgenerateapi/my_fields/enum_field.py,sha256=5aRaJ1caiNxAzD_sNlRqGxS-knX9iUHd3pk5hCAXBAo,7986
|
|
64
65
|
fastgenerateapi/my_fields/pk_field.py,sha256=0rZIylE98xyW9QNlInr-HN843sxChwpoO4wRumWNKw4,1317
|
|
65
66
|
fastgenerateapi/my_fields/pwd_field.py,sha256=eUnarxEyHgpOzTBmsl0KxsI8lR7FzUDjxyFCKTqJDBU,2191
|
|
66
67
|
fastgenerateapi/my_fields/soft_delete_field.py,sha256=0Vf_BWewF71M27pAXkaUM82EyMe_pf3KDnW2aZmToEQ,1452
|
|
@@ -73,24 +74,24 @@ fastgenerateapi/schemas_factory/__init__.py,sha256=X9U96fiyRfCY0u6SzaCYG62RdpEGF
|
|
|
73
74
|
fastgenerateapi/schemas_factory/common_function.py,sha256=kwEQeGIA9rw4NHUVuXl9iZ2ijlHGwZVv08p5Gy3Mfcc,5224
|
|
74
75
|
fastgenerateapi/schemas_factory/common_schema_factory.py,sha256=ac_tYOcBqpnGVSkx4NCAZz3Hd1PHmwSocBRld5Jxro4,2904
|
|
75
76
|
fastgenerateapi/schemas_factory/create_schema_factory.py,sha256=rkah8geyfMkfqA6IhHDxq-lFomn8DA3bca1AtFcrLpQ,3733
|
|
76
|
-
fastgenerateapi/schemas_factory/filter_schema_factory.py,sha256=
|
|
77
|
-
fastgenerateapi/schemas_factory/get_all_schema_factory.py,sha256=
|
|
77
|
+
fastgenerateapi/schemas_factory/filter_schema_factory.py,sha256=emCfhL99Y7wi8-f3FgIZXJgG1iMd9u2ItmxA6E7m8DI,1396
|
|
78
|
+
fastgenerateapi/schemas_factory/get_all_schema_factory.py,sha256=gM2pYAGxNiqy3cmwW5lYcZHucilhI1aqCVRj2nt0EWw,5177
|
|
78
79
|
fastgenerateapi/schemas_factory/get_one_schema_factory.py,sha256=cgKoCOSK-4Lky8xUoZHIMAZmVSyWOW5-DmxaM6RAQEY,3431
|
|
79
80
|
fastgenerateapi/schemas_factory/get_relation_schema_factory.py,sha256=VvzWaxAwOnMdtaUYxmWw1tOw3KP0KBwmR6J3UAld2x0,3111
|
|
80
81
|
fastgenerateapi/schemas_factory/get_tree_schema_factory.py,sha256=v0DAf7kwB-17rHbkzVscLkm6Jh53qa2cieQ7awH78pw,7259
|
|
81
|
-
fastgenerateapi/schemas_factory/response_factory.py,sha256=
|
|
82
|
+
fastgenerateapi/schemas_factory/response_factory.py,sha256=C-E3lqIdfIJCIZhvmSaAiNJpYVOs6AGVyl90B5KRo4M,1655
|
|
82
83
|
fastgenerateapi/schemas_factory/sql_get_all_schema_factory.py,sha256=dhgMvXZIq4av7puIMiQOTuVqNOuBoMvBZVd98GWJTRg,1810
|
|
83
84
|
fastgenerateapi/schemas_factory/update_schema_factory.py,sha256=E-86vF98Ed92Q2VFqtS35xqxr_c34du9ok42JBfnj1g,3729
|
|
84
85
|
fastgenerateapi/settings/__init__.py,sha256=dlyJb7BNh8Svau-UOrV4pxfoSYnNTA6eE41fu43vlT8,173
|
|
85
|
-
fastgenerateapi/settings/all_settings.py,sha256=
|
|
86
|
-
fastgenerateapi/settings/app_settings.py,sha256=
|
|
87
|
-
fastgenerateapi/settings/db_settings.py,sha256=
|
|
88
|
-
fastgenerateapi/settings/file_settings.py,sha256=
|
|
89
|
-
fastgenerateapi/settings/jwt_settings.py,sha256=
|
|
90
|
-
fastgenerateapi/settings/otlp_settings.py,sha256=
|
|
91
|
-
fastgenerateapi/settings/redis_settings.py,sha256=
|
|
92
|
-
fastgenerateapi/settings/sms_settings.py,sha256=
|
|
93
|
-
fastgenerateapi/settings/system_settings.py,sha256=
|
|
86
|
+
fastgenerateapi/settings/all_settings.py,sha256=ylABCKJzh_US4ZfZQgDEYFYm75Zz-0mL8pqziFdgudY,3795
|
|
87
|
+
fastgenerateapi/settings/app_settings.py,sha256=FgRVIrWUmfvfDohP2pP4JO7nFevUPEG3MNuUyfjM9BA,7294
|
|
88
|
+
fastgenerateapi/settings/db_settings.py,sha256=duTgLjMHO6MTDfEZ2tkAGiSXrTKuHSLBJW00l5_rv7g,1570
|
|
89
|
+
fastgenerateapi/settings/file_settings.py,sha256=8Ra5H0nxRp1r_Ib_RGbNO0rUFaxqYMjuJT9A4fHE3Oo,857
|
|
90
|
+
fastgenerateapi/settings/jwt_settings.py,sha256=mRtzLZz1bntrl6UXAnIq6xilEEN8NS8oJSv62CGXOEs,971
|
|
91
|
+
fastgenerateapi/settings/otlp_settings.py,sha256=4haWpSdJBeor-rq_rBOgQl6oYRv9eppdwm1yWGt6GyE,3161
|
|
92
|
+
fastgenerateapi/settings/redis_settings.py,sha256=6T-KqCj2Jva7SarDCExZZbdvr54u6n08mEJ0gQhlUoc,700
|
|
93
|
+
fastgenerateapi/settings/sms_settings.py,sha256=NUsryRgr4Li5JXXcDMV5sfgzApX0GGyfJWAmCa_OV-U,1185
|
|
94
|
+
fastgenerateapi/settings/system_settings.py,sha256=3AGyhdBkkTJzfOeC6gHKweQ3aLsQ0GE63T5y7sLHQgo,1302
|
|
94
95
|
fastgenerateapi/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
95
96
|
fastgenerateapi/utils/aes.py,sha256=2ewx-qc7wAN68iExyNM97F8dB1sXhfGYVpNWFYR_a1k,3569
|
|
96
97
|
fastgenerateapi/utils/auto_discover.py,sha256=1R5weLj1moWbRiUXQA0dKJvsaJw4wwE-YM57bUVrGgU,2316
|
|
@@ -98,12 +99,12 @@ fastgenerateapi/utils/exception.py,sha256=dnBmVpHLUS_PZ2cwIvpAJ3ncswZnn31L98gNmC
|
|
|
98
99
|
fastgenerateapi/utils/file_utils.py,sha256=m9PrWLQ6mpT2XJyDxJtNzV3HnhQubqGb3awswSb-miM,2389
|
|
99
100
|
fastgenerateapi/utils/pwd_utils.py,sha256=Ub_CANZNX9Thv4I3U8f7op2pT_cqjxC3viqYxtZFYeA,1448
|
|
100
101
|
fastgenerateapi/utils/ramdom_utils.py,sha256=dOZyj9y1Ry8qMhAQKcVCnNtA9r5SNnR1iqGW656IH_o,984
|
|
101
|
-
fastgenerateapi/utils/snowflake.py,sha256=
|
|
102
|
+
fastgenerateapi/utils/snowflake.py,sha256=GiFVkE10sPiqJ094sMfrPsaV7Y9Y3c1djrSfgs06uIk,4643
|
|
102
103
|
fastgenerateapi/utils/str_util.py,sha256=c-jUlCFw-Dz4W1W9Jc1TqGZw3JXu-qN5ovnE6fjc9j0,3445
|
|
103
104
|
fastgenerateapi/utils/swagger_to_js.py,sha256=pPPTag6TYtxdbKMHD3m8lJvc8Gv9HC97CGHt4esU1-E,530
|
|
104
105
|
script/__init__.py,sha256=26UWatnbm6ZIwQMuu9NNzQ0IW1ACO4Oe9caModuTpWM,4
|
|
105
|
-
fastgenerateapi-1.1.
|
|
106
|
-
fastgenerateapi-1.1.
|
|
107
|
-
fastgenerateapi-1.1.
|
|
108
|
-
fastgenerateapi-1.1.
|
|
109
|
-
fastgenerateapi-1.1.
|
|
106
|
+
fastgenerateapi-1.1.10.dist-info/LICENSE,sha256=gcuuhKKc5-dwvyvHsXjlC9oM6N5gZ6umYbC8ewW1Yvg,35821
|
|
107
|
+
fastgenerateapi-1.1.10.dist-info/METADATA,sha256=_lY85M3GQWnIWQrbXyX1P3x1DxSp1Vk4d9rJfPYV_3E,5961
|
|
108
|
+
fastgenerateapi-1.1.10.dist-info/WHEEL,sha256=iYlv5fX357PQyRT2o6tw1bN-YcKFFHKqB_LwHO5wP-g,110
|
|
109
|
+
fastgenerateapi-1.1.10.dist-info/top_level.txt,sha256=CW2SlpYjTRdacF-5ufnPMtwpYcR0XYn_bDxa2ZrrTBI,23
|
|
110
|
+
fastgenerateapi-1.1.10.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|