@erp-galoper/types 1.0.1203 → 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.
Files changed (2) hide show
  1. package/openapi.ts +19 -0
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -26899,6 +26899,8 @@ export interface components {
26899
26899
  type: components["schemas"]["UnitOfMeasureTypeEnum"][];
26900
26900
  /** Canacceptdecimal */
26901
26901
  canAcceptDecimal: boolean;
26902
+ /** Default */
26903
+ default: boolean;
26902
26904
  };
26903
26905
  /** UnitOfMeasureResponseSchema */
26904
26906
  UnitOfMeasureResponseSchema: {
@@ -26960,6 +26962,8 @@ export interface components {
26960
26962
  type: components["schemas"]["UnitOfMeasureTypeEnum"][];
26961
26963
  /** Canacceptdecimal */
26962
26964
  canAcceptDecimal: boolean;
26965
+ /** Default */
26966
+ default: boolean;
26963
26967
  /** Candelete */
26964
26968
  canDelete: boolean;
26965
26969
  };
@@ -46983,6 +46987,11 @@ export interface components {
46983
46987
  * @description Start date for revenue recognition
46984
46988
  */
46985
46989
  recognitionStartDate: string | null;
46990
+ /**
46991
+ * Postingstartdate
46992
+ * @description Posting start date for deferred revenue
46993
+ */
46994
+ postingStartDate: string | null;
46986
46995
  /**
46987
46996
  * Datecreated
46988
46997
  * Format: date-time
@@ -47305,6 +47314,11 @@ export interface components {
47305
47314
  * @description Start date for revenue recognition, required if isDeferred is True, should be greater than or equal date of document
47306
47315
  */
47307
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;
47308
47322
  /**
47309
47323
  * Customer
47310
47324
  * @description - get customer using route /api/v1/customers/?type=children and filter by isActive equal to true
@@ -47486,6 +47500,11 @@ export interface components {
47486
47500
  * @description Start date for revenue recognition
47487
47501
  */
47488
47502
  recognitionStartDate: string | null;
47503
+ /**
47504
+ * Postingstartdate
47505
+ * @description Posting start date for deferred revenue
47506
+ */
47507
+ postingStartDate: string | null;
47489
47508
  /**
47490
47509
  * Datecreated
47491
47510
  * Format: date-time
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1203",
3
+ "version": "1.0.1205",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],