podchat 10.14.13 → 11.3.0
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/config.js +59 -0
- package/dist/podchat-10.14.13.js +112005 -112005
- package/examples/index.html +27 -13
- package/package.json +8 -2
- package/src/chat.js +180 -7
package/config.js
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
var CONFIG = {
|
|
2
|
+
// token: '1cfce37b60d4421db870e67dcfe407d9', // gameBOT
|
|
3
|
+
// token: '567179f126d84277b8dced22599e0b82', // takiBOT
|
|
4
|
+
// token: '1a9d91ccb4d5431b89dd74f7e0bb417b', // talkyBOT
|
|
5
|
+
// token: 'd10237d19ad24ba089f66bdfe3de9974', // Clasor
|
|
6
|
+
// token: "b135febd870746f88032df84dfb01c85", // Clasor Test BOT
|
|
7
|
+
token: 'b45fa3d386f54e34b82d81a11bc27e90',
|
|
8
|
+
|
|
9
|
+
// Permenant Integration Tokens
|
|
10
|
+
// token: "3dd6895c8dc64f93bcd43b58dcc2aab3", // Masoud Amjadi
|
|
11
|
+
// token: "9c627a9125d04ebf8455bf57bb33d2a9", // Pooria Pahlevani
|
|
12
|
+
// token: "f6464d4e0f044314b1a668f90287ba26", // Nadia Anvari
|
|
13
|
+
// token: "99506f7c32c849a9a6e2a954303b81ee", // Farhad Kheirkhah
|
|
14
|
+
// token: "979aa5de03934c73a5c6c855bd80cb04", // Mahyar Zhiani
|
|
15
|
+
// token: "a47c9016c8354236abc01395093bed5c", // Ahmad Sajadi
|
|
16
|
+
// token: "d3114ed2fd2a49b4a0a386e727c9e5fa", // Saba Safavi
|
|
17
|
+
// token: "872110b9c6944eda9bc98ef2a68dcf50", // Leila Nemati
|
|
18
|
+
|
|
19
|
+
// ActiveMQ Connection config
|
|
20
|
+
// queueHost: "10.56.16.25",
|
|
21
|
+
// queuePort: "61613",
|
|
22
|
+
// queueUsername: "root",
|
|
23
|
+
// queuePassword: "zalzalak",
|
|
24
|
+
// queueReceive: "queue-in-amjadi-stomp",
|
|
25
|
+
// queueSend: "queue-out-amjadi-stomp",
|
|
26
|
+
|
|
27
|
+
// Neshan Map Api Token
|
|
28
|
+
mapApiKey: '8b77db18704aa646ee5aaea13e7370f4f88b9e8c',
|
|
29
|
+
|
|
30
|
+
// Main Server
|
|
31
|
+
main: {
|
|
32
|
+
socketAddress: 'wss://msg.pod.ir/ws',
|
|
33
|
+
ssoHost: 'https://accounts.pod.ir',
|
|
34
|
+
platformHost: 'https://api.pod.ir/srv/core',
|
|
35
|
+
fileServer: 'https://core.pod.ir',
|
|
36
|
+
podSpaceFileServer: 'https://podspace.podland.ir',
|
|
37
|
+
serverName: 'chat-server'
|
|
38
|
+
},
|
|
39
|
+
|
|
40
|
+
// Sand Box Server
|
|
41
|
+
sandbox: {
|
|
42
|
+
socketAddress: "wss://chat-sandbox.pod.ir/ws",
|
|
43
|
+
ssoHost: "https://accounts.pod.ir",
|
|
44
|
+
platformHost: "https://sandbox.pod.ir:8043/srv/basic-platform",
|
|
45
|
+
fileServer: 'https://core.pod.ir',
|
|
46
|
+
podSpaceFileServer: 'http://sandbox.podspace.ir:8080',
|
|
47
|
+
serverName: "chat-server"
|
|
48
|
+
},
|
|
49
|
+
|
|
50
|
+
// Integration Server
|
|
51
|
+
integration: {
|
|
52
|
+
socketAddress: "ws://172.16.110.235:8003/ws",
|
|
53
|
+
ssoHost: "http://172.16.110.76",
|
|
54
|
+
platformHost: "http://172.16.110.235:8003/srv/bptest-core",
|
|
55
|
+
fileServer: 'https://core.pod.ir',
|
|
56
|
+
podSpaceFileServer: 'http://172.16.110.61:8780/podspace',
|
|
57
|
+
serverName: "chatlocal"
|
|
58
|
+
}
|
|
59
|
+
}
|