@erp-galoper/types 1.0.327 → 1.0.329

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 +11 -7
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -20400,9 +20400,15 @@ export interface components {
20400
20400
  firstName?: string | null;
20401
20401
  /** Lastname */
20402
20402
  lastName?: string | null;
20403
- /** Username */
20403
+ /**
20404
+ * Username
20405
+ * @description disabled when user is owner
20406
+ */
20404
20407
  username?: string | null;
20405
- /** Email */
20408
+ /**
20409
+ * Email
20410
+ * @description disabled when user is owner
20411
+ */
20406
20412
  email?: string | null;
20407
20413
  /** Language */
20408
20414
  language?: string | null;
@@ -26714,7 +26720,7 @@ export interface components {
26714
26720
  /**
26715
26721
  * Id
26716
26722
  * Format: uuid
26717
- * @example 5c450264-c541-41f6-b1b4-e594ce4b496b
26723
+ * @example a378f65c-741b-4724-88e4-c322c1f04a10
26718
26724
  */
26719
26725
  id: string;
26720
26726
  /**
@@ -60258,10 +60264,8 @@ export interface operations {
60258
60264
  erp_settings_accountingsetting_tax_views_list_taxes: {
60259
60265
  parameters: {
60260
60266
  query?: {
60261
- /** @description Page number */
60262
- page?: number;
60263
- /** @description Page size */
60264
- pageSize?: number;
60267
+ /** @description Search by tax name */
60268
+ search?: string | null;
60265
60269
  };
60266
60270
  header?: never;
60267
60271
  path?: never;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.327",
3
+ "version": "1.0.329",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],