forked from ably/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlanguageData.ts
More file actions
47 lines (46 loc) · 832 Bytes
/
languageData.ts
File metadata and controls
47 lines (46 loc) · 832 Bytes
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
import { ProductKey } from '../types';
import { LanguageData } from './types';
export default {
platform: {
javascript: '2.11',
nodejs: '2.11',
},
pubsub: {
javascript: '2.11',
nodejs: '2.11',
react: '2.11',
csharp: '1.2',
flutter: '1.2',
java: '1.2',
kotlin: '1.2',
objc: '1.2',
php: '1.1',
python: '2.0',
ruby: '1.2',
swift: '1.2',
go: '1.2',
},
chat: {
javascript: '0.11',
react: '0.11',
swift: '0.6',
kotlin: '0.5',
},
spaces: {
javascript: '0.4',
react: '0.4',
},
liveObjects: {
javascript: '2.11',
swift: '0.1',
java: '1.3',
},
liveSync: {
javascript: '0.4',
},
assetTracking: {
javascript: '1.0',
swift: '1.0',
kotlin: '1.7',
},
} satisfies Partial<Record<ProductKey, LanguageData>>;