@erp-galoper/types 1.0.1236 → 1.0.1237
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 +429 -2
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -8792,6 +8792,116 @@ export interface paths {
|
|
|
8792
8792
|
patch: operations["erp_settings_accountingsetting_views_update_account_classification"];
|
|
8793
8793
|
trace?: never;
|
|
8794
8794
|
};
|
|
8795
|
+
"/api/v1/settings/accounting/dimensions/": {
|
|
8796
|
+
parameters: {
|
|
8797
|
+
query?: never;
|
|
8798
|
+
header?: never;
|
|
8799
|
+
path?: never;
|
|
8800
|
+
cookie?: never;
|
|
8801
|
+
};
|
|
8802
|
+
/**
|
|
8803
|
+
* List Dimensions
|
|
8804
|
+
* @description Endpoint for List dimensions
|
|
8805
|
+
* - 200:
|
|
8806
|
+
* - success
|
|
8807
|
+
* - 400:
|
|
8808
|
+
* - invalidFilterFormat
|
|
8809
|
+
* - paginationError
|
|
8810
|
+
* - 403:
|
|
8811
|
+
* - permissionDenied
|
|
8812
|
+
* -500:
|
|
8813
|
+
* - internalServerError
|
|
8814
|
+
* - Permission Key
|
|
8815
|
+
* - dimension : [ view ]
|
|
8816
|
+
*/
|
|
8817
|
+
get: operations["erp_settings_accountingsetting_views_list_dimensions"];
|
|
8818
|
+
put?: never;
|
|
8819
|
+
/**
|
|
8820
|
+
* Create Dimension
|
|
8821
|
+
* @description Endpoint for create dimension
|
|
8822
|
+
* Possible Responses:
|
|
8823
|
+
* - 201:
|
|
8824
|
+
* - dimensionCreated
|
|
8825
|
+
* - 400:
|
|
8826
|
+
* - nameConflict
|
|
8827
|
+
* - 403:
|
|
8828
|
+
* - permissionDenied
|
|
8829
|
+
* - 500:
|
|
8830
|
+
* - InternalServerError
|
|
8831
|
+
* - Permission Key
|
|
8832
|
+
* - dimension : [ add ]
|
|
8833
|
+
*/
|
|
8834
|
+
post: operations["erp_settings_accountingsetting_views_create_dimension"];
|
|
8835
|
+
delete?: never;
|
|
8836
|
+
options?: never;
|
|
8837
|
+
head?: never;
|
|
8838
|
+
patch?: never;
|
|
8839
|
+
trace?: never;
|
|
8840
|
+
};
|
|
8841
|
+
"/api/v1/settings/accounting/dimensions/{id}/": {
|
|
8842
|
+
parameters: {
|
|
8843
|
+
query?: never;
|
|
8844
|
+
header?: never;
|
|
8845
|
+
path?: never;
|
|
8846
|
+
cookie?: never;
|
|
8847
|
+
};
|
|
8848
|
+
/**
|
|
8849
|
+
* Get Dimension
|
|
8850
|
+
* @description Endpoint for retrieve dimension
|
|
8851
|
+
* Possible Responses:
|
|
8852
|
+
* - 200:
|
|
8853
|
+
* - DimensionDetailSchema
|
|
8854
|
+
* - 404:
|
|
8855
|
+
* - dimensionDoesNotExist
|
|
8856
|
+
* - 403:
|
|
8857
|
+
* - permissionDenied
|
|
8858
|
+
* - 500:
|
|
8859
|
+
* - InternalServerError
|
|
8860
|
+
* - Permission Key
|
|
8861
|
+
* - dimension : [ view ]
|
|
8862
|
+
*/
|
|
8863
|
+
get: operations["erp_settings_accountingsetting_views_get_dimension"];
|
|
8864
|
+
/**
|
|
8865
|
+
* Update Dimension
|
|
8866
|
+
* @description Endpoint for update dimension
|
|
8867
|
+
* Possible Responses:
|
|
8868
|
+
* - 200:
|
|
8869
|
+
* - dimensionUpdated
|
|
8870
|
+
* - 400:
|
|
8871
|
+
* - nameConflict
|
|
8872
|
+
* - 404:
|
|
8873
|
+
* - dimensionDoesNotExist
|
|
8874
|
+
* - 403:
|
|
8875
|
+
* - permissionDenied
|
|
8876
|
+
* - 500:
|
|
8877
|
+
* - InternalServerError
|
|
8878
|
+
* - Permission Key
|
|
8879
|
+
* - dimension : [ change ]
|
|
8880
|
+
*/
|
|
8881
|
+
put: operations["erp_settings_accountingsetting_views_update_dimension"];
|
|
8882
|
+
post?: never;
|
|
8883
|
+
/**
|
|
8884
|
+
* Delete Dimension
|
|
8885
|
+
* @description Endpoint for delete dimension
|
|
8886
|
+
* - 204:
|
|
8887
|
+
* - None
|
|
8888
|
+
* - 404:
|
|
8889
|
+
* - dimensionDoesNotExist
|
|
8890
|
+
* - 403:
|
|
8891
|
+
* - permissionDenied
|
|
8892
|
+
* - 400:
|
|
8893
|
+
* - cantBeDeleted
|
|
8894
|
+
* - 500:
|
|
8895
|
+
* - internalServerError
|
|
8896
|
+
* - Permission Key
|
|
8897
|
+
* - dimension : [ delete ]
|
|
8898
|
+
*/
|
|
8899
|
+
delete: operations["erp_settings_accountingsetting_views_delete_dimension"];
|
|
8900
|
+
options?: never;
|
|
8901
|
+
head?: never;
|
|
8902
|
+
patch?: never;
|
|
8903
|
+
trace?: never;
|
|
8904
|
+
};
|
|
8795
8905
|
"/api/v1/settings/pos/": {
|
|
8796
8906
|
parameters: {
|
|
8797
8907
|
query?: never;
|
|
@@ -26904,7 +27014,7 @@ export interface components {
|
|
|
26904
27014
|
* CombinedModelName
|
|
26905
27015
|
* @enum {string}
|
|
26906
27016
|
*/
|
|
26907
|
-
CombinedModelName: "item" | "customer" | "supplier" | "internalTransfer" | "stockAdjustment" | "openingQuantity" | "supplierPriceList" | "chartOfAccount" | "journalVoucher" | "requisition" | "requestForQuotation" | "advancePayment" | "paymentVoucher" | "purchaseInvoice" | "purchaseOrder" | "purchaseQuotation" | "purchaseReturnOrder" | "purchaseReturnInvoice" | "refundVoucher" | "purchaseCreditNote" | "project" | "warehouse" | "employeePosition" | "employee" | "accountingSetting" | "defaultGeneralAccounts" | "transactionalSubsidiaryAccounts" | "accountClassification" | "taxes" | "appointmentSettings" | "approvalSettings" | "approvalConfig" | "approvalCondition" | "approvalLevel" | "inventorySettings" | "itemVariantSettings" | "posSettings" | "purchaseSettings" | "salesSetting" | "city" | "zone" | "shippingMethod" | "systemSettings" | "transactionLocking" | "userSetting" | "department" | "company" | "branch" | "region" | "currency" | "facility" | "reason" | "emailSetting" | "bank" | "users" | "roles" | "appointment" | "offerAndPromotion" | "salesQuotation" | "salesOrder" | "downPayment" | "receiptVoucher" | "salesCreditNote" | "salesInvoice" | "salesReturnOrder" | "salesReturnInvoice" | "salesRefundVoucher" | "salesPriceList" | "goodsDeliveryNote" | "returnablePackageReconciliation" | "salesReturnPackage" | "package" | "packageType" | "itemPackage" | "goodsReceiptNote" | "salesPerson" | "commissionStructure" | "commissionPayout" | "closingCommission" | "task" | "event" | "onlineStoreSetting" | "onlineStorageSettings" | "branchSettings" | "accountStatement" | "generalLedgerReport" | "trialBalance" | "statementOfAccount" | "profitAndLoss" | "bankStatement" | "balanceSheet" | "projectStatement" | "supplierStatement" | "customerStatement" | "stockReport";
|
|
27017
|
+
CombinedModelName: "item" | "customer" | "supplier" | "internalTransfer" | "stockAdjustment" | "openingQuantity" | "supplierPriceList" | "chartOfAccount" | "journalVoucher" | "requisition" | "requestForQuotation" | "advancePayment" | "paymentVoucher" | "purchaseInvoice" | "purchaseOrder" | "purchaseQuotation" | "purchaseReturnOrder" | "purchaseReturnInvoice" | "refundVoucher" | "purchaseCreditNote" | "project" | "warehouse" | "employeePosition" | "employee" | "accountingSetting" | "defaultGeneralAccounts" | "transactionalSubsidiaryAccounts" | "accountClassification" | "taxes" | "appointmentSettings" | "approvalSettings" | "approvalConfig" | "approvalCondition" | "approvalLevel" | "inventorySettings" | "itemVariantSettings" | "posSettings" | "purchaseSettings" | "salesSetting" | "city" | "zone" | "shippingMethod" | "systemSettings" | "transactionLocking" | "userSetting" | "department" | "company" | "branch" | "region" | "currency" | "facility" | "reason" | "emailSetting" | "bank" | "users" | "roles" | "appointment" | "offerAndPromotion" | "salesQuotation" | "salesOrder" | "downPayment" | "receiptVoucher" | "salesCreditNote" | "salesInvoice" | "salesReturnOrder" | "salesReturnInvoice" | "salesRefundVoucher" | "salesPriceList" | "goodsDeliveryNote" | "returnablePackageReconciliation" | "salesReturnPackage" | "package" | "packageType" | "itemPackage" | "goodsReceiptNote" | "salesPerson" | "commissionStructure" | "commissionPayout" | "closingCommission" | "task" | "event" | "onlineStoreSetting" | "onlineStorageSettings" | "branchSettings" | "dimension" | "accountStatement" | "generalLedgerReport" | "trialBalance" | "statementOfAccount" | "profitAndLoss" | "bankStatement" | "balanceSheet" | "projectStatement" | "supplierStatement" | "customerStatement" | "stockReport";
|
|
26908
27018
|
/** CustomFieldsList */
|
|
26909
27019
|
CustomFieldsList: {
|
|
26910
27020
|
info: components["schemas"]["PageInfoSchema"];
|
|
@@ -35255,6 +35365,46 @@ export interface components {
|
|
|
35255
35365
|
*/
|
|
35256
35366
|
expenseAccountNonResident: number | null;
|
|
35257
35367
|
};
|
|
35368
|
+
/** DimensionDetailSchema */
|
|
35369
|
+
DimensionDetailSchema: {
|
|
35370
|
+
/**
|
|
35371
|
+
* Datecreated
|
|
35372
|
+
* Format: date-time
|
|
35373
|
+
*/
|
|
35374
|
+
dateCreated: string;
|
|
35375
|
+
/** Datemodified */
|
|
35376
|
+
dateModified: string | null;
|
|
35377
|
+
createdBy: components["schemas"]["RecordUserSchema"];
|
|
35378
|
+
modifiedBy: components["schemas"]["RecordUserSchema"] | null;
|
|
35379
|
+
/**
|
|
35380
|
+
* Id
|
|
35381
|
+
* Format: uuid
|
|
35382
|
+
*/
|
|
35383
|
+
id: string;
|
|
35384
|
+
/** Name */
|
|
35385
|
+
name: string;
|
|
35386
|
+
/** Candelete */
|
|
35387
|
+
canDelete: boolean;
|
|
35388
|
+
};
|
|
35389
|
+
/** DimensionResponseSchema */
|
|
35390
|
+
DimensionResponseSchema: {
|
|
35391
|
+
/** Code */
|
|
35392
|
+
code: string;
|
|
35393
|
+
/** Message */
|
|
35394
|
+
message: string;
|
|
35395
|
+
data: components["schemas"]["DimensionDetailSchema"];
|
|
35396
|
+
};
|
|
35397
|
+
/** CreateUpdateDimension */
|
|
35398
|
+
CreateUpdateDimension: {
|
|
35399
|
+
/** Name */
|
|
35400
|
+
name: string;
|
|
35401
|
+
};
|
|
35402
|
+
/** DimensionListSchema */
|
|
35403
|
+
DimensionListSchema: {
|
|
35404
|
+
info: components["schemas"]["PageInfoSchema"];
|
|
35405
|
+
/** Results */
|
|
35406
|
+
results: components["schemas"]["DimensionDetailSchema"][];
|
|
35407
|
+
};
|
|
35258
35408
|
/**
|
|
35259
35409
|
* ReportGroupBy
|
|
35260
35410
|
* @enum {string}
|
|
@@ -52047,7 +52197,7 @@ export interface components {
|
|
|
52047
52197
|
* CombinedModelName
|
|
52048
52198
|
* @enum {string}
|
|
52049
52199
|
*/
|
|
52050
|
-
common__schemas__CombinedModelName: "item" | "customer" | "supplier" | "internalTransfer" | "stockAdjustment" | "openingQuantity" | "supplierPriceList" | "chartOfAccount" | "journalVoucher" | "requisition" | "requestForQuotation" | "advancePayment" | "paymentVoucher" | "purchaseInvoice" | "purchaseOrder" | "purchaseQuotation" | "purchaseReturnOrder" | "purchaseReturnInvoice" | "refundVoucher" | "purchaseCreditNote" | "project" | "warehouse" | "employeePosition" | "employee" | "accountingSetting" | "defaultGeneralAccounts" | "transactionalSubsidiaryAccounts" | "accountClassification" | "taxes" | "appointmentSettings" | "approvalSettings" | "approvalConfig" | "approvalCondition" | "approvalLevel" | "inventorySettings" | "itemVariantSettings" | "posSettings" | "purchaseSettings" | "salesSetting" | "city" | "zone" | "shippingMethod" | "systemSettings" | "transactionLocking" | "userSetting" | "department" | "company" | "branch" | "region" | "currency" | "facility" | "reason" | "emailSetting" | "bank" | "users" | "roles" | "appointment" | "offerAndPromotion" | "salesQuotation" | "salesOrder" | "downPayment" | "receiptVoucher" | "salesCreditNote" | "salesInvoice" | "salesReturnOrder" | "salesReturnInvoice" | "salesRefundVoucher" | "salesPriceList" | "goodsDeliveryNote" | "returnablePackageReconciliation" | "salesReturnPackage" | "package" | "packageType" | "itemPackage" | "goodsReceiptNote" | "salesPerson" | "commissionStructure" | "commissionPayout" | "closingCommission" | "task" | "event" | "onlineStoreSetting" | "onlineStorageSettings" | "branchSettings" | "accountStatement" | "generalLedgerReport" | "trialBalance" | "statementOfAccount" | "profitAndLoss" | "bankStatement" | "balanceSheet" | "projectStatement" | "supplierStatement" | "customerStatement" | "stockReport";
|
|
52200
|
+
common__schemas__CombinedModelName: "item" | "customer" | "supplier" | "internalTransfer" | "stockAdjustment" | "openingQuantity" | "supplierPriceList" | "chartOfAccount" | "journalVoucher" | "requisition" | "requestForQuotation" | "advancePayment" | "paymentVoucher" | "purchaseInvoice" | "purchaseOrder" | "purchaseQuotation" | "purchaseReturnOrder" | "purchaseReturnInvoice" | "refundVoucher" | "purchaseCreditNote" | "project" | "warehouse" | "employeePosition" | "employee" | "accountingSetting" | "defaultGeneralAccounts" | "transactionalSubsidiaryAccounts" | "accountClassification" | "taxes" | "appointmentSettings" | "approvalSettings" | "approvalConfig" | "approvalCondition" | "approvalLevel" | "inventorySettings" | "itemVariantSettings" | "posSettings" | "purchaseSettings" | "salesSetting" | "city" | "zone" | "shippingMethod" | "systemSettings" | "transactionLocking" | "userSetting" | "department" | "company" | "branch" | "region" | "currency" | "facility" | "reason" | "emailSetting" | "bank" | "users" | "roles" | "appointment" | "offerAndPromotion" | "salesQuotation" | "salesOrder" | "downPayment" | "receiptVoucher" | "salesCreditNote" | "salesInvoice" | "salesReturnOrder" | "salesReturnInvoice" | "salesRefundVoucher" | "salesPriceList" | "goodsDeliveryNote" | "returnablePackageReconciliation" | "salesReturnPackage" | "package" | "packageType" | "itemPackage" | "goodsReceiptNote" | "salesPerson" | "commissionStructure" | "commissionPayout" | "closingCommission" | "task" | "event" | "onlineStoreSetting" | "onlineStorageSettings" | "branchSettings" | "dimension" | "accountStatement" | "generalLedgerReport" | "trialBalance" | "statementOfAccount" | "profitAndLoss" | "bankStatement" | "balanceSheet" | "projectStatement" | "supplierStatement" | "customerStatement" | "stockReport";
|
|
52051
52201
|
/**
|
|
52052
52202
|
* CombinedModelName
|
|
52053
52203
|
* @enum {string}
|
|
@@ -70661,6 +70811,283 @@ export interface operations {
|
|
|
70661
70811
|
};
|
|
70662
70812
|
};
|
|
70663
70813
|
};
|
|
70814
|
+
erp_settings_accountingsetting_views_list_dimensions: {
|
|
70815
|
+
parameters: {
|
|
70816
|
+
query?: {
|
|
70817
|
+
/** @description search by dimension name */
|
|
70818
|
+
search?: string;
|
|
70819
|
+
};
|
|
70820
|
+
header?: never;
|
|
70821
|
+
path?: never;
|
|
70822
|
+
cookie?: never;
|
|
70823
|
+
};
|
|
70824
|
+
requestBody?: never;
|
|
70825
|
+
responses: {
|
|
70826
|
+
/** @description OK */
|
|
70827
|
+
200: {
|
|
70828
|
+
headers: {
|
|
70829
|
+
[name: string]: unknown;
|
|
70830
|
+
};
|
|
70831
|
+
content: {
|
|
70832
|
+
"application/json": components["schemas"]["DimensionListSchema"];
|
|
70833
|
+
};
|
|
70834
|
+
};
|
|
70835
|
+
/** @description Bad Request */
|
|
70836
|
+
400: {
|
|
70837
|
+
headers: {
|
|
70838
|
+
[name: string]: unknown;
|
|
70839
|
+
};
|
|
70840
|
+
content: {
|
|
70841
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
70842
|
+
};
|
|
70843
|
+
};
|
|
70844
|
+
/** @description Forbidden */
|
|
70845
|
+
403: {
|
|
70846
|
+
headers: {
|
|
70847
|
+
[name: string]: unknown;
|
|
70848
|
+
};
|
|
70849
|
+
content: {
|
|
70850
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
70851
|
+
};
|
|
70852
|
+
};
|
|
70853
|
+
/** @description Internal Server Error */
|
|
70854
|
+
500: {
|
|
70855
|
+
headers: {
|
|
70856
|
+
[name: string]: unknown;
|
|
70857
|
+
};
|
|
70858
|
+
content: {
|
|
70859
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
70860
|
+
};
|
|
70861
|
+
};
|
|
70862
|
+
};
|
|
70863
|
+
};
|
|
70864
|
+
erp_settings_accountingsetting_views_create_dimension: {
|
|
70865
|
+
parameters: {
|
|
70866
|
+
query?: never;
|
|
70867
|
+
header?: never;
|
|
70868
|
+
path?: never;
|
|
70869
|
+
cookie?: never;
|
|
70870
|
+
};
|
|
70871
|
+
requestBody: {
|
|
70872
|
+
content: {
|
|
70873
|
+
"application/json": components["schemas"]["CreateUpdateDimension"];
|
|
70874
|
+
};
|
|
70875
|
+
};
|
|
70876
|
+
responses: {
|
|
70877
|
+
/** @description Created */
|
|
70878
|
+
201: {
|
|
70879
|
+
headers: {
|
|
70880
|
+
[name: string]: unknown;
|
|
70881
|
+
};
|
|
70882
|
+
content: {
|
|
70883
|
+
"application/json": components["schemas"]["DimensionResponseSchema"];
|
|
70884
|
+
};
|
|
70885
|
+
};
|
|
70886
|
+
/** @description Bad Request */
|
|
70887
|
+
400: {
|
|
70888
|
+
headers: {
|
|
70889
|
+
[name: string]: unknown;
|
|
70890
|
+
};
|
|
70891
|
+
content: {
|
|
70892
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
70893
|
+
};
|
|
70894
|
+
};
|
|
70895
|
+
/** @description Forbidden */
|
|
70896
|
+
403: {
|
|
70897
|
+
headers: {
|
|
70898
|
+
[name: string]: unknown;
|
|
70899
|
+
};
|
|
70900
|
+
content: {
|
|
70901
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
70902
|
+
};
|
|
70903
|
+
};
|
|
70904
|
+
/** @description Internal Server Error */
|
|
70905
|
+
500: {
|
|
70906
|
+
headers: {
|
|
70907
|
+
[name: string]: unknown;
|
|
70908
|
+
};
|
|
70909
|
+
content: {
|
|
70910
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
70911
|
+
};
|
|
70912
|
+
};
|
|
70913
|
+
};
|
|
70914
|
+
};
|
|
70915
|
+
erp_settings_accountingsetting_views_get_dimension: {
|
|
70916
|
+
parameters: {
|
|
70917
|
+
query?: never;
|
|
70918
|
+
header?: never;
|
|
70919
|
+
path: {
|
|
70920
|
+
id: string;
|
|
70921
|
+
};
|
|
70922
|
+
cookie?: never;
|
|
70923
|
+
};
|
|
70924
|
+
requestBody?: never;
|
|
70925
|
+
responses: {
|
|
70926
|
+
/** @description OK */
|
|
70927
|
+
200: {
|
|
70928
|
+
headers: {
|
|
70929
|
+
[name: string]: unknown;
|
|
70930
|
+
};
|
|
70931
|
+
content: {
|
|
70932
|
+
"application/json": components["schemas"]["DimensionDetailSchema"];
|
|
70933
|
+
};
|
|
70934
|
+
};
|
|
70935
|
+
/** @description Bad Request */
|
|
70936
|
+
400: {
|
|
70937
|
+
headers: {
|
|
70938
|
+
[name: string]: unknown;
|
|
70939
|
+
};
|
|
70940
|
+
content: {
|
|
70941
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
70942
|
+
};
|
|
70943
|
+
};
|
|
70944
|
+
/** @description Forbidden */
|
|
70945
|
+
403: {
|
|
70946
|
+
headers: {
|
|
70947
|
+
[name: string]: unknown;
|
|
70948
|
+
};
|
|
70949
|
+
content: {
|
|
70950
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
70951
|
+
};
|
|
70952
|
+
};
|
|
70953
|
+
/** @description Not Found */
|
|
70954
|
+
404: {
|
|
70955
|
+
headers: {
|
|
70956
|
+
[name: string]: unknown;
|
|
70957
|
+
};
|
|
70958
|
+
content: {
|
|
70959
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
70960
|
+
};
|
|
70961
|
+
};
|
|
70962
|
+
/** @description Internal Server Error */
|
|
70963
|
+
500: {
|
|
70964
|
+
headers: {
|
|
70965
|
+
[name: string]: unknown;
|
|
70966
|
+
};
|
|
70967
|
+
content: {
|
|
70968
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
70969
|
+
};
|
|
70970
|
+
};
|
|
70971
|
+
};
|
|
70972
|
+
};
|
|
70973
|
+
erp_settings_accountingsetting_views_update_dimension: {
|
|
70974
|
+
parameters: {
|
|
70975
|
+
query?: never;
|
|
70976
|
+
header?: never;
|
|
70977
|
+
path: {
|
|
70978
|
+
id: string;
|
|
70979
|
+
};
|
|
70980
|
+
cookie?: never;
|
|
70981
|
+
};
|
|
70982
|
+
requestBody: {
|
|
70983
|
+
content: {
|
|
70984
|
+
"application/json": components["schemas"]["CreateUpdateDimension"];
|
|
70985
|
+
};
|
|
70986
|
+
};
|
|
70987
|
+
responses: {
|
|
70988
|
+
/** @description OK */
|
|
70989
|
+
200: {
|
|
70990
|
+
headers: {
|
|
70991
|
+
[name: string]: unknown;
|
|
70992
|
+
};
|
|
70993
|
+
content: {
|
|
70994
|
+
"application/json": components["schemas"]["DimensionResponseSchema"];
|
|
70995
|
+
};
|
|
70996
|
+
};
|
|
70997
|
+
/** @description Bad Request */
|
|
70998
|
+
400: {
|
|
70999
|
+
headers: {
|
|
71000
|
+
[name: string]: unknown;
|
|
71001
|
+
};
|
|
71002
|
+
content: {
|
|
71003
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
71004
|
+
};
|
|
71005
|
+
};
|
|
71006
|
+
/** @description Forbidden */
|
|
71007
|
+
403: {
|
|
71008
|
+
headers: {
|
|
71009
|
+
[name: string]: unknown;
|
|
71010
|
+
};
|
|
71011
|
+
content: {
|
|
71012
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
71013
|
+
};
|
|
71014
|
+
};
|
|
71015
|
+
/** @description Not Found */
|
|
71016
|
+
404: {
|
|
71017
|
+
headers: {
|
|
71018
|
+
[name: string]: unknown;
|
|
71019
|
+
};
|
|
71020
|
+
content: {
|
|
71021
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
71022
|
+
};
|
|
71023
|
+
};
|
|
71024
|
+
/** @description Internal Server Error */
|
|
71025
|
+
500: {
|
|
71026
|
+
headers: {
|
|
71027
|
+
[name: string]: unknown;
|
|
71028
|
+
};
|
|
71029
|
+
content: {
|
|
71030
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
71031
|
+
};
|
|
71032
|
+
};
|
|
71033
|
+
};
|
|
71034
|
+
};
|
|
71035
|
+
erp_settings_accountingsetting_views_delete_dimension: {
|
|
71036
|
+
parameters: {
|
|
71037
|
+
query?: never;
|
|
71038
|
+
header?: never;
|
|
71039
|
+
path: {
|
|
71040
|
+
id: string;
|
|
71041
|
+
};
|
|
71042
|
+
cookie?: never;
|
|
71043
|
+
};
|
|
71044
|
+
requestBody?: never;
|
|
71045
|
+
responses: {
|
|
71046
|
+
/** @description No Content */
|
|
71047
|
+
204: {
|
|
71048
|
+
headers: {
|
|
71049
|
+
[name: string]: unknown;
|
|
71050
|
+
};
|
|
71051
|
+
content?: never;
|
|
71052
|
+
};
|
|
71053
|
+
/** @description Bad Request */
|
|
71054
|
+
400: {
|
|
71055
|
+
headers: {
|
|
71056
|
+
[name: string]: unknown;
|
|
71057
|
+
};
|
|
71058
|
+
content: {
|
|
71059
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
71060
|
+
};
|
|
71061
|
+
};
|
|
71062
|
+
/** @description Forbidden */
|
|
71063
|
+
403: {
|
|
71064
|
+
headers: {
|
|
71065
|
+
[name: string]: unknown;
|
|
71066
|
+
};
|
|
71067
|
+
content: {
|
|
71068
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
71069
|
+
};
|
|
71070
|
+
};
|
|
71071
|
+
/** @description Not Found */
|
|
71072
|
+
404: {
|
|
71073
|
+
headers: {
|
|
71074
|
+
[name: string]: unknown;
|
|
71075
|
+
};
|
|
71076
|
+
content: {
|
|
71077
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
71078
|
+
};
|
|
71079
|
+
};
|
|
71080
|
+
/** @description Internal Server Error */
|
|
71081
|
+
500: {
|
|
71082
|
+
headers: {
|
|
71083
|
+
[name: string]: unknown;
|
|
71084
|
+
};
|
|
71085
|
+
content: {
|
|
71086
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
71087
|
+
};
|
|
71088
|
+
};
|
|
71089
|
+
};
|
|
71090
|
+
};
|
|
70664
71091
|
erp_settings_pos_settings_views_get_pos_settings: {
|
|
70665
71092
|
parameters: {
|
|
70666
71093
|
query?: never;
|