@erp-galoper/types 1.0.1142 → 1.0.1144
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/openapi.ts +43 -2
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -19717,6 +19717,24 @@ export interface components {
|
|
|
19717
19717
|
* @default []
|
|
19718
19718
|
*/
|
|
19719
19719
|
approval: Record<string, never>;
|
|
19720
|
+
/**
|
|
19721
|
+
* Shopify
|
|
19722
|
+
* @description shopify actions
|
|
19723
|
+
* @default []
|
|
19724
|
+
*/
|
|
19725
|
+
shopify: Record<string, never>;
|
|
19726
|
+
/**
|
|
19727
|
+
* Woocommerce
|
|
19728
|
+
* @description wooCommerce actions
|
|
19729
|
+
* @default []
|
|
19730
|
+
*/
|
|
19731
|
+
wooCommerce: Record<string, never>;
|
|
19732
|
+
/**
|
|
19733
|
+
* Email
|
|
19734
|
+
* @description email actions
|
|
19735
|
+
* @default []
|
|
19736
|
+
*/
|
|
19737
|
+
email: Record<string, never>;
|
|
19720
19738
|
};
|
|
19721
19739
|
/** BasePermissionsSchema_Accounting */
|
|
19722
19740
|
BasePermissionsSchema_Accounting: {
|
|
@@ -20732,6 +20750,24 @@ export interface components {
|
|
|
20732
20750
|
* @default []
|
|
20733
20751
|
*/
|
|
20734
20752
|
task: Record<string, never>;
|
|
20753
|
+
/**
|
|
20754
|
+
* Shopify
|
|
20755
|
+
* @description shopify actions
|
|
20756
|
+
* @default []
|
|
20757
|
+
*/
|
|
20758
|
+
shopify: Record<string, never>;
|
|
20759
|
+
/**
|
|
20760
|
+
* Woocommerce
|
|
20761
|
+
* @description wooCommerce actions
|
|
20762
|
+
* @default []
|
|
20763
|
+
*/
|
|
20764
|
+
wooCommerce: Record<string, never>;
|
|
20765
|
+
/**
|
|
20766
|
+
* Email
|
|
20767
|
+
* @description email actions
|
|
20768
|
+
* @default []
|
|
20769
|
+
*/
|
|
20770
|
+
email: Record<string, never>;
|
|
20735
20771
|
};
|
|
20736
20772
|
/** BasePermissionsSchema_Settings_Accounting */
|
|
20737
20773
|
BasePermissionsSchema_Settings_Accounting: {
|
|
@@ -24994,8 +25030,7 @@ export interface components {
|
|
|
24994
25030
|
/** Historyid */
|
|
24995
25031
|
historyId: string;
|
|
24996
25032
|
logType: components["schemas"]["LogType"];
|
|
24997
|
-
|
|
24998
|
-
user?: number | null;
|
|
25033
|
+
user?: components["schemas"]["UserSharedSchema"] | null;
|
|
24999
25034
|
/**
|
|
25000
25035
|
* Date
|
|
25001
25036
|
* Format: date-time
|
|
@@ -25198,6 +25233,12 @@ export interface components {
|
|
|
25198
25233
|
report: boolean;
|
|
25199
25234
|
/** Commission */
|
|
25200
25235
|
commission: boolean;
|
|
25236
|
+
/** Shopify */
|
|
25237
|
+
shopify: boolean;
|
|
25238
|
+
/** Woocommerce */
|
|
25239
|
+
wooCommerce: boolean;
|
|
25240
|
+
/** Email */
|
|
25241
|
+
email: boolean;
|
|
25201
25242
|
/** Loadchartofaccount */
|
|
25202
25243
|
loadChartOfAccount?: string | null;
|
|
25203
25244
|
};
|