deep-chat-dev 9.0.2 → 9.0.3
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.
- package/custom-elements.json +417 -366
- package/dist/deepChat.bundle.js +1 -1
- package/dist/deepChat.js +907 -851
- package/dist/services/serviceIO.d.ts +3 -1
- package/dist/services/serviceIO.d.ts.map +1 -1
- package/dist/types/handler.d.ts +15 -0
- package/dist/types/handler.d.ts.map +1 -0
- package/dist/types/request.d.ts +3 -2
- package/dist/types/request.d.ts.map +1 -1
- package/dist/utils/HTTP/{customRequest.d.ts → customHandler.d.ts} +3 -2
- package/dist/utils/HTTP/customHandler.d.ts.map +1 -0
- package/dist/utils/HTTP/requestUtils.d.ts +1 -1
- package/dist/utils/HTTP/requestUtils.d.ts.map +1 -1
- package/dist/utils/HTTP/stream.d.ts.map +1 -1
- package/dist/views/chat/input/buttons/submit/submitButton.d.ts +1 -0
- package/dist/views/chat/input/buttons/submit/submitButton.d.ts.map +1 -1
- package/dist/views/chat/messages/messages.d.ts +2 -0
- package/dist/views/chat/messages/messages.d.ts.map +1 -1
- package/package.json +1 -1
- package/dist/utils/HTTP/customRequest.d.ts.map +0 -1
package/custom-elements.json
CHANGED
@@ -445,6 +445,54 @@
|
|
445
445
|
}
|
446
446
|
]
|
447
447
|
},
|
448
|
+
{
|
449
|
+
"kind": "javascript-module",
|
450
|
+
"path": "src/services/serviceIO.ts",
|
451
|
+
"declarations": [],
|
452
|
+
"exports": []
|
453
|
+
},
|
454
|
+
{
|
455
|
+
"kind": "javascript-module",
|
456
|
+
"path": "src/services/serviceIOFactory.ts",
|
457
|
+
"declarations": [
|
458
|
+
{
|
459
|
+
"kind": "class",
|
460
|
+
"description": "",
|
461
|
+
"name": "ServiceIOFactory",
|
462
|
+
"members": [
|
463
|
+
{
|
464
|
+
"kind": "method",
|
465
|
+
"name": "create",
|
466
|
+
"privacy": "public",
|
467
|
+
"static": true,
|
468
|
+
"return": {
|
469
|
+
"type": {
|
470
|
+
"text": "ServiceIO"
|
471
|
+
}
|
472
|
+
},
|
473
|
+
"parameters": [
|
474
|
+
{
|
475
|
+
"name": "deepChat",
|
476
|
+
"type": {
|
477
|
+
"text": "DeepChat"
|
478
|
+
}
|
479
|
+
}
|
480
|
+
]
|
481
|
+
}
|
482
|
+
]
|
483
|
+
}
|
484
|
+
],
|
485
|
+
"exports": [
|
486
|
+
{
|
487
|
+
"kind": "js",
|
488
|
+
"name": "ServiceIOFactory",
|
489
|
+
"declaration": {
|
490
|
+
"name": "ServiceIOFactory",
|
491
|
+
"module": "src/services/serviceIOFactory.ts"
|
492
|
+
}
|
493
|
+
}
|
494
|
+
]
|
495
|
+
},
|
448
496
|
{
|
449
497
|
"kind": "javascript-module",
|
450
498
|
"path": "src/icons/audioIcon.ts",
|
@@ -802,54 +850,6 @@
|
|
802
850
|
}
|
803
851
|
]
|
804
852
|
},
|
805
|
-
{
|
806
|
-
"kind": "javascript-module",
|
807
|
-
"path": "src/services/serviceIO.ts",
|
808
|
-
"declarations": [],
|
809
|
-
"exports": []
|
810
|
-
},
|
811
|
-
{
|
812
|
-
"kind": "javascript-module",
|
813
|
-
"path": "src/services/serviceIOFactory.ts",
|
814
|
-
"declarations": [
|
815
|
-
{
|
816
|
-
"kind": "class",
|
817
|
-
"description": "",
|
818
|
-
"name": "ServiceIOFactory",
|
819
|
-
"members": [
|
820
|
-
{
|
821
|
-
"kind": "method",
|
822
|
-
"name": "create",
|
823
|
-
"privacy": "public",
|
824
|
-
"static": true,
|
825
|
-
"return": {
|
826
|
-
"type": {
|
827
|
-
"text": "ServiceIO"
|
828
|
-
}
|
829
|
-
},
|
830
|
-
"parameters": [
|
831
|
-
{
|
832
|
-
"name": "deepChat",
|
833
|
-
"type": {
|
834
|
-
"text": "DeepChat"
|
835
|
-
}
|
836
|
-
}
|
837
|
-
]
|
838
|
-
}
|
839
|
-
]
|
840
|
-
}
|
841
|
-
],
|
842
|
-
"exports": [
|
843
|
-
{
|
844
|
-
"kind": "js",
|
845
|
-
"name": "ServiceIOFactory",
|
846
|
-
"declaration": {
|
847
|
-
"name": "ServiceIOFactory",
|
848
|
-
"module": "src/services/serviceIOFactory.ts"
|
849
|
-
}
|
850
|
-
}
|
851
|
-
]
|
852
|
-
},
|
853
853
|
{
|
854
854
|
"kind": "javascript-module",
|
855
855
|
"path": "src/types/APIKey.ts",
|
@@ -976,6 +976,12 @@
|
|
976
976
|
"declarations": [],
|
977
977
|
"exports": []
|
978
978
|
},
|
979
|
+
{
|
980
|
+
"kind": "javascript-module",
|
981
|
+
"path": "src/types/handler.ts",
|
982
|
+
"declarations": [],
|
983
|
+
"exports": []
|
984
|
+
},
|
979
985
|
{
|
980
986
|
"kind": "javascript-module",
|
981
987
|
"path": "src/types/headers.ts",
|
@@ -21665,12 +21671,12 @@
|
|
21665
21671
|
},
|
21666
21672
|
{
|
21667
21673
|
"kind": "javascript-module",
|
21668
|
-
"path": "src/utils/HTTP/
|
21674
|
+
"path": "src/utils/HTTP/customHandler.ts",
|
21669
21675
|
"declarations": [
|
21670
21676
|
{
|
21671
21677
|
"kind": "class",
|
21672
21678
|
"description": "",
|
21673
|
-
"name": "
|
21679
|
+
"name": "CustomHandler",
|
21674
21680
|
"members": [
|
21675
21681
|
{
|
21676
21682
|
"kind": "method",
|
@@ -21697,6 +21703,32 @@
|
|
21697
21703
|
}
|
21698
21704
|
}
|
21699
21705
|
]
|
21706
|
+
},
|
21707
|
+
{
|
21708
|
+
"kind": "method",
|
21709
|
+
"name": "stream",
|
21710
|
+
"privacy": "public",
|
21711
|
+
"static": true,
|
21712
|
+
"parameters": [
|
21713
|
+
{
|
21714
|
+
"name": "io",
|
21715
|
+
"type": {
|
21716
|
+
"text": "ServiceIO"
|
21717
|
+
}
|
21718
|
+
},
|
21719
|
+
{
|
21720
|
+
"name": "body",
|
21721
|
+
"type": {
|
21722
|
+
"text": "RequestDetails['body']"
|
21723
|
+
}
|
21724
|
+
},
|
21725
|
+
{
|
21726
|
+
"name": "messages",
|
21727
|
+
"type": {
|
21728
|
+
"text": "Messages"
|
21729
|
+
}
|
21730
|
+
}
|
21731
|
+
]
|
21700
21732
|
}
|
21701
21733
|
]
|
21702
21734
|
}
|
@@ -21704,10 +21736,10 @@
|
|
21704
21736
|
"exports": [
|
21705
21737
|
{
|
21706
21738
|
"kind": "js",
|
21707
|
-
"name": "
|
21739
|
+
"name": "CustomHandler",
|
21708
21740
|
"declaration": {
|
21709
|
-
"name": "
|
21710
|
-
"module": "src/utils/HTTP/
|
21741
|
+
"name": "CustomHandler",
|
21742
|
+
"module": "src/utils/HTTP/customHandler.ts"
|
21711
21743
|
}
|
21712
21744
|
}
|
21713
21745
|
]
|
@@ -21797,7 +21829,7 @@
|
|
21797
21829
|
},
|
21798
21830
|
{
|
21799
21831
|
"kind": "method",
|
21800
|
-
"name": "
|
21832
|
+
"name": "processRequestInterceptor",
|
21801
21833
|
"privacy": "public",
|
21802
21834
|
"static": true,
|
21803
21835
|
"return": {
|
@@ -23282,6 +23314,86 @@
|
|
23282
23314
|
}
|
23283
23315
|
]
|
23284
23316
|
},
|
23317
|
+
{
|
23318
|
+
"kind": "javascript-module",
|
23319
|
+
"path": "src/services/cohere/utils/cohereUtils.ts",
|
23320
|
+
"declarations": [
|
23321
|
+
{
|
23322
|
+
"kind": "class",
|
23323
|
+
"description": "",
|
23324
|
+
"name": "CohereUtils",
|
23325
|
+
"members": [
|
23326
|
+
{
|
23327
|
+
"kind": "method",
|
23328
|
+
"name": "buildHeaders",
|
23329
|
+
"privacy": "public",
|
23330
|
+
"static": true,
|
23331
|
+
"parameters": [
|
23332
|
+
{
|
23333
|
+
"name": "key",
|
23334
|
+
"type": {
|
23335
|
+
"text": "string"
|
23336
|
+
}
|
23337
|
+
}
|
23338
|
+
]
|
23339
|
+
},
|
23340
|
+
{
|
23341
|
+
"kind": "method",
|
23342
|
+
"name": "handleVerificationResult",
|
23343
|
+
"privacy": "private",
|
23344
|
+
"static": true,
|
23345
|
+
"parameters": [
|
23346
|
+
{
|
23347
|
+
"name": "result",
|
23348
|
+
"type": {
|
23349
|
+
"text": "object"
|
23350
|
+
}
|
23351
|
+
},
|
23352
|
+
{
|
23353
|
+
"name": "key",
|
23354
|
+
"type": {
|
23355
|
+
"text": "string"
|
23356
|
+
}
|
23357
|
+
},
|
23358
|
+
{
|
23359
|
+
"name": "onSuccess",
|
23360
|
+
"type": {
|
23361
|
+
"text": "(key: string) => void"
|
23362
|
+
}
|
23363
|
+
},
|
23364
|
+
{
|
23365
|
+
"name": "onFail",
|
23366
|
+
"type": {
|
23367
|
+
"text": "(message: string) => void"
|
23368
|
+
}
|
23369
|
+
}
|
23370
|
+
]
|
23371
|
+
},
|
23372
|
+
{
|
23373
|
+
"kind": "method",
|
23374
|
+
"name": "buildKeyVerificationDetails",
|
23375
|
+
"privacy": "public",
|
23376
|
+
"static": true,
|
23377
|
+
"return": {
|
23378
|
+
"type": {
|
23379
|
+
"text": "KeyVerificationDetails"
|
23380
|
+
}
|
23381
|
+
}
|
23382
|
+
}
|
23383
|
+
]
|
23384
|
+
}
|
23385
|
+
],
|
23386
|
+
"exports": [
|
23387
|
+
{
|
23388
|
+
"kind": "js",
|
23389
|
+
"name": "CohereUtils",
|
23390
|
+
"declaration": {
|
23391
|
+
"name": "CohereUtils",
|
23392
|
+
"module": "src/services/cohere/utils/cohereUtils.ts"
|
23393
|
+
}
|
23394
|
+
}
|
23395
|
+
]
|
23396
|
+
},
|
23285
23397
|
{
|
23286
23398
|
"kind": "javascript-module",
|
23287
23399
|
"path": "src/services/azure/utils/azureUtils.ts",
|
@@ -23529,12 +23641,12 @@
|
|
23529
23641
|
},
|
23530
23642
|
{
|
23531
23643
|
"kind": "javascript-module",
|
23532
|
-
"path": "src/services/
|
23644
|
+
"path": "src/services/huggingFace/utils/huggingFaceUtils.ts",
|
23533
23645
|
"declarations": [
|
23534
23646
|
{
|
23535
23647
|
"kind": "class",
|
23536
23648
|
"description": "",
|
23537
|
-
"name": "
|
23649
|
+
"name": "HuggingFaceUtils",
|
23538
23650
|
"members": [
|
23539
23651
|
{
|
23540
23652
|
"kind": "method",
|
@@ -23599,138 +23711,58 @@
|
|
23599
23711
|
"exports": [
|
23600
23712
|
{
|
23601
23713
|
"kind": "js",
|
23602
|
-
"name": "
|
23714
|
+
"name": "HuggingFaceUtils",
|
23603
23715
|
"declaration": {
|
23604
|
-
"name": "
|
23605
|
-
"module": "src/services/
|
23716
|
+
"name": "HuggingFaceUtils",
|
23717
|
+
"module": "src/services/huggingFace/utils/huggingFaceUtils.ts"
|
23606
23718
|
}
|
23607
23719
|
}
|
23608
23720
|
]
|
23609
23721
|
},
|
23610
23722
|
{
|
23611
23723
|
"kind": "javascript-module",
|
23612
|
-
"path": "src/services/
|
23724
|
+
"path": "src/services/openAI/utils/openAIConverseBaseBody.ts",
|
23613
23725
|
"declarations": [
|
23614
23726
|
{
|
23615
23727
|
"kind": "class",
|
23616
23728
|
"description": "",
|
23617
|
-
"name": "
|
23729
|
+
"name": "OpenAIConverseBaseBody",
|
23618
23730
|
"members": [
|
23619
23731
|
{
|
23620
|
-
"kind": "
|
23621
|
-
"name": "
|
23732
|
+
"kind": "field",
|
23733
|
+
"name": "GPT_COMPLETIONS_DAVINCI_MODEL",
|
23734
|
+
"type": {
|
23735
|
+
"text": "string"
|
23736
|
+
},
|
23737
|
+
"privacy": "public",
|
23738
|
+
"static": true,
|
23739
|
+
"default": "'text-davinci-003'"
|
23740
|
+
},
|
23741
|
+
{
|
23742
|
+
"kind": "field",
|
23743
|
+
"name": "GPT_CHAT_TURBO_MODEL",
|
23744
|
+
"type": {
|
23745
|
+
"text": "string"
|
23746
|
+
},
|
23622
23747
|
"privacy": "public",
|
23623
23748
|
"static": true,
|
23749
|
+
"default": "'gpt-3.5-turbo'"
|
23750
|
+
},
|
23751
|
+
{
|
23752
|
+
"kind": "method",
|
23753
|
+
"name": "generateDefaultBody",
|
23754
|
+
"privacy": "private",
|
23755
|
+
"static": true,
|
23756
|
+
"return": {
|
23757
|
+
"type": {
|
23758
|
+
"text": "OpenAIConverseBodyInternal"
|
23759
|
+
}
|
23760
|
+
},
|
23624
23761
|
"parameters": [
|
23625
23762
|
{
|
23626
|
-
"name": "
|
23763
|
+
"name": "modelName",
|
23627
23764
|
"type": {
|
23628
|
-
"text": "
|
23629
|
-
}
|
23630
|
-
}
|
23631
|
-
]
|
23632
|
-
},
|
23633
|
-
{
|
23634
|
-
"kind": "method",
|
23635
|
-
"name": "handleVerificationResult",
|
23636
|
-
"privacy": "private",
|
23637
|
-
"static": true,
|
23638
|
-
"parameters": [
|
23639
|
-
{
|
23640
|
-
"name": "result",
|
23641
|
-
"type": {
|
23642
|
-
"text": "object"
|
23643
|
-
}
|
23644
|
-
},
|
23645
|
-
{
|
23646
|
-
"name": "key",
|
23647
|
-
"type": {
|
23648
|
-
"text": "string"
|
23649
|
-
}
|
23650
|
-
},
|
23651
|
-
{
|
23652
|
-
"name": "onSuccess",
|
23653
|
-
"type": {
|
23654
|
-
"text": "(key: string) => void"
|
23655
|
-
}
|
23656
|
-
},
|
23657
|
-
{
|
23658
|
-
"name": "onFail",
|
23659
|
-
"type": {
|
23660
|
-
"text": "(message: string) => void"
|
23661
|
-
}
|
23662
|
-
}
|
23663
|
-
]
|
23664
|
-
},
|
23665
|
-
{
|
23666
|
-
"kind": "method",
|
23667
|
-
"name": "buildKeyVerificationDetails",
|
23668
|
-
"privacy": "public",
|
23669
|
-
"static": true,
|
23670
|
-
"return": {
|
23671
|
-
"type": {
|
23672
|
-
"text": "KeyVerificationDetails"
|
23673
|
-
}
|
23674
|
-
}
|
23675
|
-
}
|
23676
|
-
]
|
23677
|
-
}
|
23678
|
-
],
|
23679
|
-
"exports": [
|
23680
|
-
{
|
23681
|
-
"kind": "js",
|
23682
|
-
"name": "HuggingFaceUtils",
|
23683
|
-
"declaration": {
|
23684
|
-
"name": "HuggingFaceUtils",
|
23685
|
-
"module": "src/services/huggingFace/utils/huggingFaceUtils.ts"
|
23686
|
-
}
|
23687
|
-
}
|
23688
|
-
]
|
23689
|
-
},
|
23690
|
-
{
|
23691
|
-
"kind": "javascript-module",
|
23692
|
-
"path": "src/services/openAI/utils/openAIConverseBaseBody.ts",
|
23693
|
-
"declarations": [
|
23694
|
-
{
|
23695
|
-
"kind": "class",
|
23696
|
-
"description": "",
|
23697
|
-
"name": "OpenAIConverseBaseBody",
|
23698
|
-
"members": [
|
23699
|
-
{
|
23700
|
-
"kind": "field",
|
23701
|
-
"name": "GPT_COMPLETIONS_DAVINCI_MODEL",
|
23702
|
-
"type": {
|
23703
|
-
"text": "string"
|
23704
|
-
},
|
23705
|
-
"privacy": "public",
|
23706
|
-
"static": true,
|
23707
|
-
"default": "'text-davinci-003'"
|
23708
|
-
},
|
23709
|
-
{
|
23710
|
-
"kind": "field",
|
23711
|
-
"name": "GPT_CHAT_TURBO_MODEL",
|
23712
|
-
"type": {
|
23713
|
-
"text": "string"
|
23714
|
-
},
|
23715
|
-
"privacy": "public",
|
23716
|
-
"static": true,
|
23717
|
-
"default": "'gpt-3.5-turbo'"
|
23718
|
-
},
|
23719
|
-
{
|
23720
|
-
"kind": "method",
|
23721
|
-
"name": "generateDefaultBody",
|
23722
|
-
"privacy": "private",
|
23723
|
-
"static": true,
|
23724
|
-
"return": {
|
23725
|
-
"type": {
|
23726
|
-
"text": "OpenAIConverseBodyInternal"
|
23727
|
-
}
|
23728
|
-
},
|
23729
|
-
"parameters": [
|
23730
|
-
{
|
23731
|
-
"name": "modelName",
|
23732
|
-
"type": {
|
23733
|
-
"text": "ModelName"
|
23765
|
+
"text": "ModelName"
|
23734
23766
|
}
|
23735
23767
|
}
|
23736
23768
|
]
|
@@ -25445,6 +25477,16 @@
|
|
25445
25477
|
}
|
25446
25478
|
]
|
25447
25479
|
},
|
25480
|
+
{
|
25481
|
+
"kind": "method",
|
25482
|
+
"name": "getLastMessageElement",
|
25483
|
+
"privacy": "private"
|
25484
|
+
},
|
25485
|
+
{
|
25486
|
+
"kind": "method",
|
25487
|
+
"name": "getLastMessageBubbleElement",
|
25488
|
+
"privacy": "private"
|
25489
|
+
},
|
25448
25490
|
{
|
25449
25491
|
"kind": "method",
|
25450
25492
|
"name": "isLastMessageError",
|
@@ -26234,6 +26276,173 @@
|
|
26234
26276
|
}
|
26235
26277
|
]
|
26236
26278
|
},
|
26279
|
+
{
|
26280
|
+
"kind": "javascript-module",
|
26281
|
+
"path": "src/views/chat/input/fileAttachments/fileAttachments.ts",
|
26282
|
+
"declarations": [
|
26283
|
+
{
|
26284
|
+
"kind": "class",
|
26285
|
+
"description": "",
|
26286
|
+
"name": "FileAttachments",
|
26287
|
+
"members": [
|
26288
|
+
{
|
26289
|
+
"kind": "field",
|
26290
|
+
"name": "_fileAttachmentsTypes",
|
26291
|
+
"type": {
|
26292
|
+
"text": "FileAttachmentsType[]"
|
26293
|
+
},
|
26294
|
+
"privacy": "private",
|
26295
|
+
"default": "[]"
|
26296
|
+
},
|
26297
|
+
{
|
26298
|
+
"kind": "field",
|
26299
|
+
"name": "elementRef",
|
26300
|
+
"type": {
|
26301
|
+
"text": "HTMLElement"
|
26302
|
+
}
|
26303
|
+
},
|
26304
|
+
{
|
26305
|
+
"kind": "method",
|
26306
|
+
"name": "addType",
|
26307
|
+
"parameters": [
|
26308
|
+
{
|
26309
|
+
"name": "files",
|
26310
|
+
"type": {
|
26311
|
+
"text": "FileAttachmentsT"
|
26312
|
+
}
|
26313
|
+
},
|
26314
|
+
{
|
26315
|
+
"name": "type",
|
26316
|
+
"type": {
|
26317
|
+
"text": "keyof ServiceFileTypes"
|
26318
|
+
}
|
26319
|
+
}
|
26320
|
+
]
|
26321
|
+
},
|
26322
|
+
{
|
26323
|
+
"kind": "method",
|
26324
|
+
"name": "createAttachmentContainer",
|
26325
|
+
"privacy": "private"
|
26326
|
+
},
|
26327
|
+
{
|
26328
|
+
"kind": "method",
|
26329
|
+
"name": "toggleContainerDisplay",
|
26330
|
+
"privacy": "private",
|
26331
|
+
"parameters": [
|
26332
|
+
{
|
26333
|
+
"name": "display",
|
26334
|
+
"type": {
|
26335
|
+
"text": "boolean"
|
26336
|
+
}
|
26337
|
+
}
|
26338
|
+
]
|
26339
|
+
},
|
26340
|
+
{
|
26341
|
+
"kind": "method",
|
26342
|
+
"name": "getAllFileData"
|
26343
|
+
},
|
26344
|
+
{
|
26345
|
+
"kind": "method",
|
26346
|
+
"name": "completePlaceholders"
|
26347
|
+
},
|
26348
|
+
{
|
26349
|
+
"kind": "method",
|
26350
|
+
"name": "addFilesToType",
|
26351
|
+
"privacy": "public",
|
26352
|
+
"static": true,
|
26353
|
+
"parameters": [
|
26354
|
+
{
|
26355
|
+
"name": "files",
|
26356
|
+
"type": {
|
26357
|
+
"text": "File[]"
|
26358
|
+
}
|
26359
|
+
},
|
26360
|
+
{
|
26361
|
+
"name": "fileAttachmentTypes",
|
26362
|
+
"type": {
|
26363
|
+
"text": "FileAttachmentsType[]"
|
26364
|
+
}
|
26365
|
+
}
|
26366
|
+
]
|
26367
|
+
},
|
26368
|
+
{
|
26369
|
+
"kind": "method",
|
26370
|
+
"name": "addFilesToAnyType",
|
26371
|
+
"privacy": "public",
|
26372
|
+
"parameters": [
|
26373
|
+
{
|
26374
|
+
"name": "files",
|
26375
|
+
"type": {
|
26376
|
+
"text": "File[]"
|
26377
|
+
}
|
26378
|
+
}
|
26379
|
+
]
|
26380
|
+
},
|
26381
|
+
{
|
26382
|
+
"kind": "method",
|
26383
|
+
"name": "removeAllFiles"
|
26384
|
+
},
|
26385
|
+
{
|
26386
|
+
"kind": "method",
|
26387
|
+
"name": "getNumberOfTypes"
|
26388
|
+
}
|
26389
|
+
]
|
26390
|
+
}
|
26391
|
+
],
|
26392
|
+
"exports": [
|
26393
|
+
{
|
26394
|
+
"kind": "js",
|
26395
|
+
"name": "FileAttachments",
|
26396
|
+
"declaration": {
|
26397
|
+
"name": "FileAttachments",
|
26398
|
+
"module": "src/views/chat/input/fileAttachments/fileAttachments.ts"
|
26399
|
+
}
|
26400
|
+
}
|
26401
|
+
]
|
26402
|
+
},
|
26403
|
+
{
|
26404
|
+
"kind": "javascript-module",
|
26405
|
+
"path": "src/views/chat/input/fileAttachments/newFileName.ts",
|
26406
|
+
"declarations": [
|
26407
|
+
{
|
26408
|
+
"kind": "class",
|
26409
|
+
"description": "",
|
26410
|
+
"name": "NewFileName",
|
26411
|
+
"members": [
|
26412
|
+
{
|
26413
|
+
"kind": "method",
|
26414
|
+
"name": "getFileName",
|
26415
|
+
"privacy": "public",
|
26416
|
+
"static": true,
|
26417
|
+
"parameters": [
|
26418
|
+
{
|
26419
|
+
"name": "prefix",
|
26420
|
+
"type": {
|
26421
|
+
"text": "string"
|
26422
|
+
}
|
26423
|
+
},
|
26424
|
+
{
|
26425
|
+
"name": "extension",
|
26426
|
+
"type": {
|
26427
|
+
"text": "string"
|
26428
|
+
}
|
26429
|
+
}
|
26430
|
+
]
|
26431
|
+
}
|
26432
|
+
]
|
26433
|
+
}
|
26434
|
+
],
|
26435
|
+
"exports": [
|
26436
|
+
{
|
26437
|
+
"kind": "js",
|
26438
|
+
"name": "NewFileName",
|
26439
|
+
"declaration": {
|
26440
|
+
"name": "NewFileName",
|
26441
|
+
"module": "src/views/chat/input/fileAttachments/newFileName.ts"
|
26442
|
+
}
|
26443
|
+
}
|
26444
|
+
]
|
26445
|
+
},
|
26237
26446
|
{
|
26238
26447
|
"kind": "javascript-module",
|
26239
26448
|
"path": "src/views/chat/input/dropup/dropup.ts",
|
@@ -26923,202 +27132,6 @@
|
|
26923
27132
|
}
|
26924
27133
|
]
|
26925
27134
|
},
|
26926
|
-
{
|
26927
|
-
"kind": "javascript-module",
|
26928
|
-
"path": "src/views/chat/input/fileAttachments/fileAttachments.ts",
|
26929
|
-
"declarations": [
|
26930
|
-
{
|
26931
|
-
"kind": "class",
|
26932
|
-
"description": "",
|
26933
|
-
"name": "FileAttachments",
|
26934
|
-
"members": [
|
26935
|
-
{
|
26936
|
-
"kind": "field",
|
26937
|
-
"name": "_fileAttachmentsTypes",
|
26938
|
-
"type": {
|
26939
|
-
"text": "FileAttachmentsType[]"
|
26940
|
-
},
|
26941
|
-
"privacy": "private",
|
26942
|
-
"default": "[]"
|
26943
|
-
},
|
26944
|
-
{
|
26945
|
-
"kind": "field",
|
26946
|
-
"name": "elementRef",
|
26947
|
-
"type": {
|
26948
|
-
"text": "HTMLElement"
|
26949
|
-
}
|
26950
|
-
},
|
26951
|
-
{
|
26952
|
-
"kind": "method",
|
26953
|
-
"name": "addType",
|
26954
|
-
"parameters": [
|
26955
|
-
{
|
26956
|
-
"name": "files",
|
26957
|
-
"type": {
|
26958
|
-
"text": "FileAttachmentsT"
|
26959
|
-
}
|
26960
|
-
},
|
26961
|
-
{
|
26962
|
-
"name": "type",
|
26963
|
-
"type": {
|
26964
|
-
"text": "keyof ServiceFileTypes"
|
26965
|
-
}
|
26966
|
-
}
|
26967
|
-
]
|
26968
|
-
},
|
26969
|
-
{
|
26970
|
-
"kind": "method",
|
26971
|
-
"name": "createAttachmentContainer",
|
26972
|
-
"privacy": "private"
|
26973
|
-
},
|
26974
|
-
{
|
26975
|
-
"kind": "method",
|
26976
|
-
"name": "toggleContainerDisplay",
|
26977
|
-
"privacy": "private",
|
26978
|
-
"parameters": [
|
26979
|
-
{
|
26980
|
-
"name": "display",
|
26981
|
-
"type": {
|
26982
|
-
"text": "boolean"
|
26983
|
-
}
|
26984
|
-
}
|
26985
|
-
]
|
26986
|
-
},
|
26987
|
-
{
|
26988
|
-
"kind": "method",
|
26989
|
-
"name": "getAllFileData"
|
26990
|
-
},
|
26991
|
-
{
|
26992
|
-
"kind": "method",
|
26993
|
-
"name": "completePlaceholders"
|
26994
|
-
},
|
26995
|
-
{
|
26996
|
-
"kind": "method",
|
26997
|
-
"name": "addFilesToType",
|
26998
|
-
"privacy": "public",
|
26999
|
-
"static": true,
|
27000
|
-
"parameters": [
|
27001
|
-
{
|
27002
|
-
"name": "files",
|
27003
|
-
"type": {
|
27004
|
-
"text": "File[]"
|
27005
|
-
}
|
27006
|
-
},
|
27007
|
-
{
|
27008
|
-
"name": "fileAttachmentTypes",
|
27009
|
-
"type": {
|
27010
|
-
"text": "FileAttachmentsType[]"
|
27011
|
-
}
|
27012
|
-
}
|
27013
|
-
]
|
27014
|
-
},
|
27015
|
-
{
|
27016
|
-
"kind": "method",
|
27017
|
-
"name": "addFilesToAnyType",
|
27018
|
-
"privacy": "public",
|
27019
|
-
"parameters": [
|
27020
|
-
{
|
27021
|
-
"name": "files",
|
27022
|
-
"type": {
|
27023
|
-
"text": "File[]"
|
27024
|
-
}
|
27025
|
-
}
|
27026
|
-
]
|
27027
|
-
},
|
27028
|
-
{
|
27029
|
-
"kind": "method",
|
27030
|
-
"name": "removeAllFiles"
|
27031
|
-
},
|
27032
|
-
{
|
27033
|
-
"kind": "method",
|
27034
|
-
"name": "getNumberOfTypes"
|
27035
|
-
}
|
27036
|
-
]
|
27037
|
-
}
|
27038
|
-
],
|
27039
|
-
"exports": [
|
27040
|
-
{
|
27041
|
-
"kind": "js",
|
27042
|
-
"name": "FileAttachments",
|
27043
|
-
"declaration": {
|
27044
|
-
"name": "FileAttachments",
|
27045
|
-
"module": "src/views/chat/input/fileAttachments/fileAttachments.ts"
|
27046
|
-
}
|
27047
|
-
}
|
27048
|
-
]
|
27049
|
-
},
|
27050
|
-
{
|
27051
|
-
"kind": "javascript-module",
|
27052
|
-
"path": "src/views/chat/input/fileAttachments/newFileName.ts",
|
27053
|
-
"declarations": [
|
27054
|
-
{
|
27055
|
-
"kind": "class",
|
27056
|
-
"description": "",
|
27057
|
-
"name": "NewFileName",
|
27058
|
-
"members": [
|
27059
|
-
{
|
27060
|
-
"kind": "method",
|
27061
|
-
"name": "getFileName",
|
27062
|
-
"privacy": "public",
|
27063
|
-
"static": true,
|
27064
|
-
"parameters": [
|
27065
|
-
{
|
27066
|
-
"name": "prefix",
|
27067
|
-
"type": {
|
27068
|
-
"text": "string"
|
27069
|
-
}
|
27070
|
-
},
|
27071
|
-
{
|
27072
|
-
"name": "extension",
|
27073
|
-
"type": {
|
27074
|
-
"text": "string"
|
27075
|
-
}
|
27076
|
-
}
|
27077
|
-
]
|
27078
|
-
}
|
27079
|
-
]
|
27080
|
-
}
|
27081
|
-
],
|
27082
|
-
"exports": [
|
27083
|
-
{
|
27084
|
-
"kind": "js",
|
27085
|
-
"name": "NewFileName",
|
27086
|
-
"declaration": {
|
27087
|
-
"name": "NewFileName",
|
27088
|
-
"module": "src/views/chat/input/fileAttachments/newFileName.ts"
|
27089
|
-
}
|
27090
|
-
}
|
27091
|
-
]
|
27092
|
-
},
|
27093
|
-
{
|
27094
|
-
"kind": "javascript-module",
|
27095
|
-
"path": "src/views/chat/messages/remarkable/remarkableConfig.ts",
|
27096
|
-
"declarations": [
|
27097
|
-
{
|
27098
|
-
"kind": "class",
|
27099
|
-
"description": "",
|
27100
|
-
"name": "RemarkableConfig",
|
27101
|
-
"members": [
|
27102
|
-
{
|
27103
|
-
"kind": "method",
|
27104
|
-
"name": "createNew",
|
27105
|
-
"privacy": "public",
|
27106
|
-
"static": true
|
27107
|
-
}
|
27108
|
-
]
|
27109
|
-
}
|
27110
|
-
],
|
27111
|
-
"exports": [
|
27112
|
-
{
|
27113
|
-
"kind": "js",
|
27114
|
-
"name": "RemarkableConfig",
|
27115
|
-
"declaration": {
|
27116
|
-
"name": "RemarkableConfig",
|
27117
|
-
"module": "src/views/chat/messages/remarkable/remarkableConfig.ts"
|
27118
|
-
}
|
27119
|
-
}
|
27120
|
-
]
|
27121
|
-
},
|
27122
27135
|
{
|
27123
27136
|
"kind": "javascript-module",
|
27124
27137
|
"path": "src/views/chat/input/textInput/focusUtils.ts",
|
@@ -27544,6 +27557,35 @@
|
|
27544
27557
|
}
|
27545
27558
|
]
|
27546
27559
|
},
|
27560
|
+
{
|
27561
|
+
"kind": "javascript-module",
|
27562
|
+
"path": "src/views/chat/messages/remarkable/remarkableConfig.ts",
|
27563
|
+
"declarations": [
|
27564
|
+
{
|
27565
|
+
"kind": "class",
|
27566
|
+
"description": "",
|
27567
|
+
"name": "RemarkableConfig",
|
27568
|
+
"members": [
|
27569
|
+
{
|
27570
|
+
"kind": "method",
|
27571
|
+
"name": "createNew",
|
27572
|
+
"privacy": "public",
|
27573
|
+
"static": true
|
27574
|
+
}
|
27575
|
+
]
|
27576
|
+
}
|
27577
|
+
],
|
27578
|
+
"exports": [
|
27579
|
+
{
|
27580
|
+
"kind": "js",
|
27581
|
+
"name": "RemarkableConfig",
|
27582
|
+
"declaration": {
|
27583
|
+
"name": "RemarkableConfig",
|
27584
|
+
"module": "src/views/chat/messages/remarkable/remarkableConfig.ts"
|
27585
|
+
}
|
27586
|
+
}
|
27587
|
+
]
|
27588
|
+
},
|
27547
27589
|
{
|
27548
27590
|
"kind": "javascript-module",
|
27549
27591
|
"path": "src/views/chat/messages/textToSpeech/textToSpeech.ts",
|
@@ -29562,6 +29604,15 @@
|
|
29562
29604
|
"privacy": "private",
|
29563
29605
|
"default": "new AbortController()"
|
29564
29606
|
},
|
29607
|
+
{
|
29608
|
+
"kind": "field",
|
29609
|
+
"name": "_stopClicked",
|
29610
|
+
"type": {
|
29611
|
+
"text": "StreamEvents['stopClicked']"
|
29612
|
+
},
|
29613
|
+
"privacy": "private",
|
29614
|
+
"default": "{listener: () => {}}"
|
29615
|
+
},
|
29565
29616
|
{
|
29566
29617
|
"kind": "field",
|
29567
29618
|
"name": "_innerElements",
|