-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcams-kfintech.ts
More file actions
965 lines (794 loc) · 19.1 KB
/
cams-kfintech.ts
File metadata and controls
965 lines (794 loc) · 19.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from '../core/resource';
import * as CamsKfintechAPI from './cams-kfintech';
import { APIPromise } from '../core/api-promise';
import { RequestOptions } from '../internal/request-options';
import { maybeMultipartFormRequestOptions } from '../internal/uploads';
/**
* Endpoints for parsing CAS PDF files from different sources.
*/
export class CamsKfintech extends APIResource {
/**
* This endpoint specifically parses CAMS/KFintech CAS (Consolidated Account
* Statement) PDF files and returns data in a unified format. Use this endpoint
* when you know the PDF is from CAMS or KFintech.
*/
parse(body: CamsKfintechParseParams, options?: RequestOptions): APIPromise<UnifiedResponse> {
return this._client.post(
'/v4/cams_kfintech/parse',
maybeMultipartFormRequestOptions({ body, ...options }, this._client),
);
}
}
export interface LinkedHolder {
/**
* Name of the account holder
*/
name?: string;
/**
* PAN of the account holder
*/
pan?: string;
}
/**
* Unified transaction schema for all holding types (MF folios, equities, bonds,
* etc.)
*/
export interface Transaction {
/**
* Additional transaction-specific fields that vary by source
*/
additional_info?: Transaction.AdditionalInfo;
/**
* Transaction amount in currency (computed from units × price/NAV)
*/
amount?: number | null;
/**
* Balance units after transaction
*/
balance?: number;
/**
* Transaction date (YYYY-MM-DD)
*/
date?: string;
/**
* Transaction description/particulars
*/
description?: string;
/**
* Dividend rate (for DIVIDEND_PAYOUT transactions)
*/
dividend_rate?: number | null;
/**
* NAV/price per unit on transaction date
*/
nav?: number | null;
/**
* Transaction type. Possible values are PURCHASE, PURCHASE_SIP, REDEMPTION,
* SWITCH_IN, SWITCH_IN_MERGER, SWITCH_OUT, SWITCH_OUT_MERGER, DIVIDEND_PAYOUT,
* DIVIDEND_REINVEST, SEGREGATION, STAMP_DUTY_TAX, TDS_TAX, STT_TAX, MISC,
* REVERSAL, UNKNOWN.
*/
type?:
| 'PURCHASE'
| 'PURCHASE_SIP'
| 'REDEMPTION'
| 'SWITCH_IN'
| 'SWITCH_IN_MERGER'
| 'SWITCH_OUT'
| 'SWITCH_OUT_MERGER'
| 'DIVIDEND_PAYOUT'
| 'DIVIDEND_REINVEST'
| 'SEGREGATION'
| 'STAMP_DUTY_TAX'
| 'TDS_TAX'
| 'STT_TAX'
| 'MISC'
| 'REVERSAL'
| 'UNKNOWN';
/**
* Number of units involved in transaction
*/
units?: number;
}
export namespace Transaction {
/**
* Additional transaction-specific fields that vary by source
*/
export interface AdditionalInfo {
/**
* Capital withdrawal amount (CDSL MF transactions)
*/
capital_withdrawal?: number;
/**
* Units credited (demat transactions)
*/
credit?: number;
/**
* Units debited (demat transactions)
*/
debit?: number;
/**
* Income distribution amount (CDSL MF transactions)
*/
income_distribution?: number;
/**
* Order/transaction reference number (demat transactions)
*/
order_no?: string;
/**
* Price per unit (NSDL/CDSL MF transactions)
*/
price?: number;
/**
* Stamp duty charged
*/
stamp_duty?: number;
}
}
export interface UnifiedResponse {
demat_accounts?: Array<UnifiedResponse.DematAccount>;
insurance?: UnifiedResponse.Insurance;
investor?: UnifiedResponse.Investor;
meta?: UnifiedResponse.Meta;
mutual_funds?: Array<UnifiedResponse.MutualFund>;
/**
* List of NPS accounts
*/
nps?: Array<UnifiedResponse.Np>;
summary?: UnifiedResponse.Summary;
}
export namespace UnifiedResponse {
export interface DematAccount {
/**
* Additional information specific to the demat account type
*/
additional_info?: DematAccount.AdditionalInfo;
/**
* Beneficiary Owner ID (primarily for CDSL)
*/
bo_id?: string;
/**
* Client ID
*/
client_id?: string;
/**
* Type of demat account
*/
demat_type?: 'NSDL' | 'CDSL';
/**
* Depository Participant ID
*/
dp_id?: string;
/**
* Depository Participant name
*/
dp_name?: string;
holdings?: DematAccount.Holdings;
/**
* List of account holders linked to this demat account
*/
linked_holders?: Array<CamsKfintechAPI.LinkedHolder>;
/**
* Total value of the demat account
*/
value?: number;
}
export namespace DematAccount {
/**
* Additional information specific to the demat account type
*/
export interface AdditionalInfo {
/**
* Beneficiary Owner status (CDSL)
*/
bo_status?: string;
/**
* Beneficiary Owner sub-status (CDSL)
*/
bo_sub_status?: string;
/**
* Beneficiary Owner type (CDSL)
*/
bo_type?: string;
/**
* Basic Services Demat Account status (CDSL)
*/
bsda?: string;
/**
* Email associated with the demat account (CDSL)
*/
email?: string;
/**
* List of linked PAN numbers (NSDL)
*/
linked_pans?: Array<string>;
/**
* Nominee details (CDSL)
*/
nominee?: string;
/**
* Account status (CDSL)
*/
status?: string;
}
export interface Holdings {
aifs?: Array<Holdings.Aif>;
corporate_bonds?: Array<Holdings.CorporateBond>;
demat_mutual_funds?: Array<Holdings.DematMutualFund>;
equities?: Array<Holdings.Equity>;
government_securities?: Array<Holdings.GovernmentSecurity>;
}
export namespace Holdings {
export interface Aif {
/**
* Additional information specific to the AIF
*/
additional_info?: Aif.AdditionalInfo;
/**
* ISIN code of the AIF
*/
isin?: string;
/**
* Name of the AIF
*/
name?: string;
/**
* List of transactions for this holding (beta)
*/
transactions?: Array<CamsKfintechAPI.Transaction>;
/**
* Number of units held
*/
units?: number;
/**
* Current market value of the holding
*/
value?: number;
}
export namespace Aif {
/**
* Additional information specific to the AIF
*/
export interface AdditionalInfo {
/**
* Closing balance units for the statement period (beta)
*/
close_units?: number | null;
/**
* Opening balance units for the statement period (beta)
*/
open_units?: number | null;
}
}
export interface CorporateBond {
/**
* Additional information specific to the corporate bond
*/
additional_info?: CorporateBond.AdditionalInfo;
/**
* ISIN code of the corporate bond
*/
isin?: string;
/**
* Name of the corporate bond
*/
name?: string;
/**
* List of transactions for this holding (beta)
*/
transactions?: Array<CamsKfintechAPI.Transaction>;
/**
* Number of units held
*/
units?: number;
/**
* Current market value of the holding
*/
value?: number;
}
export namespace CorporateBond {
/**
* Additional information specific to the corporate bond
*/
export interface AdditionalInfo {
/**
* Closing balance units for the statement period (beta)
*/
close_units?: number | null;
/**
* Opening balance units for the statement period (beta)
*/
open_units?: number | null;
}
}
export interface DematMutualFund {
/**
* Additional information specific to the mutual fund
*/
additional_info?: DematMutualFund.AdditionalInfo;
/**
* ISIN code of the mutual fund
*/
isin?: string;
/**
* Name of the mutual fund
*/
name?: string;
/**
* List of transactions for this holding (beta)
*/
transactions?: Array<CamsKfintechAPI.Transaction>;
/**
* Number of units held
*/
units?: number;
/**
* Current market value of the holding
*/
value?: number;
}
export namespace DematMutualFund {
/**
* Additional information specific to the mutual fund
*/
export interface AdditionalInfo {
/**
* Closing balance units for the statement period (beta)
*/
close_units?: number | null;
/**
* Opening balance units for the statement period (beta)
*/
open_units?: number | null;
}
}
export interface Equity {
/**
* Additional information specific to the equity
*/
additional_info?: Equity.AdditionalInfo;
/**
* ISIN code of the equity
*/
isin?: string;
/**
* Name of the equity
*/
name?: string;
/**
* List of transactions for this holding (beta)
*/
transactions?: Array<CamsKfintechAPI.Transaction>;
/**
* Number of units held
*/
units?: number;
/**
* Current market value of the holding
*/
value?: number;
}
export namespace Equity {
/**
* Additional information specific to the equity
*/
export interface AdditionalInfo {
/**
* Closing balance units for the statement period (beta)
*/
close_units?: number | null;
/**
* Opening balance units for the statement period (beta)
*/
open_units?: number | null;
}
}
export interface GovernmentSecurity {
/**
* Additional information specific to the government security
*/
additional_info?: GovernmentSecurity.AdditionalInfo;
/**
* ISIN code of the government security
*/
isin?: string;
/**
* Name of the government security
*/
name?: string;
/**
* List of transactions for this holding (beta)
*/
transactions?: Array<CamsKfintechAPI.Transaction>;
/**
* Number of units held
*/
units?: number;
/**
* Current market value of the holding
*/
value?: number;
}
export namespace GovernmentSecurity {
/**
* Additional information specific to the government security
*/
export interface AdditionalInfo {
/**
* Closing balance units for the statement period (beta)
*/
close_units?: number | null;
/**
* Opening balance units for the statement period (beta)
*/
open_units?: number | null;
}
}
}
}
export interface Insurance {
life_insurance_policies?: Array<Insurance.LifeInsurancePolicy>;
}
export namespace Insurance {
export interface LifeInsurancePolicy {
/**
* Additional information specific to the policy
*/
additional_info?: unknown;
/**
* Name of the life assured
*/
life_assured?: string;
/**
* Name of the insurance policy
*/
policy_name?: string;
/**
* Insurance policy number
*/
policy_number?: string;
/**
* Premium amount
*/
premium_amount?: number;
/**
* Frequency of premium payment (e.g., Annual, Monthly)
*/
premium_frequency?: string;
/**
* Insurance company name
*/
provider?: string;
/**
* Status of the policy (e.g., Active, Lapsed)
*/
status?: string;
/**
* Sum assured amount
*/
sum_assured?: number;
}
}
export interface Investor {
/**
* Address of the investor
*/
address?: string;
/**
* CAS ID of the investor (only for NSDL and CDSL)
*/
cas_id?: string;
/**
* Email address of the investor
*/
email?: string;
/**
* Mobile number of the investor
*/
mobile?: string;
/**
* Name of the investor
*/
name?: string;
/**
* PAN (Permanent Account Number) of the investor
*/
pan?: string;
/**
* Postal code of the investor's address
*/
pincode?: string;
}
export interface Meta {
/**
* Type of CAS detected and processed
*/
cas_type?: 'NSDL' | 'CDSL' | 'CAMS_KFINTECH';
/**
* Timestamp when the response was generated
*/
generated_at?: string;
statement_period?: Meta.StatementPeriod;
}
export namespace Meta {
export interface StatementPeriod {
/**
* Start date of the statement period
*/
from?: string;
/**
* End date of the statement period
*/
to?: string;
}
}
export interface MutualFund {
/**
* Additional folio information
*/
additional_info?: MutualFund.AdditionalInfo;
/**
* Asset Management Company name
*/
amc?: string;
/**
* Folio number
*/
folio_number?: string;
/**
* List of account holders linked to this mutual fund folio
*/
linked_holders?: Array<CamsKfintechAPI.LinkedHolder>;
/**
* Registrar and Transfer Agent name
*/
registrar?: string;
schemes?: Array<MutualFund.Scheme>;
/**
* Total value of the folio
*/
value?: number;
}
export namespace MutualFund {
/**
* Additional folio information
*/
export interface AdditionalInfo {
/**
* KYC status of the folio
*/
kyc?: string;
/**
* PAN associated with the folio
*/
pan?: string;
/**
* PAN KYC status
*/
pankyc?: string;
}
export interface Scheme {
/**
* Additional information specific to the scheme
*/
additional_info?: Scheme.AdditionalInfo;
/**
* Cost of investment
*/
cost?: number;
gain?: Scheme.Gain;
/**
* ISIN code of the scheme
*/
isin?: string;
/**
* Scheme name
*/
name?: string;
/**
* Net Asset Value per unit
*/
nav?: number;
/**
* List of nominees
*/
nominees?: Array<string>;
transactions?: Array<CamsKfintechAPI.Transaction>;
/**
* Type of mutual fund scheme
*/
type?: 'Equity' | 'Debt' | 'Hybrid' | 'Other';
/**
* Number of units held
*/
units?: number;
/**
* Current market value of the holding
*/
value?: number;
}
export namespace Scheme {
/**
* Additional information specific to the scheme
*/
export interface AdditionalInfo {
/**
* Financial advisor name (CAMS/KFintech)
*/
advisor?: string;
/**
* AMFI code for the scheme (CAMS/KFintech)
*/
amfi?: string;
/**
* Closing balance units for the statement period
*/
close_units?: number | null;
/**
* Opening balance units for the statement period
*/
open_units?: number | null;
/**
* RTA code for the scheme (CAMS/KFintech)
*/
rta_code?: string;
}
export interface Gain {
/**
* Absolute gain or loss
*/
absolute?: number;
/**
* Percentage gain or loss
*/
percentage?: number;
}
}
}
export interface Np {
/**
* Additional information specific to the NPS account
*/
additional_info?: unknown;
/**
* Central Record Keeping Agency name
*/
cra?: string;
funds?: Array<Np.Fund>;
/**
* List of account holders linked to this NPS account
*/
linked_holders?: Array<CamsKfintechAPI.LinkedHolder>;
/**
* Permanent Retirement Account Number (PRAN)
*/
pran?: string;
/**
* Total value of the NPS account
*/
value?: number;
}
export namespace Np {
export interface Fund {
/**
* Additional information specific to the NPS fund
*/
additional_info?: Fund.AdditionalInfo;
/**
* Cost of investment
*/
cost?: number;
/**
* Name of the NPS fund
*/
name?: string;
/**
* Net Asset Value per unit
*/
nav?: number;
/**
* Number of units held
*/
units?: number;
/**
* Current market value of the holding
*/
value?: number;
}
export namespace Fund {
/**
* Additional information specific to the NPS fund
*/
export interface AdditionalInfo {
/**
* Fund manager name
*/
manager?: string;
/**
* NPS tier (Tier I or Tier II)
*/
tier?: 1 | 2 | null;
}
}
}
export interface Summary {
accounts?: Summary.Accounts;
/**
* Total portfolio value across all accounts
*/
total_value?: number;
}
export namespace Summary {
export interface Accounts {
demat?: Accounts.Demat;
insurance?: Accounts.Insurance;
mutual_funds?: Accounts.MutualFunds;
nps?: Accounts.Nps;
}
export namespace Accounts {
export interface Demat {
/**
* Number of demat accounts
*/
count?: number;
/**
* Total value of demat accounts
*/
total_value?: number;
}
export interface Insurance {
/**
* Number of insurance policies
*/
count?: number;
/**
* Total value of insurance policies
*/
total_value?: number;
}
export interface MutualFunds {
/**
* Number of mutual fund folios
*/
count?: number;
/**
* Total value of mutual funds
*/
total_value?: number;
}
export interface Nps {
/**
* Number of NPS accounts
*/
count?: number;
/**
* Total value of NPS accounts
*/
total_value?: number;
}
}
}
}
export interface CamsKfintechParseParams {
/**
* Password for the PDF file (if required)
*/
password?: string;
/**
* Base64 encoded CAS PDF file (required if pdf_url not provided)
*/
pdf_file?: string;
/**
* URL to the CAS PDF file (required if pdf_file not provided)
*/
pdf_url?: string;
}
export declare namespace CamsKfintech {
export {
type LinkedHolder as LinkedHolder,
type Transaction as Transaction,
type UnifiedResponse as UnifiedResponse,
type CamsKfintechParseParams as CamsKfintechParseParams,
};
}