@erp-galoper/types 1.0.141 → 1.0.143

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 +58 -58
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -26544,7 +26544,7 @@ export interface components {
26544
26544
  /**
26545
26545
  * Id
26546
26546
  * Format: uuid
26547
- * @example b65a54ac-997a-4916-bfae-9b12e51a1da2
26547
+ * @example 54e4487e-0956-40c5-9bd4-2362012005b4
26548
26548
  */
26549
26549
  id: string;
26550
26550
  /**
@@ -35419,6 +35419,63 @@ export interface components {
35419
35419
  */
35420
35420
  closingCommission: string;
35421
35421
  };
35422
+ /** CommissionPayoutDetailSchema */
35423
+ CommissionPayoutDetailSchema: {
35424
+ /**
35425
+ * Datecreated
35426
+ * Format: date-time
35427
+ */
35428
+ dateCreated: string;
35429
+ /** Datemodified */
35430
+ dateModified: string | null;
35431
+ createdBy: components["schemas"]["RecordUserSchema"];
35432
+ modifiedBy: components["schemas"]["RecordUserSchema"] | null;
35433
+ /**
35434
+ * Id
35435
+ * Format: uuid
35436
+ */
35437
+ id: string;
35438
+ /**
35439
+ * Date
35440
+ * Format: date
35441
+ */
35442
+ date: string;
35443
+ /** Serialnumber */
35444
+ serialNumber: string;
35445
+ salesPerson: components["schemas"]["SalesPersonSharedSchema"];
35446
+ branch: components["schemas"]["BranchSummaryInfo"];
35447
+ /** Description */
35448
+ description: string | null;
35449
+ /** Notes */
35450
+ notes: string | null;
35451
+ status: components["schemas"]["DocumentStatus"];
35452
+ approvalStatus: components["schemas"]["ApprovalChoices"];
35453
+ /**
35454
+ * Total
35455
+ * @description This field is number
35456
+ */
35457
+ total: string;
35458
+ /**
35459
+ * Companytotal
35460
+ * @description This field is number
35461
+ */
35462
+ companyTotal: string;
35463
+ /**
35464
+ * Secondarytotal
35465
+ * @description This field is number
35466
+ */
35467
+ secondaryTotal: string;
35468
+ /** Attachments */
35469
+ attachments: string[] | null;
35470
+ /** Candelete */
35471
+ canDelete: boolean;
35472
+ };
35473
+ /** CommissionPayoutListSchema */
35474
+ CommissionPayoutListSchema: {
35475
+ info: components["schemas"]["PageInfoSchema"];
35476
+ /** Results */
35477
+ results: components["schemas"]["CommissionPayoutDetailSchema"][];
35478
+ };
35422
35479
  /** CommissionPayoutItemUpdateSchema */
35423
35480
  CommissionPayoutItemUpdateSchema: {
35424
35481
  /**
@@ -35555,63 +35612,6 @@ export interface components {
35555
35612
  */
35556
35613
  password: string | null;
35557
35614
  };
35558
- /** CommissionPayoutDetailSchema */
35559
- CommissionPayoutDetailSchema: {
35560
- /**
35561
- * Datecreated
35562
- * Format: date-time
35563
- */
35564
- dateCreated: string;
35565
- /** Datemodified */
35566
- dateModified: string | null;
35567
- createdBy: components["schemas"]["RecordUserSchema"];
35568
- modifiedBy: components["schemas"]["RecordUserSchema"] | null;
35569
- /**
35570
- * Id
35571
- * Format: uuid
35572
- */
35573
- id: string;
35574
- /**
35575
- * Date
35576
- * Format: date
35577
- */
35578
- date: string;
35579
- /** Serialnumber */
35580
- serialNumber: string;
35581
- salesPerson: components["schemas"]["SalesPersonSharedSchema"];
35582
- branch: components["schemas"]["BranchSummaryInfo"];
35583
- /** Description */
35584
- description: string | null;
35585
- /** Notes */
35586
- notes: string | null;
35587
- status: components["schemas"]["DocumentStatus"];
35588
- approvalStatus: components["schemas"]["ApprovalChoices"];
35589
- /**
35590
- * Total
35591
- * @description This field is number
35592
- */
35593
- total: string;
35594
- /**
35595
- * Companytotal
35596
- * @description This field is number
35597
- */
35598
- companyTotal: string;
35599
- /**
35600
- * Secondarytotal
35601
- * @description This field is number
35602
- */
35603
- secondaryTotal: string;
35604
- /** Attachments */
35605
- attachments: string[] | null;
35606
- /** Candelete */
35607
- canDelete: boolean;
35608
- };
35609
- /** CommissionPayoutListSchema */
35610
- CommissionPayoutListSchema: {
35611
- info: components["schemas"]["PageInfoSchema"];
35612
- /** Results */
35613
- results: components["schemas"]["CommissionPayoutDetailSchema"][];
35614
- };
35615
35615
  /** CommissionPayoutActionsSchema */
35616
35616
  CommissionPayoutActionsSchema: {
35617
35617
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.141",
3
+ "version": "1.0.143",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],