@erp-galoper/types 1.0.1198 → 1.0.1200

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.
Files changed (2) hide show
  1. package/openapi.ts +43 -45
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -2326,7 +2326,11 @@ export interface paths {
2326
2326
  * Possible Responses:
2327
2327
  * - 200: LogsResponseSchema
2328
2328
  * - 400: paginationError
2329
+ * - 403: permissionDenied
2329
2330
  * - 500: internalServerError
2331
+ *
2332
+ * Permission Key:
2333
+ * logs : ["view"]'
2330
2334
  */
2331
2335
  get: operations["common_views_get_logs"];
2332
2336
  put?: never;
@@ -19968,7 +19972,7 @@ export interface paths {
19968
19972
  * - 403: permissionDenied
19969
19973
  * - 500: unexpectedError
19970
19974
  *
19971
- * permission key: syncstore: ["view"]
19975
+ * permission key: onlinestore: ["view"]
19972
19976
  */
19973
19977
  get: operations["integration_sync_views_get_sync_store"];
19974
19978
  /**
@@ -19981,7 +19985,7 @@ export interface paths {
19981
19985
  * - 403: permissionDenied
19982
19986
  * - 500: unexpectedError
19983
19987
  *
19984
- * permission key: syncstore: ["change"]
19988
+ * permission key: onlinestore: ["change"]
19985
19989
  */
19986
19990
  put: operations["integration_sync_views_update_sync_store"];
19987
19991
  /**
@@ -19993,7 +19997,7 @@ export interface paths {
19993
19997
  * - 403: permissionDenied
19994
19998
  * - 500: unexpectedError
19995
19999
  *
19996
- * permission key: syncstore: ["add"]
20000
+ * permission key: onlinestore: ["add"]
19997
20001
  */
19998
20002
  post: operations["integration_sync_views_create_sync_store"];
19999
20003
  delete?: never;
@@ -20020,7 +20024,7 @@ export interface paths {
20020
20024
  * - 403: permissionDenied
20021
20025
  * - 500: unexpectedError
20022
20026
  *
20023
- * permission key: sync: ["view"]
20027
+ * permission key: onlinestore: ["view"]
20024
20028
  */
20025
20029
  post: operations["integration_sync_views_test_sync_store_connection"];
20026
20030
  delete?: never;
@@ -20089,7 +20093,7 @@ export interface paths {
20089
20093
  * - 409: syncAlreadyRunning
20090
20094
  * - 500: unexpectedError
20091
20095
  *
20092
- * permission key: sync: ["add"]
20096
+ * permission key: onlinestore: ["add"]
20093
20097
  */
20094
20098
  post: operations["integration_sync_views_sync_orders_endpoint"];
20095
20099
  delete?: never;
@@ -20117,7 +20121,7 @@ export interface paths {
20117
20121
  * - 409: syncAlreadyRunning
20118
20122
  * - 500: unexpectedError
20119
20123
  *
20120
- * permission key: sync: ["add"]
20124
+ * permission key: onlinestore: ["add"]
20121
20125
  */
20122
20126
  post: operations["integration_sync_views_sync_customers_endpoint"];
20123
20127
  delete?: never;
@@ -20142,7 +20146,7 @@ export interface paths {
20142
20146
  * - 404: storeNotFound
20143
20147
  * - 500: unexpectedError
20144
20148
  *
20145
- * permission key: sync: ["view"]
20149
+ * permission key: onlinestore: ["view"]
20146
20150
  */
20147
20151
  get: operations["integration_sync_views_list_orders"];
20148
20152
  put?: never;
@@ -20169,7 +20173,7 @@ export interface paths {
20169
20173
  * - 404: orderNotFound
20170
20174
  * - 500: unexpectedError
20171
20175
  *
20172
- * permission key: sync: ["view"]
20176
+ * permission key: onlinestore: ["view"]
20173
20177
  */
20174
20178
  get: operations["integration_sync_views_get_order"];
20175
20179
  put?: never;
@@ -20492,11 +20496,6 @@ export interface components {
20492
20496
  * @default []
20493
20497
  */
20494
20498
  project: components["schemas"]["BasePermissionsSchema_Project"];
20495
- /**
20496
- * @description online_store actions
20497
- * @default []
20498
- */
20499
- online_store: components["schemas"]["BasePermissionsSchema_Online_store"];
20500
20499
  /**
20501
20500
  * @description task actions
20502
20501
  * @default []
@@ -20525,12 +20524,6 @@ export interface components {
20525
20524
  * @default []
20526
20525
  */
20527
20526
  approval: Record<string, never>;
20528
- /**
20529
- * Email
20530
- * @description email actions
20531
- * @default []
20532
- */
20533
- email: Record<string, never>;
20534
20527
  };
20535
20528
  /** BasePermissionsSchema_Accounting */
20536
20529
  BasePermissionsSchema_Accounting: {
@@ -20836,20 +20829,6 @@ export interface components {
20836
20829
  * @enum {string}
20837
20830
  */
20838
20831
  BasePermissionsSchema_Inventory_WarehouseEnum: "add" | "change" | "delete" | "view";
20839
- /** BasePermissionsSchema_Online_store */
20840
- BasePermissionsSchema_Online_store: {
20841
- /**
20842
- * Syncstore
20843
- * @description syncstore actions
20844
- * @default []
20845
- */
20846
- syncstore: components["schemas"]["BasePermissionsSchema_Online_store_SyncstoreEnum"][];
20847
- };
20848
- /**
20849
- * BasePermissionsSchema_Online_store_SyncstoreEnum
20850
- * @enum {string}
20851
- */
20852
- BasePermissionsSchema_Online_store_SyncstoreEnum: "add" | "change" | "delete" | "view";
20853
20832
  /** BasePermissionsSchema_Pos */
20854
20833
  BasePermissionsSchema_Pos: {
20855
20834
  /**
@@ -21582,18 +21561,6 @@ export interface components {
21582
21561
  * @default []
21583
21562
  */
21584
21563
  task: Record<string, never>;
21585
- /**
21586
- * Email
21587
- * @description email actions
21588
- * @default []
21589
- */
21590
- email: Record<string, never>;
21591
- /**
21592
- * Online Store
21593
- * @description online_store actions
21594
- * @default []
21595
- */
21596
- online_store: Record<string, never>;
21597
21564
  };
21598
21565
  /** BasePermissionsSchema_Settings_Accounting */
21599
21566
  BasePermissionsSchema_Settings_Accounting: {
@@ -21762,12 +21729,23 @@ export interface components {
21762
21729
  * @default []
21763
21730
  */
21764
21731
  systemsettings: components["schemas"]["BasePermissionsSchema_Settings_General_SystemsettingsEnum"][];
21732
+ /**
21733
+ * Logs
21734
+ * @description logs actions
21735
+ * @default []
21736
+ */
21737
+ logs: components["schemas"]["BasePermissionsSchema_Settings_General_LogsEnum"][];
21765
21738
  };
21766
21739
  /**
21767
21740
  * BasePermissionsSchema_Settings_General_CompanysettingEnum
21768
21741
  * @enum {string}
21769
21742
  */
21770
21743
  BasePermissionsSchema_Settings_General_CompanysettingEnum: "add" | "change" | "view";
21744
+ /**
21745
+ * BasePermissionsSchema_Settings_General_LogsEnum
21746
+ * @constant
21747
+ */
21748
+ BasePermissionsSchema_Settings_General_LogsEnum: "view";
21771
21749
  /**
21772
21750
  * BasePermissionsSchema_Settings_General_RoleEnum
21773
21751
  * @enum {string}
@@ -21817,6 +21795,12 @@ export interface components {
21817
21795
  * @default []
21818
21796
  */
21819
21797
  onlinestoresetting: components["schemas"]["BasePermissionsSchema_Settings_Integrations_OnlinestoresettingEnum"][];
21798
+ /**
21799
+ * Onlinestore
21800
+ * @description onlinestore actions
21801
+ * @default []
21802
+ */
21803
+ onlinestore: components["schemas"]["BasePermissionsSchema_Settings_Integrations_OnlinestoreEnum"][];
21820
21804
  };
21821
21805
  /**
21822
21806
  * BasePermissionsSchema_Settings_Integrations_EmailsettingEnum
@@ -21828,6 +21812,11 @@ export interface components {
21828
21812
  * @enum {string}
21829
21813
  */
21830
21814
  BasePermissionsSchema_Settings_Integrations_OnlinestoragesettingsEnum: "add" | "change" | "view";
21815
+ /**
21816
+ * BasePermissionsSchema_Settings_Integrations_OnlinestoreEnum
21817
+ * @enum {string}
21818
+ */
21819
+ BasePermissionsSchema_Settings_Integrations_OnlinestoreEnum: "add" | "change" | "delete" | "view";
21831
21820
  /**
21832
21821
  * BasePermissionsSchema_Settings_Integrations_OnlinestoresettingEnum
21833
21822
  * @enum {string}
@@ -56006,6 +55995,15 @@ export interface operations {
56006
55995
  "application/json": components["schemas"]["ErrorMessages"];
56007
55996
  };
56008
55997
  };
55998
+ /** @description Forbidden */
55999
+ 403: {
56000
+ headers: {
56001
+ [name: string]: unknown;
56002
+ };
56003
+ content: {
56004
+ "application/json": components["schemas"]["MessageResponse"];
56005
+ };
56006
+ };
56009
56007
  /** @description Internal Server Error */
56010
56008
  500: {
56011
56009
  headers: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1198",
3
+ "version": "1.0.1200",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],