repzo 1.0.245 → 1.0.246
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/lib/types/index.d.ts +1 -0
- package/package.json +1 -1
- package/src/types/index.ts +1 -0
package/lib/types/index.d.ts
CHANGED
|
@@ -4047,6 +4047,7 @@ export declare namespace Service {
|
|
|
4047
4047
|
to_to?: number;
|
|
4048
4048
|
promotions_groups?: StringId | StringId[];
|
|
4049
4049
|
status?: Data["status"] | Data["status"][];
|
|
4050
|
+
expired?: boolean;
|
|
4050
4051
|
};
|
|
4051
4052
|
interface Result extends DefaultPaginationResult {
|
|
4052
4053
|
data: Data[];
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -4629,6 +4629,7 @@ export namespace Service {
|
|
|
4629
4629
|
to_to?: number;
|
|
4630
4630
|
promotions_groups?: StringId | StringId[];
|
|
4631
4631
|
status?: Data["status"] | Data["status"][];
|
|
4632
|
+
expired?: boolean;
|
|
4632
4633
|
};
|
|
4633
4634
|
export interface Result extends DefaultPaginationResult {
|
|
4634
4635
|
data: Data[];
|