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