@erp-galoper/types 1.0.1165 → 1.0.1166

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 +49 -45
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -25984,7 +25984,7 @@ export interface components {
25984
25984
  options?: components["schemas"]["Option"][];
25985
25985
  /** Isrequired */
25986
25986
  isRequired: boolean;
25987
- documentContentType: components["schemas"]["common__schemas__CombinedModelName"] | null;
25987
+ documentContentType?: components["schemas"]["common__schemas__CombinedModelName"] | null;
25988
25988
  };
25989
25989
  /** CreateUpdateCustomField */
25990
25990
  CreateUpdateCustomField: {
@@ -36803,6 +36803,8 @@ export interface components {
36803
36803
  project: components["schemas"]["ProjectSummaryInfo"] | null;
36804
36804
  /** Items */
36805
36805
  items: components["schemas"]["PurchaseOrderItemsSchema"][];
36806
+ /** Customfields */
36807
+ customFields?: components["schemas"]["RetrieveCustomFieldValue"][];
36806
36808
  };
36807
36809
  /** PurchaseQuotationSharedSchema */
36808
36810
  PurchaseQuotationSharedSchema: {
@@ -36830,6 +36832,24 @@ export interface components {
36830
36832
  * @enum {string}
36831
36833
  */
36832
36834
  ReceivingStatusValueChoices: "not_received" | "partially_received" | "received";
36835
+ /** RetrieveCustomFieldValue */
36836
+ RetrieveCustomFieldValue: {
36837
+ /**
36838
+ * Id
36839
+ * Format: uuid
36840
+ */
36841
+ id: string;
36842
+ /** Fields */
36843
+ fields?: components["schemas"]["RetrieveCustomField"][];
36844
+ /** Value */
36845
+ value: string | string[] | components["schemas"]["Option"][] | number | boolean | null;
36846
+ documentContentType: components["schemas"]["common__schemas__CombinedModelName"];
36847
+ /**
36848
+ * Documentid
36849
+ * Format: uuid
36850
+ */
36851
+ documentId: string;
36852
+ };
36833
36853
  /** CreatePurchaseOrderItemsSchema */
36834
36854
  CreatePurchaseOrderItemsSchema: {
36835
36855
  /**
@@ -36963,6 +36983,34 @@ export interface components {
36963
36983
  project?: number;
36964
36984
  /** Items */
36965
36985
  items: components["schemas"]["CreatePurchaseOrderItemsSchema"][];
36986
+ /** Customfields */
36987
+ customFields?: components["schemas"]["CreateUpdateCustomFieldValues"][];
36988
+ };
36989
+ /** CreateUpdateCustomFieldValues */
36990
+ CreateUpdateCustomFieldValues: {
36991
+ /**
36992
+ * Id
36993
+ * @description This field is required when updating an existing custom field value
36994
+ */
36995
+ id?: string | null;
36996
+ /**
36997
+ * Fields
36998
+ * @description "
36999
+ * - This field is only required in create
37000
+ * - Custom field definition is unchangeable
37001
+ * - To update the custom field related to it, delete the whole value and create a new one
37002
+ */
37003
+ fields: string[];
37004
+ /**
37005
+ * Value
37006
+ * @description - str: visible, required, and editable only when Custom Field type is: text, textarea, url, email, or phone
37007
+ * - List[str]: visible, required, and editable only when Custom Field type is file attachment
37008
+ * - List[Option]: visible, required, and editable only when Custom Field type is multi-select, dropdown
37009
+ * - float: visible, required, and editable only when Custom Field type is number
37010
+ * - datetime: visible, required, and editable only when Custom Field type is datetime
37011
+ * - bool: visible, required, and editable only when Custom Field type is checkbox
37012
+ */
37013
+ value: string | string[] | components["schemas"]["Option"][] | number | boolean | null;
36966
37014
  };
36967
37015
  /** PurchaseOrderListSchema */
36968
37016
  PurchaseOrderListSchema: {
@@ -50641,24 +50689,6 @@ export interface components {
50641
50689
  /** Results */
50642
50690
  results?: components["schemas"]["TasksGroupedByStatus"][];
50643
50691
  };
50644
- /** RetrieveCustomFieldValue */
50645
- RetrieveCustomFieldValue: {
50646
- /**
50647
- * Id
50648
- * Format: uuid
50649
- */
50650
- id: string;
50651
- /** Fields */
50652
- fields?: components["schemas"]["RetrieveCustomField"][];
50653
- /** Value */
50654
- value: string | string[] | components["schemas"]["Option"][] | number | boolean | null;
50655
- documentContentType: components["schemas"]["common__schemas__CombinedModelName"];
50656
- /**
50657
- * Documentid
50658
- * Format: uuid
50659
- */
50660
- documentId: string;
50661
- };
50662
50692
  /** RetrieveTask */
50663
50693
  RetrieveTask: {
50664
50694
  /**
@@ -50742,32 +50772,6 @@ export interface components {
50742
50772
  /** Results */
50743
50773
  results?: components["schemas"]["RetrieveTask"][];
50744
50774
  };
50745
- /** CreateUpdateCustomFieldValues */
50746
- CreateUpdateCustomFieldValues: {
50747
- /**
50748
- * Id
50749
- * @description This field is required when updating an existing custom field value
50750
- */
50751
- id?: string | null;
50752
- /**
50753
- * Fields
50754
- * @description "
50755
- * - This field is only required in create
50756
- * - Custom field definition is unchangeable
50757
- * - To update the custom field related to it, delete the whole value and create a new one
50758
- */
50759
- fields: string[];
50760
- /**
50761
- * Value
50762
- * @description - str: visible, required, and editable only when Custom Field type is: text, textarea, url, email, or phone
50763
- * - List[str]: visible, required, and editable only when Custom Field type is file attachment
50764
- * - List[Option]: visible, required, and editable only when Custom Field type is multi-select, dropdown
50765
- * - float: visible, required, and editable only when Custom Field type is number
50766
- * - datetime: visible, required, and editable only when Custom Field type is datetime
50767
- * - bool: visible, required, and editable only when Custom Field type is checkbox
50768
- */
50769
- value: string | string[] | components["schemas"]["Option"][] | number | boolean | null;
50770
- };
50771
50775
  /** CreateUpdateTask */
50772
50776
  CreateUpdateTask: {
50773
50777
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1165",
3
+ "version": "1.0.1166",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],