@vc-shell/framework 1.1.86 → 1.1.88

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 (25) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/core/composables/useDynamicProperties/index.ts +31 -3
  3. package/dist/core/composables/useDynamicProperties/index.d.ts +3 -1
  4. package/dist/core/composables/useDynamicProperties/index.d.ts.map +1 -1
  5. package/dist/framework.js +5952 -5796
  6. package/dist/index.css +1 -1
  7. package/dist/locales/de.json +9 -0
  8. package/dist/locales/en.json +9 -0
  9. package/dist/tsconfig.tsbuildinfo +1 -1
  10. package/dist/ui/components/atoms/vc-tooltip/vc-tooltip.vue.d.ts +2 -3
  11. package/dist/ui/components/atoms/vc-tooltip/vc-tooltip.vue.d.ts.map +1 -1
  12. package/dist/ui/components/molecules/vc-input/vc-input.vue.d.ts +1 -1
  13. package/dist/ui/components/molecules/vc-input/vc-input.vue.d.ts.map +1 -1
  14. package/dist/ui/components/molecules/vc-select/vc-select.vue.d.ts +1 -2
  15. package/dist/ui/components/molecules/vc-select/vc-select.vue.d.ts.map +1 -1
  16. package/dist/ui/components/organisms/vc-dynamic-property/vc-dynamic-property.vue.d.ts +2 -0
  17. package/dist/ui/components/organisms/vc-dynamic-property/vc-dynamic-property.vue.d.ts.map +1 -1
  18. package/package.json +4 -4
  19. package/ui/components/atoms/vc-tooltip/vc-tooltip.vue +1 -1
  20. package/ui/components/molecules/vc-input/vc-input.vue +35 -2
  21. package/ui/components/molecules/vc-select/vc-select.vue +21 -4
  22. package/ui/components/organisms/vc-dynamic-property/vc-dynamic-property.vue +134 -6
  23. package/core/api/virtocommerce.platform.ts +0 -10457
  24. package/dist/core/api/virtocommerce.platform.d.ts +0 -2442
  25. package/dist/core/api/virtocommerce.platform.d.ts.map +0 -1
