1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 |
|
9 |
|
10 | "use strict";
|
11 | Object.defineProperty(exports, "__esModule", { value: true });
|
12 | exports.TypeInfo = exports.AvatarSize = void 0;
|
13 | var AvatarSize;
|
14 | (function (AvatarSize) {
|
15 | AvatarSize[AvatarSize["Small"] = 0] = "Small";
|
16 | AvatarSize[AvatarSize["Medium"] = 1] = "Medium";
|
17 | AvatarSize[AvatarSize["Large"] = 2] = "Large";
|
18 | })(AvatarSize = exports.AvatarSize || (exports.AvatarSize = {}));
|
19 | exports.TypeInfo = {
|
20 | AttributeDescriptor: {
|
21 | fields: null
|
22 | },
|
23 | AttributesContainer: {
|
24 | fields: null
|
25 | },
|
26 | Avatar: {
|
27 | fields: null
|
28 | },
|
29 | AvatarSize: {
|
30 | enumValues: {
|
31 | "small": 0,
|
32 | "medium": 1,
|
33 | "large": 2,
|
34 | }
|
35 | },
|
36 | CoreProfileAttribute: {
|
37 | fields: null
|
38 | },
|
39 | Country: {
|
40 | fields: null
|
41 | },
|
42 | CreateProfileContext: {
|
43 | fields: null
|
44 | },
|
45 | GeoRegion: {
|
46 | fields: null
|
47 | },
|
48 | Profile: {
|
49 | fields: null
|
50 | },
|
51 | ProfileAttribute: {
|
52 | fields: null
|
53 | },
|
54 | ProfileAttributeBase: {
|
55 | fields: null
|
56 | },
|
57 | ProfileRegion: {
|
58 | fields: null
|
59 | },
|
60 | ProfileRegions: {
|
61 | fields: null
|
62 | },
|
63 | };
|
64 | exports.TypeInfo.AttributeDescriptor.fields = {};
|
65 | exports.TypeInfo.AttributesContainer.fields = {
|
66 | attributes: {},
|
67 | };
|
68 | exports.TypeInfo.Avatar.fields = {
|
69 | size: {
|
70 | enumType: exports.TypeInfo.AvatarSize
|
71 | },
|
72 | timeStamp: {
|
73 | isDate: true,
|
74 | },
|
75 | };
|
76 | exports.TypeInfo.CoreProfileAttribute.fields = {
|
77 | descriptor: {
|
78 | typeInfo: exports.TypeInfo.AttributeDescriptor
|
79 | },
|
80 | timeStamp: {
|
81 | isDate: true,
|
82 | },
|
83 | };
|
84 | exports.TypeInfo.Country.fields = {};
|
85 | exports.TypeInfo.CreateProfileContext.fields = {};
|
86 | exports.TypeInfo.GeoRegion.fields = {};
|
87 | exports.TypeInfo.Profile.fields = {
|
88 | applicationContainer: {
|
89 | typeInfo: exports.TypeInfo.AttributesContainer
|
90 | },
|
91 | coreAttributes: {},
|
92 | timeStamp: {
|
93 | isDate: true,
|
94 | },
|
95 | };
|
96 | exports.TypeInfo.ProfileAttribute.fields = {
|
97 | descriptor: {
|
98 | typeInfo: exports.TypeInfo.AttributeDescriptor
|
99 | },
|
100 | timeStamp: {
|
101 | isDate: true,
|
102 | },
|
103 | };
|
104 | exports.TypeInfo.ProfileAttributeBase.fields = {
|
105 | descriptor: {
|
106 | typeInfo: exports.TypeInfo.AttributeDescriptor
|
107 | },
|
108 | timeStamp: {
|
109 | isDate: true,
|
110 | },
|
111 | };
|
112 | exports.TypeInfo.ProfileRegion.fields = {};
|
113 | exports.TypeInfo.ProfileRegions.fields = {
|
114 | regions: {
|
115 | isArray: true,
|
116 | typeInfo: exports.TypeInfo.ProfileRegion
|
117 | },
|
118 | };
|