@erp-galoper/types 1.0.98 → 1.0.100
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 +18 -8
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -14124,6 +14124,7 @@ export interface paths {
|
|
|
14124
14124
|
* - noBranchAccess
|
|
14125
14125
|
*
|
|
14126
14126
|
* permission key: salesquotation: ["change"]
|
|
14127
|
+
* - user is not allowed to edit document if isDeffered=True and recognition start date less than today
|
|
14127
14128
|
*/
|
|
14128
14129
|
put: operations["sales_quotation_views_update_sales_quotation"];
|
|
14129
14130
|
post?: never;
|
|
@@ -15303,6 +15304,7 @@ export interface paths {
|
|
|
15303
15304
|
* - noBranchAccess
|
|
15304
15305
|
*
|
|
15305
15306
|
* permission key: salesorder: ["change"]
|
|
15307
|
+
* - user is not allowed to edit document if isDeffered=True and recognition start date less than today
|
|
15306
15308
|
*/
|
|
15307
15309
|
put: operations["sales_order_views_update_sales_order"];
|
|
15308
15310
|
post?: never;
|
|
@@ -16234,6 +16236,7 @@ export interface paths {
|
|
|
16234
16236
|
* - noBranchAccess
|
|
16235
16237
|
*
|
|
16236
16238
|
* permission key: salesinvoice: ["change"]
|
|
16239
|
+
* - user is not allowed to edit document if isDeffered=True and recognition start date less than today
|
|
16237
16240
|
*/
|
|
16238
16241
|
put: operations["sales_invoice_views_update_sales_invoice"];
|
|
16239
16242
|
post?: never;
|
|
@@ -26478,7 +26481,7 @@ export interface components {
|
|
|
26478
26481
|
/**
|
|
26479
26482
|
* Id
|
|
26480
26483
|
* Format: uuid
|
|
26481
|
-
* @example
|
|
26484
|
+
* @example ac268125-2068-4efb-9f29-a6c97ccdb7c9
|
|
26482
26485
|
*/
|
|
26483
26486
|
id: string;
|
|
26484
26487
|
/**
|
|
@@ -36573,6 +36576,13 @@ export interface components {
|
|
|
36573
36576
|
commissionValue: number;
|
|
36574
36577
|
currency: components["schemas"]["CurrencySummaryInfo"] | null;
|
|
36575
36578
|
};
|
|
36579
|
+
/** CustomerBranchSharedSchema */
|
|
36580
|
+
CustomerBranchSharedSchema: {
|
|
36581
|
+
/** Id */
|
|
36582
|
+
id: number;
|
|
36583
|
+
/** Name */
|
|
36584
|
+
name: string;
|
|
36585
|
+
};
|
|
36576
36586
|
/**
|
|
36577
36587
|
* NonInventoryItemType
|
|
36578
36588
|
* @enum {string}
|
|
@@ -36769,7 +36779,7 @@ export interface components {
|
|
|
36769
36779
|
/** Serialnumber */
|
|
36770
36780
|
serialNumber: string;
|
|
36771
36781
|
customer: components["schemas"]["CustomerSharedSchema"];
|
|
36772
|
-
customerBranch?: components["schemas"]["
|
|
36782
|
+
customerBranch?: components["schemas"]["CustomerBranchSharedSchema"] | null;
|
|
36773
36783
|
/**
|
|
36774
36784
|
* Date
|
|
36775
36785
|
* Format: date
|
|
@@ -36991,7 +37001,7 @@ export interface components {
|
|
|
36991
37001
|
/**
|
|
36992
37002
|
* Recognitionstartdate
|
|
36993
37003
|
* Format: date
|
|
36994
|
-
* @description Start date for revenue recognition, required if isDeferred is True
|
|
37004
|
+
* @description Start date for revenue recognition, required if isDeferred is True, should be greater than or equal date of today
|
|
36995
37005
|
*/
|
|
36996
37006
|
recognitionStartDate?: string;
|
|
36997
37007
|
/**
|
|
@@ -37140,7 +37150,7 @@ export interface components {
|
|
|
37140
37150
|
/** Serialnumber */
|
|
37141
37151
|
serialNumber: string;
|
|
37142
37152
|
customer: components["schemas"]["CustomerSharedSchema"];
|
|
37143
|
-
customerBranch?: components["schemas"]["
|
|
37153
|
+
customerBranch?: components["schemas"]["CustomerBranchSharedSchema"] | null;
|
|
37144
37154
|
/**
|
|
37145
37155
|
* Date
|
|
37146
37156
|
* Format: date
|
|
@@ -38772,7 +38782,7 @@ export interface components {
|
|
|
38772
38782
|
serialNumber: string;
|
|
38773
38783
|
customer: components["schemas"]["CustomerSharedSchema"];
|
|
38774
38784
|
/** @description Details about the customer's branch. */
|
|
38775
|
-
customerBranch: components["schemas"]["
|
|
38785
|
+
customerBranch: components["schemas"]["CustomerBranchSharedSchema"] | null;
|
|
38776
38786
|
/** @description Details about the warehouse where the order is managed, if applicable. */
|
|
38777
38787
|
warehouse: components["schemas"]["WarehouseSummaryInfo"] | null;
|
|
38778
38788
|
/** @description The sales quotation linked to this order, if applicable. */
|
|
@@ -39044,7 +39054,7 @@ export interface components {
|
|
|
39044
39054
|
/**
|
|
39045
39055
|
* Recognitionstartdate
|
|
39046
39056
|
* Format: date
|
|
39047
|
-
* @description Start date for revenue recognition, required if isDeferred is True
|
|
39057
|
+
* @description Start date for revenue recognition, required if isDeferred is True, should be greater than or equal date of today
|
|
39048
39058
|
*/
|
|
39049
39059
|
recognitionStartDate?: string;
|
|
39050
39060
|
/**
|
|
@@ -40205,7 +40215,7 @@ export interface components {
|
|
|
40205
40215
|
serialNumber: string;
|
|
40206
40216
|
customer: components["schemas"]["CustomerSharedSchema"];
|
|
40207
40217
|
/** @description Details about the customer's branch. */
|
|
40208
|
-
customerBranch: components["schemas"]["
|
|
40218
|
+
customerBranch: components["schemas"]["CustomerBranchSharedSchema"] | null;
|
|
40209
40219
|
/** @description Details about the warehouse where the invoice is managed, if applicable. */
|
|
40210
40220
|
warehouse: components["schemas"]["WarehouseSummaryInfo"] | null;
|
|
40211
40221
|
/** @description The sales order linked to this invoice, if applicable. */
|
|
@@ -40471,7 +40481,7 @@ export interface components {
|
|
|
40471
40481
|
/**
|
|
40472
40482
|
* Recognitionstartdate
|
|
40473
40483
|
* Format: date
|
|
40474
|
-
* @description Start date for revenue recognition, required if isDeferred is True
|
|
40484
|
+
* @description Start date for revenue recognition, required if isDeferred is True, should be greater than or equal date of today
|
|
40475
40485
|
*/
|
|
40476
40486
|
recognitionStartDate?: string;
|
|
40477
40487
|
/**
|