From cdcfee727b8e2ffa4274d982f2c7b9fcdf0bf2d7 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Sun, 2 Aug 2026 01:18:01 +0000 Subject: [PATCH 1/2] feat(api): api update --- .stats.yml | 4 ++-- .../MutualFund/Scheme/AdditionalInfo.php | 20 +++++++++++++++++++ 2 files changed, 22 insertions(+), 2 deletions(-) diff --git a/.stats.yml b/.stats.yml index 93de6b1..e7b8198 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 20 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cas-parser/cas-parser-26d0931f3488af784c16303683cbf24225c727615fd32ee071144974e7c59670.yml -openapi_spec_hash: 242a5f4d982645a25e0d66ef088940a5 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cas-parser/cas-parser-cd8e042a9746bbe9bd180614fccc7597b85f4e8f6a29da6cd2f4cbf831fb2fbe.yml +openapi_spec_hash: e27c0d9cd8cdeb348c88e6c4e8777e39 config_hash: 5509bb7a961ae2e79114b24c381606d4 diff --git a/src/CamsKfintech/UnifiedResponse/MutualFund/Scheme/AdditionalInfo.php b/src/CamsKfintech/UnifiedResponse/MutualFund/Scheme/AdditionalInfo.php index 91d9117..eecc457 100644 --- a/src/CamsKfintech/UnifiedResponse/MutualFund/Scheme/AdditionalInfo.php +++ b/src/CamsKfintech/UnifiedResponse/MutualFund/Scheme/AdditionalInfo.php @@ -15,6 +15,7 @@ * advisor?: string|null, * amfi?: string|null, * closeUnits?: float|null, + * isDemat?: bool|null, * openUnits?: float|null, * rtaCode?: string|null, * } @@ -42,6 +43,12 @@ final class AdditionalInfo implements BaseModel #[Optional('close_units', nullable: true)] public ?float $closeUnits; + /** + * Whether the scheme is held in demat form (CAMS/KFintech). true = Demat, false = Non-Demat, null = not specified. + */ + #[Optional('is_demat', nullable: true)] + public ?bool $isDemat; + /** * Opening balance units for the statement period. */ @@ -68,6 +75,7 @@ public static function with( ?string $advisor = null, ?string $amfi = null, ?float $closeUnits = null, + ?bool $isDemat = null, ?float $openUnits = null, ?string $rtaCode = null, ): self { @@ -76,6 +84,7 @@ public static function with( null !== $advisor && $self['advisor'] = $advisor; null !== $amfi && $self['amfi'] = $amfi; null !== $closeUnits && $self['closeUnits'] = $closeUnits; + null !== $isDemat && $self['isDemat'] = $isDemat; null !== $openUnits && $self['openUnits'] = $openUnits; null !== $rtaCode && $self['rtaCode'] = $rtaCode; @@ -115,6 +124,17 @@ public function withCloseUnits(?float $closeUnits): self return $self; } + /** + * Whether the scheme is held in demat form (CAMS/KFintech). true = Demat, false = Non-Demat, null = not specified. + */ + public function withIsDemat(?bool $isDemat): self + { + $self = clone $this; + $self['isDemat'] = $isDemat; + + return $self; + } + /** * Opening balance units for the statement period. */ From 6ce3a0dbfda24ddedf8558583e47151a2531aec2 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Sun, 2 Aug 2026 01:18:22 +0000 Subject: [PATCH 2/2] release: 0.10.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ src/Version.php | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 6d78745..091cfb1 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.9.0" + ".": "0.10.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 0396d31..b1c925e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.10.0 (2026-08-02) + +Full Changelog: [v0.9.0...v0.10.0](https://github.com/CASParser/cas-parser-php/compare/v0.9.0...v0.10.0) + +### Features + +* **api:** api update ([cdcfee7](https://github.com/CASParser/cas-parser-php/commit/cdcfee727b8e2ffa4274d982f2c7b9fcdf0bf2d7)) + ## 0.9.0 (2026-07-26) Full Changelog: [v0.8.0...v0.9.0](https://github.com/CASParser/cas-parser-php/compare/v0.8.0...v0.9.0) diff --git a/src/Version.php b/src/Version.php index 4a479e3..fabeb74 100644 --- a/src/Version.php +++ b/src/Version.php @@ -5,5 +5,5 @@ namespace CasParser; // x-release-please-start-version -const VERSION = '0.9.0'; +const VERSION = '0.10.0'; // x-release-please-end