@erp-galoper/types 1.0.332 → 1.0.334

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 +23 -25
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -26720,7 +26720,7 @@ export interface components {
26720
26720
  /**
26721
26721
  * Id
26722
26722
  * Format: uuid
26723
- * @example 57bf5ec1-4d52-4f84-b3c1-2a3e70bc2e4d
26723
+ * @example 48691c7f-6f12-4ffa-a97e-cda46c2ad28a
26724
26724
  */
26725
26725
  id: string;
26726
26726
  /**
@@ -27052,6 +27052,24 @@ export interface components {
27052
27052
  /** Price */
27053
27053
  price: number | string;
27054
27054
  };
27055
+ /** CustomerSharedSchema */
27056
+ CustomerSharedSchema: {
27057
+ /** Id */
27058
+ id: number;
27059
+ /** Name */
27060
+ name: string;
27061
+ /** Accountnumber */
27062
+ accountNumber: string;
27063
+ /** Phone */
27064
+ phone?: string | null;
27065
+ type: components["schemas"]["TypeOfCustomerValue"];
27066
+ currency: components["schemas"]["CurrencySummaryInfo"] | null;
27067
+ /**
27068
+ * Currencies
27069
+ * @default []
27070
+ */
27071
+ currencies: components["schemas"]["CurrencySummaryInfo"][];
27072
+ };
27055
27073
  /** ListShippingMethods */
27056
27074
  ListShippingMethods: {
27057
27075
  info: components["schemas"]["PageInfoSchema"];
@@ -27070,7 +27088,7 @@ export interface components {
27070
27088
  id: number;
27071
27089
  /** Country */
27072
27090
  country: string;
27073
- customer: components["schemas"]["CustomerForListSchema"];
27091
+ customer: components["schemas"]["CustomerSharedSchema"];
27074
27092
  /** Zones */
27075
27093
  zones: components["schemas"]["ZonePricingSchema"][];
27076
27094
  /** Candelete */
@@ -27142,7 +27160,7 @@ export interface components {
27142
27160
  id: number;
27143
27161
  /** Country */
27144
27162
  country: string;
27145
- customer: components["schemas"]["CustomerForListSchema"];
27163
+ customer: components["schemas"]["CustomerSharedSchema"];
27146
27164
  /** Zones */
27147
27165
  zones: components["schemas"]["ZonePricingSchema"][];
27148
27166
  };
@@ -34565,24 +34583,6 @@ export interface components {
34565
34583
  * @enum {string}
34566
34584
  */
34567
34585
  AppliesToSchema: "customer" | "customerGroup";
34568
- /** CustomerSharedSchema */
34569
- CustomerSharedSchema: {
34570
- /** Id */
34571
- id: number;
34572
- /** Name */
34573
- name: string;
34574
- /** Accountnumber */
34575
- accountNumber: string;
34576
- /** Phone */
34577
- phone?: string | null;
34578
- type: components["schemas"]["TypeOfCustomerValue"];
34579
- currency: components["schemas"]["CurrencySummaryInfo"] | null;
34580
- /**
34581
- * Currencies
34582
- * @default []
34583
- */
34584
- currencies: components["schemas"]["CurrencySummaryInfo"][];
34585
- };
34586
34586
  /** ItemPackageSharedSchema */
34587
34587
  ItemPackageSharedSchema: {
34588
34588
  /**
@@ -52238,10 +52238,8 @@ export interface operations {
52238
52238
  hr_views_list_positions: {
52239
52239
  parameters: {
52240
52240
  query?: {
52241
- /** @description Page number */
52242
- page?: number;
52243
- /** @description Page size */
52244
- pageSize?: number;
52241
+ /** @description Search by position title */
52242
+ search?: string | null;
52245
52243
  };
52246
52244
  header?: never;
52247
52245
  path?: never;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.332",
3
+ "version": "1.0.334",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],