@erp-galoper/types 1.0.1143 → 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 +42 -0
- 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: {
|
|
@@ -25197,6 +25233,12 @@ export interface components {
|
|
|
25197
25233
|
report: boolean;
|
|
25198
25234
|
/** Commission */
|
|
25199
25235
|
commission: boolean;
|
|
25236
|
+
/** Shopify */
|
|
25237
|
+
shopify: boolean;
|
|
25238
|
+
/** Woocommerce */
|
|
25239
|
+
wooCommerce: boolean;
|
|
25240
|
+
/** Email */
|
|
25241
|
+
email: boolean;
|
|
25200
25242
|
/** Loadchartofaccount */
|
|
25201
25243
|
loadChartOfAccount?: string | null;
|
|
25202
25244
|
};
|