django-cfg 1.5.8__py3-none-any.whl → 1.5.20__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.
Potentially problematic release.
This version of django-cfg might be problematic. Click here for more details.
- django_cfg/__init__.py +1 -1
- django_cfg/apps/api/commands/serializers.py +152 -0
- django_cfg/apps/api/commands/views.py +32 -0
- django_cfg/apps/business/accounts/management/commands/otp_test.py +5 -2
- django_cfg/apps/business/accounts/serializers/profile.py +42 -0
- django_cfg/apps/business/agents/management/commands/create_agent.py +5 -194
- django_cfg/apps/business/agents/management/commands/load_agent_templates.py +205 -0
- django_cfg/apps/business/agents/management/commands/orchestrator_status.py +4 -2
- django_cfg/apps/business/knowbase/management/commands/knowbase_stats.py +4 -2
- django_cfg/apps/business/knowbase/management/commands/setup_knowbase.py +4 -2
- django_cfg/apps/business/newsletter/management/commands/test_newsletter.py +5 -2
- django_cfg/apps/business/payments/management/commands/check_payment_status.py +4 -2
- django_cfg/apps/business/payments/management/commands/create_payment.py +4 -2
- django_cfg/apps/business/payments/management/commands/sync_currencies.py +4 -2
- django_cfg/apps/business/support/serializers.py +3 -2
- django_cfg/apps/integrations/centrifugo/apps.py +2 -1
- django_cfg/apps/integrations/centrifugo/codegen/generators/typescript_thin/templates/rpc-client.ts.j2 +151 -12
- django_cfg/apps/integrations/centrifugo/management/commands/generate_centrifugo_clients.py +6 -6
- django_cfg/apps/integrations/centrifugo/serializers/__init__.py +2 -1
- django_cfg/apps/integrations/centrifugo/serializers/publishes.py +22 -2
- django_cfg/apps/integrations/centrifugo/services/__init__.py +6 -0
- django_cfg/apps/integrations/centrifugo/services/client/__init__.py +6 -1
- django_cfg/apps/integrations/centrifugo/services/client/direct_client.py +282 -0
- django_cfg/apps/integrations/centrifugo/services/publisher.py +371 -0
- django_cfg/apps/integrations/centrifugo/services/token_generator.py +122 -0
- django_cfg/apps/integrations/centrifugo/urls.py +8 -0
- django_cfg/apps/integrations/centrifugo/views/__init__.py +2 -0
- django_cfg/apps/integrations/centrifugo/views/monitoring.py +25 -40
- django_cfg/apps/integrations/centrifugo/views/testing_api.py +0 -79
- django_cfg/apps/integrations/centrifugo/views/token_api.py +101 -0
- django_cfg/apps/integrations/centrifugo/views/wrapper.py +257 -0
- django_cfg/apps/integrations/grpc/admin/__init__.py +7 -1
- django_cfg/apps/integrations/grpc/admin/config.py +113 -9
- django_cfg/apps/integrations/grpc/admin/grpc_api_key.py +129 -0
- django_cfg/apps/integrations/grpc/admin/grpc_request_log.py +72 -63
- django_cfg/apps/integrations/grpc/admin/grpc_server_status.py +236 -0
- django_cfg/apps/integrations/grpc/auth/__init__.py +11 -3
- django_cfg/apps/integrations/grpc/auth/api_key_auth.py +320 -0
- django_cfg/apps/integrations/grpc/centrifugo/__init__.py +29 -0
- django_cfg/apps/integrations/grpc/centrifugo/bridge.py +277 -0
- django_cfg/apps/integrations/grpc/centrifugo/config.py +167 -0
- django_cfg/apps/integrations/grpc/centrifugo/demo.py +626 -0
- django_cfg/apps/integrations/grpc/centrifugo/test_publish.py +229 -0
- django_cfg/apps/integrations/grpc/centrifugo/transformers.py +89 -0
- django_cfg/apps/integrations/grpc/interceptors/__init__.py +3 -1
- django_cfg/apps/integrations/grpc/interceptors/centrifugo.py +541 -0
- django_cfg/apps/integrations/grpc/interceptors/logging.py +17 -20
- django_cfg/apps/integrations/grpc/interceptors/metrics.py +15 -14
- django_cfg/apps/integrations/grpc/interceptors/request_logger.py +79 -59
- django_cfg/apps/integrations/grpc/management/commands/compile_proto.py +105 -0
- django_cfg/apps/integrations/grpc/management/commands/generate_protos.py +185 -0
- django_cfg/apps/integrations/grpc/management/commands/rungrpc.py +474 -95
- django_cfg/apps/integrations/grpc/management/commands/test_grpc_integration.py +75 -0
- django_cfg/apps/integrations/grpc/management/proto/__init__.py +3 -0
- django_cfg/apps/integrations/grpc/management/proto/compiler.py +194 -0
- django_cfg/apps/integrations/grpc/managers/__init__.py +2 -0
- django_cfg/apps/integrations/grpc/managers/grpc_api_key.py +192 -0
- django_cfg/apps/integrations/grpc/managers/grpc_server_status.py +19 -11
- django_cfg/apps/integrations/grpc/migrations/0005_grpcapikey.py +143 -0
- django_cfg/apps/integrations/grpc/migrations/0006_grpcrequestlog_api_key_and_more.py +34 -0
- django_cfg/apps/integrations/grpc/models/__init__.py +2 -0
- django_cfg/apps/integrations/grpc/models/grpc_api_key.py +198 -0
- django_cfg/apps/integrations/grpc/models/grpc_request_log.py +11 -0
- django_cfg/apps/integrations/grpc/models/grpc_server_status.py +39 -4
- django_cfg/apps/integrations/grpc/serializers/__init__.py +22 -6
- django_cfg/apps/integrations/grpc/serializers/api_keys.py +63 -0
- django_cfg/apps/integrations/grpc/serializers/charts.py +118 -120
- django_cfg/apps/integrations/grpc/serializers/config.py +65 -51
- django_cfg/apps/integrations/grpc/serializers/health.py +7 -7
- django_cfg/apps/integrations/grpc/serializers/proto_files.py +74 -0
- django_cfg/apps/integrations/grpc/serializers/requests.py +13 -7
- django_cfg/apps/integrations/grpc/serializers/service_registry.py +181 -112
- django_cfg/apps/integrations/grpc/serializers/services.py +14 -32
- django_cfg/apps/integrations/grpc/serializers/stats.py +50 -12
- django_cfg/apps/integrations/grpc/serializers/testing.py +66 -58
- django_cfg/apps/integrations/grpc/services/__init__.py +2 -0
- django_cfg/apps/integrations/grpc/services/discovery.py +7 -1
- django_cfg/apps/integrations/grpc/services/monitoring_service.py +149 -43
- django_cfg/apps/integrations/grpc/services/proto_files_manager.py +268 -0
- django_cfg/apps/integrations/grpc/services/service_registry.py +48 -46
- django_cfg/apps/integrations/grpc/services/testing_service.py +10 -15
- django_cfg/apps/integrations/grpc/urls.py +8 -0
- django_cfg/apps/integrations/grpc/utils/SERVER_LOGGING.md +164 -0
- django_cfg/apps/integrations/grpc/utils/__init__.py +4 -13
- django_cfg/apps/integrations/grpc/utils/integration_test.py +334 -0
- django_cfg/apps/integrations/grpc/utils/proto_gen.py +48 -8
- django_cfg/apps/integrations/grpc/utils/streaming_logger.py +378 -0
- django_cfg/apps/integrations/grpc/views/__init__.py +4 -0
- django_cfg/apps/integrations/grpc/views/api_keys.py +255 -0
- django_cfg/apps/integrations/grpc/views/charts.py +21 -14
- django_cfg/apps/integrations/grpc/views/config.py +8 -6
- django_cfg/apps/integrations/grpc/views/monitoring.py +51 -79
- django_cfg/apps/integrations/grpc/views/proto_files.py +214 -0
- django_cfg/apps/integrations/grpc/views/services.py +30 -21
- django_cfg/apps/integrations/grpc/views/testing.py +45 -43
- django_cfg/apps/integrations/rq/views/jobs.py +19 -9
- django_cfg/apps/integrations/rq/views/schedule.py +7 -3
- django_cfg/apps/system/dashboard/serializers/commands.py +25 -1
- django_cfg/apps/system/dashboard/serializers/config.py +95 -9
- django_cfg/apps/system/dashboard/serializers/statistics.py +9 -4
- django_cfg/apps/system/dashboard/services/commands_service.py +12 -1
- django_cfg/apps/system/frontend/views.py +87 -6
- django_cfg/apps/system/maintenance/management/commands/maintenance.py +5 -2
- django_cfg/apps/system/maintenance/management/commands/process_scheduled_maintenance.py +4 -2
- django_cfg/apps/system/maintenance/management/commands/sync_cloudflare.py +5 -2
- django_cfg/config.py +33 -0
- django_cfg/core/builders/security_builder.py +1 -0
- django_cfg/core/generation/integration_generators/api.py +2 -0
- django_cfg/core/generation/integration_generators/grpc_generator.py +30 -32
- django_cfg/management/commands/check_endpoints.py +2 -2
- django_cfg/management/commands/check_settings.py +3 -10
- django_cfg/management/commands/clear_constance.py +3 -10
- django_cfg/management/commands/create_token.py +4 -11
- django_cfg/management/commands/list_urls.py +4 -10
- django_cfg/management/commands/migrate_all.py +18 -12
- django_cfg/management/commands/migrator.py +4 -11
- django_cfg/management/commands/script.py +4 -10
- django_cfg/management/commands/show_config.py +8 -16
- django_cfg/management/commands/show_urls.py +5 -11
- django_cfg/management/commands/superuser.py +4 -11
- django_cfg/management/commands/tree.py +5 -10
- django_cfg/management/utils/README.md +402 -0
- django_cfg/management/utils/__init__.py +29 -0
- django_cfg/management/utils/mixins.py +176 -0
- django_cfg/middleware/pagination.py +53 -54
- django_cfg/models/api/grpc/__init__.py +15 -21
- django_cfg/models/api/grpc/config.py +155 -73
- django_cfg/models/ngrok/config.py +7 -6
- django_cfg/modules/django_client/core/generator/python/files_generator.py +5 -13
- django_cfg/modules/django_client/core/generator/python/templates/api_wrapper.py.jinja +16 -4
- django_cfg/modules/django_client/core/generator/python/templates/main_init.py.jinja +2 -3
- django_cfg/modules/django_client/core/generator/typescript/files_generator.py +6 -5
- django_cfg/modules/django_client/core/generator/typescript/generator.py +26 -0
- django_cfg/modules/django_client/core/generator/typescript/hooks_generator.py +7 -1
- django_cfg/modules/django_client/core/generator/typescript/models_generator.py +5 -0
- django_cfg/modules/django_client/core/generator/typescript/schemas_generator.py +11 -0
- django_cfg/modules/django_client/core/generator/typescript/templates/fetchers/fetchers.ts.jinja +1 -0
- django_cfg/modules/django_client/core/generator/typescript/templates/fetchers/function.ts.jinja +29 -1
- django_cfg/modules/django_client/core/generator/typescript/templates/hooks/hooks.ts.jinja +4 -0
- django_cfg/modules/django_client/core/generator/typescript/templates/main_index.ts.jinja +12 -8
- django_cfg/modules/django_client/core/ir/schema.py +15 -1
- django_cfg/modules/django_client/core/parser/base.py +126 -30
- django_cfg/modules/django_client/management/commands/generate_client.py +5 -2
- django_cfg/modules/django_client/management/commands/validate_openapi.py +5 -2
- django_cfg/modules/django_email/management/commands/test_email.py +4 -10
- django_cfg/modules/django_ngrok/management/commands/runserver_ngrok.py +16 -13
- django_cfg/modules/django_telegram/management/commands/test_telegram.py +4 -11
- django_cfg/modules/django_twilio/management/commands/test_twilio.py +4 -11
- django_cfg/modules/django_unfold/navigation.py +6 -18
- django_cfg/pyproject.toml +1 -1
- django_cfg/registry/modules.py +1 -4
- django_cfg/requirements.txt +52 -0
- django_cfg/static/frontend/admin.zip +0 -0
- {django_cfg-1.5.8.dist-info → django_cfg-1.5.20.dist-info}/METADATA +1 -1
- {django_cfg-1.5.8.dist-info → django_cfg-1.5.20.dist-info}/RECORD +158 -121
- django_cfg/apps/integrations/grpc/auth/jwt_auth.py +0 -295
- {django_cfg-1.5.8.dist-info → django_cfg-1.5.20.dist-info}/WHEEL +0 -0
- {django_cfg-1.5.8.dist-info → django_cfg-1.5.20.dist-info}/entry_points.txt +0 -0
- {django_cfg-1.5.8.dist-info → django_cfg-1.5.20.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
django_cfg/README.md,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
django_cfg/__init__.py,sha256=
|
|
2
|
+
django_cfg/__init__.py,sha256=7vWY05VFSatnf83RG0vpsyHNxZ99xvs6XoK4aTms40Q,1822
|
|
3
3
|
django_cfg/apps.py,sha256=72m3uuvyqGiLx6gOfE-BD3P61jddCCERuBOYpxTX518,1605
|
|
4
|
-
django_cfg/config.py,sha256=
|
|
4
|
+
django_cfg/config.py,sha256=ZqvSbFje8LJS5NtXTZsnUErgcUSCHa251LNfjEatZtY,2152
|
|
5
|
+
django_cfg/requirements.txt,sha256=NQjf3cPCjzPMaGFewhJxGNHnUdE9gE8yTXDEBIt0vuA,2682
|
|
5
6
|
django_cfg/apps/__init__.py,sha256=JtDmEYt1OcleWM2ZaeX0LKDnRQzPOavfaXBWG4ECB5Q,26
|
|
6
7
|
django_cfg/apps/urls.py,sha256=GgWN35_o0tGlPMKvZICp4zm94iZQtkTOT7H-W40EcGo,5046
|
|
7
8
|
django_cfg/apps/api/__init__.py,sha256=fHkKXld_pw5Eiqz4tNb3Z02nx-7T7PnqgMh-qjkGB3Q,84
|
|
8
9
|
django_cfg/apps/api/commands/__init__.py,sha256=FTmBMxSpI9rO6EljgkWn8e9pxh07ao5Y1kx2TzQmZSY,88
|
|
10
|
+
django_cfg/apps/api/commands/serializers.py,sha256=MG_6tRr_Xk4GYsYs8QDcMnSczVBSEp7XB0K5ZPjPFsg,4481
|
|
9
11
|
django_cfg/apps/api/commands/urls.py,sha256=GSZgAsB-VIhAxq9LU5DzUtYAy-RGDRiB9P41P1jqbcc,361
|
|
10
|
-
django_cfg/apps/api/commands/views.py,sha256=
|
|
12
|
+
django_cfg/apps/api/commands/views.py,sha256=chJTk0bBZq9steHwa1MzTl2DHctw0E3QOrEFwjR6xDQ,11096
|
|
11
13
|
django_cfg/apps/api/endpoints/README.md,sha256=eLqzpUWcOtBtrKL_r9zfE4mNK863lkJpbAtL_L9wGmI,3326
|
|
12
14
|
django_cfg/apps/api/endpoints/__init__.py,sha256=uHjV4E24Aj0UFgv7bW1Z0kH_NFe8PItNFuS105vvRz0,108
|
|
13
15
|
django_cfg/apps/api/endpoints/urls.py,sha256=vovwkICejTYtk0ZWOZpTOVrbi2hP_bR1YNNn4v8MPIU,726
|
|
@@ -43,7 +45,7 @@ django_cfg/apps/business/accounts/admin/registration_admin.py,sha256=Yohh3px81nK
|
|
|
43
45
|
django_cfg/apps/business/accounts/admin/resources.py,sha256=LBpBUAQfcvwwEolBDdLikSlaLf2gVcR3ww24SIkXepY,10944
|
|
44
46
|
django_cfg/apps/business/accounts/admin/twilio_admin.py,sha256=ijZ_1jC4zja7AA2oBQ9rgkQpaogcvICNMzvowJcmYLs,8062
|
|
45
47
|
django_cfg/apps/business/accounts/admin/user_admin.py,sha256=zI4RK5atibYv-bUONcK24FVsa7hxv_g4yWw6BEm4n_g,9332
|
|
46
|
-
django_cfg/apps/business/accounts/management/commands/otp_test.py,sha256=
|
|
48
|
+
django_cfg/apps/business/accounts/management/commands/otp_test.py,sha256=V8DfWlcXSWDDHYI7hw8UMnff9GQr3Jd-LZdcOS0DQ8M,6931
|
|
47
49
|
django_cfg/apps/business/accounts/managers/__init__.py,sha256=2PEjf-iHSuXE5TBqoY6tI0d23ihovNdT5F7eKOjl2SI,50
|
|
48
50
|
django_cfg/apps/business/accounts/managers/user_manager.py,sha256=bahrNeUe1lK_prUmMKNzUq86O1wOXJYcqcyW3mjFrQU,10316
|
|
49
51
|
django_cfg/apps/business/accounts/migrations/0001_initial.py,sha256=G-QX7Z_cDiwpac0r0KckF6nnXhwhYyItn8JFgxuObP4,7484
|
|
@@ -64,7 +66,7 @@ django_cfg/apps/business/accounts/models/registration.py,sha256=Jbowpr_uIuEjSNXn
|
|
|
64
66
|
django_cfg/apps/business/accounts/models/user.py,sha256=aySfswSbUVUXvap0z7fgt-45Qlt7bTH4HePMKL2MiaM,2554
|
|
65
67
|
django_cfg/apps/business/accounts/serializers/__init__.py,sha256=N2g6H9llOj3vT7pHOO8TbKkMmtvRvDYSJuwG_Boj9w8,508
|
|
66
68
|
django_cfg/apps/business/accounts/serializers/otp.py,sha256=kJstrLv2yGd9uHxIH9gqbm8QXf2acWAoFxy6FrZSzDo,4660
|
|
67
|
-
django_cfg/apps/business/accounts/serializers/profile.py,sha256=
|
|
69
|
+
django_cfg/apps/business/accounts/serializers/profile.py,sha256=XeTaKLhXH5bYvFm09YJOb5FDmETIOLQJHmhhpL4U5lw,6768
|
|
68
70
|
django_cfg/apps/business/accounts/serializers/webhook.py,sha256=eZGD4s_5U7oYmuC0z2aY0ZY8d0MXgCDZHaQ6g4jrUFU,4433
|
|
69
71
|
django_cfg/apps/business/accounts/services/__init__.py,sha256=tqVuqnbWMMwTLqxmRR62xVMRCXneVxhPlouN2i5lMNA,62
|
|
70
72
|
django_cfg/apps/business/accounts/services/activity_service.py,sha256=yw821ri9y-0YEgaVMfasZHWjx7_pKAT6V9clZS-M0cI,4218
|
|
@@ -106,8 +108,9 @@ django_cfg/apps/business/agents/integration/registry.py,sha256=FPcytdWB-05CwzU5W
|
|
|
106
108
|
django_cfg/apps/business/agents/integration/signals.py,sha256=_hbS8nauRqcc-VHo9Geb6zksIMKwhlJkgWabmk4q1lM,1662
|
|
107
109
|
django_cfg/apps/business/agents/management/__init__.py,sha256=1IP-JV-t0b-7GI-E3NtDs3owWF7XXdZ5anVj7w0gG8k,53
|
|
108
110
|
django_cfg/apps/business/agents/management/commands/__init__.py,sha256=rtYMem-u47ayXdeIss9qyDcg8z13rKMlARsq0YumNT8,53
|
|
109
|
-
django_cfg/apps/business/agents/management/commands/create_agent.py,sha256=
|
|
110
|
-
django_cfg/apps/business/agents/management/commands/
|
|
111
|
+
django_cfg/apps/business/agents/management/commands/create_agent.py,sha256=tYkfk9gE3akeCxvC65z-OFWVhMuaT06sE-jiiU3rKdE,6101
|
|
112
|
+
django_cfg/apps/business/agents/management/commands/load_agent_templates.py,sha256=bZQ-rNFs5qcmxw2VlTW0lcSn4FVCdU3O3LAK1Zi9ktA,7967
|
|
113
|
+
django_cfg/apps/business/agents/management/commands/orchestrator_status.py,sha256=PvBBNRA32AM53cyuYP0vXtLwYmoDX7gafWBBzwMfLQw,7186
|
|
111
114
|
django_cfg/apps/business/agents/managers/__init__.py,sha256=SJ3WWLcjxy2CXchQcoY4s04fEqtJpu9R_sw200N-csE,649
|
|
112
115
|
django_cfg/apps/business/agents/managers/execution.py,sha256=QH3RyTD4yXkUc7QLy-6Ulws3fCpKRm-85PaXBbAp3eo,7200
|
|
113
116
|
django_cfg/apps/business/agents/managers/registry.py,sha256=F3hT1oojxLzAq0iodaRXm6layBc3yLKpm3oJBqWUZZI,7647
|
|
@@ -149,8 +152,8 @@ django_cfg/apps/business/knowbase/examples/__init__.py,sha256=P6qbLcfvNj-O3Mxo35
|
|
|
149
152
|
django_cfg/apps/business/knowbase/examples/external_data_usage.py,sha256=b-DHNgKYU0Jl0MVvtXsgWT6uHGsLLnmgSOPGbNIVUFE,6165
|
|
150
153
|
django_cfg/apps/business/knowbase/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
151
154
|
django_cfg/apps/business/knowbase/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
152
|
-
django_cfg/apps/business/knowbase/management/commands/knowbase_stats.py,sha256=
|
|
153
|
-
django_cfg/apps/business/knowbase/management/commands/setup_knowbase.py,sha256=
|
|
155
|
+
django_cfg/apps/business/knowbase/management/commands/knowbase_stats.py,sha256=dDF6564E93ekYhFGbNLEaIAiaw2EbuRUEOQHqMWskGg,5932
|
|
156
|
+
django_cfg/apps/business/knowbase/management/commands/setup_knowbase.py,sha256=XGSnIcdvIfAaQ2ZfKKQIIRq-g1rjGapuNnTwmSyNkEA,1883
|
|
154
157
|
django_cfg/apps/business/knowbase/managers/__init__.py,sha256=swlR6LB31hOrxwkndR_TIvwAEmWx67KPm-GoIkG9feY,459
|
|
155
158
|
django_cfg/apps/business/knowbase/managers/archive.py,sha256=ubJtPeUVICELpkDRlChvV2DWTPvrP8_vm4xdmKjV2vs,16572
|
|
156
159
|
django_cfg/apps/business/knowbase/managers/base.py,sha256=QQVbLy3cl5vKWAGHRkG6WDRx1iJkQpCLk-yNF0j4-R8,966
|
|
@@ -273,7 +276,7 @@ django_cfg/apps/business/newsletter/admin/newsletter_admin.py,sha256=hLE1gddSx0v
|
|
|
273
276
|
django_cfg/apps/business/newsletter/admin/resources.py,sha256=KJfXZyG763ikhjGJvHE9wcx_k1dm111sg3id1QVFHrY,6808
|
|
274
277
|
django_cfg/apps/business/newsletter/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
275
278
|
django_cfg/apps/business/newsletter/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
276
|
-
django_cfg/apps/business/newsletter/management/commands/test_newsletter.py,sha256=
|
|
279
|
+
django_cfg/apps/business/newsletter/management/commands/test_newsletter.py,sha256=Gj8F1sPws8qrV9SKINiZq7Kf1A9mRwylZZs-JstPxVo,5953
|
|
277
280
|
django_cfg/apps/business/newsletter/managers/README.md,sha256=L_snzDIxyW_L2xr5cg4U_-yFE3Kyhtan-DPTrav5Oo0,2790
|
|
278
281
|
django_cfg/apps/business/newsletter/managers/__init__.py,sha256=bq4lpVKBdgApMtgHDejF0GvkNT5JPz7WUHPfF7btuW4,19
|
|
279
282
|
django_cfg/apps/business/newsletter/migrations/0001_initial.py,sha256=mxD3UuUP3wqCHd-kpj2hHBw5-MPOZVcUMRPmVbca6iQ,6424
|
|
@@ -308,9 +311,9 @@ django_cfg/apps/business/payments/api/views.py,sha256=e2iRWpQHFROdTyItM8aUik07T3
|
|
|
308
311
|
django_cfg/apps/business/payments/management/README.md,sha256=VVvZERmdk2AhSy_RwQz95b-_9i0aycFMAjucwsHkC08,10808
|
|
309
312
|
django_cfg/apps/business/payments/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
310
313
|
django_cfg/apps/business/payments/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
311
|
-
django_cfg/apps/business/payments/management/commands/check_payment_status.py,sha256=
|
|
312
|
-
django_cfg/apps/business/payments/management/commands/create_payment.py,sha256=
|
|
313
|
-
django_cfg/apps/business/payments/management/commands/sync_currencies.py,sha256=
|
|
314
|
+
django_cfg/apps/business/payments/management/commands/check_payment_status.py,sha256=IBpcyERDqKpjytnGJp_DoHmLw5mYARBl_h2O9QqmO9o,10886
|
|
315
|
+
django_cfg/apps/business/payments/management/commands/create_payment.py,sha256=brCMfKUNVV_7Nehd1UC2Fe4a_7M510mUiZoR32AkLYc,12142
|
|
316
|
+
django_cfg/apps/business/payments/management/commands/sync_currencies.py,sha256=Dw9PylUGbR13Y3QrEt_PY81ShuxNoKpEBsZOm5ckP_4,9798
|
|
314
317
|
django_cfg/apps/business/payments/migrations/0001_initial.py,sha256=vdYLb7umMlUGtOvSTxz1ymUIpKZ284v4aR4lqCdfvuw,16801
|
|
315
318
|
django_cfg/apps/business/payments/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
316
319
|
django_cfg/apps/business/payments/models/__init__.py,sha256=uf_AOrACWoZPOD2uzfJSECb2JcfuJUptGttsWQ0iWDM,509
|
|
@@ -336,7 +339,7 @@ django_cfg/apps/business/support/admin.py,sha256=rAxgGyOKV3e5ihRyruR0f9LCCtETDmn
|
|
|
336
339
|
django_cfg/apps/business/support/admin_filters.py,sha256=ZpKtetRxppRAMwIr-pwDbXAyh7qouDfTCEZoo1YJfFs,2179
|
|
337
340
|
django_cfg/apps/business/support/apps.py,sha256=cp3UKKdnLGG7m5BzGgFk4VLhavHvmEa7Qb5rwHgGVYc,279
|
|
338
341
|
django_cfg/apps/business/support/models.py,sha256=of8gBJoE2Idb5lSluaAngrc8X5tnC2SItNEfnyRLEs0,2467
|
|
339
|
-
django_cfg/apps/business/support/serializers.py,sha256=
|
|
342
|
+
django_cfg/apps/business/support/serializers.py,sha256=8pyfJQTYAVWBMGbF2FxYqWWJf9UosiinDj4INNtrLgA,1560
|
|
340
343
|
django_cfg/apps/business/support/signals.py,sha256=XnztjZhMdoy4HJ4bRdCDKjxpNwy9ouyu6TksKpmvyDs,3696
|
|
341
344
|
django_cfg/apps/business/support/urls.py,sha256=6uwy_xVBd8QocaY09PF-NTS3VKb529Fuvxyeyq2mslc,900
|
|
342
345
|
django_cfg/apps/business/support/urls_admin.py,sha256=E61etVCrwAzWZdPckWWX5yMDPsZzi3cQtAXn_zzZNL4,226
|
|
@@ -360,11 +363,11 @@ django_cfg/apps/business/support/views/api.py,sha256=8hHY-j6EZpSdYkT6JA8_yo7LJKP
|
|
|
360
363
|
django_cfg/apps/business/support/views/chat.py,sha256=wbWR_UgvdgYBYlhHJBLJRPpVm7V44bNy5NZWHqBx2AE,3255
|
|
361
364
|
django_cfg/apps/integrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
362
365
|
django_cfg/apps/integrations/centrifugo/__init__.py,sha256=EOgnKnOKLntnK0XdppncfoPKvltEUPBmQmBgx9NZ20Y,1859
|
|
363
|
-
django_cfg/apps/integrations/centrifugo/apps.py,sha256=
|
|
366
|
+
django_cfg/apps/integrations/centrifugo/apps.py,sha256=dYs1FA8HpGj3WKJQIMTa-DwjIyGNkDx0lB1_dMAOwuw,2987
|
|
364
367
|
django_cfg/apps/integrations/centrifugo/decorators.py,sha256=J3KA0ll3lYwU_gLPKmfmB0HQ5vFnbSABbCNOjKm3y-Y,4174
|
|
365
368
|
django_cfg/apps/integrations/centrifugo/registry.py,sha256=HRaBN39UlCMX6ZAysYhdCWMlzAx1scGTvgZLyl3MCjc,2819
|
|
366
369
|
django_cfg/apps/integrations/centrifugo/router.py,sha256=HyiJF0t3w085Upu9SPaTJ-qcSW8JYND71rXtuEFAt2g,3116
|
|
367
|
-
django_cfg/apps/integrations/centrifugo/urls.py,sha256=
|
|
370
|
+
django_cfg/apps/integrations/centrifugo/urls.py,sha256=SSviuFyideoca84oSJMwQgFtnbgIPyNpKHUstaAeFag,1265
|
|
368
371
|
django_cfg/apps/integrations/centrifugo/_cfg/README_DEPENDENCIES.md,sha256=h3Ylo_WJ4Qd8yc3ZfNtZvmZyOp9c7mwppKH215xDylM,6918
|
|
369
372
|
django_cfg/apps/integrations/centrifugo/_cfg/__init__.py,sha256=13rVhgkttgdgmbb0eOHxAHiL-NXgympgVtpl-CwDgvY,655
|
|
370
373
|
django_cfg/apps/integrations/centrifugo/_cfg/check_deps.py,sha256=i6gGOR59-9qwY4gGPxdIbQnDwEmd1bbR6RiMeFyqTFE,837
|
|
@@ -399,7 +402,7 @@ django_cfg/apps/integrations/centrifugo/codegen/generators/typescript_thin/templ
|
|
|
399
402
|
django_cfg/apps/integrations/centrifugo/codegen/generators/typescript_thin/templates/client.ts.j2,sha256=j3ALZneCY9wyNtS6ewM-ply1Pfhf_s8SFvHTqtg9mAs,671
|
|
400
403
|
django_cfg/apps/integrations/centrifugo/codegen/generators/typescript_thin/templates/index.ts.j2,sha256=J6XA2HEyymEvp_IMNFkbZYPPV41rCbX-GiMGQpBhmNM,308
|
|
401
404
|
django_cfg/apps/integrations/centrifugo/codegen/generators/typescript_thin/templates/package.json.j2,sha256=Jr1F0mm5Uibe0VbKkDab31qBRdUVa_NWjiqKwjAPFcE,270
|
|
402
|
-
django_cfg/apps/integrations/centrifugo/codegen/generators/typescript_thin/templates/rpc-client.ts.j2,sha256=
|
|
405
|
+
django_cfg/apps/integrations/centrifugo/codegen/generators/typescript_thin/templates/rpc-client.ts.j2,sha256=iYAyM8bSqTjeV3n4BpCON67ZHypa6ojdYEj_i65jzsg,7537
|
|
403
406
|
django_cfg/apps/integrations/centrifugo/codegen/generators/typescript_thin/templates/tsconfig.json.j2,sha256=ZYl36VfTmd1gUHLFW-S6y0cSjQLj_6k7l_blG8R2q-g,310
|
|
404
407
|
django_cfg/apps/integrations/centrifugo/codegen/generators/typescript_thin/templates/types.ts.j2,sha256=z0zROcPyAfCAKQcYvyxP99zIm6IfV96ks2mgpN16HLI,125
|
|
405
408
|
django_cfg/apps/integrations/centrifugo/codegen/utils/__init__.py,sha256=OW5w9s63jlJ4_gJkIEP1kDlr3W0VyCsdip3LjDJcQo4,768
|
|
@@ -407,90 +410,121 @@ django_cfg/apps/integrations/centrifugo/codegen/utils/naming.py,sha256=wVTE4jt5b
|
|
|
407
410
|
django_cfg/apps/integrations/centrifugo/codegen/utils/type_converter.py,sha256=_9wPCfh75wNH9P69q_3wUQczKja7KUt5WUXP4U4TbNs,9980
|
|
408
411
|
django_cfg/apps/integrations/centrifugo/management/__init__.py,sha256=hf-1zyaiTAVlEv5mNhNT5F3-P9SM9WjRaf958BDta54,49
|
|
409
412
|
django_cfg/apps/integrations/centrifugo/management/commands/__init__.py,sha256=x2QTKlGYE1V9kiUiVhq3E0g9yTOhLR3ftCkw0jpo-mk,38
|
|
410
|
-
django_cfg/apps/integrations/centrifugo/management/commands/generate_centrifugo_clients.py,sha256=
|
|
413
|
+
django_cfg/apps/integrations/centrifugo/management/commands/generate_centrifugo_clients.py,sha256=tw6j1t3f__G9O3jNj9aHnStNf9-DlNoOyzC6orOw5d0,9724
|
|
411
414
|
django_cfg/apps/integrations/centrifugo/managers/__init__.py,sha256=JoWbUYhd5ikH1Lx2f-aGHspBxjknUZUbuMLCzlkNH-c,228
|
|
412
415
|
django_cfg/apps/integrations/centrifugo/managers/centrifugo_log.py,sha256=84nsM6DGJg4_OD8FYGvG0lAQm7OwPii4qwOkLTVhZi0,7777
|
|
413
416
|
django_cfg/apps/integrations/centrifugo/migrations/0001_initial.py,sha256=heL0VqUxX1-UubK24U3qE4QLKdN55LljNTcnLfzjhzo,6130
|
|
414
417
|
django_cfg/apps/integrations/centrifugo/migrations/__init__.py,sha256=DTK3Sbal03kPFHsmF1Ri6LKihhrcMlipmBgfXda4Z7o,31
|
|
415
418
|
django_cfg/apps/integrations/centrifugo/models/__init__.py,sha256=vav0ToNcSDcwwpJ-7_npM1oBSbhIHCE6bfQ3XJl1U_I,165
|
|
416
419
|
django_cfg/apps/integrations/centrifugo/models/centrifugo_log.py,sha256=VAUrfXZzPO7rR-6wbSySpKSnbMvCptOKlnTT2umF2KY,5656
|
|
417
|
-
django_cfg/apps/integrations/centrifugo/serializers/__init__.py,sha256=
|
|
420
|
+
django_cfg/apps/integrations/centrifugo/serializers/__init__.py,sha256=n68EeIZWsZCX3CNjQR4yEKlkEBBpHn46Etbr-Qqnt2w,1225
|
|
418
421
|
django_cfg/apps/integrations/centrifugo/serializers/admin_api.py,sha256=oKhMAes1GswpJnO9sXN7zPSyA1vtneeO8JYVO4dKodY,7769
|
|
419
422
|
django_cfg/apps/integrations/centrifugo/serializers/channels.py,sha256=_U1SnvQ1MTTJnioo0DMo4OnHnnDpyvaE39lziLPtJpI,1003
|
|
420
423
|
django_cfg/apps/integrations/centrifugo/serializers/health.py,sha256=2vmtHwSEedU91IhAvAcx-SJS2X5Ud-bJoU2FVRjFXBQ,493
|
|
421
|
-
django_cfg/apps/integrations/centrifugo/serializers/publishes.py,sha256=
|
|
424
|
+
django_cfg/apps/integrations/centrifugo/serializers/publishes.py,sha256=ZSDtj6BPH851KaiE1PhM0_sX-9Iv4F_kpoC9LZd0oEs,1408
|
|
422
425
|
django_cfg/apps/integrations/centrifugo/serializers/stats.py,sha256=OAoulxUY_8LhCyETN0AyxT1PjeRmqAYxR1KSSETjyG0,804
|
|
423
|
-
django_cfg/apps/integrations/centrifugo/services/__init__.py,sha256=
|
|
426
|
+
django_cfg/apps/integrations/centrifugo/services/__init__.py,sha256=q0Dzm_gIrKcCgCrRAPLxKY-n_FZUWHtrKMCgZ110ZVg,507
|
|
424
427
|
django_cfg/apps/integrations/centrifugo/services/config_helper.py,sha256=d2eT8AczcCRl-v2OqZUu0n-MvSt42GWJOD7tJTHKiSg,1583
|
|
425
428
|
django_cfg/apps/integrations/centrifugo/services/dashboard_notifier.py,sha256=uagZMbykw4GjX-mqlekCYjR6tgLMifWe2c9mwIjYrLU,4793
|
|
426
429
|
django_cfg/apps/integrations/centrifugo/services/logging.py,sha256=_pNm0zW0jqAy9zAlB4wtGnwy3bt3zmbClTswEKMyCqI,21840
|
|
427
|
-
django_cfg/apps/integrations/centrifugo/services/
|
|
430
|
+
django_cfg/apps/integrations/centrifugo/services/publisher.py,sha256=9p2vF03yJWZQOrMMpWFwmv29azsTIAI31it7ac37giU,11232
|
|
431
|
+
django_cfg/apps/integrations/centrifugo/services/token_generator.py,sha256=hjNKRg5neOYv1LytjrpOQBsBiBPx4wcPrbbglTJieh8,3375
|
|
432
|
+
django_cfg/apps/integrations/centrifugo/services/client/__init__.py,sha256=IH3RKQTnahybxlFp20X189A5MzWs-kxTnSSoN0Bt8pQ,1003
|
|
428
433
|
django_cfg/apps/integrations/centrifugo/services/client/client.py,sha256=8pyAKAzzHHWSk8R7u37VNbAcWSXLhEZLOVkADh22i84,18964
|
|
429
434
|
django_cfg/apps/integrations/centrifugo/services/client/config.py,sha256=p8Vz91XH-EHJucIGYHI6u20UuuJ0NQTjUDaxmzJ7RIc,6965
|
|
435
|
+
django_cfg/apps/integrations/centrifugo/services/client/direct_client.py,sha256=DfohtVwe2SNc51XF-X5G3bRI9nWEC1Z22Xe2uNCIiqw,8738
|
|
430
436
|
django_cfg/apps/integrations/centrifugo/services/client/exceptions.py,sha256=VsYExbk_H-qOaPa3iFUWBa1HMgw1IObil73JI1FhcDM,6263
|
|
431
|
-
django_cfg/apps/integrations/centrifugo/views/__init__.py,sha256=
|
|
437
|
+
django_cfg/apps/integrations/centrifugo/views/__init__.py,sha256=ieaKBQSQeOi57BS3CUJltoqLDeAIgcixkT9YzsGK9c4,370
|
|
432
438
|
django_cfg/apps/integrations/centrifugo/views/admin_api.py,sha256=ECD7W7v0o6cvo4OShZ0K5OgluNxKqReRcNn9aIZjcg4,13888
|
|
433
|
-
django_cfg/apps/integrations/centrifugo/views/monitoring.py,sha256=
|
|
434
|
-
django_cfg/apps/integrations/centrifugo/views/testing_api.py,sha256=
|
|
439
|
+
django_cfg/apps/integrations/centrifugo/views/monitoring.py,sha256=UM9tdgeFpcXYai3dYpf6lJT4jq8DkrT1OMjiuiTCjBE,13756
|
|
440
|
+
django_cfg/apps/integrations/centrifugo/views/testing_api.py,sha256=5GeIhdrTn26wa8xoV0_FcQJhDVhWsHb5AEP5YLz7MMY,14123
|
|
441
|
+
django_cfg/apps/integrations/centrifugo/views/token_api.py,sha256=j5_9DALkFzzOmiC_JTdIlppra67WzJq-E_OAzaxWeqQ,3499
|
|
442
|
+
django_cfg/apps/integrations/centrifugo/views/wrapper.py,sha256=GM2l0QNbw0mVpI9GdlhhKnVrooeEHa9VoCqMIpl9GNc,8426
|
|
435
443
|
django_cfg/apps/integrations/grpc/__init__.py,sha256=mzsALD2x44rGQNNh3mIUFi7flQj6PvS1wPq-0TeBz3c,235
|
|
436
444
|
django_cfg/apps/integrations/grpc/apps.py,sha256=RF605ivjVMIVbQKIWhGKoDkYfJR9hk3Ou-hCQbBDfzY,3148
|
|
437
|
-
django_cfg/apps/integrations/grpc/urls.py,sha256=
|
|
445
|
+
django_cfg/apps/integrations/grpc/urls.py,sha256=Hq1tpLQljoWifXIYudDDYytMeFO60m1FPE17gTAMlTg,1375
|
|
438
446
|
django_cfg/apps/integrations/grpc/_cfg/README_DEPENDENCIES.md,sha256=Em5-FwqR93DkLBaBlmIUHPclAGNoI9Mmqy3OH3UJMck,8000
|
|
439
447
|
django_cfg/apps/integrations/grpc/_cfg/__init__.py,sha256=fhwLooPnRaveNlA0oHIG5SxIAcIB5svdxoXJjvvrDMc,596
|
|
440
448
|
django_cfg/apps/integrations/grpc/_cfg/check_deps.py,sha256=h_nwCyrOz3_Bh6Ap9CKwFmvhETVNhbG981719LGFF4M,792
|
|
441
449
|
django_cfg/apps/integrations/grpc/_cfg/dependencies.py,sha256=NyTTRiglTzlez0h-K7oN31mXMQWpHi9PFpVu3CHbQRk,17418
|
|
442
|
-
django_cfg/apps/integrations/grpc/admin/__init__.py,sha256=
|
|
443
|
-
django_cfg/apps/integrations/grpc/admin/config.py,sha256=
|
|
444
|
-
django_cfg/apps/integrations/grpc/admin/
|
|
445
|
-
django_cfg/apps/integrations/grpc/
|
|
446
|
-
django_cfg/apps/integrations/grpc/
|
|
447
|
-
django_cfg/apps/integrations/grpc/
|
|
450
|
+
django_cfg/apps/integrations/grpc/admin/__init__.py,sha256=EkDbZwsHxaqtft1XBQMmwlD4kaYu70KUM5n03mDl32w,450
|
|
451
|
+
django_cfg/apps/integrations/grpc/admin/config.py,sha256=JU9pyhDn7IGuVzbesY-4GDmPYdCWIAzRQj8O0XYtxLM,6764
|
|
452
|
+
django_cfg/apps/integrations/grpc/admin/grpc_api_key.py,sha256=a3PLso6XqkqAws-o3E_Cj90MpLw7hNC4L_hDzkihu50,3773
|
|
453
|
+
django_cfg/apps/integrations/grpc/admin/grpc_request_log.py,sha256=aBQscXcBjWhYq_2WKrxTnRdjBmy-qAXNcJkrcoIPc_0,9314
|
|
454
|
+
django_cfg/apps/integrations/grpc/admin/grpc_server_status.py,sha256=aGEmCFk-WFDci4myzvIlkT88-Tr-UOcAe8QeWUH-1_E,8123
|
|
455
|
+
django_cfg/apps/integrations/grpc/auth/__init__.py,sha256=A2CloEosP2mSte9j80PrtGdYG723Eerg6sHim2YTOCE,312
|
|
456
|
+
django_cfg/apps/integrations/grpc/auth/api_key_auth.py,sha256=asrG7CDo1MKOXtBxCt-ZRsbLq-GeMsLr3gDXvXPxtKU,12193
|
|
457
|
+
django_cfg/apps/integrations/grpc/centrifugo/__init__.py,sha256=7jWO3EmYbL5vNnqkP1o4qeBKYicfz9Heu_hx5ChDAPY,620
|
|
458
|
+
django_cfg/apps/integrations/grpc/centrifugo/bridge.py,sha256=_XobJgUSQW90V2o4czQgJEJXUyFC3-7HqEYgqAq6iOA,9363
|
|
459
|
+
django_cfg/apps/integrations/grpc/centrifugo/config.py,sha256=a7bvTw3HjyYp1Lfqw5qmZlq6LNDzNEgDqCRTNIVSxxU,4791
|
|
460
|
+
django_cfg/apps/integrations/grpc/centrifugo/demo.py,sha256=qlxp8NfVmpxRkGWg5l3FRRFJrtIWbJVdWtW_wYcSiZQ,19338
|
|
461
|
+
django_cfg/apps/integrations/grpc/centrifugo/test_publish.py,sha256=Vv4V78VnREm-g6S_mpSMutsdeND3EcEt0iJUT8hbj8U,6899
|
|
462
|
+
django_cfg/apps/integrations/grpc/centrifugo/transformers.py,sha256=KBK4UZNpdsZl7TL1wGm8KOTa4sU-0qUmF2JT6UJw80k,2259
|
|
463
|
+
django_cfg/apps/integrations/grpc/interceptors/__init__.py,sha256=Gp2cQ7PZ3VbpulsU-vB1VwF67DFY5JIURuZoRSopOoM,603
|
|
464
|
+
django_cfg/apps/integrations/grpc/interceptors/centrifugo.py,sha256=xhIH6JC6gwudPUfQrUX4MDz2mdUp9SYT455AvBGQ_3Q,19880
|
|
448
465
|
django_cfg/apps/integrations/grpc/interceptors/errors.py,sha256=rbhUhD_gwKESiGqFDsGR9bQ-x3zJdM0FxZ2ytb-rK_E,7968
|
|
449
|
-
django_cfg/apps/integrations/grpc/interceptors/logging.py,sha256=
|
|
450
|
-
django_cfg/apps/integrations/grpc/interceptors/metrics.py,sha256=
|
|
451
|
-
django_cfg/apps/integrations/grpc/interceptors/request_logger.py,sha256=
|
|
466
|
+
django_cfg/apps/integrations/grpc/interceptors/logging.py,sha256=qhp9a6cNFKulFWevJV1cEie0b1Sa9_9aGUkYqHhhOAs,9468
|
|
467
|
+
django_cfg/apps/integrations/grpc/interceptors/metrics.py,sha256=dLTAvSeWEcCgdqlaxRO_L00k7ICwoVcZLh8U5eAXtMs,10009
|
|
468
|
+
django_cfg/apps/integrations/grpc/interceptors/request_logger.py,sha256=LMZrJbKqIijdrcCE2jGeMZz-JXossX3XOb8jK78xVfE,18009
|
|
452
469
|
django_cfg/apps/integrations/grpc/management/__init__.py,sha256=qeaIQO1EY_-VkrUFRigi-UGbrHmN6U_0ZetCQkjDGvk,40
|
|
453
470
|
django_cfg/apps/integrations/grpc/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
454
|
-
django_cfg/apps/integrations/grpc/management/commands/
|
|
455
|
-
django_cfg/apps/integrations/grpc/
|
|
471
|
+
django_cfg/apps/integrations/grpc/management/commands/compile_proto.py,sha256=5978_OnFOz6j1m_XG1amlZ3U2dVw3w3395I5ktx2mIA,3440
|
|
472
|
+
django_cfg/apps/integrations/grpc/management/commands/generate_protos.py,sha256=e1xqimCeC2Lj_sJWMBP286ZRtKI8kYKjFZm8-HPM6gY,6607
|
|
473
|
+
django_cfg/apps/integrations/grpc/management/commands/rungrpc.py,sha256=YqAUyvxwpahlVElGOhCUtfKJlmUmSNVSV5jSFR7_dO0,31365
|
|
474
|
+
django_cfg/apps/integrations/grpc/management/commands/test_grpc_integration.py,sha256=lyKkjIUVNSmMgQdmd9Ko82hp3CZQgdVDCGU1NSxxvd8,2146
|
|
475
|
+
django_cfg/apps/integrations/grpc/management/proto/__init__.py,sha256=2esCFQpr2J0ERGvQaHsR-LOElHV1iXT1AK9McWlJ9g0,57
|
|
476
|
+
django_cfg/apps/integrations/grpc/management/proto/compiler.py,sha256=9qcIcPUeXqpJ-U0WdHYArCH0l0it_9nLNWt0GfK2E4E,5827
|
|
477
|
+
django_cfg/apps/integrations/grpc/managers/__init__.py,sha256=esYhaeeiC83NKQPbWW__RQ20NGMMg-ReyNtlXV4LH6Y,345
|
|
478
|
+
django_cfg/apps/integrations/grpc/managers/grpc_api_key.py,sha256=hu0zL2YS4fVKtTurj0zZ8X4MUVBSc4AirnA79mkdFR4,4851
|
|
456
479
|
django_cfg/apps/integrations/grpc/managers/grpc_request_log.py,sha256=QvRgXmPkSkJKdOOguiPIhwWzmXKx7gF30MfR52rVDfQ,9315
|
|
457
|
-
django_cfg/apps/integrations/grpc/managers/grpc_server_status.py,sha256=
|
|
480
|
+
django_cfg/apps/integrations/grpc/managers/grpc_server_status.py,sha256=9CPpVgUpC2Qes6DqWwDSI0XukfKWZX8Xri_72qK4M4c,8500
|
|
458
481
|
django_cfg/apps/integrations/grpc/migrations/0001_initial.py,sha256=Wa-uP4JualP-Qrz37HUTzZnRtU_Urz-JWH7F9oT1yzY,4562
|
|
459
482
|
django_cfg/apps/integrations/grpc/migrations/0002_rename_django_cfg__service_4c4a8e_idx_django_cfg__service_584308_idx_and_more.py,sha256=88Ox17gYjdhYEymiKbt8F8-clVoad56gm7xSaJCtNvQ,1179
|
|
460
483
|
django_cfg/apps/integrations/grpc/migrations/0003_grpcserverstatus.py,sha256=CvTxgc9CJEvjTZfl8HfHMHukGJjNx2w2K7Lle1lbqTc,4613
|
|
461
484
|
django_cfg/apps/integrations/grpc/migrations/0004_grpcserverstatus_registered_services.py,sha256=ehJp4kok7GHKEmpylPIJKOcPzawOgiCw7D-WsUAyVso,547
|
|
485
|
+
django_cfg/apps/integrations/grpc/migrations/0005_grpcapikey.py,sha256=aZSYBPtuxkTiPXtaxrPrkKr43QrrAiR_NjkrwX1eNko,5433
|
|
486
|
+
django_cfg/apps/integrations/grpc/migrations/0006_grpcrequestlog_api_key_and_more.py,sha256=z8BaLFRmmzmKdrhjAp6E6xlR_njnMPRZWTjV_UqrTF8,1010
|
|
462
487
|
django_cfg/apps/integrations/grpc/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
463
|
-
django_cfg/apps/integrations/grpc/models/__init__.py,sha256=
|
|
464
|
-
django_cfg/apps/integrations/grpc/models/
|
|
465
|
-
django_cfg/apps/integrations/grpc/models/
|
|
466
|
-
django_cfg/apps/integrations/grpc/
|
|
467
|
-
django_cfg/apps/integrations/grpc/serializers/
|
|
468
|
-
django_cfg/apps/integrations/grpc/serializers/
|
|
469
|
-
django_cfg/apps/integrations/grpc/serializers/
|
|
470
|
-
django_cfg/apps/integrations/grpc/serializers/
|
|
471
|
-
django_cfg/apps/integrations/grpc/serializers/
|
|
472
|
-
django_cfg/apps/integrations/grpc/serializers/
|
|
473
|
-
django_cfg/apps/integrations/grpc/serializers/
|
|
474
|
-
django_cfg/apps/integrations/grpc/serializers/
|
|
475
|
-
django_cfg/apps/integrations/grpc/services
|
|
488
|
+
django_cfg/apps/integrations/grpc/models/__init__.py,sha256=a-1vjS6L-stjNTDUn8OUw3m3jxQCsbxoixdrCiPc_tk,240
|
|
489
|
+
django_cfg/apps/integrations/grpc/models/grpc_api_key.py,sha256=gZ4shrRNOfzkBsCPupUQk3kyoy0bRrj8Hf3T5hZ-BCw,5454
|
|
490
|
+
django_cfg/apps/integrations/grpc/models/grpc_request_log.py,sha256=CggWp4FwpJ4AyRFUhLhYTd1DTVMMtyIAeGhr0hqWSRg,6080
|
|
491
|
+
django_cfg/apps/integrations/grpc/models/grpc_server_status.py,sha256=FQ9J8RPBZajFKGAu6F3mTHdKaSw4s2S-gMs9AJVRQJo,8897
|
|
492
|
+
django_cfg/apps/integrations/grpc/serializers/__init__.py,sha256=phrJr74amte_2AKMgMsMdSLhQu_xE8V-FSUIOp_qiF8,2244
|
|
493
|
+
django_cfg/apps/integrations/grpc/serializers/api_keys.py,sha256=pnr2iR-mQJeo-Y-r59EYHyX-rFHeIDb0lUFfpyIgl7c,2356
|
|
494
|
+
django_cfg/apps/integrations/grpc/serializers/charts.py,sha256=N4Uojw6FOo9W5sl6RsrGhD3s7YsQF1Aav5YJHb1OJ04,8965
|
|
495
|
+
django_cfg/apps/integrations/grpc/serializers/config.py,sha256=lHKDawR0W9aAQwaRdIKiXmXvmg6wNTYIWor3zgvFTAA,4481
|
|
496
|
+
django_cfg/apps/integrations/grpc/serializers/health.py,sha256=K0_gfFuMrNhLGB_t5f_FVcBH2sbdtttz_xS_c8gi1_s,631
|
|
497
|
+
django_cfg/apps/integrations/grpc/serializers/proto_files.py,sha256=VUBnDHZrxTNqOWPPrr17Z1daZu1uUKroYYUPydAz27Y,2204
|
|
498
|
+
django_cfg/apps/integrations/grpc/serializers/requests.py,sha256=Uyv30_sqlh56CDocQ0K_hRIE19AqyENejj00_Tfvnho,736
|
|
499
|
+
django_cfg/apps/integrations/grpc/serializers/service_registry.py,sha256=9HusXFlxm6c6qPOWHIxldFD7YA5iwOfpx8olXtz3vEs,10091
|
|
500
|
+
django_cfg/apps/integrations/grpc/serializers/services.py,sha256=CY8SQ5cLSEPK9nvHS4EZ4silBAIyADpxQZgJArr4I-0,1059
|
|
501
|
+
django_cfg/apps/integrations/grpc/serializers/stats.py,sha256=PquPBqE0E7uImbUqLSGYCRT1r3cJmgrTl1_cdhli-R8,3252
|
|
502
|
+
django_cfg/apps/integrations/grpc/serializers/testing.py,sha256=MjZ_6UyxNH6A7pepp7hXnaH-amKorKhCWZvdFjbqswA,4293
|
|
503
|
+
django_cfg/apps/integrations/grpc/services/__init__.py,sha256=gpPmiXikBUrd3txE9CyLD2964f-MHSqpGdxZu7DHOLA,1151
|
|
476
504
|
django_cfg/apps/integrations/grpc/services/base.py,sha256=ieN4GiAzEDgQVc7sHsxgTy7-QQKnDNo2rFBedhc1ySE,11148
|
|
477
505
|
django_cfg/apps/integrations/grpc/services/chart_generator.py,sha256=3iE05iBql06Iuv6VnJ8zJ4v8EArnV0Z48DMTQ2DPOIM,14921
|
|
478
506
|
django_cfg/apps/integrations/grpc/services/config_helper.py,sha256=234QZ8CTNkYkmRFbL_4pyawQR0IQO5n0vTlSI2Ecigg,3480
|
|
479
|
-
django_cfg/apps/integrations/grpc/services/discovery.py,sha256=
|
|
507
|
+
django_cfg/apps/integrations/grpc/services/discovery.py,sha256=XbYuJvgSB13w2Ptg8JLBqH3IWCbaO8qfEw2XeRkrNJo,19972
|
|
480
508
|
django_cfg/apps/integrations/grpc/services/grpc_client.py,sha256=FArKYlT1EZowyZyI7hbLDmzt6iTVGYPiHXvxwe8mS-A,21996
|
|
481
|
-
django_cfg/apps/integrations/grpc/services/monitoring_service.py,sha256=
|
|
482
|
-
django_cfg/apps/integrations/grpc/services/
|
|
483
|
-
django_cfg/apps/integrations/grpc/services/
|
|
509
|
+
django_cfg/apps/integrations/grpc/services/monitoring_service.py,sha256=UgP5xFbkzDkoMNl4G2NmVFzeRcjlPNTiP0PK5bLkMi8,13244
|
|
510
|
+
django_cfg/apps/integrations/grpc/services/proto_files_manager.py,sha256=_jDm4lFzC5KIa_cGTdktMDvHfLU9BoaeCa5jd7eH6W0,8995
|
|
511
|
+
django_cfg/apps/integrations/grpc/services/service_registry.py,sha256=3Ezc54qdI7XQ-7nAkGB6PPPPU7ANacb_dBV9AC_DjJI,10717
|
|
512
|
+
django_cfg/apps/integrations/grpc/services/testing_service.py,sha256=8wWqeFS1Vr9hCPQ6js96DzZAeuRSaljX32sP2pD6c78,10469
|
|
484
513
|
django_cfg/apps/integrations/grpc/testing/__init__.py,sha256=jCDnG47GrMAHTPMEIoQhRI0w-i6_91K8dxSIN-Amq8k,223
|
|
485
514
|
django_cfg/apps/integrations/grpc/testing/examples.py,sha256=MZU8-wVdBRqhHpvCgbvVwmiQaJuXpCPcqTOivD-Jtt0,8588
|
|
486
|
-
django_cfg/apps/integrations/grpc/utils/
|
|
487
|
-
django_cfg/apps/integrations/grpc/utils/
|
|
488
|
-
django_cfg/apps/integrations/grpc/
|
|
489
|
-
django_cfg/apps/integrations/grpc/
|
|
490
|
-
django_cfg/apps/integrations/grpc/
|
|
491
|
-
django_cfg/apps/integrations/grpc/views/
|
|
492
|
-
django_cfg/apps/integrations/grpc/views/
|
|
493
|
-
django_cfg/apps/integrations/grpc/views/
|
|
515
|
+
django_cfg/apps/integrations/grpc/utils/SERVER_LOGGING.md,sha256=0_02dkCeizx7jBhQmY-OGuZcmCai03fxMkFGhEDi-ww,5332
|
|
516
|
+
django_cfg/apps/integrations/grpc/utils/__init__.py,sha256=9uzkCPLhRlspjId47V6avfUZF37PcjuCPW2yImGxYAo,231
|
|
517
|
+
django_cfg/apps/integrations/grpc/utils/integration_test.py,sha256=K0FlPBYuAdsTRp01q0kFjd1t2g9Q0wttkgoLUhu2uXE,12286
|
|
518
|
+
django_cfg/apps/integrations/grpc/utils/proto_gen.py,sha256=BQ2SHULZ8HzIgC0SFBHsEFfD_0SLjIv1Wx3ntan1eXQ,14042
|
|
519
|
+
django_cfg/apps/integrations/grpc/utils/streaming_logger.py,sha256=ycugmWy78WccrEpMQWyJ5-uJcxWh5m9jS2y_hykxQew,11922
|
|
520
|
+
django_cfg/apps/integrations/grpc/views/__init__.py,sha256=vgdi6lFXcVEwk-TnuVGMy_KXGkFKhqBVpVFBZcOdNvg,461
|
|
521
|
+
django_cfg/apps/integrations/grpc/views/api_keys.py,sha256=7XtpIY9DByXqrxeAvh2Uqk7Nvp1NJuBgMQFFpJVzMeg,9296
|
|
522
|
+
django_cfg/apps/integrations/grpc/views/charts.py,sha256=6h8Rqv1ERzNXyuAEoXruqGPzrVEX0Ouk_uRG9YbVlyg,9136
|
|
523
|
+
django_cfg/apps/integrations/grpc/views/config.py,sha256=zp76VMSr3YI-F6DPewucEbQDP8U8rwdClMBVn0he1zk,7288
|
|
524
|
+
django_cfg/apps/integrations/grpc/views/monitoring.py,sha256=VC2IcWMMgESpiYqbFmxbKLS_3EWLEtyq2Ktd-lrph28,13512
|
|
525
|
+
django_cfg/apps/integrations/grpc/views/proto_files.py,sha256=s0c5wlk7Zv0B7CGNtrLjm062eVoHrCOfeNhDvZFpczg,7521
|
|
526
|
+
django_cfg/apps/integrations/grpc/views/services.py,sha256=eSVUSl4XVcxpfK8TwJaI6zXlkrWMMjtEQZfemK0Mi4Q,10775
|
|
527
|
+
django_cfg/apps/integrations/grpc/views/testing.py,sha256=UvfisN10UhgEUVlAh4e0_A8Es3-HbHkEgONX5SyIKJk,11200
|
|
494
528
|
django_cfg/apps/integrations/rq/__init__.py,sha256=o4Ag_uGgQgb9vnIKSErDZ6bhMgQqOhhvgJZgbI2NxFw,215
|
|
495
529
|
django_cfg/apps/integrations/rq/apps.py,sha256=VlOBPCMoQN-Lih3DDPNaFENAHoA41KRik8_vgyYrSqk,4929
|
|
496
530
|
django_cfg/apps/integrations/rq/urls.py,sha256=yMYiW-Du_wOCy4l8L7YujcnMl6xHnBpCE5mG4rzi-Zc,1616
|
|
@@ -521,10 +555,10 @@ django_cfg/apps/integrations/rq/services/models/worker.py,sha256=EDZQVRScRgwJveC
|
|
|
521
555
|
django_cfg/apps/integrations/rq/tasks/__init__.py,sha256=sCPVlradQ2PJYis17AWRudvlaFfF9xu37ahXniPL-v8,449
|
|
522
556
|
django_cfg/apps/integrations/rq/tasks/demo_tasks.py,sha256=xpM6P70iwJ169EbeIXEhdPstaMwG-sKYChpyJpJz9fQ,7278
|
|
523
557
|
django_cfg/apps/integrations/rq/views/__init__.py,sha256=Af4Zbr_Uc7cNkRPWZbk6EBrYmnO7dazHlSHMq76nl0s,415
|
|
524
|
-
django_cfg/apps/integrations/rq/views/jobs.py,sha256=
|
|
558
|
+
django_cfg/apps/integrations/rq/views/jobs.py,sha256=YWQXQpgr8zRNUzq3Xg0NasICHEn4F1DyQAFOyreoPgU,33469
|
|
525
559
|
django_cfg/apps/integrations/rq/views/monitoring.py,sha256=ZuVc-0NAiePSOKD-a6UDT5AsxRlYE0eqQQ8pFMkYpjA,9270
|
|
526
560
|
django_cfg/apps/integrations/rq/views/queues.py,sha256=vXk0CdS3kXVgKPLQPLRfJuDf1glVrB5PJNEzTTllmAA,9111
|
|
527
|
-
django_cfg/apps/integrations/rq/views/schedule.py,sha256=
|
|
561
|
+
django_cfg/apps/integrations/rq/views/schedule.py,sha256=BT7MviBcEY_WWqRwUI86NehZtyOd7cbu5kKyCGxkNR8,15440
|
|
528
562
|
django_cfg/apps/integrations/rq/views/testing.py,sha256=_8ZlhHh-cKGXXrD9Bj0znZ7mUG4GdNMMVYH-pVYLbcA,29520
|
|
529
563
|
django_cfg/apps/integrations/rq/views/workers.py,sha256=3Ej6fG9o_pDqp_g4v4Hlbc7KHb_C2TTP4-LJW1t4ADs,7076
|
|
530
564
|
django_cfg/apps/system/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -537,16 +571,16 @@ django_cfg/apps/system/dashboard/serializers/activity.py,sha256=tl5P9b2GNqhW-Df5
|
|
|
537
571
|
django_cfg/apps/system/dashboard/serializers/apizones.py,sha256=eeluzYPtrSXskpfFY2ykw3yM71BCr5_XoAomcU-zNqE,773
|
|
538
572
|
django_cfg/apps/system/dashboard/serializers/base.py,sha256=-PRmxV3eApf-JfFVjgiL8ka0b07m69crkIECX-EK4IY,526
|
|
539
573
|
django_cfg/apps/system/dashboard/serializers/charts.py,sha256=EPgIcQ2jPLp2-5IbVWyhP86p_puPU0TMxitFR3yPfDE,1425
|
|
540
|
-
django_cfg/apps/system/dashboard/serializers/commands.py,sha256=
|
|
541
|
-
django_cfg/apps/system/dashboard/serializers/config.py,sha256=
|
|
574
|
+
django_cfg/apps/system/dashboard/serializers/commands.py,sha256=TOLaoAu_mW2kg0cdcFK07Ax5opgqndA3Lolm-ETVfYk,2691
|
|
575
|
+
django_cfg/apps/system/dashboard/serializers/config.py,sha256=g_YzMwkQK9KVgj0lguU1JhmOb5Ph0Knm1MiAHLDZw_s,17292
|
|
542
576
|
django_cfg/apps/system/dashboard/serializers/overview.py,sha256=ejFZV2l2GOTHLA8XQty8SayyXM-cL3VM2veY7YoMeWE,1373
|
|
543
|
-
django_cfg/apps/system/dashboard/serializers/statistics.py,sha256=
|
|
577
|
+
django_cfg/apps/system/dashboard/serializers/statistics.py,sha256=WN4AvYYdVcbSglZ5O37evgDHKTAPemtsykq8YHtSR2A,1951
|
|
544
578
|
django_cfg/apps/system/dashboard/serializers/system.py,sha256=mDwqPVS2iBfyCcs4BcnT2_kZWRnbWCtLvoTievc7qkU,2093
|
|
545
579
|
django_cfg/apps/system/dashboard/services/__init__.py,sha256=xvyIGqIfSANF_bgsOG2bHeHgTruqy4OD83XDYsL1l7s,680
|
|
546
580
|
django_cfg/apps/system/dashboard/services/apizones_service.py,sha256=FVpdMgBzjTzK3G5zZb2ADKL8ZrjEmdclCRNOr4AdIGI,3955
|
|
547
581
|
django_cfg/apps/system/dashboard/services/charts_service.py,sha256=4FdhlHWFKFEbMaQslVzKAVdHfwtfFxwQL2-QykYSASQ,8906
|
|
548
582
|
django_cfg/apps/system/dashboard/services/commands_security.py,sha256=kFADVoYNbqb2DwzFfFBZ3Th2TdfL-1z2V-dnNXHU5Fw,7893
|
|
549
|
-
django_cfg/apps/system/dashboard/services/commands_service.py,sha256=
|
|
583
|
+
django_cfg/apps/system/dashboard/services/commands_service.py,sha256=nOJP-FQhs2LpJx_QUmBts0GyTCQcWMQuAzbYOlCLWig,12280
|
|
550
584
|
django_cfg/apps/system/dashboard/services/config_service.py,sha256=jVdOsm0xwk56At2mLfaOkOsx6F3CpK4lnns0hi821jQ,15767
|
|
551
585
|
django_cfg/apps/system/dashboard/services/overview_service.py,sha256=Dl_y89_waG9onDC9PHGWx0ci7m3NOdrMoEKSdv3Fves,6382
|
|
552
586
|
django_cfg/apps/system/dashboard/services/statistics_service.py,sha256=DtW1v24pf7omjHWbD2fVyoD9ZxMln62g5ahYa6C8Ivk,14427
|
|
@@ -566,7 +600,7 @@ django_cfg/apps/system/frontend/apps.py,sha256=kHd4VZ084DtSp97rTVhOpA7yrOfyzsgeY
|
|
|
566
600
|
django_cfg/apps/system/frontend/setup.py,sha256=t82gvlt6d_Yz_xVCXP_68He93HWwpVYcbq7CI42XbQU,2479
|
|
567
601
|
django_cfg/apps/system/frontend/test_routing.py,sha256=fshJOR9ln7m3gXY9EI1_ix_6E5xua6DR264b16RIF-w,4832
|
|
568
602
|
django_cfg/apps/system/frontend/urls.py,sha256=Vz22_2i2w1J0KQYDCxHnTF5rUf32kUUSBDJZrP07XgY,284
|
|
569
|
-
django_cfg/apps/system/frontend/views.py,sha256=
|
|
603
|
+
django_cfg/apps/system/frontend/views.py,sha256=TC82nIlc6K7hzTIg0qBFNHgZCRqhnEbZKmTbMsfAqbs,19285
|
|
570
604
|
django_cfg/apps/system/frontend/templates/frontend/404.html,sha256=LCFig_dcgDDmYKhgOLu8R2KDs_aQS6Es6rAxLTAEXWs,2175
|
|
571
605
|
django_cfg/apps/system/maintenance/__init__.py,sha256=VC_hs2Cs11CjRIQL2vvY341eVybOR72WuxxYNztimVQ,3017
|
|
572
606
|
django_cfg/apps/system/maintenance/apps.py,sha256=BgXSVyV1JEXB_ds-kh_S4JFF7lYc5NN6h7Ow-k1MBjw,454
|
|
@@ -580,9 +614,9 @@ django_cfg/apps/system/maintenance/admin/scheduled_admin.py,sha256=jK_EO_HcJ0eN4
|
|
|
580
614
|
django_cfg/apps/system/maintenance/admin/site_admin.py,sha256=bq064rTAdS5gPw__8QNYnhrYqQogw2Ty285Jp3AiVss,8315
|
|
581
615
|
django_cfg/apps/system/maintenance/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
582
616
|
django_cfg/apps/system/maintenance/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
583
|
-
django_cfg/apps/system/maintenance/management/commands/maintenance.py,sha256=
|
|
584
|
-
django_cfg/apps/system/maintenance/management/commands/process_scheduled_maintenance.py,sha256=
|
|
585
|
-
django_cfg/apps/system/maintenance/management/commands/sync_cloudflare.py,sha256=
|
|
617
|
+
django_cfg/apps/system/maintenance/management/commands/maintenance.py,sha256=ta1Wh2ZuKTHUnyAvBoiVC5TOhxXpqHabIxECIbpVLXQ,11095
|
|
618
|
+
django_cfg/apps/system/maintenance/management/commands/process_scheduled_maintenance.py,sha256=b5iNkyF7qUfRofO64LNVGNGdZmfW0R1gN6LNwWeASyI,10028
|
|
619
|
+
django_cfg/apps/system/maintenance/management/commands/sync_cloudflare.py,sha256=Kasmw-yKpQu-G-qdgi4U9Nvr2TJAOaXsigwCkxc7qoM,7647
|
|
586
620
|
django_cfg/apps/system/maintenance/managers/__init__.py,sha256=2RmCd9KZUwzRbzgTAEIA6CZ430yCca-4-z9k7IgOVkY,396
|
|
587
621
|
django_cfg/apps/system/maintenance/managers/cloudflare_site_manager.py,sha256=fgd2Snu3b1fFrEjNkuTxFU9zpfRHExvYCMgINsTkG9Q,6015
|
|
588
622
|
django_cfg/apps/system/maintenance/managers/maintenance_log_manager.py,sha256=9v2EynERd9bH3HpKNWGQbMPEoYYB2gbeHmNn_is2elU,4613
|
|
@@ -621,7 +655,7 @@ django_cfg/core/base/config_model.py,sha256=HZGKMg78bYk7nw6pW_rzIUW-TqaE6e0zRJIQ
|
|
|
621
655
|
django_cfg/core/builders/__init__.py,sha256=jkInI7_jbxcjitapohw6QmbJPpacnnID6V1JovqtOFM,282
|
|
622
656
|
django_cfg/core/builders/apps_builder.py,sha256=E1WSZRmP2sVYfZg_2UitZi6jrd3wd8Cdr8ikgPufa8k,6775
|
|
623
657
|
django_cfg/core/builders/middleware_builder.py,sha256=OwqQRoJKYWlXsQNPFBfUvVMYdppUHCPw-UDczV_esYg,3101
|
|
624
|
-
django_cfg/core/builders/security_builder.py,sha256=
|
|
658
|
+
django_cfg/core/builders/security_builder.py,sha256=cE3V7irdRkMdaUaSxf24RgyG9Wx_ihauBLa72TQ87_8,24004
|
|
625
659
|
django_cfg/core/debug/README.md,sha256=zdASNAvWr1nOijngul2AY6nAPYxBjanYIXveLHmX5bA,2968
|
|
626
660
|
django_cfg/core/debug/__init__.py,sha256=Y3660Ouzcg9sCYotqtnpcY1XaBb-u8oa5ga_TfRevi4,127
|
|
627
661
|
django_cfg/core/debug/example_config.py,sha256=KSi-Ggy2HYAmXG2UssFoJv_2ctWPeDbK6w3lxMPA6oc,1758
|
|
@@ -640,9 +674,9 @@ django_cfg/core/generation/data_generators/__init__.py,sha256=O7cmt_k34hWRgrdaAz
|
|
|
640
674
|
django_cfg/core/generation/data_generators/cache.py,sha256=UvBmkmiUMPTaA5PDuOdMH1RgpvUz7xvX7jlWe4GUCsg,4920
|
|
641
675
|
django_cfg/core/generation/data_generators/database.py,sha256=mYR2mBvqWU93YP9XUUVlcZaQJtSNeAQ7Dk4Vj6Tu95k,3481
|
|
642
676
|
django_cfg/core/generation/integration_generators/__init__.py,sha256=fN412Ytj-TY41tlwshvWOQNonvMlv9m3aN3tBgnRI3Q,638
|
|
643
|
-
django_cfg/core/generation/integration_generators/api.py,sha256=
|
|
677
|
+
django_cfg/core/generation/integration_generators/api.py,sha256=EjlPABazCh7qNRAMYpMAqJlr2pJMEPM2SCRD2gnz_Dw,11206
|
|
644
678
|
django_cfg/core/generation/integration_generators/django_rq.py,sha256=WqmEzGHhZtn2a5E4xg063TyCunb67_CoLQS1KSLQUYc,2367
|
|
645
|
-
django_cfg/core/generation/integration_generators/grpc_generator.py,sha256=
|
|
679
|
+
django_cfg/core/generation/integration_generators/grpc_generator.py,sha256=IIXQV6qTpp6KkbHsnLQ-OqwWzaBStHCvWudslg3GIp8,10589
|
|
646
680
|
django_cfg/core/generation/integration_generators/sessions.py,sha256=GbRC72Gny4dzj7oTIrbuhYyvhCQBoWI-0GxB8ZHTrEU,1644
|
|
647
681
|
django_cfg/core/generation/integration_generators/tailwind.py,sha256=YgiV5c-l0DDJnMKx6mWcUtH5zyMdewAJXjLDwmHrSuc,1208
|
|
648
682
|
django_cfg/core/generation/integration_generators/third_party.py,sha256=ef3sdpfDIf6B_dRuRjoIYc9rlqMYoKgTH4luFvjy9UM,3971
|
|
@@ -677,29 +711,32 @@ django_cfg/core/utils/__init__.py,sha256=_570HJFQrt60fSx4_0FlnAIKD2DLFe_uZJORq6S
|
|
|
677
711
|
django_cfg/core/utils/url_helpers.py,sha256=Of8z5YXygu5UB52TPwSlEfpe3d3YBmZmWUXsLyo3FVg,2143
|
|
678
712
|
django_cfg/management/__init__.py,sha256=NrLAhiS59hqjy-bipOC1abNuRiNm5BpKXmjN05VzKbM,28
|
|
679
713
|
django_cfg/management/commands/__init__.py,sha256=GqJDbjiwRa9Y9uvf695EZ-Y42vQIMHp5YkjhMoeAM9I,417
|
|
680
|
-
django_cfg/management/commands/check_endpoints.py,sha256=
|
|
681
|
-
django_cfg/management/commands/check_settings.py,sha256=
|
|
682
|
-
django_cfg/management/commands/clear_constance.py,sha256=
|
|
683
|
-
django_cfg/management/commands/create_token.py,sha256=
|
|
714
|
+
django_cfg/management/commands/check_endpoints.py,sha256=qhzyaSSlcxGugNiv3WC-hWuIvfBESim_Yda1NJG1SnA,6292
|
|
715
|
+
django_cfg/management/commands/check_settings.py,sha256=ulMoc-OGvKkYbf0HL8ifAtDEe-6altPHAhVLcid069o,15154
|
|
716
|
+
django_cfg/management/commands/clear_constance.py,sha256=joYu6LXf1k19zYbjxuooTPaxtgsDrtcBTriXqvRLQ4g,7823
|
|
717
|
+
django_cfg/management/commands/create_token.py,sha256=OO4q03oDhqoV6BCXbHGCOXsawF1utS2QrCwh9uhdTFw,11534
|
|
684
718
|
django_cfg/management/commands/generate_clients.py,sha256=Ziyo1i9QGFVULPHf1iosp8LX3QCPpz7I6tprK9WOPbw,699
|
|
685
|
-
django_cfg/management/commands/list_urls.py,sha256=
|
|
686
|
-
django_cfg/management/commands/migrate_all.py,sha256=
|
|
687
|
-
django_cfg/management/commands/migrator.py,sha256
|
|
719
|
+
django_cfg/management/commands/list_urls.py,sha256=8omYzdie8p_8kP9oWS22AjXt6BGSezJGxUdX92mNtYc,10737
|
|
720
|
+
django_cfg/management/commands/migrate_all.py,sha256=Rp9uUMcThQEVSthsrEaVjiH_STGBx90BaApNwK4SDbs,5617
|
|
721
|
+
django_cfg/management/commands/migrator.py,sha256=6EchuTCtSPa1uOmZoqIi80JHKnYOclSNqw-Aas6UYd8,16226
|
|
688
722
|
django_cfg/management/commands/runserver_ngrok.py,sha256=FEkYBkAssUNp9JPbJl6yCxaiM3xuFt12XMV8fA36Pnc,591
|
|
689
|
-
django_cfg/management/commands/script.py,sha256=
|
|
690
|
-
django_cfg/management/commands/show_config.py,sha256=
|
|
691
|
-
django_cfg/management/commands/show_urls.py,sha256=
|
|
692
|
-
django_cfg/management/commands/superuser.py,sha256=
|
|
723
|
+
django_cfg/management/commands/script.py,sha256=2pO4zbUz0QBF8HMPPrajRiFTPM-WY-MZbGIPYdqstEM,16898
|
|
724
|
+
django_cfg/management/commands/show_config.py,sha256=RPFlTX2GH_8C2ssIvFCaQ-xJrtf8DD43jKX0lg1lGf4,8604
|
|
725
|
+
django_cfg/management/commands/show_urls.py,sha256=s9p2HCn76RlghabspL9SgGceWXU6E4d35bb_UOpAqxk,12480
|
|
726
|
+
django_cfg/management/commands/superuser.py,sha256=EjtdgzYF853YanEL2bz-Vi0ju-aPGaNMhD7AnAaAnfE,9393
|
|
693
727
|
django_cfg/management/commands/test_email.py,sha256=FpABZAMKuWACkYpQbBWrEXhzkp0ToOlVUDbF47vYnp0,611
|
|
694
728
|
django_cfg/management/commands/test_telegram.py,sha256=aLnGM4oArXhQekNNWoPMU5vu6xU4b6NKEZGy7tRgagQ,570
|
|
695
729
|
django_cfg/management/commands/test_twilio.py,sha256=Wn-vp9pI1gDyl1rmuvzk-s2NSarGaQOsyua53nJG6QI,632
|
|
696
|
-
django_cfg/management/commands/tree.py,sha256=
|
|
730
|
+
django_cfg/management/commands/tree.py,sha256=tEX8jm4lV3QNO3SfHLE-HffvR9-K_uZfPofzBO-FDsc,12604
|
|
697
731
|
django_cfg/management/commands/validate_openapi.py,sha256=CdcoMhtxQhjTL6nCifAYkn02uqvo9hmKeyPJxlhz4Iw,342
|
|
732
|
+
django_cfg/management/utils/README.md,sha256=2krpA0JXYt_9M_TfacsGkHFA2VCQYTkj3UD8TT-bP6w,10221
|
|
733
|
+
django_cfg/management/utils/__init__.py,sha256=uYvzKFSzoLU9RFwO3kgfd8AaXQ6iUNnVFlJWCnaVrOY,575
|
|
734
|
+
django_cfg/management/utils/mixins.py,sha256=X2yL6xrpYPCVBeANjD0oKBbgpbHnzoYpj7b0uKMNNmI,5058
|
|
698
735
|
django_cfg/middleware/README.md,sha256=OLnK_Lto3tWnvjlrovmXU_nXTS2fQZyNzMFvTErlNB8,13501
|
|
699
736
|
django_cfg/middleware/__init__.py,sha256=EVah9AYIWT3R8inTqPY20oB4xb-KejhwqngM1Z4UrD8,465
|
|
700
737
|
django_cfg/middleware/admin_notifications.py,sha256=EVoXjSLaDz4r-lL5hy6V9sC1BpNF0rKsa-s6L31foRQ,6856
|
|
701
738
|
django_cfg/middleware/authentication.py,sha256=iwQLHyHSSLe4tazEJHuOUn3X3TcqgX9JZ5zfxQTzbZw,6148
|
|
702
|
-
django_cfg/middleware/pagination.py,sha256=
|
|
739
|
+
django_cfg/middleware/pagination.py,sha256=5xhvk3fYCJ0Mmjer-BFl1tdzXBlmGahOvgwMMCQ95ck,8677
|
|
703
740
|
django_cfg/middleware/public_endpoints.py,sha256=p-VCjeu0k7B4OuQIe2OVUx7Onh9gsM2HweWcYNxEaRA,6775
|
|
704
741
|
django_cfg/middleware/user_activity.py,sha256=bgftHXXeGBS-jCa8mLzTx4Gcz2fHTaQz_nbRCR5Yqio,5980
|
|
705
742
|
django_cfg/mixins/__init__.py,sha256=3nJ5PySz233LJCKC5x5iqqh9P_C2n-KxNKxAEY5tVao,284
|
|
@@ -718,8 +755,8 @@ django_cfg/models/api/drf/config.py,sha256=PXDfFtwcYh_QHG54FYLKynPhByT28fGr8hsCV
|
|
|
718
755
|
django_cfg/models/api/drf/redoc.py,sha256=XNNWnMwkfIhtkCUt_KiPtc0-Nw0E3jvQOIjwcdie5a0,762
|
|
719
756
|
django_cfg/models/api/drf/spectacular.py,sha256=UYBATiEY3qzx0IlTvCyhpymASO2Wej_j-gQsgL03Nec,5020
|
|
720
757
|
django_cfg/models/api/drf/swagger.py,sha256=ku_eE7bWgHxjXD6Z2sEKSYE-bIzmZfAR0vQW9xqlG4Q,2127
|
|
721
|
-
django_cfg/models/api/grpc/__init__.py,sha256
|
|
722
|
-
django_cfg/models/api/grpc/config.py,sha256=
|
|
758
|
+
django_cfg/models/api/grpc/__init__.py,sha256=1xv125eMwbydphFqcSVznyN2RvIL5BK1abTeIV7L5BI,1357
|
|
759
|
+
django_cfg/models/api/grpc/config.py,sha256=6rqc7yP7Nd13eJ9uFPFtnYh8ROKzoQuJ6q3rpZarSGE,14399
|
|
723
760
|
django_cfg/models/base/__init__.py,sha256=f6sMVyd-YEFdLebmIKOOPviu1Ovn4BHGp7j7ZVNqFDo,271
|
|
724
761
|
django_cfg/models/base/config.py,sha256=hfpf35yMR8oOE1J0SBPNNSBwXckK3F2-Iv0Vw6cNX4E,10114
|
|
725
762
|
django_cfg/models/base/module.py,sha256=nxN1Y9J4l94kOfSXLQJ2eGgIGWTq8kyh7hUGvCQNyIs,2674
|
|
@@ -743,7 +780,7 @@ django_cfg/models/infrastructure/database/routing.py,sha256=Z22AeCjKJB-aV0Scq9u1
|
|
|
743
780
|
django_cfg/models/infrastructure/database/validators.py,sha256=VA6Y-t7DdU7cWI42kXTxUKMhf1XwNJ6_NkxPWlXv-l8,5854
|
|
744
781
|
django_cfg/models/ngrok/__init__.py,sha256=O_fMQ9teQDluusZr2XcTUirSJReaI_zaXN_vU_aoR_k,163
|
|
745
782
|
django_cfg/models/ngrok/auth.py,sha256=Domjz612_9GQit5lf2v2GmcVLc4gBfyAyJxO8LaVXCg,920
|
|
746
|
-
django_cfg/models/ngrok/config.py,sha256=
|
|
783
|
+
django_cfg/models/ngrok/config.py,sha256=tShOBdb_MIqjCU0aGoxDapMy_uJqVwKyi7cCgTh4iEI,2287
|
|
747
784
|
django_cfg/models/ngrok/tunnel.py,sha256=vfmdRcwWPY9G_h-gGXQPgiGMQ0mBJP-yF609m1xl4Xg,782
|
|
748
785
|
django_cfg/models/payments/__init__.py,sha256=FSUh37wJyGH_cR7CDenK2Wu3rfj9xjUflaEm7tcS0eM,221
|
|
749
786
|
django_cfg/models/payments/config.py,sha256=e_yvJ1uaT3FTobWB2tsCcjbill4dqn56kGqBYxwyrtY,2798
|
|
@@ -845,16 +882,16 @@ django_cfg/modules/django_client/core/generator/proto/test_proto_generator.py,sh
|
|
|
845
882
|
django_cfg/modules/django_client/core/generator/proto/type_mapper.py,sha256=n5GVQHK3h_-7h3xvQaEUqWVJWy-utFOyusdRAP1e1lM,4370
|
|
846
883
|
django_cfg/modules/django_client/core/generator/python/__init__.py,sha256=DOPkZBmNVX8qKZBulnE-49iMlBsMHszidzBhWG17c2E,448
|
|
847
884
|
django_cfg/modules/django_client/core/generator/python/async_client_gen.py,sha256=zFviFo0PLg3Zb-0TL5AS_Ghhvl-jS180Cl-AWIAWIa0,6030
|
|
848
|
-
django_cfg/modules/django_client/core/generator/python/files_generator.py,sha256=
|
|
885
|
+
django_cfg/modules/django_client/core/generator/python/files_generator.py,sha256=QVQ2PlM-MrsgmVbQGChG_zbemWGlt4x8Y6EORejFY0k,6063
|
|
849
886
|
django_cfg/modules/django_client/core/generator/python/generator.py,sha256=N-wkvS9uzAD_EveO9Df74Hfseu47Zi2ZjDfklZtVbO0,7672
|
|
850
887
|
django_cfg/modules/django_client/core/generator/python/models_generator.py,sha256=Rot4zSFFGa9_c-a_0WqWYIlf5_7-krMLhwTNMDCwPuQ,12385
|
|
851
888
|
django_cfg/modules/django_client/core/generator/python/operations_generator.py,sha256=RVrfxr6gdki9rJ8j9bXTn7sxKopTTtp1uRReO6aw83w,10200
|
|
852
889
|
django_cfg/modules/django_client/core/generator/python/sync_client_gen.py,sha256=3UeC901JBWhlN5XfC1WDH9ulnZmddyB9nR6ncntelTU,3489
|
|
853
890
|
django_cfg/modules/django_client/core/generator/python/templates/__init__.py.jinja,sha256=eZEZQSz9dc7wjMiFtBtXv_8zVevZozAXwEQ1r1ODpsc,136
|
|
854
|
-
django_cfg/modules/django_client/core/generator/python/templates/api_wrapper.py.jinja,sha256=
|
|
891
|
+
django_cfg/modules/django_client/core/generator/python/templates/api_wrapper.py.jinja,sha256=Dydn_ugMOMFXUoCEzrK-BKOqt0WaUpc6S4VcfKVHygs,4880
|
|
855
892
|
django_cfg/modules/django_client/core/generator/python/templates/app_init.py.jinja,sha256=kffAbtfAWLKar2R9X1TyyT3NFXzZTAr1KwsKUGXLf7s,98
|
|
856
893
|
django_cfg/modules/django_client/core/generator/python/templates/client_file.py.jinja,sha256=bzyYcWH-nt0Bt3X6P7--AlCShTOl-ecxhuJHeMNpBXA,168
|
|
857
|
-
django_cfg/modules/django_client/core/generator/python/templates/main_init.py.jinja,sha256=
|
|
894
|
+
django_cfg/modules/django_client/core/generator/python/templates/main_init.py.jinja,sha256=ZmMhWwfbC99UNZAd7k3giAf7Ya-rSpXbDMHTuNxZQFY,1140
|
|
858
895
|
django_cfg/modules/django_client/core/generator/python/templates/pyproject.toml.jinja,sha256=Ew6GkITkR_E37jSXwO9b8M0MzeB9qqk31CCntV5ZEKg,1318
|
|
859
896
|
django_cfg/modules/django_client/core/generator/python/templates/client/app_client.py.jinja,sha256=j_oyWpFmt9-s1fO-MruEDY_ZHSPUFsCkHhz-TPWoUGM,370
|
|
860
897
|
django_cfg/modules/django_client/core/generator/python/templates/client/flat_client.py.jinja,sha256=32S3aUYMAuxIZKMLw1R-8px_rCaSRBcbs3Wcchag6o0,980
|
|
@@ -876,20 +913,20 @@ django_cfg/modules/django_client/core/generator/python/templates/utils/schema.py
|
|
|
876
913
|
django_cfg/modules/django_client/core/generator/typescript/__init__.py,sha256=eHOZp7M65WZ9u3tA_xQlON5-oijZZiGXDhz22Bq73s0,371
|
|
877
914
|
django_cfg/modules/django_client/core/generator/typescript/client_generator.py,sha256=5CKeXuw6OvbRrq-ezdooqbpLpCrjYLmkL-kWkDdlD14,6068
|
|
878
915
|
django_cfg/modules/django_client/core/generator/typescript/fetchers_generator.py,sha256=nOaPFpSRb1izEpyXjJcnC2gdRcSLqhtmTPY0QWXUWkI,9184
|
|
879
|
-
django_cfg/modules/django_client/core/generator/typescript/files_generator.py,sha256=
|
|
880
|
-
django_cfg/modules/django_client/core/generator/typescript/generator.py,sha256=
|
|
881
|
-
django_cfg/modules/django_client/core/generator/typescript/hooks_generator.py,sha256=
|
|
882
|
-
django_cfg/modules/django_client/core/generator/typescript/models_generator.py,sha256=
|
|
916
|
+
django_cfg/modules/django_client/core/generator/typescript/files_generator.py,sha256=GU28mlTK7wrBw3NG5mq2dAGi4gE77ZFtHPtIXVg3qVk,7072
|
|
917
|
+
django_cfg/modules/django_client/core/generator/typescript/generator.py,sha256=7C0cFf3zDlgz2Ij-yxt7mGHKGKnqkcKyo0WZqRmL8jY,20862
|
|
918
|
+
django_cfg/modules/django_client/core/generator/typescript/hooks_generator.py,sha256=0yT4cuUa1BP5LcF17jj3poeR7udJQ14A9TN0gB21d18,16002
|
|
919
|
+
django_cfg/modules/django_client/core/generator/typescript/models_generator.py,sha256=xhIaEn76_Jt9KeW_JE7PCBzdJMF7WZdE75T11Ih_ay0,9597
|
|
883
920
|
django_cfg/modules/django_client/core/generator/typescript/naming.py,sha256=kSZwPGqD42G2KBqoPGDiy4CoWjaQWseKAWbdJOF7VaU,2574
|
|
884
921
|
django_cfg/modules/django_client/core/generator/typescript/operations_generator.py,sha256=ziOnZ55v4KnFfv4AT_TqM3lrAiRuIvz3kgxZpIQsLBQ,14715
|
|
885
922
|
django_cfg/modules/django_client/core/generator/typescript/params_builder.py,sha256=elGzGGBXlYrffkPnMoAHN_Ps-PVtVOGdxBNb25mOa7E,8426
|
|
886
|
-
django_cfg/modules/django_client/core/generator/typescript/schemas_generator.py,sha256=
|
|
923
|
+
django_cfg/modules/django_client/core/generator/typescript/schemas_generator.py,sha256=FuJ4ywDsJmvEeOfFg8HVpWrTSwulH6HYejVS4r1yfT8,12924
|
|
887
924
|
django_cfg/modules/django_client/core/generator/typescript/validator.py,sha256=dV0-T2xZRIu15ogThaE04JlvW64xRSg9O1CaDi8CeCI,10062
|
|
888
925
|
django_cfg/modules/django_client/core/generator/typescript/templates/api_instance.ts.jinja,sha256=OPUjnz6Dk3kY97UFIRcgvxkEIKd6fUGqBzXJWOXKykE,2906
|
|
889
926
|
django_cfg/modules/django_client/core/generator/typescript/templates/app_index.ts.jinja,sha256=gLsoYyEzKD6Gv64vsO9sQHMPiFMGdaB5XVufLHeRyvQ,62
|
|
890
927
|
django_cfg/modules/django_client/core/generator/typescript/templates/client_file.ts.jinja,sha256=LHUt72fO2eRNAHYEscIYvqVR69GC6mxqjcgSlUzeCtc,251
|
|
891
928
|
django_cfg/modules/django_client/core/generator/typescript/templates/index.ts.jinja,sha256=OtQxzqV_6SYvugk_oS0F9_WXty2tnKY_wl2n9-WeJqo,127
|
|
892
|
-
django_cfg/modules/django_client/core/generator/typescript/templates/main_index.ts.jinja,sha256=
|
|
929
|
+
django_cfg/modules/django_client/core/generator/typescript/templates/main_index.ts.jinja,sha256=gyO5BPgycniHdLRILmIwav4MTFVYUIwpvJrOJ3zFiTw,7624
|
|
893
930
|
django_cfg/modules/django_client/core/generator/typescript/templates/package.json.jinja,sha256=XOgZJG3twzWJ8gsZ5VZ_gQx7zBvrnwXy-yUFHfdyBBs,1280
|
|
894
931
|
django_cfg/modules/django_client/core/generator/typescript/templates/tsconfig.json.jinja,sha256=QKbo6hYoVdRXrm7psRzBGStzAP5omQrnamSQT6b44gE,482
|
|
895
932
|
django_cfg/modules/django_client/core/generator/typescript/templates/client/app_client.ts.jinja,sha256=jaFN_QIQU2eyu-6uiwUjwACYNr06LI14XGJN0Dgv-9E,260
|
|
@@ -898,10 +935,10 @@ django_cfg/modules/django_client/core/generator/typescript/templates/client/flat
|
|
|
898
935
|
django_cfg/modules/django_client/core/generator/typescript/templates/client/main_client_file.ts.jinja,sha256=MWiSIhqbw57JcWmpQ6YJJuVLcyw3cQ6qfFyoEKhRVTo,333
|
|
899
936
|
django_cfg/modules/django_client/core/generator/typescript/templates/client/operation.ts.jinja,sha256=z6GD-r7Y-S_yhDtlOAjMgDSL10AF3YrBLLNLPiCt8rE,1869
|
|
900
937
|
django_cfg/modules/django_client/core/generator/typescript/templates/client/sub_client.ts.jinja,sha256=1rtFMqJO8ynjNNblhMPwCbVFhbSbLJJwiMhuJJYf9Lw,215
|
|
901
|
-
django_cfg/modules/django_client/core/generator/typescript/templates/fetchers/fetchers.ts.jinja,sha256=
|
|
902
|
-
django_cfg/modules/django_client/core/generator/typescript/templates/fetchers/function.ts.jinja,sha256=
|
|
938
|
+
django_cfg/modules/django_client/core/generator/typescript/templates/fetchers/fetchers.ts.jinja,sha256=vk-yQgNuS4jxnN6bqUl7gDrrK7_q5eLnWXiBvHVSvSQ,1291
|
|
939
|
+
django_cfg/modules/django_client/core/generator/typescript/templates/fetchers/function.ts.jinja,sha256=5jUCSWbMPdG1n5jxOVFKDfRnI4ocwsMcJsaM1vP6wyo,1567
|
|
903
940
|
django_cfg/modules/django_client/core/generator/typescript/templates/fetchers/index.ts.jinja,sha256=DoAVm8EoglJKtLrE917Fk7Na6rn5Bt9L1nI39o9AwzM,747
|
|
904
|
-
django_cfg/modules/django_client/core/generator/typescript/templates/hooks/hooks.ts.jinja,sha256=
|
|
941
|
+
django_cfg/modules/django_client/core/generator/typescript/templates/hooks/hooks.ts.jinja,sha256=RdImlx61kBn1uCrrpqeTfxa1l-5a3AYU1ZKMVw1f6TU,870
|
|
905
942
|
django_cfg/modules/django_client/core/generator/typescript/templates/hooks/index.ts.jinja,sha256=c4Jru6DAKD-y8nzig1my0iE-BO3OwjSCENALbHvAp7E,694
|
|
906
943
|
django_cfg/modules/django_client/core/generator/typescript/templates/hooks/mutation_hook.ts.jinja,sha256=pOeyEY9nkYKVARTN6P4dfEj_mg-CIuPd8rrxzfaCfF8,697
|
|
907
944
|
django_cfg/modules/django_client/core/generator/typescript/templates/hooks/query_hook.ts.jinja,sha256=_Qit1DTZQTYIM_l6gmBkS2Fy7358EsGrUWr0iwCwyhw,526
|
|
@@ -922,9 +959,9 @@ django_cfg/modules/django_client/core/groups/manager.py,sha256=GLeIgCPoOy-pNHOH0
|
|
|
922
959
|
django_cfg/modules/django_client/core/ir/__init__.py,sha256=58JBUka_gxjScbyTqGKrjOhIPbPQVqdyMMqs13vrSx0,2009
|
|
923
960
|
django_cfg/modules/django_client/core/ir/context.py,sha256=We-XTjfhEOlasUv2wMhDuZonQ10O8c2-i5hJWcXRD-k,13801
|
|
924
961
|
django_cfg/modules/django_client/core/ir/operation.py,sha256=gwvTciqIAUS0Hb7TqVU1Zr_StU9ulG3Vf73V7jYTp_U,17182
|
|
925
|
-
django_cfg/modules/django_client/core/ir/schema.py,sha256=
|
|
962
|
+
django_cfg/modules/django_client/core/ir/schema.py,sha256=eHv8OURAtsWjVeOFTHQUs94dQXMG4cuv2oDhCYjIODw,13273
|
|
926
963
|
django_cfg/modules/django_client/core/parser/__init__.py,sha256=8luZt53hRdtLRPVMWG3zpaWK53sKGBabQGmkDCye4ow,2312
|
|
927
|
-
django_cfg/modules/django_client/core/parser/base.py,sha256=
|
|
964
|
+
django_cfg/modules/django_client/core/parser/base.py,sha256=0r09FuoJMe3XFHvPOlHVlC_wtGSa8PL5anoCOZA-2eU,30210
|
|
928
965
|
django_cfg/modules/django_client/core/parser/openapi30.py,sha256=NA58Z56NkICvtoONux74tB9nCRPqFc1_aY7Ecu7iouE,2570
|
|
929
966
|
django_cfg/modules/django_client/core/parser/openapi31.py,sha256=45ftYD0mJcVZiuRfdJ5YzMoEKxoUOXBTfroIK76u--U,2861
|
|
930
967
|
django_cfg/modules/django_client/core/parser/models/__init__.py,sha256=GrGazWB-rr-e_HBtOTFNRA2WjkyGM5MH85iAMs_cs7s,1690
|
|
@@ -943,8 +980,8 @@ django_cfg/modules/django_client/core/validation/rules/base.py,sha256=xVJli0eSEz
|
|
|
943
980
|
django_cfg/modules/django_client/core/validation/rules/type_hints.py,sha256=hwjTMADillsTPruDvXZQeZMj4LVV443zxY9o0Gqgg6k,10200
|
|
944
981
|
django_cfg/modules/django_client/management/__init__.py,sha256=mCTPP_bIOmqNnn0WAG2n4BuF6zwc9PTgdZr_dORfNDk,54
|
|
945
982
|
django_cfg/modules/django_client/management/commands/__init__.py,sha256=CJ55pHUNYQ5h-QHUe3axeTtxzlUJv7wbEuZmGN21iCM,36
|
|
946
|
-
django_cfg/modules/django_client/management/commands/generate_client.py,sha256=
|
|
947
|
-
django_cfg/modules/django_client/management/commands/validate_openapi.py,sha256=
|
|
983
|
+
django_cfg/modules/django_client/management/commands/generate_client.py,sha256=jCzWa9KTi5QM3BmxxZWU4lJ9K_2AizFtj9-7svWydSw,31436
|
|
984
|
+
django_cfg/modules/django_client/management/commands/validate_openapi.py,sha256=1qQcrR3mG9BIEG-0mpceFxBt-b457M5o71T8DEvyQl4,11091
|
|
948
985
|
django_cfg/modules/django_client/spectacular/__init__.py,sha256=M8fG-odu2ltkG36aMMr0KDkCKGX676TwdrJO8vky2cI,345
|
|
949
986
|
django_cfg/modules/django_client/spectacular/async_detection.py,sha256=S_pwGR7_2SIWHjZJyiu7SCfySF3Nr3P8eqjDyBSkkLs,5731
|
|
950
987
|
django_cfg/modules/django_client/spectacular/enum_naming.py,sha256=FMJyJiS7nBs-Q9yDs5M0qsNLVX8UJhFgJK9Svo-T2tk,6486
|
|
@@ -978,7 +1015,7 @@ django_cfg/modules/django_email/service.py,sha256=4v6sFWIbdAJwaPyEGYgNNGbkjDcRVa
|
|
|
978
1015
|
django_cfg/modules/django_email/utils.py,sha256=s1VubMDhWV4stwe4gmC5v60KraIcWExYiohHwkN3XVc,944
|
|
979
1016
|
django_cfg/modules/django_email/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
980
1017
|
django_cfg/modules/django_email/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
981
|
-
django_cfg/modules/django_email/management/commands/test_email.py,sha256
|
|
1018
|
+
django_cfg/modules/django_email/management/commands/test_email.py,sha256=-vcr4JqyDflwUK4A5y3OBxvW7HrCYxCu2IXhs2bqk-s,3152
|
|
982
1019
|
django_cfg/modules/django_health/__init__.py,sha256=lX8uJlAmXZeAVfQy12H67uTTy5SOjYMu3N8d8WF8ZNM,156
|
|
983
1020
|
django_cfg/modules/django_health/service.py,sha256=K7Fm3fmRjrjRiPpaQIfyaQ4cI3coSIX2HrsRXjUzxOk,8837
|
|
984
1021
|
django_cfg/modules/django_import_export/README.md,sha256=Oha18L7skITg-5oOfcKEvwealrD7FIziXt2y66WoaYM,3115
|
|
@@ -1038,7 +1075,7 @@ django_cfg/modules/django_ngrok/__init__.py,sha256=CYHHSKRIHIP3E_NpUnFX-D2exWZK8
|
|
|
1038
1075
|
django_cfg/modules/django_ngrok/service.py,sha256=Xkh9Gl6Rth32UcT0UYjD0ckROHFw6FJLKDtg3VzWLQY,9304
|
|
1039
1076
|
django_cfg/modules/django_ngrok/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1040
1077
|
django_cfg/modules/django_ngrok/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1041
|
-
django_cfg/modules/django_ngrok/management/commands/runserver_ngrok.py,sha256=
|
|
1078
|
+
django_cfg/modules/django_ngrok/management/commands/runserver_ngrok.py,sha256=xk9ZaaJvBX8wixdqSuVirSnLFCye07Y-CmXbAFfDvME,6448
|
|
1042
1079
|
django_cfg/modules/django_tailwind/README.md,sha256=tPQd4ir79MLFSVUKBGfPAF22LZWE0BcmzcNdQhJ4k7I,10804
|
|
1043
1080
|
django_cfg/modules/django_tailwind/__init__.py,sha256=K0GbFxjemNixRUgexurSTDfN4kB--TmuFCk9n5DbLYc,186
|
|
1044
1081
|
django_cfg/modules/django_tailwind/apps.py,sha256=CKNd0xDoLaQpe7SEfay0ZtWkjLUVRgofkB8FobKLXV8,313
|
|
@@ -1055,7 +1092,7 @@ django_cfg/modules/django_telegram/service.py,sha256=oPuz7sW6KetqPFqicq92TWbpICV
|
|
|
1055
1092
|
django_cfg/modules/django_telegram/utils.py,sha256=O8kd7IPzbxr0-ypx3JFmBw1Pc38wX8dYpoieO4w8GJk,1575
|
|
1056
1093
|
django_cfg/modules/django_telegram/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1057
1094
|
django_cfg/modules/django_telegram/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1058
|
-
django_cfg/modules/django_telegram/management/commands/test_telegram.py,sha256=
|
|
1095
|
+
django_cfg/modules/django_telegram/management/commands/test_telegram.py,sha256=euw3sfw55ehFqrryq1Ysvrq6XhxN4I6_YW6Hq-1g5Tw,2072
|
|
1059
1096
|
django_cfg/modules/django_twilio/README.md,sha256=Zmh_mG0loPTHlr4piqRfz7AWp-uSRtyHJeQv5gcgA9w,14017
|
|
1060
1097
|
django_cfg/modules/django_twilio/__init__.py,sha256=R51VI_lxA47h2nRx1jkcXnwdYrdsDfKJK7TSojYc5yI,2378
|
|
1061
1098
|
django_cfg/modules/django_twilio/_imports.py,sha256=qZo8urnj-K66z4HcIzaAZWhdAtqZU_lHVHL1ipqCU9A,782
|
|
@@ -1072,12 +1109,12 @@ django_cfg/modules/django_twilio/utils.py,sha256=6PSyvd0Jgvf3QuiHTHM8t0Sc4vYUXxA
|
|
|
1072
1109
|
django_cfg/modules/django_twilio/whatsapp.py,sha256=E0MWT7Um0g38nP0hu0OldMCJ6JlWbFkGXaaJFFHkiFs,4923
|
|
1073
1110
|
django_cfg/modules/django_twilio/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1074
1111
|
django_cfg/modules/django_twilio/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1075
|
-
django_cfg/modules/django_twilio/management/commands/test_twilio.py,sha256=
|
|
1112
|
+
django_cfg/modules/django_twilio/management/commands/test_twilio.py,sha256=hFQjks4ZoZj1-K9rKCHdYFlwp71IUxNE6rYmJ8jEjHo,4118
|
|
1076
1113
|
django_cfg/modules/django_twilio/templates/guide.md,sha256=nZfwx-sgWyK5NApm93zOeeMTfLPOa8HK0IIYKdMLCzE,7799
|
|
1077
1114
|
django_cfg/modules/django_twilio/templates/sendgrid_otp_email.html,sha256=sXR6_D9hmOFfk9CrfPizpLddVhkRirBWpZd_ioEsxVk,6671
|
|
1078
1115
|
django_cfg/modules/django_twilio/templates/sendgrid_test_data.json,sha256=fh1VyuSiDELHsS_CIz9gp7tlsMAEjaDOoqbAPSZ3yyo,339
|
|
1079
1116
|
django_cfg/modules/django_unfold/__init__.py,sha256=Uquez6xgPUIc8FBMP7qif-adRYQSjQ2dBHxnJPom3eQ,1337
|
|
1080
|
-
django_cfg/modules/django_unfold/navigation.py,sha256=
|
|
1117
|
+
django_cfg/modules/django_unfold/navigation.py,sha256=VpLx7cyicbqLrkBj4L9LqwH4CelsZvJOKq-SRLVskW0,14454
|
|
1081
1118
|
django_cfg/modules/django_unfold/system_monitor.py,sha256=KcrTa5irstdB1pDKe3sC0zl4tz9LVjhp7xvbqUM4YVk,6781
|
|
1082
1119
|
django_cfg/modules/django_unfold/tailwind.py,sha256=NY8nWcUdQw61oNmjPoPl7agcTb-r5IqcpFYy35MNsTM,9107
|
|
1083
1120
|
django_cfg/modules/django_unfold/utils.py,sha256=5aFaceRc9B3eXfpOVyKRD2wWqFt8KcHxjQg54oD7Oyg,4482
|
|
@@ -1096,7 +1133,7 @@ django_cfg/modules/nextjs_admin/templatetags/nextjs_admin.py,sha256=aAekrlu3pvvx
|
|
|
1096
1133
|
django_cfg/registry/__init__.py,sha256=CaiL9KwqPzXlIe5-4Qr7PQu5ZxAW1HtuDIXZ7-ktRQg,538
|
|
1097
1134
|
django_cfg/registry/core.py,sha256=oHFEmCZDkPNP184mVKVKqD36nN0mJFrLc2q8MWbfSfk,3439
|
|
1098
1135
|
django_cfg/registry/exceptions.py,sha256=b4pIakeRxhT1-ST3lbAnmAQaASRBARCoah_w6vb3VF0,399
|
|
1099
|
-
django_cfg/registry/modules.py,sha256=
|
|
1136
|
+
django_cfg/registry/modules.py,sha256=MDIwBlugfLzinIWLb4G4znY_ILJzMioEuTaYsYN_XDs,2061
|
|
1100
1137
|
django_cfg/registry/services.py,sha256=l0V2twGpF9BwVlo-TTfFu8dV7GVBS7XKCsScIZXWWbc,2457
|
|
1101
1138
|
django_cfg/registry/third_party.py,sha256=YPcj0IsxEmh_gpJAcPvIFa21ZWnoFjcreHlXtS4UR-I,2239
|
|
1102
1139
|
django_cfg/routing/__init__.py,sha256=94No0CWltLJJvKDwqFfKU5CHo_S1OynghWqpx7PsyBY,272
|
|
@@ -1117,7 +1154,7 @@ django_cfg/static/admin/js/alpine/commands-section.js,sha256=8z2MQNwZF9Tx_2EK1AY
|
|
|
1117
1154
|
django_cfg/static/admin/js/alpine/dashboard-tabs.js,sha256=ob8Q_I9lFLDv_hFERXgTyvqMDBspAGfzCxI_7slRur4,1354
|
|
1118
1155
|
django_cfg/static/admin/js/alpine/system-metrics.js,sha256=m-Fg55K_vpHXToD46PXL9twl4OBF_V9MONvbSWbQqDw,440
|
|
1119
1156
|
django_cfg/static/admin/js/alpine/toggle-section.js,sha256=T141NFmy0fRJyGGuuaCJRjJXwPam-xxtQNW1hi8BJbc,672
|
|
1120
|
-
django_cfg/static/frontend/admin.zip,sha256=
|
|
1157
|
+
django_cfg/static/frontend/admin.zip,sha256=YFsValTFHn8JGA2oiqyKW1PfW31gqBd2C5pwFzjP0X0,24310721
|
|
1121
1158
|
django_cfg/static/js/api-loader.mjs,sha256=boGqqRGnFR-Mzo_RQOjhAzNvsb7QxZddSwMKROzkk9Q,5163
|
|
1122
1159
|
django_cfg/static/js/api/base.mjs,sha256=KUxZHHdELAV8mNnACpwJRvaQhdJxp-n5LFEQ4oUZxBo,4707
|
|
1123
1160
|
django_cfg/static/js/api/index.mjs,sha256=_-Q04jjHcgwi4CGfiaLyiOR6NW7Yu1HBhJWp2J1cjpc,2538
|
|
@@ -1153,9 +1190,9 @@ django_cfg/utils/version_check.py,sha256=WO51J2m2e-wVqWCRwbultEwu3q1lQasV67Mw2aa
|
|
|
1153
1190
|
django_cfg/CHANGELOG.md,sha256=jtT3EprqEJkqSUh7IraP73vQ8PmKUMdRtznQsEnqDZk,2052
|
|
1154
1191
|
django_cfg/CONTRIBUTING.md,sha256=DU2kyQ6PU0Z24ob7O_OqKWEYHcZmJDgzw-lQCmu6uBg,3041
|
|
1155
1192
|
django_cfg/LICENSE,sha256=xHuytiUkSZCRG3N11nk1X6q1_EGQtv6aL5O9cqNRhKE,1071
|
|
1156
|
-
django_cfg/pyproject.toml,sha256=
|
|
1157
|
-
django_cfg-1.5.
|
|
1158
|
-
django_cfg-1.5.
|
|
1159
|
-
django_cfg-1.5.
|
|
1160
|
-
django_cfg-1.5.
|
|
1161
|
-
django_cfg-1.5.
|
|
1193
|
+
django_cfg/pyproject.toml,sha256=P31joqhitG3i6gUGvSB0f2ZJPsuBrWAjdft-gM_i9as,8816
|
|
1194
|
+
django_cfg-1.5.20.dist-info/METADATA,sha256=hT1Z4N_Mduuiv2ajZ0GElck-EMUAKdybUvoZsBBw9KQ,25581
|
|
1195
|
+
django_cfg-1.5.20.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
1196
|
+
django_cfg-1.5.20.dist-info/entry_points.txt,sha256=Ucmde4Z2wEzgb4AggxxZ0zaYDb9HpyE5blM3uJ0_VNg,56
|
|
1197
|
+
django_cfg-1.5.20.dist-info/licenses/LICENSE,sha256=xHuytiUkSZCRG3N11nk1X6q1_EGQtv6aL5O9cqNRhKE,1071
|
|
1198
|
+
django_cfg-1.5.20.dist-info/RECORD,,
|