@saritasa/renewaire-frontend-sdk 0.1.0-dev.101 → 0.1.0-dev.275

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts ADDED
@@ -0,0 +1,1715 @@
1
+ import { HttpParameterCodec, HttpHeaders, HttpParams, HttpClient, HttpContext, HttpResponse, HttpEvent } from '@angular/common/http';
2
+ import { Observable } from 'rxjs';
3
+ import * as i0 from '@angular/core';
4
+ import { InjectionToken, ModuleWithProviders, EnvironmentProviders } from '@angular/core';
5
+
6
+ /**
7
+ * RenewAire CORES API
8
+ *
9
+ * Contact: renewaire@saritasa.com
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ /**
16
+ * API generated token model.
17
+ */
18
+ interface TokenModel {
19
+ /**
20
+ * Token.
21
+ */
22
+ token: string;
23
+ /**
24
+ * Token expiration in seconds.
25
+ */
26
+ expiresIn: number;
27
+ }
28
+
29
+ /**
30
+ * Standard parameter styles defined by OpenAPI spec
31
+ */
32
+ type StandardParamStyle = "matrix" | "label" | "form" | "simple" | "spaceDelimited" | "pipeDelimited" | "deepObject";
33
+ /**
34
+ * The OpenAPI standard {@link StandardParamStyle}s may be extended by custom styles by the user.
35
+ */
36
+ type ParamStyle = StandardParamStyle | string;
37
+ /**
38
+ * Standard parameter locations defined by OpenAPI spec
39
+ */
40
+ type ParamLocation = "query" | "header" | "path" | "cookie";
41
+ /**
42
+ * Standard types as defined in <a href="https://swagger.io/specification/#data-types">OpenAPI Specification: Data Types</a>
43
+ */
44
+ type StandardDataType = "integer" | "number" | "boolean" | "string" | "object" | "array";
45
+ /**
46
+ * Standard {@link DataType}s plus your own types/classes.
47
+ */
48
+ type DataType = StandardDataType | string;
49
+ /**
50
+ * Standard formats as defined in <a href="https://swagger.io/specification/#data-types">OpenAPI Specification: Data Types</a>
51
+ */
52
+ type StandardDataFormat = "int32" | "int64" | "float" | "double" | "byte" | "binary" | "date" | "date-time" | "password";
53
+ type DataFormat = StandardDataFormat | string;
54
+ /**
55
+ * The parameter to encode.
56
+ */
57
+ interface Param {
58
+ name: string;
59
+ value: unknown;
60
+ in: ParamLocation;
61
+ style: ParamStyle;
62
+ explode: boolean;
63
+ dataType: DataType;
64
+ dataFormat: DataFormat | undefined;
65
+ }
66
+
67
+ interface ConfigurationParameters {
68
+ /**
69
+ * @deprecated Since 5.0. Use credentials instead
70
+ */
71
+ apiKeys?: {
72
+ [key: string]: string;
73
+ };
74
+ username?: string;
75
+ password?: string;
76
+ /**
77
+ * @deprecated Since 5.0. Use credentials instead
78
+ */
79
+ accessToken?: string | (() => string);
80
+ basePath?: string;
81
+ withCredentials?: boolean;
82
+ /**
83
+ * Takes care of encoding query- and form-parameters.
84
+ */
85
+ encoder?: HttpParameterCodec;
86
+ /**
87
+ * Override the default method for encoding path parameters in various
88
+ * <a href="https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#style-values">styles</a>.
89
+ * <p>
90
+ * See {@link README.md} for more details
91
+ * </p>
92
+ */
93
+ encodeParam?: (param: Param) => string;
94
+ /**
95
+ * The keys are the names in the securitySchemes section of the OpenAPI
96
+ * document. They should map to the value used for authentication
97
+ * minus any standard prefixes such as 'Basic' or 'Bearer'.
98
+ */
99
+ credentials?: {
100
+ [key: string]: string | (() => string | undefined);
101
+ };
102
+ }
103
+ declare class Configuration {
104
+ /**
105
+ * @deprecated Since 5.0. Use credentials instead
106
+ */
107
+ apiKeys?: {
108
+ [key: string]: string;
109
+ };
110
+ username?: string;
111
+ password?: string;
112
+ /**
113
+ * @deprecated Since 5.0. Use credentials instead
114
+ */
115
+ accessToken?: string | (() => string);
116
+ basePath?: string;
117
+ withCredentials?: boolean;
118
+ /**
119
+ * Takes care of encoding query- and form-parameters.
120
+ */
121
+ encoder?: HttpParameterCodec;
122
+ /**
123
+ * Encoding of various path parameter
124
+ * <a href="https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#style-values">styles</a>.
125
+ * <p>
126
+ * See {@link README.md} for more details
127
+ * </p>
128
+ */
129
+ encodeParam: (param: Param) => string;
130
+ /**
131
+ * The keys are the names in the securitySchemes section of the OpenAPI
132
+ * document. They should map to the value used for authentication
133
+ * minus any standard prefixes such as 'Basic' or 'Bearer'.
134
+ */
135
+ credentials: {
136
+ [key: string]: string | (() => string | undefined);
137
+ };
138
+ constructor({ accessToken, apiKeys, basePath, credentials, encodeParam, encoder, password, username, withCredentials, }?: ConfigurationParameters);
139
+ /**
140
+ * Select the correct content-type to use for a request.
141
+ * Uses {@link Configuration#isJsonMime} to determine the correct content-type.
142
+ * If no content type is found return the first found type if the contentTypes is not empty
143
+ * @param contentTypes - the array of content types that are available for selection
144
+ * @returns the selected content-type or <code>undefined</code> if no selection could be made.
145
+ */
146
+ selectHeaderContentType(contentTypes: string[]): string | undefined;
147
+ /**
148
+ * Select the correct accept content-type to use for a request.
149
+ * Uses {@link Configuration#isJsonMime} to determine the correct accept content-type.
150
+ * If no content type is found return the first found type if the contentTypes is not empty
151
+ * @param accepts - the array of content types that are available for selection.
152
+ * @returns the selected content-type or <code>undefined</code> if no selection could be made.
153
+ */
154
+ selectHeaderAccept(accepts: string[]): string | undefined;
155
+ /**
156
+ * Check if the given MIME is a JSON MIME.
157
+ * JSON MIME examples:
158
+ * application/json
159
+ * application/json; charset=UTF8
160
+ * APPLICATION/JSON
161
+ * application/vnd.company+json
162
+ * @param mime - MIME (Multipurpose Internet Mail Extensions)
163
+ * @return True if the given MIME is JSON, false otherwise.
164
+ */
165
+ isJsonMime(mime: string): boolean;
166
+ lookupCredential(key: string): string | undefined;
167
+ addCredentialToHeaders(credentialKey: string, headerName: string, headers: HttpHeaders, prefix?: string): HttpHeaders;
168
+ addCredentialToQuery(credentialKey: string, paramName: string, query: HttpParams): HttpParams;
169
+ private defaultEncodeParam;
170
+ }
171
+
172
+ /**
173
+ * RenewAire CORES API
174
+ *
175
+ * Contact: renewaire@saritasa.com
176
+ *
177
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
178
+ * https://openapi-generator.tech
179
+ * Do not edit the class manually.
180
+ */
181
+
182
+ declare class BaseService {
183
+ protected basePath: string;
184
+ defaultHeaders: HttpHeaders;
185
+ configuration: Configuration;
186
+ encoder: HttpParameterCodec;
187
+ constructor(basePath?: string | string[], configuration?: Configuration);
188
+ protected canConsumeForm(consumes: string[]): boolean;
189
+ protected addToHttpParams(httpParams: HttpParams, value: any, key?: string, isDeep?: boolean): HttpParams;
190
+ protected addToHttpParamsRecursive(httpParams: HttpParams, value?: any, key?: string, isDeep?: boolean): HttpParams;
191
+ }
192
+
193
+ /**
194
+ * RenewAire CORES API
195
+ *
196
+ * Contact: renewaire@saritasa.com
197
+ *
198
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
199
+ * https://openapi-generator.tech
200
+ * Do not edit the class manually.
201
+ */
202
+ /**
203
+ * AddressCountry<br />0 = Unknown<br />1 = UnitedStates<br />2 = Canada<br />3 = Mexico
204
+ */
205
+ declare enum AddressCountry {
206
+ Unknown = "Unknown",
207
+ UnitedStates = "UnitedStates",
208
+ Canada = "Canada",
209
+ Mexico = "Mexico"
210
+ }
211
+
212
+ /**
213
+ * RenewAire CORES API
214
+ *
215
+ * Contact: renewaire@saritasa.com
216
+ *
217
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
218
+ * https://openapi-generator.tech
219
+ * Do not edit the class manually.
220
+ */
221
+ /**
222
+ * DTO for RenewAire.Cores.Domain.Address.
223
+ */
224
+ interface AddressDto {
225
+ /**
226
+ * AddressCountry<br />0 = Unknown<br />1 = UnitedStates<br />2 = Canada<br />3 = Mexico
227
+ */
228
+ country: AddressDtoCountryEnum;
229
+ address1: string;
230
+ address2: string;
231
+ city: string;
232
+ county: string;
233
+ state: string;
234
+ postalCode: string;
235
+ apartmentNumber: string;
236
+ }
237
+ declare enum AddressDtoCountryEnum {
238
+ Unknown = "Unknown",
239
+ UnitedStates = "UnitedStates",
240
+ Canada = "Canada",
241
+ Mexico = "Mexico"
242
+ }
243
+
244
+ /**
245
+ * RenewAire CORES API
246
+ *
247
+ * Contact: renewaire@saritasa.com
248
+ *
249
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
250
+ * https://openapi-generator.tech
251
+ * Do not edit the class manually.
252
+ */
253
+
254
+ /**
255
+ * Company information DTO.
256
+ */
257
+ interface CompanyInformationDto {
258
+ name: string;
259
+ /**
260
+ * DTO for RenewAire.Cores.Domain.Address.
261
+ */
262
+ address: AddressDto;
263
+ phone: string;
264
+ website: string;
265
+ }
266
+
267
+ /**
268
+ * RenewAire CORES API
269
+ *
270
+ * Contact: renewaire@saritasa.com
271
+ *
272
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
273
+ * https://openapi-generator.tech
274
+ * Do not edit the class manually.
275
+ */
276
+
277
+ /**
278
+ * Contact DTO.
279
+ */
280
+ interface ContactDto {
281
+ /**
282
+ * Address.
283
+ */
284
+ address: AddressDto;
285
+ /**
286
+ * First name.
287
+ */
288
+ firstName: string;
289
+ /**
290
+ * Last name.
291
+ */
292
+ lastName: string;
293
+ /**
294
+ * Phone.
295
+ */
296
+ phone: string;
297
+ /**
298
+ * Email.
299
+ */
300
+ email: string;
301
+ }
302
+
303
+ /**
304
+ * RenewAire CORES API
305
+ *
306
+ * Contact: renewaire@saritasa.com
307
+ *
308
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
309
+ * https://openapi-generator.tech
310
+ * Do not edit the class manually.
311
+ */
312
+ /**
313
+ * DTO to create RenewAire.Cores.Domain.Users.RsdRegion.
314
+ */
315
+ interface CreateRsdRegionDto {
316
+ name: string;
317
+ notes: string;
318
+ tags: Array<string>;
319
+ /**
320
+ * The main RSD user id in the region. More details: RenewAire.Cores.Domain.Users.RsdRegionAssignedRsd.IsPrimary.
321
+ */
322
+ primaryRsdUserId: number;
323
+ /**
324
+ * List of RSD users for the region, not including RenewAire.Cores.UseCases.Dtos.RsdRegions.CreateRsdRegionDto.PrimaryRsdUserId.
325
+ */
326
+ rsdUserIds: Array<number>;
327
+ }
328
+
329
+ /**
330
+ * RenewAire CORES API
331
+ *
332
+ * Contact: renewaire@saritasa.com
333
+ *
334
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
335
+ * https://openapi-generator.tech
336
+ * Do not edit the class manually.
337
+ */
338
+ /**
339
+ * Email confirmation token DTO.
340
+ */
341
+ interface EmailConfirmationTokenDto {
342
+ /**
343
+ * Email address.
344
+ */
345
+ email: string;
346
+ /**
347
+ * Confirmation token (code).
348
+ */
349
+ token: string;
350
+ }
351
+
352
+ /**
353
+ * RenewAire CORES API
354
+ *
355
+ * Contact: renewaire@saritasa.com
356
+ *
357
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
358
+ * https://openapi-generator.tech
359
+ * Do not edit the class manually.
360
+ */
361
+ /**
362
+ * DTO to return Id of entity.
363
+ */
364
+ interface Int32IdDto {
365
+ id: number;
366
+ }
367
+
368
+ /**
369
+ * RenewAire CORES API
370
+ *
371
+ * Contact: renewaire@saritasa.com
372
+ *
373
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
374
+ * https://openapi-generator.tech
375
+ * Do not edit the class manually.
376
+ */
377
+ /**
378
+ * Login user command.
379
+ */
380
+ interface LoginUserCommand {
381
+ /**
382
+ * Username (email).
383
+ */
384
+ userName: string;
385
+ /**
386
+ * Password.
387
+ */
388
+ password: string;
389
+ }
390
+
391
+ /**
392
+ * RenewAire CORES API
393
+ *
394
+ * Contact: renewaire@saritasa.com
395
+ *
396
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
397
+ * https://openapi-generator.tech
398
+ * Do not edit the class manually.
399
+ */
400
+ interface OffsetLimitListMetadata {
401
+ totalCount: number;
402
+ offset: number;
403
+ limit: number;
404
+ }
405
+
406
+ /**
407
+ * RenewAire CORES API
408
+ *
409
+ * Contact: renewaire@saritasa.com
410
+ *
411
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
412
+ * https://openapi-generator.tech
413
+ * Do not edit the class manually.
414
+ */
415
+ interface PagedListMetadata {
416
+ totalCount: number;
417
+ offset: number;
418
+ limit: number;
419
+ page: number;
420
+ pageSize: number;
421
+ totalPages: number;
422
+ }
423
+
424
+ /**
425
+ * RenewAire CORES API
426
+ *
427
+ * Contact: renewaire@saritasa.com
428
+ *
429
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
430
+ * https://openapi-generator.tech
431
+ * Do not edit the class manually.
432
+ */
433
+ /**
434
+ * DTO for RenewAire.Cores.Domain.Users.Permission.
435
+ */
436
+ interface PermissionDto {
437
+ /**
438
+ * Identifier. Enum key.
439
+ */
440
+ id: number;
441
+ /**
442
+ * Name.
443
+ */
444
+ name: string;
445
+ /**
446
+ * Description.
447
+ */
448
+ description: string;
449
+ }
450
+
451
+ /**
452
+ * RenewAire CORES API
453
+ *
454
+ * Contact: renewaire@saritasa.com
455
+ *
456
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
457
+ * https://openapi-generator.tech
458
+ * Do not edit the class manually.
459
+ */
460
+ /**
461
+ * Physical address.
462
+ */
463
+ interface PhysicalAddressDto {
464
+ /**
465
+ * Address display name.
466
+ */
467
+ displayAddress: string;
468
+ street1: string;
469
+ stateCode: string;
470
+ /**
471
+ * Country name.
472
+ */
473
+ country: string;
474
+ /**
475
+ * Postal code.
476
+ */
477
+ postalCode: string;
478
+ apartmentNumber?: string | null;
479
+ street2?: string | null;
480
+ county?: string | null;
481
+ city?: string | null;
482
+ }
483
+
484
+ /**
485
+ * RenewAire CORES API
486
+ *
487
+ * Contact: renewaire@saritasa.com
488
+ *
489
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
490
+ * https://openapi-generator.tech
491
+ * Do not edit the class manually.
492
+ */
493
+ /**
494
+ * Refresh token command.
495
+ */
496
+ interface RefreshTokenCommand {
497
+ /**
498
+ * User token.
499
+ */
500
+ token: string;
501
+ }
502
+
503
+ /**
504
+ * RenewAire CORES API
505
+ *
506
+ * Contact: renewaire@saritasa.com
507
+ *
508
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
509
+ * https://openapi-generator.tech
510
+ * Do not edit the class manually.
511
+ */
512
+ /**
513
+ * RegionLevel<br />0 = Country<br />1 = State<br />2 = County
514
+ */
515
+ declare enum RegionLevel {
516
+ Country = "Country",
517
+ State = "State",
518
+ County = "County"
519
+ }
520
+
521
+ /**
522
+ * RenewAire CORES API
523
+ *
524
+ * Contact: renewaire@saritasa.com
525
+ *
526
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
527
+ * https://openapi-generator.tech
528
+ * Do not edit the class manually.
529
+ */
530
+
531
+ /**
532
+ * Rep territory contacts DTO.
533
+ */
534
+ interface RepTerritoryContactsDto {
535
+ /**
536
+ * Regional director.
537
+ */
538
+ regionalDirector: ContactDto;
539
+ /**
540
+ * Company information.
541
+ */
542
+ companyInformation: CompanyInformationDto;
543
+ /**
544
+ * Contacts.
545
+ */
546
+ contacts: Array<ContactDto>;
547
+ }
548
+
549
+ /**
550
+ * RenewAire CORES API
551
+ *
552
+ * Contact: renewaire@saritasa.com
553
+ *
554
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
555
+ * https://openapi-generator.tech
556
+ * Do not edit the class manually.
557
+ */
558
+
559
+ /**
560
+ * DTO for RenewAire.Cores.Domain.Users.RepTerritoryRepContact.
561
+ */
562
+ interface RepTerritoryRepContactDto {
563
+ id: object;
564
+ headerLabel: string;
565
+ territoryLabel: string;
566
+ firstName: string;
567
+ lastName: string;
568
+ email: string;
569
+ phone: string;
570
+ website: string;
571
+ /**
572
+ * DTO for RenewAire.Cores.Domain.Address.
573
+ */
574
+ address: AddressDto;
575
+ }
576
+
577
+ /**
578
+ * RenewAire CORES API
579
+ *
580
+ * Contact: renewaire@saritasa.com
581
+ *
582
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
583
+ * https://openapi-generator.tech
584
+ * Do not edit the class manually.
585
+ */
586
+
587
+ /**
588
+ * Rep territory dto.
589
+ */
590
+ interface RepTerritoryDto {
591
+ id: object;
592
+ name: string;
593
+ externalDisplayName: string;
594
+ code: string;
595
+ phone: string;
596
+ email: string;
597
+ website: string;
598
+ /**
599
+ * DTO for RenewAire.Cores.Domain.Address.
600
+ */
601
+ address: AddressDto;
602
+ contacts: Array<RepTerritoryRepContactDto>;
603
+ salesContacts: Array<ContactDto>;
604
+ }
605
+
606
+ /**
607
+ * RenewAire CORES API
608
+ *
609
+ * Contact: renewaire@saritasa.com
610
+ *
611
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
612
+ * https://openapi-generator.tech
613
+ * Do not edit the class manually.
614
+ */
615
+ /**
616
+ * RSD region document DTO for query RenewAire.Cores.UseCases.RsdRegions.GetRsdRegion.GetRsdRegionQuery.
617
+ */
618
+ interface RsdRegionDocumentDto {
619
+ id: object;
620
+ contentType: string;
621
+ fileName: string;
622
+ }
623
+
624
+ /**
625
+ * RenewAire CORES API
626
+ *
627
+ * Contact: renewaire@saritasa.com
628
+ *
629
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
630
+ * https://openapi-generator.tech
631
+ * Do not edit the class manually.
632
+ */
633
+ /**
634
+ * RSD region REP territory DTO for query RenewAire.Cores.UseCases.RsdRegions.GetRsdRegion.GetRsdRegionQuery.
635
+ */
636
+ interface RsdRegionRepTerritoryDto {
637
+ id: object;
638
+ name: string;
639
+ externalDisplayName: string;
640
+ }
641
+
642
+ /**
643
+ * RenewAire CORES API
644
+ *
645
+ * Contact: renewaire@saritasa.com
646
+ *
647
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
648
+ * https://openapi-generator.tech
649
+ * Do not edit the class manually.
650
+ */
651
+ /**
652
+ * RSD region assign user DTO for query RenewAire.Cores.UseCases.RsdRegions.GetRsdRegion.GetRsdRegionQuery.
653
+ */
654
+ interface RsdRegionUserDto {
655
+ /**
656
+ * User id.
657
+ */
658
+ id: number;
659
+ firstName: string;
660
+ lastName: string;
661
+ isPrimary: boolean;
662
+ }
663
+
664
+ /**
665
+ * RenewAire CORES API
666
+ *
667
+ * Contact: renewaire@saritasa.com
668
+ *
669
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
670
+ * https://openapi-generator.tech
671
+ * Do not edit the class manually.
672
+ */
673
+
674
+ /**
675
+ * RSD region DTO for query RenewAire.Cores.UseCases.RsdRegions.GetRsdRegion.GetRsdRegionQuery.
676
+ */
677
+ interface RsdRegionDto {
678
+ id: object;
679
+ name: string;
680
+ notes: string;
681
+ tags: Array<string>;
682
+ /**
683
+ * Active if not removed.
684
+ */
685
+ isActive: boolean;
686
+ rsdUsers: Array<RsdRegionUserDto>;
687
+ repTerritories: Array<RsdRegionRepTerritoryDto>;
688
+ documents: Array<RsdRegionDocumentDto>;
689
+ }
690
+
691
+ /**
692
+ * RenewAire CORES API
693
+ *
694
+ * Contact: renewaire@saritasa.com
695
+ *
696
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
697
+ * https://openapi-generator.tech
698
+ * Do not edit the class manually.
699
+ */
700
+
701
+ /**
702
+ * Save REP territory DTO.
703
+ */
704
+ interface SaveRepTerritoryDto {
705
+ name: string;
706
+ externalDisplayName: string;
707
+ code: string;
708
+ phone: string;
709
+ email: string;
710
+ website: string;
711
+ /**
712
+ * DTO for RenewAire.Cores.Domain.Address.
713
+ */
714
+ address: AddressDto;
715
+ rsdRegionId: object;
716
+ }
717
+
718
+ /**
719
+ * RenewAire CORES API
720
+ *
721
+ * Contact: renewaire@saritasa.com
722
+ *
723
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
724
+ * https://openapi-generator.tech
725
+ * Do not edit the class manually.
726
+ */
727
+ /**
728
+ * DTO for searching RenewAire.Cores.Domain.Region.
729
+ */
730
+ interface SearchRegionDto {
731
+ id: object;
732
+ /**
733
+ * RegionLevel<br />0 = Country<br />1 = State<br />2 = County
734
+ */
735
+ level: SearchRegionDtoLevelEnum;
736
+ name: string;
737
+ code: string;
738
+ parentRegionId?: object | null;
739
+ }
740
+ declare enum SearchRegionDtoLevelEnum {
741
+ Country = "Country",
742
+ State = "State",
743
+ County = "County"
744
+ }
745
+
746
+ /**
747
+ * RenewAire CORES API
748
+ *
749
+ * Contact: renewaire@saritasa.com
750
+ *
751
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
752
+ * https://openapi-generator.tech
753
+ * Do not edit the class manually.
754
+ */
755
+
756
+ interface SearchRegionDtoPagedListMetadataDto {
757
+ metadata: PagedListMetadata;
758
+ items: Array<SearchRegionDto>;
759
+ }
760
+
761
+ /**
762
+ * RenewAire CORES API
763
+ *
764
+ * Contact: renewaire@saritasa.com
765
+ *
766
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
767
+ * https://openapi-generator.tech
768
+ * Do not edit the class manually.
769
+ */
770
+
771
+ /**
772
+ * Search REP territory dto.
773
+ */
774
+ interface SearchRepTerritoryDto {
775
+ id: object;
776
+ name: string;
777
+ code: string;
778
+ /**
779
+ * Is active. Not removed territory.
780
+ */
781
+ isActive: boolean;
782
+ rsdRegionName: string;
783
+ locations: Array<string>;
784
+ groups: Array<string>;
785
+ contacts: Array<RepTerritoryRepContactDto>;
786
+ salesContacts: Array<ContactDto>;
787
+ }
788
+
789
+ /**
790
+ * RenewAire CORES API
791
+ *
792
+ * Contact: renewaire@saritasa.com
793
+ *
794
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
795
+ * https://openapi-generator.tech
796
+ * Do not edit the class manually.
797
+ */
798
+
799
+ interface SearchRepTerritoryDtoPagedListMetadataDto {
800
+ metadata: PagedListMetadata;
801
+ items: Array<SearchRepTerritoryDto>;
802
+ }
803
+
804
+ /**
805
+ * RenewAire CORES API
806
+ *
807
+ * Contact: renewaire@saritasa.com
808
+ *
809
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
810
+ * https://openapi-generator.tech
811
+ * Do not edit the class manually.
812
+ */
813
+
814
+ /**
815
+ * DTO for searching RenewAire.Cores.Domain.Users.RsdRegion.
816
+ */
817
+ interface SearchRsdRegionDto {
818
+ id: object;
819
+ name: string;
820
+ /**
821
+ * Active if not removed.
822
+ */
823
+ isActive: boolean;
824
+ rsdUsers: Array<RsdRegionUserDto>;
825
+ repTerritories: Array<RsdRegionRepTerritoryDto>;
826
+ }
827
+
828
+ /**
829
+ * RenewAire CORES API
830
+ *
831
+ * Contact: renewaire@saritasa.com
832
+ *
833
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
834
+ * https://openapi-generator.tech
835
+ * Do not edit the class manually.
836
+ */
837
+
838
+ interface SearchRsdRegionDtoPagedListMetadataDto {
839
+ metadata: PagedListMetadata;
840
+ items: Array<SearchRsdRegionDto>;
841
+ }
842
+
843
+ /**
844
+ * RenewAire CORES API
845
+ *
846
+ * Contact: renewaire@saritasa.com
847
+ *
848
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
849
+ * https://openapi-generator.tech
850
+ * Do not edit the class manually.
851
+ */
852
+ interface TotalCountListMetadata {
853
+ totalCount: number;
854
+ }
855
+
856
+ /**
857
+ * RenewAire CORES API
858
+ *
859
+ * Contact: renewaire@saritasa.com
860
+ *
861
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
862
+ * https://openapi-generator.tech
863
+ * Do not edit the class manually.
864
+ */
865
+ /**
866
+ * DTO to update RenewAire.Cores.Domain.Users.RsdRegion.
867
+ */
868
+ interface UpdateRsdRegionDto {
869
+ id: object;
870
+ name: string;
871
+ notes: string;
872
+ tags: Array<string>;
873
+ /**
874
+ * The main RSD user id in the region. More details: RenewAire.Cores.Domain.Users.RsdRegionAssignedRsd.IsPrimary.
875
+ */
876
+ primaryRsdUserId: number;
877
+ /**
878
+ * List of RSD users for the region, not including RenewAire.Cores.UseCases.Dtos.RsdRegions.UpdateRsdRegionDto.PrimaryRsdUserId.
879
+ */
880
+ rsdUserIds: Array<number>;
881
+ }
882
+
883
+ /**
884
+ * RenewAire CORES API
885
+ *
886
+ * Contact: renewaire@saritasa.com
887
+ *
888
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
889
+ * https://openapi-generator.tech
890
+ * Do not edit the class manually.
891
+ */
892
+ /**
893
+ * User email DTO.
894
+ */
895
+ interface UserEmailDto {
896
+ /**
897
+ * <inheritdoc cref=\"P:RenewAire.Cores.Domain.Users.User.Email\" />.
898
+ */
899
+ email: string;
900
+ }
901
+
902
+ /**
903
+ * RenewAire CORES API
904
+ *
905
+ * Contact: renewaire@saritasa.com
906
+ *
907
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
908
+ * https://openapi-generator.tech
909
+ * Do not edit the class manually.
910
+ */
911
+ /**
912
+ * User preferences DTO.
913
+ */
914
+ interface UserPreferencesDto {
915
+ occupation: string;
916
+ }
917
+
918
+ /**
919
+ * RenewAire CORES API
920
+ *
921
+ * Contact: renewaire@saritasa.com
922
+ *
923
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
924
+ * https://openapi-generator.tech
925
+ * Do not edit the class manually.
926
+ */
927
+ /**
928
+ * User profile DTO.
929
+ */
930
+ interface UserProfileDto {
931
+ firstName: string;
932
+ lastName: string;
933
+ company: string;
934
+ title: string;
935
+ /**
936
+ * Phone number.
937
+ */
938
+ workPhoneNumber: string;
939
+ /**
940
+ * Work phone number extension. Optional.
941
+ */
942
+ workPhoneNumberExt?: string | null;
943
+ /**
944
+ * Work phone.
945
+ */
946
+ mobilePhoneNumber?: string | null;
947
+ }
948
+
949
+ /**
950
+ * RenewAire CORES API
951
+ *
952
+ * Contact: renewaire@saritasa.com
953
+ *
954
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
955
+ * https://openapi-generator.tech
956
+ * Do not edit the class manually.
957
+ */
958
+
959
+ /**
960
+ * User registration DTO.
961
+ */
962
+ interface UserRegistrationDto {
963
+ /**
964
+ * Email address and confirmation token.
965
+ */
966
+ emailToken: EmailConfirmationTokenDto;
967
+ /**
968
+ * Password.
969
+ */
970
+ password: string;
971
+ /**
972
+ * User profile information.
973
+ */
974
+ profile: UserProfileDto;
975
+ /**
976
+ * Physical address.
977
+ */
978
+ address: PhysicalAddressDto;
979
+ /**
980
+ * Preferences.
981
+ */
982
+ preferences: UserPreferencesDto;
983
+ }
984
+
985
+ /**
986
+ * RenewAire CORES API
987
+ *
988
+ * Contact: renewaire@saritasa.com
989
+ *
990
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
991
+ * https://openapi-generator.tech
992
+ * Do not edit the class manually.
993
+ */
994
+
995
+ interface AuthAuthenticateRequestParams {
996
+ loginUserCommand: LoginUserCommand;
997
+ }
998
+ interface AuthRefreshTokenRequestParams {
999
+ refreshTokenCommand: RefreshTokenCommand;
1000
+ }
1001
+ interface AuthApiServiceInterface {
1002
+ defaultHeaders: HttpHeaders;
1003
+ configuration: Configuration;
1004
+ /**
1005
+ * Authenticate user by email and password.
1006
+ *
1007
+ * @param requestParameters
1008
+ */
1009
+ authAuthenticate(requestParameters: AuthAuthenticateRequestParams, extraHttpRequestParams?: any): Observable<TokenModel>;
1010
+ /**
1011
+ * Get new token by refresh token.
1012
+ *
1013
+ * @param requestParameters
1014
+ */
1015
+ authRefreshToken(requestParameters: AuthRefreshTokenRequestParams, extraHttpRequestParams?: any): Observable<TokenModel>;
1016
+ }
1017
+
1018
+ declare class AuthApiService extends BaseService implements AuthApiServiceInterface {
1019
+ protected httpClient: HttpClient;
1020
+ constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
1021
+ /**
1022
+ * Authenticate user by email and password.
1023
+ * @param requestParameters
1024
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1025
+ * @param reportProgress flag to report request and response progress.
1026
+ */
1027
+ authAuthenticate(requestParameters: AuthAuthenticateRequestParams, observe?: "body", reportProgress?: boolean, options?: {
1028
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
1029
+ context?: HttpContext;
1030
+ transferCache?: boolean;
1031
+ }): Observable<TokenModel>;
1032
+ authAuthenticate(requestParameters: AuthAuthenticateRequestParams, observe?: "response", reportProgress?: boolean, options?: {
1033
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
1034
+ context?: HttpContext;
1035
+ transferCache?: boolean;
1036
+ }): Observable<HttpResponse<TokenModel>>;
1037
+ authAuthenticate(requestParameters: AuthAuthenticateRequestParams, observe?: "events", reportProgress?: boolean, options?: {
1038
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
1039
+ context?: HttpContext;
1040
+ transferCache?: boolean;
1041
+ }): Observable<HttpEvent<TokenModel>>;
1042
+ /**
1043
+ * Get new token by refresh token.
1044
+ * @param requestParameters
1045
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1046
+ * @param reportProgress flag to report request and response progress.
1047
+ */
1048
+ authRefreshToken(requestParameters: AuthRefreshTokenRequestParams, observe?: "body", reportProgress?: boolean, options?: {
1049
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
1050
+ context?: HttpContext;
1051
+ transferCache?: boolean;
1052
+ }): Observable<TokenModel>;
1053
+ authRefreshToken(requestParameters: AuthRefreshTokenRequestParams, observe?: "response", reportProgress?: boolean, options?: {
1054
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
1055
+ context?: HttpContext;
1056
+ transferCache?: boolean;
1057
+ }): Observable<HttpResponse<TokenModel>>;
1058
+ authRefreshToken(requestParameters: AuthRefreshTokenRequestParams, observe?: "events", reportProgress?: boolean, options?: {
1059
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
1060
+ context?: HttpContext;
1061
+ transferCache?: boolean;
1062
+ }): Observable<HttpEvent<TokenModel>>;
1063
+ static ɵfac: i0.ɵɵFactoryDeclaration<AuthApiService, [null, { optional: true; }, { optional: true; }]>;
1064
+ static ɵprov: i0.ɵɵInjectableDeclaration<AuthApiService>;
1065
+ }
1066
+
1067
+ /**
1068
+ * RenewAire CORES API
1069
+ *
1070
+ * Contact: renewaire@saritasa.com
1071
+ *
1072
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1073
+ * https://openapi-generator.tech
1074
+ * Do not edit the class manually.
1075
+ */
1076
+
1077
+ interface PermissionsApiServiceInterface {
1078
+ defaultHeaders: HttpHeaders;
1079
+ configuration: Configuration;
1080
+ /**
1081
+ * Get all system permissions.
1082
+ *
1083
+ */
1084
+ permissionsGetPermissions(extraHttpRequestParams?: any): Observable<Array<PermissionDto>>;
1085
+ }
1086
+
1087
+ declare class PermissionsApiService extends BaseService implements PermissionsApiServiceInterface {
1088
+ protected httpClient: HttpClient;
1089
+ constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
1090
+ /**
1091
+ * Get all system permissions.
1092
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1093
+ * @param reportProgress flag to report request and response progress.
1094
+ */
1095
+ permissionsGetPermissions(observe?: "body", reportProgress?: boolean, options?: {
1096
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
1097
+ context?: HttpContext;
1098
+ transferCache?: boolean;
1099
+ }): Observable<Array<PermissionDto>>;
1100
+ permissionsGetPermissions(observe?: "response", reportProgress?: boolean, options?: {
1101
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
1102
+ context?: HttpContext;
1103
+ transferCache?: boolean;
1104
+ }): Observable<HttpResponse<Array<PermissionDto>>>;
1105
+ permissionsGetPermissions(observe?: "events", reportProgress?: boolean, options?: {
1106
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
1107
+ context?: HttpContext;
1108
+ transferCache?: boolean;
1109
+ }): Observable<HttpEvent<Array<PermissionDto>>>;
1110
+ static ɵfac: i0.ɵɵFactoryDeclaration<PermissionsApiService, [null, { optional: true; }, { optional: true; }]>;
1111
+ static ɵprov: i0.ɵɵInjectableDeclaration<PermissionsApiService>;
1112
+ }
1113
+
1114
+ /**
1115
+ * RenewAire CORES API
1116
+ *
1117
+ * Contact: renewaire@saritasa.com
1118
+ *
1119
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1120
+ * https://openapi-generator.tech
1121
+ * Do not edit the class manually.
1122
+ */
1123
+
1124
+ interface RegionsSearchRegionsRequestParams {
1125
+ name?: string;
1126
+ code?: string;
1127
+ level?: RegionLevel;
1128
+ orderBy?: string;
1129
+ page?: number;
1130
+ pageSize?: number;
1131
+ }
1132
+ interface RegionsApiServiceInterface {
1133
+ defaultHeaders: HttpHeaders;
1134
+ configuration: Configuration;
1135
+ /**
1136
+ * Search regions.
1137
+ *
1138
+ * @param requestParameters
1139
+ */
1140
+ regionsSearchRegions(requestParameters: RegionsSearchRegionsRequestParams, extraHttpRequestParams?: any): Observable<SearchRegionDtoPagedListMetadataDto>;
1141
+ }
1142
+
1143
+ declare class RegionsApiService extends BaseService implements RegionsApiServiceInterface {
1144
+ protected httpClient: HttpClient;
1145
+ constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
1146
+ /**
1147
+ * Search regions.
1148
+ * @param requestParameters
1149
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1150
+ * @param reportProgress flag to report request and response progress.
1151
+ */
1152
+ regionsSearchRegions(requestParameters?: RegionsSearchRegionsRequestParams, observe?: "body", reportProgress?: boolean, options?: {
1153
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
1154
+ context?: HttpContext;
1155
+ transferCache?: boolean;
1156
+ }): Observable<SearchRegionDtoPagedListMetadataDto>;
1157
+ regionsSearchRegions(requestParameters?: RegionsSearchRegionsRequestParams, observe?: "response", reportProgress?: boolean, options?: {
1158
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
1159
+ context?: HttpContext;
1160
+ transferCache?: boolean;
1161
+ }): Observable<HttpResponse<SearchRegionDtoPagedListMetadataDto>>;
1162
+ regionsSearchRegions(requestParameters?: RegionsSearchRegionsRequestParams, observe?: "events", reportProgress?: boolean, options?: {
1163
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
1164
+ context?: HttpContext;
1165
+ transferCache?: boolean;
1166
+ }): Observable<HttpEvent<SearchRegionDtoPagedListMetadataDto>>;
1167
+ static ɵfac: i0.ɵɵFactoryDeclaration<RegionsApiService, [null, { optional: true; }, { optional: true; }]>;
1168
+ static ɵprov: i0.ɵɵInjectableDeclaration<RegionsApiService>;
1169
+ }
1170
+
1171
+ /**
1172
+ * RenewAire CORES API
1173
+ *
1174
+ * Contact: renewaire@saritasa.com
1175
+ *
1176
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1177
+ * https://openapi-generator.tech
1178
+ * Do not edit the class manually.
1179
+ */
1180
+
1181
+ interface RepTerritoriesCreateRepTerritoryRequestParams {
1182
+ saveRepTerritoryDto?: SaveRepTerritoryDto;
1183
+ }
1184
+ interface RepTerritoriesGetRepTerritoryRequestParams {
1185
+ repTerritoryId: number;
1186
+ }
1187
+ interface RepTerritoriesRemoveRepTerritoryRequestParams {
1188
+ repTerritoryId: number;
1189
+ }
1190
+ interface RepTerritoriesSearchRsdTerritoriesRequestParams {
1191
+ repName?: string;
1192
+ repCode?: string;
1193
+ rsdRegionName?: string;
1194
+ orderBy?: string;
1195
+ page?: number;
1196
+ pageSize?: number;
1197
+ }
1198
+ interface RepTerritoriesUpdateRepTerritoryRequestParams {
1199
+ repTerritoryId: number;
1200
+ saveRepTerritoryDto?: SaveRepTerritoryDto;
1201
+ }
1202
+ interface RepTerritoriesApiServiceInterface {
1203
+ defaultHeaders: HttpHeaders;
1204
+ configuration: Configuration;
1205
+ /**
1206
+ * Create REP territory.
1207
+ *
1208
+ * @param requestParameters
1209
+ */
1210
+ repTerritoriesCreateRepTerritory(requestParameters: RepTerritoriesCreateRepTerritoryRequestParams, extraHttpRequestParams?: any): Observable<object>;
1211
+ /**
1212
+ * Get REP territory.
1213
+ *
1214
+ * @param requestParameters
1215
+ */
1216
+ repTerritoriesGetRepTerritory(requestParameters: RepTerritoriesGetRepTerritoryRequestParams, extraHttpRequestParams?: any): Observable<RepTerritoryDto>;
1217
+ /**
1218
+ * Remove REP territory.
1219
+ *
1220
+ * @param requestParameters
1221
+ */
1222
+ repTerritoriesRemoveRepTerritory(requestParameters: RepTerritoriesRemoveRepTerritoryRequestParams, extraHttpRequestParams?: any): Observable<{}>;
1223
+ /**
1224
+ * Search REP territories.
1225
+ *
1226
+ * @param requestParameters
1227
+ */
1228
+ repTerritoriesSearchRsdTerritories(requestParameters: RepTerritoriesSearchRsdTerritoriesRequestParams, extraHttpRequestParams?: any): Observable<SearchRepTerritoryDtoPagedListMetadataDto>;
1229
+ /**
1230
+ * Update REP territory.
1231
+ *
1232
+ * @param requestParameters
1233
+ */
1234
+ repTerritoriesUpdateRepTerritory(requestParameters: RepTerritoriesUpdateRepTerritoryRequestParams, extraHttpRequestParams?: any): Observable<{}>;
1235
+ }
1236
+
1237
+ declare class RepTerritoriesApiService extends BaseService implements RepTerritoriesApiServiceInterface {
1238
+ protected httpClient: HttpClient;
1239
+ constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
1240
+ /**
1241
+ * Create REP territory.
1242
+ * @param requestParameters
1243
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1244
+ * @param reportProgress flag to report request and response progress.
1245
+ */
1246
+ repTerritoriesCreateRepTerritory(requestParameters?: RepTerritoriesCreateRepTerritoryRequestParams, observe?: "body", reportProgress?: boolean, options?: {
1247
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
1248
+ context?: HttpContext;
1249
+ transferCache?: boolean;
1250
+ }): Observable<object>;
1251
+ repTerritoriesCreateRepTerritory(requestParameters?: RepTerritoriesCreateRepTerritoryRequestParams, observe?: "response", reportProgress?: boolean, options?: {
1252
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
1253
+ context?: HttpContext;
1254
+ transferCache?: boolean;
1255
+ }): Observable<HttpResponse<object>>;
1256
+ repTerritoriesCreateRepTerritory(requestParameters?: RepTerritoriesCreateRepTerritoryRequestParams, observe?: "events", reportProgress?: boolean, options?: {
1257
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
1258
+ context?: HttpContext;
1259
+ transferCache?: boolean;
1260
+ }): Observable<HttpEvent<object>>;
1261
+ /**
1262
+ * Get REP territory.
1263
+ * @param requestParameters
1264
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1265
+ * @param reportProgress flag to report request and response progress.
1266
+ */
1267
+ repTerritoriesGetRepTerritory(requestParameters: RepTerritoriesGetRepTerritoryRequestParams, observe?: "body", reportProgress?: boolean, options?: {
1268
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
1269
+ context?: HttpContext;
1270
+ transferCache?: boolean;
1271
+ }): Observable<RepTerritoryDto>;
1272
+ repTerritoriesGetRepTerritory(requestParameters: RepTerritoriesGetRepTerritoryRequestParams, observe?: "response", reportProgress?: boolean, options?: {
1273
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
1274
+ context?: HttpContext;
1275
+ transferCache?: boolean;
1276
+ }): Observable<HttpResponse<RepTerritoryDto>>;
1277
+ repTerritoriesGetRepTerritory(requestParameters: RepTerritoriesGetRepTerritoryRequestParams, observe?: "events", reportProgress?: boolean, options?: {
1278
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
1279
+ context?: HttpContext;
1280
+ transferCache?: boolean;
1281
+ }): Observable<HttpEvent<RepTerritoryDto>>;
1282
+ /**
1283
+ * Remove REP territory.
1284
+ * @param requestParameters
1285
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1286
+ * @param reportProgress flag to report request and response progress.
1287
+ */
1288
+ repTerritoriesRemoveRepTerritory(requestParameters: RepTerritoriesRemoveRepTerritoryRequestParams, observe?: "body", reportProgress?: boolean, options?: {
1289
+ httpHeaderAccept?: undefined;
1290
+ context?: HttpContext;
1291
+ transferCache?: boolean;
1292
+ }): Observable<any>;
1293
+ repTerritoriesRemoveRepTerritory(requestParameters: RepTerritoriesRemoveRepTerritoryRequestParams, observe?: "response", reportProgress?: boolean, options?: {
1294
+ httpHeaderAccept?: undefined;
1295
+ context?: HttpContext;
1296
+ transferCache?: boolean;
1297
+ }): Observable<HttpResponse<any>>;
1298
+ repTerritoriesRemoveRepTerritory(requestParameters: RepTerritoriesRemoveRepTerritoryRequestParams, observe?: "events", reportProgress?: boolean, options?: {
1299
+ httpHeaderAccept?: undefined;
1300
+ context?: HttpContext;
1301
+ transferCache?: boolean;
1302
+ }): Observable<HttpEvent<any>>;
1303
+ /**
1304
+ * Search REP territories.
1305
+ * @param requestParameters
1306
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1307
+ * @param reportProgress flag to report request and response progress.
1308
+ */
1309
+ repTerritoriesSearchRsdTerritories(requestParameters?: RepTerritoriesSearchRsdTerritoriesRequestParams, observe?: "body", reportProgress?: boolean, options?: {
1310
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
1311
+ context?: HttpContext;
1312
+ transferCache?: boolean;
1313
+ }): Observable<SearchRepTerritoryDtoPagedListMetadataDto>;
1314
+ repTerritoriesSearchRsdTerritories(requestParameters?: RepTerritoriesSearchRsdTerritoriesRequestParams, observe?: "response", reportProgress?: boolean, options?: {
1315
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
1316
+ context?: HttpContext;
1317
+ transferCache?: boolean;
1318
+ }): Observable<HttpResponse<SearchRepTerritoryDtoPagedListMetadataDto>>;
1319
+ repTerritoriesSearchRsdTerritories(requestParameters?: RepTerritoriesSearchRsdTerritoriesRequestParams, observe?: "events", reportProgress?: boolean, options?: {
1320
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
1321
+ context?: HttpContext;
1322
+ transferCache?: boolean;
1323
+ }): Observable<HttpEvent<SearchRepTerritoryDtoPagedListMetadataDto>>;
1324
+ /**
1325
+ * Update REP territory.
1326
+ * @param requestParameters
1327
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1328
+ * @param reportProgress flag to report request and response progress.
1329
+ */
1330
+ repTerritoriesUpdateRepTerritory(requestParameters: RepTerritoriesUpdateRepTerritoryRequestParams, observe?: "body", reportProgress?: boolean, options?: {
1331
+ httpHeaderAccept?: undefined;
1332
+ context?: HttpContext;
1333
+ transferCache?: boolean;
1334
+ }): Observable<any>;
1335
+ repTerritoriesUpdateRepTerritory(requestParameters: RepTerritoriesUpdateRepTerritoryRequestParams, observe?: "response", reportProgress?: boolean, options?: {
1336
+ httpHeaderAccept?: undefined;
1337
+ context?: HttpContext;
1338
+ transferCache?: boolean;
1339
+ }): Observable<HttpResponse<any>>;
1340
+ repTerritoriesUpdateRepTerritory(requestParameters: RepTerritoriesUpdateRepTerritoryRequestParams, observe?: "events", reportProgress?: boolean, options?: {
1341
+ httpHeaderAccept?: undefined;
1342
+ context?: HttpContext;
1343
+ transferCache?: boolean;
1344
+ }): Observable<HttpEvent<any>>;
1345
+ static ɵfac: i0.ɵɵFactoryDeclaration<RepTerritoriesApiService, [null, { optional: true; }, { optional: true; }]>;
1346
+ static ɵprov: i0.ɵɵInjectableDeclaration<RepTerritoriesApiService>;
1347
+ }
1348
+
1349
+ /**
1350
+ * RenewAire CORES API
1351
+ *
1352
+ * Contact: renewaire@saritasa.com
1353
+ *
1354
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1355
+ * https://openapi-generator.tech
1356
+ * Do not edit the class manually.
1357
+ */
1358
+
1359
+ interface RsdRegionsCreateRsdRegionRequestParams {
1360
+ createRsdRegionDto?: CreateRsdRegionDto;
1361
+ }
1362
+ interface RsdRegionsGetRsdRegionRequestParams {
1363
+ id: number;
1364
+ }
1365
+ interface RsdRegionsRemoveRsdRegionRequestParams {
1366
+ id: number;
1367
+ }
1368
+ interface RsdRegionsSearchRsdRegionsRequestParams {
1369
+ name?: string;
1370
+ isActive?: boolean;
1371
+ rsdUserIds?: Array<number>;
1372
+ repTerritoryIds?: Array<object>;
1373
+ orderBy?: string;
1374
+ page?: number;
1375
+ pageSize?: number;
1376
+ }
1377
+ interface RsdRegionsUpdateRsdRegionRequestParams {
1378
+ updateRsdRegionDto?: UpdateRsdRegionDto;
1379
+ }
1380
+ interface RsdRegionsApiServiceInterface {
1381
+ defaultHeaders: HttpHeaders;
1382
+ configuration: Configuration;
1383
+ /**
1384
+ * Create RSD region.
1385
+ *
1386
+ * @param requestParameters
1387
+ */
1388
+ rsdRegionsCreateRsdRegion(requestParameters: RsdRegionsCreateRsdRegionRequestParams, extraHttpRequestParams?: any): Observable<object>;
1389
+ /**
1390
+ * Get RSD region by id.
1391
+ *
1392
+ * @param requestParameters
1393
+ */
1394
+ rsdRegionsGetRsdRegion(requestParameters: RsdRegionsGetRsdRegionRequestParams, extraHttpRequestParams?: any): Observable<RsdRegionDto>;
1395
+ /**
1396
+ * Remove RSD region by id.
1397
+ *
1398
+ * @param requestParameters
1399
+ */
1400
+ rsdRegionsRemoveRsdRegion(requestParameters: RsdRegionsRemoveRsdRegionRequestParams, extraHttpRequestParams?: any): Observable<{}>;
1401
+ /**
1402
+ * Search RSD regions.
1403
+ *
1404
+ * @param requestParameters
1405
+ */
1406
+ rsdRegionsSearchRsdRegions(requestParameters: RsdRegionsSearchRsdRegionsRequestParams, extraHttpRequestParams?: any): Observable<SearchRsdRegionDtoPagedListMetadataDto>;
1407
+ /**
1408
+ * Update RSD region.
1409
+ *
1410
+ * @param requestParameters
1411
+ */
1412
+ rsdRegionsUpdateRsdRegion(requestParameters: RsdRegionsUpdateRsdRegionRequestParams, extraHttpRequestParams?: any): Observable<{}>;
1413
+ }
1414
+
1415
+ declare class RsdRegionsApiService extends BaseService implements RsdRegionsApiServiceInterface {
1416
+ protected httpClient: HttpClient;
1417
+ constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
1418
+ /**
1419
+ * Create RSD region.
1420
+ * @param requestParameters
1421
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1422
+ * @param reportProgress flag to report request and response progress.
1423
+ */
1424
+ rsdRegionsCreateRsdRegion(requestParameters?: RsdRegionsCreateRsdRegionRequestParams, observe?: "body", reportProgress?: boolean, options?: {
1425
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
1426
+ context?: HttpContext;
1427
+ transferCache?: boolean;
1428
+ }): Observable<object>;
1429
+ rsdRegionsCreateRsdRegion(requestParameters?: RsdRegionsCreateRsdRegionRequestParams, observe?: "response", reportProgress?: boolean, options?: {
1430
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
1431
+ context?: HttpContext;
1432
+ transferCache?: boolean;
1433
+ }): Observable<HttpResponse<object>>;
1434
+ rsdRegionsCreateRsdRegion(requestParameters?: RsdRegionsCreateRsdRegionRequestParams, observe?: "events", reportProgress?: boolean, options?: {
1435
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
1436
+ context?: HttpContext;
1437
+ transferCache?: boolean;
1438
+ }): Observable<HttpEvent<object>>;
1439
+ /**
1440
+ * Get RSD region by id.
1441
+ * @param requestParameters
1442
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1443
+ * @param reportProgress flag to report request and response progress.
1444
+ */
1445
+ rsdRegionsGetRsdRegion(requestParameters: RsdRegionsGetRsdRegionRequestParams, observe?: "body", reportProgress?: boolean, options?: {
1446
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
1447
+ context?: HttpContext;
1448
+ transferCache?: boolean;
1449
+ }): Observable<RsdRegionDto>;
1450
+ rsdRegionsGetRsdRegion(requestParameters: RsdRegionsGetRsdRegionRequestParams, observe?: "response", reportProgress?: boolean, options?: {
1451
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
1452
+ context?: HttpContext;
1453
+ transferCache?: boolean;
1454
+ }): Observable<HttpResponse<RsdRegionDto>>;
1455
+ rsdRegionsGetRsdRegion(requestParameters: RsdRegionsGetRsdRegionRequestParams, observe?: "events", reportProgress?: boolean, options?: {
1456
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
1457
+ context?: HttpContext;
1458
+ transferCache?: boolean;
1459
+ }): Observable<HttpEvent<RsdRegionDto>>;
1460
+ /**
1461
+ * Remove RSD region by id.
1462
+ * @param requestParameters
1463
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1464
+ * @param reportProgress flag to report request and response progress.
1465
+ */
1466
+ rsdRegionsRemoveRsdRegion(requestParameters: RsdRegionsRemoveRsdRegionRequestParams, observe?: "body", reportProgress?: boolean, options?: {
1467
+ httpHeaderAccept?: undefined;
1468
+ context?: HttpContext;
1469
+ transferCache?: boolean;
1470
+ }): Observable<any>;
1471
+ rsdRegionsRemoveRsdRegion(requestParameters: RsdRegionsRemoveRsdRegionRequestParams, observe?: "response", reportProgress?: boolean, options?: {
1472
+ httpHeaderAccept?: undefined;
1473
+ context?: HttpContext;
1474
+ transferCache?: boolean;
1475
+ }): Observable<HttpResponse<any>>;
1476
+ rsdRegionsRemoveRsdRegion(requestParameters: RsdRegionsRemoveRsdRegionRequestParams, observe?: "events", reportProgress?: boolean, options?: {
1477
+ httpHeaderAccept?: undefined;
1478
+ context?: HttpContext;
1479
+ transferCache?: boolean;
1480
+ }): Observable<HttpEvent<any>>;
1481
+ /**
1482
+ * Search RSD regions.
1483
+ * @param requestParameters
1484
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1485
+ * @param reportProgress flag to report request and response progress.
1486
+ */
1487
+ rsdRegionsSearchRsdRegions(requestParameters?: RsdRegionsSearchRsdRegionsRequestParams, observe?: "body", reportProgress?: boolean, options?: {
1488
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
1489
+ context?: HttpContext;
1490
+ transferCache?: boolean;
1491
+ }): Observable<SearchRsdRegionDtoPagedListMetadataDto>;
1492
+ rsdRegionsSearchRsdRegions(requestParameters?: RsdRegionsSearchRsdRegionsRequestParams, observe?: "response", reportProgress?: boolean, options?: {
1493
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
1494
+ context?: HttpContext;
1495
+ transferCache?: boolean;
1496
+ }): Observable<HttpResponse<SearchRsdRegionDtoPagedListMetadataDto>>;
1497
+ rsdRegionsSearchRsdRegions(requestParameters?: RsdRegionsSearchRsdRegionsRequestParams, observe?: "events", reportProgress?: boolean, options?: {
1498
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
1499
+ context?: HttpContext;
1500
+ transferCache?: boolean;
1501
+ }): Observable<HttpEvent<SearchRsdRegionDtoPagedListMetadataDto>>;
1502
+ /**
1503
+ * Update RSD region.
1504
+ * @param requestParameters
1505
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1506
+ * @param reportProgress flag to report request and response progress.
1507
+ */
1508
+ rsdRegionsUpdateRsdRegion(requestParameters?: RsdRegionsUpdateRsdRegionRequestParams, observe?: "body", reportProgress?: boolean, options?: {
1509
+ httpHeaderAccept?: undefined;
1510
+ context?: HttpContext;
1511
+ transferCache?: boolean;
1512
+ }): Observable<any>;
1513
+ rsdRegionsUpdateRsdRegion(requestParameters?: RsdRegionsUpdateRsdRegionRequestParams, observe?: "response", reportProgress?: boolean, options?: {
1514
+ httpHeaderAccept?: undefined;
1515
+ context?: HttpContext;
1516
+ transferCache?: boolean;
1517
+ }): Observable<HttpResponse<any>>;
1518
+ rsdRegionsUpdateRsdRegion(requestParameters?: RsdRegionsUpdateRsdRegionRequestParams, observe?: "events", reportProgress?: boolean, options?: {
1519
+ httpHeaderAccept?: undefined;
1520
+ context?: HttpContext;
1521
+ transferCache?: boolean;
1522
+ }): Observable<HttpEvent<any>>;
1523
+ static ɵfac: i0.ɵɵFactoryDeclaration<RsdRegionsApiService, [null, { optional: true; }, { optional: true; }]>;
1524
+ static ɵprov: i0.ɵɵInjectableDeclaration<RsdRegionsApiService>;
1525
+ }
1526
+
1527
+ /**
1528
+ * RenewAire CORES API
1529
+ *
1530
+ * Contact: renewaire@saritasa.com
1531
+ *
1532
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1533
+ * https://openapi-generator.tech
1534
+ * Do not edit the class manually.
1535
+ */
1536
+
1537
+ interface UsersConfirmEmailRequestParams {
1538
+ emailConfirmationTokenDto?: EmailConfirmationTokenDto;
1539
+ }
1540
+ interface UsersGetRepContacts0RequestParams {
1541
+ userId: number;
1542
+ }
1543
+ interface UsersRegisterUserRequestParams {
1544
+ userRegistrationDto?: UserRegistrationDto;
1545
+ }
1546
+ interface UsersRequestConfirmEmailRequestParams {
1547
+ userEmailDto?: UserEmailDto;
1548
+ }
1549
+ interface UsersApiServiceInterface {
1550
+ defaultHeaders: HttpHeaders;
1551
+ configuration: Configuration;
1552
+ /**
1553
+ * Confirm email address using the verification code from email and continue registration.
1554
+ *
1555
+ * @param requestParameters
1556
+ */
1557
+ usersConfirmEmail(requestParameters: UsersConfirmEmailRequestParams, extraHttpRequestParams?: any): Observable<{}>;
1558
+ /**
1559
+ * Get current user REP contacts.
1560
+ *
1561
+ */
1562
+ usersGetRepContacts(extraHttpRequestParams?: any): Observable<RepTerritoryContactsDto>;
1563
+ /**
1564
+ * Get user REP contacts.
1565
+ *
1566
+ * @param requestParameters
1567
+ */
1568
+ usersGetRepContacts_1(requestParameters: UsersGetRepContacts0RequestParams, extraHttpRequestParams?: any): Observable<RepTerritoryContactsDto>;
1569
+ /**
1570
+ * Register user.
1571
+ *
1572
+ * @param requestParameters
1573
+ */
1574
+ usersRegisterUser(requestParameters: UsersRegisterUserRequestParams, extraHttpRequestParams?: any): Observable<Int32IdDto>;
1575
+ /**
1576
+ * Request email confirmation and begin registration. This endpoint sends verification email to a given address.
1577
+ *
1578
+ * @param requestParameters
1579
+ */
1580
+ usersRequestConfirmEmail(requestParameters: UsersRequestConfirmEmailRequestParams, extraHttpRequestParams?: any): Observable<{}>;
1581
+ }
1582
+
1583
+ declare class UsersApiService extends BaseService implements UsersApiServiceInterface {
1584
+ protected httpClient: HttpClient;
1585
+ constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
1586
+ /**
1587
+ * Confirm email address using the verification code from email and continue registration.
1588
+ * @param requestParameters
1589
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1590
+ * @param reportProgress flag to report request and response progress.
1591
+ */
1592
+ usersConfirmEmail(requestParameters?: UsersConfirmEmailRequestParams, observe?: "body", reportProgress?: boolean, options?: {
1593
+ httpHeaderAccept?: undefined;
1594
+ context?: HttpContext;
1595
+ transferCache?: boolean;
1596
+ }): Observable<any>;
1597
+ usersConfirmEmail(requestParameters?: UsersConfirmEmailRequestParams, observe?: "response", reportProgress?: boolean, options?: {
1598
+ httpHeaderAccept?: undefined;
1599
+ context?: HttpContext;
1600
+ transferCache?: boolean;
1601
+ }): Observable<HttpResponse<any>>;
1602
+ usersConfirmEmail(requestParameters?: UsersConfirmEmailRequestParams, observe?: "events", reportProgress?: boolean, options?: {
1603
+ httpHeaderAccept?: undefined;
1604
+ context?: HttpContext;
1605
+ transferCache?: boolean;
1606
+ }): Observable<HttpEvent<any>>;
1607
+ /**
1608
+ * Get current user REP contacts.
1609
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1610
+ * @param reportProgress flag to report request and response progress.
1611
+ */
1612
+ usersGetRepContacts(observe?: "body", reportProgress?: boolean, options?: {
1613
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
1614
+ context?: HttpContext;
1615
+ transferCache?: boolean;
1616
+ }): Observable<RepTerritoryContactsDto>;
1617
+ usersGetRepContacts(observe?: "response", reportProgress?: boolean, options?: {
1618
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
1619
+ context?: HttpContext;
1620
+ transferCache?: boolean;
1621
+ }): Observable<HttpResponse<RepTerritoryContactsDto>>;
1622
+ usersGetRepContacts(observe?: "events", reportProgress?: boolean, options?: {
1623
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
1624
+ context?: HttpContext;
1625
+ transferCache?: boolean;
1626
+ }): Observable<HttpEvent<RepTerritoryContactsDto>>;
1627
+ /**
1628
+ * Get user REP contacts.
1629
+ * @param requestParameters
1630
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1631
+ * @param reportProgress flag to report request and response progress.
1632
+ */
1633
+ usersGetRepContacts_1(requestParameters: UsersGetRepContacts0RequestParams, observe?: "body", reportProgress?: boolean, options?: {
1634
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
1635
+ context?: HttpContext;
1636
+ transferCache?: boolean;
1637
+ }): Observable<RepTerritoryContactsDto>;
1638
+ usersGetRepContacts_1(requestParameters: UsersGetRepContacts0RequestParams, observe?: "response", reportProgress?: boolean, options?: {
1639
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
1640
+ context?: HttpContext;
1641
+ transferCache?: boolean;
1642
+ }): Observable<HttpResponse<RepTerritoryContactsDto>>;
1643
+ usersGetRepContacts_1(requestParameters: UsersGetRepContacts0RequestParams, observe?: "events", reportProgress?: boolean, options?: {
1644
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
1645
+ context?: HttpContext;
1646
+ transferCache?: boolean;
1647
+ }): Observable<HttpEvent<RepTerritoryContactsDto>>;
1648
+ /**
1649
+ * Register user.
1650
+ * @param requestParameters
1651
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1652
+ * @param reportProgress flag to report request and response progress.
1653
+ */
1654
+ usersRegisterUser(requestParameters?: UsersRegisterUserRequestParams, observe?: "body", reportProgress?: boolean, options?: {
1655
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
1656
+ context?: HttpContext;
1657
+ transferCache?: boolean;
1658
+ }): Observable<Int32IdDto>;
1659
+ usersRegisterUser(requestParameters?: UsersRegisterUserRequestParams, observe?: "response", reportProgress?: boolean, options?: {
1660
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
1661
+ context?: HttpContext;
1662
+ transferCache?: boolean;
1663
+ }): Observable<HttpResponse<Int32IdDto>>;
1664
+ usersRegisterUser(requestParameters?: UsersRegisterUserRequestParams, observe?: "events", reportProgress?: boolean, options?: {
1665
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
1666
+ context?: HttpContext;
1667
+ transferCache?: boolean;
1668
+ }): Observable<HttpEvent<Int32IdDto>>;
1669
+ /**
1670
+ * Request email confirmation and begin registration. This endpoint sends verification email to a given address.
1671
+ * @param requestParameters
1672
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1673
+ * @param reportProgress flag to report request and response progress.
1674
+ */
1675
+ usersRequestConfirmEmail(requestParameters?: UsersRequestConfirmEmailRequestParams, observe?: "body", reportProgress?: boolean, options?: {
1676
+ httpHeaderAccept?: undefined;
1677
+ context?: HttpContext;
1678
+ transferCache?: boolean;
1679
+ }): Observable<any>;
1680
+ usersRequestConfirmEmail(requestParameters?: UsersRequestConfirmEmailRequestParams, observe?: "response", reportProgress?: boolean, options?: {
1681
+ httpHeaderAccept?: undefined;
1682
+ context?: HttpContext;
1683
+ transferCache?: boolean;
1684
+ }): Observable<HttpResponse<any>>;
1685
+ usersRequestConfirmEmail(requestParameters?: UsersRequestConfirmEmailRequestParams, observe?: "events", reportProgress?: boolean, options?: {
1686
+ httpHeaderAccept?: undefined;
1687
+ context?: HttpContext;
1688
+ transferCache?: boolean;
1689
+ }): Observable<HttpEvent<any>>;
1690
+ static ɵfac: i0.ɵɵFactoryDeclaration<UsersApiService, [null, { optional: true; }, { optional: true; }]>;
1691
+ static ɵprov: i0.ɵɵInjectableDeclaration<UsersApiService>;
1692
+ }
1693
+
1694
+ declare const APIS: (typeof AuthApiService | typeof PermissionsApiService | typeof RegionsApiService | typeof RepTerritoriesApiService | typeof RsdRegionsApiService | typeof UsersApiService)[];
1695
+
1696
+ declare const BASE_PATH: InjectionToken<string>;
1697
+ declare const COLLECTION_FORMATS: {
1698
+ csv: string;
1699
+ tsv: string;
1700
+ ssv: string;
1701
+ pipes: string;
1702
+ };
1703
+
1704
+ declare class ApiModule {
1705
+ static forRoot(configurationFactory: () => Configuration): ModuleWithProviders<ApiModule>;
1706
+ constructor(parentModule: ApiModule, http: HttpClient);
1707
+ static ɵfac: i0.ɵɵFactoryDeclaration<ApiModule, [{ optional: true; skipSelf: true; }, { optional: true; }]>;
1708
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ApiModule, never, never, never>;
1709
+ static ɵinj: i0.ɵɵInjectorDeclaration<ApiModule>;
1710
+ }
1711
+
1712
+ declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
1713
+
1714
+ export { APIS, AddressCountry, AddressDtoCountryEnum, ApiModule, AuthApiService, BASE_PATH, COLLECTION_FORMATS, Configuration, PermissionsApiService, RegionLevel, RegionsApiService, RepTerritoriesApiService, RsdRegionsApiService, SearchRegionDtoLevelEnum, UsersApiService, provideApi };
1715
+ export type { AddressDto, AuthApiServiceInterface, AuthAuthenticateRequestParams, AuthRefreshTokenRequestParams, CompanyInformationDto, ConfigurationParameters, ContactDto, CreateRsdRegionDto, DataFormat, DataType, EmailConfirmationTokenDto, Int32IdDto, LoginUserCommand, OffsetLimitListMetadata, PagedListMetadata, Param, ParamLocation, ParamStyle, PermissionDto, PermissionsApiServiceInterface, PhysicalAddressDto, RefreshTokenCommand, RegionsApiServiceInterface, RegionsSearchRegionsRequestParams, RepTerritoriesApiServiceInterface, RepTerritoriesCreateRepTerritoryRequestParams, RepTerritoriesGetRepTerritoryRequestParams, RepTerritoriesRemoveRepTerritoryRequestParams, RepTerritoriesSearchRsdTerritoriesRequestParams, RepTerritoriesUpdateRepTerritoryRequestParams, RepTerritoryContactsDto, RepTerritoryDto, RepTerritoryRepContactDto, RsdRegionDocumentDto, RsdRegionDto, RsdRegionRepTerritoryDto, RsdRegionUserDto, RsdRegionsApiServiceInterface, RsdRegionsCreateRsdRegionRequestParams, RsdRegionsGetRsdRegionRequestParams, RsdRegionsRemoveRsdRegionRequestParams, RsdRegionsSearchRsdRegionsRequestParams, RsdRegionsUpdateRsdRegionRequestParams, SaveRepTerritoryDto, SearchRegionDto, SearchRegionDtoPagedListMetadataDto, SearchRepTerritoryDto, SearchRepTerritoryDtoPagedListMetadataDto, SearchRsdRegionDto, SearchRsdRegionDtoPagedListMetadataDto, StandardDataFormat, StandardDataType, StandardParamStyle, TokenModel, TotalCountListMetadata, UpdateRsdRegionDto, UserEmailDto, UserPreferencesDto, UserProfileDto, UserRegistrationDto, UsersApiServiceInterface, UsersConfirmEmailRequestParams, UsersGetRepContacts0RequestParams, UsersRegisterUserRequestParams, UsersRequestConfirmEmailRequestParams };