@cycomdatasystems/mackinac-sdk 5.2.1 → 5.2.2

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.
@@ -392,6 +392,11 @@ export interface MatterDto {
392
392
  * @nullable
393
393
  */
394
394
  courtNumber?: string | null;
395
+ /**
396
+ * CAUSE.AUTO_ID for LITIGAT.CAUSE.
397
+ * @nullable
398
+ */
399
+ primaryCauseId?: number | null;
395
400
  /**
396
401
  * LITIGAT.CAUSE
397
402
  * @minLength 0
@@ -399,6 +404,11 @@ export interface MatterDto {
399
404
  * @nullable
400
405
  */
401
406
  primaryCause?: string | null;
407
+ /**
408
+ * CAUSE.AUTO_ID for LITIGAT.SECCAUSE1.
409
+ * @nullable
410
+ */
411
+ secondaryCause1Id?: number | null;
402
412
  /**
403
413
  * LITIGAT.SECCAUSE1
404
414
  * @minLength 0
@@ -406,6 +416,11 @@ export interface MatterDto {
406
416
  * @nullable
407
417
  */
408
418
  secondaryCause1?: string | null;
419
+ /**
420
+ * CAUSE.AUTO_ID for LITIGAT.SECCAUSE2.
421
+ * @nullable
422
+ */
423
+ secondaryCause2Id?: number | null;
409
424
  /**
410
425
  * LITIGAT.SECCAUSE2
411
426
  * @minLength 0
@@ -413,6 +428,11 @@ export interface MatterDto {
413
428
  * @nullable
414
429
  */
415
430
  secondaryCause2?: string | null;
431
+ /**
432
+ * CAUSE.AUTO_ID for LITIGAT.SECCAUSE3.
433
+ * @nullable
434
+ */
435
+ secondaryCause3Id?: number | null;
416
436
  /**
417
437
  * LITIGAT.SECCAUSE3
418
438
  * @minLength 0
@@ -420,6 +440,11 @@ export interface MatterDto {
420
440
  * @nullable
421
441
  */
422
442
  secondaryCause3?: string | null;
443
+ /**
444
+ * CAUSE.AUTO_ID for LITIGAT.SECCAUSE4.
445
+ * @nullable
446
+ */
447
+ secondaryCause4Id?: number | null;
423
448
  /**
424
449
  * LITIGAT.SECCAUSE4
425
450
  * @minLength 0
@@ -427,6 +452,11 @@ export interface MatterDto {
427
452
  * @nullable
428
453
  */
429
454
  secondaryCause4?: string | null;
455
+ /**
456
+ * CAUSE.AUTO_ID for LITIGAT.SECCAUSE5.
457
+ * @nullable
458
+ */
459
+ secondaryCause5Id?: number | null;
430
460
  /**
431
461
  * LITIGAT.SECCAUSE5
432
462
  * @minLength 0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cycomdatasystems/mackinac-sdk",
3
- "version": "5.2.1",
3
+ "version": "5.2.2",
4
4
  "description": "A shared TypeScript client for the Mackinac API.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",