repzo 1.0.41 → 1.0.42
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 +7 -6
- package/package.json +1 -1
- package/src/types/index.ts +7 -6
package/lib/types/index.d.ts
CHANGED
|
@@ -1750,11 +1750,11 @@ export declare namespace Service {
|
|
|
1750
1750
|
pointsCap: number;
|
|
1751
1751
|
}
|
|
1752
1752
|
interface RepSettings {
|
|
1753
|
-
allowable_accuracy
|
|
1753
|
+
allowable_accuracy?: number;
|
|
1754
1754
|
is_item_status_per_visit_limited?: boolean;
|
|
1755
1755
|
item_status_per_visit_limit?: number;
|
|
1756
|
-
location_permission
|
|
1757
|
-
activities_report_scope
|
|
1756
|
+
location_permission?: "always_allow" | "while_using";
|
|
1757
|
+
activities_report_scope?: "self" | "team" | "company_namespace";
|
|
1758
1758
|
maximum_cash_outstanding_settlement_balance_to_start_day?: number;
|
|
1759
1759
|
maximum_check_outstanding_settlement_balance_to_start_day?: number;
|
|
1760
1760
|
maximum_total_outstanding_settlement_balance_to_start_day?: number;
|
|
@@ -1890,6 +1890,7 @@ export declare namespace Service {
|
|
|
1890
1890
|
disabled?: boolean;
|
|
1891
1891
|
createdAt?: number;
|
|
1892
1892
|
updatedAt?: number;
|
|
1893
|
+
from_updatedAt?: number;
|
|
1893
1894
|
username?: string | string[];
|
|
1894
1895
|
phone?: string | string[];
|
|
1895
1896
|
teams?: string | string[];
|
|
@@ -1966,11 +1967,11 @@ export declare namespace Service {
|
|
|
1966
1967
|
"permissions.rep_to_create_invoice_variant_batch_from_assigned_warehouse"?: boolean;
|
|
1967
1968
|
"permissions.rep_to_create_sales_order_variant_batch_assigned_main_warehouse"?: boolean;
|
|
1968
1969
|
"permissions.rep_can_create_pull_from_client_assigned_to_approval_request"?: boolean;
|
|
1969
|
-
"settings.allowable_accuracy"
|
|
1970
|
+
"settings.allowable_accuracy"?: number;
|
|
1970
1971
|
"settings.is_item_status_per_visit_limited"?: boolean;
|
|
1971
1972
|
"settings.item_status_per_visit_limit"?: number;
|
|
1972
|
-
"settings.location_permission"
|
|
1973
|
-
"settings.activities_report_scope"
|
|
1973
|
+
"settings.location_permission"?: "always_allow" | "while_using";
|
|
1974
|
+
"settings.activities_report_scope"?:
|
|
1974
1975
|
| "self"
|
|
1975
1976
|
| "team"
|
|
1976
1977
|
| "company_namespace";
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -1787,11 +1787,11 @@ export namespace Service {
|
|
|
1787
1787
|
pointsCap: number;
|
|
1788
1788
|
}
|
|
1789
1789
|
interface RepSettings {
|
|
1790
|
-
allowable_accuracy
|
|
1790
|
+
allowable_accuracy?: number;
|
|
1791
1791
|
is_item_status_per_visit_limited?: boolean;
|
|
1792
1792
|
item_status_per_visit_limit?: number;
|
|
1793
|
-
location_permission
|
|
1794
|
-
activities_report_scope
|
|
1793
|
+
location_permission?: "always_allow" | "while_using";
|
|
1794
|
+
activities_report_scope?: "self" | "team" | "company_namespace";
|
|
1795
1795
|
maximum_cash_outstanding_settlement_balance_to_start_day?: number;
|
|
1796
1796
|
maximum_check_outstanding_settlement_balance_to_start_day?: number;
|
|
1797
1797
|
maximum_total_outstanding_settlement_balance_to_start_day?: number;
|
|
@@ -1922,6 +1922,7 @@ export namespace Service {
|
|
|
1922
1922
|
disabled?: boolean;
|
|
1923
1923
|
createdAt?: number;
|
|
1924
1924
|
updatedAt?: number;
|
|
1925
|
+
from_updatedAt?: number;
|
|
1925
1926
|
username?: string | string[];
|
|
1926
1927
|
phone?: string | string[];
|
|
1927
1928
|
teams?: string | string[];
|
|
@@ -1998,11 +1999,11 @@ export namespace Service {
|
|
|
1998
1999
|
"permissions.rep_to_create_invoice_variant_batch_from_assigned_warehouse"?: boolean;
|
|
1999
2000
|
"permissions.rep_to_create_sales_order_variant_batch_assigned_main_warehouse"?: boolean;
|
|
2000
2001
|
"permissions.rep_can_create_pull_from_client_assigned_to_approval_request"?: boolean;
|
|
2001
|
-
"settings.allowable_accuracy"
|
|
2002
|
+
"settings.allowable_accuracy"?: number;
|
|
2002
2003
|
"settings.is_item_status_per_visit_limited"?: boolean;
|
|
2003
2004
|
"settings.item_status_per_visit_limit"?: number;
|
|
2004
|
-
"settings.location_permission"
|
|
2005
|
-
"settings.activities_report_scope"
|
|
2005
|
+
"settings.location_permission"?: "always_allow" | "while_using";
|
|
2006
|
+
"settings.activities_report_scope"?:
|
|
2006
2007
|
| "self"
|
|
2007
2008
|
| "team"
|
|
2008
2009
|
| "company_namespace";
|