@tiba-spark/client-shared-lib 25.3.0-103 → 25.3.0-107
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.
- package/esm2022/libraries/guards/sub-module-guard.mjs +21 -10
- package/esm2022/libraries/modules/auth/auth.service.mjs +1 -1
- package/esm2022/libraries/modules/auth/session.actions.mjs +13 -3
- package/esm2022/libraries/modules/auth/session.state.mjs +43 -13
- package/esm2022/libraries/modules/login/login.actions.mjs +8 -1
- package/esm2022/libraries/modules/login/login.state.mjs +47 -10
- package/esm2022/libraries/modules/smartparks/smartpark.actions.mjs +27 -1
- package/esm2022/libraries/modules/smartparks/smartpark.state.mjs +42 -6
- package/esm2022/libraries/resolvers/mobile-command-center-module.resolver.mjs +17 -19
- package/esm2022/libraries/service-proxy/cloud-service-proxies.mjs +1342 -386
- package/esm2022/libraries/service-proxy/identity-service-proxies.mjs +100 -1
- package/esm2022/libraries/service-proxy/service-proxy.module.mjs +8 -4
- package/esm2022/libraries/services/auth-token.service.mjs +19 -3
- package/esm2022/libraries/services/tenant.service.mjs +12 -6
- package/fesm2022/tiba-spark-client-shared-lib.mjs +1617 -385
- package/fesm2022/tiba-spark-client-shared-lib.mjs.map +1 -1
- package/libraries/guards/sub-module-guard.d.ts +3 -1
- package/libraries/guards/sub-module-guard.d.ts.map +1 -1
- package/libraries/modules/auth/auth.service.d.ts.map +1 -1
- package/libraries/modules/auth/session.actions.d.ts +11 -2
- package/libraries/modules/auth/session.actions.d.ts.map +1 -1
- package/libraries/modules/auth/session.state.d.ts +7 -3
- package/libraries/modules/auth/session.state.d.ts.map +1 -1
- package/libraries/modules/login/login.actions.d.ts +6 -0
- package/libraries/modules/login/login.actions.d.ts.map +1 -1
- package/libraries/modules/login/login.state.d.ts +8 -5
- package/libraries/modules/login/login.state.d.ts.map +1 -1
- package/libraries/modules/smartparks/smartpark.actions.d.ts +19 -0
- package/libraries/modules/smartparks/smartpark.actions.d.ts.map +1 -1
- package/libraries/modules/smartparks/smartpark.state.d.ts +7 -3
- package/libraries/modules/smartparks/smartpark.state.d.ts.map +1 -1
- package/libraries/resolvers/mobile-command-center-module.resolver.d.ts +3 -5
- package/libraries/resolvers/mobile-command-center-module.resolver.d.ts.map +1 -1
- package/libraries/service-proxy/cloud-service-proxies.d.ts +140 -40
- package/libraries/service-proxy/cloud-service-proxies.d.ts.map +1 -1
- package/libraries/service-proxy/identity-service-proxies.d.ts +15 -0
- package/libraries/service-proxy/identity-service-proxies.d.ts.map +1 -1
- package/libraries/service-proxy/service-proxy.module.d.ts.map +1 -1
- package/libraries/services/auth-token.service.d.ts +4 -2
- package/libraries/services/auth-token.service.d.ts.map +1 -1
- package/libraries/services/tenant.service.d.ts +4 -1
- package/libraries/services/tenant.service.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -96,12 +96,6 @@ export declare class AuditServiceProxy {
|
|
|
96
96
|
private baseUrl;
|
|
97
97
|
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
98
98
|
constructor(http: HttpClient, baseUrl?: string);
|
|
99
|
-
/**
|
|
100
|
-
* @param body (optional)
|
|
101
|
-
* @return Success
|
|
102
|
-
*/
|
|
103
|
-
getAuditByFilterForBackOffice(body: AuditFilter | undefined): Observable<AuditDtoListHttpResponseData>;
|
|
104
|
-
protected processGetAuditByFilterForBackOffice(response: HttpResponseBase): Observable<AuditDtoListHttpResponseData>;
|
|
105
99
|
/**
|
|
106
100
|
* @param body (optional)
|
|
107
101
|
* @return Success
|
|
@@ -117,7 +111,7 @@ export declare class AuditServiceProxy {
|
|
|
117
111
|
static ɵfac: i0.ɵɵFactoryDeclaration<AuditServiceProxy, [null, { optional: true; }]>;
|
|
118
112
|
static ɵprov: i0.ɵɵInjectableDeclaration<AuditServiceProxy>;
|
|
119
113
|
}
|
|
120
|
-
export declare class
|
|
114
|
+
export declare class BackofficeServiceProxy {
|
|
121
115
|
private http;
|
|
122
116
|
private baseUrl;
|
|
123
117
|
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
@@ -125,13 +119,143 @@ export declare class CloudManagementServiceProxy {
|
|
|
125
119
|
/**
|
|
126
120
|
* @return Success
|
|
127
121
|
*/
|
|
128
|
-
|
|
129
|
-
protected
|
|
122
|
+
getBackofficeAppConfiguration(): Observable<AppConfigurationDtoHttpResponseData>;
|
|
123
|
+
protected processGetBackofficeAppConfiguration(response: HttpResponseBase): Observable<AppConfigurationDtoHttpResponseData>;
|
|
124
|
+
/**
|
|
125
|
+
* @return Success
|
|
126
|
+
*/
|
|
127
|
+
getBackofficeSettingsByCategory(category: SettingsCategory): Observable<ObjectHttpResponseData>;
|
|
128
|
+
protected processGetBackofficeSettingsByCategory(response: HttpResponseBase): Observable<ObjectHttpResponseData>;
|
|
129
|
+
/**
|
|
130
|
+
* @return Success
|
|
131
|
+
*/
|
|
132
|
+
backofficeAuditLogout(): Observable<void>;
|
|
133
|
+
protected processBackofficeAuditLogout(response: HttpResponseBase): Observable<void>;
|
|
134
|
+
/**
|
|
135
|
+
* @param body (optional)
|
|
136
|
+
* @return Success
|
|
137
|
+
*/
|
|
138
|
+
getAuditByFilterForBackOffice(body: AuditFilter | undefined): Observable<AuditDtoListHttpResponseData>;
|
|
139
|
+
protected processGetAuditByFilterForBackOffice(response: HttpResponseBase): Observable<AuditDtoListHttpResponseData>;
|
|
140
|
+
/**
|
|
141
|
+
* @param name (optional)
|
|
142
|
+
* @return Success
|
|
143
|
+
*/
|
|
144
|
+
getBackkOfficeTenantDetails(name: string | undefined): Observable<TenantDetailsDtoHttpResponseData>;
|
|
145
|
+
protected processGetBackkOfficeTenantDetails(response: HttpResponseBase): Observable<TenantDetailsDtoHttpResponseData>;
|
|
146
|
+
/**
|
|
147
|
+
* @param searchValue (optional)
|
|
148
|
+
* @param orderBy_Column (optional)
|
|
149
|
+
* @param orderBy_OrderDirection (optional)
|
|
150
|
+
* @param take (optional)
|
|
151
|
+
* @param skip (optional)
|
|
152
|
+
* @return Success
|
|
153
|
+
*/
|
|
154
|
+
getBackofficeTenantsByFilter(searchValue: string | undefined, orderBy_Column: string | undefined, orderBy_OrderDirection: OrderDirection | undefined, take: number | undefined, skip: number | undefined): Observable<ManagedTenantDtoEntityWrapperDtoHttpResponseData>;
|
|
155
|
+
protected processGetBackofficeTenantsByFilter(response: HttpResponseBase): Observable<ManagedTenantDtoEntityWrapperDtoHttpResponseData>;
|
|
156
|
+
/**
|
|
157
|
+
* @param maxResults (optional)
|
|
158
|
+
* @param searchTerm (optional)
|
|
159
|
+
* @param orderBy_Column (optional)
|
|
160
|
+
* @param orderBy_OrderDirection (optional)
|
|
161
|
+
* @return Success
|
|
162
|
+
*/
|
|
163
|
+
getBackofficeTenants(maxResults: number | undefined, searchTerm: string | undefined, orderBy_Column: string | undefined, orderBy_OrderDirection: OrderDirection | undefined): Observable<TenantDtoListHttpResponseData>;
|
|
164
|
+
protected processGetBackofficeTenants(response: HttpResponseBase): Observable<TenantDtoListHttpResponseData>;
|
|
165
|
+
/**
|
|
166
|
+
* @param body (optional)
|
|
167
|
+
* @return Success
|
|
168
|
+
*/
|
|
169
|
+
createTenant(body: InitializeTenantDto | undefined): Observable<ManagedTenantDtoHttpResponseData>;
|
|
170
|
+
protected processCreateTenant(response: HttpResponseBase): Observable<ManagedTenantDtoHttpResponseData>;
|
|
130
171
|
/**
|
|
172
|
+
* @param tenantId (optional)
|
|
131
173
|
* @return Success
|
|
132
174
|
*/
|
|
133
|
-
|
|
134
|
-
protected
|
|
175
|
+
resendBackofficePendingAdminsInvitations(tenantId: number | undefined): Observable<ObjectHttpResponseData>;
|
|
176
|
+
protected processResendBackofficePendingAdminsInvitations(response: HttpResponseBase): Observable<ObjectHttpResponseData>;
|
|
177
|
+
/**
|
|
178
|
+
* @return Success
|
|
179
|
+
*/
|
|
180
|
+
deleteTenant(id: number): Observable<TenantDtoHttpResponseData>;
|
|
181
|
+
protected processDeleteTenant(response: HttpResponseBase): Observable<TenantDtoHttpResponseData>;
|
|
182
|
+
/**
|
|
183
|
+
* @return Success
|
|
184
|
+
*/
|
|
185
|
+
refreshBackofficeCacheByTenantId(tenantId: number): Observable<ObjectHttpResponseData>;
|
|
186
|
+
protected processRefreshBackofficeCacheByTenantId(response: HttpResponseBase): Observable<ObjectHttpResponseData>;
|
|
187
|
+
/**
|
|
188
|
+
* @param body (optional)
|
|
189
|
+
* @return Success
|
|
190
|
+
*/
|
|
191
|
+
updateBackofficeTenant(body: UpdateTenantDto | undefined): Observable<UpdateTenantDtoHttpResponseData>;
|
|
192
|
+
protected processUpdateBackofficeTenant(response: HttpResponseBase): Observable<UpdateTenantDtoHttpResponseData>;
|
|
193
|
+
/**
|
|
194
|
+
* @return Success
|
|
195
|
+
*/
|
|
196
|
+
getBackofficeVersions(): Observable<StringStringIDictionaryHttpResponseData>;
|
|
197
|
+
protected processGetBackofficeVersions(response: HttpResponseBase): Observable<StringStringIDictionaryHttpResponseData>;
|
|
198
|
+
/**
|
|
199
|
+
* @return Success
|
|
200
|
+
*/
|
|
201
|
+
getBackofficeSpAndSparkVersions(): Observable<SpAndSparkVersionsDtoHttpResponseData>;
|
|
202
|
+
protected processGetBackofficeSpAndSparkVersions(response: HttpResponseBase): Observable<SpAndSparkVersionsDtoHttpResponseData>;
|
|
203
|
+
/**
|
|
204
|
+
* @param body (optional)
|
|
205
|
+
* @return Success
|
|
206
|
+
*/
|
|
207
|
+
getBackofficeSmartparks(body: SmartparkFilter | undefined): Observable<SmartparkDtoEntityWrapperDtoHttpResponseData>;
|
|
208
|
+
protected processGetBackofficeSmartparks(response: HttpResponseBase): Observable<SmartparkDtoEntityWrapperDtoHttpResponseData>;
|
|
209
|
+
/**
|
|
210
|
+
* @param maxResults (optional)
|
|
211
|
+
* @param searchTerm (optional)
|
|
212
|
+
* @param orderBy_Column (optional)
|
|
213
|
+
* @param orderBy_OrderDirection (optional)
|
|
214
|
+
* @return Success
|
|
215
|
+
*/
|
|
216
|
+
getBackofficeVars(maxResults: number | undefined, searchTerm: string | undefined, orderBy_Column: string | undefined, orderBy_OrderDirection: OrderDirection | undefined): Observable<VarDtoIEnumerableHttpResponseData>;
|
|
217
|
+
protected processGetBackofficeVars(response: HttpResponseBase): Observable<VarDtoIEnumerableHttpResponseData>;
|
|
218
|
+
/**
|
|
219
|
+
* @return Success
|
|
220
|
+
*/
|
|
221
|
+
getBackofficeSettingsByTenantid(category: SettingsCategory, tenantId: number): Observable<ObjectHttpResponseData>;
|
|
222
|
+
protected processGetBackofficeSettingsByTenantid(response: HttpResponseBase): Observable<ObjectHttpResponseData>;
|
|
223
|
+
/**
|
|
224
|
+
* @param body (optional)
|
|
225
|
+
* @return Success
|
|
226
|
+
*/
|
|
227
|
+
updateSettingsByTenantid(category: SettingsCategory, affectedTenantId: number, body: any | undefined): Observable<ObjectHttpResponseData>;
|
|
228
|
+
protected processUpdateSettingsByTenantid(response: HttpResponseBase): Observable<ObjectHttpResponseData>;
|
|
229
|
+
/**
|
|
230
|
+
* @param feature (optional)
|
|
231
|
+
* @param featureState (optional)
|
|
232
|
+
* @return Success
|
|
233
|
+
*/
|
|
234
|
+
toggleFeatureForTenant(feature: Features | undefined, featureState: FeatureState | undefined, tenantId: number): Observable<ObjectHttpResponseData>;
|
|
235
|
+
protected processToggleFeatureForTenant(response: HttpResponseBase): Observable<ObjectHttpResponseData>;
|
|
236
|
+
/**
|
|
237
|
+
* @return Success
|
|
238
|
+
*/
|
|
239
|
+
syncBackofficeUsersAndRolesByTenantId(tenantId: number): Observable<ObjectHttpResponseData>;
|
|
240
|
+
protected processSyncBackofficeUsersAndRolesByTenantId(response: HttpResponseBase): Observable<ObjectHttpResponseData>;
|
|
241
|
+
/**
|
|
242
|
+
* @return Success
|
|
243
|
+
*/
|
|
244
|
+
syncBackofficeUsersAndRolesBySmartparkId(tenantId: number, smartparkId: number): Observable<ObjectHttpResponseData>;
|
|
245
|
+
protected processSyncBackofficeUsersAndRolesBySmartparkId(response: HttpResponseBase): Observable<ObjectHttpResponseData>;
|
|
246
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BackofficeServiceProxy, [null, { optional: true; }]>;
|
|
247
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<BackofficeServiceProxy>;
|
|
248
|
+
}
|
|
249
|
+
export declare class CloudManagementServiceProxy {
|
|
250
|
+
private http;
|
|
251
|
+
private baseUrl;
|
|
252
|
+
protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
|
|
253
|
+
constructor(http: HttpClient, baseUrl?: string);
|
|
254
|
+
/**
|
|
255
|
+
* @return Success
|
|
256
|
+
*/
|
|
257
|
+
refreshCacheByTenantId(tenantId: number): Observable<ObjectHttpResponseData>;
|
|
258
|
+
protected processRefreshCacheByTenantId(response: HttpResponseBase): Observable<ObjectHttpResponseData>;
|
|
135
259
|
/**
|
|
136
260
|
* @return Success
|
|
137
261
|
*/
|
|
@@ -166,6 +290,11 @@ export declare class ConfigurationServiceProxy {
|
|
|
166
290
|
*/
|
|
167
291
|
getMinimumSupportedSparkApiServiceVersion(): Observable<void>;
|
|
168
292
|
protected processGetMinimumSupportedSparkApiServiceVersion(response: HttpResponseBase): Observable<void>;
|
|
293
|
+
/**
|
|
294
|
+
* @return Success
|
|
295
|
+
*/
|
|
296
|
+
getBackofficeAppConfiguration2(): Observable<AppConfigurationDtoHttpResponseData>;
|
|
297
|
+
protected processGetBackofficeAppConfiguration2(response: HttpResponseBase): Observable<AppConfigurationDtoHttpResponseData>;
|
|
169
298
|
/**
|
|
170
299
|
* @return Success
|
|
171
300
|
*/
|
|
@@ -191,24 +320,6 @@ export declare class ConfigurationServiceProxy {
|
|
|
191
320
|
*/
|
|
192
321
|
getUsersAdministrativeNotifications(): Observable<BaseAdministrativeNotificationDtoHttpResponseData>;
|
|
193
322
|
protected processGetUsersAdministrativeNotifications(response: HttpResponseBase): Observable<BaseAdministrativeNotificationDtoHttpResponseData>;
|
|
194
|
-
/**
|
|
195
|
-
* @return Success
|
|
196
|
-
*/
|
|
197
|
-
getSettingsByTenantid(category: SettingsCategory, tenantId: number): Observable<ObjectHttpResponseData>;
|
|
198
|
-
protected processGetSettingsByTenantid(response: HttpResponseBase): Observable<ObjectHttpResponseData>;
|
|
199
|
-
/**
|
|
200
|
-
* @param body (optional)
|
|
201
|
-
* @return Success
|
|
202
|
-
*/
|
|
203
|
-
updateSettingsByTenantid(category: SettingsCategory, affectedTenantId: number, body: any | undefined): Observable<ObjectHttpResponseData>;
|
|
204
|
-
protected processUpdateSettingsByTenantid(response: HttpResponseBase): Observable<ObjectHttpResponseData>;
|
|
205
|
-
/**
|
|
206
|
-
* @param feature (optional)
|
|
207
|
-
* @param featureState (optional)
|
|
208
|
-
* @return Success
|
|
209
|
-
*/
|
|
210
|
-
toggleFeatureForTenant(feature: Features | undefined, featureState: FeatureState | undefined, tenantId: number): Observable<ObjectHttpResponseData>;
|
|
211
|
-
protected processToggleFeatureForTenant(response: HttpResponseBase): Observable<ObjectHttpResponseData>;
|
|
212
323
|
static ɵfac: i0.ɵɵFactoryDeclaration<ConfigurationServiceProxy, [null, { optional: true; }]>;
|
|
213
324
|
static ɵprov: i0.ɵɵInjectableDeclaration<ConfigurationServiceProxy>;
|
|
214
325
|
}
|
|
@@ -729,23 +840,12 @@ export declare class TenantServiceProxy {
|
|
|
729
840
|
*/
|
|
730
841
|
getTenant(id: number): Observable<TenantDtoHttpResponseData>;
|
|
731
842
|
protected processGetTenant(response: HttpResponseBase): Observable<TenantDtoHttpResponseData>;
|
|
732
|
-
/**
|
|
733
|
-
* @param body (optional)
|
|
734
|
-
* @return Success
|
|
735
|
-
*/
|
|
736
|
-
createTenant(body: InitializeTenantDto | undefined): Observable<ManagedTenantDtoHttpResponseData>;
|
|
737
|
-
protected processCreateTenant(response: HttpResponseBase): Observable<ManagedTenantDtoHttpResponseData>;
|
|
738
843
|
/**
|
|
739
844
|
* @param body (optional)
|
|
740
845
|
* @return Success
|
|
741
846
|
*/
|
|
742
847
|
updateTenant(body: UpdateTenantDto | undefined): Observable<UpdateTenantDtoHttpResponseData>;
|
|
743
848
|
protected processUpdateTenant(response: HttpResponseBase): Observable<UpdateTenantDtoHttpResponseData>;
|
|
744
|
-
/**
|
|
745
|
-
* @return Success
|
|
746
|
-
*/
|
|
747
|
-
deleteTenant(id: number): Observable<TenantDtoHttpResponseData>;
|
|
748
|
-
protected processDeleteTenant(response: HttpResponseBase): Observable<TenantDtoHttpResponseData>;
|
|
749
849
|
/**
|
|
750
850
|
* @return Success
|
|
751
851
|
*/
|