@@ -1,2442 +0,0 @@
1
- export declare class AuthApiBase {
2
- authToken: string;
3
- protected constructor();
4
- getBaseUrl(defaultUrl: string, baseUrl: string): string;
5
- setAuthToken(token: string): void;
6
- protected transformOptions(options: any): Promise<any>;
7
- }
8
- export declare class ExternalSignInClient extends AuthApiBase {
9
- private http;
10
- private baseUrl;
11
- protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
12
- constructor(baseUrl?: string, http?: {
13
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
14
- });
15
- /**
16
- * @param authenticationType (optional)
17
- * @param returnUrl (optional)
18
- * @param storeId (optional)
19
- * @param oidcUrl (optional)
20
- * @param callbackUrl (optional)
21
- * @return OK
22
- */
23
- signIn(authenticationType?: string | undefined, returnUrl?: string | undefined, storeId?: string | undefined, oidcUrl?: string | undefined, callbackUrl?: string | undefined): Promise<void>;
24
- protected processSignIn(response: Response): Promise<void>;
25
- /**
26
- * @param authenticationType (optional)
27
- * @param returnUrl (optional)
28
- * @return OK
29
- */
30
- signOut(authenticationType?: string | undefined, returnUrl?: string | undefined): Promise<void>;
31
- protected processSignOut(response: Response): Promise<void>;
32
- /**
33
- * @param returnUrl (optional)
34
- * @return OK
35
- */
36
- signInCallback(returnUrl?: string | undefined): Promise<void>;
37
- protected processSignInCallback(response: Response): Promise<void>;
38
- /**
39
- * @return OK
40
- */
41
- getExternalLoginProviders(): Promise<ExternalSignInProviderInfo[]>;
42
- protected processGetExternalLoginProviders(response: Response): Promise<ExternalSignInProviderInfo[]>;
43
- }
44
- export declare class AppsClient extends AuthApiBase {
45
- private http;
46
- private baseUrl;
47
- protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
48
- constructor(baseUrl?: string, http?: {
49
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
50
- });
51
- /**
52
- * @return OK
53
- */
54
- getApps(): Promise<AppDescriptor[]>;
55
- protected processGetApps(response: Response): Promise<AppDescriptor[]>;
56
- }
57
- export declare class AuthorizationClient extends AuthApiBase {
58
- private http;
59
- private baseUrl;
60
- protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
61
- constructor(baseUrl?: string, http?: {
62
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
63
- });
64
- /**
65
- * @return OK
66
- */
67
- revokeCurrentUserToken(): Promise<void>;
68
- protected processRevokeCurrentUserToken(response: Response): Promise<void>;
69
- /**
70
- * @return OK
71
- */
72
- exchange(body: Body): Promise<OpenIddictResponse>;
73
- protected processExchange(response: Response): Promise<OpenIddictResponse>;
74
- /**
75
- * @return OK
76
- */
77
- authorizeGET(): Promise<void>;
78
- protected processAuthorizeGET(response: Response): Promise<void>;
79
- /**
80
- * @return OK
81
- */
82
- authorizePOST(): Promise<void>;
83
- protected processAuthorizePOST(response: Response): Promise<void>;
84
- /**
85
- * @return OK
86
- */
87
- userinfoGET(): Promise<void>;
88
- protected processUserinfoGET(response: Response): Promise<void>;
89
- /**
90
- * @return OK
91
- */
92
- userinfoPOST(): Promise<void>;
93
- protected processUserinfoPOST(response: Response): Promise<void>;
94
- /**
95
- * @return OK
96
- */
97
- logout(): Promise<void>;
98
- protected processLogout(response: Response): Promise<void>;
99
- }
100
- export declare class ChangeLogClient extends AuthApiBase {
101
- private http;
102
- private baseUrl;
103
- protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
104
- constructor(baseUrl?: string, http?: {
105
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
106
- });
107
- /**
108
- * @param scope (optional)
109
- * @return No Content
110
- */
111
- forceChanges(scope?: string | undefined): Promise<void>;
112
- protected processForceChanges(response: Response): Promise<void>;
113
- /**
114
- * @return No Content
115
- */
116
- resetPlatformCache(): Promise<void>;
117
- protected processResetPlatformCache(response: Response): Promise<void>;
118
- /**
119
- * @param scope (optional)
120
- * @return OK
121
- */
122
- getLastModifiedDate(scope?: string | undefined): Promise<LastModifiedResponse>;
123
- protected processGetLastModifiedDate(response: Response): Promise<LastModifiedResponse>;
124
- /**
125
- * @param body (optional)
126
- * @return OK
127
- */
128
- getChangedEntities(body?: ChangedEntitiesRequest | undefined): Promise<ChangedEntitiesResponse>;
129
- protected processGetChangedEntities(response: Response): Promise<ChangedEntitiesResponse>;
130
- /**
131
- * @param body (optional)
132
- * @return No Content
133
- */
134
- resetChangedEntities(body?: string[] | undefined): Promise<void>;
135
- protected processResetChangedEntities(response: Response): Promise<void>;
136
- /**
137
- * @param body (optional)
138
- * @return OK
139
- */
140
- searchChanges(body?: ChangeLogSearchCriteria | undefined): Promise<ChangeLogSearchResult>;
141
- protected processSearchChanges(response: Response): Promise<ChangeLogSearchResult>;
142
- /**
143
- * @param start (optional)
144
- * @param end (optional)
145
- * @return OK
146
- */
147
- searchTypeChangeHistory(type: string, start?: Date | undefined, end?: Date | undefined): Promise<OperationLog[]>;
148
- protected processSearchTypeChangeHistory(response: Response): Promise<OperationLog[]>;
149
- }
150
- export declare class DeveloperToolsClient extends AuthApiBase {
151
- private http;
152
- private baseUrl;
153
- protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
154
- constructor(baseUrl?: string, http?: {
155
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
156
- });
157
- /**
158
- * @return OK
159
- */
160
- getDeveloperTools(): Promise<DeveloperToolDescriptor[]>;
161
- protected processGetDeveloperTools(response: Response): Promise<DeveloperToolDescriptor[]>;
162
- }
163
- export declare class DiagnosticsClient extends AuthApiBase {
164
- private http;
165
- private baseUrl;
166
- protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
167
- constructor(baseUrl?: string, http?: {
168
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
169
- });
170
- /**
171
- * @return OK
172
- */
173
- getSystemInfo(): Promise<SystemInfo>;
174
- protected processGetSystemInfo(response: Response): Promise<SystemInfo>;
175
- /**
176
- * @return OK
177
- */
178
- getModulesErrors(): Promise<ModuleDescriptor[]>;
179
- protected processGetModulesErrors(response: Response): Promise<ModuleDescriptor[]>;
180
- }
181
- export declare class DynamicPropertiesClient extends AuthApiBase {
182
- private http;
183
- private baseUrl;
184
- protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
185
- constructor(baseUrl?: string, http?: {
186
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
187
- });
188
- /**
189
- * @return OK
190
- */
191
- getObjectTypes(): Promise<string[]>;
192
- protected processGetObjectTypes(response: Response): Promise<string[]>;
193
- /**
194
- * @param id (optional)
195
- * @return OK
196
- */
197
- getAllDynamicProperties(id?: string | undefined): Promise<DynamicProperty[]>;
198
- protected processGetAllDynamicProperties(response: Response): Promise<DynamicProperty[]>;
199
- /**
200
- * @param body (optional)
201
- * @return OK
202
- */
203
- createProperty(body?: DynamicProperty | undefined): Promise<DynamicProperty>;
204
- protected processCreateProperty(response: Response): Promise<DynamicProperty>;
205
- /**
206
- * @param body (optional)
207
- * @return No Content
208
- */
209
- updateProperty(body?: DynamicProperty | undefined): Promise<void>;
210
- protected processUpdateProperty(response: Response): Promise<void>;
211
- /**
212
- * @param propertyIds (optional)
213
- * @return No Content
214
- */
215
- deleteProperty(propertyIds?: string[] | undefined): Promise<void>;
216
- protected processDeleteProperty(response: Response): Promise<void>;
217
- /**
218
- * @param body (optional)
219
- * @return OK
220
- */
221
- searchDynamicProperties(body?: DynamicPropertySearchCriteria | undefined): Promise<DynamicPropertySearchResult>;
222
- protected processSearchDynamicProperties(response: Response): Promise<DynamicPropertySearchResult>;
223
- /**
224
- * @return OK
225
- */
226
- exposeDynamicObjectProperty(): Promise<DynamicObjectProperty>;
227
- protected processExposeDynamicObjectProperty(response: Response): Promise<DynamicObjectProperty>;
228
- /**
229
- * @param propertyId (optional)
230
- * @return OK
231
- */
232
- getAllDictionaryItems(propertyId?: string | undefined): Promise<DynamicPropertyDictionaryItem[]>;
233
- protected processGetAllDictionaryItems(response: Response): Promise<DynamicPropertyDictionaryItem[]>;
234
- /**
235
- * @param body (optional)
236
- * @return No Content
237
- */
238
- saveDictionaryItems(body?: DynamicPropertyDictionaryItem[] | undefined): Promise<void>;
239
- protected processSaveDictionaryItems(response: Response): Promise<void>;
240
- /**
241
- * @param ids (optional)
242
- * @return No Content
243
- */
244
- deleteDictionaryItem(ids?: string[] | undefined): Promise<void>;
245
- protected processDeleteDictionaryItem(response: Response): Promise<void>;
246
- /**
247
- * @param body (optional)
248
- * @return OK
249
- */
250
- searchDictionaryItems(body?: DynamicPropertyDictionaryItemSearchCriteria | undefined): Promise<DynamicPropertyDictionaryItemSearchResult>;
251
- protected processSearchDictionaryItems(response: Response): Promise<DynamicPropertyDictionaryItemSearchResult>;
252
- }
253
- export declare class JobsClient extends AuthApiBase {
254
- private http;
255
- private baseUrl;
256
- protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
257
- constructor(baseUrl?: string, http?: {
258
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
259
- });
260
- /**
261
- * @return OK
262
- */
263
- getStatus(id: string): Promise<Job>;
264
- protected processGetStatus(response: Response): Promise<Job>;
265
- }
266
- export declare class LocalizableSettingsClient extends AuthApiBase {
267
- private http;
268
- private baseUrl;
269
- protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
270
- constructor(baseUrl?: string, http?: {
271
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
272
- });
273
- /**
274
- * @return OK
275
- */
276
- getSettingsAndLanguages(): Promise<LocalizableSettingsAndLanguages>;
277
- protected processGetSettingsAndLanguages(response: Response): Promise<LocalizableSettingsAndLanguages>;
278
- /**
279
- * @return OK
280
- */
281
- getDictionaryValues(name: string, language: string): Promise<KeyValue[]>;
282
- protected processGetDictionaryValues(response: Response): Promise<KeyValue[]>;
283
- /**
284
- * @param body (optional)
285
- * @return No Content
286
- */
287
- saveDictionaryItems(name: string, body?: DictionaryItem[] | undefined): Promise<void>;
288
- protected processSaveDictionaryItems(response: Response): Promise<void>;
289
- /**
290
- * @param values (optional)
291
- * @return No Content
292
- */
293
- deleteDictionaryItems(name: string, values?: string[] | undefined): Promise<void>;
294
- protected processDeleteDictionaryItems(response: Response): Promise<void>;
295
- }
296
- export declare class ModulesClient extends AuthApiBase {
297
- private http;
298
- private baseUrl;
299
- protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
300
- constructor(baseUrl?: string, http?: {
301
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
302
- });
303
- /**
304
- * @return No Content
305
- */
306
- reloadModules(): Promise<void>;
307
- protected processReloadModules(response: Response): Promise<void>;
308
- /**
309
- * @return OK
310
- */
311
- getModules(): Promise<ModuleDescriptor[]>;
312
- protected processGetModules(response: Response): Promise<ModuleDescriptor[]>;
313
- /**
314
- * @param body (optional)
315
- * @return OK
316
- */
317
- getDependingModules(body?: ModuleDescriptor[] | undefined): Promise<ModuleDescriptor[]>;
318
- protected processGetDependingModules(response: Response): Promise<ModuleDescriptor[]>;
319
- /**
320
- * @param body (optional)
321
- * @return OK
322
- */
323
- getMissingDependencies(body?: ModuleDescriptor[] | undefined): Promise<ModuleDescriptor[]>;
324
- protected processGetMissingDependencies(response: Response): Promise<ModuleDescriptor[]>;
325
- /**
326
- * @return OK
327
- */
328
- uploadModuleArchive(): Promise<ModuleDescriptor>;
329
- protected processUploadModuleArchive(response: Response): Promise<ModuleDescriptor>;
330
- /**
331
- * @param body (optional)
332
- * @return OK
333
- */
334
- installModules(body?: ModuleDescriptor[] | undefined): Promise<ModulePushNotification>;
335
- protected processInstallModules(response: Response): Promise<ModulePushNotification>;
336
- /**
337
- * @param body (optional)
338
- * @return OK
339
- */
340
- updateModules(body?: ModuleDescriptor[] | undefined): Promise<ModulePushNotification>;
341
- protected processUpdateModules(response: Response): Promise<ModulePushNotification>;
342
- /**
343
- * @param body (optional)
344
- * @return OK
345
- */
346
- uninstallModule(body?: ModuleDescriptor[] | undefined): Promise<ModulePushNotification>;
347
- protected processUninstallModule(response: Response): Promise<ModulePushNotification>;
348
- /**
349
- * @return No Content
350
- */
351
- restart(): Promise<void>;
352
- protected processRestart(response: Response): Promise<void>;
353
- /**
354
- * @return OK
355
- */
356
- tryToAutoInstallModules(): Promise<ModuleAutoInstallPushNotification>;
357
- protected processTryToAutoInstallModules(response: Response): Promise<ModuleAutoInstallPushNotification>;
358
- /**
359
- * @return OK
360
- */
361
- getModulesLoadingOrder(): Promise<string[]>;
362
- protected processGetModulesLoadingOrder(response: Response): Promise<string[]>;
363
- }
364
- export declare class OAuthAppsClient extends AuthApiBase {
365
- private http;
366
- private baseUrl;
367
- protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
368
- constructor(baseUrl?: string, http?: {
369
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
370
- });
371
- /**
372
- * @return OK
373
- */
374
- new(): Promise<OpenIddictApplicationDescriptor>;
375
- protected processNew(response: Response): Promise<OpenIddictApplicationDescriptor>;
376
- /**
377
- * @param body (optional)
378
- * @return OK
379
- */
380
- save(body?: OpenIddictApplicationDescriptor | undefined): Promise<OpenIddictApplicationDescriptor>;
381
- protected processSave(response: Response): Promise<OpenIddictApplicationDescriptor>;
382
- /**
383
- * @param clientIds (optional)
384
- * @return OK
385
- */
386
- delete(clientIds?: string[] | undefined): Promise<void>;
387
- protected processDelete(response: Response): Promise<void>;
388
- /**
389
- * @param body (optional)
390
- * @return OK
391
- */
392
- search(body?: OAuthAppSearchCriteria | undefined): Promise<OAuthAppSearchResult>;
393
- protected processSearch(response: Response): Promise<OAuthAppSearchResult>;
394
- }
395
- export declare class PushNotificationClient extends AuthApiBase {
396
- private http;
397
- private baseUrl;
398
- protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
399
- constructor(baseUrl?: string, http?: {
400
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
401
- });
402
- /**
403
- * @param body (optional)
404
- * @return OK
405
- */
406
- searchPushNotification(body?: PushNotificationSearchCriteria | undefined): Promise<PushNotificationSearchResult>;
407
- protected processSearchPushNotification(response: Response): Promise<PushNotificationSearchResult>;
408
- /**
409
- * @return OK
410
- */
411
- markAllAsRead(): Promise<PushNotificationSearchResult>;
412
- protected processMarkAllAsRead(response: Response): Promise<PushNotificationSearchResult>;
413
- }
414
- export declare class SecurityClient extends AuthApiBase {
415
- private http;
416
- private baseUrl;
417
- protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
418
- constructor(baseUrl?: string, http?: {
419
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
420
- });
421
- /**
422
- * @param body (optional)
423
- * @return OK
424
- */
425
- login(body?: LoginRequest | undefined): Promise<SignInResult>;
426
- protected processLogin(response: Response): Promise<SignInResult>;
427
- /**
428
- * @return No Content
429
- */
430
- logout(): Promise<void>;
431
- protected processLogout(response: Response): Promise<void>;
432
- /**
433
- * @return OK
434
- */
435
- getCurrentUser(): Promise<UserDetail>;
436
- protected processGetCurrentUser(response: Response): Promise<UserDetail>;
437
- /**
438
- * @return OK
439
- */
440
- userinfo(): Promise<Claim[]>;
441
- protected processUserinfo(response: Response): Promise<Claim[]>;
442
- /**
443
- * @return OK
444
- */
445
- getAllRegisteredPermissions(): Promise<Permission[]>;
446
- protected processGetAllRegisteredPermissions(response: Response): Promise<Permission[]>;
447
- /**
448
- * @param body (optional)
449
- * @return OK
450
- */
451
- searchRoles(body?: RoleSearchCriteria | undefined): Promise<RoleSearchResult>;
452
- protected processSearchRoles(response: Response): Promise<RoleSearchResult>;
453
- /**
454
- * @return OK
455
- */
456
- getRole(roleName: string): Promise<Role>;
457
- protected processGetRole(response: Response): Promise<Role>;
458
- /**
459
- * @param ids (optional)
460
- * @return No Content
461
- */
462
- deleteRoles(ids?: string[] | undefined): Promise<void>;
463
- protected processDeleteRoles(response: Response): Promise<void>;
464
- /**
465
- * @param body (optional)
466
- * @return OK
467
- */
468
- updateRole(body?: Role | undefined): Promise<SecurityResult>;
469
- protected processUpdateRole(response: Response): Promise<SecurityResult>;
470
- /**
471
- * @param body (optional)
472
- * @return OK
473
- */
474
- searchUsers(body?: UserSearchCriteria | undefined): Promise<UserSearchResult>;
475
- protected processSearchUsers(response: Response): Promise<UserSearchResult>;
476
- /**
477
- * @return OK
478
- */
479
- getUserByName(userName: string): Promise<ApplicationUser>;
480
- protected processGetUserByName(response: Response): Promise<ApplicationUser>;
481
- /**
482
- * @return OK
483
- */
484
- getUserById(id: string): Promise<ApplicationUser>;
485
- protected processGetUserById(response: Response): Promise<ApplicationUser>;
486
- /**
487
- * @return OK
488
- */
489
- getUserByEmail(email: string): Promise<ApplicationUser>;
490
- protected processGetUserByEmail(response: Response): Promise<ApplicationUser>;
491
- /**
492
- * @return OK
493
- */
494
- getUserByLogin(loginProvider: string, providerKey: string): Promise<ApplicationUser>;
495
- protected processGetUserByLogin(response: Response): Promise<ApplicationUser>;
496
- /**
497
- * @param body (optional)
498
- * @return OK
499
- */
500
- create(body?: ApplicationUser | undefined): Promise<SecurityResult>;
501
- protected processCreate(response: Response): Promise<SecurityResult>;
502
- /**
503
- * @param body (optional)
504
- * @return OK
505
- */
506
- changeCurrentUserPassword(body?: ChangePasswordRequest | undefined): Promise<SecurityResult>;
507
- protected processChangeCurrentUserPassword(response: Response): Promise<SecurityResult>;
508
- /**
509
- * @param body (optional)
510
- * @return OK
511
- */
512
- changePassword(userName: string, body?: ChangePasswordRequest | undefined): Promise<SecurityResult>;
513
- protected processChangePassword(response: Response): Promise<SecurityResult>;
514
- /**
515
- * @param body (optional)
516
- * @return OK
517
- */
518
- resetPassword(userName: string, body?: ResetPasswordRequest | undefined): Promise<SecurityResult>;
519
- protected processResetPassword(response: Response): Promise<SecurityResult>;
520
- /**
521
- * @param body (optional)
522
- * @return OK
523
- */
524
- resetPasswordByToken(userId: string, body?: ResetPasswordConfirmRequest | undefined): Promise<SecurityResult>;
525
- protected processResetPasswordByToken(response: Response): Promise<SecurityResult>;
526
- /**
527
- * @param body (optional)
528
- * @return OK
529
- */
530
- validatePasswordResetToken(userId: string, body?: ValidatePasswordResetTokenRequest | undefined): Promise<boolean>;
531
- protected processValidatePasswordResetToken(response: Response): Promise<boolean>;
532
- /**
533
- * @return OK
534
- */
535
- requestPasswordReset(loginOrEmail: string): Promise<void>;
536
- protected processRequestPasswordReset(response: Response): Promise<void>;
537
- /**
538
- * @param body (optional)
539
- * @return OK
540
- */
541
- validatePassword(body?: string | undefined): Promise<IdentityResult>;
542
- protected processValidatePassword(response: Response): Promise<IdentityResult>;
543
- /**
544
- * @param body (optional)
545
- * @return OK
546
- */
547
- validateUserPassword(body?: ChangePasswordRequest | undefined): Promise<IdentityResult>;
548
- protected processValidateUserPassword(response: Response): Promise<IdentityResult>;
549
- /**
550
- * @param body (optional)
551
- * @return OK
552
- */
553
- update(body?: ApplicationUser | undefined): Promise<SecurityResult>;
554
- protected processUpdate(response: Response): Promise<SecurityResult>;
555
- /**
556
- * @param names (optional)
557
- * @return OK
558
- */
559
- delete(names?: string[] | undefined): Promise<void>;
560
- protected processDelete(response: Response): Promise<void>;
561
- /**
562
- * @return OK
563
- */
564
- isUserLocked(id: string): Promise<UserLockedResult>;
565
- protected processIsUserLocked(response: Response): Promise<UserLockedResult>;
566
- /**
567
- * @return OK
568
- */
569
- passwordChangeEnabled(): Promise<UserLockedResult>;
570
- protected processPasswordChangeEnabled(response: Response): Promise<UserLockedResult>;
571
- /**
572
- * @return OK
573
- */
574
- lockUser(id: string): Promise<SecurityResult>;
575
- protected processLockUser(response: Response): Promise<SecurityResult>;
576
- /**
577
- * @return OK
578
- */
579
- unlockUser(id: string): Promise<SecurityResult>;
580
- protected processUnlockUser(response: Response): Promise<SecurityResult>;
581
- /**
582
- * @return OK
583
- */
584
- getUserApiKeys(id: string): Promise<UserApiKey[]>;
585
- protected processGetUserApiKeys(response: Response): Promise<UserApiKey[]>;
586
- /**
587
- * @param body (optional)
588
- * @return OK
589
- */
590
- saveUserApiKey(body?: UserApiKey | undefined): Promise<UserApiKey[]>;
591
- protected processSaveUserApiKey(response: Response): Promise<UserApiKey[]>;
592
- /**
593
- * @param body (optional)
594
- * @return OK
595
- */
596
- updateUserApiKey(body?: UserApiKey | undefined): Promise<UserApiKey[]>;
597
- protected processUpdateUserApiKey(response: Response): Promise<UserApiKey[]>;
598
- /**
599
- * @param ids (optional)
600
- * @return OK
601
- */
602
- deleteUserApiKeys(ids?: string[] | undefined): Promise<UserApiKey[]>;
603
- protected processDeleteUserApiKeys(response: Response): Promise<UserApiKey[]>;
604
- /**
605
- * @return OK
606
- */
607
- getLoginTypes(): Promise<LoginType[]>;
608
- protected processGetLoginTypes(response: Response): Promise<LoginType[]>;
609
- /**
610
- * @return OK
611
- */
612
- sendVerificationEmail(userId: string): Promise<void>;
613
- protected processSendVerificationEmail(response: Response): Promise<void>;
614
- /**
615
- * @param body (optional)
616
- * @return OK
617
- */
618
- confirmEmail(userId: string, body?: ConfirmEmailRequest | undefined): Promise<SecurityResult>;
619
- protected processConfirmEmail(response: Response): Promise<SecurityResult>;
620
- /**
621
- * @param newEmail (optional)
622
- * @return OK
623
- */
624
- generateChangeEmailToken(userId: string, newEmail?: string | undefined): Promise<string>;
625
- protected processGenerateChangeEmailToken(response: Response): Promise<string>;
626
- /**
627
- * @return OK
628
- */
629
- generateEmailConfirmationToken(userId: string): Promise<string>;
630
- protected processGenerateEmailConfirmationToken(response: Response): Promise<string>;
631
- /**
632
- * @return OK
633
- */
634
- generatePasswordResetToken(userId: string): Promise<string>;
635
- protected processGeneratePasswordResetToken(response: Response): Promise<string>;
636
- /**
637
- * @param tokenProvider (optional)
638
- * @param purpose (optional)
639
- * @return OK
640
- */
641
- generateUserToken(userId: string, tokenProvider?: string | undefined, purpose?: string | undefined): Promise<string>;
642
- protected processGenerateUserToken(response: Response): Promise<string>;
643
- /**
644
- * @param body (optional)
645
- * @return OK
646
- */
647
- verifyUserToken(userId: string, body?: VerifyTokenRequest | undefined): Promise<boolean>;
648
- protected processVerifyUserToken(response: Response): Promise<boolean>;
649
- }
650
- export declare class SettingClient extends AuthApiBase {
651
- private http;
652
- private baseUrl;
653
- protected jsonParseReviver: ((key: string, value: any) => any) | undefined;
654
- constructor(baseUrl?: string, http?: {
655
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
656
- });
657
- /**
658
- * @return OK
659
- */
660
- getAllGlobalSettings(): Promise<ObjectSettingEntry[]>;
661
- protected processGetAllGlobalSettings(response: Response): Promise<ObjectSettingEntry[]>;
662
- /**
663
- * @param body (optional)
664
- * @return No Content
665
- */
666
- update(body?: ObjectSettingEntry[] | undefined): Promise<void>;
667
- protected processUpdate(response: Response): Promise<void>;
668
- /**
669
- * @return OK
670
- */
671
- getGlobalModuleSettings(id: string): Promise<ObjectSettingEntry[]>;
672
- protected processGetGlobalModuleSettings(response: Response): Promise<ObjectSettingEntry[]>;
673
- /**
674
- * @return OK
675
- */
676
- getGlobalSetting(name: string): Promise<ObjectSettingEntry>;
677
- protected processGetGlobalSetting(response: Response): Promise<ObjectSettingEntry>;
678
- /**
679
- * @return OK
680
- */
681
- getUICustomizationSetting(): Promise<ObjectSettingEntry>;
682
- protected processGetUICustomizationSetting(response: Response): Promise<ObjectSettingEntry>;
683
- }
684
- export declare class AppDescriptor implements IAppDescriptor {
685
- title?: string | undefined;
686
- description?: string | undefined;
687
- iconUrl?: string | undefined;
688
- relativeUrl?: string | undefined;
689
- permission?: string | undefined;
690
- supportEmbeddedMode?: boolean;
691
- id?: string | undefined;
692
- constructor(data?: IAppDescriptor);
693
- init(_data?: any): void;
694
- static fromJS(data: any): AppDescriptor;
695
- toJSON(data?: any): any;
696
- }
697
- export interface IAppDescriptor {
698
- title?: string | undefined;
699
- description?: string | undefined;
700
- iconUrl?: string | undefined;
701
- relativeUrl?: string | undefined;
702
- permission?: string | undefined;
703
- supportEmbeddedMode?: boolean;
704
- id?: string | undefined;
705
- }
706
- export declare class ApplicationUser implements IApplicationUser {
707
- storeId?: string | undefined;
708
- memberId?: string | undefined;
709
- isAdministrator?: boolean;
710
- photoUrl?: string | undefined;
711
- userType?: string | undefined;
712
- status?: string | undefined;
713
- password?: string | undefined;
714
- createdDate?: Date;
715
- modifiedDate?: Date | undefined;
716
- createdBy?: string | undefined;
717
- modifiedBy?: string | undefined;
718
- roles?: Role[] | undefined;
719
- logins?: ApplicationUserLogin[] | undefined;
720
- passwordExpired?: boolean;
721
- lastPasswordChangedDate?: Date | undefined;
722
- lastPasswordChangeRequestDate?: Date | undefined;
723
- lastLoginDate?: Date | undefined;
724
- id?: string | undefined;
725
- userName?: string | undefined;
726
- normalizedUserName?: string | undefined;
727
- email?: string | undefined;
728
- normalizedEmail?: string | undefined;
729
- emailConfirmed?: boolean;
730
- passwordHash?: string | undefined;
731
- securityStamp?: string | undefined;
732
- concurrencyStamp?: string | undefined;
733
- phoneNumber?: string | undefined;
734
- phoneNumberConfirmed?: boolean;
735
- twoFactorEnabled?: boolean;
736
- lockoutEnd?: Date | undefined;
737
- lockoutEnabled?: boolean;
738
- accessFailedCount?: number;
739
- constructor(data?: IApplicationUser);
740
- init(_data?: any): void;
741
- static fromJS(data: any): ApplicationUser;
742
- toJSON(data?: any): any;
743
- }
744
- export interface IApplicationUser {
745
- storeId?: string | undefined;
746
- memberId?: string | undefined;
747
- isAdministrator?: boolean;
748
- photoUrl?: string | undefined;
749
- userType?: string | undefined;
750
- status?: string | undefined;
751
- password?: string | undefined;
752
- createdDate?: Date;
753
- modifiedDate?: Date | undefined;
754
- createdBy?: string | undefined;
755
- modifiedBy?: string | undefined;
756
- roles?: Role[] | undefined;
757
- logins?: ApplicationUserLogin[] | undefined;
758
- passwordExpired?: boolean;
759
- lastPasswordChangedDate?: Date | undefined;
760
- lastPasswordChangeRequestDate?: Date | undefined;
761
- lastLoginDate?: Date | undefined;
762
- id?: string | undefined;
763
- userName?: string | undefined;
764
- normalizedUserName?: string | undefined;
765
- email?: string | undefined;
766
- normalizedEmail?: string | undefined;
767
- emailConfirmed?: boolean;
768
- passwordHash?: string | undefined;
769
- securityStamp?: string | undefined;
770
- concurrencyStamp?: string | undefined;
771
- phoneNumber?: string | undefined;
772
- phoneNumberConfirmed?: boolean;
773
- twoFactorEnabled?: boolean;
774
- lockoutEnd?: Date | undefined;
775
- lockoutEnabled?: boolean;
776
- accessFailedCount?: number;
777
- }
778
- export declare class ApplicationUserLogin implements IApplicationUserLogin {
779
- loginProvider?: string | undefined;
780
- providerKey?: string | undefined;
781
- constructor(data?: IApplicationUserLogin);
782
- init(_data?: any): void;
783
- static fromJS(data: any): ApplicationUserLogin;
784
- toJSON(data?: any): any;
785
- }
786
- export interface IApplicationUserLogin {
787
- loginProvider?: string | undefined;
788
- providerKey?: string | undefined;
789
- }
790
- export declare class ChangeLogSearchCriteria implements IChangeLogSearchCriteria {
791
- operationTypes?: EntryState[] | undefined;
792
- startDate?: Date | undefined;
793
- endDate?: Date | undefined;
794
- responseGroup?: string | undefined;
795
- objectType?: string | undefined;
796
- objectTypes?: string[] | undefined;
797
- objectIds?: string[] | undefined;
798
- keyword?: string | undefined;
799
- searchPhrase?: string | undefined;
800
- languageCode?: string | undefined;
801
- sort?: string | undefined;
802
- readonly sortInfos?: SortInfo[] | undefined;
803
- skip?: number;
804
- take?: number;
805
- constructor(data?: IChangeLogSearchCriteria);
806
- init(_data?: any): void;
807
- static fromJS(data: any): ChangeLogSearchCriteria;
808
- toJSON(data?: any): any;
809
- }
810
- export interface IChangeLogSearchCriteria {
811
- operationTypes?: EntryState[] | undefined;
812
- startDate?: Date | undefined;
813
- endDate?: Date | undefined;
814
- responseGroup?: string | undefined;
815
- objectType?: string | undefined;
816
- objectTypes?: string[] | undefined;
817
- objectIds?: string[] | undefined;
818
- keyword?: string | undefined;
819
- searchPhrase?: string | undefined;
820
- languageCode?: string | undefined;
821
- sort?: string | undefined;
822
- sortInfos?: SortInfo[] | undefined;
823
- skip?: number;
824
- take?: number;
825
- }
826
- export declare class ChangeLogSearchResult implements IChangeLogSearchResult {
827
- totalCount?: number;
828
- results?: OperationLog[] | undefined;
829
- constructor(data?: IChangeLogSearchResult);
830
- init(_data?: any): void;
831
- static fromJS(data: any): ChangeLogSearchResult;
832
- toJSON(data?: any): any;
833
- }
834
- export interface IChangeLogSearchResult {
835
- totalCount?: number;
836
- results?: OperationLog[] | undefined;
837
- }
838
- export declare class ChangePasswordRequest implements IChangePasswordRequest {
839
- userName?: string | undefined;
840
- oldPassword?: string | undefined;
841
- newPassword?: string | undefined;
842
- constructor(data?: IChangePasswordRequest);
843
- init(_data?: any): void;
844
- static fromJS(data: any): ChangePasswordRequest;
845
- toJSON(data?: any): any;
846
- }
847
- export interface IChangePasswordRequest {
848
- userName?: string | undefined;
849
- oldPassword?: string | undefined;
850
- newPassword?: string | undefined;
851
- }
852
- export declare class ChangedEntitiesRequest implements IChangedEntitiesRequest {
853
- entityNames?: string[] | undefined;
854
- modifiedSince?: Date;
855
- constructor(data?: IChangedEntitiesRequest);
856
- init(_data?: any): void;
857
- static fromJS(data: any): ChangedEntitiesRequest;
858
- toJSON(data?: any): any;
859
- }
860
- export interface IChangedEntitiesRequest {
861
- entityNames?: string[] | undefined;
862
- modifiedSince?: Date;
863
- }
864
- export declare class ChangedEntitiesResponse implements IChangedEntitiesResponse {
865
- entities?: ChangedEntity[] | undefined;
866
- constructor(data?: IChangedEntitiesResponse);
867
- init(_data?: any): void;
868
- static fromJS(data: any): ChangedEntitiesResponse;
869
- toJSON(data?: any): any;
870
- }
871
- export interface IChangedEntitiesResponse {
872
- entities?: ChangedEntity[] | undefined;
873
- }
874
- export declare class ChangedEntity implements IChangedEntity {
875
- name?: string | undefined;
876
- modifiedDate?: Date;
877
- constructor(data?: IChangedEntity);
878
- init(_data?: any): void;
879
- static fromJS(data: any): ChangedEntity;
880
- toJSON(data?: any): any;
881
- }
882
- export interface IChangedEntity {
883
- name?: string | undefined;
884
- modifiedDate?: Date;
885
- }
886
- export declare class Claim implements IClaim {
887
- issuer?: string | undefined;
888
- originalIssuer?: string | undefined;
889
- readonly properties?: {
890
- [key: string]: string;
891
- } | undefined;
892
- subject?: ClaimsIdentity | undefined;
893
- type?: string | undefined;
894
- value?: string | undefined;
895
- valueType?: string | undefined;
896
- constructor(data?: IClaim);
897
- init(_data?: any): void;
898
- static fromJS(data: any): Claim;
899
- toJSON(data?: any): any;
900
- }
901
- export interface IClaim {
902
- issuer?: string | undefined;
903
- originalIssuer?: string | undefined;
904
- properties?: {
905
- [key: string]: string;
906
- } | undefined;
907
- subject?: ClaimsIdentity | undefined;
908
- type?: string | undefined;
909
- value?: string | undefined;
910
- valueType?: string | undefined;
911
- }
912
- export declare class ClaimsIdentity implements IClaimsIdentity {
913
- authenticationType?: string | undefined;
914
- readonly isAuthenticated?: boolean;
915
- actor?: ClaimsIdentity | undefined;
916
- bootstrapContext?: any | undefined;
917
- claims?: Claim[] | undefined;
918
- label?: string | undefined;
919
- readonly name?: string | undefined;
920
- readonly nameClaimType?: string | undefined;
921
- readonly roleClaimType?: string | undefined;
922
- constructor(data?: IClaimsIdentity);
923
- init(_data?: any): void;
924
- static fromJS(data: any): ClaimsIdentity;
925
- toJSON(data?: any): any;
926
- }
927
- export interface IClaimsIdentity {
928
- authenticationType?: string | undefined;
929
- isAuthenticated?: boolean;
930
- actor?: ClaimsIdentity | undefined;
931
- bootstrapContext?: any | undefined;
932
- claims?: Claim[] | undefined;
933
- label?: string | undefined;
934
- name?: string | undefined;
935
- nameClaimType?: string | undefined;
936
- roleClaimType?: string | undefined;
937
- }
938
- export declare class ConfirmEmailRequest implements IConfirmEmailRequest {
939
- token?: string | undefined;
940
- constructor(data?: IConfirmEmailRequest);
941
- init(_data?: any): void;
942
- static fromJS(data: any): ConfirmEmailRequest;
943
- toJSON(data?: any): any;
944
- }
945
- export interface IConfirmEmailRequest {
946
- token?: string | undefined;
947
- }
948
- export declare class CryptoProviderCache implements ICryptoProviderCache {
949
- constructor(data?: ICryptoProviderCache);
950
- init(_data?: any): void;
951
- static fromJS(data: any): CryptoProviderCache;
952
- toJSON(data?: any): any;
953
- }
954
- export interface ICryptoProviderCache {
955
- }
956
- export declare class CryptoProviderFactory implements ICryptoProviderFactory {
957
- readonly cryptoProviderCache?: CryptoProviderCache | undefined;
958
- customCryptoProvider?: ICryptoProvider | undefined;
959
- cacheSignatureProviders?: boolean;
960
- signatureProviderObjectPoolCacheSize?: number;
961
- constructor(data?: ICryptoProviderFactory);
962
- init(_data?: any): void;
963
- static fromJS(data: any): CryptoProviderFactory;
964
- toJSON(data?: any): any;
965
- }
966
- export interface ICryptoProviderFactory {
967
- cryptoProviderCache?: CryptoProviderCache | undefined;
968
- customCryptoProvider?: ICryptoProvider | undefined;
969
- cacheSignatureProviders?: boolean;
970
- signatureProviderObjectPoolCacheSize?: number;
971
- }
972
- export declare class DeveloperToolDescriptor implements IDeveloperToolDescriptor {
973
- name?: string | undefined;
974
- url?: string | undefined;
975
- isExternal?: boolean;
976
- sortOrder?: number;
977
- permission?: string | undefined;
978
- constructor(data?: IDeveloperToolDescriptor);
979
- init(_data?: any): void;
980
- static fromJS(data: any): DeveloperToolDescriptor;
981
- toJSON(data?: any): any;
982
- }
983
- export interface IDeveloperToolDescriptor {
984
- name?: string | undefined;
985
- url?: string | undefined;
986
- isExternal?: boolean;
987
- sortOrder?: number;
988
- permission?: string | undefined;
989
- }
990
- export declare class DictionaryItem implements IDictionaryItem {
991
- alias?: string | undefined;
992
- localizedValues?: LocalizedValue[] | undefined;
993
- constructor(data?: IDictionaryItem);
994
- init(_data?: any): void;
995
- static fromJS(data: any): DictionaryItem;
996
- toJSON(data?: any): any;
997
- }
998
- export interface IDictionaryItem {
999
- alias?: string | undefined;
1000
- localizedValues?: LocalizedValue[] | undefined;
1001
- }
1002
- export declare class DynamicObjectProperty implements IDynamicObjectProperty {
1003
- objectId?: string | undefined;
1004
- values?: DynamicPropertyObjectValue[] | undefined;
1005
- name?: string | undefined;
1006
- description?: string | undefined;
1007
- objectType?: string | undefined;
1008
- isArray?: boolean;
1009
- isDictionary?: boolean;
1010
- isMultilingual?: boolean;
1011
- isRequired?: boolean;
1012
- displayOrder?: number | undefined;
1013
- valueType?: DynamicObjectPropertyValueType;
1014
- displayNames?: DynamicPropertyName[] | undefined;
1015
- createdDate?: Date;
1016
- modifiedDate?: Date | undefined;
1017
- createdBy?: string | undefined;
1018
- modifiedBy?: string | undefined;
1019
- id?: string | undefined;
1020
- constructor(data?: IDynamicObjectProperty);
1021
- init(_data?: any): void;
1022
- static fromJS(data: any): DynamicObjectProperty;
1023
- toJSON(data?: any): any;
1024
- }
1025
- export interface IDynamicObjectProperty {
1026
- objectId?: string | undefined;
1027
- values?: DynamicPropertyObjectValue[] | undefined;
1028
- name?: string | undefined;
1029
- description?: string | undefined;
1030
- objectType?: string | undefined;
1031
- isArray?: boolean;
1032
- isDictionary?: boolean;
1033
- isMultilingual?: boolean;
1034
- isRequired?: boolean;
1035
- displayOrder?: number | undefined;
1036
- valueType?: DynamicObjectPropertyValueType;
1037
- displayNames?: DynamicPropertyName[] | undefined;
1038
- createdDate?: Date;
1039
- modifiedDate?: Date | undefined;
1040
- createdBy?: string | undefined;
1041
- modifiedBy?: string | undefined;
1042
- id?: string | undefined;
1043
- }
1044
- export declare class DynamicProperty implements IDynamicProperty {
1045
- name?: string | undefined;
1046
- description?: string | undefined;
1047
- objectType?: string | undefined;
1048
- isArray?: boolean;
1049
- isDictionary?: boolean;
1050
- isMultilingual?: boolean;
1051
- isRequired?: boolean;
1052
- displayOrder?: number | undefined;
1053
- valueType?: DynamicPropertyValueType2;
1054
- displayNames?: DynamicPropertyName[] | undefined;
1055
- createdDate?: Date;
1056
- modifiedDate?: Date | undefined;
1057
- createdBy?: string | undefined;
1058
- modifiedBy?: string | undefined;
1059
- id?: string | undefined;
1060
- constructor(data?: IDynamicProperty);
1061
- init(_data?: any): void;
1062
- static fromJS(data: any): DynamicProperty;
1063
- toJSON(data?: any): any;
1064
- }
1065
- export interface IDynamicProperty {
1066
- name?: string | undefined;
1067
- description?: string | undefined;
1068
- objectType?: string | undefined;
1069
- isArray?: boolean;
1070
- isDictionary?: boolean;
1071
- isMultilingual?: boolean;
1072
- isRequired?: boolean;
1073
- displayOrder?: number | undefined;
1074
- valueType?: DynamicPropertyValueType2;
1075
- displayNames?: DynamicPropertyName[] | undefined;
1076
- createdDate?: Date;
1077
- modifiedDate?: Date | undefined;
1078
- createdBy?: string | undefined;
1079
- modifiedBy?: string | undefined;
1080
- id?: string | undefined;
1081
- }
1082
- export declare class DynamicPropertyDictionaryItem implements IDynamicPropertyDictionaryItem {
1083
- propertyId?: string | undefined;
1084
- name?: string | undefined;
1085
- displayNames?: DynamicPropertyDictionaryItemName[] | undefined;
1086
- createdDate?: Date;
1087
- modifiedDate?: Date | undefined;
1088
- createdBy?: string | undefined;
1089
- modifiedBy?: string | undefined;
1090
- id?: string | undefined;
1091
- constructor(data?: IDynamicPropertyDictionaryItem);
1092
- init(_data?: any): void;
1093
- static fromJS(data: any): DynamicPropertyDictionaryItem;
1094
- toJSON(data?: any): any;
1095
- }
1096
- export interface IDynamicPropertyDictionaryItem {
1097
- propertyId?: string | undefined;
1098
- name?: string | undefined;
1099
- displayNames?: DynamicPropertyDictionaryItemName[] | undefined;
1100
- createdDate?: Date;
1101
- modifiedDate?: Date | undefined;
1102
- createdBy?: string | undefined;
1103
- modifiedBy?: string | undefined;
1104
- id?: string | undefined;
1105
- }
1106
- export declare class DynamicPropertyDictionaryItemName implements IDynamicPropertyDictionaryItemName {
1107
- locale?: string | undefined;
1108
- name?: string | undefined;
1109
- constructor(data?: IDynamicPropertyDictionaryItemName);
1110
- init(_data?: any): void;
1111
- static fromJS(data: any): DynamicPropertyDictionaryItemName;
1112
- toJSON(data?: any): any;
1113
- }
1114
- export interface IDynamicPropertyDictionaryItemName {
1115
- locale?: string | undefined;
1116
- name?: string | undefined;
1117
- }
1118
- export declare class DynamicPropertyDictionaryItemSearchCriteria implements IDynamicPropertyDictionaryItemSearchCriteria {
1119
- propertyId?: string | undefined;
1120
- responseGroup?: string | undefined;
1121
- objectType?: string | undefined;
1122
- objectTypes?: string[] | undefined;
1123
- objectIds?: string[] | undefined;
1124
- keyword?: string | undefined;
1125
- searchPhrase?: string | undefined;
1126
- languageCode?: string | undefined;
1127
- sort?: string | undefined;
1128
- readonly sortInfos?: SortInfo[] | undefined;
1129
- skip?: number;
1130
- take?: number;
1131
- constructor(data?: IDynamicPropertyDictionaryItemSearchCriteria);
1132
- init(_data?: any): void;
1133
- static fromJS(data: any): DynamicPropertyDictionaryItemSearchCriteria;
1134
- toJSON(data?: any): any;
1135
- }
1136
- export interface IDynamicPropertyDictionaryItemSearchCriteria {
1137
- propertyId?: string | undefined;
1138
- responseGroup?: string | undefined;
1139
- objectType?: string | undefined;
1140
- objectTypes?: string[] | undefined;
1141
- objectIds?: string[] | undefined;
1142
- keyword?: string | undefined;
1143
- searchPhrase?: string | undefined;
1144
- languageCode?: string | undefined;
1145
- sort?: string | undefined;
1146
- sortInfos?: SortInfo[] | undefined;
1147
- skip?: number;
1148
- take?: number;
1149
- }
1150
- export declare class DynamicPropertyDictionaryItemSearchResult implements IDynamicPropertyDictionaryItemSearchResult {
1151
- totalCount?: number;
1152
- results?: DynamicPropertyDictionaryItem[] | undefined;
1153
- constructor(data?: IDynamicPropertyDictionaryItemSearchResult);
1154
- init(_data?: any): void;
1155
- static fromJS(data: any): DynamicPropertyDictionaryItemSearchResult;
1156
- toJSON(data?: any): any;
1157
- }
1158
- export interface IDynamicPropertyDictionaryItemSearchResult {
1159
- totalCount?: number;
1160
- results?: DynamicPropertyDictionaryItem[] | undefined;
1161
- }
1162
- export declare class DynamicPropertyName implements IDynamicPropertyName {
1163
- locale?: string | undefined;
1164
- name?: string | undefined;
1165
- constructor(data?: IDynamicPropertyName);
1166
- init(_data?: any): void;
1167
- static fromJS(data: any): DynamicPropertyName;
1168
- toJSON(data?: any): any;
1169
- }
1170
- export interface IDynamicPropertyName {
1171
- locale?: string | undefined;
1172
- name?: string | undefined;
1173
- }
1174
- export declare class DynamicPropertyObjectValue implements IDynamicPropertyObjectValue {
1175
- objectType?: string | undefined;
1176
- objectId?: string | undefined;
1177
- locale?: string | undefined;
1178
- value?: any | undefined;
1179
- valueId?: string | undefined;
1180
- valueType?: DynamicPropertyObjectValueValueType;
1181
- propertyId?: string | undefined;
1182
- propertyName?: string | undefined;
1183
- constructor(data?: IDynamicPropertyObjectValue);
1184
- init(_data?: any): void;
1185
- static fromJS(data: any): DynamicPropertyObjectValue;
1186
- toJSON(data?: any): any;
1187
- }
1188
- export interface IDynamicPropertyObjectValue {
1189
- objectType?: string | undefined;
1190
- objectId?: string | undefined;
1191
- locale?: string | undefined;
1192
- value?: any | undefined;
1193
- valueId?: string | undefined;
1194
- valueType?: DynamicPropertyObjectValueValueType;
1195
- propertyId?: string | undefined;
1196
- propertyName?: string | undefined;
1197
- }
1198
- export declare class DynamicPropertySearchCriteria implements IDynamicPropertySearchCriteria {
1199
- readonly typeName?: string | undefined;
1200
- responseGroup?: string | undefined;
1201
- objectType?: string | undefined;
1202
- objectTypes?: string[] | undefined;
1203
- objectIds?: string[] | undefined;
1204
- keyword?: string | undefined;
1205
- searchPhrase?: string | undefined;
1206
- languageCode?: string | undefined;
1207
- sort?: string | undefined;
1208
- readonly sortInfos?: SortInfo[] | undefined;
1209
- skip?: number;
1210
- take?: number;
1211
- constructor(data?: IDynamicPropertySearchCriteria);
1212
- init(_data?: any): void;
1213
- static fromJS(data: any): DynamicPropertySearchCriteria;
1214
- toJSON(data?: any): any;
1215
- }
1216
- export interface IDynamicPropertySearchCriteria {
1217
- typeName?: string | undefined;
1218
- responseGroup?: string | undefined;
1219
- objectType?: string | undefined;
1220
- objectTypes?: string[] | undefined;
1221
- objectIds?: string[] | undefined;
1222
- keyword?: string | undefined;
1223
- searchPhrase?: string | undefined;
1224
- languageCode?: string | undefined;
1225
- sort?: string | undefined;
1226
- sortInfos?: SortInfo[] | undefined;
1227
- skip?: number;
1228
- take?: number;
1229
- }
1230
- export declare class DynamicPropertySearchResult implements IDynamicPropertySearchResult {
1231
- totalCount?: number;
1232
- results?: DynamicProperty[] | undefined;
1233
- constructor(data?: IDynamicPropertySearchResult);
1234
- init(_data?: any): void;
1235
- static fromJS(data: any): DynamicPropertySearchResult;
1236
- toJSON(data?: any): any;
1237
- }
1238
- export interface IDynamicPropertySearchResult {
1239
- totalCount?: number;
1240
- results?: DynamicProperty[] | undefined;
1241
- }
1242
- export declare enum DynamicPropertyValueType {
1243
- Undefined = "Undefined",
1244
- ShortText = "ShortText",
1245
- LongText = "LongText",
1246
- Integer = "Integer",
1247
- Decimal = "Decimal",
1248
- DateTime = "DateTime",
1249
- Boolean = "Boolean",
1250
- Html = "Html",
1251
- Image = "Image"
1252
- }
1253
- export declare enum EntryState {
1254
- Detached = "Detached",
1255
- Unchanged = "Unchanged",
1256
- Added = "Added",
1257
- Deleted = "Deleted",
1258
- Modified = "Modified"
1259
- }
1260
- export declare class ExternalSignInProviderInfo implements IExternalSignInProviderInfo {
1261
- authenticationType?: string | undefined;
1262
- displayName?: string | undefined;
1263
- logoUrl?: string | undefined;
1264
- constructor(data?: IExternalSignInProviderInfo);
1265
- init(_data?: any): void;
1266
- static fromJS(data: any): ExternalSignInProviderInfo;
1267
- toJSON(data?: any): any;
1268
- }
1269
- export interface IExternalSignInProviderInfo {
1270
- authenticationType?: string | undefined;
1271
- displayName?: string | undefined;
1272
- logoUrl?: string | undefined;
1273
- }
1274
- export declare class ICryptoProvider implements IICryptoProvider {
1275
- constructor(data?: IICryptoProvider);
1276
- init(_data?: any): void;
1277
- static fromJS(data: any): ICryptoProvider;
1278
- toJSON(data?: any): any;
1279
- }
1280
- export interface IICryptoProvider {
1281
- }
1282
- export declare class IdentityError implements IIdentityError {
1283
- code?: string | undefined;
1284
- description?: string | undefined;
1285
- constructor(data?: IIdentityError);
1286
- init(_data?: any): void;
1287
- static fromJS(data: any): IdentityError;
1288
- toJSON(data?: any): any;
1289
- }
1290
- export interface IIdentityError {
1291
- code?: string | undefined;
1292
- description?: string | undefined;
1293
- }
1294
- export declare class IdentityResult implements IIdentityResult {
1295
- readonly succeeded?: boolean;
1296
- readonly errors?: IdentityError[] | undefined;
1297
- constructor(data?: IIdentityResult);
1298
- init(_data?: any): void;
1299
- static fromJS(data: any): IdentityResult;
1300
- toJSON(data?: any): any;
1301
- }
1302
- export interface IIdentityResult {
1303
- succeeded?: boolean;
1304
- errors?: IdentityError[] | undefined;
1305
- }
1306
- export declare class Job implements IJob {
1307
- state?: string | undefined;
1308
- completed?: boolean;
1309
- id?: string | undefined;
1310
- constructor(data?: IJob);
1311
- init(_data?: any): void;
1312
- static fromJS(data: any): Job;
1313
- toJSON(data?: any): any;
1314
- }
1315
- export interface IJob {
1316
- state?: string | undefined;
1317
- completed?: boolean;
1318
- id?: string | undefined;
1319
- }
1320
- export declare class JsonElement implements IJsonElement {
1321
- readonly valueKind?: JsonElementValueKind;
1322
- constructor(data?: IJsonElement);
1323
- init(_data?: any): void;
1324
- static fromJS(data: any): JsonElement;
1325
- toJSON(data?: any): any;
1326
- }
1327
- export interface IJsonElement {
1328
- valueKind?: JsonElementValueKind;
1329
- }
1330
- export declare enum JsonValueKind {
1331
- Undefined = "Undefined",
1332
- Object = "Object",
1333
- Array = "Array",
1334
- String = "String",
1335
- Number = "Number",
1336
- True = "True",
1337
- False = "False",
1338
- Null = "Null"
1339
- }
1340
- export declare class JsonWebKey implements IJsonWebKey {
1341
- readonly additionalData?: {
1342
- [key: string]: any;
1343
- } | undefined;
1344
- alg?: string | undefined;
1345
- crv?: string | undefined;
1346
- d?: string | undefined;
1347
- dp?: string | undefined;
1348
- dq?: string | undefined;
1349
- e?: string | undefined;
1350
- k?: string | undefined;
1351
- keyId?: string | undefined;
1352
- readonly keyOps?: string[] | undefined;
1353
- kid?: string | undefined;
1354
- kty?: string | undefined;
1355
- n?: string | undefined;
1356
- readonly oth?: string[] | undefined;
1357
- p?: string | undefined;
1358
- q?: string | undefined;
1359
- qi?: string | undefined;
1360
- use?: string | undefined;
1361
- x?: string | undefined;
1362
- readonly x5c?: string[] | undefined;
1363
- x5t?: string | undefined;
1364
- x5tS256?: string | undefined;
1365
- x5u?: string | undefined;
1366
- y?: string | undefined;
1367
- readonly keySize?: number;
1368
- readonly hasPrivateKey?: boolean;
1369
- cryptoProviderFactory?: CryptoProviderFactory | undefined;
1370
- constructor(data?: IJsonWebKey);
1371
- init(_data?: any): void;
1372
- static fromJS(data: any): JsonWebKey;
1373
- toJSON(data?: any): any;
1374
- }
1375
- export interface IJsonWebKey {
1376
- additionalData?: {
1377
- [key: string]: any;
1378
- } | undefined;
1379
- alg?: string | undefined;
1380
- crv?: string | undefined;
1381
- d?: string | undefined;
1382
- dp?: string | undefined;
1383
- dq?: string | undefined;
1384
- e?: string | undefined;
1385
- k?: string | undefined;
1386
- keyId?: string | undefined;
1387
- keyOps?: string[] | undefined;
1388
- kid?: string | undefined;
1389
- kty?: string | undefined;
1390
- n?: string | undefined;
1391
- oth?: string[] | undefined;
1392
- p?: string | undefined;
1393
- q?: string | undefined;
1394
- qi?: string | undefined;
1395
- use?: string | undefined;
1396
- x?: string | undefined;
1397
- x5c?: string[] | undefined;
1398
- x5t?: string | undefined;
1399
- x5tS256?: string | undefined;
1400
- x5u?: string | undefined;
1401
- y?: string | undefined;
1402
- keySize?: number;
1403
- hasPrivateKey?: boolean;
1404
- cryptoProviderFactory?: CryptoProviderFactory | undefined;
1405
- }
1406
- export declare class JsonWebKeySet implements IJsonWebKeySet {
1407
- readonly additionalData?: {
1408
- [key: string]: any;
1409
- } | undefined;
1410
- readonly keys?: JsonWebKey[] | undefined;
1411
- skipUnresolvedJsonWebKeys?: boolean;
1412
- constructor(data?: IJsonWebKeySet);
1413
- init(_data?: any): void;
1414
- static fromJS(data: any): JsonWebKeySet;
1415
- toJSON(data?: any): any;
1416
- }
1417
- export interface IJsonWebKeySet {
1418
- additionalData?: {
1419
- [key: string]: any;
1420
- } | undefined;
1421
- keys?: JsonWebKey[] | undefined;
1422
- skipUnresolvedJsonWebKeys?: boolean;
1423
- }
1424
- export declare class KeyValue implements IKeyValue {
1425
- key?: string | undefined;
1426
- value?: string | undefined;
1427
- constructor(data?: IKeyValue);
1428
- init(_data?: any): void;
1429
- static fromJS(data: any): KeyValue;
1430
- toJSON(data?: any): any;
1431
- }
1432
- export interface IKeyValue {
1433
- key?: string | undefined;
1434
- value?: string | undefined;
1435
- }
1436
- export declare class LastModifiedResponse implements ILastModifiedResponse {
1437
- scope?: string | undefined;
1438
- lastModifiedDate?: Date;
1439
- constructor(data?: ILastModifiedResponse);
1440
- init(_data?: any): void;
1441
- static fromJS(data: any): LastModifiedResponse;
1442
- toJSON(data?: any): any;
1443
- }
1444
- export interface ILastModifiedResponse {
1445
- scope?: string | undefined;
1446
- lastModifiedDate?: Date;
1447
- }
1448
- export declare class License implements ILicense {
1449
- type?: string | undefined;
1450
- customerName?: string | undefined;
1451
- customerEmail?: string | undefined;
1452
- expirationDate?: Date;
1453
- rawLicense?: string | undefined;
1454
- constructor(data?: ILicense);
1455
- init(_data?: any): void;
1456
- static fromJS(data: any): License;
1457
- toJSON(data?: any): any;
1458
- }
1459
- export interface ILicense {
1460
- type?: string | undefined;
1461
- customerName?: string | undefined;
1462
- customerEmail?: string | undefined;
1463
- expirationDate?: Date;
1464
- rawLicense?: string | undefined;
1465
- }
1466
- export declare class LocalizableSetting implements ILocalizableSetting {
1467
- name?: string | undefined;
1468
- isLocalizable?: boolean;
1469
- items?: DictionaryItem[] | undefined;
1470
- constructor(data?: ILocalizableSetting);
1471
- init(_data?: any): void;
1472
- static fromJS(data: any): LocalizableSetting;
1473
- toJSON(data?: any): any;
1474
- }
1475
- export interface ILocalizableSetting {
1476
- name?: string | undefined;
1477
- isLocalizable?: boolean;
1478
- items?: DictionaryItem[] | undefined;
1479
- }
1480
- export declare class LocalizableSettingsAndLanguages implements ILocalizableSettingsAndLanguages {
1481
- settings?: LocalizableSetting[] | undefined;
1482
- languages?: string[] | undefined;
1483
- constructor(data?: ILocalizableSettingsAndLanguages);
1484
- init(_data?: any): void;
1485
- static fromJS(data: any): LocalizableSettingsAndLanguages;
1486
- toJSON(data?: any): any;
1487
- }
1488
- export interface ILocalizableSettingsAndLanguages {
1489
- settings?: LocalizableSetting[] | undefined;
1490
- languages?: string[] | undefined;
1491
- }
1492
- export declare class LocalizedValue implements ILocalizedValue {
1493
- languageCode?: string | undefined;
1494
- value?: string | undefined;
1495
- constructor(data?: ILocalizedValue);
1496
- init(_data?: any): void;
1497
- static fromJS(data: any): LocalizedValue;
1498
- toJSON(data?: any): any;
1499
- }
1500
- export interface ILocalizedValue {
1501
- languageCode?: string | undefined;
1502
- value?: string | undefined;
1503
- }
1504
- export declare class LoginRequest implements ILoginRequest {
1505
- userName?: string | undefined;
1506
- password?: string | undefined;
1507
- rememberMe?: boolean;
1508
- constructor(data?: ILoginRequest);
1509
- init(_data?: any): void;
1510
- static fromJS(data: any): LoginRequest;
1511
- toJSON(data?: any): any;
1512
- }
1513
- export interface ILoginRequest {
1514
- userName?: string | undefined;
1515
- password?: string | undefined;
1516
- rememberMe?: boolean;
1517
- }
1518
- export declare class LoginType implements ILoginType {
1519
- enabled?: boolean;
1520
- hasLoginForm?: boolean;
1521
- authenticationType?: string | undefined;
1522
- priority?: number;
1523
- constructor(data?: ILoginType);
1524
- init(_data?: any): void;
1525
- static fromJS(data: any): LoginType;
1526
- toJSON(data?: any): any;
1527
- }
1528
- export interface ILoginType {
1529
- enabled?: boolean;
1530
- hasLoginForm?: boolean;
1531
- authenticationType?: string | undefined;
1532
- priority?: number;
1533
- }
1534
- export declare class ModuleAutoInstallPushNotification implements IModuleAutoInstallPushNotification {
1535
- started?: Date | undefined;
1536
- finished?: Date | undefined;
1537
- progressLog?: ProgressMessage[] | undefined;
1538
- readonly errorCount?: number;
1539
- serverId?: string | undefined;
1540
- creator?: string | undefined;
1541
- created?: Date;
1542
- isNew?: boolean;
1543
- notifyType?: string | undefined;
1544
- description?: string | undefined;
1545
- title?: string | undefined;
1546
- repeatCount?: number;
1547
- id?: string | undefined;
1548
- constructor(data?: IModuleAutoInstallPushNotification);
1549
- init(_data?: any): void;
1550
- static fromJS(data: any): ModuleAutoInstallPushNotification;
1551
- toJSON(data?: any): any;
1552
- }
1553
- export interface IModuleAutoInstallPushNotification {
1554
- started?: Date | undefined;
1555
- finished?: Date | undefined;
1556
- progressLog?: ProgressMessage[] | undefined;
1557
- errorCount?: number;
1558
- serverId?: string | undefined;
1559
- creator?: string | undefined;
1560
- created?: Date;
1561
- isNew?: boolean;
1562
- notifyType?: string | undefined;
1563
- description?: string | undefined;
1564
- title?: string | undefined;
1565
- repeatCount?: number;
1566
- id?: string | undefined;
1567
- }
1568
- export declare class ModuleDescriptor implements IModuleDescriptor {
1569
- version?: string | undefined;
1570
- platformVersion?: string | undefined;
1571
- title?: string | undefined;
1572
- description?: string | undefined;
1573
- authors?: string[] | undefined;
1574
- owners?: string[] | undefined;
1575
- licenseUrl?: string | undefined;
1576
- projectUrl?: string | undefined;
1577
- iconUrl?: string | undefined;
1578
- requireLicenseAcceptance?: boolean;
1579
- releaseNotes?: string | undefined;
1580
- copyright?: string | undefined;
1581
- tags?: string | undefined;
1582
- groups?: string[] | undefined;
1583
- dependencies?: ModuleIdentity[] | undefined;
1584
- validationErrors?: string[] | undefined;
1585
- isRemovable?: boolean;
1586
- isInstalled?: boolean;
1587
- installedVersion?: ModuleIdentity | undefined;
1588
- id?: string | undefined;
1589
- constructor(data?: IModuleDescriptor);
1590
- init(_data?: any): void;
1591
- static fromJS(data: any): ModuleDescriptor;
1592
- toJSON(data?: any): any;
1593
- }
1594
- export interface IModuleDescriptor {
1595
- version?: string | undefined;
1596
- platformVersion?: string | undefined;
1597
- title?: string | undefined;
1598
- description?: string | undefined;
1599
- authors?: string[] | undefined;
1600
- owners?: string[] | undefined;
1601
- licenseUrl?: string | undefined;
1602
- projectUrl?: string | undefined;
1603
- iconUrl?: string | undefined;
1604
- requireLicenseAcceptance?: boolean;
1605
- releaseNotes?: string | undefined;
1606
- copyright?: string | undefined;
1607
- tags?: string | undefined;
1608
- groups?: string[] | undefined;
1609
- dependencies?: ModuleIdentity[] | undefined;
1610
- validationErrors?: string[] | undefined;
1611
- isRemovable?: boolean;
1612
- isInstalled?: boolean;
1613
- installedVersion?: ModuleIdentity | undefined;
1614
- id?: string | undefined;
1615
- }
1616
- export declare class ModuleIdentity implements IModuleIdentity {
1617
- id?: string | undefined;
1618
- version?: SemanticVersion | undefined;
1619
- optional?: boolean;
1620
- constructor(data?: IModuleIdentity);
1621
- init(_data?: any): void;
1622
- static fromJS(data: any): ModuleIdentity;
1623
- toJSON(data?: any): any;
1624
- }
1625
- export interface IModuleIdentity {
1626
- id?: string | undefined;
1627
- version?: SemanticVersion | undefined;
1628
- optional?: boolean;
1629
- }
1630
- export declare class ModulePushNotification implements IModulePushNotification {
1631
- started?: Date | undefined;
1632
- finished?: Date | undefined;
1633
- progressLog?: ProgressMessage[] | undefined;
1634
- readonly errorCount?: number;
1635
- serverId?: string | undefined;
1636
- creator?: string | undefined;
1637
- created?: Date;
1638
- isNew?: boolean;
1639
- notifyType?: string | undefined;
1640
- description?: string | undefined;
1641
- title?: string | undefined;
1642
- repeatCount?: number;
1643
- id?: string | undefined;
1644
- constructor(data?: IModulePushNotification);
1645
- init(_data?: any): void;
1646
- static fromJS(data: any): ModulePushNotification;
1647
- toJSON(data?: any): any;
1648
- }
1649
- export interface IModulePushNotification {
1650
- started?: Date | undefined;
1651
- finished?: Date | undefined;
1652
- progressLog?: ProgressMessage[] | undefined;
1653
- errorCount?: number;
1654
- serverId?: string | undefined;
1655
- creator?: string | undefined;
1656
- created?: Date;
1657
- isNew?: boolean;
1658
- notifyType?: string | undefined;
1659
- description?: string | undefined;
1660
- title?: string | undefined;
1661
- repeatCount?: number;
1662
- id?: string | undefined;
1663
- }
1664
- export declare class OAuthAppSearchCriteria implements IOAuthAppSearchCriteria {
1665
- responseGroup?: string | undefined;
1666
- objectType?: string | undefined;
1667
- objectTypes?: string[] | undefined;
1668
- objectIds?: string[] | undefined;
1669
- keyword?: string | undefined;
1670
- searchPhrase?: string | undefined;
1671
- languageCode?: string | undefined;
1672
- sort?: string | undefined;
1673
- readonly sortInfos?: SortInfo[] | undefined;
1674
- skip?: number;
1675
- take?: number;
1676
- constructor(data?: IOAuthAppSearchCriteria);
1677
- init(_data?: any): void;
1678
- static fromJS(data: any): OAuthAppSearchCriteria;
1679
- toJSON(data?: any): any;
1680
- }
1681
- export interface IOAuthAppSearchCriteria {
1682
- responseGroup?: string | undefined;
1683
- objectType?: string | undefined;
1684
- objectTypes?: string[] | undefined;
1685
- objectIds?: string[] | undefined;
1686
- keyword?: string | undefined;
1687
- searchPhrase?: string | undefined;
1688
- languageCode?: string | undefined;
1689
- sort?: string | undefined;
1690
- sortInfos?: SortInfo[] | undefined;
1691
- skip?: number;
1692
- take?: number;
1693
- }
1694
- export declare class OAuthAppSearchResult implements IOAuthAppSearchResult {
1695
- totalCount?: number;
1696
- results?: OpenIddictApplicationDescriptor[] | undefined;
1697
- constructor(data?: IOAuthAppSearchResult);
1698
- init(_data?: any): void;
1699
- static fromJS(data: any): OAuthAppSearchResult;
1700
- toJSON(data?: any): any;
1701
- }
1702
- export interface IOAuthAppSearchResult {
1703
- totalCount?: number;
1704
- results?: OpenIddictApplicationDescriptor[] | undefined;
1705
- }
1706
- export declare class ObjectSettingEntry implements IObjectSettingEntry {
1707
- readonly itHasValues?: boolean;
1708
- objectId?: string | undefined;
1709
- objectType?: string | undefined;
1710
- isReadOnly?: boolean;
1711
- value?: any | undefined;
1712
- id?: string | undefined;
1713
- restartRequired?: boolean;
1714
- moduleId?: string | undefined;
1715
- groupName?: string | undefined;
1716
- name?: string | undefined;
1717
- displayName?: string | undefined;
1718
- isRequired?: boolean;
1719
- isHidden?: boolean;
1720
- isPublic?: boolean;
1721
- valueType?: ObjectSettingEntryValueType;
1722
- allowedValues?: any[] | undefined;
1723
- defaultValue?: any | undefined;
1724
- isDictionary?: boolean;
1725
- isLocalizable?: boolean;
1726
- constructor(data?: IObjectSettingEntry);
1727
- init(_data?: any): void;
1728
- static fromJS(data: any): ObjectSettingEntry;
1729
- toJSON(data?: any): any;
1730
- }
1731
- export interface IObjectSettingEntry {
1732
- itHasValues?: boolean;
1733
- objectId?: string | undefined;
1734
- objectType?: string | undefined;
1735
- isReadOnly?: boolean;
1736
- value?: any | undefined;
1737
- id?: string | undefined;
1738
- restartRequired?: boolean;
1739
- moduleId?: string | undefined;
1740
- groupName?: string | undefined;
1741
- name?: string | undefined;
1742
- displayName?: string | undefined;
1743
- isRequired?: boolean;
1744
- isHidden?: boolean;
1745
- isPublic?: boolean;
1746
- valueType?: ObjectSettingEntryValueType;
1747
- allowedValues?: any[] | undefined;
1748
- defaultValue?: any | undefined;
1749
- isDictionary?: boolean;
1750
- isLocalizable?: boolean;
1751
- }
1752
- export declare class OpenIddictApplicationDescriptor implements IOpenIddictApplicationDescriptor {
1753
- applicationType?: string | undefined;
1754
- clientId?: string | undefined;
1755
- clientSecret?: string | undefined;
1756
- clientType?: string | undefined;
1757
- consentType?: string | undefined;
1758
- displayName?: string | undefined;
1759
- readonly displayNames?: {
1760
- [key: string]: string;
1761
- } | undefined;
1762
- jsonWebKeySet?: JsonWebKeySet | undefined;
1763
- readonly permissions?: string[] | undefined;
1764
- readonly postLogoutRedirectUris?: string[] | undefined;
1765
- readonly properties?: {
1766
- [key: string]: JsonElement;
1767
- } | undefined;
1768
- readonly redirectUris?: string[] | undefined;
1769
- readonly requirements?: string[] | undefined;
1770
- readonly settings?: {
1771
- [key: string]: string;
1772
- } | undefined;
1773
- type?: string | undefined;
1774
- constructor(data?: IOpenIddictApplicationDescriptor);
1775
- init(_data?: any): void;
1776
- static fromJS(data: any): OpenIddictApplicationDescriptor;
1777
- toJSON(data?: any): any;
1778
- }
1779
- export interface IOpenIddictApplicationDescriptor {
1780
- applicationType?: string | undefined;
1781
- clientId?: string | undefined;
1782
- clientSecret?: string | undefined;
1783
- clientType?: string | undefined;
1784
- consentType?: string | undefined;
1785
- displayName?: string | undefined;
1786
- displayNames?: {
1787
- [key: string]: string;
1788
- } | undefined;
1789
- jsonWebKeySet?: JsonWebKeySet | undefined;
1790
- permissions?: string[] | undefined;
1791
- postLogoutRedirectUris?: string[] | undefined;
1792
- properties?: {
1793
- [key: string]: JsonElement;
1794
- } | undefined;
1795
- redirectUris?: string[] | undefined;
1796
- requirements?: string[] | undefined;
1797
- settings?: {
1798
- [key: string]: string;
1799
- } | undefined;
1800
- type?: string | undefined;
1801
- }
1802
- export declare class OpenIddictResponse implements IOpenIddictResponse {
1803
- accessToken?: string | undefined;
1804
- code?: string | undefined;
1805
- deviceCode?: string | undefined;
1806
- error?: string | undefined;
1807
- errorDescription?: string | undefined;
1808
- errorUri?: string | undefined;
1809
- expiresIn?: number | undefined;
1810
- idToken?: string | undefined;
1811
- iss?: string | undefined;
1812
- refreshToken?: string | undefined;
1813
- scope?: string | undefined;
1814
- state?: string | undefined;
1815
- tokenType?: string | undefined;
1816
- userCode?: string | undefined;
1817
- verificationUri?: string | undefined;
1818
- verificationUriComplete?: string | undefined;
1819
- readonly count?: number;
1820
- constructor(data?: IOpenIddictResponse);
1821
- init(_data?: any): void;
1822
- static fromJS(data: any): OpenIddictResponse;
1823
- toJSON(data?: any): any;
1824
- }
1825
- export interface IOpenIddictResponse {
1826
- accessToken?: string | undefined;
1827
- code?: string | undefined;
1828
- deviceCode?: string | undefined;
1829
- error?: string | undefined;
1830
- errorDescription?: string | undefined;
1831
- errorUri?: string | undefined;
1832
- expiresIn?: number | undefined;
1833
- idToken?: string | undefined;
1834
- iss?: string | undefined;
1835
- refreshToken?: string | undefined;
1836
- scope?: string | undefined;
1837
- state?: string | undefined;
1838
- tokenType?: string | undefined;
1839
- userCode?: string | undefined;
1840
- verificationUri?: string | undefined;
1841
- verificationUriComplete?: string | undefined;
1842
- count?: number;
1843
- }
1844
- export declare class OperationLog implements IOperationLog {
1845
- objectType?: string | undefined;
1846
- objectId?: string | undefined;
1847
- operationType?: OperationLogOperationType;
1848
- detail?: string | undefined;
1849
- createdDate?: Date;
1850
- modifiedDate?: Date | undefined;
1851
- createdBy?: string | undefined;
1852
- modifiedBy?: string | undefined;
1853
- id?: string | undefined;
1854
- constructor(data?: IOperationLog);
1855
- init(_data?: any): void;
1856
- static fromJS(data: any): OperationLog;
1857
- toJSON(data?: any): any;
1858
- }
1859
- export interface IOperationLog {
1860
- objectType?: string | undefined;
1861
- objectId?: string | undefined;
1862
- operationType?: OperationLogOperationType;
1863
- detail?: string | undefined;
1864
- createdDate?: Date;
1865
- modifiedDate?: Date | undefined;
1866
- createdBy?: string | undefined;
1867
- modifiedBy?: string | undefined;
1868
- id?: string | undefined;
1869
- }
1870
- export declare class Permission implements IPermission {
1871
- name?: string | undefined;
1872
- moduleId?: string | undefined;
1873
- groupName?: string | undefined;
1874
- assignedScopes?: PermissionScope[] | undefined;
1875
- readonly availableScopes?: PermissionScope[] | undefined;
1876
- constructor(data?: IPermission);
1877
- init(_data?: any): void;
1878
- static fromJS(data: any): Permission;
1879
- toJSON(data?: any): any;
1880
- }
1881
- export interface IPermission {
1882
- name?: string | undefined;
1883
- moduleId?: string | undefined;
1884
- groupName?: string | undefined;
1885
- assignedScopes?: PermissionScope[] | undefined;
1886
- availableScopes?: PermissionScope[] | undefined;
1887
- }
1888
- export declare class PermissionScope implements IPermissionScope {
1889
- type?: string | undefined;
1890
- label?: string | undefined;
1891
- scope?: string | undefined;
1892
- constructor(data?: IPermissionScope);
1893
- init(_data?: any): void;
1894
- static fromJS(data: any): PermissionScope;
1895
- toJSON(data?: any): any;
1896
- }
1897
- export interface IPermissionScope {
1898
- type?: string | undefined;
1899
- label?: string | undefined;
1900
- scope?: string | undefined;
1901
- }
1902
- export declare class ProgressMessage implements IProgressMessage {
1903
- message?: string | undefined;
1904
- level?: ProgressMessageLevel2;
1905
- constructor(data?: IProgressMessage);
1906
- init(_data?: any): void;
1907
- static fromJS(data: any): ProgressMessage;
1908
- toJSON(data?: any): any;
1909
- }
1910
- export interface IProgressMessage {
1911
- message?: string | undefined;
1912
- level?: ProgressMessageLevel2;
1913
- }
1914
- export declare enum ProgressMessageLevel {
1915
- Info = "Info",
1916
- Warning = "Warning",
1917
- Debug = "Debug",
1918
- Error = "Error"
1919
- }
1920
- export declare class PushNotification implements IPushNotification {
1921
- serverId?: string | undefined;
1922
- creator?: string | undefined;
1923
- created?: Date;
1924
- isNew?: boolean;
1925
- notifyType?: string | undefined;
1926
- description?: string | undefined;
1927
- title?: string | undefined;
1928
- repeatCount?: number;
1929
- id?: string | undefined;
1930
- constructor(data?: IPushNotification);
1931
- init(_data?: any): void;
1932
- static fromJS(data: any): PushNotification;
1933
- toJSON(data?: any): any;
1934
- }
1935
- export interface IPushNotification {
1936
- serverId?: string | undefined;
1937
- creator?: string | undefined;
1938
- created?: Date;
1939
- isNew?: boolean;
1940
- notifyType?: string | undefined;
1941
- description?: string | undefined;
1942
- title?: string | undefined;
1943
- repeatCount?: number;
1944
- id?: string | undefined;
1945
- }
1946
- export declare class PushNotificationSearchCriteria implements IPushNotificationSearchCriteria {
1947
- ids?: string[] | undefined;
1948
- onlyNew?: boolean;
1949
- startDate?: Date | undefined;
1950
- endDate?: Date | undefined;
1951
- responseGroup?: string | undefined;
1952
- objectType?: string | undefined;
1953
- objectTypes?: string[] | undefined;
1954
- objectIds?: string[] | undefined;
1955
- keyword?: string | undefined;
1956
- searchPhrase?: string | undefined;
1957
- languageCode?: string | undefined;
1958
- sort?: string | undefined;
1959
- readonly sortInfos?: SortInfo[] | undefined;
1960
- skip?: number;
1961
- take?: number;
1962
- constructor(data?: IPushNotificationSearchCriteria);
1963
- init(_data?: any): void;
1964
- static fromJS(data: any): PushNotificationSearchCriteria;
1965
- toJSON(data?: any): any;
1966
- }
1967
- export interface IPushNotificationSearchCriteria {
1968
- ids?: string[] | undefined;
1969
- onlyNew?: boolean;
1970
- startDate?: Date | undefined;
1971
- endDate?: Date | undefined;
1972
- responseGroup?: string | undefined;
1973
- objectType?: string | undefined;
1974
- objectTypes?: string[] | undefined;
1975
- objectIds?: string[] | undefined;
1976
- keyword?: string | undefined;
1977
- searchPhrase?: string | undefined;
1978
- languageCode?: string | undefined;
1979
- sort?: string | undefined;
1980
- sortInfos?: SortInfo[] | undefined;
1981
- skip?: number;
1982
- take?: number;
1983
- }
1984
- export declare class PushNotificationSearchResult implements IPushNotificationSearchResult {
1985
- totalCount?: number;
1986
- newCount?: number;
1987
- notifyEvents?: PushNotification[] | undefined;
1988
- constructor(data?: IPushNotificationSearchResult);
1989
- init(_data?: any): void;
1990
- static fromJS(data: any): PushNotificationSearchResult;
1991
- toJSON(data?: any): any;
1992
- }
1993
- export interface IPushNotificationSearchResult {
1994
- totalCount?: number;
1995
- newCount?: number;
1996
- notifyEvents?: PushNotification[] | undefined;
1997
- }
1998
- export declare class ResetPasswordConfirmRequest implements IResetPasswordConfirmRequest {
1999
- token?: string | undefined;
2000
- newPassword?: string | undefined;
2001
- constructor(data?: IResetPasswordConfirmRequest);
2002
- init(_data?: any): void;
2003
- static fromJS(data: any): ResetPasswordConfirmRequest;
2004
- toJSON(data?: any): any;
2005
- }
2006
- export interface IResetPasswordConfirmRequest {
2007
- token?: string | undefined;
2008
- newPassword?: string | undefined;
2009
- }
2010
- export declare class ResetPasswordRequest implements IResetPasswordRequest {
2011
- newPassword?: string | undefined;
2012
- forcePasswordChangeOnNextSignIn?: boolean;
2013
- constructor(data?: IResetPasswordRequest);
2014
- init(_data?: any): void;
2015
- static fromJS(data: any): ResetPasswordRequest;
2016
- toJSON(data?: any): any;
2017
- }
2018
- export interface IResetPasswordRequest {
2019
- newPassword?: string | undefined;
2020
- forcePasswordChangeOnNextSignIn?: boolean;
2021
- }
2022
- export declare class Role implements IRole {
2023
- description?: string | undefined;
2024
- permissions?: Permission[] | undefined;
2025
- id?: string | undefined;
2026
- name?: string | undefined;
2027
- normalizedName?: string | undefined;
2028
- concurrencyStamp?: string | undefined;
2029
- constructor(data?: IRole);
2030
- init(_data?: any): void;
2031
- static fromJS(data: any): Role;
2032
- toJSON(data?: any): any;
2033
- }
2034
- export interface IRole {
2035
- description?: string | undefined;
2036
- permissions?: Permission[] | undefined;
2037
- id?: string | undefined;
2038
- name?: string | undefined;
2039
- normalizedName?: string | undefined;
2040
- concurrencyStamp?: string | undefined;
2041
- }
2042
- export declare class RoleSearchCriteria implements IRoleSearchCriteria {
2043
- responseGroup?: string | undefined;
2044
- objectType?: string | undefined;
2045
- objectTypes?: string[] | undefined;
2046
- objectIds?: string[] | undefined;
2047
- keyword?: string | undefined;
2048
- searchPhrase?: string | undefined;
2049
- languageCode?: string | undefined;
2050
- sort?: string | undefined;
2051
- readonly sortInfos?: SortInfo[] | undefined;
2052
- skip?: number;
2053
- take?: number;
2054
- constructor(data?: IRoleSearchCriteria);
2055
- init(_data?: any): void;
2056
- static fromJS(data: any): RoleSearchCriteria;
2057
- toJSON(data?: any): any;
2058
- }
2059
- export interface IRoleSearchCriteria {
2060
- responseGroup?: string | undefined;
2061
- objectType?: string | undefined;
2062
- objectTypes?: string[] | undefined;
2063
- objectIds?: string[] | undefined;
2064
- keyword?: string | undefined;
2065
- searchPhrase?: string | undefined;
2066
- languageCode?: string | undefined;
2067
- sort?: string | undefined;
2068
- sortInfos?: SortInfo[] | undefined;
2069
- skip?: number;
2070
- take?: number;
2071
- }
2072
- export declare class RoleSearchResult implements IRoleSearchResult {
2073
- readonly roles?: Role[] | undefined;
2074
- totalCount?: number;
2075
- results?: Role[] | undefined;
2076
- constructor(data?: IRoleSearchResult);
2077
- init(_data?: any): void;
2078
- static fromJS(data: any): RoleSearchResult;
2079
- toJSON(data?: any): any;
2080
- }
2081
- export interface IRoleSearchResult {
2082
- roles?: Role[] | undefined;
2083
- totalCount?: number;
2084
- results?: Role[] | undefined;
2085
- }
2086
- export declare class SecurityResult implements ISecurityResult {
2087
- succeeded?: boolean;
2088
- errors?: string[] | undefined;
2089
- constructor(data?: ISecurityResult);
2090
- init(_data?: any): void;
2091
- static fromJS(data: any): SecurityResult;
2092
- toJSON(data?: any): any;
2093
- }
2094
- export interface ISecurityResult {
2095
- succeeded?: boolean;
2096
- errors?: string[] | undefined;
2097
- }
2098
- export declare class SemanticVersion implements ISemanticVersion {
2099
- readonly major?: number;
2100
- readonly minor?: number;
2101
- readonly patch?: number;
2102
- readonly prerelease?: string | undefined;
2103
- constructor(data?: ISemanticVersion);
2104
- init(_data?: any): void;
2105
- static fromJS(data: any): SemanticVersion;
2106
- toJSON(data?: any): any;
2107
- }
2108
- export interface ISemanticVersion {
2109
- major?: number;
2110
- minor?: number;
2111
- patch?: number;
2112
- prerelease?: string | undefined;
2113
- }
2114
- export declare enum SettingValueType {
2115
- ShortText = "ShortText",
2116
- LongText = "LongText",
2117
- Integer = "Integer",
2118
- Decimal = "Decimal",
2119
- DateTime = "DateTime",
2120
- Boolean = "Boolean",
2121
- SecureString = "SecureString",
2122
- Json = "Json",
2123
- PositiveInteger = "PositiveInteger"
2124
- }
2125
- export declare class SignInResult implements ISignInResult {
2126
- readonly succeeded?: boolean;
2127
- readonly isLockedOut?: boolean;
2128
- readonly isNotAllowed?: boolean;
2129
- readonly requiresTwoFactor?: boolean;
2130
- constructor(data?: ISignInResult);
2131
- init(_data?: any): void;
2132
- static fromJS(data: any): SignInResult;
2133
- toJSON(data?: any): any;
2134
- }
2135
- export interface ISignInResult {
2136
- succeeded?: boolean;
2137
- isLockedOut?: boolean;
2138
- isNotAllowed?: boolean;
2139
- requiresTwoFactor?: boolean;
2140
- }
2141
- export declare enum SortDirection {
2142
- Ascending = "Ascending",
2143
- Descending = "Descending"
2144
- }
2145
- export declare class SortInfo implements ISortInfo {
2146
- sortColumn?: string | undefined;
2147
- sortDirection?: SortInfoSortDirection;
2148
- constructor(data?: ISortInfo);
2149
- init(_data?: any): void;
2150
- static fromJS(data: any): SortInfo;
2151
- toJSON(data?: any): any;
2152
- }
2153
- export interface ISortInfo {
2154
- sortColumn?: string | undefined;
2155
- sortDirection?: SortInfoSortDirection;
2156
- }
2157
- export declare class StringIdentityUserRole implements IStringIdentityUserRole {
2158
- userId?: string | undefined;
2159
- roleId?: string | undefined;
2160
- constructor(data?: IStringIdentityUserRole);
2161
- init(_data?: any): void;
2162
- static fromJS(data: any): StringIdentityUserRole;
2163
- toJSON(data?: any): any;
2164
- }
2165
- export interface IStringIdentityUserRole {
2166
- userId?: string | undefined;
2167
- roleId?: string | undefined;
2168
- }
2169
- export declare class SystemInfo implements ISystemInfo {
2170
- platformVersion?: string | undefined;
2171
- license?: License | undefined;
2172
- installedModules?: ModuleDescriptor[] | undefined;
2173
- version?: string | undefined;
2174
- is64BitOperatingSystem?: boolean;
2175
- is64BitProcess?: boolean;
2176
- databaseProvider?: string | undefined;
2177
- environmentName?: string | undefined;
2178
- constructor(data?: ISystemInfo);
2179
- init(_data?: any): void;
2180
- static fromJS(data: any): SystemInfo;
2181
- toJSON(data?: any): any;
2182
- }
2183
- export interface ISystemInfo {
2184
- platformVersion?: string | undefined;
2185
- license?: License | undefined;
2186
- installedModules?: ModuleDescriptor[] | undefined;
2187
- version?: string | undefined;
2188
- is64BitOperatingSystem?: boolean;
2189
- is64BitProcess?: boolean;
2190
- databaseProvider?: string | undefined;
2191
- environmentName?: string | undefined;
2192
- }
2193
- export declare class UserApiKey implements IUserApiKey {
2194
- apiKey?: string | undefined;
2195
- userName?: string | undefined;
2196
- userId?: string | undefined;
2197
- isActive?: boolean;
2198
- createdDate?: Date;
2199
- modifiedDate?: Date | undefined;
2200
- createdBy?: string | undefined;
2201
- modifiedBy?: string | undefined;
2202
- id?: string | undefined;
2203
- constructor(data?: IUserApiKey);
2204
- init(_data?: any): void;
2205
- static fromJS(data: any): UserApiKey;
2206
- toJSON(data?: any): any;
2207
- }
2208
- export interface IUserApiKey {
2209
- apiKey?: string | undefined;
2210
- userName?: string | undefined;
2211
- userId?: string | undefined;
2212
- isActive?: boolean;
2213
- createdDate?: Date;
2214
- modifiedDate?: Date | undefined;
2215
- createdBy?: string | undefined;
2216
- modifiedBy?: string | undefined;
2217
- id?: string | undefined;
2218
- }
2219
- export declare class UserDetail implements IUserDetail {
2220
- permissions?: string[] | undefined;
2221
- userName?: string | undefined;
2222
- isAdministrator?: boolean;
2223
- passwordExpired?: boolean;
2224
- daysTillPasswordExpiry?: number;
2225
- authenticationMethod?: string | undefined;
2226
- isSsoAuthenticationMethod?: boolean;
2227
- memberId?: string | undefined;
2228
- id?: string | undefined;
2229
- constructor(data?: IUserDetail);
2230
- init(_data?: any): void;
2231
- static fromJS(data: any): UserDetail;
2232
- toJSON(data?: any): any;
2233
- }
2234
- export interface IUserDetail {
2235
- permissions?: string[] | undefined;
2236
- userName?: string | undefined;
2237
- isAdministrator?: boolean;
2238
- passwordExpired?: boolean;
2239
- daysTillPasswordExpiry?: number;
2240
- authenticationMethod?: string | undefined;
2241
- isSsoAuthenticationMethod?: boolean;
2242
- memberId?: string | undefined;
2243
- id?: string | undefined;
2244
- }
2245
- export declare class UserLockedResult implements IUserLockedResult {
2246
- locked?: boolean;
2247
- constructor(data?: IUserLockedResult);
2248
- init(_data?: any): void;
2249
- static fromJS(data: any): UserLockedResult;
2250
- toJSON(data?: any): any;
2251
- }
2252
- export interface IUserLockedResult {
2253
- locked?: boolean;
2254
- }
2255
- export declare class UserSearchCriteria implements IUserSearchCriteria {
2256
- memberId?: string | undefined;
2257
- memberIds?: string[] | undefined;
2258
- modifiedSinceDate?: Date | undefined;
2259
- roles?: string[] | undefined;
2260
- lasLoginDate?: Date | undefined;
2261
- onlyUnlocked?: boolean;
2262
- responseGroup?: string | undefined;
2263
- objectType?: string | undefined;
2264
- objectTypes?: string[] | undefined;
2265
- objectIds?: string[] | undefined;
2266
- keyword?: string | undefined;
2267
- searchPhrase?: string | undefined;
2268
- languageCode?: string | undefined;
2269
- sort?: string | undefined;
2270
- readonly sortInfos?: SortInfo[] | undefined;
2271
- skip?: number;
2272
- take?: number;
2273
- constructor(data?: IUserSearchCriteria);
2274
- init(_data?: any): void;
2275
- static fromJS(data: any): UserSearchCriteria;
2276
- toJSON(data?: any): any;
2277
- }
2278
- export interface IUserSearchCriteria {
2279
- memberId?: string | undefined;
2280
- memberIds?: string[] | undefined;
2281
- modifiedSinceDate?: Date | undefined;
2282
- roles?: string[] | undefined;
2283
- lasLoginDate?: Date | undefined;
2284
- onlyUnlocked?: boolean;
2285
- responseGroup?: string | undefined;
2286
- objectType?: string | undefined;
2287
- objectTypes?: string[] | undefined;
2288
- objectIds?: string[] | undefined;
2289
- keyword?: string | undefined;
2290
- searchPhrase?: string | undefined;
2291
- languageCode?: string | undefined;
2292
- sort?: string | undefined;
2293
- sortInfos?: SortInfo[] | undefined;
2294
- skip?: number;
2295
- take?: number;
2296
- }
2297
- export declare class UserSearchResult implements IUserSearchResult {
2298
- readonly users?: ApplicationUser[] | undefined;
2299
- totalCount?: number;
2300
- results?: ApplicationUser[] | undefined;
2301
- constructor(data?: IUserSearchResult);
2302
- init(_data?: any): void;
2303
- static fromJS(data: any): UserSearchResult;
2304
- toJSON(data?: any): any;
2305
- }
2306
- export interface IUserSearchResult {
2307
- users?: ApplicationUser[] | undefined;
2308
- totalCount?: number;
2309
- results?: ApplicationUser[] | undefined;
2310
- }
2311
- export declare class ValidatePasswordResetTokenRequest implements IValidatePasswordResetTokenRequest {
2312
- token?: string | undefined;
2313
- constructor(data?: IValidatePasswordResetTokenRequest);
2314
- init(_data?: any): void;
2315
- static fromJS(data: any): ValidatePasswordResetTokenRequest;
2316
- toJSON(data?: any): any;
2317
- }
2318
- export interface IValidatePasswordResetTokenRequest {
2319
- token?: string | undefined;
2320
- }
2321
- export declare class VerifyTokenRequest implements IVerifyTokenRequest {
2322
- tokenProvider?: string | undefined;
2323
- purpose?: string | undefined;
2324
- token?: string | undefined;
2325
- constructor(data?: IVerifyTokenRequest);
2326
- init(_data?: any): void;
2327
- static fromJS(data: any): VerifyTokenRequest;
2328
- toJSON(data?: any): any;
2329
- }
2330
- export interface IVerifyTokenRequest {
2331
- tokenProvider?: string | undefined;
2332
- purpose?: string | undefined;
2333
- token?: string | undefined;
2334
- }
2335
- export declare class Body implements IBody {
2336
- grant_type: string;
2337
- scope?: string;
2338
- username?: string;
2339
- password?: string;
2340
- storeId?: string;
2341
- user_id?: string;
2342
- [key: string]: any;
2343
- constructor(data?: IBody);
2344
- init(_data?: any): void;
2345
- static fromJS(data: any): Body;
2346
- toJSON(data?: any): any;
2347
- }
2348
- export interface IBody {
2349
- grant_type: string;
2350
- scope?: string;
2351
- username?: string;
2352
- password?: string;
2353
- storeId?: string;
2354
- user_id?: string;
2355
- [key: string]: any;
2356
- }
2357
- export declare enum DynamicObjectPropertyValueType {
2358
- Undefined = "Undefined",
2359
- ShortText = "ShortText",
2360
- LongText = "LongText",
2361
- Integer = "Integer",
2362
- Decimal = "Decimal",
2363
- DateTime = "DateTime",
2364
- Boolean = "Boolean",
2365
- Html = "Html",
2366
- Image = "Image"
2367
- }
2368
- export declare enum DynamicPropertyValueType2 {
2369
- Undefined = "Undefined",
2370
- ShortText = "ShortText",
2371
- LongText = "LongText",
2372
- Integer = "Integer",
2373
- Decimal = "Decimal",
2374
- DateTime = "DateTime",
2375
- Boolean = "Boolean",
2376
- Html = "Html",
2377
- Image = "Image"
2378
- }
2379
- export declare enum DynamicPropertyObjectValueValueType {
2380
- Undefined = "Undefined",
2381
- ShortText = "ShortText",
2382
- LongText = "LongText",
2383
- Integer = "Integer",
2384
- Decimal = "Decimal",
2385
- DateTime = "DateTime",
2386
- Boolean = "Boolean",
2387
- Html = "Html",
2388
- Image = "Image"
2389
- }
2390
- export declare enum JsonElementValueKind {
2391
- Undefined = "Undefined",
2392
- Object = "Object",
2393
- Array = "Array",
2394
- String = "String",
2395
- Number = "Number",
2396
- True = "True",
2397
- False = "False",
2398
- Null = "Null"
2399
- }
2400
- export declare enum ObjectSettingEntryValueType {
2401
- ShortText = "ShortText",
2402
- LongText = "LongText",
2403
- Integer = "Integer",
2404
- Decimal = "Decimal",
2405
- DateTime = "DateTime",
2406
- Boolean = "Boolean",
2407
- SecureString = "SecureString",
2408
- Json = "Json",
2409
- PositiveInteger = "PositiveInteger"
2410
- }
2411
- export declare enum OperationLogOperationType {
2412
- Detached = "Detached",
2413
- Unchanged = "Unchanged",
2414
- Added = "Added",
2415
- Deleted = "Deleted",
2416
- Modified = "Modified"
2417
- }
2418
- export declare enum ProgressMessageLevel2 {
2419
- Info = "Info",
2420
- Warning = "Warning",
2421
- Debug = "Debug",
2422
- Error = "Error"
2423
- }
2424
- export declare enum SortInfoSortDirection {
2425
- Ascending = "Ascending",
2426
- Descending = "Descending"
2427
- }
2428
- export declare class ApiException extends Error {
2429
- message: string;
2430
- status: number;
2431
- response: string;
2432
- headers: {
2433
- [key: string]: any;
2434
- };
2435
- result: any;
2436
- constructor(message: string, status: number, response: string, headers: {
2437
- [key: string]: any;
2438
- }, result: any);
2439
- protected isApiException: boolean;
2440
- static isApiException(obj: any): obj is ApiException;
2441
- }
2442
- //# sourceMappingURL=virtocommerce.platform.d.ts.map