@saritasa/renewaire-frontend-sdk 0.228.0 → 0.230.0
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
CHANGED
|
@@ -31,7 +31,7 @@ interface PagedListMetadata {
|
|
|
31
31
|
* Do not edit the class manually.
|
|
32
32
|
*/
|
|
33
33
|
/**
|
|
34
|
-
* Type of entity that has an ability to track its audit change log. (When adding new options in this enum, need to add a new database migration.)<br />AuditEntity<br />0 = User<br />1 = PermissionBundle<br />2 = RsdRegion<br />3 = RepTerritory<br />4 = UserGroup<br />5 = KnownContact<br />6 = ControllerProgram<br />7 = RepTerritoryRepContact<br />8 = RepTerritoryLocation<br />9 = ProjectRevision<br />10 = Project<br />11 =
|
|
34
|
+
* Type of entity that has an ability to track its audit change log. (When adding new options in this enum, need to add a new database migration.)<br />AuditEntity<br />0 = User<br />1 = PermissionBundle<br />2 = RsdRegion<br />3 = RepTerritory<br />4 = UserGroup<br />5 = KnownContact<br />6 = ControllerProgram<br />7 = RepTerritoryRepContact<br />8 = RepTerritoryLocation<br />9 = ProjectRevision<br />10 = Project<br />11 = ProjectLine<br />12 = MaterialLayer<br />13 = SchematicLayer<br />14 = RoutingLayer<br />15 = ValidationLayer
|
|
35
35
|
*/
|
|
36
36
|
declare enum AuditEntity {
|
|
37
37
|
User = "User",
|
|
@@ -45,6 +45,7 @@ declare enum AuditEntity {
|
|
|
45
45
|
RepTerritoryLocation = "RepTerritoryLocation",
|
|
46
46
|
ProjectRevision = "ProjectRevision",
|
|
47
47
|
Project = "Project",
|
|
48
|
+
ProjectLine = "ProjectLine",
|
|
48
49
|
MaterialLayer = "MaterialLayer",
|
|
49
50
|
SchematicLayer = "SchematicLayer",
|
|
50
51
|
RoutingLayer = "RoutingLayer",
|
|
@@ -124,7 +125,7 @@ interface AuditLogDto {
|
|
|
124
125
|
*/
|
|
125
126
|
timestamp: string;
|
|
126
127
|
/**
|
|
127
|
-
* Type of entity that has an ability to track its audit change log. (When adding new options in this enum, need to add a new database migration.)<br />AuditEntity<br />0 = User<br />1 = PermissionBundle<br />2 = RsdRegion<br />3 = RepTerritory<br />4 = UserGroup<br />5 = KnownContact<br />6 = ControllerProgram<br />7 = RepTerritoryRepContact<br />8 = RepTerritoryLocation<br />9 = ProjectRevision<br />10 = Project<br />11 =
|
|
128
|
+
* Type of entity that has an ability to track its audit change log. (When adding new options in this enum, need to add a new database migration.)<br />AuditEntity<br />0 = User<br />1 = PermissionBundle<br />2 = RsdRegion<br />3 = RepTerritory<br />4 = UserGroup<br />5 = KnownContact<br />6 = ControllerProgram<br />7 = RepTerritoryRepContact<br />8 = RepTerritoryLocation<br />9 = ProjectRevision<br />10 = Project<br />11 = ProjectLine<br />12 = MaterialLayer<br />13 = SchematicLayer<br />14 = RoutingLayer<br />15 = ValidationLayer
|
|
128
129
|
*/
|
|
129
130
|
entity: AuditEntity;
|
|
130
131
|
/**
|
|
@@ -4579,6 +4580,7 @@ interface ResetPasswordCommand {
|
|
|
4579
4580
|
* https://openapi-generator.tech
|
|
4580
4581
|
* Do not edit the class manually.
|
|
4581
4582
|
*/
|
|
4583
|
+
|
|
4582
4584
|
/**
|
|
4583
4585
|
* Routing rule DTO.
|
|
4584
4586
|
*/
|
|
@@ -4595,6 +4597,10 @@ interface RoutingRuleDto {
|
|
|
4595
4597
|
* Routing value.
|
|
4596
4598
|
*/
|
|
4597
4599
|
routing: number;
|
|
4600
|
+
/**
|
|
4601
|
+
* Rule set DTO. (Inner arrays are connected by AND between rules. Outer array is connected by OR between inner arrays.)
|
|
4602
|
+
*/
|
|
4603
|
+
rule?: RuleSetDto | null;
|
|
4598
4604
|
}
|
|
4599
4605
|
|
|
4600
4606
|
/**
|
|
@@ -4651,6 +4657,10 @@ interface RoutingLayerDto {
|
|
|
4651
4657
|
* Effective end date.
|
|
4652
4658
|
*/
|
|
4653
4659
|
effectiveEndDate?: string | null;
|
|
4660
|
+
/**
|
|
4661
|
+
* Rule set DTO. (Inner arrays are connected by AND between rules. Outer array is connected by OR between inner arrays.)
|
|
4662
|
+
*/
|
|
4663
|
+
rule?: RuleSetDto | null;
|
|
4654
4664
|
}
|
|
4655
4665
|
|
|
4656
4666
|
/**
|
|
@@ -5619,6 +5629,7 @@ interface SaveRepTerritoryRepContactDto {
|
|
|
5619
5629
|
* https://openapi-generator.tech
|
|
5620
5630
|
* Do not edit the class manually.
|
|
5621
5631
|
*/
|
|
5632
|
+
|
|
5622
5633
|
/**
|
|
5623
5634
|
* DTO to save routing rule.
|
|
5624
5635
|
*/
|
|
@@ -5635,6 +5646,10 @@ interface SaveRoutingRuleDto {
|
|
|
5635
5646
|
* Identifier.
|
|
5636
5647
|
*/
|
|
5637
5648
|
id?: number | null;
|
|
5649
|
+
/**
|
|
5650
|
+
* Rule set DTO. (Inner arrays are connected by AND between rules. Outer array is connected by OR between inner arrays.)
|
|
5651
|
+
*/
|
|
5652
|
+
rule?: RuleSetDto | null;
|
|
5638
5653
|
}
|
|
5639
5654
|
|
|
5640
5655
|
/**
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@saritasa/renewaire-frontend-sdk",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "OpenAPI client for @saritasa/renewaire-frontend-sdk(for version 0.
|
|
3
|
+
"version": "0.230.0",
|
|
4
|
+
"description": "OpenAPI client for @saritasa/renewaire-frontend-sdk(for version 0.230.0+1af7be8a8de70abce588de23f7f23076e272aae0)",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|