repzo 1.0.208 → 1.0.209
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 +13 -0
- package/package.json +1 -1
- package/src/types/index.ts +23 -0
package/lib/types/index.d.ts
CHANGED
|
@@ -17352,6 +17352,19 @@ interface UserPermissions {
|
|
|
17352
17352
|
admin_can_bypass_financial_limits_sales_order: boolean;
|
|
17353
17353
|
admin_can_bypass_financial_limits_create_invoice: boolean;
|
|
17354
17354
|
}
|
|
17355
|
+
export interface ReportKey {
|
|
17356
|
+
cond?: boolean;
|
|
17357
|
+
key: string;
|
|
17358
|
+
value: string;
|
|
17359
|
+
type: "string" | "number" | "collection" | "boolean" | "photo" | "media" | "geoPoint" | "image" | string;
|
|
17360
|
+
isArray?: boolean;
|
|
17361
|
+
visible?: boolean;
|
|
17362
|
+
deepLinkModel?: Model;
|
|
17363
|
+
deepLinkKey?: string;
|
|
17364
|
+
value_key?: string;
|
|
17365
|
+
totals_key?: string;
|
|
17366
|
+
[key: string]: any;
|
|
17367
|
+
}
|
|
17355
17368
|
type RepzoModel = "socialPlatform" | "activityAiSalesOrder" | "reportUblInvoice" | "ublIntegrationSettings" | "ublIntegration" | "ublConnectionAttempts" | "quickConvertToPdf" | "warehouses" | "transfers" | "transactions" | "taxes" | "productvariations" | "products" | "pricelistsitems" | "pricelists" | "payments" | "ledger_payments" | "mslsales" | "mslproducts" | "measureunits" | "measureunitfamilies" | "invoice" | "ledger_goods" | "fullinvoices" | "checks" | "clients" | "activities" | "bigReports" | "admins"
|
|
17356
17369
|
/**
|
|
17357
17370
|
* @deprecated representatives shall be used
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -19663,6 +19663,29 @@ interface UserPermissions {
|
|
|
19663
19663
|
admin_can_bypass_financial_limits_create_invoice: boolean;
|
|
19664
19664
|
}
|
|
19665
19665
|
|
|
19666
|
+
export interface ReportKey {
|
|
19667
|
+
cond?: boolean;
|
|
19668
|
+
key: string;
|
|
19669
|
+
value: string;
|
|
19670
|
+
type:
|
|
19671
|
+
| "string"
|
|
19672
|
+
| "number"
|
|
19673
|
+
| "collection"
|
|
19674
|
+
| "boolean"
|
|
19675
|
+
| "photo"
|
|
19676
|
+
| "media"
|
|
19677
|
+
| "geoPoint"
|
|
19678
|
+
| "image"
|
|
19679
|
+
| string;
|
|
19680
|
+
isArray?: boolean;
|
|
19681
|
+
visible?: boolean;
|
|
19682
|
+
deepLinkModel?: Model;
|
|
19683
|
+
deepLinkKey?: string;
|
|
19684
|
+
value_key?: string;
|
|
19685
|
+
totals_key?: string;
|
|
19686
|
+
[key: string]: any;
|
|
19687
|
+
}
|
|
19688
|
+
|
|
19666
19689
|
type RepzoModel =
|
|
19667
19690
|
| "socialPlatform"
|
|
19668
19691
|
| "activityAiSalesOrder"
|