@erp-galoper/types 1.0.1952 → 1.0.1954

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 +9 -1
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -7325,6 +7325,7 @@ export interface paths {
7325
7325
  * - userDoesNotExist
7326
7326
  * - minimumResponsesMinValueNotReached
7327
7327
  * - noDecisionMaker
7328
+ * - decisionMakerMustBeRequired
7328
7329
  * - indexMinValueNotReached
7329
7330
  * - 403: permissionDenied
7330
7331
  * - 500: serverError
@@ -7363,6 +7364,7 @@ export interface paths {
7363
7364
  * - userDoesNotExist
7364
7365
  * - minimumResponsesMinValueNotReached
7365
7366
  * - noDecisionMaker
7367
+ * - decisionMakerMustBeRequired
7366
7368
  * - indexMinValueNotReached
7367
7369
  * - duplicateIndices
7368
7370
  * - 403: permissionDenied
@@ -37458,7 +37460,10 @@ export interface components {
37458
37460
  * Format: uuid
37459
37461
  */
37460
37462
  user: string;
37461
- /** Isrequired */
37463
+ /**
37464
+ * Isrequired
37465
+ * @default false
37466
+ */
37462
37467
  isRequired: boolean;
37463
37468
  /**
37464
37469
  * Isdecisionmaker
@@ -61522,6 +61527,7 @@ export interface components {
61522
61527
  /** Phone1 */
61523
61528
  phone1?: string | null;
61524
61529
  customerType: components["schemas"]["CustomerClassificationTypeEnum"];
61530
+ type: components["schemas"]["TypeOfCustomerValue"];
61525
61531
  currency?: components["schemas"]["CommonCurrency"] | null;
61526
61532
  };
61527
61533
  /** SalesByCustomerListSchema */
@@ -63332,6 +63338,8 @@ export interface components {
63332
63338
  */
63333
63339
  date: string;
63334
63340
  customer: components["schemas"]["CustomerSummarySchema"];
63341
+ /** @description The customer's first branch, when available. */
63342
+ customerBranch?: components["schemas"]["CustomerBranchSharedSchema"] | null;
63335
63343
  item: components["schemas"]["ItemSummarySchema"];
63336
63344
  /** Productidentification */
63337
63345
  productIdentification?: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1952",
3
+ "version": "1.0.1954",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],