@erp-galoper/types 1.0.1185 → 1.0.1186
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 +136 -40
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -2384,7 +2384,7 @@ export interface paths {
|
|
|
2384
2384
|
* - 500:
|
|
2385
2385
|
* - internalServerError
|
|
2386
2386
|
* Permission Key:
|
|
2387
|
-
* '
|
|
2387
|
+
* 'customfielddefinition = ["view"]'
|
|
2388
2388
|
*/
|
|
2389
2389
|
get: operations["common_views_list_custom_fields"];
|
|
2390
2390
|
put?: never;
|
|
@@ -2403,7 +2403,7 @@ export interface paths {
|
|
|
2403
2403
|
* - 500:
|
|
2404
2404
|
* - internalServerError
|
|
2405
2405
|
* Permission Key:
|
|
2406
|
-
* '
|
|
2406
|
+
* 'customfielddefinition = ['add']'
|
|
2407
2407
|
*/
|
|
2408
2408
|
post: operations["common_views_create_custom_field"];
|
|
2409
2409
|
delete?: never;
|
|
@@ -2433,7 +2433,7 @@ export interface paths {
|
|
|
2433
2433
|
* - 500:
|
|
2434
2434
|
* - internalServerError
|
|
2435
2435
|
* Permission Key:
|
|
2436
|
-
* '
|
|
2436
|
+
* 'customfielddefinition = ['view']'
|
|
2437
2437
|
*/
|
|
2438
2438
|
get: operations["common_views_get_custom_field"];
|
|
2439
2439
|
/**
|
|
@@ -2451,7 +2451,7 @@ export interface paths {
|
|
|
2451
2451
|
* - 500:
|
|
2452
2452
|
* - internalServerError
|
|
2453
2453
|
* Permission Key:
|
|
2454
|
-
* '
|
|
2454
|
+
* 'customfielddefinition = ['change']'
|
|
2455
2455
|
*/
|
|
2456
2456
|
put: operations["common_views_update_custom_field"];
|
|
2457
2457
|
post?: never;
|
|
@@ -2469,7 +2469,7 @@ export interface paths {
|
|
|
2469
2469
|
* - 500:
|
|
2470
2470
|
* - internalServerError
|
|
2471
2471
|
* Permission Key:
|
|
2472
|
-
* '
|
|
2472
|
+
* 'customfielddefinition = ['delete']'
|
|
2473
2473
|
*/
|
|
2474
2474
|
delete: operations["common_views_delete_custom_field"];
|
|
2475
2475
|
options?: never;
|
|
@@ -2799,21 +2799,21 @@ export interface paths {
|
|
|
2799
2799
|
cookie?: never;
|
|
2800
2800
|
};
|
|
2801
2801
|
/**
|
|
2802
|
-
*
|
|
2803
|
-
* @description Endpoint for
|
|
2804
|
-
*
|
|
2805
|
-
*
|
|
2806
|
-
*
|
|
2802
|
+
* List Payment Providers
|
|
2803
|
+
* @description Endpoint for List payment providers
|
|
2804
|
+
* - 200 :
|
|
2805
|
+
* - ListPaymentProvidersSchema
|
|
2806
|
+
* - 400:
|
|
2807
|
+
* - invalidFilterFormat
|
|
2808
|
+
* - paginationError
|
|
2807
2809
|
* - 403:
|
|
2808
2810
|
* - permissionDenied
|
|
2809
|
-
* - 404:
|
|
2810
|
-
* - paymentProviderDoesNotExist
|
|
2811
2811
|
* - 500:
|
|
2812
2812
|
* - internalServerError
|
|
2813
2813
|
* - Permission Key:
|
|
2814
2814
|
* - paymentprovider : [ view ]
|
|
2815
2815
|
*/
|
|
2816
|
-
get: operations["
|
|
2816
|
+
get: operations["common_payment_method_views_list_payment_providers"];
|
|
2817
2817
|
/**
|
|
2818
2818
|
* Update Payment Provider
|
|
2819
2819
|
* @description Endpoint for update payment provider
|
|
@@ -2855,6 +2855,37 @@ export interface paths {
|
|
|
2855
2855
|
patch?: never;
|
|
2856
2856
|
trace?: never;
|
|
2857
2857
|
};
|
|
2858
|
+
"/api/v1/payment-provider/{id}/": {
|
|
2859
|
+
parameters: {
|
|
2860
|
+
query?: never;
|
|
2861
|
+
header?: never;
|
|
2862
|
+
path?: never;
|
|
2863
|
+
cookie?: never;
|
|
2864
|
+
};
|
|
2865
|
+
/**
|
|
2866
|
+
* Get Payment Provider
|
|
2867
|
+
* @description Endpoint for get payment provider
|
|
2868
|
+
* Possible Responses:
|
|
2869
|
+
* - 200:
|
|
2870
|
+
* - PaymentProviderSchema
|
|
2871
|
+
* - 403:
|
|
2872
|
+
* - permissionDenied
|
|
2873
|
+
* - 404:
|
|
2874
|
+
* - paymentProviderDoesNotExist
|
|
2875
|
+
* - 500:
|
|
2876
|
+
* - internalServerError
|
|
2877
|
+
* - Permission Key:
|
|
2878
|
+
* - paymentprovider : [ view ]
|
|
2879
|
+
*/
|
|
2880
|
+
get: operations["common_payment_method_views_get_payment_provider"];
|
|
2881
|
+
put?: never;
|
|
2882
|
+
post?: never;
|
|
2883
|
+
delete?: never;
|
|
2884
|
+
options?: never;
|
|
2885
|
+
head?: never;
|
|
2886
|
+
patch?: never;
|
|
2887
|
+
trace?: never;
|
|
2888
|
+
};
|
|
2858
2889
|
"/api/v1/payment_methods/": {
|
|
2859
2890
|
parameters: {
|
|
2860
2891
|
query?: never;
|
|
@@ -26015,7 +26046,7 @@ export interface components {
|
|
|
26015
26046
|
* LogModelName
|
|
26016
26047
|
* @enum {string}
|
|
26017
26048
|
*/
|
|
26018
|
-
LogModelName: "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";
|
|
26049
|
+
LogModelName: "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" | "posInvoice" | "task";
|
|
26019
26050
|
/**
|
|
26020
26051
|
* LogType
|
|
26021
26052
|
* @enum {string}
|
|
@@ -26071,7 +26102,7 @@ export interface components {
|
|
|
26071
26102
|
* CombinedModelName
|
|
26072
26103
|
* @enum {string}
|
|
26073
26104
|
*/
|
|
26074
|
-
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" | "accountStatement" | "generalLedgerReport" | "trialBalance" | "statementOfAccount" | "profitAndLoss" | "bankStatement" | "balanceSheet" | "projectStatement" | "supplierStatement" | "customerStatement" | "topCustomers" | "topSuppliers" | "employeeStatement" | "stockReport";
|
|
26105
|
+
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" | "posInvoice" | "task" | "accountStatement" | "generalLedgerReport" | "trialBalance" | "statementOfAccount" | "profitAndLoss" | "bankStatement" | "balanceSheet" | "projectStatement" | "supplierStatement" | "customerStatement" | "topCustomers" | "topSuppliers" | "employeeStatement" | "stockReport";
|
|
26075
26106
|
/** CustomFieldsList */
|
|
26076
26107
|
CustomFieldsList: {
|
|
26077
26108
|
info: components["schemas"]["PageInfoSchema"];
|
|
@@ -26252,6 +26283,15 @@ export interface components {
|
|
|
26252
26283
|
name: string;
|
|
26253
26284
|
branch: components["schemas"]["BranchInfo"];
|
|
26254
26285
|
};
|
|
26286
|
+
/** ListPaymentMethod */
|
|
26287
|
+
ListPaymentMethod: {
|
|
26288
|
+
/** Id */
|
|
26289
|
+
id: number;
|
|
26290
|
+
/** Name */
|
|
26291
|
+
name: string;
|
|
26292
|
+
/** Ispos */
|
|
26293
|
+
isPos: boolean;
|
|
26294
|
+
};
|
|
26255
26295
|
/**
|
|
26256
26296
|
* PaymentProviderFeeTypeEnum
|
|
26257
26297
|
* @enum {string}
|
|
@@ -26278,6 +26318,7 @@ export interface components {
|
|
|
26278
26318
|
modifiedBy: components["schemas"]["RecordUserSchema"] | null;
|
|
26279
26319
|
/** Id */
|
|
26280
26320
|
id: number;
|
|
26321
|
+
paymentMethod: components["schemas"]["ListPaymentMethod"];
|
|
26281
26322
|
/** Providername */
|
|
26282
26323
|
providerName: string;
|
|
26283
26324
|
feeType: components["schemas"]["PaymentProviderFeeTypeEnum"];
|
|
@@ -26302,14 +26343,11 @@ export interface components {
|
|
|
26302
26343
|
/** Feepercentage */
|
|
26303
26344
|
feePercentage: number;
|
|
26304
26345
|
};
|
|
26305
|
-
/**
|
|
26306
|
-
|
|
26307
|
-
|
|
26308
|
-
|
|
26309
|
-
|
|
26310
|
-
name: string;
|
|
26311
|
-
/** Ispos */
|
|
26312
|
-
isPos: boolean;
|
|
26346
|
+
/** ListPaymentProvidersSchema */
|
|
26347
|
+
ListPaymentProvidersSchema: {
|
|
26348
|
+
info: components["schemas"]["PageInfoSchema"];
|
|
26349
|
+
/** Results */
|
|
26350
|
+
results: components["schemas"]["PaymentProviderSchema"][];
|
|
26313
26351
|
};
|
|
26314
26352
|
/** GaloperSettingSchemaList */
|
|
26315
26353
|
GaloperSettingSchemaList: {
|
|
@@ -26441,6 +26479,8 @@ export interface components {
|
|
|
26441
26479
|
depth: number;
|
|
26442
26480
|
/** Image */
|
|
26443
26481
|
image?: string;
|
|
26482
|
+
/** Photo */
|
|
26483
|
+
photo?: string;
|
|
26444
26484
|
/**
|
|
26445
26485
|
* Children
|
|
26446
26486
|
* @default []
|
|
@@ -39930,7 +39970,7 @@ export interface components {
|
|
|
39930
39970
|
currency: components["schemas"]["CurrencySummaryInfo"] | null;
|
|
39931
39971
|
item: components["schemas"]["ItemSummaryInfo"] | null;
|
|
39932
39972
|
itemPackage: components["schemas"]["ItemPackageSharedSchema"] | null;
|
|
39933
|
-
unitOfMeasure: components["schemas"]["UnitOfMeasureSummaryInfo"];
|
|
39973
|
+
unitOfMeasure: components["schemas"]["UnitOfMeasureSummaryInfo"] | null;
|
|
39934
39974
|
itemCategory: components["schemas"]["ProductCategorySharedSchema"] | null;
|
|
39935
39975
|
brand: components["schemas"]["BrandSchema"] | null;
|
|
39936
39976
|
family: components["schemas"]["ProductCategorySharedSchema"] | null;
|
|
@@ -45168,6 +45208,11 @@ export interface components {
|
|
|
45168
45208
|
/** Password */
|
|
45169
45209
|
password?: string;
|
|
45170
45210
|
};
|
|
45211
|
+
/**
|
|
45212
|
+
* DeliveryStatusValueChoices
|
|
45213
|
+
* @enum {string}
|
|
45214
|
+
*/
|
|
45215
|
+
DeliveryStatusValueChoices: "not_delivered" | "partially_delivered" | "delivered";
|
|
45171
45216
|
/** SalesOrderItemSchema */
|
|
45172
45217
|
SalesOrderItemSchema: {
|
|
45173
45218
|
/**
|
|
@@ -45339,6 +45384,8 @@ export interface components {
|
|
|
45339
45384
|
approvalStatus: components["schemas"]["ApprovalValueChoices"];
|
|
45340
45385
|
/** @description The invoice status linked to the sales order. */
|
|
45341
45386
|
invoiceStatus: components["schemas"]["InvoiceStatusValueChoices"];
|
|
45387
|
+
/** @description The delivery status of the sales order. */
|
|
45388
|
+
deliveryStatus: components["schemas"]["DeliveryStatusValueChoices"];
|
|
45342
45389
|
/** @description The price list associated with the sales order. */
|
|
45343
45390
|
priceList: components["schemas"]["SalesPriceListSummaryInfo"] | null;
|
|
45344
45391
|
/**
|
|
@@ -45765,6 +45812,8 @@ export interface components {
|
|
|
45765
45812
|
approvalStatus: components["schemas"]["ApprovalValueChoices"];
|
|
45766
45813
|
/** @description The invoice status linked to the sales order. */
|
|
45767
45814
|
invoiceStatus: components["schemas"]["InvoiceStatusValueChoices"];
|
|
45815
|
+
/** @description The delivery status of the sales order. */
|
|
45816
|
+
deliveryStatus: components["schemas"]["DeliveryStatusValueChoices"];
|
|
45768
45817
|
/** @description The price list associated with the sales order. */
|
|
45769
45818
|
priceList: components["schemas"]["SalesPriceListSummaryInfo"] | null;
|
|
45770
45819
|
/**
|
|
@@ -46769,11 +46818,6 @@ export interface components {
|
|
|
46769
46818
|
/** Password */
|
|
46770
46819
|
password?: string;
|
|
46771
46820
|
};
|
|
46772
|
-
/**
|
|
46773
|
-
* DeliveryStatusValueChoices
|
|
46774
|
-
* @enum {string}
|
|
46775
|
-
*/
|
|
46776
|
-
DeliveryStatusValueChoices: "not_delivered" | "partially_delivered" | "delivered";
|
|
46777
46821
|
/**
|
|
46778
46822
|
* PaymentStatusValueChoices
|
|
46779
46823
|
* @enum {string}
|
|
@@ -51027,7 +51071,7 @@ export interface components {
|
|
|
51027
51071
|
* CombinedModelName
|
|
51028
51072
|
* @enum {string}
|
|
51029
51073
|
*/
|
|
51030
|
-
common__shared_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" | "accountStatement" | "generalLedgerReport" | "trialBalance" | "statementOfAccount" | "profitAndLoss" | "bankStatement" | "balanceSheet" | "projectStatement" | "supplierStatement" | "customerStatement" | "topCustomers" | "topSuppliers" | "employeeStatement" | "stockReport";
|
|
51074
|
+
common__shared_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" | "posInvoice" | "task" | "accountStatement" | "generalLedgerReport" | "trialBalance" | "statementOfAccount" | "profitAndLoss" | "bankStatement" | "balanceSheet" | "projectStatement" | "supplierStatement" | "customerStatement" | "topCustomers" | "topSuppliers" | "employeeStatement" | "stockReport";
|
|
51031
51075
|
/** TasksListSchema */
|
|
51032
51076
|
TasksListSchema: {
|
|
51033
51077
|
info: components["schemas"]["PageInfoSchema"];
|
|
@@ -55887,7 +55931,7 @@ export interface operations {
|
|
|
55887
55931
|
common_views_get_logs: {
|
|
55888
55932
|
parameters: {
|
|
55889
55933
|
query?: {
|
|
55890
|
-
logModelName?: "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";
|
|
55934
|
+
logModelName?: "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" | "posInvoice" | "task";
|
|
55891
55935
|
logType?: "Created" | "Changed" | "Deleted";
|
|
55892
55936
|
startDate?: string;
|
|
55893
55937
|
endDate?: string;
|
|
@@ -55935,7 +55979,7 @@ export interface operations {
|
|
|
55935
55979
|
common_views_get_model_names: {
|
|
55936
55980
|
parameters: {
|
|
55937
55981
|
query?: {
|
|
55938
|
-
CombinedModelNames?: "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" | "accountStatement" | "generalLedgerReport" | "trialBalance" | "statementOfAccount" | "profitAndLoss" | "bankStatement" | "balanceSheet" | "projectStatement" | "supplierStatement" | "customerStatement" | "topCustomers" | "topSuppliers" | "employeeStatement" | "stockReport";
|
|
55982
|
+
CombinedModelNames?: "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" | "posInvoice" | "task" | "accountStatement" | "generalLedgerReport" | "trialBalance" | "statementOfAccount" | "profitAndLoss" | "bankStatement" | "balanceSheet" | "projectStatement" | "supplierStatement" | "customerStatement" | "topCustomers" | "topSuppliers" | "employeeStatement" | "stockReport";
|
|
55939
55983
|
};
|
|
55940
55984
|
header?: never;
|
|
55941
55985
|
path?: never;
|
|
@@ -56865,9 +56909,12 @@ export interface operations {
|
|
|
56865
56909
|
};
|
|
56866
56910
|
};
|
|
56867
56911
|
};
|
|
56868
|
-
|
|
56912
|
+
common_payment_method_views_list_payment_providers: {
|
|
56869
56913
|
parameters: {
|
|
56870
|
-
query?:
|
|
56914
|
+
query?: {
|
|
56915
|
+
/** @description Search by provider name, or fee type */
|
|
56916
|
+
search?: string;
|
|
56917
|
+
};
|
|
56871
56918
|
header?: never;
|
|
56872
56919
|
path?: never;
|
|
56873
56920
|
cookie?: never;
|
|
@@ -56880,20 +56927,20 @@ export interface operations {
|
|
|
56880
56927
|
[name: string]: unknown;
|
|
56881
56928
|
};
|
|
56882
56929
|
content: {
|
|
56883
|
-
"application/json": components["schemas"]["
|
|
56930
|
+
"application/json": components["schemas"]["ListPaymentProvidersSchema"];
|
|
56884
56931
|
};
|
|
56885
56932
|
};
|
|
56886
|
-
/** @description
|
|
56887
|
-
|
|
56933
|
+
/** @description Bad Request */
|
|
56934
|
+
400: {
|
|
56888
56935
|
headers: {
|
|
56889
56936
|
[name: string]: unknown;
|
|
56890
56937
|
};
|
|
56891
56938
|
content: {
|
|
56892
|
-
"application/json": components["schemas"]["
|
|
56939
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
56893
56940
|
};
|
|
56894
56941
|
};
|
|
56895
|
-
/** @description
|
|
56896
|
-
|
|
56942
|
+
/** @description Forbidden */
|
|
56943
|
+
403: {
|
|
56897
56944
|
headers: {
|
|
56898
56945
|
[name: string]: unknown;
|
|
56899
56946
|
};
|
|
@@ -57023,6 +57070,55 @@ export interface operations {
|
|
|
57023
57070
|
};
|
|
57024
57071
|
};
|
|
57025
57072
|
};
|
|
57073
|
+
common_payment_method_views_get_payment_provider: {
|
|
57074
|
+
parameters: {
|
|
57075
|
+
query?: never;
|
|
57076
|
+
header?: never;
|
|
57077
|
+
path: {
|
|
57078
|
+
id: number;
|
|
57079
|
+
};
|
|
57080
|
+
cookie?: never;
|
|
57081
|
+
};
|
|
57082
|
+
requestBody?: never;
|
|
57083
|
+
responses: {
|
|
57084
|
+
/** @description OK */
|
|
57085
|
+
200: {
|
|
57086
|
+
headers: {
|
|
57087
|
+
[name: string]: unknown;
|
|
57088
|
+
};
|
|
57089
|
+
content: {
|
|
57090
|
+
"application/json": components["schemas"]["PaymentProviderSchema"];
|
|
57091
|
+
};
|
|
57092
|
+
};
|
|
57093
|
+
/** @description Forbidden */
|
|
57094
|
+
403: {
|
|
57095
|
+
headers: {
|
|
57096
|
+
[name: string]: unknown;
|
|
57097
|
+
};
|
|
57098
|
+
content: {
|
|
57099
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
57100
|
+
};
|
|
57101
|
+
};
|
|
57102
|
+
/** @description Not Found */
|
|
57103
|
+
404: {
|
|
57104
|
+
headers: {
|
|
57105
|
+
[name: string]: unknown;
|
|
57106
|
+
};
|
|
57107
|
+
content: {
|
|
57108
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
57109
|
+
};
|
|
57110
|
+
};
|
|
57111
|
+
/** @description Internal Server Error */
|
|
57112
|
+
500: {
|
|
57113
|
+
headers: {
|
|
57114
|
+
[name: string]: unknown;
|
|
57115
|
+
};
|
|
57116
|
+
content: {
|
|
57117
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
57118
|
+
};
|
|
57119
|
+
};
|
|
57120
|
+
};
|
|
57121
|
+
};
|
|
57026
57122
|
common_payment_method_views_list_payment_methods: {
|
|
57027
57123
|
parameters: {
|
|
57028
57124
|
query?: never;
|