cloud-dog-api-kit 0.13.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (98) hide show
  1. cloud_dog_api_kit/__init__.py +170 -0
  2. cloud_dog_api_kit/a2a/__init__.py +53 -0
  3. cloud_dog_api_kit/a2a/card.py +138 -0
  4. cloud_dog_api_kit/a2a/events.py +1123 -0
  5. cloud_dog_api_kit/a2a/gateway.py +105 -0
  6. cloud_dog_api_kit/a2a/skill_audit.py +107 -0
  7. cloud_dog_api_kit/auth/__init__.py +35 -0
  8. cloud_dog_api_kit/auth/dependency.py +121 -0
  9. cloud_dog_api_kit/auth/rbac.py +107 -0
  10. cloud_dog_api_kit/auth/service_auth.py +54 -0
  11. cloud_dog_api_kit/clients/__init__.py +29 -0
  12. cloud_dog_api_kit/clients/circuit_breaker.py +39 -0
  13. cloud_dog_api_kit/clients/http_client.py +127 -0
  14. cloud_dog_api_kit/clients/retry.py +83 -0
  15. cloud_dog_api_kit/compat/__init__.py +37 -0
  16. cloud_dog_api_kit/compat/envelope.py +120 -0
  17. cloud_dog_api_kit/compat/profile.py +102 -0
  18. cloud_dog_api_kit/compat/routes.py +90 -0
  19. cloud_dog_api_kit/config.py +54 -0
  20. cloud_dog_api_kit/correlation/__init__.py +50 -0
  21. cloud_dog_api_kit/correlation/context.py +118 -0
  22. cloud_dog_api_kit/correlation/middleware.py +133 -0
  23. cloud_dog_api_kit/envelopes/__init__.py +37 -0
  24. cloud_dog_api_kit/envelopes/error.py +87 -0
  25. cloud_dog_api_kit/envelopes/success.py +84 -0
  26. cloud_dog_api_kit/errors/__init__.py +51 -0
  27. cloud_dog_api_kit/errors/exceptions.py +184 -0
  28. cloud_dog_api_kit/errors/handler.py +102 -0
  29. cloud_dog_api_kit/errors/taxonomy.py +62 -0
  30. cloud_dog_api_kit/factory.py +157 -0
  31. cloud_dog_api_kit/idempotency/__init__.py +28 -0
  32. cloud_dog_api_kit/idempotency/middleware.py +118 -0
  33. cloud_dog_api_kit/idempotency/store.py +100 -0
  34. cloud_dog_api_kit/lifecycle/__init__.py +39 -0
  35. cloud_dog_api_kit/lifecycle/hooks.py +75 -0
  36. cloud_dog_api_kit/lifecycle/shutdown.py +178 -0
  37. cloud_dog_api_kit/mcp/__init__.py +122 -0
  38. cloud_dog_api_kit/mcp/async_jobs.py +126 -0
  39. cloud_dog_api_kit/mcp/client_sdk.py +235 -0
  40. cloud_dog_api_kit/mcp/client_transport/__init__.py +47 -0
  41. cloud_dog_api_kit/mcp/client_transport/base.py +98 -0
  42. cloud_dog_api_kit/mcp/client_transport/exceptions.py +37 -0
  43. cloud_dog_api_kit/mcp/client_transport/http_jsonrpc.py +405 -0
  44. cloud_dog_api_kit/mcp/client_transport/legacy_sse.py +320 -0
  45. cloud_dog_api_kit/mcp/client_transport/stdio.py +322 -0
  46. cloud_dog_api_kit/mcp/client_transport/streamable_http.py +748 -0
  47. cloud_dog_api_kit/mcp/contract.py +113 -0
  48. cloud_dog_api_kit/mcp/error_mapper.py +84 -0
  49. cloud_dog_api_kit/mcp/gateway.py +117 -0
  50. cloud_dog_api_kit/mcp/legacy_sse.py +129 -0
  51. cloud_dog_api_kit/mcp/session.py +96 -0
  52. cloud_dog_api_kit/mcp/sync_handler.py +269 -0
  53. cloud_dog_api_kit/mcp/tool_audit.py +136 -0
  54. cloud_dog_api_kit/mcp/tool_router.py +180 -0
  55. cloud_dog_api_kit/mcp/transport.py +1041 -0
  56. cloud_dog_api_kit/middleware/__init__.py +39 -0
  57. cloud_dog_api_kit/middleware/cors.py +74 -0
  58. cloud_dog_api_kit/middleware/logging.py +98 -0
  59. cloud_dog_api_kit/middleware/request_size_limit.py +86 -0
  60. cloud_dog_api_kit/middleware/timeout.py +78 -0
  61. cloud_dog_api_kit/middleware/timing.py +52 -0
  62. cloud_dog_api_kit/openapi/__init__.py +30 -0
  63. cloud_dog_api_kit/openapi/customise.py +69 -0
  64. cloud_dog_api_kit/openapi/route.py +46 -0
  65. cloud_dog_api_kit/routers/__init__.py +41 -0
  66. cloud_dog_api_kit/routers/crud.py +173 -0
  67. cloud_dog_api_kit/routers/health.py +160 -0
  68. cloud_dog_api_kit/routers/jobs.py +69 -0
  69. cloud_dog_api_kit/routers/version.py +46 -0
  70. cloud_dog_api_kit/schemas/__init__.py +36 -0
  71. cloud_dog_api_kit/schemas/envelopes.py +37 -0
  72. cloud_dog_api_kit/schemas/filters.py +103 -0
  73. cloud_dog_api_kit/schemas/pagination.py +148 -0
  74. cloud_dog_api_kit/streaming/__init__.py +28 -0
  75. cloud_dog_api_kit/streaming/events.py +47 -0
  76. cloud_dog_api_kit/streaming/jsonl.py +68 -0
  77. cloud_dog_api_kit/streaming/sse.py +102 -0
  78. cloud_dog_api_kit/testing/__init__.py +46 -0
  79. cloud_dog_api_kit/testing/conformance.py +156 -0
  80. cloud_dog_api_kit/testing/fixtures.py +90 -0
  81. cloud_dog_api_kit/testing/flows/__init__.py +32 -0
  82. cloud_dog_api_kit/testing/flows/auth_flow.py +41 -0
  83. cloud_dog_api_kit/testing/flows/crud_flow.py +50 -0
  84. cloud_dog_api_kit/testing/flows/job_flow.py +42 -0
  85. cloud_dog_api_kit/testing/flows/streaming_flow.py +42 -0
  86. cloud_dog_api_kit/traceability_ids.py +84 -0
  87. cloud_dog_api_kit/versioning/__init__.py +30 -0
  88. cloud_dog_api_kit/versioning/header.py +52 -0
  89. cloud_dog_api_kit/web/__init__.py +7 -0
  90. cloud_dog_api_kit/web/proxy.py +222 -0
  91. cloud_dog_api_kit/webhook/__init__.py +29 -0
  92. cloud_dog_api_kit/webhook/signature.py +149 -0
  93. cloud_dog_api_kit-0.13.0.dist-info/METADATA +27 -0
  94. cloud_dog_api_kit-0.13.0.dist-info/RECORD +98 -0
  95. cloud_dog_api_kit-0.13.0.dist-info/WHEEL +4 -0
  96. cloud_dog_api_kit-0.13.0.dist-info/licenses/LICENCE +190 -0
  97. cloud_dog_api_kit-0.13.0.dist-info/licenses/LICENSE +176 -0
  98. cloud_dog_api_kit-0.13.0.dist-info/licenses/NOTICE +7 -0
