bmlt-server-client 1.3.6 → 1.3.7-beta.1

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.
Files changed (40) hide show
  1. package/.idea/vcs.xml +6 -0
  2. package/.idea/workspace.xml +112 -0
  3. package/.openapi-generator/FILES +6 -0
  4. package/Makefile +1 -1
  5. package/README.md +7 -2
  6. package/dist/apis/RootServerApi.d.ts +24 -1
  7. package/dist/apis/RootServerApi.js +68 -0
  8. package/dist/esm/apis/RootServerApi.d.ts +24 -1
  9. package/dist/esm/apis/RootServerApi.js +69 -1
  10. package/dist/esm/models/Settings.d.ts +33 -0
  11. package/dist/esm/models/Settings.js +44 -0
  12. package/dist/esm/models/SettingsBase.d.ts +182 -0
  13. package/dist/esm/models/SettingsBase.js +91 -0
  14. package/dist/esm/models/SettingsObject.d.ts +182 -0
  15. package/dist/esm/models/SettingsObject.js +91 -0
  16. package/dist/esm/models/SettingsUpdate.d.ts +182 -0
  17. package/dist/esm/models/SettingsUpdate.js +91 -0
  18. package/dist/esm/models/index.d.ts +3 -0
  19. package/dist/esm/models/index.js +3 -0
  20. package/dist/models/Settings.d.ts +33 -0
  21. package/dist/models/Settings.js +51 -0
  22. package/dist/models/SettingsBase.d.ts +182 -0
  23. package/dist/models/SettingsBase.js +98 -0
  24. package/dist/models/SettingsObject.d.ts +182 -0
  25. package/dist/models/SettingsObject.js +98 -0
  26. package/dist/models/SettingsUpdate.d.ts +182 -0
  27. package/dist/models/SettingsUpdate.js +98 -0
  28. package/dist/models/index.d.ts +3 -0
  29. package/dist/models/index.js +3 -0
  30. package/docs/RootServerApi.md +141 -0
  31. package/docs/SettingsBase.md +84 -0
  32. package/docs/SettingsObject.md +84 -0
  33. package/docs/SettingsUpdate.md +85 -0
  34. package/openapi.json +1 -1
  35. package/package.json +1 -1
  36. package/src/apis/RootServerApi.ts +91 -0
  37. package/src/models/SettingsBase.ts +265 -0
  38. package/src/models/SettingsObject.ts +265 -0
  39. package/src/models/SettingsUpdate.ts +265 -0
  40. package/src/models/index.ts +3 -0
