@saritasa/renewaire-frontend-sdk 0.241.0 → 0.242.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/README.md +2 -2
- package/index.d.ts +19 -19
- package/package.json +2 -2
package/README.md
CHANGED
package/index.d.ts
CHANGED
|
@@ -2785,7 +2785,7 @@ interface MaterialQuantityRuleDto {
|
|
|
2785
2785
|
/**
|
|
2786
2786
|
* Rule set DTO. (Inner arrays are connected by AND between rules. Outer array is connected by OR between inner arrays.)
|
|
2787
2787
|
*/
|
|
2788
|
-
rule
|
|
2788
|
+
rule: RuleSetDto;
|
|
2789
2789
|
}
|
|
2790
2790
|
|
|
2791
2791
|
/**
|
|
@@ -2817,7 +2817,7 @@ interface MaterialMultiplierRuleDto {
|
|
|
2817
2817
|
/**
|
|
2818
2818
|
* Rule set DTO. (Inner arrays are connected by AND between rules. Outer array is connected by OR between inner arrays.)
|
|
2819
2819
|
*/
|
|
2820
|
-
rule
|
|
2820
|
+
rule: RuleSetDto;
|
|
2821
2821
|
}
|
|
2822
2822
|
|
|
2823
2823
|
/**
|
|
@@ -4930,7 +4930,7 @@ interface RoutingRuleDto {
|
|
|
4930
4930
|
/**
|
|
4931
4931
|
* Rule set DTO. (Inner arrays are connected by AND between rules. Outer array is connected by OR between inner arrays.)
|
|
4932
4932
|
*/
|
|
4933
|
-
rule
|
|
4933
|
+
rule: RuleSetDto;
|
|
4934
4934
|
}
|
|
4935
4935
|
|
|
4936
4936
|
/**
|
|
@@ -5279,6 +5279,10 @@ interface SaveBombLayerDto {
|
|
|
5279
5279
|
* Effective end date note.
|
|
5280
5280
|
*/
|
|
5281
5281
|
effectiveEndDateNote: string;
|
|
5282
|
+
/**
|
|
5283
|
+
* Rule set DTO. (Inner arrays are connected by AND between rules. Outer array is connected by OR between inner arrays.)
|
|
5284
|
+
*/
|
|
5285
|
+
rule: RuleSetDto;
|
|
5282
5286
|
/**
|
|
5283
5287
|
* Effective start date.
|
|
5284
5288
|
*/
|
|
@@ -5287,10 +5291,6 @@ interface SaveBombLayerDto {
|
|
|
5287
5291
|
* Effective end date.
|
|
5288
5292
|
*/
|
|
5289
5293
|
effectiveEndDate?: string | null;
|
|
5290
|
-
/**
|
|
5291
|
-
* Rule set DTO. (Inner arrays are connected by AND between rules. Outer array is connected by OR between inner arrays.)
|
|
5292
|
-
*/
|
|
5293
|
-
rule?: RuleSetDto | null;
|
|
5294
5294
|
}
|
|
5295
5295
|
|
|
5296
5296
|
/**
|
|
@@ -5614,13 +5614,13 @@ interface SaveMaterialMultiplierRuleDto {
|
|
|
5614
5614
|
*/
|
|
5615
5615
|
multiplier: number;
|
|
5616
5616
|
/**
|
|
5617
|
-
*
|
|
5617
|
+
* Rule set DTO. (Inner arrays are connected by AND between rules. Outer array is connected by OR between inner arrays.)
|
|
5618
5618
|
*/
|
|
5619
|
-
|
|
5619
|
+
rule: RuleSetDto;
|
|
5620
5620
|
/**
|
|
5621
|
-
*
|
|
5621
|
+
* Identifier.
|
|
5622
5622
|
*/
|
|
5623
|
-
|
|
5623
|
+
id?: number | null;
|
|
5624
5624
|
}
|
|
5625
5625
|
|
|
5626
5626
|
/**
|
|
@@ -5646,13 +5646,13 @@ interface SaveMaterialQuantityRuleDto {
|
|
|
5646
5646
|
*/
|
|
5647
5647
|
quantity: number;
|
|
5648
5648
|
/**
|
|
5649
|
-
*
|
|
5649
|
+
* Rule set DTO. (Inner arrays are connected by AND between rules. Outer array is connected by OR between inner arrays.)
|
|
5650
5650
|
*/
|
|
5651
|
-
|
|
5651
|
+
rule: RuleSetDto;
|
|
5652
5652
|
/**
|
|
5653
|
-
*
|
|
5653
|
+
* Identifier.
|
|
5654
5654
|
*/
|
|
5655
|
-
|
|
5655
|
+
id?: number | null;
|
|
5656
5656
|
}
|
|
5657
5657
|
|
|
5658
5658
|
/**
|
|
@@ -5961,13 +5961,13 @@ interface SaveRoutingRuleDto {
|
|
|
5961
5961
|
*/
|
|
5962
5962
|
routing: number;
|
|
5963
5963
|
/**
|
|
5964
|
-
*
|
|
5964
|
+
* Rule set DTO. (Inner arrays are connected by AND between rules. Outer array is connected by OR between inner arrays.)
|
|
5965
5965
|
*/
|
|
5966
|
-
|
|
5966
|
+
rule: RuleSetDto;
|
|
5967
5967
|
/**
|
|
5968
|
-
*
|
|
5968
|
+
* Identifier.
|
|
5969
5969
|
*/
|
|
5970
|
-
|
|
5970
|
+
id?: number | null;
|
|
5971
5971
|
}
|
|
5972
5972
|
|
|
5973
5973
|
/**
|
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.242.0",
|
|
4
|
+
"description": "OpenAPI client for @saritasa/renewaire-frontend-sdk(for version 0.242.0+733ffbded0bf911ef4d4eb26117d25a670aacade)",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|