@@ -0,0 +1,149 @@
1
+ # Copyright 2026 Cloud-Dog, Viewdeck Engineering Limited
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ # cloud_dog_api_kit — Webhook signature verification middleware
16
+ #
17
+ # Licence: Proprietary — Cloud-Dog AI Platform
18
+ # Owner: Cloud-Dog AI
19
+ # Description: HMAC-SHA256 webhook verification with timestamp checks and
20
+ # replay detection.
21
+ # Related requirements: FR18.7
22
+ # Related architecture: SA1
23
+
24
+ """Webhook signature verification middleware."""
25
+
26
+ from __future__ import annotations
27
+
28
+ import hmac
29
+ import hashlib
30
+ import threading
31
+ import time
32
+ from typing import Any, Callable
33
+
34
+ from starlette.middleware.base import BaseHTTPMiddleware
35
+ from starlette.requests import Request
36
+ from starlette.responses import JSONResponse, Response
37
+
38
+ from cloud_dog_api_kit.envelopes.error import error_envelope
39
+
40
+
41
+ def compute_webhook_signature(secret: str, timestamp: int, body: bytes) -> str:
42
+ """Compute HMAC-SHA256 signature for webhook validation."""
43
+ payload = f"{timestamp}.".encode("utf-8") + body
44
+ digest = hmac.new(secret.encode("utf-8"), payload, hashlib.sha256).hexdigest()
45
+ return digest
46
+
47
+
48
+ class _ReplayCache:
49
+ """TTL cache for replay detection."""
50
+
51
+ def __init__(self, ttl_seconds: int, clock: Callable[[], float]) -> None:
52
+ self._ttl_seconds = ttl_seconds
53
+ self._clock = clock
54
+ self._cache: dict[str, float] = {}
55
+ self._lock = threading.Lock()
56
+
57
+ def mark_once(self, key: str) -> bool:
58
+ """Record signature key and return False if already seen."""
59
+ now = self._clock()
60
+ with self._lock:
61
+ expired = [k for k, expires_at in self._cache.items() if expires_at <= now]
62
+ for expired_key in expired:
63
+ self._cache.pop(expired_key, None)
64
+ if key in self._cache:
65
+ return False
66
+ self._cache[key] = now + self._ttl_seconds
67
+ return True
68
+
69
+
70
+ class WebhookSignatureMiddleware(BaseHTTPMiddleware):
71
+ """Validate webhook signatures and prevent replay attacks.
72
+
73
+ Args:
74
+ app: ASGI app.
75
+ secret: Shared webhook secret.
76
+ protected_paths: Optional exact paths requiring verification.
77
+ signature_header: Header containing the signature.
78
+ timestamp_header: Header containing request timestamp.
79
+ tolerance_seconds: Max allowed skew for timestamp validation.
80
+ replay_ttl_seconds: Replay cache retention duration.
81
+ clock: Injectable clock for tests.
82
+ """
83
+
84
+ def __init__(
85
+ self,
86
+ app: Any,
87
+ *,
88
+ secret: str,
89
+ protected_paths: set[str] | None = None,
90
+ signature_header: str = "X-Signature",
91
+ timestamp_header: str = "X-Timestamp",
92
+ tolerance_seconds: int = 300,
93
+ replay_ttl_seconds: int = 600,
94
+ clock: Callable[[], float] | None = None,
95
+ ) -> None:
96
+ super().__init__(app)
97
+ self._secret = secret
98
+ self._protected_paths = protected_paths
99
+ self._signature_header = signature_header
100
+ self._timestamp_header = timestamp_header
101
+ self._tolerance_seconds = tolerance_seconds
102
+ self._clock = clock or time.time
103
+ self._replay_cache = _ReplayCache(ttl_seconds=replay_ttl_seconds, clock=self._clock)
104
+
105
+ async def dispatch(self, request: Request, call_next: Callable) -> Response:
106
+ """Verify signature/timestamp/replay for protected routes."""
107
+ if self._protected_paths is not None and request.url.path not in self._protected_paths:
108
+ return await call_next(request)
109
+
110
+ signature = request.headers.get(self._signature_header, "")
111
+ timestamp_raw = request.headers.get(self._timestamp_header, "")
112
+ if not signature or not timestamp_raw:
113
+ return self._unauthorised_response(request, "Missing webhook signature headers")
114
+
115
+ try:
116
+ timestamp = int(timestamp_raw)
117
+ except ValueError:
118
+ return self._unauthorised_response(request, "Invalid webhook timestamp")
119
+
120
+ now = int(self._clock())
121
+ if abs(now - timestamp) > self._tolerance_seconds:
122
+ return self._unauthorised_response(request, "Expired webhook timestamp")
123
+
124
+ body = await request.body()
125
+ provided = signature.removeprefix("sha256=").strip()
126
+ expected = compute_webhook_signature(self._secret, timestamp, body)
127
+ if not hmac.compare_digest(provided, expected):
128
+ return self._unauthorised_response(request, "Invalid webhook signature")
129
+
130
+ replay_key = f"{timestamp}:{provided}"
131
+ if not self._replay_cache.mark_once(replay_key):
132
+ return self._unauthorised_response(request, "Replay detected")
133
+
134
+ request.state.webhook_verified = True
135
+ return await call_next(request)
136
+
137
+ def _unauthorised_response(self, request: Request, message: str) -> JSONResponse:
138
+ """Create a standard 401 envelope for webhook verification failures."""
139
+ request_id = getattr(request.state, "request_id", "")
140
+ correlation_id = getattr(request.state, "correlation_id", None)
141
+ return JSONResponse(
142
+ status_code=401,
143
+ content=error_envelope(
144
+ code="UNAUTHENTICATED",
145
+ message=message,
146
+ request_id=request_id,
147
+ correlation_id=correlation_id,
148
+ ),
149
+ )
@@ -0,0 +1,27 @@
1
+ Metadata-Version: 2.4
2
+ Name: cloud-dog-api-kit
3
+ Version: 0.13.0
4
+ Summary: PS-20 API toolkit for Cloud-Dog services
5
+ Project-URL: Source, https://github.com/cloud-dog-ai/platform-api-kit
6
+ Author: Cloud-Dog, Viewdeck Engineering Limited
7
+ License: Apache-2.0
8
+ License-File: LICENCE
9
+ License-File: LICENSE
10
+ License-File: NOTICE
11
+ Requires-Python: >=3.10
12
+ Requires-Dist: fastapi>=0.110
13
+ Requires-Dist: httpx>=0.27
14
+ Requires-Dist: pydantic>=2.0
15
+ Requires-Dist: starlette>=0.36
16
+ Provides-Extra: config
17
+ Requires-Dist: cloud-dog-config>=0.2.0; extra == 'config'
18
+ Provides-Extra: dev
19
+ Requires-Dist: pytest-asyncio>=0.23; extra == 'dev'
20
+ Requires-Dist: pytest-cov>=5.0; extra == 'dev'
21
+ Requires-Dist: pytest>=8.0; extra == 'dev'
22
+ Requires-Dist: ruff>=0.4; extra == 'dev'
23
+ Requires-Dist: uvicorn>=0.29; extra == 'dev'
24
+ Provides-Extra: idam
25
+ Requires-Dist: cloud-dog-idam>=0.1.0; extra == 'idam'
26
+ Provides-Extra: logging
27
+ Requires-Dist: cloud-dog-logging>=0.2.0; extra == 'logging'
@@ -0,0 +1,98 @@
1
+ cloud_dog_api_kit/__init__.py,sha256=4y6eVUXMLWLbBTCnIl3oEGRH0bx-U8Oh1TCM36RmdyY,5128
2
+ cloud_dog_api_kit/config.py,sha256=rfpCK9dE4NwymkKP9rZnb295ijSWKcL6481U1UaFZrw,2322
3
+ cloud_dog_api_kit/factory.py,sha256=QH-T2PKyo_G17fFpJOrx9ad2FJvRxPw_t9QmimcZgh4,5829
4
+ cloud_dog_api_kit/traceability_ids.py,sha256=whvotUsbBf83IC6LVquEZV4TDcu5QNgQUUwCKq-gPBE,2016
5
+ cloud_dog_api_kit/a2a/__init__.py,sha256=C6BGErnKokdk99sWkmE5R0UW5SfDRDMW7_kGZNqfvrg,1648
6
+ cloud_dog_api_kit/a2a/card.py,sha256=HzmViQPVwKwbM8Z739BdD3qexjfFhQLV41F4ialBo4U,4422
7
+ cloud_dog_api_kit/a2a/events.py,sha256=2n0d25HH_IHetlEm5ggjg7Px2OLviO2JzkiezUM3I4k,47157
8
+ cloud_dog_api_kit/a2a/gateway.py,sha256=38PKm14dA-67BePpkSOKjTC6QX5dFtIBGcpN8yQ7608,3372
9
+ cloud_dog_api_kit/a2a/skill_audit.py,sha256=akmf7UJL5YhFX7tz4IPSs9EUnoruLyVDBzjrkzcVm0k,3812
10
+ cloud_dog_api_kit/auth/__init__.py,sha256=VMqCywl6thyddCFZGU-BIlEayRb8XMcTzFeoIGzIr-s,1351
11
+ cloud_dog_api_kit/auth/dependency.py,sha256=mwlDvYrpdOQfeEPdw1e6_QUM1R1os_edmMc7EB4kpuk,4756
12
+ cloud_dog_api_kit/auth/rbac.py,sha256=rDVCmhPhrXJchP4-qMXMlnbXoC8gLcgZ6ERchzotHRo,3643
13
+ cloud_dog_api_kit/auth/service_auth.py,sha256=5kTTY3RHGlGM10MHsXYMa1pZsNeVsbQKAh_MsQYztqY,1874
14
+ cloud_dog_api_kit/clients/__init__.py,sha256=B5T385Bo0-RKYX47b_OPNgyV47FTvygEKsiclPcrehk,1112
15
+ cloud_dog_api_kit/clients/circuit_breaker.py,sha256=wqa0BpmK9DDILHnovG5cxSKxeMN9a96kwSwhNs8FOUA,1253
16
+ cloud_dog_api_kit/clients/http_client.py,sha256=P-MLmu5m82cj-vzv3NInslvsNOx5MG3RfcpgnP8A7Zg,3874
17
+ cloud_dog_api_kit/clients/retry.py,sha256=mFfbo_McKNBBf0CHnUZJIeUEM9fdMLbWLv-vwYVogXY,2775
18
+ cloud_dog_api_kit/compat/__init__.py,sha256=pNPPbEcos8MmrAJK8HD6u_DD9FLr80zShpBZOYMTqv4,1376
19
+ cloud_dog_api_kit/compat/envelope.py,sha256=bOJt-26eW_3leKllDB-_ItPhm3JIy479WdAnj1Y2110,4512
20
+ cloud_dog_api_kit/compat/profile.py,sha256=sVtXihFuMR1UOINNQVSaNhOc_gpUA-L4MU8ou_vYks4,3667
21
+ cloud_dog_api_kit/compat/routes.py,sha256=daPBt30KxqUX_oHPMwfQnE4jhv_hIvrXVBMKCDh7ALc,3456
22
+ cloud_dog_api_kit/correlation/__init__.py,sha256=L8o-vL_uKMBWhTa0gOQZsQNJa8VLpOovemWzo63fLEw,1551
23
+ cloud_dog_api_kit/correlation/context.py,sha256=VhvYgFEfDbM4cTiHp7Ev3pWD9N-CmS70VBXhIv0j6RQ,3074
24
+ cloud_dog_api_kit/correlation/middleware.py,sha256=8NIBFSnR7KvtSPUKhTxHZYNO9tFBbtfl_SPBr0z5XzQ,5028
25
+ cloud_dog_api_kit/envelopes/__init__.py,sha256=MDsoKUvSo33RfUEhw2K_lsJlle8mL8hQJG3P1QYXsIM,1267
26
+ cloud_dog_api_kit/envelopes/error.py,sha256=IlablvseIMVTgSrDzVYofpva7uU7jg9lVwCvC0r8xo0,2429
27
+ cloud_dog_api_kit/envelopes/success.py,sha256=pewTaaGIyquQl0ojdyu-rWe2xGNNG0WwTYPIXWiMWVo,2272
28
+ cloud_dog_api_kit/errors/__init__.py,sha256=hbvC0ohEzGIHWn_SkfYwa3CDa3LorwM8D8lJ73DuLYg,1543
29
+ cloud_dog_api_kit/errors/exceptions.py,sha256=qu4Sd1d-7kkpIborLsnk9-qRQNADpeoiexEOzh8X0tI,4888
30
+ cloud_dog_api_kit/errors/handler.py,sha256=iAg5_rvRtAFEjfhIfZhPChkb2WOquQwNoTFAAd5SQp4,4054
31
+ cloud_dog_api_kit/errors/taxonomy.py,sha256=qKSwiUdNVQs7EVZAQUa7hkB02ZDw75EzQDOK7ZOqaiU,2204
32
+ cloud_dog_api_kit/idempotency/__init__.py,sha256=yEqGwIJR8Bgc0x3oQBKA9lGlNZETSl2DIFJdJYJgyME,1188
33
+ cloud_dog_api_kit/idempotency/middleware.py,sha256=UMCkSxWbeL9DP8r2ik-_YwSoTzv3cCvoOIb48xVNv4w,3940
34
+ cloud_dog_api_kit/idempotency/store.py,sha256=5jjzZznIqaSY7vv2klyponzzfToPuwd0lOUCuHmPXWI,2948
35
+ cloud_dog_api_kit/lifecycle/__init__.py,sha256=9DqXo2jSQn5VMlwRnqBvOCCa_qhpTgG_AvmtbSLDT88,1295
36
+ cloud_dog_api_kit/lifecycle/hooks.py,sha256=4AXEOeDRdZsLRZRsiVq3qLXrIu2MYIOOR2b-Ty8oRRo,2770
37
+ cloud_dog_api_kit/lifecycle/shutdown.py,sha256=TxetGHl-AOHMH05opZk9iWvUUycaJ3wL-YxU0ZeeKKM,5973
38
+ cloud_dog_api_kit/mcp/__init__.py,sha256=sGu1ww6Ur5kjV53upOHJ4Zuq5cDlDTvzGd0m4riuhOY,3621
39
+ cloud_dog_api_kit/mcp/async_jobs.py,sha256=UrR75SRkU3dDejaTtWxsH3I2H0a1OoMcbDLhiqVxGmw,4404
40
+ cloud_dog_api_kit/mcp/client_sdk.py,sha256=aBww8OBgw3CiQ86xIMKJhaEd3PajQ6wdTvKUipyMUEw,8762
41
+ cloud_dog_api_kit/mcp/contract.py,sha256=3vV5aXfIyNK_ckv7mjDe7zUhoZn51Qv7OtFPGtRcowM,4081
42
+ cloud_dog_api_kit/mcp/error_mapper.py,sha256=vIFAmw787EmzM4UNKOiqqjm2AOo0LlzM6CJdHa2xT_I,3253
43
+ cloud_dog_api_kit/mcp/gateway.py,sha256=Nv_ogzvoOAnKQgiaAcUWWL6zaQrGc1IuX1JcLPFm1TE,4075
44
+ cloud_dog_api_kit/mcp/legacy_sse.py,sha256=d4WameoxBAGmgQ_-f0vGz4XCFQQKhtmC9GCUZDDasEQ,4918
45
+ cloud_dog_api_kit/mcp/session.py,sha256=tnhuwIrFa4zc-r6yH0poCBwFopojPiV2zRZinmBUa40,3038
46
+ cloud_dog_api_kit/mcp/sync_handler.py,sha256=fYOXcKSBh-V6I3SpHKGEM8BKJNkkH3dvNVQDGKziebs,9679
47
+ cloud_dog_api_kit/mcp/tool_audit.py,sha256=LgcfsQlR8STjODsyZIgp61OgMlxR0mlHW4rr-YhTO_s,4810
48
+ cloud_dog_api_kit/mcp/tool_router.py,sha256=cPM1vYGRvz80uzKr7oBTtXZkUwF5opQEo_P0SkfLJrA,7018
49
+ cloud_dog_api_kit/mcp/transport.py,sha256=mxeY9TeKYGRQysywq1sy5DNnWZClpk-tBvXONLTgFDQ,44467
50
+ cloud_dog_api_kit/mcp/client_transport/__init__.py,sha256=jr-HdYJMauyVOJqrl7v_8Pf9cTbU5xN3Fk9YDnPflGg,1612
51
+ cloud_dog_api_kit/mcp/client_transport/base.py,sha256=hC1CzA7UR3wlqChxuTit6Eyo2LX1y4-rp4J1K3viSy0,3728
52
+ cloud_dog_api_kit/mcp/client_transport/exceptions.py,sha256=VGsHHlCtS1pZrwmTS8rI7WYEkaSIxo6PpfvtV1CFAsA,1290
53
+ cloud_dog_api_kit/mcp/client_transport/http_jsonrpc.py,sha256=mHMyvyXDc6kAgT4v2in6LC8LUv7HFLMihAxfOq2f6-w,17287
54
+ cloud_dog_api_kit/mcp/client_transport/legacy_sse.py,sha256=7_2akr_Jg5_rMP83EDyGpS3Lqc47NEZC-H895_6Rqso,13569
55
+ cloud_dog_api_kit/mcp/client_transport/stdio.py,sha256=NtZxPEQB76WM0lyBMUUz_utdIVxliA2ebw6jAgMSfG0,12465
56
+ cloud_dog_api_kit/mcp/client_transport/streamable_http.py,sha256=ADyukD5aK49zQZr3UaKpKQhhuvq9zpVllo8lzENgVXg,32466
57
+ cloud_dog_api_kit/middleware/__init__.py,sha256=iU1c_tGbwd02qG0CUOAHF4tE4GsjVLqr2wxO0Pm_UAQ,1473
58
+ cloud_dog_api_kit/middleware/cors.py,sha256=LAnA9yqcI6YB8IkzQwwi1K03q942zHuSWaBq9W3TY9s,2442
59
+ cloud_dog_api_kit/middleware/logging.py,sha256=cdP4b-omHgRLPOeLQry1_h5kCenr4npqaFwH-ocD6n8,3306
60
+ cloud_dog_api_kit/middleware/request_size_limit.py,sha256=yXKFbaNeltPuv1xRBWxIoBjnLwrfha0ZGFaWdtWdfvk,3265
61
+ cloud_dog_api_kit/middleware/timeout.py,sha256=pbSdwBjNjVZN4qNwd5EzBrmIpO363bu4ThdlvkiJx5U,2720
62
+ cloud_dog_api_kit/middleware/timing.py,sha256=wA1Rrzc4XaniL1Yy-rj48aGbtuxmlAkWTP-d7nDTAJQ,1878
63
+ cloud_dog_api_kit/openapi/__init__.py,sha256=q6xXmCeOc8Z-6vNcBcKxpVqYMfM2I0p4Ai5VwfbxQHc,1168
64
+ cloud_dog_api_kit/openapi/customise.py,sha256=2T3IfhNU8hy2I2983ZZOk_IJ28ac2hsWvbc3iJAcyLY,2201
65
+ cloud_dog_api_kit/openapi/route.py,sha256=FXwq8Qqo2sLGsc20GFBr7fM1hsgooCkSO_TmwcRMjKY,1450
66
+ cloud_dog_api_kit/routers/__init__.py,sha256=cGniJiwiss6W3OVYOZA2bdUoo_eoqEZ6wj18JNmNi5M,1477
67
+ cloud_dog_api_kit/routers/crud.py,sha256=G7bi6DRFlPR3GFITZzIxbUQWUMnELUYo7aQ5_si30Bk,6698
68
+ cloud_dog_api_kit/routers/health.py,sha256=JPJBFviXkC3n3DN702umJClonI8XdPj19B1Md5JxymY,5430
69
+ cloud_dog_api_kit/routers/jobs.py,sha256=HJVyUpckCE4lp0l-Z6wOXy6Apd2FoUxznfSAfY_zaiw,2366
70
+ cloud_dog_api_kit/routers/version.py,sha256=SV1w_GD6ci9Ls7bdai9LdWeZg5WDnJ08rylpVA1GBYE,1500
71
+ cloud_dog_api_kit/schemas/__init__.py,sha256=bYANy9w8V0w_4n_eiyGsbG2_TCaJoKN-MksCFw1Ode0,1227
72
+ cloud_dog_api_kit/schemas/envelopes.py,sha256=h7NLb7SY6O4mGcQGFy78l7L6AIUd3ATVtuhRXI7bKE4,1262
73
+ cloud_dog_api_kit/schemas/filters.py,sha256=2Hw8pHxgKT0hlhCLQCk4lLQRuwReqEH1QfXb7v_En68,3167
74
+ cloud_dog_api_kit/schemas/pagination.py,sha256=euiAP7JTT5C95wPtn7gDE6Stzq7NyKR8anvPj3h9JMI,4070
75
+ cloud_dog_api_kit/streaming/__init__.py,sha256=jhZiwK3DsJlQ9nngdJIz-VCZsejxsPlPm6-LKpn9-dQ,1141
76
+ cloud_dog_api_kit/streaming/events.py,sha256=junpzB8R-WORjqoK0uFrKHI89OSZ7FrACLWz9O7xa6U,1487
77
+ cloud_dog_api_kit/streaming/jsonl.py,sha256=yYuErY3Fks5zjItCKXiGyQdfP3Os6t7TeS1wYWAgu-M,2253
78
+ cloud_dog_api_kit/streaming/sse.py,sha256=CUvbltUA-CzxyyArHqVEZD3Sb8WH-iiFD35lciI_ZaU,3499
79
+ cloud_dog_api_kit/testing/__init__.py,sha256=5LcOR7-dYQzZycDMDHasVpdUsO3N4kAtnNQcLJewAVE,1627
80
+ cloud_dog_api_kit/testing/conformance.py,sha256=LjQAbN-ioFgQ48_LtSCxw-yY25AgFOKWsM9EMg4IEi4,4965
81
+ cloud_dog_api_kit/testing/fixtures.py,sha256=dDaVzf8_ZKzMyGE4ldHv4orDvUIrkjNChgcBj0oaA_s,2655
82
+ cloud_dog_api_kit/testing/flows/__init__.py,sha256=X5l-0IiWhtpheq59ZODlgeejSHcL62Li-MXfN6p7ge4,1284
83
+ cloud_dog_api_kit/testing/flows/auth_flow.py,sha256=S43-c5vrm7PsT0CJaVIWElJaOSnb2Aewfs0Xt_GaI-g,1317
84
+ cloud_dog_api_kit/testing/flows/crud_flow.py,sha256=lLt7IxRCGxRjsNNgBraquJ-5f8p8mUr5f781IjP1wy8,1667
85
+ cloud_dog_api_kit/testing/flows/job_flow.py,sha256=cvA1n9lmu66un-29aFtz22vWF4GbLxIQld8ryRuIvDQ,1311
86
+ cloud_dog_api_kit/testing/flows/streaming_flow.py,sha256=9r88cns2knQ_WNm0H3LxMOIKG3_1dO3oBZ6IEA7Mvb8,1296
87
+ cloud_dog_api_kit/versioning/__init__.py,sha256=n5LyJMIhc3Oh-asY-cOeB8fJ5bL7KQicCFH5n4g6bM4,1079
88
+ cloud_dog_api_kit/versioning/header.py,sha256=W58JXFzjya9ANoZEPy30QprG5_c_oodee3AEfcNsU9E,1768
89
+ cloud_dog_api_kit/web/__init__.py,sha256=3NBcdGjXTmzCGYUn5Jpd4s7sg7n5AWueptERkw7TwDc,215
90
+ cloud_dog_api_kit/web/proxy.py,sha256=Qm0xbO8eUFUfUT2kxC_jifPE5DOx8pM9lxqsHl0ezHo,8152
91
+ cloud_dog_api_kit/webhook/__init__.py,sha256=FsHQpGv0MzH5kSVN25ZtKdwmqQcTlHEgy_rmKQLvGAM,1077
92
+ cloud_dog_api_kit/webhook/signature.py,sha256=dVHRAOQHlfDL4RwqnIwtW3dF0xIOms7NPboDbfFvIQk,5777
93
+ cloud_dog_api_kit-0.13.0.dist-info/METADATA,sha256=8l2zKLVx1f6tKoe9Cr-Wm2zEfpUlZ9pUHGOP8_B7_D8,944
94
+ cloud_dog_api_kit-0.13.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
95
+ cloud_dog_api_kit-0.13.0.dist-info/licenses/LICENCE,sha256=QkwWdbYtsHQjQcGUFZFov2kq33CQsKrZ-5UVPkLEP2A,10790
96
+ cloud_dog_api_kit-0.13.0.dist-info/licenses/LICENSE,sha256=nO7K5tWwoDVt7xkqhORHPQFkjUXVBqcpyUeL3jSgA74,9073
97
+ cloud_dog_api_kit-0.13.0.dist-info/licenses/NOTICE,sha256=bouObzodQ54cfGBb5acqAjoRJgE0qdQb-Tf19t0pR-k,259
98
+ cloud_dog_api_kit-0.13.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.28.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,190 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to the Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by the Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding any notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ Copyright 2026 Cloud-Dog, Viewdeck Engineering Limited
179
+
180
+ Licensed under the Apache License, Version 2.0 (the "License");
181
+ you may not use this file except in compliance with the License.
182
+ You may obtain a copy of the License at
183
+
184
+ http://www.apache.org/licenses/LICENSE-2.0
185
+
186
+ Unless required by applicable law or agreed to in writing, software
187
+ distributed under the License is distributed on an "AS IS" BASIS,
188
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
189
+ See the License for the specific language governing permissions and
190
+ limitations under the License.
@@ -0,0 +1,176 @@
1
+ Copyright (c) 2026 Cloud-Dog, Viewdeck Engineering Limited
2
+
3
+ Apache License
4
+ Version 2.0, January 2004
5
+ http://www.apache.org/licenses/
6
+
7
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
8
+
9
+ 1. Definitions.
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+
136
+ 6. Trademarks. This License does not grant permission to use the trade
137
+ names, trademarks, service marks, or product names of the Licensor,
138
+ except as required for reasonable and customary use in describing the
139
+ origin of the Work and reproducing the content of the NOTICE file.
140
+
141
+ 7. Disclaimer of Warranty. Unless required by applicable law or
142
+ agreed to in writing, Licensor provides the Work (and each
143
+ Contributor provides its Contributions) on an "AS IS" BASIS,
144
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
145
+ implied, including, without limitation, any warranties or conditions
146
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
147
+ PARTICULAR PURPOSE. You are solely responsible for determining the
148
+ appropriateness of using or redistributing the Work and assume any
149
+ risks associated with Your exercise of permissions under this License.
150
+
151
+ 8. Limitation of Liability. In no event and under no legal theory,
152
+ whether in tort (including negligence), contract, or otherwise,
153
+ unless required by applicable law (such as deliberate and grossly
154
+ negligent acts) or agreed to in writing, shall any Contributor be
155
+ liable to You for damages, including any direct, indirect, special,
156
+ incidental, or consequential damages of any character arising as a
157
+ result of this License or out of the use or inability to use the
158
+ Work (including but not limited to damages for loss of goodwill,
159
+ work stoppage, computer failure or malfunction, or any and all
160
+ other commercial damages or losses), even if such Contributor
161
+ has been advised of the possibility of such damages.
162
+
163
+ 9. Accepting Warranty or Additional Liability. While redistributing
164
+ the Work or Derivative Works thereof, You may choose to offer,
165
+ and charge a fee for, acceptance of support, warranty, indemnity,
166
+ or other liability obligations and/or rights consistent with this
167
+ License. However, in accepting such obligations, You may act only
168
+ on Your own behalf and on Your sole responsibility, not on behalf
169
+ of any other Contributor, and only if You agree to indemnify,
170
+ defend, and hold each Contributor harmless for any liability
171
+ incurred by, or claims asserted against, such Contributor by reason
172
+ of your accepting any such warranty or additional liability.
173
+
174
+ END OF TERMS AND CONDITIONS
175
+
176
+ Copyright (C) Cloud-Dog, Viewdeck Engineering Ltd.
@@ -0,0 +1,7 @@
1
+ Cloud-Dog AI — platform-platform-api-kit
2
+ Copyright 2026 Cloud-Dog, Viewdeck Engineering Limited
3
+
4
+ This product includes software developed at
5
+ Cloud-Dog / Viewdeck Engineering Limited (https://cloud-dog.net/).
6
+
7
+ Licensed under the Apache License, Version 2.0.