@@ -0,0 +1,182 @@
1
+ /**
2
+ * BMLT
3
+ * BMLT Admin API Documentation
4
+ *
5
+ * The version of the OpenAPI document: 1.0.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface SettingsBase
16
+ */
17
+ export interface SettingsBase {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof SettingsBase
22
+ */
23
+ googleApiKey?: string;
24
+ /**
25
+ *
26
+ * @type {number}
27
+ * @memberof SettingsBase
28
+ */
29
+ changeDepthForMeetings?: number;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof SettingsBase
34
+ */
35
+ defaultSortKey?: string | null;
36
+ /**
37
+ *
38
+ * @type {string}
39
+ * @memberof SettingsBase
40
+ */
41
+ language?: string;
42
+ /**
43
+ *
44
+ * @type {string}
45
+ * @memberof SettingsBase
46
+ */
47
+ defaultDurationTime?: string;
48
+ /**
49
+ *
50
+ * @type {string}
51
+ * @memberof SettingsBase
52
+ */
53
+ regionBias?: string;
54
+ /**
55
+ *
56
+ * @type {string}
57
+ * @memberof SettingsBase
58
+ */
59
+ distanceUnits?: string;
60
+ /**
61
+ *
62
+ * @type {boolean}
63
+ * @memberof SettingsBase
64
+ */
65
+ enableEmailContact?: boolean;
66
+ /**
67
+ *
68
+ * @type {boolean}
69
+ * @memberof SettingsBase
70
+ */
71
+ includeServiceBodyAdminOnEmails?: boolean;
72
+ /**
73
+ *
74
+ * @type {Array<string>}
75
+ * @memberof SettingsBase
76
+ */
77
+ meetingStatesAndProvinces?: Array<string>;
78
+ /**
79
+ *
80
+ * @type {Array<string>}
81
+ * @memberof SettingsBase
82
+ */
83
+ meetingCountiesAndSubProvinces?: Array<string>;
84
+ /**
85
+ *
86
+ * @type {number}
87
+ * @memberof SettingsBase
88
+ */
89
+ searchSpecMapCenterLongitude?: number;
90
+ /**
91
+ *
92
+ * @type {number}
93
+ * @memberof SettingsBase
94
+ */
95
+ searchSpecMapCenterLatitude?: number;
96
+ /**
97
+ *
98
+ * @type {number}
99
+ * @memberof SettingsBase
100
+ */
101
+ searchSpecMapCenterZoom?: number;
102
+ /**
103
+ *
104
+ * @type {number}
105
+ * @memberof SettingsBase
106
+ */
107
+ numberOfMeetingsForAuto?: number;
108
+ /**
109
+ *
110
+ * @type {boolean}
111
+ * @memberof SettingsBase
112
+ */
113
+ autoGeocodingEnabled?: boolean;
114
+ /**
115
+ *
116
+ * @type {boolean}
117
+ * @memberof SettingsBase
118
+ */
119
+ countyAutoGeocodingEnabled?: boolean;
120
+ /**
121
+ *
122
+ * @type {boolean}
123
+ * @memberof SettingsBase
124
+ */
125
+ zipAutoGeocodingEnabled?: boolean;
126
+ /**
127
+ *
128
+ * @type {boolean}
129
+ * @memberof SettingsBase
130
+ */
131
+ defaultClosedStatus?: boolean;
132
+ /**
133
+ *
134
+ * @type {boolean}
135
+ * @memberof SettingsBase
136
+ */
137
+ enableLanguageSelector?: boolean;
138
+ /**
139
+ *
140
+ * @type {boolean}
141
+ * @memberof SettingsBase
142
+ */
143
+ aggregatorModeEnabled?: boolean;
144
+ /**
145
+ *
146
+ * @type {number}
147
+ * @memberof SettingsBase
148
+ */
149
+ aggregatorMaxGeoWidthKm?: number;
150
+ /**
151
+ *
152
+ * @type {boolean}
153
+ * @memberof SettingsBase
154
+ */
155
+ includeServiceBodyEmailInSemantic?: boolean;
156
+ /**
157
+ *
158
+ * @type {string}
159
+ * @memberof SettingsBase
160
+ */
161
+ bmltTitle?: string;
162
+ /**
163
+ *
164
+ * @type {string}
165
+ * @memberof SettingsBase
166
+ */
167
+ bmltNotice?: string;
168
+ /**
169
+ *
170
+ * @type {object}
171
+ * @memberof SettingsBase
172
+ */
173
+ formatLangNames?: object;
174
+ }
175
+ /**
176
+ * Check if a given object implements the SettingsBase interface.
177
+ */
178
+ export declare function instanceOfSettingsBase(value: object): value is SettingsBase;
179
+ export declare function SettingsBaseFromJSON(json: any): SettingsBase;
180
+ export declare function SettingsBaseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SettingsBase;
181
+ export declare function SettingsBaseToJSON(json: any): SettingsBase;
182
+ export declare function SettingsBaseToJSONTyped(value?: SettingsBase | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,91 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * BMLT
5
+ * BMLT Admin API Documentation
6
+ *
7
+ * The version of the OpenAPI document: 1.0.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ /**
15
+ * Check if a given object implements the SettingsBase interface.
16
+ */
17
+ export function instanceOfSettingsBase(value) {
18
+ return true;
19
+ }
20
+ export function SettingsBaseFromJSON(json) {
21
+ return SettingsBaseFromJSONTyped(json, false);
22
+ }
23
+ export function SettingsBaseFromJSONTyped(json, ignoreDiscriminator) {
24
+ if (json == null) {
25
+ return json;
26
+ }
27
+ return {
28
+ 'googleApiKey': json['googleApiKey'] == null ? undefined : json['googleApiKey'],
29
+ 'changeDepthForMeetings': json['changeDepthForMeetings'] == null ? undefined : json['changeDepthForMeetings'],
30
+ 'defaultSortKey': json['defaultSortKey'] == null ? undefined : json['defaultSortKey'],
31
+ 'language': json['language'] == null ? undefined : json['language'],
32
+ 'defaultDurationTime': json['defaultDurationTime'] == null ? undefined : json['defaultDurationTime'],
33
+ 'regionBias': json['regionBias'] == null ? undefined : json['regionBias'],
34
+ 'distanceUnits': json['distanceUnits'] == null ? undefined : json['distanceUnits'],
35
+ 'enableEmailContact': json['enableEmailContact'] == null ? undefined : json['enableEmailContact'],
36
+ 'includeServiceBodyAdminOnEmails': json['includeServiceBodyAdminOnEmails'] == null ? undefined : json['includeServiceBodyAdminOnEmails'],
37
+ 'meetingStatesAndProvinces': json['meetingStatesAndProvinces'] == null ? undefined : json['meetingStatesAndProvinces'],
38
+ 'meetingCountiesAndSubProvinces': json['meetingCountiesAndSubProvinces'] == null ? undefined : json['meetingCountiesAndSubProvinces'],
39
+ 'searchSpecMapCenterLongitude': json['searchSpecMapCenterLongitude'] == null ? undefined : json['searchSpecMapCenterLongitude'],
40
+ 'searchSpecMapCenterLatitude': json['searchSpecMapCenterLatitude'] == null ? undefined : json['searchSpecMapCenterLatitude'],
41
+ 'searchSpecMapCenterZoom': json['searchSpecMapCenterZoom'] == null ? undefined : json['searchSpecMapCenterZoom'],
42
+ 'numberOfMeetingsForAuto': json['numberOfMeetingsForAuto'] == null ? undefined : json['numberOfMeetingsForAuto'],
43
+ 'autoGeocodingEnabled': json['autoGeocodingEnabled'] == null ? undefined : json['autoGeocodingEnabled'],
44
+ 'countyAutoGeocodingEnabled': json['countyAutoGeocodingEnabled'] == null ? undefined : json['countyAutoGeocodingEnabled'],
45
+ 'zipAutoGeocodingEnabled': json['zipAutoGeocodingEnabled'] == null ? undefined : json['zipAutoGeocodingEnabled'],
46
+ 'defaultClosedStatus': json['defaultClosedStatus'] == null ? undefined : json['defaultClosedStatus'],
47
+ 'enableLanguageSelector': json['enableLanguageSelector'] == null ? undefined : json['enableLanguageSelector'],
48
+ 'aggregatorModeEnabled': json['aggregatorModeEnabled'] == null ? undefined : json['aggregatorModeEnabled'],
49
+ 'aggregatorMaxGeoWidthKm': json['aggregatorMaxGeoWidthKm'] == null ? undefined : json['aggregatorMaxGeoWidthKm'],
50
+ 'includeServiceBodyEmailInSemantic': json['includeServiceBodyEmailInSemantic'] == null ? undefined : json['includeServiceBodyEmailInSemantic'],
51
+ 'bmltTitle': json['bmltTitle'] == null ? undefined : json['bmltTitle'],
52
+ 'bmltNotice': json['bmltNotice'] == null ? undefined : json['bmltNotice'],
53
+ 'formatLangNames': json['formatLangNames'] == null ? undefined : json['formatLangNames'],
54
+ };
55
+ }
56
+ export function SettingsBaseToJSON(json) {
57
+ return SettingsBaseToJSONTyped(json, false);
58
+ }
59
+ export function SettingsBaseToJSONTyped(value, ignoreDiscriminator = false) {
60
+ if (value == null) {
61
+ return value;
62
+ }
63
+ return {
64
+ 'googleApiKey': value['googleApiKey'],
65
+ 'changeDepthForMeetings': value['changeDepthForMeetings'],
66
+ 'defaultSortKey': value['defaultSortKey'],
67
+ 'language': value['language'],
68
+ 'defaultDurationTime': value['defaultDurationTime'],
69
+ 'regionBias': value['regionBias'],
70
+ 'distanceUnits': value['distanceUnits'],
71
+ 'enableEmailContact': value['enableEmailContact'],
72
+ 'includeServiceBodyAdminOnEmails': value['includeServiceBodyAdminOnEmails'],
73
+ 'meetingStatesAndProvinces': value['meetingStatesAndProvinces'],
74
+ 'meetingCountiesAndSubProvinces': value['meetingCountiesAndSubProvinces'],
75
+ 'searchSpecMapCenterLongitude': value['searchSpecMapCenterLongitude'],
76
+ 'searchSpecMapCenterLatitude': value['searchSpecMapCenterLatitude'],
77
+ 'searchSpecMapCenterZoom': value['searchSpecMapCenterZoom'],
78
+ 'numberOfMeetingsForAuto': value['numberOfMeetingsForAuto'],
79
+ 'autoGeocodingEnabled': value['autoGeocodingEnabled'],
80
+ 'countyAutoGeocodingEnabled': value['countyAutoGeocodingEnabled'],
81
+ 'zipAutoGeocodingEnabled': value['zipAutoGeocodingEnabled'],
82
+ 'defaultClosedStatus': value['defaultClosedStatus'],
83
+ 'enableLanguageSelector': value['enableLanguageSelector'],
84
+ 'aggregatorModeEnabled': value['aggregatorModeEnabled'],
85
+ 'aggregatorMaxGeoWidthKm': value['aggregatorMaxGeoWidthKm'],
86
+ 'includeServiceBodyEmailInSemantic': value['includeServiceBodyEmailInSemantic'],
87
+ 'bmltTitle': value['bmltTitle'],
88
+ 'bmltNotice': value['bmltNotice'],
89
+ 'formatLangNames': value['formatLangNames'],
90
+ };
91
+ }
@@ -0,0 +1,182 @@
1
+ /**
2
+ * BMLT
3
+ * BMLT Admin API Documentation
4
+ *
5
+ * The version of the OpenAPI document: 1.0.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface SettingsObject
16
+ */
17
+ export interface SettingsObject {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof SettingsObject
22
+ */
23
+ googleApiKey?: string;
24
+ /**
25
+ *
26
+ * @type {number}
27
+ * @memberof SettingsObject
28
+ */
29
+ changeDepthForMeetings?: number;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof SettingsObject
34
+ */
35
+ defaultSortKey?: string | null;
36
+ /**
37
+ *
38
+ * @type {string}
39
+ * @memberof SettingsObject
40
+ */
41
+ language?: string;
42
+ /**
43
+ *
44
+ * @type {string}
45
+ * @memberof SettingsObject
46
+ */
47
+ defaultDurationTime?: string;
48
+ /**
49
+ *
50
+ * @type {string}
51
+ * @memberof SettingsObject
52
+ */
53
+ regionBias?: string;
54
+ /**
55
+ *
56
+ * @type {string}
57
+ * @memberof SettingsObject
58
+ */
59
+ distanceUnits?: string;
60
+ /**
61
+ *
62
+ * @type {boolean}
63
+ * @memberof SettingsObject
64
+ */
65
+ enableEmailContact?: boolean;
66
+ /**
67
+ *
68
+ * @type {boolean}
69
+ * @memberof SettingsObject
70
+ */
71
+ includeServiceBodyAdminOnEmails?: boolean;
72
+ /**
73
+ *
74
+ * @type {Array<string>}
75
+ * @memberof SettingsObject
76
+ */
77
+ meetingStatesAndProvinces?: Array<string>;
78
+ /**
79
+ *
80
+ * @type {Array<string>}
81
+ * @memberof SettingsObject
82
+ */
83
+ meetingCountiesAndSubProvinces?: Array<string>;
84
+ /**
85
+ *
86
+ * @type {number}
87
+ * @memberof SettingsObject
88
+ */
89
+ searchSpecMapCenterLongitude?: number;
90
+ /**
91
+ *
92
+ * @type {number}
93
+ * @memberof SettingsObject
94
+ */
95
+ searchSpecMapCenterLatitude?: number;
96
+ /**
97
+ *
98
+ * @type {number}
99
+ * @memberof SettingsObject
100
+ */
101
+ searchSpecMapCenterZoom?: number;
102
+ /**
103
+ *
104
+ * @type {number}
105
+ * @memberof SettingsObject
106
+ */
107
+ numberOfMeetingsForAuto?: number;
108
+ /**
109
+ *
110
+ * @type {boolean}
111
+ * @memberof SettingsObject
112
+ */
113
+ autoGeocodingEnabled?: boolean;
114
+ /**
115
+ *
116
+ * @type {boolean}
117
+ * @memberof SettingsObject
118
+ */
119
+ countyAutoGeocodingEnabled?: boolean;
120
+ /**
121
+ *
122
+ * @type {boolean}
123
+ * @memberof SettingsObject
124
+ */
125
+ zipAutoGeocodingEnabled?: boolean;
126
+ /**
127
+ *
128
+ * @type {boolean}
129
+ * @memberof SettingsObject
130
+ */
131
+ defaultClosedStatus?: boolean;
132
+ /**
133
+ *
134
+ * @type {boolean}
135
+ * @memberof SettingsObject
136
+ */
137
+ enableLanguageSelector?: boolean;
138
+ /**
139
+ *
140
+ * @type {boolean}
141
+ * @memberof SettingsObject
142
+ */
143
+ aggregatorModeEnabled?: boolean;
144
+ /**
145
+ *
146
+ * @type {number}
147
+ * @memberof SettingsObject
148
+ */
149
+ aggregatorMaxGeoWidthKm?: number;
150
+ /**
151
+ *
152
+ * @type {boolean}
153
+ * @memberof SettingsObject
154
+ */
155
+ includeServiceBodyEmailInSemantic?: boolean;
156
+ /**
157
+ *
158
+ * @type {string}
159
+ * @memberof SettingsObject
160
+ */
161
+ bmltTitle?: string;
162
+ /**
163
+ *
164
+ * @type {string}
165
+ * @memberof SettingsObject
166
+ */
167
+ bmltNotice?: string;
168
+ /**
169
+ *
170
+ * @type {object}
171
+ * @memberof SettingsObject
172
+ */
173
+ formatLangNames?: object;
174
+ }
175
+ /**
176
+ * Check if a given object implements the SettingsObject interface.
177
+ */
178
+ export declare function instanceOfSettingsObject(value: object): value is SettingsObject;
179
+ export declare function SettingsObjectFromJSON(json: any): SettingsObject;
180
+ export declare function SettingsObjectFromJSONTyped(json: any, ignoreDiscriminator: boolean): SettingsObject;
181
+ export declare function SettingsObjectToJSON(json: any): SettingsObject;
182
+ export declare function SettingsObjectToJSONTyped(value?: SettingsObject | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,91 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * BMLT
5
+ * BMLT Admin API Documentation
6
+ *
7
+ * The version of the OpenAPI document: 1.0.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ /**
15
+ * Check if a given object implements the SettingsObject interface.
16
+ */
17
+ export function instanceOfSettingsObject(value) {
18
+ return true;
19
+ }
20
+ export function SettingsObjectFromJSON(json) {
21
+ return SettingsObjectFromJSONTyped(json, false);
22
+ }
23
+ export function SettingsObjectFromJSONTyped(json, ignoreDiscriminator) {
24
+ if (json == null) {
25
+ return json;
26
+ }
27
+ return {
28
+ 'googleApiKey': json['googleApiKey'] == null ? undefined : json['googleApiKey'],
29
+ 'changeDepthForMeetings': json['changeDepthForMeetings'] == null ? undefined : json['changeDepthForMeetings'],
30
+ 'defaultSortKey': json['defaultSortKey'] == null ? undefined : json['defaultSortKey'],
31
+ 'language': json['language'] == null ? undefined : json['language'],
32
+ 'defaultDurationTime': json['defaultDurationTime'] == null ? undefined : json['defaultDurationTime'],
33
+ 'regionBias': json['regionBias'] == null ? undefined : json['regionBias'],
34
+ 'distanceUnits': json['distanceUnits'] == null ? undefined : json['distanceUnits'],
35
+ 'enableEmailContact': json['enableEmailContact'] == null ? undefined : json['enableEmailContact'],
36
+ 'includeServiceBodyAdminOnEmails': json['includeServiceBodyAdminOnEmails'] == null ? undefined : json['includeServiceBodyAdminOnEmails'],
37
+ 'meetingStatesAndProvinces': json['meetingStatesAndProvinces'] == null ? undefined : json['meetingStatesAndProvinces'],
38
+ 'meetingCountiesAndSubProvinces': json['meetingCountiesAndSubProvinces'] == null ? undefined : json['meetingCountiesAndSubProvinces'],
39
+ 'searchSpecMapCenterLongitude': json['searchSpecMapCenterLongitude'] == null ? undefined : json['searchSpecMapCenterLongitude'],
40
+ 'searchSpecMapCenterLatitude': json['searchSpecMapCenterLatitude'] == null ? undefined : json['searchSpecMapCenterLatitude'],
41
+ 'searchSpecMapCenterZoom': json['searchSpecMapCenterZoom'] == null ? undefined : json['searchSpecMapCenterZoom'],
42
+ 'numberOfMeetingsForAuto': json['numberOfMeetingsForAuto'] == null ? undefined : json['numberOfMeetingsForAuto'],
43
+ 'autoGeocodingEnabled': json['autoGeocodingEnabled'] == null ? undefined : json['autoGeocodingEnabled'],
44
+ 'countyAutoGeocodingEnabled': json['countyAutoGeocodingEnabled'] == null ? undefined : json['countyAutoGeocodingEnabled'],
45
+ 'zipAutoGeocodingEnabled': json['zipAutoGeocodingEnabled'] == null ? undefined : json['zipAutoGeocodingEnabled'],
46
+ 'defaultClosedStatus': json['defaultClosedStatus'] == null ? undefined : json['defaultClosedStatus'],
47
+ 'enableLanguageSelector': json['enableLanguageSelector'] == null ? undefined : json['enableLanguageSelector'],
48
+ 'aggregatorModeEnabled': json['aggregatorModeEnabled'] == null ? undefined : json['aggregatorModeEnabled'],
49
+ 'aggregatorMaxGeoWidthKm': json['aggregatorMaxGeoWidthKm'] == null ? undefined : json['aggregatorMaxGeoWidthKm'],
50
+ 'includeServiceBodyEmailInSemantic': json['includeServiceBodyEmailInSemantic'] == null ? undefined : json['includeServiceBodyEmailInSemantic'],
51
+ 'bmltTitle': json['bmltTitle'] == null ? undefined : json['bmltTitle'],
52
+ 'bmltNotice': json['bmltNotice'] == null ? undefined : json['bmltNotice'],
53
+ 'formatLangNames': json['formatLangNames'] == null ? undefined : json['formatLangNames'],
54
+ };
55
+ }
56
+ export function SettingsObjectToJSON(json) {
57
+ return SettingsObjectToJSONTyped(json, false);
58
+ }
59
+ export function SettingsObjectToJSONTyped(value, ignoreDiscriminator = false) {
60
+ if (value == null) {
61
+ return value;
62
+ }
63
+ return {
64
+ 'googleApiKey': value['googleApiKey'],
65
+ 'changeDepthForMeetings': value['changeDepthForMeetings'],
66
+ 'defaultSortKey': value['defaultSortKey'],
67
+ 'language': value['language'],
68
+ 'defaultDurationTime': value['defaultDurationTime'],
69
+ 'regionBias': value['regionBias'],
70
+ 'distanceUnits': value['distanceUnits'],
71
+ 'enableEmailContact': value['enableEmailContact'],
72
+ 'includeServiceBodyAdminOnEmails': value['includeServiceBodyAdminOnEmails'],
73
+ 'meetingStatesAndProvinces': value['meetingStatesAndProvinces'],
74
+ 'meetingCountiesAndSubProvinces': value['meetingCountiesAndSubProvinces'],
75
+ 'searchSpecMapCenterLongitude': value['searchSpecMapCenterLongitude'],
76
+ 'searchSpecMapCenterLatitude': value['searchSpecMapCenterLatitude'],
77
+ 'searchSpecMapCenterZoom': value['searchSpecMapCenterZoom'],
78
+ 'numberOfMeetingsForAuto': value['numberOfMeetingsForAuto'],
79
+ 'autoGeocodingEnabled': value['autoGeocodingEnabled'],
80
+ 'countyAutoGeocodingEnabled': value['countyAutoGeocodingEnabled'],
81
+ 'zipAutoGeocodingEnabled': value['zipAutoGeocodingEnabled'],
82
+ 'defaultClosedStatus': value['defaultClosedStatus'],
83
+ 'enableLanguageSelector': value['enableLanguageSelector'],
84
+ 'aggregatorModeEnabled': value['aggregatorModeEnabled'],
85
+ 'aggregatorMaxGeoWidthKm': value['aggregatorMaxGeoWidthKm'],
86
+ 'includeServiceBodyEmailInSemantic': value['includeServiceBodyEmailInSemantic'],
87
+ 'bmltTitle': value['bmltTitle'],
88
+ 'bmltNotice': value['bmltNotice'],
89
+ 'formatLangNames': value['formatLangNames'],
90
+ };
91
+ }