@erp-galoper/types 1.0.585 → 1.0.587
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 +455 -63
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -7973,34 +7973,49 @@ export interface paths {
|
|
|
7973
7973
|
};
|
|
7974
7974
|
/**
|
|
7975
7975
|
* Get Pos Settings
|
|
7976
|
-
* @description
|
|
7977
|
-
*
|
|
7978
|
-
* - 200:
|
|
7979
|
-
*
|
|
7980
|
-
* -
|
|
7981
|
-
*
|
|
7982
|
-
*
|
|
7983
|
-
*
|
|
7976
|
+
* @description Endpoint for retrieving POS settings
|
|
7977
|
+
* Response:
|
|
7978
|
+
* - 200: RetrievePosSettings
|
|
7979
|
+
* - 403: permissionDenied
|
|
7980
|
+
* - 404: posSettingsDoNotExist
|
|
7981
|
+
* - 500: serverError
|
|
7982
|
+
*
|
|
7983
|
+
* This endpoint is used in standalone mode to retrieve POS settings
|
|
7984
|
+
*
|
|
7985
|
+
* permissions: pos_settings : [view]
|
|
7984
7986
|
*/
|
|
7985
7987
|
get: operations["erp_settings_pos_settings_views_get_pos_settings"];
|
|
7986
|
-
|
|
7988
|
+
/**
|
|
7989
|
+
* Update Pos Settings
|
|
7990
|
+
* @description Endpoint for updating POS settings
|
|
7991
|
+
* Response:
|
|
7992
|
+
* - 200: RetrievePosSettings
|
|
7993
|
+
* - 400: ErrorMessages
|
|
7994
|
+
* - 403: permissionDenied
|
|
7995
|
+
* - 404: posSettingsDoNotExist
|
|
7996
|
+
* - 500: serverError
|
|
7997
|
+
*
|
|
7998
|
+
* permissions: pos_settings : [change]
|
|
7999
|
+
*/
|
|
8000
|
+
put: operations["erp_settings_pos_settings_views_update_pos_settings"];
|
|
7987
8001
|
/**
|
|
7988
8002
|
* Create Pos Settings
|
|
7989
|
-
* @description
|
|
7990
|
-
*
|
|
7991
|
-
* -
|
|
7992
|
-
*
|
|
7993
|
-
* - 403:
|
|
7994
|
-
*
|
|
7995
|
-
*
|
|
7996
|
-
*
|
|
8003
|
+
* @description Endpoint for creating POS settings
|
|
8004
|
+
* Response:
|
|
8005
|
+
* - 201: RetrievePosSettings
|
|
8006
|
+
* - 400: defaultCurrencyDoesNotExist
|
|
8007
|
+
* - 403: permissionDenied
|
|
8008
|
+
* - 500: serverError
|
|
8009
|
+
*
|
|
8010
|
+
* This endpoint is used in standalone mode to create POS settings
|
|
8011
|
+
*
|
|
8012
|
+
* permissions: pos_settings : [add]
|
|
7997
8013
|
*/
|
|
7998
8014
|
post: operations["erp_settings_pos_settings_views_create_pos_settings"];
|
|
7999
8015
|
delete?: never;
|
|
8000
8016
|
options?: never;
|
|
8001
8017
|
head?: never;
|
|
8002
|
-
|
|
8003
|
-
patch: operations["erp_settings_pos_settings_views_update_pos_settings"];
|
|
8018
|
+
patch?: never;
|
|
8004
8019
|
trace?: never;
|
|
8005
8020
|
};
|
|
8006
8021
|
"/api/v1/settings/appointment/": {
|
|
@@ -18419,6 +18434,39 @@ export interface paths {
|
|
|
18419
18434
|
patch?: never;
|
|
18420
18435
|
trace?: never;
|
|
18421
18436
|
};
|
|
18437
|
+
"/api/v1/reports/inventory/item-availability-report/": {
|
|
18438
|
+
parameters: {
|
|
18439
|
+
query?: never;
|
|
18440
|
+
header?: never;
|
|
18441
|
+
path?: never;
|
|
18442
|
+
cookie?: never;
|
|
18443
|
+
};
|
|
18444
|
+
/**
|
|
18445
|
+
* Get Item Availability Report
|
|
18446
|
+
* @description Generate an Item Availability Report for the specified filters.
|
|
18447
|
+
*
|
|
18448
|
+
* The report provides real-time insights into the quantity of each item currently in stock,
|
|
18449
|
+
* on order, committed to sales, and expected from suppliers.
|
|
18450
|
+
*
|
|
18451
|
+
* Responses:
|
|
18452
|
+
* - 200: Item Availability Report results
|
|
18453
|
+
* - 400: "invalidFilterFormat"
|
|
18454
|
+
* - 403: "noModuleAccess"
|
|
18455
|
+
* - "permissionDenied"
|
|
18456
|
+
* - "noBranchAccess"
|
|
18457
|
+
* - 500: "serverError"
|
|
18458
|
+
*
|
|
18459
|
+
* Permission key: inventoryreport: ["view"]
|
|
18460
|
+
*/
|
|
18461
|
+
get: operations["reports_inventoryreport_views_get_item_availability_report"];
|
|
18462
|
+
put?: never;
|
|
18463
|
+
post?: never;
|
|
18464
|
+
delete?: never;
|
|
18465
|
+
options?: never;
|
|
18466
|
+
head?: never;
|
|
18467
|
+
patch?: never;
|
|
18468
|
+
trace?: never;
|
|
18469
|
+
};
|
|
18422
18470
|
}
|
|
18423
18471
|
export type webhooks = Record<string, never>;
|
|
18424
18472
|
export interface components {
|
|
@@ -20389,6 +20437,11 @@ export interface components {
|
|
|
20389
20437
|
* @enum {string}
|
|
20390
20438
|
*/
|
|
20391
20439
|
FullPermissionAction: "view" | "add" | "change" | "delete";
|
|
20440
|
+
/**
|
|
20441
|
+
* FullPermissionActionWithoutDelete
|
|
20442
|
+
* @enum {string}
|
|
20443
|
+
*/
|
|
20444
|
+
FullPermissionActionWithoutDelete: "view" | "add" | "change";
|
|
20392
20445
|
/**
|
|
20393
20446
|
* InvoicePermissionAction
|
|
20394
20447
|
* @enum {string}
|
|
@@ -20461,17 +20514,17 @@ export interface components {
|
|
|
20461
20514
|
* Possettings
|
|
20462
20515
|
* @default []
|
|
20463
20516
|
*/
|
|
20464
|
-
posSettings: components["schemas"]["
|
|
20517
|
+
posSettings: components["schemas"]["FullPermissionActionWithoutDelete"][];
|
|
20465
20518
|
/**
|
|
20466
20519
|
* Financialperiod
|
|
20467
20520
|
* @default []
|
|
20468
20521
|
*/
|
|
20469
|
-
financialPeriod: components["schemas"]["
|
|
20522
|
+
financialPeriod: components["schemas"]["FullPermissionActionWithoutDelete"][];
|
|
20470
20523
|
/**
|
|
20471
20524
|
* Systemsettings
|
|
20472
20525
|
* @default []
|
|
20473
20526
|
*/
|
|
20474
|
-
systemSettings: components["schemas"]["
|
|
20527
|
+
systemSettings: components["schemas"]["FullPermissionActionWithoutDelete"][];
|
|
20475
20528
|
/**
|
|
20476
20529
|
* Zreport
|
|
20477
20530
|
* @default []
|
|
@@ -27468,7 +27521,7 @@ export interface components {
|
|
|
27468
27521
|
/**
|
|
27469
27522
|
* Id
|
|
27470
27523
|
* Format: uuid
|
|
27471
|
-
* @example
|
|
27524
|
+
* @example 172c4db8-170f-4a0e-9ac8-8145c423d88d
|
|
27472
27525
|
*/
|
|
27473
27526
|
id: string;
|
|
27474
27527
|
/**
|
|
@@ -30642,21 +30695,82 @@ export interface components {
|
|
|
30642
30695
|
*/
|
|
30643
30696
|
paymentInAdvanceAccountNonResident?: number;
|
|
30644
30697
|
};
|
|
30645
|
-
/**
|
|
30646
|
-
|
|
30698
|
+
/** CurrencySummarySchema */
|
|
30699
|
+
CurrencySummarySchema: {
|
|
30700
|
+
/** Id */
|
|
30701
|
+
id: number;
|
|
30702
|
+
/** Code */
|
|
30703
|
+
code: string;
|
|
30704
|
+
/** Name */
|
|
30705
|
+
name: string;
|
|
30706
|
+
};
|
|
30707
|
+
/**
|
|
30708
|
+
* ReportGroupBy
|
|
30709
|
+
* @enum {string}
|
|
30710
|
+
*/
|
|
30711
|
+
ReportGroupBy: "category" | "item";
|
|
30712
|
+
/** RetrievePosSettings */
|
|
30713
|
+
RetrievePosSettings: {
|
|
30647
30714
|
/**
|
|
30648
|
-
*
|
|
30649
|
-
*
|
|
30715
|
+
* Datecreated
|
|
30716
|
+
* Format: date-time
|
|
30650
30717
|
*/
|
|
30651
|
-
|
|
30652
|
-
|
|
30653
|
-
|
|
30654
|
-
|
|
30718
|
+
dateCreated: string;
|
|
30719
|
+
/** Datemodified */
|
|
30720
|
+
dateModified: string | null;
|
|
30721
|
+
createdBy: components["schemas"]["RecordUserSchema"];
|
|
30722
|
+
modifiedBy: components["schemas"]["RecordUserSchema"] | null;
|
|
30723
|
+
/** Id */
|
|
30724
|
+
id: number;
|
|
30725
|
+
/** Dailyrate */
|
|
30726
|
+
dailyRate: number | string;
|
|
30727
|
+
defaultCurrency: components["schemas"]["CurrencySummarySchema"];
|
|
30728
|
+
/** Allowlowerexchangevalue */
|
|
30729
|
+
allowLowerExchangeValue: boolean;
|
|
30730
|
+
/** Paymentdifferencethreshold */
|
|
30731
|
+
paymentDifferenceThreshold: number;
|
|
30732
|
+
/** Invoiceheader */
|
|
30733
|
+
invoiceHeader: string | null;
|
|
30734
|
+
/** Invoicefooter */
|
|
30735
|
+
invoiceFooter: string | null;
|
|
30736
|
+
reportGroupBy: components["schemas"]["ReportGroupBy"] | null;
|
|
30737
|
+
/** Printcount */
|
|
30738
|
+
printCount: number | null;
|
|
30739
|
+
/** Printonhold */
|
|
30740
|
+
printOnHold: boolean | null;
|
|
30741
|
+
/** Currenciesoninvoice */
|
|
30742
|
+
currenciesOnInvoice: components["schemas"]["CurrencySummarySchema"][];
|
|
30743
|
+
};
|
|
30744
|
+
/** CreateUpdatePosSettings */
|
|
30745
|
+
CreateUpdatePosSettings: {
|
|
30746
|
+
/** Dailyrate */
|
|
30747
|
+
dailyRate: number | string;
|
|
30748
|
+
/** Defaultcurrency */
|
|
30749
|
+
defaultCurrency: number;
|
|
30750
|
+
/**
|
|
30751
|
+
* Allowlowerexchangevalue
|
|
30752
|
+
* @default false
|
|
30753
|
+
*/
|
|
30754
|
+
allowLowerExchangeValue: boolean | null;
|
|
30755
|
+
/**
|
|
30756
|
+
* Paymentdifferencethreshold
|
|
30757
|
+
* @default 0.01
|
|
30758
|
+
*/
|
|
30759
|
+
paymentDifferenceThreshold: number | null;
|
|
30760
|
+
/** Invoiceheader */
|
|
30761
|
+
invoiceHeader: string | null;
|
|
30762
|
+
/** Invoicefooter */
|
|
30763
|
+
invoiceFooter: string | null;
|
|
30764
|
+
reportGroupBy: components["schemas"]["ReportGroupBy"] | null;
|
|
30765
|
+
/** Printcount */
|
|
30766
|
+
printCount: number | null;
|
|
30767
|
+
/** Printonhold */
|
|
30768
|
+
printOnHold: boolean | null;
|
|
30655
30769
|
/**
|
|
30656
|
-
*
|
|
30657
|
-
* @
|
|
30770
|
+
* Currenciesoninvoice
|
|
30771
|
+
* @default []
|
|
30658
30772
|
*/
|
|
30659
|
-
|
|
30773
|
+
currenciesOnInvoice: number[] | null;
|
|
30660
30774
|
};
|
|
30661
30775
|
/** RetrieveAppointmentSettingSchema */
|
|
30662
30776
|
RetrieveAppointmentSettingSchema: {
|
|
@@ -38244,15 +38358,6 @@ export interface components {
|
|
|
38244
38358
|
/** Commissionlevels */
|
|
38245
38359
|
commissionLevels?: components["schemas"]["UpdateCommissionLevels"][];
|
|
38246
38360
|
};
|
|
38247
|
-
/** CurrencySummarySchema */
|
|
38248
|
-
CurrencySummarySchema: {
|
|
38249
|
-
/** Id */
|
|
38250
|
-
id: number;
|
|
38251
|
-
/** Code */
|
|
38252
|
-
code: string;
|
|
38253
|
-
/** Name */
|
|
38254
|
-
name: string;
|
|
38255
|
-
};
|
|
38256
38361
|
/**
|
|
38257
38362
|
* PRICE_LIST_TYPE_CHOICES
|
|
38258
38363
|
* @enum {string}
|
|
@@ -46607,17 +46712,17 @@ export interface components {
|
|
|
46607
46712
|
* Possettings
|
|
46608
46713
|
* @default []
|
|
46609
46714
|
*/
|
|
46610
|
-
posSettings: components["schemas"]["
|
|
46715
|
+
posSettings: components["schemas"]["FullPermissionActionWithoutDelete"][];
|
|
46611
46716
|
/**
|
|
46612
46717
|
* Financialperiod
|
|
46613
46718
|
* @default []
|
|
46614
46719
|
*/
|
|
46615
|
-
financialPeriod: components["schemas"]["
|
|
46720
|
+
financialPeriod: components["schemas"]["FullPermissionActionWithoutDelete"][];
|
|
46616
46721
|
/**
|
|
46617
46722
|
* Systemsettings
|
|
46618
46723
|
* @default []
|
|
46619
46724
|
*/
|
|
46620
|
-
systemSettings: components["schemas"]["
|
|
46725
|
+
systemSettings: components["schemas"]["FullPermissionActionWithoutDelete"][];
|
|
46621
46726
|
/**
|
|
46622
46727
|
* Zreport
|
|
46623
46728
|
* @default []
|
|
@@ -46796,6 +46901,200 @@ export interface components {
|
|
|
46796
46901
|
*/
|
|
46797
46902
|
movements: components["schemas"]["MovementTransactionSchema"][];
|
|
46798
46903
|
};
|
|
46904
|
+
/** ItemAvailabilityReportSchema */
|
|
46905
|
+
ItemAvailabilityReportSchema: {
|
|
46906
|
+
item: components["schemas"]["ItemDetailSchemaForReport"];
|
|
46907
|
+
/** Barcode */
|
|
46908
|
+
barcode?: string | null;
|
|
46909
|
+
/** Sku */
|
|
46910
|
+
sku?: string | null;
|
|
46911
|
+
/** Description */
|
|
46912
|
+
description?: string | null;
|
|
46913
|
+
/** Name */
|
|
46914
|
+
name: string;
|
|
46915
|
+
/** Category */
|
|
46916
|
+
category?: string | null;
|
|
46917
|
+
/** Family */
|
|
46918
|
+
family?: string | null;
|
|
46919
|
+
/** Brand */
|
|
46920
|
+
brand?: string | null;
|
|
46921
|
+
/**
|
|
46922
|
+
* Tags
|
|
46923
|
+
* @default []
|
|
46924
|
+
*/
|
|
46925
|
+
tags: string[];
|
|
46926
|
+
/**
|
|
46927
|
+
* Uomgroups
|
|
46928
|
+
* @default []
|
|
46929
|
+
*/
|
|
46930
|
+
uomGroups: components["schemas"]["UOMGroupSchema"][];
|
|
46931
|
+
/**
|
|
46932
|
+
* Totalstockquantity
|
|
46933
|
+
* @default 0
|
|
46934
|
+
*/
|
|
46935
|
+
totalStockQuantity: number;
|
|
46936
|
+
/**
|
|
46937
|
+
* Totalreservedquantity
|
|
46938
|
+
* @default 0
|
|
46939
|
+
*/
|
|
46940
|
+
totalReservedQuantity: number;
|
|
46941
|
+
/**
|
|
46942
|
+
* Totalavailablequantity
|
|
46943
|
+
* @default 0
|
|
46944
|
+
*/
|
|
46945
|
+
totalAvailableQuantity: number;
|
|
46946
|
+
/**
|
|
46947
|
+
* Onorderquantity
|
|
46948
|
+
* @default 0
|
|
46949
|
+
*/
|
|
46950
|
+
onOrderQuantity: number;
|
|
46951
|
+
/**
|
|
46952
|
+
* Safetystocklevel
|
|
46953
|
+
* @default 0
|
|
46954
|
+
*/
|
|
46955
|
+
safetyStockLevel: number | null;
|
|
46956
|
+
/**
|
|
46957
|
+
* Reorderpoint
|
|
46958
|
+
* @default 0
|
|
46959
|
+
*/
|
|
46960
|
+
reorderPoint: number | null;
|
|
46961
|
+
/**
|
|
46962
|
+
* Leadtime
|
|
46963
|
+
* @default 0
|
|
46964
|
+
*/
|
|
46965
|
+
leadTime: number | null;
|
|
46966
|
+
/** Lastsaledate */
|
|
46967
|
+
lastSaleDate?: string | null;
|
|
46968
|
+
};
|
|
46969
|
+
/** ItemLocationSchema */
|
|
46970
|
+
ItemLocationSchema: {
|
|
46971
|
+
branch?: components["schemas"]["BranchSummaryInfo"] | null;
|
|
46972
|
+
warehouse?: components["schemas"]["WarehouseSummaryInfo"] | null;
|
|
46973
|
+
unitOfMeasure?: components["schemas"]["UnitOfMeasureSchema"] | null;
|
|
46974
|
+
itemPackage?: components["schemas"]["ItemPackageSummarySchema"] | null;
|
|
46975
|
+
/**
|
|
46976
|
+
* Stockquantity
|
|
46977
|
+
* @default 0
|
|
46978
|
+
*/
|
|
46979
|
+
stockQuantity: number;
|
|
46980
|
+
/**
|
|
46981
|
+
* Reservedquantity
|
|
46982
|
+
* @default 0
|
|
46983
|
+
*/
|
|
46984
|
+
reservedQuantity: number;
|
|
46985
|
+
/**
|
|
46986
|
+
* Availablequantity
|
|
46987
|
+
* @default 0
|
|
46988
|
+
*/
|
|
46989
|
+
availableQuantity: number;
|
|
46990
|
+
/**
|
|
46991
|
+
* Ispackage
|
|
46992
|
+
* @default false
|
|
46993
|
+
*/
|
|
46994
|
+
isPackage: boolean;
|
|
46995
|
+
/**
|
|
46996
|
+
* Batches
|
|
46997
|
+
* @default []
|
|
46998
|
+
*/
|
|
46999
|
+
batches: components["schemas"]["BatchSerialSummarySchema"][];
|
|
47000
|
+
/**
|
|
47001
|
+
* Serials
|
|
47002
|
+
* @default []
|
|
47003
|
+
*/
|
|
47004
|
+
serials: components["schemas"]["BatchSerialSummarySchema"][];
|
|
47005
|
+
};
|
|
47006
|
+
/** PackedInventorySchema */
|
|
47007
|
+
PackedInventorySchema: {
|
|
47008
|
+
package: components["schemas"]["ItemPackageSummarySchema"];
|
|
47009
|
+
/**
|
|
47010
|
+
* Packagequantity
|
|
47011
|
+
* @default 0
|
|
47012
|
+
*/
|
|
47013
|
+
packageQuantity: number;
|
|
47014
|
+
/**
|
|
47015
|
+
* Stockquantity
|
|
47016
|
+
* @default 0
|
|
47017
|
+
*/
|
|
47018
|
+
stockQuantity: number;
|
|
47019
|
+
/**
|
|
47020
|
+
* Reservedquantity
|
|
47021
|
+
* @default 0
|
|
47022
|
+
*/
|
|
47023
|
+
reservedQuantity: number;
|
|
47024
|
+
/**
|
|
47025
|
+
* Availablequantity
|
|
47026
|
+
* @default 0
|
|
47027
|
+
*/
|
|
47028
|
+
availableQuantity: number;
|
|
47029
|
+
/**
|
|
47030
|
+
* Totalunits
|
|
47031
|
+
* @default 0
|
|
47032
|
+
*/
|
|
47033
|
+
totalUnits: number;
|
|
47034
|
+
/**
|
|
47035
|
+
* Totalreserved
|
|
47036
|
+
* @default 0
|
|
47037
|
+
*/
|
|
47038
|
+
totalReserved: number;
|
|
47039
|
+
/**
|
|
47040
|
+
* Totalavailable
|
|
47041
|
+
* @default 0
|
|
47042
|
+
*/
|
|
47043
|
+
totalAvailable: number;
|
|
47044
|
+
/**
|
|
47045
|
+
* Locations
|
|
47046
|
+
* @default []
|
|
47047
|
+
*/
|
|
47048
|
+
locations: components["schemas"]["ItemLocationSchema"][];
|
|
47049
|
+
};
|
|
47050
|
+
/** UOMGroupSchema */
|
|
47051
|
+
UOMGroupSchema: {
|
|
47052
|
+
unitOfMeasure: components["schemas"]["UnitOfMeasureSchema"];
|
|
47053
|
+
unpacked: components["schemas"]["UnpackedInventorySchema"];
|
|
47054
|
+
/**
|
|
47055
|
+
* Packed
|
|
47056
|
+
* @default []
|
|
47057
|
+
*/
|
|
47058
|
+
packed: components["schemas"]["PackedInventorySchema"][];
|
|
47059
|
+
/**
|
|
47060
|
+
* Totalstockquantity
|
|
47061
|
+
* @default 0
|
|
47062
|
+
*/
|
|
47063
|
+
totalStockQuantity: number;
|
|
47064
|
+
/**
|
|
47065
|
+
* Totalreservedquantity
|
|
47066
|
+
* @default 0
|
|
47067
|
+
*/
|
|
47068
|
+
totalReservedQuantity: number;
|
|
47069
|
+
/**
|
|
47070
|
+
* Totalavailablequantity
|
|
47071
|
+
* @default 0
|
|
47072
|
+
*/
|
|
47073
|
+
totalAvailableQuantity: number;
|
|
47074
|
+
};
|
|
47075
|
+
/** UnpackedInventorySchema */
|
|
47076
|
+
UnpackedInventorySchema: {
|
|
47077
|
+
/**
|
|
47078
|
+
* Stockquantity
|
|
47079
|
+
* @default 0
|
|
47080
|
+
*/
|
|
47081
|
+
stockQuantity: number;
|
|
47082
|
+
/**
|
|
47083
|
+
* Reservedquantity
|
|
47084
|
+
* @default 0
|
|
47085
|
+
*/
|
|
47086
|
+
reservedQuantity: number;
|
|
47087
|
+
/**
|
|
47088
|
+
* Availablequantity
|
|
47089
|
+
* @default 0
|
|
47090
|
+
*/
|
|
47091
|
+
availableQuantity: number;
|
|
47092
|
+
/**
|
|
47093
|
+
* Locations
|
|
47094
|
+
* @default []
|
|
47095
|
+
*/
|
|
47096
|
+
locations: components["schemas"]["ItemLocationSchema"][];
|
|
47097
|
+
};
|
|
46799
47098
|
};
|
|
46800
47099
|
responses: never;
|
|
46801
47100
|
parameters: never;
|
|
@@ -63080,7 +63379,16 @@ export interface operations {
|
|
|
63080
63379
|
[name: string]: unknown;
|
|
63081
63380
|
};
|
|
63082
63381
|
content: {
|
|
63083
|
-
"application/json": components["schemas"]["
|
|
63382
|
+
"application/json": components["schemas"]["RetrievePosSettings"];
|
|
63383
|
+
};
|
|
63384
|
+
};
|
|
63385
|
+
/** @description Bad Request */
|
|
63386
|
+
400: {
|
|
63387
|
+
headers: {
|
|
63388
|
+
[name: string]: unknown;
|
|
63389
|
+
};
|
|
63390
|
+
content: {
|
|
63391
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
63084
63392
|
};
|
|
63085
63393
|
};
|
|
63086
63394
|
/** @description Forbidden */
|
|
@@ -63089,7 +63397,7 @@ export interface operations {
|
|
|
63089
63397
|
[name: string]: unknown;
|
|
63090
63398
|
};
|
|
63091
63399
|
content: {
|
|
63092
|
-
"application/json": components["schemas"]["
|
|
63400
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
63093
63401
|
};
|
|
63094
63402
|
};
|
|
63095
63403
|
/** @description Not Found */
|
|
@@ -63098,12 +63406,21 @@ export interface operations {
|
|
|
63098
63406
|
[name: string]: unknown;
|
|
63099
63407
|
};
|
|
63100
63408
|
content: {
|
|
63101
|
-
"application/json": components["schemas"]["
|
|
63409
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
63410
|
+
};
|
|
63411
|
+
};
|
|
63412
|
+
/** @description Internal Server Error */
|
|
63413
|
+
500: {
|
|
63414
|
+
headers: {
|
|
63415
|
+
[name: string]: unknown;
|
|
63416
|
+
};
|
|
63417
|
+
content: {
|
|
63418
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
63102
63419
|
};
|
|
63103
63420
|
};
|
|
63104
63421
|
};
|
|
63105
63422
|
};
|
|
63106
|
-
|
|
63423
|
+
erp_settings_pos_settings_views_update_pos_settings: {
|
|
63107
63424
|
parameters: {
|
|
63108
63425
|
query?: never;
|
|
63109
63426
|
header?: never;
|
|
@@ -63112,7 +63429,7 @@ export interface operations {
|
|
|
63112
63429
|
};
|
|
63113
63430
|
requestBody: {
|
|
63114
63431
|
content: {
|
|
63115
|
-
"application/json": components["schemas"]["
|
|
63432
|
+
"application/json": components["schemas"]["CreateUpdatePosSettings"];
|
|
63116
63433
|
};
|
|
63117
63434
|
};
|
|
63118
63435
|
responses: {
|
|
@@ -63122,7 +63439,7 @@ export interface operations {
|
|
|
63122
63439
|
[name: string]: unknown;
|
|
63123
63440
|
};
|
|
63124
63441
|
content: {
|
|
63125
|
-
"application/json": components["schemas"]["
|
|
63442
|
+
"application/json": components["schemas"]["RetrievePosSettings"];
|
|
63126
63443
|
};
|
|
63127
63444
|
};
|
|
63128
63445
|
/** @description Bad Request */
|
|
@@ -63140,7 +63457,7 @@ export interface operations {
|
|
|
63140
63457
|
[name: string]: unknown;
|
|
63141
63458
|
};
|
|
63142
63459
|
content: {
|
|
63143
|
-
"application/json": components["schemas"]["
|
|
63460
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
63144
63461
|
};
|
|
63145
63462
|
};
|
|
63146
63463
|
/** @description Not Found */
|
|
@@ -63149,12 +63466,21 @@ export interface operations {
|
|
|
63149
63466
|
[name: string]: unknown;
|
|
63150
63467
|
};
|
|
63151
63468
|
content: {
|
|
63152
|
-
"application/json": components["schemas"]["
|
|
63469
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
63470
|
+
};
|
|
63471
|
+
};
|
|
63472
|
+
/** @description Internal Server Error */
|
|
63473
|
+
500: {
|
|
63474
|
+
headers: {
|
|
63475
|
+
[name: string]: unknown;
|
|
63476
|
+
};
|
|
63477
|
+
content: {
|
|
63478
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
63153
63479
|
};
|
|
63154
63480
|
};
|
|
63155
63481
|
};
|
|
63156
63482
|
};
|
|
63157
|
-
|
|
63483
|
+
erp_settings_pos_settings_views_create_pos_settings: {
|
|
63158
63484
|
parameters: {
|
|
63159
63485
|
query?: never;
|
|
63160
63486
|
header?: never;
|
|
@@ -63163,17 +63489,17 @@ export interface operations {
|
|
|
63163
63489
|
};
|
|
63164
63490
|
requestBody: {
|
|
63165
63491
|
content: {
|
|
63166
|
-
"application/json": components["schemas"]["
|
|
63492
|
+
"application/json": components["schemas"]["CreateUpdatePosSettings"];
|
|
63167
63493
|
};
|
|
63168
63494
|
};
|
|
63169
63495
|
responses: {
|
|
63170
|
-
/** @description
|
|
63171
|
-
|
|
63496
|
+
/** @description Created */
|
|
63497
|
+
201: {
|
|
63172
63498
|
headers: {
|
|
63173
63499
|
[name: string]: unknown;
|
|
63174
63500
|
};
|
|
63175
63501
|
content: {
|
|
63176
|
-
"application/json": components["schemas"]["
|
|
63502
|
+
"application/json": components["schemas"]["RetrievePosSettings"];
|
|
63177
63503
|
};
|
|
63178
63504
|
};
|
|
63179
63505
|
/** @description Bad Request */
|
|
@@ -63191,16 +63517,16 @@ export interface operations {
|
|
|
63191
63517
|
[name: string]: unknown;
|
|
63192
63518
|
};
|
|
63193
63519
|
content: {
|
|
63194
|
-
"application/json": components["schemas"]["
|
|
63520
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
63195
63521
|
};
|
|
63196
63522
|
};
|
|
63197
|
-
/** @description
|
|
63198
|
-
|
|
63523
|
+
/** @description Internal Server Error */
|
|
63524
|
+
500: {
|
|
63199
63525
|
headers: {
|
|
63200
63526
|
[name: string]: unknown;
|
|
63201
63527
|
};
|
|
63202
63528
|
content: {
|
|
63203
|
-
"application/json": components["schemas"]["
|
|
63529
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
63204
63530
|
};
|
|
63205
63531
|
};
|
|
63206
63532
|
};
|
|
@@ -83778,4 +84104,70 @@ export interface operations {
|
|
|
83778
84104
|
};
|
|
83779
84105
|
};
|
|
83780
84106
|
};
|
|
84107
|
+
reports_inventoryreport_views_get_item_availability_report: {
|
|
84108
|
+
parameters: {
|
|
84109
|
+
query?: {
|
|
84110
|
+
/** @description List of branch IDs */
|
|
84111
|
+
branches?: number[] | null;
|
|
84112
|
+
/** @description List of warehouse IDs */
|
|
84113
|
+
warehouses?: number[] | null;
|
|
84114
|
+
/** @description List of family IDs */
|
|
84115
|
+
families?: number[] | null;
|
|
84116
|
+
/** @description List of brand IDs */
|
|
84117
|
+
brands?: number[] | null;
|
|
84118
|
+
/** @description List of tag IDs */
|
|
84119
|
+
tags?: number[] | null;
|
|
84120
|
+
/** @description List of category IDs */
|
|
84121
|
+
categories?: number[] | null;
|
|
84122
|
+
/** @description List of item IDs */
|
|
84123
|
+
items?: number[] | null;
|
|
84124
|
+
/** @description List of package IDs */
|
|
84125
|
+
packages?: string[] | null;
|
|
84126
|
+
/** @description List of UOM IDs */
|
|
84127
|
+
unit_of_measure?: number[] | null;
|
|
84128
|
+
};
|
|
84129
|
+
header?: never;
|
|
84130
|
+
path?: never;
|
|
84131
|
+
cookie?: never;
|
|
84132
|
+
};
|
|
84133
|
+
requestBody?: never;
|
|
84134
|
+
responses: {
|
|
84135
|
+
/** @description OK */
|
|
84136
|
+
200: {
|
|
84137
|
+
headers: {
|
|
84138
|
+
[name: string]: unknown;
|
|
84139
|
+
};
|
|
84140
|
+
content: {
|
|
84141
|
+
"application/json": components["schemas"]["ItemAvailabilityReportSchema"][];
|
|
84142
|
+
};
|
|
84143
|
+
};
|
|
84144
|
+
/** @description Bad Request */
|
|
84145
|
+
400: {
|
|
84146
|
+
headers: {
|
|
84147
|
+
[name: string]: unknown;
|
|
84148
|
+
};
|
|
84149
|
+
content: {
|
|
84150
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
84151
|
+
};
|
|
84152
|
+
};
|
|
84153
|
+
/** @description Forbidden */
|
|
84154
|
+
403: {
|
|
84155
|
+
headers: {
|
|
84156
|
+
[name: string]: unknown;
|
|
84157
|
+
};
|
|
84158
|
+
content: {
|
|
84159
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
84160
|
+
};
|
|
84161
|
+
};
|
|
84162
|
+
/** @description Internal Server Error */
|
|
84163
|
+
500: {
|
|
84164
|
+
headers: {
|
|
84165
|
+
[name: string]: unknown;
|
|
84166
|
+
};
|
|
84167
|
+
content: {
|
|
84168
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
84169
|
+
};
|
|
84170
|
+
};
|
|
84171
|
+
};
|
|
84172
|
+
};
|
|
83781
84173
|
}
|