@erp-galoper/types 1.0.39 → 1.0.41

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 +14 -15
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -26115,7 +26115,7 @@ export interface components {
26115
26115
  /**
26116
26116
  * Id
26117
26117
  * Format: uuid
26118
- * @example 4883854b-1679-4386-9947-88abecd07a15
26118
+ * @example 4823d3c9-1a4a-49fd-9d96-8b2128e58074
26119
26119
  */
26120
26120
  id: string;
26121
26121
  /**
@@ -34153,7 +34153,7 @@ export interface components {
34153
34153
  */
34154
34154
  id: string;
34155
34155
  branch: components["schemas"]["BranchSummaryInfo"];
34156
- salesPerson: components["schemas"]["SalesPersonSummaryInfo"];
34156
+ salesPerson: components["schemas"]["SalesPersonSharedSchema"];
34157
34157
  /**
34158
34158
  * Startdate
34159
34159
  * Format: date
@@ -34214,8 +34214,8 @@ export interface components {
34214
34214
  /** Serialnumber */
34215
34215
  serialNumber: string;
34216
34216
  };
34217
- /** SalesPersonSummaryInfo */
34218
- SalesPersonSummaryInfo: {
34217
+ /** SalesPersonSharedSchema */
34218
+ SalesPersonSharedSchema: {
34219
34219
  /**
34220
34220
  * Id
34221
34221
  * Format: uuid
@@ -34223,6 +34223,7 @@ export interface components {
34223
34223
  id: string;
34224
34224
  /** Name */
34225
34225
  name: string;
34226
+ relatedParty: components["schemas"]["RelatedPartyInfo"];
34226
34227
  };
34227
34228
  /** CreateClosingCommission */
34228
34229
  CreateClosingCommission: {
@@ -34275,7 +34276,7 @@ export interface components {
34275
34276
  */
34276
34277
  id: string;
34277
34278
  branch: components["schemas"]["BranchSummaryInfo"];
34278
- salesPerson: components["schemas"]["SalesPersonSummaryInfo"];
34279
+ salesPerson: components["schemas"]["SalesPersonSharedSchema"];
34279
34280
  /**
34280
34281
  * Startdate
34281
34282
  * Format: date
@@ -34551,16 +34552,6 @@ export interface components {
34551
34552
  /** Payments */
34552
34553
  payments: components["schemas"]["CommissionPayoutItemDetailSchema"][];
34553
34554
  };
34554
- /** SalesPersonSharedSchema */
34555
- SalesPersonSharedSchema: {
34556
- /**
34557
- * Id
34558
- * Format: uuid
34559
- */
34560
- id: string;
34561
- /** Name */
34562
- name: string;
34563
- };
34564
34555
  /** CommissionPayoutCreateSchema */
34565
34556
  CommissionPayoutCreateSchema: {
34566
34557
  /** Password */
@@ -34930,6 +34921,8 @@ export interface components {
34930
34921
  attachments: string[] | null;
34931
34922
  /** Candelete */
34932
34923
  canDelete: boolean;
34924
+ /** Salespersons */
34925
+ salesPersons: components["schemas"]["SalesPersonSharedSchema"][];
34933
34926
  /** Commissionlevels */
34934
34927
  commissionLevels: components["schemas"]["CommissionLevelsDetailSchema"][];
34935
34928
  };
@@ -35134,6 +35127,8 @@ export interface components {
35134
35127
  attachments: string[] | null;
35135
35128
  /** Candelete */
35136
35129
  canDelete: boolean;
35130
+ /** Salespersons */
35131
+ salesPersons: components["schemas"]["SalesPersonSharedSchema"][];
35137
35132
  };
35138
35133
  /** CommissionListSchema */
35139
35134
  CommissionListSchema: {
@@ -36443,6 +36438,7 @@ export interface components {
36443
36438
  * @default false
36444
36439
  */
36445
36440
  canDelete: boolean;
36441
+ salesPerson: components["schemas"]["SalesPersonSharedSchema"] | null;
36446
36442
  /**
36447
36443
  * Items
36448
36444
  * @default []
@@ -36808,6 +36804,7 @@ export interface components {
36808
36804
  * @default false
36809
36805
  */
36810
36806
  canDelete: boolean;
36807
+ salesPerson: components["schemas"]["SalesPersonSharedSchema"] | null;
36811
36808
  };
36812
36809
  /** ContactSegmentationResponse */
36813
36810
  ContactSegmentationResponse: {
@@ -38417,6 +38414,7 @@ export interface components {
38417
38414
  * @default false
38418
38415
  */
38419
38416
  canDelete: boolean;
38417
+ salesPerson: components["schemas"]["SalesPersonSharedSchema"] | null;
38420
38418
  /**
38421
38419
  * Items
38422
38420
  * @default []
@@ -39848,6 +39846,7 @@ export interface components {
39848
39846
  * @default false
39849
39847
  */
39850
39848
  canDelete: boolean;
39849
+ salesPerson: components["schemas"]["SalesPersonSharedSchema"] | null;
39851
39850
  /**
39852
39851
  * Items
39853
39852
  * @default []
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.39",
3
+ "version": "1.0.41",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],