@erp-galoper/types 1.0.1204 → 1.0.1205
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 +15 -0
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -46987,6 +46987,11 @@ export interface components {
|
|
|
46987
46987
|
* @description Start date for revenue recognition
|
|
46988
46988
|
*/
|
|
46989
46989
|
recognitionStartDate: string | null;
|
|
46990
|
+
/**
|
|
46991
|
+
* Postingstartdate
|
|
46992
|
+
* @description Posting start date for deferred revenue
|
|
46993
|
+
*/
|
|
46994
|
+
postingStartDate: string | null;
|
|
46990
46995
|
/**
|
|
46991
46996
|
* Datecreated
|
|
46992
46997
|
* Format: date-time
|
|
@@ -47309,6 +47314,11 @@ export interface components {
|
|
|
47309
47314
|
* @description Start date for revenue recognition, required if isDeferred is True, should be greater than or equal date of document
|
|
47310
47315
|
*/
|
|
47311
47316
|
recognitionStartDate?: string;
|
|
47317
|
+
/**
|
|
47318
|
+
* Postingstartdate
|
|
47319
|
+
* @description Posting start date for deferred revenue, should be greater than or equal to recognition start date
|
|
47320
|
+
*/
|
|
47321
|
+
postingStartDate?: string | null;
|
|
47312
47322
|
/**
|
|
47313
47323
|
* Customer
|
|
47314
47324
|
* @description - get customer using route /api/v1/customers/?type=children and filter by isActive equal to true
|
|
@@ -47490,6 +47500,11 @@ export interface components {
|
|
|
47490
47500
|
* @description Start date for revenue recognition
|
|
47491
47501
|
*/
|
|
47492
47502
|
recognitionStartDate: string | null;
|
|
47503
|
+
/**
|
|
47504
|
+
* Postingstartdate
|
|
47505
|
+
* @description Posting start date for deferred revenue
|
|
47506
|
+
*/
|
|
47507
|
+
postingStartDate: string | null;
|
|
47493
47508
|
/**
|
|
47494
47509
|
* Datecreated
|
|
47495
47510
|
* Format: date-time
|