scordi-extension 1.15.3 → 1.15.6

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.
@@ -107,4 +107,2645 @@ export declare class CollectWorkflowResult<T = any> {
107
107
  timestamp: string;
108
108
  error?: string;
109
109
  }
110
+ export declare enum CurrencyCode {
111
+ USD = "USD",// 미국 달러
112
+ KRW = "KRW",// 한국 원
113
+ EUR = "EUR",// 유럽 유로
114
+ GBP = "GBP",// 영국 파운드 스털링
115
+ CAD = "CAD",// 캐나다 달러
116
+ CNY = "CNY",// 중국 위안
117
+ JPY = "JPY",// 일본 엔
118
+ VND = "VND",// 베트남 동
119
+ ARS = "ARS",// 아르헨티나 페소
120
+ INR = "INR",// 인도 루피
121
+ TWD = "TWD",// 대만 달러
122
+ AUD = "AUD",// 호주 달러
123
+ HKD = "HKD",// 홍콩 달러
124
+ IDR = "IDR",// 인도네시아 루피아
125
+ MXN = "MXN",// 멕시코 페소
126
+ NZD = "NZD",// 뉴질랜드 달러
127
+ SGD = "SGD",// 싱가포르 달러
128
+ CHF = "CHF",// 스위스 프랑
129
+ THB = "THB",// 태국 바트
130
+ BRL = "BRL",// 브라질 레알
131
+ TRY = "TRY",// 터키 리라
132
+ RUB = "RUB",// 러시아 루블
133
+ NOK = "NOK",// 노르웨이 크로네
134
+ DKK = "DKK",// 덴마크 크로네
135
+ SEK = "SEK",// 스웨덴 크로나
136
+ ILS = "ILS",// 이스라엘 세켈
137
+ ZAR = "ZAR",// 남아프리카 공화국 랜드
138
+ PLN = "PLN",// 폴란드 즐로티
139
+ PHP = "PHP",// 필리핀 페소
140
+ CZK = "CZK",// 체코 코루나
141
+ CLP = "CLP",// 칠레 페소
142
+ COP = "COP",// 콜롬비아 페소
143
+ EGP = "EGP",// 이집트 파운드
144
+ MYR = "MYR",// 말레이시아 링깃
145
+ HUF = "HUF",// 헝가리 포린트
146
+ AED = "AED",// 아랍에미리트 디르함
147
+ SAR = "SAR",// 사우디아라비아 리얄
148
+ RON = "RON",// 루마니아 레우
149
+ BGN = "BGN"
150
+ }
151
+ export type CurrencyInfo = {
152
+ code: CurrencyCode;
153
+ symbol: string;
154
+ local?: string;
155
+ abbreviation?: string;
156
+ format: string;
157
+ desc: string;
158
+ };
159
+ /**
160
+ * 금액 정보를 포함하는 통화 타입
161
+ * CurrencyInfo를 확장하여 실제 금액(amount)과 표시 텍스트(text)를 포함
162
+ */
163
+ export type CurrencyAmount = CurrencyInfo & {
164
+ amount: number;
165
+ text?: string;
166
+ };
167
+ /**
168
+ * format
169
+ * %s: symbol
170
+ * %u: amount
171
+ * %n: amount
172
+ *
173
+ * u, n이 섞여있는 휴먼에러 있음.
174
+ */
175
+ export declare const CurrencyInfoUsd: {
176
+ type: "object";
177
+ shape: {
178
+ code: {
179
+ type: "string";
180
+ enum: readonly ["USD"];
181
+ description: string;
182
+ };
183
+ symbol: {
184
+ type: "string";
185
+ enum: readonly ["$"];
186
+ description: string;
187
+ };
188
+ format: {
189
+ type: "string";
190
+ enum: readonly ["%s%u"];
191
+ description: string;
192
+ };
193
+ desc: {
194
+ type: "string";
195
+ description: string;
196
+ };
197
+ amount: {
198
+ type: "number";
199
+ description: string;
200
+ };
201
+ text: {
202
+ type: "string";
203
+ description: string;
204
+ };
205
+ };
206
+ };
207
+ export declare const CurrencyInfoEur: {
208
+ type: "object";
209
+ shape: {
210
+ code: {
211
+ type: "string";
212
+ enum: readonly ["EUR"];
213
+ description: string;
214
+ };
215
+ symbol: {
216
+ type: "string";
217
+ enum: readonly ["€"];
218
+ description: string;
219
+ };
220
+ format: {
221
+ type: "string";
222
+ enum: readonly ["%s%u"];
223
+ description: string;
224
+ };
225
+ desc: {
226
+ type: "string";
227
+ description: string;
228
+ };
229
+ amount: {
230
+ type: "number";
231
+ description: string;
232
+ };
233
+ text: {
234
+ type: "string";
235
+ description: string;
236
+ };
237
+ };
238
+ };
239
+ export declare const CurrencyInfoKrw: {
240
+ type: "object";
241
+ shape: {
242
+ code: {
243
+ type: "string";
244
+ enum: readonly ["KRW"];
245
+ description: string;
246
+ };
247
+ symbol: {
248
+ type: "string";
249
+ enum: readonly ["₩"];
250
+ description: string;
251
+ };
252
+ local: {
253
+ type: "string";
254
+ enum: readonly ["원"];
255
+ description: string;
256
+ };
257
+ format: {
258
+ type: "string";
259
+ enum: readonly ["%s%u"];
260
+ description: string;
261
+ };
262
+ desc: {
263
+ type: "string";
264
+ description: string;
265
+ };
266
+ amount: {
267
+ type: "number";
268
+ description: string;
269
+ };
270
+ text: {
271
+ type: "string";
272
+ description: string;
273
+ };
274
+ };
275
+ };
276
+ export declare const CurrencyInfoGbp: {
277
+ type: "object";
278
+ shape: {
279
+ code: {
280
+ type: "string";
281
+ enum: readonly ["GBP"];
282
+ description: string;
283
+ };
284
+ symbol: {
285
+ type: "string";
286
+ enum: readonly ["£"];
287
+ description: string;
288
+ };
289
+ format: {
290
+ type: "string";
291
+ enum: readonly ["%s%u"];
292
+ description: string;
293
+ };
294
+ desc: {
295
+ type: "string";
296
+ description: string;
297
+ };
298
+ amount: {
299
+ type: "number";
300
+ description: string;
301
+ };
302
+ text: {
303
+ type: "string";
304
+ description: string;
305
+ };
306
+ };
307
+ };
308
+ export declare const CurrencyInfoCad: {
309
+ type: "object";
310
+ shape: {
311
+ code: {
312
+ type: "string";
313
+ enum: readonly ["CAD"];
314
+ description: string;
315
+ };
316
+ symbol: {
317
+ type: "string";
318
+ enum: readonly ["$"];
319
+ description: string;
320
+ };
321
+ format: {
322
+ type: "string";
323
+ enum: readonly ["%s%u"];
324
+ description: string;
325
+ };
326
+ desc: {
327
+ type: "string";
328
+ description: string;
329
+ };
330
+ amount: {
331
+ type: "number";
332
+ description: string;
333
+ };
334
+ text: {
335
+ type: "string";
336
+ description: string;
337
+ };
338
+ };
339
+ };
340
+ export declare const CurrencyInfoCny: {
341
+ type: "object";
342
+ shape: {
343
+ code: {
344
+ type: "string";
345
+ enum: readonly ["CNY"];
346
+ description: string;
347
+ };
348
+ symbol: {
349
+ type: "string";
350
+ enum: readonly ["¥"];
351
+ description: string;
352
+ };
353
+ local: {
354
+ type: "string";
355
+ enum: readonly ["元"];
356
+ description: string;
357
+ };
358
+ format: {
359
+ type: "string";
360
+ enum: readonly ["%s%u"];
361
+ description: string;
362
+ };
363
+ desc: {
364
+ type: "string";
365
+ description: string;
366
+ };
367
+ amount: {
368
+ type: "number";
369
+ description: string;
370
+ };
371
+ text: {
372
+ type: "string";
373
+ description: string;
374
+ };
375
+ };
376
+ };
377
+ export declare const CurrencyInfoJpy: {
378
+ type: "object";
379
+ shape: {
380
+ code: {
381
+ type: "string";
382
+ enum: readonly ["JPY"];
383
+ description: string;
384
+ };
385
+ symbol: {
386
+ type: "string";
387
+ enum: readonly ["¥"];
388
+ description: string;
389
+ };
390
+ local: {
391
+ type: "string";
392
+ enum: readonly ["円"];
393
+ description: string;
394
+ };
395
+ format: {
396
+ type: "string";
397
+ enum: readonly ["%s%u"];
398
+ description: string;
399
+ };
400
+ desc: {
401
+ type: "string";
402
+ description: string;
403
+ };
404
+ amount: {
405
+ type: "number";
406
+ description: string;
407
+ };
408
+ text: {
409
+ type: "string";
410
+ description: string;
411
+ };
412
+ };
413
+ };
414
+ export declare const CurrencyInfoVnd: {
415
+ type: "object";
416
+ shape: {
417
+ code: {
418
+ type: "string";
419
+ enum: readonly ["VND"];
420
+ description: string;
421
+ };
422
+ symbol: {
423
+ type: "string";
424
+ enum: readonly ["₫"];
425
+ description: string;
426
+ };
427
+ format: {
428
+ type: "string";
429
+ enum: readonly ["%s%u"];
430
+ description: string;
431
+ };
432
+ desc: {
433
+ type: "string";
434
+ description: string;
435
+ };
436
+ amount: {
437
+ type: "number";
438
+ description: string;
439
+ };
440
+ text: {
441
+ type: "string";
442
+ description: string;
443
+ };
444
+ };
445
+ };
446
+ export declare const CurrencyInfoArs: {
447
+ type: "object";
448
+ shape: {
449
+ code: {
450
+ type: "string";
451
+ enum: readonly ["ARS"];
452
+ description: string;
453
+ };
454
+ symbol: {
455
+ type: "string";
456
+ enum: readonly ["$"];
457
+ description: string;
458
+ };
459
+ format: {
460
+ type: "string";
461
+ enum: readonly ["%s%u"];
462
+ description: string;
463
+ };
464
+ desc: {
465
+ type: "string";
466
+ description: string;
467
+ };
468
+ amount: {
469
+ type: "number";
470
+ description: string;
471
+ };
472
+ text: {
473
+ type: "string";
474
+ description: string;
475
+ };
476
+ };
477
+ };
478
+ export declare const CurrencyInfoInr: {
479
+ type: "object";
480
+ shape: {
481
+ code: {
482
+ type: "string";
483
+ enum: readonly ["INR"];
484
+ description: string;
485
+ };
486
+ symbol: {
487
+ type: "string";
488
+ enum: readonly ["₹"];
489
+ description: string;
490
+ };
491
+ format: {
492
+ type: "string";
493
+ enum: readonly ["%s%u"];
494
+ description: string;
495
+ };
496
+ desc: {
497
+ type: "string";
498
+ description: string;
499
+ };
500
+ amount: {
501
+ type: "number";
502
+ description: string;
503
+ };
504
+ text: {
505
+ type: "string";
506
+ description: string;
507
+ };
508
+ };
509
+ };
510
+ export declare const CurrencyInfoTwd: {
511
+ type: "object";
512
+ shape: {
513
+ code: {
514
+ type: "string";
515
+ enum: readonly ["TWD"];
516
+ description: string;
517
+ };
518
+ symbol: {
519
+ type: "string";
520
+ enum: readonly ["NT$"];
521
+ description: string;
522
+ };
523
+ format: {
524
+ type: "string";
525
+ enum: readonly ["%s%u"];
526
+ description: string;
527
+ };
528
+ desc: {
529
+ type: "string";
530
+ description: string;
531
+ };
532
+ amount: {
533
+ type: "number";
534
+ description: string;
535
+ };
536
+ text: {
537
+ type: "string";
538
+ description: string;
539
+ };
540
+ };
541
+ };
542
+ export declare const CurrencyInfoAud: {
543
+ type: "object";
544
+ shape: {
545
+ code: {
546
+ type: "string";
547
+ enum: readonly ["AUD"];
548
+ description: string;
549
+ };
550
+ symbol: {
551
+ type: "string";
552
+ enum: readonly ["$"];
553
+ description: string;
554
+ };
555
+ format: {
556
+ type: "string";
557
+ enum: readonly ["%s%u"];
558
+ description: string;
559
+ };
560
+ desc: {
561
+ type: "string";
562
+ description: string;
563
+ };
564
+ amount: {
565
+ type: "number";
566
+ description: string;
567
+ };
568
+ text: {
569
+ type: "string";
570
+ description: string;
571
+ };
572
+ };
573
+ };
574
+ export declare const CurrencyInfoHkd: {
575
+ type: "object";
576
+ shape: {
577
+ code: {
578
+ type: "string";
579
+ enum: readonly ["HKD"];
580
+ description: string;
581
+ };
582
+ symbol: {
583
+ type: "string";
584
+ enum: readonly ["$"];
585
+ description: string;
586
+ };
587
+ format: {
588
+ type: "string";
589
+ enum: readonly ["%s%u"];
590
+ description: string;
591
+ };
592
+ desc: {
593
+ type: "string";
594
+ description: string;
595
+ };
596
+ amount: {
597
+ type: "number";
598
+ description: string;
599
+ };
600
+ text: {
601
+ type: "string";
602
+ description: string;
603
+ };
604
+ };
605
+ };
606
+ export declare const CurrencyInfoIdr: {
607
+ type: "object";
608
+ shape: {
609
+ code: {
610
+ type: "string";
611
+ enum: readonly ["IDR"];
612
+ description: string;
613
+ };
614
+ symbol: {
615
+ type: "string";
616
+ enum: readonly ["Rp"];
617
+ description: string;
618
+ };
619
+ format: {
620
+ type: "string";
621
+ enum: readonly ["%s%u"];
622
+ description: string;
623
+ };
624
+ desc: {
625
+ type: "string";
626
+ description: string;
627
+ };
628
+ amount: {
629
+ type: "number";
630
+ description: string;
631
+ };
632
+ text: {
633
+ type: "string";
634
+ description: string;
635
+ };
636
+ };
637
+ };
638
+ export declare const CurrencyInfoMxn: {
639
+ type: "object";
640
+ shape: {
641
+ code: {
642
+ type: "string";
643
+ enum: readonly ["MXN"];
644
+ description: string;
645
+ };
646
+ symbol: {
647
+ type: "string";
648
+ enum: readonly ["$"];
649
+ description: string;
650
+ };
651
+ format: {
652
+ type: "string";
653
+ enum: readonly ["%s%u"];
654
+ description: string;
655
+ };
656
+ desc: {
657
+ type: "string";
658
+ description: string;
659
+ };
660
+ amount: {
661
+ type: "number";
662
+ description: string;
663
+ };
664
+ text: {
665
+ type: "string";
666
+ description: string;
667
+ };
668
+ };
669
+ };
670
+ export declare const CurrencyInfoNzd: {
671
+ type: "object";
672
+ shape: {
673
+ code: {
674
+ type: "string";
675
+ enum: readonly ["NZD"];
676
+ description: string;
677
+ };
678
+ symbol: {
679
+ type: "string";
680
+ enum: readonly ["$"];
681
+ description: string;
682
+ };
683
+ format: {
684
+ type: "string";
685
+ enum: readonly ["%s%u"];
686
+ description: string;
687
+ };
688
+ desc: {
689
+ type: "string";
690
+ description: string;
691
+ };
692
+ amount: {
693
+ type: "number";
694
+ description: string;
695
+ };
696
+ text: {
697
+ type: "string";
698
+ description: string;
699
+ };
700
+ };
701
+ };
702
+ export declare const CurrencyInfoSgd: {
703
+ type: "object";
704
+ shape: {
705
+ code: {
706
+ type: "string";
707
+ enum: readonly ["SGD"];
708
+ description: string;
709
+ };
710
+ symbol: {
711
+ type: "string";
712
+ enum: readonly ["$"];
713
+ description: string;
714
+ };
715
+ format: {
716
+ type: "string";
717
+ enum: readonly ["%s%u"];
718
+ description: string;
719
+ };
720
+ desc: {
721
+ type: "string";
722
+ description: string;
723
+ };
724
+ amount: {
725
+ type: "number";
726
+ description: string;
727
+ };
728
+ text: {
729
+ type: "string";
730
+ description: string;
731
+ };
732
+ };
733
+ };
734
+ export declare const CurrencyInfoChf: {
735
+ type: "object";
736
+ shape: {
737
+ code: {
738
+ type: "string";
739
+ enum: readonly ["CHF"];
740
+ description: string;
741
+ };
742
+ symbol: {
743
+ type: "string";
744
+ enum: readonly ["₣"];
745
+ description: string;
746
+ };
747
+ format: {
748
+ type: "string";
749
+ enum: readonly ["%s%u"];
750
+ description: string;
751
+ };
752
+ desc: {
753
+ type: "string";
754
+ description: string;
755
+ };
756
+ amount: {
757
+ type: "number";
758
+ description: string;
759
+ };
760
+ text: {
761
+ type: "string";
762
+ description: string;
763
+ };
764
+ };
765
+ };
766
+ export declare const CurrencyInfoThb: {
767
+ type: "object";
768
+ shape: {
769
+ code: {
770
+ type: "string";
771
+ enum: readonly ["THB"];
772
+ description: string;
773
+ };
774
+ symbol: {
775
+ type: "string";
776
+ enum: readonly ["฿"];
777
+ description: string;
778
+ };
779
+ format: {
780
+ type: "string";
781
+ enum: readonly ["%s%u"];
782
+ description: string;
783
+ };
784
+ desc: {
785
+ type: "string";
786
+ description: string;
787
+ };
788
+ amount: {
789
+ type: "number";
790
+ description: string;
791
+ };
792
+ text: {
793
+ type: "string";
794
+ description: string;
795
+ };
796
+ };
797
+ };
798
+ export declare const CurrencyInfoBrl: {
799
+ type: "object";
800
+ shape: {
801
+ code: {
802
+ type: "string";
803
+ enum: readonly ["BRL"];
804
+ description: string;
805
+ };
806
+ symbol: {
807
+ type: "string";
808
+ enum: readonly ["R$"];
809
+ description: string;
810
+ };
811
+ format: {
812
+ type: "string";
813
+ enum: readonly ["%s%u"];
814
+ description: string;
815
+ };
816
+ desc: {
817
+ type: "string";
818
+ description: string;
819
+ };
820
+ amount: {
821
+ type: "number";
822
+ description: string;
823
+ };
824
+ text: {
825
+ type: "string";
826
+ description: string;
827
+ };
828
+ };
829
+ };
830
+ export declare const CurrencyInfoTry: {
831
+ type: "object";
832
+ shape: {
833
+ code: {
834
+ type: "string";
835
+ enum: readonly ["TRY"];
836
+ description: string;
837
+ };
838
+ symbol: {
839
+ type: "string";
840
+ enum: readonly ["₺"];
841
+ description: string;
842
+ };
843
+ abbreviation: {
844
+ type: "string";
845
+ enum: readonly ["TL"];
846
+ description: string;
847
+ };
848
+ format: {
849
+ type: "string";
850
+ enum: readonly ["%s%u"];
851
+ description: string;
852
+ };
853
+ desc: {
854
+ type: "string";
855
+ description: string;
856
+ };
857
+ amount: {
858
+ type: "number";
859
+ description: string;
860
+ };
861
+ text: {
862
+ type: "string";
863
+ description: string;
864
+ };
865
+ };
866
+ };
867
+ export declare const CurrencyInfoRub: {
868
+ type: "object";
869
+ shape: {
870
+ code: {
871
+ type: "string";
872
+ enum: readonly ["RUB"];
873
+ description: string;
874
+ };
875
+ symbol: {
876
+ type: "string";
877
+ enum: readonly ["₽"];
878
+ description: string;
879
+ };
880
+ format: {
881
+ type: "string";
882
+ enum: readonly ["%s%u"];
883
+ description: string;
884
+ };
885
+ desc: {
886
+ type: "string";
887
+ description: string;
888
+ };
889
+ amount: {
890
+ type: "number";
891
+ description: string;
892
+ };
893
+ text: {
894
+ type: "string";
895
+ description: string;
896
+ };
897
+ };
898
+ };
899
+ export declare const CurrencyInfoNok: {
900
+ type: "object";
901
+ shape: {
902
+ code: {
903
+ type: "string";
904
+ enum: readonly ["NOK"];
905
+ description: string;
906
+ };
907
+ symbol: {
908
+ type: "string";
909
+ enum: readonly ["kr"];
910
+ description: string;
911
+ };
912
+ format: {
913
+ type: "string";
914
+ enum: readonly ["%s%u"];
915
+ description: string;
916
+ };
917
+ desc: {
918
+ type: "string";
919
+ description: string;
920
+ };
921
+ amount: {
922
+ type: "number";
923
+ description: string;
924
+ };
925
+ text: {
926
+ type: "string";
927
+ description: string;
928
+ };
929
+ };
930
+ };
931
+ export declare const CurrencyInfoDkk: {
932
+ type: "object";
933
+ shape: {
934
+ code: {
935
+ type: "string";
936
+ enum: readonly ["DKK"];
937
+ description: string;
938
+ };
939
+ symbol: {
940
+ type: "string";
941
+ enum: readonly ["kr"];
942
+ description: string;
943
+ };
944
+ format: {
945
+ type: "string";
946
+ enum: readonly ["%s%u"];
947
+ description: string;
948
+ };
949
+ desc: {
950
+ type: "string";
951
+ description: string;
952
+ };
953
+ amount: {
954
+ type: "number";
955
+ description: string;
956
+ };
957
+ text: {
958
+ type: "string";
959
+ description: string;
960
+ };
961
+ };
962
+ };
963
+ export declare const CurrencyInfoSek: {
964
+ type: "object";
965
+ shape: {
966
+ code: {
967
+ type: "string";
968
+ enum: readonly ["SEK"];
969
+ description: string;
970
+ };
971
+ symbol: {
972
+ type: "string";
973
+ enum: readonly ["kr"];
974
+ description: string;
975
+ };
976
+ format: {
977
+ type: "string";
978
+ enum: readonly ["%s%u"];
979
+ description: string;
980
+ };
981
+ desc: {
982
+ type: "string";
983
+ description: string;
984
+ };
985
+ amount: {
986
+ type: "number";
987
+ description: string;
988
+ };
989
+ text: {
990
+ type: "string";
991
+ description: string;
992
+ };
993
+ };
994
+ };
995
+ export declare const CurrencyInfoIls: {
996
+ type: "object";
997
+ shape: {
998
+ code: {
999
+ type: "string";
1000
+ enum: readonly ["ILS"];
1001
+ description: string;
1002
+ };
1003
+ symbol: {
1004
+ type: "string";
1005
+ enum: readonly ["₪"];
1006
+ description: string;
1007
+ };
1008
+ format: {
1009
+ type: "string";
1010
+ enum: readonly ["%s%u"];
1011
+ description: string;
1012
+ };
1013
+ desc: {
1014
+ type: "string";
1015
+ description: string;
1016
+ };
1017
+ amount: {
1018
+ type: "number";
1019
+ description: string;
1020
+ };
1021
+ text: {
1022
+ type: "string";
1023
+ description: string;
1024
+ };
1025
+ };
1026
+ };
1027
+ export declare const CurrencyInfoZar: {
1028
+ type: "object";
1029
+ shape: {
1030
+ code: {
1031
+ type: "string";
1032
+ enum: readonly ["ZAR"];
1033
+ description: string;
1034
+ };
1035
+ symbol: {
1036
+ type: "string";
1037
+ enum: readonly ["R"];
1038
+ description: string;
1039
+ };
1040
+ format: {
1041
+ type: "string";
1042
+ enum: readonly ["%s%u"];
1043
+ description: string;
1044
+ };
1045
+ desc: {
1046
+ type: "string";
1047
+ description: string;
1048
+ };
1049
+ amount: {
1050
+ type: "number";
1051
+ description: string;
1052
+ };
1053
+ text: {
1054
+ type: "string";
1055
+ description: string;
1056
+ };
1057
+ };
1058
+ };
1059
+ export declare const CurrencyInfoPln: {
1060
+ type: "object";
1061
+ shape: {
1062
+ code: {
1063
+ type: "string";
1064
+ enum: readonly ["PLN"];
1065
+ description: string;
1066
+ };
1067
+ symbol: {
1068
+ type: "string";
1069
+ enum: readonly ["zł"];
1070
+ description: string;
1071
+ };
1072
+ format: {
1073
+ type: "string";
1074
+ enum: readonly ["%s%u"];
1075
+ description: string;
1076
+ };
1077
+ desc: {
1078
+ type: "string";
1079
+ description: string;
1080
+ };
1081
+ amount: {
1082
+ type: "number";
1083
+ description: string;
1084
+ };
1085
+ text: {
1086
+ type: "string";
1087
+ description: string;
1088
+ };
1089
+ };
1090
+ };
1091
+ export declare const CurrencyInfoPhp: {
1092
+ type: "object";
1093
+ shape: {
1094
+ code: {
1095
+ type: "string";
1096
+ enum: readonly ["PHP"];
1097
+ description: string;
1098
+ };
1099
+ symbol: {
1100
+ type: "string";
1101
+ enum: readonly ["₱"];
1102
+ description: string;
1103
+ };
1104
+ format: {
1105
+ type: "string";
1106
+ enum: readonly ["%s%u"];
1107
+ description: string;
1108
+ };
1109
+ desc: {
1110
+ type: "string";
1111
+ description: string;
1112
+ };
1113
+ amount: {
1114
+ type: "number";
1115
+ description: string;
1116
+ };
1117
+ text: {
1118
+ type: "string";
1119
+ description: string;
1120
+ };
1121
+ };
1122
+ };
1123
+ export declare const CurrencyInfoCzk: {
1124
+ type: "object";
1125
+ shape: {
1126
+ code: {
1127
+ type: "string";
1128
+ enum: readonly ["CZK"];
1129
+ description: string;
1130
+ };
1131
+ symbol: {
1132
+ type: "string";
1133
+ enum: readonly ["Kč"];
1134
+ description: string;
1135
+ };
1136
+ format: {
1137
+ type: "string";
1138
+ enum: readonly ["%s%u"];
1139
+ description: string;
1140
+ };
1141
+ desc: {
1142
+ type: "string";
1143
+ description: string;
1144
+ };
1145
+ amount: {
1146
+ type: "number";
1147
+ description: string;
1148
+ };
1149
+ text: {
1150
+ type: "string";
1151
+ description: string;
1152
+ };
1153
+ };
1154
+ };
1155
+ export declare const CurrencyInfoClp: {
1156
+ type: "object";
1157
+ shape: {
1158
+ code: {
1159
+ type: "string";
1160
+ enum: readonly ["CLP"];
1161
+ description: string;
1162
+ };
1163
+ symbol: {
1164
+ type: "string";
1165
+ enum: readonly ["$"];
1166
+ description: string;
1167
+ };
1168
+ format: {
1169
+ type: "string";
1170
+ enum: readonly ["%s%u"];
1171
+ description: string;
1172
+ };
1173
+ desc: {
1174
+ type: "string";
1175
+ description: string;
1176
+ };
1177
+ amount: {
1178
+ type: "number";
1179
+ description: string;
1180
+ };
1181
+ text: {
1182
+ type: "string";
1183
+ description: string;
1184
+ };
1185
+ };
1186
+ };
1187
+ export declare const CurrencyInfoCop: {
1188
+ type: "object";
1189
+ shape: {
1190
+ code: {
1191
+ type: "string";
1192
+ enum: readonly ["COP"];
1193
+ description: string;
1194
+ };
1195
+ symbol: {
1196
+ type: "string";
1197
+ enum: readonly ["$"];
1198
+ description: string;
1199
+ };
1200
+ format: {
1201
+ type: "string";
1202
+ enum: readonly ["%s%u"];
1203
+ description: string;
1204
+ };
1205
+ desc: {
1206
+ type: "string";
1207
+ description: string;
1208
+ };
1209
+ amount: {
1210
+ type: "number";
1211
+ description: string;
1212
+ };
1213
+ text: {
1214
+ type: "string";
1215
+ description: string;
1216
+ };
1217
+ };
1218
+ };
1219
+ export declare const CurrencyInfoEgp: {
1220
+ type: "object";
1221
+ shape: {
1222
+ code: {
1223
+ type: "string";
1224
+ enum: readonly ["EGP"];
1225
+ description: string;
1226
+ };
1227
+ symbol: {
1228
+ type: "string";
1229
+ enum: readonly ["E£"];
1230
+ description: string;
1231
+ };
1232
+ format: {
1233
+ type: "string";
1234
+ enum: readonly ["%s%u"];
1235
+ description: string;
1236
+ };
1237
+ desc: {
1238
+ type: "string";
1239
+ description: string;
1240
+ };
1241
+ amount: {
1242
+ type: "number";
1243
+ description: string;
1244
+ };
1245
+ text: {
1246
+ type: "string";
1247
+ description: string;
1248
+ };
1249
+ };
1250
+ };
1251
+ export declare const CurrencyInfoMyr: {
1252
+ type: "object";
1253
+ shape: {
1254
+ code: {
1255
+ type: "string";
1256
+ enum: readonly ["MYR"];
1257
+ description: string;
1258
+ };
1259
+ symbol: {
1260
+ type: "string";
1261
+ enum: readonly ["RM"];
1262
+ description: string;
1263
+ };
1264
+ local: {
1265
+ type: "string";
1266
+ enum: readonly ["令吉"];
1267
+ description: string;
1268
+ };
1269
+ format: {
1270
+ type: "string";
1271
+ enum: readonly ["%s%u"];
1272
+ description: string;
1273
+ };
1274
+ desc: {
1275
+ type: "string";
1276
+ description: string;
1277
+ };
1278
+ amount: {
1279
+ type: "number";
1280
+ description: string;
1281
+ };
1282
+ text: {
1283
+ type: "string";
1284
+ description: string;
1285
+ };
1286
+ };
1287
+ };
1288
+ export declare const CurrencyInfoHuf: {
1289
+ type: "object";
1290
+ shape: {
1291
+ code: {
1292
+ type: "string";
1293
+ enum: readonly ["HUF"];
1294
+ description: string;
1295
+ };
1296
+ symbol: {
1297
+ type: "string";
1298
+ enum: readonly ["Ft"];
1299
+ description: string;
1300
+ };
1301
+ format: {
1302
+ type: "string";
1303
+ enum: readonly ["%s%u"];
1304
+ description: string;
1305
+ };
1306
+ desc: {
1307
+ type: "string";
1308
+ description: string;
1309
+ };
1310
+ amount: {
1311
+ type: "number";
1312
+ description: string;
1313
+ };
1314
+ text: {
1315
+ type: "string";
1316
+ description: string;
1317
+ };
1318
+ };
1319
+ };
1320
+ export declare const CurrencyInfoAed: {
1321
+ type: "object";
1322
+ shape: {
1323
+ code: {
1324
+ type: "string";
1325
+ enum: readonly ["AED"];
1326
+ description: string;
1327
+ };
1328
+ symbol: {
1329
+ type: "string";
1330
+ enum: readonly ["د.إ"];
1331
+ description: string;
1332
+ };
1333
+ format: {
1334
+ type: "string";
1335
+ enum: readonly ["%s%u"];
1336
+ description: string;
1337
+ };
1338
+ desc: {
1339
+ type: "string";
1340
+ description: string;
1341
+ };
1342
+ amount: {
1343
+ type: "number";
1344
+ description: string;
1345
+ };
1346
+ text: {
1347
+ type: "string";
1348
+ description: string;
1349
+ };
1350
+ };
1351
+ };
1352
+ export declare const CurrencyInfoSar: {
1353
+ type: "object";
1354
+ shape: {
1355
+ code: {
1356
+ type: "string";
1357
+ enum: readonly ["SAR"];
1358
+ description: string;
1359
+ };
1360
+ symbol: {
1361
+ type: "string";
1362
+ enum: readonly ["﷼"];
1363
+ description: string;
1364
+ };
1365
+ format: {
1366
+ type: "string";
1367
+ enum: readonly ["%s%u"];
1368
+ description: string;
1369
+ };
1370
+ desc: {
1371
+ type: "string";
1372
+ description: string;
1373
+ };
1374
+ amount: {
1375
+ type: "number";
1376
+ description: string;
1377
+ };
1378
+ text: {
1379
+ type: "string";
1380
+ description: string;
1381
+ };
1382
+ };
1383
+ };
1384
+ export declare const CurrencyInfoRon: {
1385
+ type: "object";
1386
+ shape: {
1387
+ code: {
1388
+ type: "string";
1389
+ enum: readonly ["RON"];
1390
+ description: string;
1391
+ };
1392
+ symbol: {
1393
+ type: "string";
1394
+ enum: readonly ["L"];
1395
+ description: string;
1396
+ };
1397
+ local: {
1398
+ type: "string";
1399
+ enum: readonly ["lei"];
1400
+ description: string;
1401
+ };
1402
+ format: {
1403
+ type: "string";
1404
+ enum: readonly ["%s%u"];
1405
+ description: string;
1406
+ };
1407
+ desc: {
1408
+ type: "string";
1409
+ description: string;
1410
+ };
1411
+ amount: {
1412
+ type: "number";
1413
+ description: string;
1414
+ };
1415
+ text: {
1416
+ type: "string";
1417
+ description: string;
1418
+ };
1419
+ };
1420
+ };
1421
+ export declare const CurrencyInfoBgn: {
1422
+ type: "object";
1423
+ shape: {
1424
+ code: {
1425
+ type: "string";
1426
+ enum: readonly ["BGN"];
1427
+ description: string;
1428
+ };
1429
+ symbol: {
1430
+ type: "string";
1431
+ enum: readonly ["лв"];
1432
+ description: string;
1433
+ };
1434
+ format: {
1435
+ type: "string";
1436
+ enum: readonly ["%s%u"];
1437
+ description: string;
1438
+ };
1439
+ desc: {
1440
+ type: "string";
1441
+ description: string;
1442
+ };
1443
+ amount: {
1444
+ type: "number";
1445
+ description: string;
1446
+ };
1447
+ text: {
1448
+ type: "string";
1449
+ description: string;
1450
+ };
1451
+ };
1452
+ };
1453
+ /**
1454
+ * CurrencyCode를 key로, 해당 통화의 스키마를 value로 하는 매핑 객체
1455
+ *
1456
+ * 사용 예시:
1457
+ * ```typescript
1458
+ * import { CurrencySchemaMap } from '8g-extension-sdk';
1459
+ *
1460
+ * // 통화 코드로 스키마 선택
1461
+ * const selectedCurrency = 'USD';
1462
+ * const schema = CurrencySchemaMap[selectedCurrency];
1463
+ *
1464
+ * // AI Parse 블록에서 사용
1465
+ * const billingSchema = createSchema({
1466
+ * planName: Schema.string(),
1467
+ * amount: CurrencySchemaMap['KRW'], // KRW 스키마 사용
1468
+ * });
1469
+ * ```
1470
+ */
1471
+ export declare const CurrencySchemaMap: {
1472
+ readonly USD: {
1473
+ type: "object";
1474
+ shape: {
1475
+ code: {
1476
+ type: "string";
1477
+ enum: readonly ["USD"];
1478
+ description: string;
1479
+ };
1480
+ symbol: {
1481
+ type: "string";
1482
+ enum: readonly ["$"];
1483
+ description: string;
1484
+ };
1485
+ format: {
1486
+ type: "string";
1487
+ enum: readonly ["%s%u"];
1488
+ description: string;
1489
+ };
1490
+ desc: {
1491
+ type: "string";
1492
+ description: string;
1493
+ };
1494
+ amount: {
1495
+ type: "number";
1496
+ description: string;
1497
+ };
1498
+ text: {
1499
+ type: "string";
1500
+ description: string;
1501
+ };
1502
+ };
1503
+ };
1504
+ readonly EUR: {
1505
+ type: "object";
1506
+ shape: {
1507
+ code: {
1508
+ type: "string";
1509
+ enum: readonly ["EUR"];
1510
+ description: string;
1511
+ };
1512
+ symbol: {
1513
+ type: "string";
1514
+ enum: readonly ["€"];
1515
+ description: string;
1516
+ };
1517
+ format: {
1518
+ type: "string";
1519
+ enum: readonly ["%s%u"];
1520
+ description: string;
1521
+ };
1522
+ desc: {
1523
+ type: "string";
1524
+ description: string;
1525
+ };
1526
+ amount: {
1527
+ type: "number";
1528
+ description: string;
1529
+ };
1530
+ text: {
1531
+ type: "string";
1532
+ description: string;
1533
+ };
1534
+ };
1535
+ };
1536
+ readonly KRW: {
1537
+ type: "object";
1538
+ shape: {
1539
+ code: {
1540
+ type: "string";
1541
+ enum: readonly ["KRW"];
1542
+ description: string;
1543
+ };
1544
+ symbol: {
1545
+ type: "string";
1546
+ enum: readonly ["₩"];
1547
+ description: string;
1548
+ };
1549
+ local: {
1550
+ type: "string";
1551
+ enum: readonly ["원"];
1552
+ description: string;
1553
+ };
1554
+ format: {
1555
+ type: "string";
1556
+ enum: readonly ["%s%u"];
1557
+ description: string;
1558
+ };
1559
+ desc: {
1560
+ type: "string";
1561
+ description: string;
1562
+ };
1563
+ amount: {
1564
+ type: "number";
1565
+ description: string;
1566
+ };
1567
+ text: {
1568
+ type: "string";
1569
+ description: string;
1570
+ };
1571
+ };
1572
+ };
1573
+ readonly GBP: {
1574
+ type: "object";
1575
+ shape: {
1576
+ code: {
1577
+ type: "string";
1578
+ enum: readonly ["GBP"];
1579
+ description: string;
1580
+ };
1581
+ symbol: {
1582
+ type: "string";
1583
+ enum: readonly ["£"];
1584
+ description: string;
1585
+ };
1586
+ format: {
1587
+ type: "string";
1588
+ enum: readonly ["%s%u"];
1589
+ description: string;
1590
+ };
1591
+ desc: {
1592
+ type: "string";
1593
+ description: string;
1594
+ };
1595
+ amount: {
1596
+ type: "number";
1597
+ description: string;
1598
+ };
1599
+ text: {
1600
+ type: "string";
1601
+ description: string;
1602
+ };
1603
+ };
1604
+ };
1605
+ readonly CAD: {
1606
+ type: "object";
1607
+ shape: {
1608
+ code: {
1609
+ type: "string";
1610
+ enum: readonly ["CAD"];
1611
+ description: string;
1612
+ };
1613
+ symbol: {
1614
+ type: "string";
1615
+ enum: readonly ["$"];
1616
+ description: string;
1617
+ };
1618
+ format: {
1619
+ type: "string";
1620
+ enum: readonly ["%s%u"];
1621
+ description: string;
1622
+ };
1623
+ desc: {
1624
+ type: "string";
1625
+ description: string;
1626
+ };
1627
+ amount: {
1628
+ type: "number";
1629
+ description: string;
1630
+ };
1631
+ text: {
1632
+ type: "string";
1633
+ description: string;
1634
+ };
1635
+ };
1636
+ };
1637
+ readonly CNY: {
1638
+ type: "object";
1639
+ shape: {
1640
+ code: {
1641
+ type: "string";
1642
+ enum: readonly ["CNY"];
1643
+ description: string;
1644
+ };
1645
+ symbol: {
1646
+ type: "string";
1647
+ enum: readonly ["¥"];
1648
+ description: string;
1649
+ };
1650
+ local: {
1651
+ type: "string";
1652
+ enum: readonly ["元"];
1653
+ description: string;
1654
+ };
1655
+ format: {
1656
+ type: "string";
1657
+ enum: readonly ["%s%u"];
1658
+ description: string;
1659
+ };
1660
+ desc: {
1661
+ type: "string";
1662
+ description: string;
1663
+ };
1664
+ amount: {
1665
+ type: "number";
1666
+ description: string;
1667
+ };
1668
+ text: {
1669
+ type: "string";
1670
+ description: string;
1671
+ };
1672
+ };
1673
+ };
1674
+ readonly JPY: {
1675
+ type: "object";
1676
+ shape: {
1677
+ code: {
1678
+ type: "string";
1679
+ enum: readonly ["JPY"];
1680
+ description: string;
1681
+ };
1682
+ symbol: {
1683
+ type: "string";
1684
+ enum: readonly ["¥"];
1685
+ description: string;
1686
+ };
1687
+ local: {
1688
+ type: "string";
1689
+ enum: readonly ["円"];
1690
+ description: string;
1691
+ };
1692
+ format: {
1693
+ type: "string";
1694
+ enum: readonly ["%s%u"];
1695
+ description: string;
1696
+ };
1697
+ desc: {
1698
+ type: "string";
1699
+ description: string;
1700
+ };
1701
+ amount: {
1702
+ type: "number";
1703
+ description: string;
1704
+ };
1705
+ text: {
1706
+ type: "string";
1707
+ description: string;
1708
+ };
1709
+ };
1710
+ };
1711
+ readonly VND: {
1712
+ type: "object";
1713
+ shape: {
1714
+ code: {
1715
+ type: "string";
1716
+ enum: readonly ["VND"];
1717
+ description: string;
1718
+ };
1719
+ symbol: {
1720
+ type: "string";
1721
+ enum: readonly ["₫"];
1722
+ description: string;
1723
+ };
1724
+ format: {
1725
+ type: "string";
1726
+ enum: readonly ["%s%u"];
1727
+ description: string;
1728
+ };
1729
+ desc: {
1730
+ type: "string";
1731
+ description: string;
1732
+ };
1733
+ amount: {
1734
+ type: "number";
1735
+ description: string;
1736
+ };
1737
+ text: {
1738
+ type: "string";
1739
+ description: string;
1740
+ };
1741
+ };
1742
+ };
1743
+ readonly ARS: {
1744
+ type: "object";
1745
+ shape: {
1746
+ code: {
1747
+ type: "string";
1748
+ enum: readonly ["ARS"];
1749
+ description: string;
1750
+ };
1751
+ symbol: {
1752
+ type: "string";
1753
+ enum: readonly ["$"];
1754
+ description: string;
1755
+ };
1756
+ format: {
1757
+ type: "string";
1758
+ enum: readonly ["%s%u"];
1759
+ description: string;
1760
+ };
1761
+ desc: {
1762
+ type: "string";
1763
+ description: string;
1764
+ };
1765
+ amount: {
1766
+ type: "number";
1767
+ description: string;
1768
+ };
1769
+ text: {
1770
+ type: "string";
1771
+ description: string;
1772
+ };
1773
+ };
1774
+ };
1775
+ readonly INR: {
1776
+ type: "object";
1777
+ shape: {
1778
+ code: {
1779
+ type: "string";
1780
+ enum: readonly ["INR"];
1781
+ description: string;
1782
+ };
1783
+ symbol: {
1784
+ type: "string";
1785
+ enum: readonly ["₹"];
1786
+ description: string;
1787
+ };
1788
+ format: {
1789
+ type: "string";
1790
+ enum: readonly ["%s%u"];
1791
+ description: string;
1792
+ };
1793
+ desc: {
1794
+ type: "string";
1795
+ description: string;
1796
+ };
1797
+ amount: {
1798
+ type: "number";
1799
+ description: string;
1800
+ };
1801
+ text: {
1802
+ type: "string";
1803
+ description: string;
1804
+ };
1805
+ };
1806
+ };
1807
+ readonly TWD: {
1808
+ type: "object";
1809
+ shape: {
1810
+ code: {
1811
+ type: "string";
1812
+ enum: readonly ["TWD"];
1813
+ description: string;
1814
+ };
1815
+ symbol: {
1816
+ type: "string";
1817
+ enum: readonly ["NT$"];
1818
+ description: string;
1819
+ };
1820
+ format: {
1821
+ type: "string";
1822
+ enum: readonly ["%s%u"];
1823
+ description: string;
1824
+ };
1825
+ desc: {
1826
+ type: "string";
1827
+ description: string;
1828
+ };
1829
+ amount: {
1830
+ type: "number";
1831
+ description: string;
1832
+ };
1833
+ text: {
1834
+ type: "string";
1835
+ description: string;
1836
+ };
1837
+ };
1838
+ };
1839
+ readonly AUD: {
1840
+ type: "object";
1841
+ shape: {
1842
+ code: {
1843
+ type: "string";
1844
+ enum: readonly ["AUD"];
1845
+ description: string;
1846
+ };
1847
+ symbol: {
1848
+ type: "string";
1849
+ enum: readonly ["$"];
1850
+ description: string;
1851
+ };
1852
+ format: {
1853
+ type: "string";
1854
+ enum: readonly ["%s%u"];
1855
+ description: string;
1856
+ };
1857
+ desc: {
1858
+ type: "string";
1859
+ description: string;
1860
+ };
1861
+ amount: {
1862
+ type: "number";
1863
+ description: string;
1864
+ };
1865
+ text: {
1866
+ type: "string";
1867
+ description: string;
1868
+ };
1869
+ };
1870
+ };
1871
+ readonly HKD: {
1872
+ type: "object";
1873
+ shape: {
1874
+ code: {
1875
+ type: "string";
1876
+ enum: readonly ["HKD"];
1877
+ description: string;
1878
+ };
1879
+ symbol: {
1880
+ type: "string";
1881
+ enum: readonly ["$"];
1882
+ description: string;
1883
+ };
1884
+ format: {
1885
+ type: "string";
1886
+ enum: readonly ["%s%u"];
1887
+ description: string;
1888
+ };
1889
+ desc: {
1890
+ type: "string";
1891
+ description: string;
1892
+ };
1893
+ amount: {
1894
+ type: "number";
1895
+ description: string;
1896
+ };
1897
+ text: {
1898
+ type: "string";
1899
+ description: string;
1900
+ };
1901
+ };
1902
+ };
1903
+ readonly IDR: {
1904
+ type: "object";
1905
+ shape: {
1906
+ code: {
1907
+ type: "string";
1908
+ enum: readonly ["IDR"];
1909
+ description: string;
1910
+ };
1911
+ symbol: {
1912
+ type: "string";
1913
+ enum: readonly ["Rp"];
1914
+ description: string;
1915
+ };
1916
+ format: {
1917
+ type: "string";
1918
+ enum: readonly ["%s%u"];
1919
+ description: string;
1920
+ };
1921
+ desc: {
1922
+ type: "string";
1923
+ description: string;
1924
+ };
1925
+ amount: {
1926
+ type: "number";
1927
+ description: string;
1928
+ };
1929
+ text: {
1930
+ type: "string";
1931
+ description: string;
1932
+ };
1933
+ };
1934
+ };
1935
+ readonly MXN: {
1936
+ type: "object";
1937
+ shape: {
1938
+ code: {
1939
+ type: "string";
1940
+ enum: readonly ["MXN"];
1941
+ description: string;
1942
+ };
1943
+ symbol: {
1944
+ type: "string";
1945
+ enum: readonly ["$"];
1946
+ description: string;
1947
+ };
1948
+ format: {
1949
+ type: "string";
1950
+ enum: readonly ["%s%u"];
1951
+ description: string;
1952
+ };
1953
+ desc: {
1954
+ type: "string";
1955
+ description: string;
1956
+ };
1957
+ amount: {
1958
+ type: "number";
1959
+ description: string;
1960
+ };
1961
+ text: {
1962
+ type: "string";
1963
+ description: string;
1964
+ };
1965
+ };
1966
+ };
1967
+ readonly NZD: {
1968
+ type: "object";
1969
+ shape: {
1970
+ code: {
1971
+ type: "string";
1972
+ enum: readonly ["NZD"];
1973
+ description: string;
1974
+ };
1975
+ symbol: {
1976
+ type: "string";
1977
+ enum: readonly ["$"];
1978
+ description: string;
1979
+ };
1980
+ format: {
1981
+ type: "string";
1982
+ enum: readonly ["%s%u"];
1983
+ description: string;
1984
+ };
1985
+ desc: {
1986
+ type: "string";
1987
+ description: string;
1988
+ };
1989
+ amount: {
1990
+ type: "number";
1991
+ description: string;
1992
+ };
1993
+ text: {
1994
+ type: "string";
1995
+ description: string;
1996
+ };
1997
+ };
1998
+ };
1999
+ readonly SGD: {
2000
+ type: "object";
2001
+ shape: {
2002
+ code: {
2003
+ type: "string";
2004
+ enum: readonly ["SGD"];
2005
+ description: string;
2006
+ };
2007
+ symbol: {
2008
+ type: "string";
2009
+ enum: readonly ["$"];
2010
+ description: string;
2011
+ };
2012
+ format: {
2013
+ type: "string";
2014
+ enum: readonly ["%s%u"];
2015
+ description: string;
2016
+ };
2017
+ desc: {
2018
+ type: "string";
2019
+ description: string;
2020
+ };
2021
+ amount: {
2022
+ type: "number";
2023
+ description: string;
2024
+ };
2025
+ text: {
2026
+ type: "string";
2027
+ description: string;
2028
+ };
2029
+ };
2030
+ };
2031
+ readonly CHF: {
2032
+ type: "object";
2033
+ shape: {
2034
+ code: {
2035
+ type: "string";
2036
+ enum: readonly ["CHF"];
2037
+ description: string;
2038
+ };
2039
+ symbol: {
2040
+ type: "string";
2041
+ enum: readonly ["₣"];
2042
+ description: string;
2043
+ };
2044
+ format: {
2045
+ type: "string";
2046
+ enum: readonly ["%s%u"];
2047
+ description: string;
2048
+ };
2049
+ desc: {
2050
+ type: "string";
2051
+ description: string;
2052
+ };
2053
+ amount: {
2054
+ type: "number";
2055
+ description: string;
2056
+ };
2057
+ text: {
2058
+ type: "string";
2059
+ description: string;
2060
+ };
2061
+ };
2062
+ };
2063
+ readonly THB: {
2064
+ type: "object";
2065
+ shape: {
2066
+ code: {
2067
+ type: "string";
2068
+ enum: readonly ["THB"];
2069
+ description: string;
2070
+ };
2071
+ symbol: {
2072
+ type: "string";
2073
+ enum: readonly ["฿"];
2074
+ description: string;
2075
+ };
2076
+ format: {
2077
+ type: "string";
2078
+ enum: readonly ["%s%u"];
2079
+ description: string;
2080
+ };
2081
+ desc: {
2082
+ type: "string";
2083
+ description: string;
2084
+ };
2085
+ amount: {
2086
+ type: "number";
2087
+ description: string;
2088
+ };
2089
+ text: {
2090
+ type: "string";
2091
+ description: string;
2092
+ };
2093
+ };
2094
+ };
2095
+ readonly BRL: {
2096
+ type: "object";
2097
+ shape: {
2098
+ code: {
2099
+ type: "string";
2100
+ enum: readonly ["BRL"];
2101
+ description: string;
2102
+ };
2103
+ symbol: {
2104
+ type: "string";
2105
+ enum: readonly ["R$"];
2106
+ description: string;
2107
+ };
2108
+ format: {
2109
+ type: "string";
2110
+ enum: readonly ["%s%u"];
2111
+ description: string;
2112
+ };
2113
+ desc: {
2114
+ type: "string";
2115
+ description: string;
2116
+ };
2117
+ amount: {
2118
+ type: "number";
2119
+ description: string;
2120
+ };
2121
+ text: {
2122
+ type: "string";
2123
+ description: string;
2124
+ };
2125
+ };
2126
+ };
2127
+ readonly TRY: {
2128
+ type: "object";
2129
+ shape: {
2130
+ code: {
2131
+ type: "string";
2132
+ enum: readonly ["TRY"];
2133
+ description: string;
2134
+ };
2135
+ symbol: {
2136
+ type: "string";
2137
+ enum: readonly ["₺"];
2138
+ description: string;
2139
+ };
2140
+ abbreviation: {
2141
+ type: "string";
2142
+ enum: readonly ["TL"];
2143
+ description: string;
2144
+ };
2145
+ format: {
2146
+ type: "string";
2147
+ enum: readonly ["%s%u"];
2148
+ description: string;
2149
+ };
2150
+ desc: {
2151
+ type: "string";
2152
+ description: string;
2153
+ };
2154
+ amount: {
2155
+ type: "number";
2156
+ description: string;
2157
+ };
2158
+ text: {
2159
+ type: "string";
2160
+ description: string;
2161
+ };
2162
+ };
2163
+ };
2164
+ readonly RUB: {
2165
+ type: "object";
2166
+ shape: {
2167
+ code: {
2168
+ type: "string";
2169
+ enum: readonly ["RUB"];
2170
+ description: string;
2171
+ };
2172
+ symbol: {
2173
+ type: "string";
2174
+ enum: readonly ["₽"];
2175
+ description: string;
2176
+ };
2177
+ format: {
2178
+ type: "string";
2179
+ enum: readonly ["%s%u"];
2180
+ description: string;
2181
+ };
2182
+ desc: {
2183
+ type: "string";
2184
+ description: string;
2185
+ };
2186
+ amount: {
2187
+ type: "number";
2188
+ description: string;
2189
+ };
2190
+ text: {
2191
+ type: "string";
2192
+ description: string;
2193
+ };
2194
+ };
2195
+ };
2196
+ readonly NOK: {
2197
+ type: "object";
2198
+ shape: {
2199
+ code: {
2200
+ type: "string";
2201
+ enum: readonly ["NOK"];
2202
+ description: string;
2203
+ };
2204
+ symbol: {
2205
+ type: "string";
2206
+ enum: readonly ["kr"];
2207
+ description: string;
2208
+ };
2209
+ format: {
2210
+ type: "string";
2211
+ enum: readonly ["%s%u"];
2212
+ description: string;
2213
+ };
2214
+ desc: {
2215
+ type: "string";
2216
+ description: string;
2217
+ };
2218
+ amount: {
2219
+ type: "number";
2220
+ description: string;
2221
+ };
2222
+ text: {
2223
+ type: "string";
2224
+ description: string;
2225
+ };
2226
+ };
2227
+ };
2228
+ readonly DKK: {
2229
+ type: "object";
2230
+ shape: {
2231
+ code: {
2232
+ type: "string";
2233
+ enum: readonly ["DKK"];
2234
+ description: string;
2235
+ };
2236
+ symbol: {
2237
+ type: "string";
2238
+ enum: readonly ["kr"];
2239
+ description: string;
2240
+ };
2241
+ format: {
2242
+ type: "string";
2243
+ enum: readonly ["%s%u"];
2244
+ description: string;
2245
+ };
2246
+ desc: {
2247
+ type: "string";
2248
+ description: string;
2249
+ };
2250
+ amount: {
2251
+ type: "number";
2252
+ description: string;
2253
+ };
2254
+ text: {
2255
+ type: "string";
2256
+ description: string;
2257
+ };
2258
+ };
2259
+ };
2260
+ readonly SEK: {
2261
+ type: "object";
2262
+ shape: {
2263
+ code: {
2264
+ type: "string";
2265
+ enum: readonly ["SEK"];
2266
+ description: string;
2267
+ };
2268
+ symbol: {
2269
+ type: "string";
2270
+ enum: readonly ["kr"];
2271
+ description: string;
2272
+ };
2273
+ format: {
2274
+ type: "string";
2275
+ enum: readonly ["%s%u"];
2276
+ description: string;
2277
+ };
2278
+ desc: {
2279
+ type: "string";
2280
+ description: string;
2281
+ };
2282
+ amount: {
2283
+ type: "number";
2284
+ description: string;
2285
+ };
2286
+ text: {
2287
+ type: "string";
2288
+ description: string;
2289
+ };
2290
+ };
2291
+ };
2292
+ readonly ILS: {
2293
+ type: "object";
2294
+ shape: {
2295
+ code: {
2296
+ type: "string";
2297
+ enum: readonly ["ILS"];
2298
+ description: string;
2299
+ };
2300
+ symbol: {
2301
+ type: "string";
2302
+ enum: readonly ["₪"];
2303
+ description: string;
2304
+ };
2305
+ format: {
2306
+ type: "string";
2307
+ enum: readonly ["%s%u"];
2308
+ description: string;
2309
+ };
2310
+ desc: {
2311
+ type: "string";
2312
+ description: string;
2313
+ };
2314
+ amount: {
2315
+ type: "number";
2316
+ description: string;
2317
+ };
2318
+ text: {
2319
+ type: "string";
2320
+ description: string;
2321
+ };
2322
+ };
2323
+ };
2324
+ readonly ZAR: {
2325
+ type: "object";
2326
+ shape: {
2327
+ code: {
2328
+ type: "string";
2329
+ enum: readonly ["ZAR"];
2330
+ description: string;
2331
+ };
2332
+ symbol: {
2333
+ type: "string";
2334
+ enum: readonly ["R"];
2335
+ description: string;
2336
+ };
2337
+ format: {
2338
+ type: "string";
2339
+ enum: readonly ["%s%u"];
2340
+ description: string;
2341
+ };
2342
+ desc: {
2343
+ type: "string";
2344
+ description: string;
2345
+ };
2346
+ amount: {
2347
+ type: "number";
2348
+ description: string;
2349
+ };
2350
+ text: {
2351
+ type: "string";
2352
+ description: string;
2353
+ };
2354
+ };
2355
+ };
2356
+ readonly PLN: {
2357
+ type: "object";
2358
+ shape: {
2359
+ code: {
2360
+ type: "string";
2361
+ enum: readonly ["PLN"];
2362
+ description: string;
2363
+ };
2364
+ symbol: {
2365
+ type: "string";
2366
+ enum: readonly ["zł"];
2367
+ description: string;
2368
+ };
2369
+ format: {
2370
+ type: "string";
2371
+ enum: readonly ["%s%u"];
2372
+ description: string;
2373
+ };
2374
+ desc: {
2375
+ type: "string";
2376
+ description: string;
2377
+ };
2378
+ amount: {
2379
+ type: "number";
2380
+ description: string;
2381
+ };
2382
+ text: {
2383
+ type: "string";
2384
+ description: string;
2385
+ };
2386
+ };
2387
+ };
2388
+ readonly PHP: {
2389
+ type: "object";
2390
+ shape: {
2391
+ code: {
2392
+ type: "string";
2393
+ enum: readonly ["PHP"];
2394
+ description: string;
2395
+ };
2396
+ symbol: {
2397
+ type: "string";
2398
+ enum: readonly ["₱"];
2399
+ description: string;
2400
+ };
2401
+ format: {
2402
+ type: "string";
2403
+ enum: readonly ["%s%u"];
2404
+ description: string;
2405
+ };
2406
+ desc: {
2407
+ type: "string";
2408
+ description: string;
2409
+ };
2410
+ amount: {
2411
+ type: "number";
2412
+ description: string;
2413
+ };
2414
+ text: {
2415
+ type: "string";
2416
+ description: string;
2417
+ };
2418
+ };
2419
+ };
2420
+ readonly CZK: {
2421
+ type: "object";
2422
+ shape: {
2423
+ code: {
2424
+ type: "string";
2425
+ enum: readonly ["CZK"];
2426
+ description: string;
2427
+ };
2428
+ symbol: {
2429
+ type: "string";
2430
+ enum: readonly ["Kč"];
2431
+ description: string;
2432
+ };
2433
+ format: {
2434
+ type: "string";
2435
+ enum: readonly ["%s%u"];
2436
+ description: string;
2437
+ };
2438
+ desc: {
2439
+ type: "string";
2440
+ description: string;
2441
+ };
2442
+ amount: {
2443
+ type: "number";
2444
+ description: string;
2445
+ };
2446
+ text: {
2447
+ type: "string";
2448
+ description: string;
2449
+ };
2450
+ };
2451
+ };
2452
+ readonly CLP: {
2453
+ type: "object";
2454
+ shape: {
2455
+ code: {
2456
+ type: "string";
2457
+ enum: readonly ["CLP"];
2458
+ description: string;
2459
+ };
2460
+ symbol: {
2461
+ type: "string";
2462
+ enum: readonly ["$"];
2463
+ description: string;
2464
+ };
2465
+ format: {
2466
+ type: "string";
2467
+ enum: readonly ["%s%u"];
2468
+ description: string;
2469
+ };
2470
+ desc: {
2471
+ type: "string";
2472
+ description: string;
2473
+ };
2474
+ amount: {
2475
+ type: "number";
2476
+ description: string;
2477
+ };
2478
+ text: {
2479
+ type: "string";
2480
+ description: string;
2481
+ };
2482
+ };
2483
+ };
2484
+ readonly COP: {
2485
+ type: "object";
2486
+ shape: {
2487
+ code: {
2488
+ type: "string";
2489
+ enum: readonly ["COP"];
2490
+ description: string;
2491
+ };
2492
+ symbol: {
2493
+ type: "string";
2494
+ enum: readonly ["$"];
2495
+ description: string;
2496
+ };
2497
+ format: {
2498
+ type: "string";
2499
+ enum: readonly ["%s%u"];
2500
+ description: string;
2501
+ };
2502
+ desc: {
2503
+ type: "string";
2504
+ description: string;
2505
+ };
2506
+ amount: {
2507
+ type: "number";
2508
+ description: string;
2509
+ };
2510
+ text: {
2511
+ type: "string";
2512
+ description: string;
2513
+ };
2514
+ };
2515
+ };
2516
+ readonly EGP: {
2517
+ type: "object";
2518
+ shape: {
2519
+ code: {
2520
+ type: "string";
2521
+ enum: readonly ["EGP"];
2522
+ description: string;
2523
+ };
2524
+ symbol: {
2525
+ type: "string";
2526
+ enum: readonly ["E£"];
2527
+ description: string;
2528
+ };
2529
+ format: {
2530
+ type: "string";
2531
+ enum: readonly ["%s%u"];
2532
+ description: string;
2533
+ };
2534
+ desc: {
2535
+ type: "string";
2536
+ description: string;
2537
+ };
2538
+ amount: {
2539
+ type: "number";
2540
+ description: string;
2541
+ };
2542
+ text: {
2543
+ type: "string";
2544
+ description: string;
2545
+ };
2546
+ };
2547
+ };
2548
+ readonly MYR: {
2549
+ type: "object";
2550
+ shape: {
2551
+ code: {
2552
+ type: "string";
2553
+ enum: readonly ["MYR"];
2554
+ description: string;
2555
+ };
2556
+ symbol: {
2557
+ type: "string";
2558
+ enum: readonly ["RM"];
2559
+ description: string;
2560
+ };
2561
+ local: {
2562
+ type: "string";
2563
+ enum: readonly ["令吉"];
2564
+ description: string;
2565
+ };
2566
+ format: {
2567
+ type: "string";
2568
+ enum: readonly ["%s%u"];
2569
+ description: string;
2570
+ };
2571
+ desc: {
2572
+ type: "string";
2573
+ description: string;
2574
+ };
2575
+ amount: {
2576
+ type: "number";
2577
+ description: string;
2578
+ };
2579
+ text: {
2580
+ type: "string";
2581
+ description: string;
2582
+ };
2583
+ };
2584
+ };
2585
+ readonly HUF: {
2586
+ type: "object";
2587
+ shape: {
2588
+ code: {
2589
+ type: "string";
2590
+ enum: readonly ["HUF"];
2591
+ description: string;
2592
+ };
2593
+ symbol: {
2594
+ type: "string";
2595
+ enum: readonly ["Ft"];
2596
+ description: string;
2597
+ };
2598
+ format: {
2599
+ type: "string";
2600
+ enum: readonly ["%s%u"];
2601
+ description: string;
2602
+ };
2603
+ desc: {
2604
+ type: "string";
2605
+ description: string;
2606
+ };
2607
+ amount: {
2608
+ type: "number";
2609
+ description: string;
2610
+ };
2611
+ text: {
2612
+ type: "string";
2613
+ description: string;
2614
+ };
2615
+ };
2616
+ };
2617
+ readonly AED: {
2618
+ type: "object";
2619
+ shape: {
2620
+ code: {
2621
+ type: "string";
2622
+ enum: readonly ["AED"];
2623
+ description: string;
2624
+ };
2625
+ symbol: {
2626
+ type: "string";
2627
+ enum: readonly ["د.إ"];
2628
+ description: string;
2629
+ };
2630
+ format: {
2631
+ type: "string";
2632
+ enum: readonly ["%s%u"];
2633
+ description: string;
2634
+ };
2635
+ desc: {
2636
+ type: "string";
2637
+ description: string;
2638
+ };
2639
+ amount: {
2640
+ type: "number";
2641
+ description: string;
2642
+ };
2643
+ text: {
2644
+ type: "string";
2645
+ description: string;
2646
+ };
2647
+ };
2648
+ };
2649
+ readonly SAR: {
2650
+ type: "object";
2651
+ shape: {
2652
+ code: {
2653
+ type: "string";
2654
+ enum: readonly ["SAR"];
2655
+ description: string;
2656
+ };
2657
+ symbol: {
2658
+ type: "string";
2659
+ enum: readonly ["﷼"];
2660
+ description: string;
2661
+ };
2662
+ format: {
2663
+ type: "string";
2664
+ enum: readonly ["%s%u"];
2665
+ description: string;
2666
+ };
2667
+ desc: {
2668
+ type: "string";
2669
+ description: string;
2670
+ };
2671
+ amount: {
2672
+ type: "number";
2673
+ description: string;
2674
+ };
2675
+ text: {
2676
+ type: "string";
2677
+ description: string;
2678
+ };
2679
+ };
2680
+ };
2681
+ readonly RON: {
2682
+ type: "object";
2683
+ shape: {
2684
+ code: {
2685
+ type: "string";
2686
+ enum: readonly ["RON"];
2687
+ description: string;
2688
+ };
2689
+ symbol: {
2690
+ type: "string";
2691
+ enum: readonly ["L"];
2692
+ description: string;
2693
+ };
2694
+ local: {
2695
+ type: "string";
2696
+ enum: readonly ["lei"];
2697
+ description: string;
2698
+ };
2699
+ format: {
2700
+ type: "string";
2701
+ enum: readonly ["%s%u"];
2702
+ description: string;
2703
+ };
2704
+ desc: {
2705
+ type: "string";
2706
+ description: string;
2707
+ };
2708
+ amount: {
2709
+ type: "number";
2710
+ description: string;
2711
+ };
2712
+ text: {
2713
+ type: "string";
2714
+ description: string;
2715
+ };
2716
+ };
2717
+ };
2718
+ readonly BGN: {
2719
+ type: "object";
2720
+ shape: {
2721
+ code: {
2722
+ type: "string";
2723
+ enum: readonly ["BGN"];
2724
+ description: string;
2725
+ };
2726
+ symbol: {
2727
+ type: "string";
2728
+ enum: readonly ["лв"];
2729
+ description: string;
2730
+ };
2731
+ format: {
2732
+ type: "string";
2733
+ enum: readonly ["%s%u"];
2734
+ description: string;
2735
+ };
2736
+ desc: {
2737
+ type: "string";
2738
+ description: string;
2739
+ };
2740
+ amount: {
2741
+ type: "number";
2742
+ description: string;
2743
+ };
2744
+ text: {
2745
+ type: "string";
2746
+ description: string;
2747
+ };
2748
+ };
2749
+ };
2750
+ };
110
2751
  //# sourceMappingURL=types.d.ts.map