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
+ * 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,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 SettingsUpdate interface.
16
+ */
17
+ export function instanceOfSettingsUpdate(value) {
18
+ return true;
19
+ }
20
+ export function SettingsUpdateFromJSON(json) {
21
+ return SettingsUpdateFromJSONTyped(json, false);
22
+ }
23
+ export function SettingsUpdateFromJSONTyped(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 SettingsUpdateToJSON(json) {
57
+ return SettingsUpdateToJSONTyped(json, false);
58
+ }
59
+ export function SettingsUpdateToJSONTyped(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
+ }
@@ -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.
@@ -46,7 +46,7 @@ export function UserFromJSONTyped(json, ignoreDiscriminator) {
46
46
  'email': json['email'],
47
47
  'ownerId': json['ownerId'],
48
48
  'id': json['id'],
49
- 'lastActiveAt': json['lastActiveAt'] == null ? undefined : (new Date(json['lastActiveAt'])),
49
+ 'lastLoginAt': json['lastLoginAt'] == null ? undefined : (new Date(json['lastLoginAt'])),
50
50
  };
51
51
  }
52
52
  export function UserToJSON(json) {
@@ -64,6 +64,6 @@ export function UserToJSONTyped(value, ignoreDiscriminator = false) {
64
64
  'email': value['email'],
65
65
  'ownerId': value['ownerId'],
66
66
  'id': value['id'],
67
- 'lastActiveAt': value['lastActiveAt'] == null ? value['lastActiveAt'] : value['lastActiveAt'].toISOString(),
67
+ 'lastLoginAt': value['lastLoginAt'] == null ? value['lastLoginAt'] : value['lastLoginAt'].toISOString(),
68
68
  };
69
69
  }
@@ -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';
@@ -28,6 +28,9 @@ export * from './ServiceBodyBase';
28
28
  export * from './ServiceBodyCreate';
29
29
  export * from './ServiceBodyPartialUpdate';
30
30
  export * from './ServiceBodyUpdate';
31
+ export * from './SettingsBase';
32
+ export * from './SettingsObject';
33
+ export * from './SettingsUpdate';
31
34
  export * from './Token';
32
35
  export * from './TokenCredentials';
33
36
  export * from './User';
@@ -0,0 +1,33 @@
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
+ import type { SettingsObject } from './SettingsObject';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface Settings
17
+ */
18
+ export interface Settings {
19
+ /**
20
+ *
21
+ * @type {SettingsObject}
22
+ * @memberof Settings
23
+ */
24
+ data: SettingsObject;
25
+ }
26
+ /**
27
+ * Check if a given object implements the Settings interface.
28
+ */
29
+ export declare function instanceOfSettings(value: object): value is Settings;
30
+ export declare function SettingsFromJSON(json: any): Settings;
31
+ export declare function SettingsFromJSONTyped(json: any, ignoreDiscriminator: boolean): Settings;
32
+ export declare function SettingsToJSON(json: any): Settings;
33
+ export declare function SettingsToJSONTyped(value?: Settings | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,51 @@
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.instanceOfSettings = instanceOfSettings;
17
+ exports.SettingsFromJSON = SettingsFromJSON;
18
+ exports.SettingsFromJSONTyped = SettingsFromJSONTyped;
19
+ exports.SettingsToJSON = SettingsToJSON;
20
+ exports.SettingsToJSONTyped = SettingsToJSONTyped;
21
+ const SettingsObject_1 = require("./SettingsObject");
22
+ /**
23
+ * Check if a given object implements the Settings interface.
24
+ */
25
+ function instanceOfSettings(value) {
26
+ if (!('data' in value) || value['data'] === undefined)
27
+ return false;
28
+ return true;
29
+ }
30
+ function SettingsFromJSON(json) {
31
+ return SettingsFromJSONTyped(json, false);
32
+ }
33
+ function SettingsFromJSONTyped(json, ignoreDiscriminator) {
34
+ if (json == null) {
35
+ return json;
36
+ }
37
+ return {
38
+ 'data': (0, SettingsObject_1.SettingsObjectFromJSON)(json['data']),
39
+ };
40
+ }
41
+ function SettingsToJSON(json) {
42
+ return SettingsToJSONTyped(json, false);
43
+ }
44
+ function SettingsToJSONTyped(value, ignoreDiscriminator = false) {
45
+ if (value == null) {
46
+ return value;
47
+ }
48
+ return {
49
+ 'data': (0, SettingsObject_1.SettingsObjectToJSON)(value['data']),
50
+ };
51
+ }
@@ -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,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.instanceOfSettingsBase = instanceOfSettingsBase;
17
+ exports.SettingsBaseFromJSON = SettingsBaseFromJSON;
18
+ exports.SettingsBaseFromJSONTyped = SettingsBaseFromJSONTyped;
19
+ exports.SettingsBaseToJSON = SettingsBaseToJSON;
20
+ exports.SettingsBaseToJSONTyped = SettingsBaseToJSONTyped;
21
+ /**
22
+ * Check if a given object implements the SettingsBase interface.
23
+ */
24
+ function instanceOfSettingsBase(value) {
25
+ return true;
26
+ }
27
+ function SettingsBaseFromJSON(json) {
28
+ return SettingsBaseFromJSONTyped(json, false);
29
+ }
30
+ function SettingsBaseFromJSONTyped(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 SettingsBaseToJSON(json) {
64
+ return SettingsBaseToJSONTyped(json, false);
65
+ }
66
+ function SettingsBaseToJSONTyped(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
+ }