@erp-galoper/types 1.0.331 → 1.0.333

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 518451a0-0e83-4bf1-8dec-5dec2c8f4cff
26723
+ * @example 496a9278-0dea-41dc-b7cd-597bd0cc6b03
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
  /**
@@ -45885,10 +45885,8 @@ export interface operations {
45885
45885
  parameters: {
45886
45886
  query: {
45887
45887
  branchId: number;
45888
- /** @description Page number */
45889
- page?: number;
45890
- /** @description Page size */
45891
- pageSize?: number;
45888
+ /** @description Search by warehouse name */
45889
+ search?: string | null;
45892
45890
  };
45893
45891
  header?: never;
45894
45892
  path?: never;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.331",
3
+ "version": "1.0.333",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],