@kl1/contracts 1.1.48-uat → 1.1.49-uat

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.
@@ -177358,8 +177358,8 @@ export declare const workflowContract: {
177358
177358
  };
177359
177359
  };
177360
177360
  };
177361
- export declare const attributeSettingContact: {
177362
- attribute: {
177361
+ export declare const ticketSettingContract: {
177362
+ ticketSetting: {
177363
177363
  createAttribute: {
177364
177364
  body: import("zod").ZodObject<{
177365
177365
  name: import("zod").ZodString;
@@ -177597,7 +177597,7 @@ export declare const attributeSettingContact: {
177597
177597
  error?: any;
177598
177598
  }>;
177599
177599
  };
177600
- path: "settings/attributes";
177600
+ path: "settings//ticket/attributes";
177601
177601
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
177602
177602
  'x-tenant': import("zod").ZodString;
177603
177603
  authorization: import("zod").ZodString;
@@ -177815,7 +177815,7 @@ export declare const attributeSettingContact: {
177815
177815
  error?: any;
177816
177816
  }>;
177817
177817
  };
177818
- path: "settings/attributes";
177818
+ path: "settings//ticket/attributes";
177819
177819
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
177820
177820
  'x-tenant': import("zod").ZodString;
177821
177821
  authorization: import("zod").ZodString;
@@ -178077,7 +178077,7 @@ export declare const attributeSettingContact: {
178077
178077
  error?: any;
178078
178078
  }>;
178079
178079
  };
178080
- path: "settings/attributes/:id";
178080
+ path: "settings//ticket/attributes/:id";
178081
178081
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
178082
178082
  'x-tenant': import("zod").ZodString;
178083
178083
  authorization: import("zod").ZodString;
@@ -178133,7 +178133,7 @@ export declare const attributeSettingContact: {
178133
178133
  error?: any;
178134
178134
  }>;
178135
178135
  };
178136
- path: "settings/attributes/visibility/:id";
178136
+ path: "settings//ticket/attributes/visibility/:id";
178137
178137
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
178138
178138
  'x-tenant': import("zod").ZodString;
178139
178139
  authorization: import("zod").ZodString;
@@ -178189,7 +178189,7 @@ export declare const attributeSettingContact: {
178189
178189
  error?: any;
178190
178190
  }>;
178191
178191
  };
178192
- path: "settings/attributes/required/:id";
178192
+ path: "settings//ticket/attributes/required/:id";
178193
178193
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
178194
178194
  'x-tenant': import("zod").ZodString;
178195
178195
  authorization: import("zod").ZodString;
@@ -178253,7 +178253,7 @@ export declare const attributeSettingContact: {
178253
178253
  error?: any;
178254
178254
  }>;
178255
178255
  };
178256
- path: "settings/attributes/position";
178256
+ path: "settings//ticket/attributes/position";
178257
178257
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
178258
178258
  'x-tenant': import("zod").ZodString;
178259
178259
  authorization: import("zod").ZodString;
@@ -178303,7 +178303,7 @@ export declare const attributeSettingContact: {
178303
178303
  error?: any;
178304
178304
  }>;
178305
178305
  };
178306
- path: "settings/attributes/:id";
178306
+ path: "settings//ticket/attributes/:id";
178307
178307
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
178308
178308
  'x-tenant': import("zod").ZodString;
178309
178309
  authorization: import("zod").ZodString;
@@ -178323,8 +178323,3207 @@ export declare const attributeSettingContact: {
178323
178323
  };
178324
178324
  };
178325
178325
  };
178326
- export declare const tagSettingContract: {
178327
- tag: {
178326
+ export declare const contactSettingContract: {
178327
+ contactSetting: {
178328
+ createAttribute: {
178329
+ body: import("zod").ZodObject<{
178330
+ name: import("zod").ZodString;
178331
+ type: import("zod").ZodUnion<[import("zod").ZodLiteral<"text">, import("zod").ZodLiteral<"textarea">, import("zod").ZodLiteral<"date">, import("zod").ZodLiteral<"select">, import("zod").ZodLiteral<"link">, import("zod").ZodLiteral<"attachment">]>;
178332
+ isRequired: import("zod").ZodBoolean;
178333
+ isVisible: import("zod").ZodBoolean;
178334
+ group: import("zod").ZodString;
178335
+ options: import("zod").ZodArray<import("zod").ZodObject<{
178336
+ label: import("zod").ZodString;
178337
+ value: import("zod").ZodString;
178338
+ isDefault: import("zod").ZodBoolean;
178339
+ position: import("zod").ZodNumber;
178340
+ }, "strip", import("zod").ZodTypeAny, {
178341
+ position: number;
178342
+ value: string;
178343
+ label: string;
178344
+ isDefault: boolean;
178345
+ }, {
178346
+ position: number;
178347
+ value: string;
178348
+ label: string;
178349
+ isDefault: boolean;
178350
+ }>, "many">;
178351
+ }, "strip", import("zod").ZodTypeAny, {
178352
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
178353
+ name: string;
178354
+ options: {
178355
+ position: number;
178356
+ value: string;
178357
+ label: string;
178358
+ isDefault: boolean;
178359
+ }[];
178360
+ group: string;
178361
+ isRequired: boolean;
178362
+ isVisible: boolean;
178363
+ }, {
178364
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
178365
+ name: string;
178366
+ options: {
178367
+ position: number;
178368
+ value: string;
178369
+ label: string;
178370
+ isDefault: boolean;
178371
+ }[];
178372
+ group: string;
178373
+ isRequired: boolean;
178374
+ isVisible: boolean;
178375
+ }>;
178376
+ method: "POST";
178377
+ responses: {
178378
+ 201: import("zod").ZodObject<{
178379
+ requestId: import("zod").ZodString;
178380
+ attribute: import("zod").ZodObject<{
178381
+ id: import("zod").ZodString;
178382
+ createdAt: import("zod").ZodDate;
178383
+ updatedAt: import("zod").ZodDate;
178384
+ deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
178385
+ systemName: import("zod").ZodString;
178386
+ displayName: import("zod").ZodString;
178387
+ type: import("zod").ZodUnion<[import("zod").ZodLiteral<"text">, import("zod").ZodLiteral<"textarea">, import("zod").ZodLiteral<"date">, import("zod").ZodLiteral<"select">, import("zod").ZodLiteral<"link">, import("zod").ZodLiteral<"attachment">]>;
178388
+ position: import("zod").ZodNumber;
178389
+ isDefault: import("zod").ZodBoolean;
178390
+ isArchived: import("zod").ZodBoolean;
178391
+ isRequired: import("zod").ZodBoolean;
178392
+ isUnique: import("zod").ZodBoolean;
178393
+ options: import("zod").ZodArray<import("zod").ZodObject<{
178394
+ position: import("zod").ZodNumber;
178395
+ value: import("zod").ZodString;
178396
+ label: import("zod").ZodString;
178397
+ isDefault: import("zod").ZodBoolean;
178398
+ id: import("zod").ZodString;
178399
+ }, "strip", import("zod").ZodTypeAny, {
178400
+ id: string;
178401
+ position: number;
178402
+ value: string;
178403
+ label: string;
178404
+ isDefault: boolean;
178405
+ }, {
178406
+ id: string;
178407
+ position: number;
178408
+ value: string;
178409
+ label: string;
178410
+ isDefault: boolean;
178411
+ }>, "many">;
178412
+ group: import("zod").ZodObject<{
178413
+ id: import("zod").ZodString;
178414
+ createdAt: import("zod").ZodDate;
178415
+ updatedAt: import("zod").ZodDate;
178416
+ deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
178417
+ systemName: import("zod").ZodString;
178418
+ displayName: import("zod").ZodString;
178419
+ }, "strip", import("zod").ZodTypeAny, {
178420
+ id: string;
178421
+ createdAt: Date;
178422
+ updatedAt: Date;
178423
+ deletedAt: Date | null;
178424
+ systemName: string;
178425
+ displayName: string;
178426
+ }, {
178427
+ id: string;
178428
+ createdAt: Date;
178429
+ updatedAt: Date;
178430
+ deletedAt: Date | null;
178431
+ systemName: string;
178432
+ displayName: string;
178433
+ }>;
178434
+ }, "strip", import("zod").ZodTypeAny, {
178435
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
178436
+ id: string;
178437
+ position: number;
178438
+ options: {
178439
+ id: string;
178440
+ position: number;
178441
+ value: string;
178442
+ label: string;
178443
+ isDefault: boolean;
178444
+ }[];
178445
+ group: {
178446
+ id: string;
178447
+ createdAt: Date;
178448
+ updatedAt: Date;
178449
+ deletedAt: Date | null;
178450
+ systemName: string;
178451
+ displayName: string;
178452
+ };
178453
+ createdAt: Date;
178454
+ updatedAt: Date;
178455
+ deletedAt: Date | null;
178456
+ systemName: string;
178457
+ displayName: string;
178458
+ isDefault: boolean;
178459
+ isArchived: boolean;
178460
+ isRequired: boolean;
178461
+ isUnique: boolean;
178462
+ }, {
178463
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
178464
+ id: string;
178465
+ position: number;
178466
+ options: {
178467
+ id: string;
178468
+ position: number;
178469
+ value: string;
178470
+ label: string;
178471
+ isDefault: boolean;
178472
+ }[];
178473
+ group: {
178474
+ id: string;
178475
+ createdAt: Date;
178476
+ updatedAt: Date;
178477
+ deletedAt: Date | null;
178478
+ systemName: string;
178479
+ displayName: string;
178480
+ };
178481
+ createdAt: Date;
178482
+ updatedAt: Date;
178483
+ deletedAt: Date | null;
178484
+ systemName: string;
178485
+ displayName: string;
178486
+ isDefault: boolean;
178487
+ isArchived: boolean;
178488
+ isRequired: boolean;
178489
+ isUnique: boolean;
178490
+ }>;
178491
+ }, "strip", import("zod").ZodTypeAny, {
178492
+ requestId: string;
178493
+ attribute: {
178494
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
178495
+ id: string;
178496
+ position: number;
178497
+ options: {
178498
+ id: string;
178499
+ position: number;
178500
+ value: string;
178501
+ label: string;
178502
+ isDefault: boolean;
178503
+ }[];
178504
+ group: {
178505
+ id: string;
178506
+ createdAt: Date;
178507
+ updatedAt: Date;
178508
+ deletedAt: Date | null;
178509
+ systemName: string;
178510
+ displayName: string;
178511
+ };
178512
+ createdAt: Date;
178513
+ updatedAt: Date;
178514
+ deletedAt: Date | null;
178515
+ systemName: string;
178516
+ displayName: string;
178517
+ isDefault: boolean;
178518
+ isArchived: boolean;
178519
+ isRequired: boolean;
178520
+ isUnique: boolean;
178521
+ };
178522
+ }, {
178523
+ requestId: string;
178524
+ attribute: {
178525
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
178526
+ id: string;
178527
+ position: number;
178528
+ options: {
178529
+ id: string;
178530
+ position: number;
178531
+ value: string;
178532
+ label: string;
178533
+ isDefault: boolean;
178534
+ }[];
178535
+ group: {
178536
+ id: string;
178537
+ createdAt: Date;
178538
+ updatedAt: Date;
178539
+ deletedAt: Date | null;
178540
+ systemName: string;
178541
+ displayName: string;
178542
+ };
178543
+ createdAt: Date;
178544
+ updatedAt: Date;
178545
+ deletedAt: Date | null;
178546
+ systemName: string;
178547
+ displayName: string;
178548
+ isDefault: boolean;
178549
+ isArchived: boolean;
178550
+ isRequired: boolean;
178551
+ isUnique: boolean;
178552
+ };
178553
+ }>;
178554
+ 500: import("zod").ZodObject<{
178555
+ message: import("zod").ZodString;
178556
+ error: import("zod").ZodAny;
178557
+ }, "strip", import("zod").ZodTypeAny, {
178558
+ message: string;
178559
+ error?: any;
178560
+ }, {
178561
+ message: string;
178562
+ error?: any;
178563
+ }>;
178564
+ };
178565
+ path: "settings//contact/attributes";
178566
+ headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
178567
+ 'x-tenant': import("zod").ZodString;
178568
+ authorization: import("zod").ZodString;
178569
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
178570
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
178571
+ }, "strip", import("zod").ZodTypeAny, {
178572
+ 'x-tenant': string;
178573
+ authorization: string;
178574
+ 'x-client-timezone': string;
178575
+ 'x-code'?: string | undefined;
178576
+ }, {
178577
+ 'x-tenant': string;
178578
+ authorization: string;
178579
+ 'x-code'?: string | undefined;
178580
+ 'x-client-timezone'?: string | undefined;
178581
+ }>>>;
178582
+ };
178583
+ getAttributes: {
178584
+ method: "GET";
178585
+ query: import("zod").ZodObject<{
178586
+ group: import("zod").ZodString;
178587
+ visibleOnly: import("zod").ZodDefault<import("zod").ZodBoolean>;
178588
+ }, "strip", import("zod").ZodTypeAny, {
178589
+ group: string;
178590
+ visibleOnly: boolean;
178591
+ }, {
178592
+ group: string;
178593
+ visibleOnly?: boolean | undefined;
178594
+ }>;
178595
+ responses: {
178596
+ 200: import("zod").ZodObject<{
178597
+ requestId: import("zod").ZodString;
178598
+ attributes: import("zod").ZodArray<import("zod").ZodObject<{
178599
+ id: import("zod").ZodString;
178600
+ createdAt: import("zod").ZodDate;
178601
+ updatedAt: import("zod").ZodDate;
178602
+ deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
178603
+ systemName: import("zod").ZodString;
178604
+ displayName: import("zod").ZodString;
178605
+ type: import("zod").ZodUnion<[import("zod").ZodLiteral<"text">, import("zod").ZodLiteral<"textarea">, import("zod").ZodLiteral<"date">, import("zod").ZodLiteral<"select">, import("zod").ZodLiteral<"link">, import("zod").ZodLiteral<"attachment">]>;
178606
+ position: import("zod").ZodNumber;
178607
+ isDefault: import("zod").ZodBoolean;
178608
+ isArchived: import("zod").ZodBoolean;
178609
+ isRequired: import("zod").ZodBoolean;
178610
+ isUnique: import("zod").ZodBoolean;
178611
+ options: import("zod").ZodArray<import("zod").ZodObject<{
178612
+ position: import("zod").ZodNumber;
178613
+ value: import("zod").ZodString;
178614
+ label: import("zod").ZodString;
178615
+ isDefault: import("zod").ZodBoolean;
178616
+ id: import("zod").ZodString;
178617
+ }, "strip", import("zod").ZodTypeAny, {
178618
+ id: string;
178619
+ position: number;
178620
+ value: string;
178621
+ label: string;
178622
+ isDefault: boolean;
178623
+ }, {
178624
+ id: string;
178625
+ position: number;
178626
+ value: string;
178627
+ label: string;
178628
+ isDefault: boolean;
178629
+ }>, "many">;
178630
+ group: import("zod").ZodObject<{
178631
+ id: import("zod").ZodString;
178632
+ createdAt: import("zod").ZodDate;
178633
+ updatedAt: import("zod").ZodDate;
178634
+ deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
178635
+ systemName: import("zod").ZodString;
178636
+ displayName: import("zod").ZodString;
178637
+ }, "strip", import("zod").ZodTypeAny, {
178638
+ id: string;
178639
+ createdAt: Date;
178640
+ updatedAt: Date;
178641
+ deletedAt: Date | null;
178642
+ systemName: string;
178643
+ displayName: string;
178644
+ }, {
178645
+ id: string;
178646
+ createdAt: Date;
178647
+ updatedAt: Date;
178648
+ deletedAt: Date | null;
178649
+ systemName: string;
178650
+ displayName: string;
178651
+ }>;
178652
+ }, "strip", import("zod").ZodTypeAny, {
178653
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
178654
+ id: string;
178655
+ position: number;
178656
+ options: {
178657
+ id: string;
178658
+ position: number;
178659
+ value: string;
178660
+ label: string;
178661
+ isDefault: boolean;
178662
+ }[];
178663
+ group: {
178664
+ id: string;
178665
+ createdAt: Date;
178666
+ updatedAt: Date;
178667
+ deletedAt: Date | null;
178668
+ systemName: string;
178669
+ displayName: string;
178670
+ };
178671
+ createdAt: Date;
178672
+ updatedAt: Date;
178673
+ deletedAt: Date | null;
178674
+ systemName: string;
178675
+ displayName: string;
178676
+ isDefault: boolean;
178677
+ isArchived: boolean;
178678
+ isRequired: boolean;
178679
+ isUnique: boolean;
178680
+ }, {
178681
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
178682
+ id: string;
178683
+ position: number;
178684
+ options: {
178685
+ id: string;
178686
+ position: number;
178687
+ value: string;
178688
+ label: string;
178689
+ isDefault: boolean;
178690
+ }[];
178691
+ group: {
178692
+ id: string;
178693
+ createdAt: Date;
178694
+ updatedAt: Date;
178695
+ deletedAt: Date | null;
178696
+ systemName: string;
178697
+ displayName: string;
178698
+ };
178699
+ createdAt: Date;
178700
+ updatedAt: Date;
178701
+ deletedAt: Date | null;
178702
+ systemName: string;
178703
+ displayName: string;
178704
+ isDefault: boolean;
178705
+ isArchived: boolean;
178706
+ isRequired: boolean;
178707
+ isUnique: boolean;
178708
+ }>, "many">;
178709
+ }, "strip", import("zod").ZodTypeAny, {
178710
+ attributes: {
178711
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
178712
+ id: string;
178713
+ position: number;
178714
+ options: {
178715
+ id: string;
178716
+ position: number;
178717
+ value: string;
178718
+ label: string;
178719
+ isDefault: boolean;
178720
+ }[];
178721
+ group: {
178722
+ id: string;
178723
+ createdAt: Date;
178724
+ updatedAt: Date;
178725
+ deletedAt: Date | null;
178726
+ systemName: string;
178727
+ displayName: string;
178728
+ };
178729
+ createdAt: Date;
178730
+ updatedAt: Date;
178731
+ deletedAt: Date | null;
178732
+ systemName: string;
178733
+ displayName: string;
178734
+ isDefault: boolean;
178735
+ isArchived: boolean;
178736
+ isRequired: boolean;
178737
+ isUnique: boolean;
178738
+ }[];
178739
+ requestId: string;
178740
+ }, {
178741
+ attributes: {
178742
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
178743
+ id: string;
178744
+ position: number;
178745
+ options: {
178746
+ id: string;
178747
+ position: number;
178748
+ value: string;
178749
+ label: string;
178750
+ isDefault: boolean;
178751
+ }[];
178752
+ group: {
178753
+ id: string;
178754
+ createdAt: Date;
178755
+ updatedAt: Date;
178756
+ deletedAt: Date | null;
178757
+ systemName: string;
178758
+ displayName: string;
178759
+ };
178760
+ createdAt: Date;
178761
+ updatedAt: Date;
178762
+ deletedAt: Date | null;
178763
+ systemName: string;
178764
+ displayName: string;
178765
+ isDefault: boolean;
178766
+ isArchived: boolean;
178767
+ isRequired: boolean;
178768
+ isUnique: boolean;
178769
+ }[];
178770
+ requestId: string;
178771
+ }>;
178772
+ 500: import("zod").ZodObject<{
178773
+ message: import("zod").ZodString;
178774
+ error: import("zod").ZodAny;
178775
+ }, "strip", import("zod").ZodTypeAny, {
178776
+ message: string;
178777
+ error?: any;
178778
+ }, {
178779
+ message: string;
178780
+ error?: any;
178781
+ }>;
178782
+ };
178783
+ path: "settings//contact/attributes";
178784
+ headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
178785
+ 'x-tenant': import("zod").ZodString;
178786
+ authorization: import("zod").ZodString;
178787
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
178788
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
178789
+ }, "strip", import("zod").ZodTypeAny, {
178790
+ 'x-tenant': string;
178791
+ authorization: string;
178792
+ 'x-client-timezone': string;
178793
+ 'x-code'?: string | undefined;
178794
+ }, {
178795
+ 'x-tenant': string;
178796
+ authorization: string;
178797
+ 'x-code'?: string | undefined;
178798
+ 'x-client-timezone'?: string | undefined;
178799
+ }>>>;
178800
+ };
178801
+ updateAttribute: {
178802
+ body: import("zod").ZodObject<{
178803
+ name: import("zod").ZodString;
178804
+ type: import("zod").ZodUnion<[import("zod").ZodLiteral<"text">, import("zod").ZodLiteral<"textarea">, import("zod").ZodLiteral<"date">, import("zod").ZodLiteral<"select">, import("zod").ZodLiteral<"link">, import("zod").ZodLiteral<"attachment">]>;
178805
+ isRequired: import("zod").ZodBoolean;
178806
+ isVisible: import("zod").ZodBoolean;
178807
+ group: import("zod").ZodString;
178808
+ options: import("zod").ZodArray<import("zod").ZodObject<{
178809
+ label: import("zod").ZodString;
178810
+ value: import("zod").ZodString;
178811
+ isDefault: import("zod").ZodBoolean;
178812
+ position: import("zod").ZodNumber;
178813
+ }, "strip", import("zod").ZodTypeAny, {
178814
+ position: number;
178815
+ value: string;
178816
+ label: string;
178817
+ isDefault: boolean;
178818
+ }, {
178819
+ position: number;
178820
+ value: string;
178821
+ label: string;
178822
+ isDefault: boolean;
178823
+ }>, "many">;
178824
+ }, "strip", import("zod").ZodTypeAny, {
178825
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
178826
+ name: string;
178827
+ options: {
178828
+ position: number;
178829
+ value: string;
178830
+ label: string;
178831
+ isDefault: boolean;
178832
+ }[];
178833
+ group: string;
178834
+ isRequired: boolean;
178835
+ isVisible: boolean;
178836
+ }, {
178837
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
178838
+ name: string;
178839
+ options: {
178840
+ position: number;
178841
+ value: string;
178842
+ label: string;
178843
+ isDefault: boolean;
178844
+ }[];
178845
+ group: string;
178846
+ isRequired: boolean;
178847
+ isVisible: boolean;
178848
+ }>;
178849
+ method: "PATCH";
178850
+ pathParams: import("zod").ZodObject<{
178851
+ id: import("zod").ZodString;
178852
+ }, "strip", import("zod").ZodTypeAny, {
178853
+ id: string;
178854
+ }, {
178855
+ id: string;
178856
+ }>;
178857
+ responses: {
178858
+ 200: import("zod").ZodObject<{
178859
+ requestId: import("zod").ZodString;
178860
+ attribute: import("zod").ZodObject<{
178861
+ id: import("zod").ZodString;
178862
+ createdAt: import("zod").ZodDate;
178863
+ updatedAt: import("zod").ZodDate;
178864
+ deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
178865
+ systemName: import("zod").ZodString;
178866
+ displayName: import("zod").ZodString;
178867
+ type: import("zod").ZodUnion<[import("zod").ZodLiteral<"text">, import("zod").ZodLiteral<"textarea">, import("zod").ZodLiteral<"date">, import("zod").ZodLiteral<"select">, import("zod").ZodLiteral<"link">, import("zod").ZodLiteral<"attachment">]>;
178868
+ position: import("zod").ZodNumber;
178869
+ isDefault: import("zod").ZodBoolean;
178870
+ isArchived: import("zod").ZodBoolean;
178871
+ isRequired: import("zod").ZodBoolean;
178872
+ isUnique: import("zod").ZodBoolean;
178873
+ options: import("zod").ZodArray<import("zod").ZodObject<{
178874
+ position: import("zod").ZodNumber;
178875
+ value: import("zod").ZodString;
178876
+ label: import("zod").ZodString;
178877
+ isDefault: import("zod").ZodBoolean;
178878
+ id: import("zod").ZodString;
178879
+ }, "strip", import("zod").ZodTypeAny, {
178880
+ id: string;
178881
+ position: number;
178882
+ value: string;
178883
+ label: string;
178884
+ isDefault: boolean;
178885
+ }, {
178886
+ id: string;
178887
+ position: number;
178888
+ value: string;
178889
+ label: string;
178890
+ isDefault: boolean;
178891
+ }>, "many">;
178892
+ group: import("zod").ZodObject<{
178893
+ id: import("zod").ZodString;
178894
+ createdAt: import("zod").ZodDate;
178895
+ updatedAt: import("zod").ZodDate;
178896
+ deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
178897
+ systemName: import("zod").ZodString;
178898
+ displayName: import("zod").ZodString;
178899
+ }, "strip", import("zod").ZodTypeAny, {
178900
+ id: string;
178901
+ createdAt: Date;
178902
+ updatedAt: Date;
178903
+ deletedAt: Date | null;
178904
+ systemName: string;
178905
+ displayName: string;
178906
+ }, {
178907
+ id: string;
178908
+ createdAt: Date;
178909
+ updatedAt: Date;
178910
+ deletedAt: Date | null;
178911
+ systemName: string;
178912
+ displayName: string;
178913
+ }>;
178914
+ }, "strip", import("zod").ZodTypeAny, {
178915
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
178916
+ id: string;
178917
+ position: number;
178918
+ options: {
178919
+ id: string;
178920
+ position: number;
178921
+ value: string;
178922
+ label: string;
178923
+ isDefault: boolean;
178924
+ }[];
178925
+ group: {
178926
+ id: string;
178927
+ createdAt: Date;
178928
+ updatedAt: Date;
178929
+ deletedAt: Date | null;
178930
+ systemName: string;
178931
+ displayName: string;
178932
+ };
178933
+ createdAt: Date;
178934
+ updatedAt: Date;
178935
+ deletedAt: Date | null;
178936
+ systemName: string;
178937
+ displayName: string;
178938
+ isDefault: boolean;
178939
+ isArchived: boolean;
178940
+ isRequired: boolean;
178941
+ isUnique: boolean;
178942
+ }, {
178943
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
178944
+ id: string;
178945
+ position: number;
178946
+ options: {
178947
+ id: string;
178948
+ position: number;
178949
+ value: string;
178950
+ label: string;
178951
+ isDefault: boolean;
178952
+ }[];
178953
+ group: {
178954
+ id: string;
178955
+ createdAt: Date;
178956
+ updatedAt: Date;
178957
+ deletedAt: Date | null;
178958
+ systemName: string;
178959
+ displayName: string;
178960
+ };
178961
+ createdAt: Date;
178962
+ updatedAt: Date;
178963
+ deletedAt: Date | null;
178964
+ systemName: string;
178965
+ displayName: string;
178966
+ isDefault: boolean;
178967
+ isArchived: boolean;
178968
+ isRequired: boolean;
178969
+ isUnique: boolean;
178970
+ }>;
178971
+ }, "strip", import("zod").ZodTypeAny, {
178972
+ requestId: string;
178973
+ attribute: {
178974
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
178975
+ id: string;
178976
+ position: number;
178977
+ options: {
178978
+ id: string;
178979
+ position: number;
178980
+ value: string;
178981
+ label: string;
178982
+ isDefault: boolean;
178983
+ }[];
178984
+ group: {
178985
+ id: string;
178986
+ createdAt: Date;
178987
+ updatedAt: Date;
178988
+ deletedAt: Date | null;
178989
+ systemName: string;
178990
+ displayName: string;
178991
+ };
178992
+ createdAt: Date;
178993
+ updatedAt: Date;
178994
+ deletedAt: Date | null;
178995
+ systemName: string;
178996
+ displayName: string;
178997
+ isDefault: boolean;
178998
+ isArchived: boolean;
178999
+ isRequired: boolean;
179000
+ isUnique: boolean;
179001
+ };
179002
+ }, {
179003
+ requestId: string;
179004
+ attribute: {
179005
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
179006
+ id: string;
179007
+ position: number;
179008
+ options: {
179009
+ id: string;
179010
+ position: number;
179011
+ value: string;
179012
+ label: string;
179013
+ isDefault: boolean;
179014
+ }[];
179015
+ group: {
179016
+ id: string;
179017
+ createdAt: Date;
179018
+ updatedAt: Date;
179019
+ deletedAt: Date | null;
179020
+ systemName: string;
179021
+ displayName: string;
179022
+ };
179023
+ createdAt: Date;
179024
+ updatedAt: Date;
179025
+ deletedAt: Date | null;
179026
+ systemName: string;
179027
+ displayName: string;
179028
+ isDefault: boolean;
179029
+ isArchived: boolean;
179030
+ isRequired: boolean;
179031
+ isUnique: boolean;
179032
+ };
179033
+ }>;
179034
+ 500: import("zod").ZodObject<{
179035
+ message: import("zod").ZodString;
179036
+ error: import("zod").ZodAny;
179037
+ }, "strip", import("zod").ZodTypeAny, {
179038
+ message: string;
179039
+ error?: any;
179040
+ }, {
179041
+ message: string;
179042
+ error?: any;
179043
+ }>;
179044
+ };
179045
+ path: "settings//contact/attributes/:id";
179046
+ headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
179047
+ 'x-tenant': import("zod").ZodString;
179048
+ authorization: import("zod").ZodString;
179049
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
179050
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
179051
+ }, "strip", import("zod").ZodTypeAny, {
179052
+ 'x-tenant': string;
179053
+ authorization: string;
179054
+ 'x-client-timezone': string;
179055
+ 'x-code'?: string | undefined;
179056
+ }, {
179057
+ 'x-tenant': string;
179058
+ authorization: string;
179059
+ 'x-code'?: string | undefined;
179060
+ 'x-client-timezone'?: string | undefined;
179061
+ }>>>;
179062
+ };
179063
+ changeVisibility: {
179064
+ body: import("zod").ZodObject<{
179065
+ isVisible: import("zod").ZodBoolean;
179066
+ }, "strip", import("zod").ZodTypeAny, {
179067
+ isVisible: boolean;
179068
+ }, {
179069
+ isVisible: boolean;
179070
+ }>;
179071
+ method: "PATCH";
179072
+ pathParams: import("zod").ZodObject<{
179073
+ id: import("zod").ZodString;
179074
+ }, "strip", import("zod").ZodTypeAny, {
179075
+ id: string;
179076
+ }, {
179077
+ id: string;
179078
+ }>;
179079
+ responses: {
179080
+ 200: import("zod").ZodObject<{
179081
+ requestId: import("zod").ZodString;
179082
+ message: import("zod").ZodOptional<import("zod").ZodString>;
179083
+ }, "strip", import("zod").ZodTypeAny, {
179084
+ requestId: string;
179085
+ message?: string | undefined;
179086
+ }, {
179087
+ requestId: string;
179088
+ message?: string | undefined;
179089
+ }>;
179090
+ 500: import("zod").ZodObject<{
179091
+ message: import("zod").ZodString;
179092
+ error: import("zod").ZodAny;
179093
+ }, "strip", import("zod").ZodTypeAny, {
179094
+ message: string;
179095
+ error?: any;
179096
+ }, {
179097
+ message: string;
179098
+ error?: any;
179099
+ }>;
179100
+ };
179101
+ path: "settings//contact/attributes/visibility/:id";
179102
+ headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
179103
+ 'x-tenant': import("zod").ZodString;
179104
+ authorization: import("zod").ZodString;
179105
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
179106
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
179107
+ }, "strip", import("zod").ZodTypeAny, {
179108
+ 'x-tenant': string;
179109
+ authorization: string;
179110
+ 'x-client-timezone': string;
179111
+ 'x-code'?: string | undefined;
179112
+ }, {
179113
+ 'x-tenant': string;
179114
+ authorization: string;
179115
+ 'x-code'?: string | undefined;
179116
+ 'x-client-timezone'?: string | undefined;
179117
+ }>>>;
179118
+ };
179119
+ changeRequired: {
179120
+ body: import("zod").ZodObject<{
179121
+ isRequired: import("zod").ZodBoolean;
179122
+ }, "strip", import("zod").ZodTypeAny, {
179123
+ isRequired: boolean;
179124
+ }, {
179125
+ isRequired: boolean;
179126
+ }>;
179127
+ method: "PATCH";
179128
+ pathParams: import("zod").ZodObject<{
179129
+ id: import("zod").ZodString;
179130
+ }, "strip", import("zod").ZodTypeAny, {
179131
+ id: string;
179132
+ }, {
179133
+ id: string;
179134
+ }>;
179135
+ responses: {
179136
+ 200: import("zod").ZodObject<{
179137
+ requestId: import("zod").ZodString;
179138
+ message: import("zod").ZodOptional<import("zod").ZodString>;
179139
+ }, "strip", import("zod").ZodTypeAny, {
179140
+ requestId: string;
179141
+ message?: string | undefined;
179142
+ }, {
179143
+ requestId: string;
179144
+ message?: string | undefined;
179145
+ }>;
179146
+ 500: import("zod").ZodObject<{
179147
+ message: import("zod").ZodString;
179148
+ error: import("zod").ZodAny;
179149
+ }, "strip", import("zod").ZodTypeAny, {
179150
+ message: string;
179151
+ error?: any;
179152
+ }, {
179153
+ message: string;
179154
+ error?: any;
179155
+ }>;
179156
+ };
179157
+ path: "settings//contact/attributes/required/:id";
179158
+ headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
179159
+ 'x-tenant': import("zod").ZodString;
179160
+ authorization: import("zod").ZodString;
179161
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
179162
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
179163
+ }, "strip", import("zod").ZodTypeAny, {
179164
+ 'x-tenant': string;
179165
+ authorization: string;
179166
+ 'x-client-timezone': string;
179167
+ 'x-code'?: string | undefined;
179168
+ }, {
179169
+ 'x-tenant': string;
179170
+ authorization: string;
179171
+ 'x-code'?: string | undefined;
179172
+ 'x-client-timezone'?: string | undefined;
179173
+ }>>>;
179174
+ };
179175
+ updatePosition: {
179176
+ body: import("zod").ZodObject<{
179177
+ attributes: import("zod").ZodArray<import("zod").ZodObject<{
179178
+ attributeId: import("zod").ZodString;
179179
+ position: import("zod").ZodNumber;
179180
+ }, "strip", import("zod").ZodTypeAny, {
179181
+ position: number;
179182
+ attributeId: string;
179183
+ }, {
179184
+ position: number;
179185
+ attributeId: string;
179186
+ }>, "many">;
179187
+ }, "strip", import("zod").ZodTypeAny, {
179188
+ attributes: {
179189
+ position: number;
179190
+ attributeId: string;
179191
+ }[];
179192
+ }, {
179193
+ attributes: {
179194
+ position: number;
179195
+ attributeId: string;
179196
+ }[];
179197
+ }>;
179198
+ method: "POST";
179199
+ responses: {
179200
+ 200: import("zod").ZodObject<{
179201
+ requestId: import("zod").ZodString;
179202
+ message: import("zod").ZodOptional<import("zod").ZodString>;
179203
+ }, "strip", import("zod").ZodTypeAny, {
179204
+ requestId: string;
179205
+ message?: string | undefined;
179206
+ }, {
179207
+ requestId: string;
179208
+ message?: string | undefined;
179209
+ }>;
179210
+ 500: import("zod").ZodObject<{
179211
+ message: import("zod").ZodString;
179212
+ error: import("zod").ZodAny;
179213
+ }, "strip", import("zod").ZodTypeAny, {
179214
+ message: string;
179215
+ error?: any;
179216
+ }, {
179217
+ message: string;
179218
+ error?: any;
179219
+ }>;
179220
+ };
179221
+ path: "settings//contact/attributes/position";
179222
+ headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
179223
+ 'x-tenant': import("zod").ZodString;
179224
+ authorization: import("zod").ZodString;
179225
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
179226
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
179227
+ }, "strip", import("zod").ZodTypeAny, {
179228
+ 'x-tenant': string;
179229
+ authorization: string;
179230
+ 'x-client-timezone': string;
179231
+ 'x-code'?: string | undefined;
179232
+ }, {
179233
+ 'x-tenant': string;
179234
+ authorization: string;
179235
+ 'x-code'?: string | undefined;
179236
+ 'x-client-timezone'?: string | undefined;
179237
+ }>>>;
179238
+ };
179239
+ deleteAttribute: {
179240
+ body: import("zod").ZodOptional<import("zod").ZodAny>;
179241
+ method: "DELETE";
179242
+ pathParams: import("zod").ZodObject<{
179243
+ id: import("zod").ZodString;
179244
+ }, "strip", import("zod").ZodTypeAny, {
179245
+ id: string;
179246
+ }, {
179247
+ id: string;
179248
+ }>;
179249
+ responses: {
179250
+ 200: import("zod").ZodObject<{
179251
+ requestId: import("zod").ZodString;
179252
+ message: import("zod").ZodString;
179253
+ }, "strip", import("zod").ZodTypeAny, {
179254
+ message: string;
179255
+ requestId: string;
179256
+ }, {
179257
+ message: string;
179258
+ requestId: string;
179259
+ }>;
179260
+ 500: import("zod").ZodObject<{
179261
+ message: import("zod").ZodString;
179262
+ error: import("zod").ZodAny;
179263
+ }, "strip", import("zod").ZodTypeAny, {
179264
+ message: string;
179265
+ error?: any;
179266
+ }, {
179267
+ message: string;
179268
+ error?: any;
179269
+ }>;
179270
+ };
179271
+ path: "settings//contact/attributes/:id";
179272
+ headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
179273
+ 'x-tenant': import("zod").ZodString;
179274
+ authorization: import("zod").ZodString;
179275
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
179276
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
179277
+ }, "strip", import("zod").ZodTypeAny, {
179278
+ 'x-tenant': string;
179279
+ authorization: string;
179280
+ 'x-client-timezone': string;
179281
+ 'x-code'?: string | undefined;
179282
+ }, {
179283
+ 'x-tenant': string;
179284
+ authorization: string;
179285
+ 'x-code'?: string | undefined;
179286
+ 'x-client-timezone'?: string | undefined;
179287
+ }>>>;
179288
+ };
179289
+ };
179290
+ };
179291
+ export declare const companySettingContract: {
179292
+ companySetting: {
179293
+ createAttribute: {
179294
+ body: import("zod").ZodObject<{
179295
+ name: import("zod").ZodString;
179296
+ type: import("zod").ZodUnion<[import("zod").ZodLiteral<"text">, import("zod").ZodLiteral<"textarea">, import("zod").ZodLiteral<"date">, import("zod").ZodLiteral<"select">, import("zod").ZodLiteral<"link">, import("zod").ZodLiteral<"attachment">]>;
179297
+ isRequired: import("zod").ZodBoolean;
179298
+ isVisible: import("zod").ZodBoolean;
179299
+ group: import("zod").ZodString;
179300
+ options: import("zod").ZodArray<import("zod").ZodObject<{
179301
+ label: import("zod").ZodString;
179302
+ value: import("zod").ZodString;
179303
+ isDefault: import("zod").ZodBoolean;
179304
+ position: import("zod").ZodNumber;
179305
+ }, "strip", import("zod").ZodTypeAny, {
179306
+ position: number;
179307
+ value: string;
179308
+ label: string;
179309
+ isDefault: boolean;
179310
+ }, {
179311
+ position: number;
179312
+ value: string;
179313
+ label: string;
179314
+ isDefault: boolean;
179315
+ }>, "many">;
179316
+ }, "strip", import("zod").ZodTypeAny, {
179317
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
179318
+ name: string;
179319
+ options: {
179320
+ position: number;
179321
+ value: string;
179322
+ label: string;
179323
+ isDefault: boolean;
179324
+ }[];
179325
+ group: string;
179326
+ isRequired: boolean;
179327
+ isVisible: boolean;
179328
+ }, {
179329
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
179330
+ name: string;
179331
+ options: {
179332
+ position: number;
179333
+ value: string;
179334
+ label: string;
179335
+ isDefault: boolean;
179336
+ }[];
179337
+ group: string;
179338
+ isRequired: boolean;
179339
+ isVisible: boolean;
179340
+ }>;
179341
+ method: "POST";
179342
+ responses: {
179343
+ 201: import("zod").ZodObject<{
179344
+ requestId: import("zod").ZodString;
179345
+ attribute: import("zod").ZodObject<{
179346
+ id: import("zod").ZodString;
179347
+ createdAt: import("zod").ZodDate;
179348
+ updatedAt: import("zod").ZodDate;
179349
+ deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
179350
+ systemName: import("zod").ZodString;
179351
+ displayName: import("zod").ZodString;
179352
+ type: import("zod").ZodUnion<[import("zod").ZodLiteral<"text">, import("zod").ZodLiteral<"textarea">, import("zod").ZodLiteral<"date">, import("zod").ZodLiteral<"select">, import("zod").ZodLiteral<"link">, import("zod").ZodLiteral<"attachment">]>;
179353
+ position: import("zod").ZodNumber;
179354
+ isDefault: import("zod").ZodBoolean;
179355
+ isArchived: import("zod").ZodBoolean;
179356
+ isRequired: import("zod").ZodBoolean;
179357
+ isUnique: import("zod").ZodBoolean;
179358
+ options: import("zod").ZodArray<import("zod").ZodObject<{
179359
+ position: import("zod").ZodNumber;
179360
+ value: import("zod").ZodString;
179361
+ label: import("zod").ZodString;
179362
+ isDefault: import("zod").ZodBoolean;
179363
+ id: import("zod").ZodString;
179364
+ }, "strip", import("zod").ZodTypeAny, {
179365
+ id: string;
179366
+ position: number;
179367
+ value: string;
179368
+ label: string;
179369
+ isDefault: boolean;
179370
+ }, {
179371
+ id: string;
179372
+ position: number;
179373
+ value: string;
179374
+ label: string;
179375
+ isDefault: boolean;
179376
+ }>, "many">;
179377
+ group: import("zod").ZodObject<{
179378
+ id: import("zod").ZodString;
179379
+ createdAt: import("zod").ZodDate;
179380
+ updatedAt: import("zod").ZodDate;
179381
+ deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
179382
+ systemName: import("zod").ZodString;
179383
+ displayName: import("zod").ZodString;
179384
+ }, "strip", import("zod").ZodTypeAny, {
179385
+ id: string;
179386
+ createdAt: Date;
179387
+ updatedAt: Date;
179388
+ deletedAt: Date | null;
179389
+ systemName: string;
179390
+ displayName: string;
179391
+ }, {
179392
+ id: string;
179393
+ createdAt: Date;
179394
+ updatedAt: Date;
179395
+ deletedAt: Date | null;
179396
+ systemName: string;
179397
+ displayName: string;
179398
+ }>;
179399
+ }, "strip", import("zod").ZodTypeAny, {
179400
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
179401
+ id: string;
179402
+ position: number;
179403
+ options: {
179404
+ id: string;
179405
+ position: number;
179406
+ value: string;
179407
+ label: string;
179408
+ isDefault: boolean;
179409
+ }[];
179410
+ group: {
179411
+ id: string;
179412
+ createdAt: Date;
179413
+ updatedAt: Date;
179414
+ deletedAt: Date | null;
179415
+ systemName: string;
179416
+ displayName: string;
179417
+ };
179418
+ createdAt: Date;
179419
+ updatedAt: Date;
179420
+ deletedAt: Date | null;
179421
+ systemName: string;
179422
+ displayName: string;
179423
+ isDefault: boolean;
179424
+ isArchived: boolean;
179425
+ isRequired: boolean;
179426
+ isUnique: boolean;
179427
+ }, {
179428
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
179429
+ id: string;
179430
+ position: number;
179431
+ options: {
179432
+ id: string;
179433
+ position: number;
179434
+ value: string;
179435
+ label: string;
179436
+ isDefault: boolean;
179437
+ }[];
179438
+ group: {
179439
+ id: string;
179440
+ createdAt: Date;
179441
+ updatedAt: Date;
179442
+ deletedAt: Date | null;
179443
+ systemName: string;
179444
+ displayName: string;
179445
+ };
179446
+ createdAt: Date;
179447
+ updatedAt: Date;
179448
+ deletedAt: Date | null;
179449
+ systemName: string;
179450
+ displayName: string;
179451
+ isDefault: boolean;
179452
+ isArchived: boolean;
179453
+ isRequired: boolean;
179454
+ isUnique: boolean;
179455
+ }>;
179456
+ }, "strip", import("zod").ZodTypeAny, {
179457
+ requestId: string;
179458
+ attribute: {
179459
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
179460
+ id: string;
179461
+ position: number;
179462
+ options: {
179463
+ id: string;
179464
+ position: number;
179465
+ value: string;
179466
+ label: string;
179467
+ isDefault: boolean;
179468
+ }[];
179469
+ group: {
179470
+ id: string;
179471
+ createdAt: Date;
179472
+ updatedAt: Date;
179473
+ deletedAt: Date | null;
179474
+ systemName: string;
179475
+ displayName: string;
179476
+ };
179477
+ createdAt: Date;
179478
+ updatedAt: Date;
179479
+ deletedAt: Date | null;
179480
+ systemName: string;
179481
+ displayName: string;
179482
+ isDefault: boolean;
179483
+ isArchived: boolean;
179484
+ isRequired: boolean;
179485
+ isUnique: boolean;
179486
+ };
179487
+ }, {
179488
+ requestId: string;
179489
+ attribute: {
179490
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
179491
+ id: string;
179492
+ position: number;
179493
+ options: {
179494
+ id: string;
179495
+ position: number;
179496
+ value: string;
179497
+ label: string;
179498
+ isDefault: boolean;
179499
+ }[];
179500
+ group: {
179501
+ id: string;
179502
+ createdAt: Date;
179503
+ updatedAt: Date;
179504
+ deletedAt: Date | null;
179505
+ systemName: string;
179506
+ displayName: string;
179507
+ };
179508
+ createdAt: Date;
179509
+ updatedAt: Date;
179510
+ deletedAt: Date | null;
179511
+ systemName: string;
179512
+ displayName: string;
179513
+ isDefault: boolean;
179514
+ isArchived: boolean;
179515
+ isRequired: boolean;
179516
+ isUnique: boolean;
179517
+ };
179518
+ }>;
179519
+ 500: import("zod").ZodObject<{
179520
+ message: import("zod").ZodString;
179521
+ error: import("zod").ZodAny;
179522
+ }, "strip", import("zod").ZodTypeAny, {
179523
+ message: string;
179524
+ error?: any;
179525
+ }, {
179526
+ message: string;
179527
+ error?: any;
179528
+ }>;
179529
+ };
179530
+ path: "settings//company/attributes";
179531
+ headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
179532
+ 'x-tenant': import("zod").ZodString;
179533
+ authorization: import("zod").ZodString;
179534
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
179535
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
179536
+ }, "strip", import("zod").ZodTypeAny, {
179537
+ 'x-tenant': string;
179538
+ authorization: string;
179539
+ 'x-client-timezone': string;
179540
+ 'x-code'?: string | undefined;
179541
+ }, {
179542
+ 'x-tenant': string;
179543
+ authorization: string;
179544
+ 'x-code'?: string | undefined;
179545
+ 'x-client-timezone'?: string | undefined;
179546
+ }>>>;
179547
+ };
179548
+ getAttributes: {
179549
+ method: "GET";
179550
+ query: import("zod").ZodObject<{
179551
+ group: import("zod").ZodString;
179552
+ visibleOnly: import("zod").ZodDefault<import("zod").ZodBoolean>;
179553
+ }, "strip", import("zod").ZodTypeAny, {
179554
+ group: string;
179555
+ visibleOnly: boolean;
179556
+ }, {
179557
+ group: string;
179558
+ visibleOnly?: boolean | undefined;
179559
+ }>;
179560
+ responses: {
179561
+ 200: import("zod").ZodObject<{
179562
+ requestId: import("zod").ZodString;
179563
+ attributes: import("zod").ZodArray<import("zod").ZodObject<{
179564
+ id: import("zod").ZodString;
179565
+ createdAt: import("zod").ZodDate;
179566
+ updatedAt: import("zod").ZodDate;
179567
+ deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
179568
+ systemName: import("zod").ZodString;
179569
+ displayName: import("zod").ZodString;
179570
+ type: import("zod").ZodUnion<[import("zod").ZodLiteral<"text">, import("zod").ZodLiteral<"textarea">, import("zod").ZodLiteral<"date">, import("zod").ZodLiteral<"select">, import("zod").ZodLiteral<"link">, import("zod").ZodLiteral<"attachment">]>;
179571
+ position: import("zod").ZodNumber;
179572
+ isDefault: import("zod").ZodBoolean;
179573
+ isArchived: import("zod").ZodBoolean;
179574
+ isRequired: import("zod").ZodBoolean;
179575
+ isUnique: import("zod").ZodBoolean;
179576
+ options: import("zod").ZodArray<import("zod").ZodObject<{
179577
+ position: import("zod").ZodNumber;
179578
+ value: import("zod").ZodString;
179579
+ label: import("zod").ZodString;
179580
+ isDefault: import("zod").ZodBoolean;
179581
+ id: import("zod").ZodString;
179582
+ }, "strip", import("zod").ZodTypeAny, {
179583
+ id: string;
179584
+ position: number;
179585
+ value: string;
179586
+ label: string;
179587
+ isDefault: boolean;
179588
+ }, {
179589
+ id: string;
179590
+ position: number;
179591
+ value: string;
179592
+ label: string;
179593
+ isDefault: boolean;
179594
+ }>, "many">;
179595
+ group: import("zod").ZodObject<{
179596
+ id: import("zod").ZodString;
179597
+ createdAt: import("zod").ZodDate;
179598
+ updatedAt: import("zod").ZodDate;
179599
+ deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
179600
+ systemName: import("zod").ZodString;
179601
+ displayName: import("zod").ZodString;
179602
+ }, "strip", import("zod").ZodTypeAny, {
179603
+ id: string;
179604
+ createdAt: Date;
179605
+ updatedAt: Date;
179606
+ deletedAt: Date | null;
179607
+ systemName: string;
179608
+ displayName: string;
179609
+ }, {
179610
+ id: string;
179611
+ createdAt: Date;
179612
+ updatedAt: Date;
179613
+ deletedAt: Date | null;
179614
+ systemName: string;
179615
+ displayName: string;
179616
+ }>;
179617
+ }, "strip", import("zod").ZodTypeAny, {
179618
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
179619
+ id: string;
179620
+ position: number;
179621
+ options: {
179622
+ id: string;
179623
+ position: number;
179624
+ value: string;
179625
+ label: string;
179626
+ isDefault: boolean;
179627
+ }[];
179628
+ group: {
179629
+ id: string;
179630
+ createdAt: Date;
179631
+ updatedAt: Date;
179632
+ deletedAt: Date | null;
179633
+ systemName: string;
179634
+ displayName: string;
179635
+ };
179636
+ createdAt: Date;
179637
+ updatedAt: Date;
179638
+ deletedAt: Date | null;
179639
+ systemName: string;
179640
+ displayName: string;
179641
+ isDefault: boolean;
179642
+ isArchived: boolean;
179643
+ isRequired: boolean;
179644
+ isUnique: boolean;
179645
+ }, {
179646
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
179647
+ id: string;
179648
+ position: number;
179649
+ options: {
179650
+ id: string;
179651
+ position: number;
179652
+ value: string;
179653
+ label: string;
179654
+ isDefault: boolean;
179655
+ }[];
179656
+ group: {
179657
+ id: string;
179658
+ createdAt: Date;
179659
+ updatedAt: Date;
179660
+ deletedAt: Date | null;
179661
+ systemName: string;
179662
+ displayName: string;
179663
+ };
179664
+ createdAt: Date;
179665
+ updatedAt: Date;
179666
+ deletedAt: Date | null;
179667
+ systemName: string;
179668
+ displayName: string;
179669
+ isDefault: boolean;
179670
+ isArchived: boolean;
179671
+ isRequired: boolean;
179672
+ isUnique: boolean;
179673
+ }>, "many">;
179674
+ }, "strip", import("zod").ZodTypeAny, {
179675
+ attributes: {
179676
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
179677
+ id: string;
179678
+ position: number;
179679
+ options: {
179680
+ id: string;
179681
+ position: number;
179682
+ value: string;
179683
+ label: string;
179684
+ isDefault: boolean;
179685
+ }[];
179686
+ group: {
179687
+ id: string;
179688
+ createdAt: Date;
179689
+ updatedAt: Date;
179690
+ deletedAt: Date | null;
179691
+ systemName: string;
179692
+ displayName: string;
179693
+ };
179694
+ createdAt: Date;
179695
+ updatedAt: Date;
179696
+ deletedAt: Date | null;
179697
+ systemName: string;
179698
+ displayName: string;
179699
+ isDefault: boolean;
179700
+ isArchived: boolean;
179701
+ isRequired: boolean;
179702
+ isUnique: boolean;
179703
+ }[];
179704
+ requestId: string;
179705
+ }, {
179706
+ attributes: {
179707
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
179708
+ id: string;
179709
+ position: number;
179710
+ options: {
179711
+ id: string;
179712
+ position: number;
179713
+ value: string;
179714
+ label: string;
179715
+ isDefault: boolean;
179716
+ }[];
179717
+ group: {
179718
+ id: string;
179719
+ createdAt: Date;
179720
+ updatedAt: Date;
179721
+ deletedAt: Date | null;
179722
+ systemName: string;
179723
+ displayName: string;
179724
+ };
179725
+ createdAt: Date;
179726
+ updatedAt: Date;
179727
+ deletedAt: Date | null;
179728
+ systemName: string;
179729
+ displayName: string;
179730
+ isDefault: boolean;
179731
+ isArchived: boolean;
179732
+ isRequired: boolean;
179733
+ isUnique: boolean;
179734
+ }[];
179735
+ requestId: string;
179736
+ }>;
179737
+ 500: import("zod").ZodObject<{
179738
+ message: import("zod").ZodString;
179739
+ error: import("zod").ZodAny;
179740
+ }, "strip", import("zod").ZodTypeAny, {
179741
+ message: string;
179742
+ error?: any;
179743
+ }, {
179744
+ message: string;
179745
+ error?: any;
179746
+ }>;
179747
+ };
179748
+ path: "settings//company/attributes";
179749
+ headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
179750
+ 'x-tenant': import("zod").ZodString;
179751
+ authorization: import("zod").ZodString;
179752
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
179753
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
179754
+ }, "strip", import("zod").ZodTypeAny, {
179755
+ 'x-tenant': string;
179756
+ authorization: string;
179757
+ 'x-client-timezone': string;
179758
+ 'x-code'?: string | undefined;
179759
+ }, {
179760
+ 'x-tenant': string;
179761
+ authorization: string;
179762
+ 'x-code'?: string | undefined;
179763
+ 'x-client-timezone'?: string | undefined;
179764
+ }>>>;
179765
+ };
179766
+ updateAttribute: {
179767
+ body: import("zod").ZodObject<{
179768
+ name: import("zod").ZodString;
179769
+ type: import("zod").ZodUnion<[import("zod").ZodLiteral<"text">, import("zod").ZodLiteral<"textarea">, import("zod").ZodLiteral<"date">, import("zod").ZodLiteral<"select">, import("zod").ZodLiteral<"link">, import("zod").ZodLiteral<"attachment">]>;
179770
+ isRequired: import("zod").ZodBoolean;
179771
+ isVisible: import("zod").ZodBoolean;
179772
+ group: import("zod").ZodString;
179773
+ options: import("zod").ZodArray<import("zod").ZodObject<{
179774
+ label: import("zod").ZodString;
179775
+ value: import("zod").ZodString;
179776
+ isDefault: import("zod").ZodBoolean;
179777
+ position: import("zod").ZodNumber;
179778
+ }, "strip", import("zod").ZodTypeAny, {
179779
+ position: number;
179780
+ value: string;
179781
+ label: string;
179782
+ isDefault: boolean;
179783
+ }, {
179784
+ position: number;
179785
+ value: string;
179786
+ label: string;
179787
+ isDefault: boolean;
179788
+ }>, "many">;
179789
+ }, "strip", import("zod").ZodTypeAny, {
179790
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
179791
+ name: string;
179792
+ options: {
179793
+ position: number;
179794
+ value: string;
179795
+ label: string;
179796
+ isDefault: boolean;
179797
+ }[];
179798
+ group: string;
179799
+ isRequired: boolean;
179800
+ isVisible: boolean;
179801
+ }, {
179802
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
179803
+ name: string;
179804
+ options: {
179805
+ position: number;
179806
+ value: string;
179807
+ label: string;
179808
+ isDefault: boolean;
179809
+ }[];
179810
+ group: string;
179811
+ isRequired: boolean;
179812
+ isVisible: boolean;
179813
+ }>;
179814
+ method: "PATCH";
179815
+ pathParams: import("zod").ZodObject<{
179816
+ id: import("zod").ZodString;
179817
+ }, "strip", import("zod").ZodTypeAny, {
179818
+ id: string;
179819
+ }, {
179820
+ id: string;
179821
+ }>;
179822
+ responses: {
179823
+ 200: import("zod").ZodObject<{
179824
+ requestId: import("zod").ZodString;
179825
+ attribute: import("zod").ZodObject<{
179826
+ id: import("zod").ZodString;
179827
+ createdAt: import("zod").ZodDate;
179828
+ updatedAt: import("zod").ZodDate;
179829
+ deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
179830
+ systemName: import("zod").ZodString;
179831
+ displayName: import("zod").ZodString;
179832
+ type: import("zod").ZodUnion<[import("zod").ZodLiteral<"text">, import("zod").ZodLiteral<"textarea">, import("zod").ZodLiteral<"date">, import("zod").ZodLiteral<"select">, import("zod").ZodLiteral<"link">, import("zod").ZodLiteral<"attachment">]>;
179833
+ position: import("zod").ZodNumber;
179834
+ isDefault: import("zod").ZodBoolean;
179835
+ isArchived: import("zod").ZodBoolean;
179836
+ isRequired: import("zod").ZodBoolean;
179837
+ isUnique: import("zod").ZodBoolean;
179838
+ options: import("zod").ZodArray<import("zod").ZodObject<{
179839
+ position: import("zod").ZodNumber;
179840
+ value: import("zod").ZodString;
179841
+ label: import("zod").ZodString;
179842
+ isDefault: import("zod").ZodBoolean;
179843
+ id: import("zod").ZodString;
179844
+ }, "strip", import("zod").ZodTypeAny, {
179845
+ id: string;
179846
+ position: number;
179847
+ value: string;
179848
+ label: string;
179849
+ isDefault: boolean;
179850
+ }, {
179851
+ id: string;
179852
+ position: number;
179853
+ value: string;
179854
+ label: string;
179855
+ isDefault: boolean;
179856
+ }>, "many">;
179857
+ group: import("zod").ZodObject<{
179858
+ id: import("zod").ZodString;
179859
+ createdAt: import("zod").ZodDate;
179860
+ updatedAt: import("zod").ZodDate;
179861
+ deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
179862
+ systemName: import("zod").ZodString;
179863
+ displayName: import("zod").ZodString;
179864
+ }, "strip", import("zod").ZodTypeAny, {
179865
+ id: string;
179866
+ createdAt: Date;
179867
+ updatedAt: Date;
179868
+ deletedAt: Date | null;
179869
+ systemName: string;
179870
+ displayName: string;
179871
+ }, {
179872
+ id: string;
179873
+ createdAt: Date;
179874
+ updatedAt: Date;
179875
+ deletedAt: Date | null;
179876
+ systemName: string;
179877
+ displayName: string;
179878
+ }>;
179879
+ }, "strip", import("zod").ZodTypeAny, {
179880
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
179881
+ id: string;
179882
+ position: number;
179883
+ options: {
179884
+ id: string;
179885
+ position: number;
179886
+ value: string;
179887
+ label: string;
179888
+ isDefault: boolean;
179889
+ }[];
179890
+ group: {
179891
+ id: string;
179892
+ createdAt: Date;
179893
+ updatedAt: Date;
179894
+ deletedAt: Date | null;
179895
+ systemName: string;
179896
+ displayName: string;
179897
+ };
179898
+ createdAt: Date;
179899
+ updatedAt: Date;
179900
+ deletedAt: Date | null;
179901
+ systemName: string;
179902
+ displayName: string;
179903
+ isDefault: boolean;
179904
+ isArchived: boolean;
179905
+ isRequired: boolean;
179906
+ isUnique: boolean;
179907
+ }, {
179908
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
179909
+ id: string;
179910
+ position: number;
179911
+ options: {
179912
+ id: string;
179913
+ position: number;
179914
+ value: string;
179915
+ label: string;
179916
+ isDefault: boolean;
179917
+ }[];
179918
+ group: {
179919
+ id: string;
179920
+ createdAt: Date;
179921
+ updatedAt: Date;
179922
+ deletedAt: Date | null;
179923
+ systemName: string;
179924
+ displayName: string;
179925
+ };
179926
+ createdAt: Date;
179927
+ updatedAt: Date;
179928
+ deletedAt: Date | null;
179929
+ systemName: string;
179930
+ displayName: string;
179931
+ isDefault: boolean;
179932
+ isArchived: boolean;
179933
+ isRequired: boolean;
179934
+ isUnique: boolean;
179935
+ }>;
179936
+ }, "strip", import("zod").ZodTypeAny, {
179937
+ requestId: string;
179938
+ attribute: {
179939
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
179940
+ id: string;
179941
+ position: number;
179942
+ options: {
179943
+ id: string;
179944
+ position: number;
179945
+ value: string;
179946
+ label: string;
179947
+ isDefault: boolean;
179948
+ }[];
179949
+ group: {
179950
+ id: string;
179951
+ createdAt: Date;
179952
+ updatedAt: Date;
179953
+ deletedAt: Date | null;
179954
+ systemName: string;
179955
+ displayName: string;
179956
+ };
179957
+ createdAt: Date;
179958
+ updatedAt: Date;
179959
+ deletedAt: Date | null;
179960
+ systemName: string;
179961
+ displayName: string;
179962
+ isDefault: boolean;
179963
+ isArchived: boolean;
179964
+ isRequired: boolean;
179965
+ isUnique: boolean;
179966
+ };
179967
+ }, {
179968
+ requestId: string;
179969
+ attribute: {
179970
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
179971
+ id: string;
179972
+ position: number;
179973
+ options: {
179974
+ id: string;
179975
+ position: number;
179976
+ value: string;
179977
+ label: string;
179978
+ isDefault: boolean;
179979
+ }[];
179980
+ group: {
179981
+ id: string;
179982
+ createdAt: Date;
179983
+ updatedAt: Date;
179984
+ deletedAt: Date | null;
179985
+ systemName: string;
179986
+ displayName: string;
179987
+ };
179988
+ createdAt: Date;
179989
+ updatedAt: Date;
179990
+ deletedAt: Date | null;
179991
+ systemName: string;
179992
+ displayName: string;
179993
+ isDefault: boolean;
179994
+ isArchived: boolean;
179995
+ isRequired: boolean;
179996
+ isUnique: boolean;
179997
+ };
179998
+ }>;
179999
+ 500: import("zod").ZodObject<{
180000
+ message: import("zod").ZodString;
180001
+ error: import("zod").ZodAny;
180002
+ }, "strip", import("zod").ZodTypeAny, {
180003
+ message: string;
180004
+ error?: any;
180005
+ }, {
180006
+ message: string;
180007
+ error?: any;
180008
+ }>;
180009
+ };
180010
+ path: "settings//company/attributes/:id";
180011
+ headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
180012
+ 'x-tenant': import("zod").ZodString;
180013
+ authorization: import("zod").ZodString;
180014
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
180015
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
180016
+ }, "strip", import("zod").ZodTypeAny, {
180017
+ 'x-tenant': string;
180018
+ authorization: string;
180019
+ 'x-client-timezone': string;
180020
+ 'x-code'?: string | undefined;
180021
+ }, {
180022
+ 'x-tenant': string;
180023
+ authorization: string;
180024
+ 'x-code'?: string | undefined;
180025
+ 'x-client-timezone'?: string | undefined;
180026
+ }>>>;
180027
+ };
180028
+ changeVisibility: {
180029
+ body: import("zod").ZodObject<{
180030
+ isVisible: import("zod").ZodBoolean;
180031
+ }, "strip", import("zod").ZodTypeAny, {
180032
+ isVisible: boolean;
180033
+ }, {
180034
+ isVisible: boolean;
180035
+ }>;
180036
+ method: "PATCH";
180037
+ pathParams: import("zod").ZodObject<{
180038
+ id: import("zod").ZodString;
180039
+ }, "strip", import("zod").ZodTypeAny, {
180040
+ id: string;
180041
+ }, {
180042
+ id: string;
180043
+ }>;
180044
+ responses: {
180045
+ 200: import("zod").ZodObject<{
180046
+ requestId: import("zod").ZodString;
180047
+ message: import("zod").ZodOptional<import("zod").ZodString>;
180048
+ }, "strip", import("zod").ZodTypeAny, {
180049
+ requestId: string;
180050
+ message?: string | undefined;
180051
+ }, {
180052
+ requestId: string;
180053
+ message?: string | undefined;
180054
+ }>;
180055
+ 500: import("zod").ZodObject<{
180056
+ message: import("zod").ZodString;
180057
+ error: import("zod").ZodAny;
180058
+ }, "strip", import("zod").ZodTypeAny, {
180059
+ message: string;
180060
+ error?: any;
180061
+ }, {
180062
+ message: string;
180063
+ error?: any;
180064
+ }>;
180065
+ };
180066
+ path: "settings//company/attributes/visibility/:id";
180067
+ headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
180068
+ 'x-tenant': import("zod").ZodString;
180069
+ authorization: import("zod").ZodString;
180070
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
180071
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
180072
+ }, "strip", import("zod").ZodTypeAny, {
180073
+ 'x-tenant': string;
180074
+ authorization: string;
180075
+ 'x-client-timezone': string;
180076
+ 'x-code'?: string | undefined;
180077
+ }, {
180078
+ 'x-tenant': string;
180079
+ authorization: string;
180080
+ 'x-code'?: string | undefined;
180081
+ 'x-client-timezone'?: string | undefined;
180082
+ }>>>;
180083
+ };
180084
+ changeRequired: {
180085
+ body: import("zod").ZodObject<{
180086
+ isRequired: import("zod").ZodBoolean;
180087
+ }, "strip", import("zod").ZodTypeAny, {
180088
+ isRequired: boolean;
180089
+ }, {
180090
+ isRequired: boolean;
180091
+ }>;
180092
+ method: "PATCH";
180093
+ pathParams: import("zod").ZodObject<{
180094
+ id: import("zod").ZodString;
180095
+ }, "strip", import("zod").ZodTypeAny, {
180096
+ id: string;
180097
+ }, {
180098
+ id: string;
180099
+ }>;
180100
+ responses: {
180101
+ 200: import("zod").ZodObject<{
180102
+ requestId: import("zod").ZodString;
180103
+ message: import("zod").ZodOptional<import("zod").ZodString>;
180104
+ }, "strip", import("zod").ZodTypeAny, {
180105
+ requestId: string;
180106
+ message?: string | undefined;
180107
+ }, {
180108
+ requestId: string;
180109
+ message?: string | undefined;
180110
+ }>;
180111
+ 500: import("zod").ZodObject<{
180112
+ message: import("zod").ZodString;
180113
+ error: import("zod").ZodAny;
180114
+ }, "strip", import("zod").ZodTypeAny, {
180115
+ message: string;
180116
+ error?: any;
180117
+ }, {
180118
+ message: string;
180119
+ error?: any;
180120
+ }>;
180121
+ };
180122
+ path: "settings//company/attributes/required/:id";
180123
+ headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
180124
+ 'x-tenant': import("zod").ZodString;
180125
+ authorization: import("zod").ZodString;
180126
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
180127
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
180128
+ }, "strip", import("zod").ZodTypeAny, {
180129
+ 'x-tenant': string;
180130
+ authorization: string;
180131
+ 'x-client-timezone': string;
180132
+ 'x-code'?: string | undefined;
180133
+ }, {
180134
+ 'x-tenant': string;
180135
+ authorization: string;
180136
+ 'x-code'?: string | undefined;
180137
+ 'x-client-timezone'?: string | undefined;
180138
+ }>>>;
180139
+ };
180140
+ updatePosition: {
180141
+ body: import("zod").ZodObject<{
180142
+ attributes: import("zod").ZodArray<import("zod").ZodObject<{
180143
+ attributeId: import("zod").ZodString;
180144
+ position: import("zod").ZodNumber;
180145
+ }, "strip", import("zod").ZodTypeAny, {
180146
+ position: number;
180147
+ attributeId: string;
180148
+ }, {
180149
+ position: number;
180150
+ attributeId: string;
180151
+ }>, "many">;
180152
+ }, "strip", import("zod").ZodTypeAny, {
180153
+ attributes: {
180154
+ position: number;
180155
+ attributeId: string;
180156
+ }[];
180157
+ }, {
180158
+ attributes: {
180159
+ position: number;
180160
+ attributeId: string;
180161
+ }[];
180162
+ }>;
180163
+ method: "POST";
180164
+ responses: {
180165
+ 200: import("zod").ZodObject<{
180166
+ requestId: import("zod").ZodString;
180167
+ message: import("zod").ZodOptional<import("zod").ZodString>;
180168
+ }, "strip", import("zod").ZodTypeAny, {
180169
+ requestId: string;
180170
+ message?: string | undefined;
180171
+ }, {
180172
+ requestId: string;
180173
+ message?: string | undefined;
180174
+ }>;
180175
+ 500: import("zod").ZodObject<{
180176
+ message: import("zod").ZodString;
180177
+ error: import("zod").ZodAny;
180178
+ }, "strip", import("zod").ZodTypeAny, {
180179
+ message: string;
180180
+ error?: any;
180181
+ }, {
180182
+ message: string;
180183
+ error?: any;
180184
+ }>;
180185
+ };
180186
+ path: "settings//company/attributes/position";
180187
+ headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
180188
+ 'x-tenant': import("zod").ZodString;
180189
+ authorization: import("zod").ZodString;
180190
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
180191
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
180192
+ }, "strip", import("zod").ZodTypeAny, {
180193
+ 'x-tenant': string;
180194
+ authorization: string;
180195
+ 'x-client-timezone': string;
180196
+ 'x-code'?: string | undefined;
180197
+ }, {
180198
+ 'x-tenant': string;
180199
+ authorization: string;
180200
+ 'x-code'?: string | undefined;
180201
+ 'x-client-timezone'?: string | undefined;
180202
+ }>>>;
180203
+ };
180204
+ deleteAttribute: {
180205
+ body: import("zod").ZodOptional<import("zod").ZodAny>;
180206
+ method: "DELETE";
180207
+ pathParams: import("zod").ZodObject<{
180208
+ id: import("zod").ZodString;
180209
+ }, "strip", import("zod").ZodTypeAny, {
180210
+ id: string;
180211
+ }, {
180212
+ id: string;
180213
+ }>;
180214
+ responses: {
180215
+ 200: import("zod").ZodObject<{
180216
+ requestId: import("zod").ZodString;
180217
+ message: import("zod").ZodString;
180218
+ }, "strip", import("zod").ZodTypeAny, {
180219
+ message: string;
180220
+ requestId: string;
180221
+ }, {
180222
+ message: string;
180223
+ requestId: string;
180224
+ }>;
180225
+ 500: import("zod").ZodObject<{
180226
+ message: import("zod").ZodString;
180227
+ error: import("zod").ZodAny;
180228
+ }, "strip", import("zod").ZodTypeAny, {
180229
+ message: string;
180230
+ error?: any;
180231
+ }, {
180232
+ message: string;
180233
+ error?: any;
180234
+ }>;
180235
+ };
180236
+ path: "settings//company/attributes/:id";
180237
+ headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
180238
+ 'x-tenant': import("zod").ZodString;
180239
+ authorization: import("zod").ZodString;
180240
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
180241
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
180242
+ }, "strip", import("zod").ZodTypeAny, {
180243
+ 'x-tenant': string;
180244
+ authorization: string;
180245
+ 'x-client-timezone': string;
180246
+ 'x-code'?: string | undefined;
180247
+ }, {
180248
+ 'x-tenant': string;
180249
+ authorization: string;
180250
+ 'x-code'?: string | undefined;
180251
+ 'x-client-timezone'?: string | undefined;
180252
+ }>>>;
180253
+ };
180254
+ };
180255
+ };
180256
+ export declare const caseLogSettingContract: {
180257
+ caseLogSetting: {
180258
+ createAttribute: {
180259
+ body: import("zod").ZodObject<{
180260
+ name: import("zod").ZodString;
180261
+ type: import("zod").ZodUnion<[import("zod").ZodLiteral<"text">, import("zod").ZodLiteral<"textarea">, import("zod").ZodLiteral<"date">, import("zod").ZodLiteral<"select">, import("zod").ZodLiteral<"link">, import("zod").ZodLiteral<"attachment">]>;
180262
+ isRequired: import("zod").ZodBoolean;
180263
+ isVisible: import("zod").ZodBoolean;
180264
+ group: import("zod").ZodString;
180265
+ options: import("zod").ZodArray<import("zod").ZodObject<{
180266
+ label: import("zod").ZodString;
180267
+ value: import("zod").ZodString;
180268
+ isDefault: import("zod").ZodBoolean;
180269
+ position: import("zod").ZodNumber;
180270
+ }, "strip", import("zod").ZodTypeAny, {
180271
+ position: number;
180272
+ value: string;
180273
+ label: string;
180274
+ isDefault: boolean;
180275
+ }, {
180276
+ position: number;
180277
+ value: string;
180278
+ label: string;
180279
+ isDefault: boolean;
180280
+ }>, "many">;
180281
+ }, "strip", import("zod").ZodTypeAny, {
180282
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
180283
+ name: string;
180284
+ options: {
180285
+ position: number;
180286
+ value: string;
180287
+ label: string;
180288
+ isDefault: boolean;
180289
+ }[];
180290
+ group: string;
180291
+ isRequired: boolean;
180292
+ isVisible: boolean;
180293
+ }, {
180294
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
180295
+ name: string;
180296
+ options: {
180297
+ position: number;
180298
+ value: string;
180299
+ label: string;
180300
+ isDefault: boolean;
180301
+ }[];
180302
+ group: string;
180303
+ isRequired: boolean;
180304
+ isVisible: boolean;
180305
+ }>;
180306
+ method: "POST";
180307
+ responses: {
180308
+ 201: import("zod").ZodObject<{
180309
+ requestId: import("zod").ZodString;
180310
+ attribute: import("zod").ZodObject<{
180311
+ id: import("zod").ZodString;
180312
+ createdAt: import("zod").ZodDate;
180313
+ updatedAt: import("zod").ZodDate;
180314
+ deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
180315
+ systemName: import("zod").ZodString;
180316
+ displayName: import("zod").ZodString;
180317
+ type: import("zod").ZodUnion<[import("zod").ZodLiteral<"text">, import("zod").ZodLiteral<"textarea">, import("zod").ZodLiteral<"date">, import("zod").ZodLiteral<"select">, import("zod").ZodLiteral<"link">, import("zod").ZodLiteral<"attachment">]>;
180318
+ position: import("zod").ZodNumber;
180319
+ isDefault: import("zod").ZodBoolean;
180320
+ isArchived: import("zod").ZodBoolean;
180321
+ isRequired: import("zod").ZodBoolean;
180322
+ isUnique: import("zod").ZodBoolean;
180323
+ options: import("zod").ZodArray<import("zod").ZodObject<{
180324
+ position: import("zod").ZodNumber;
180325
+ value: import("zod").ZodString;
180326
+ label: import("zod").ZodString;
180327
+ isDefault: import("zod").ZodBoolean;
180328
+ id: import("zod").ZodString;
180329
+ }, "strip", import("zod").ZodTypeAny, {
180330
+ id: string;
180331
+ position: number;
180332
+ value: string;
180333
+ label: string;
180334
+ isDefault: boolean;
180335
+ }, {
180336
+ id: string;
180337
+ position: number;
180338
+ value: string;
180339
+ label: string;
180340
+ isDefault: boolean;
180341
+ }>, "many">;
180342
+ group: import("zod").ZodObject<{
180343
+ id: import("zod").ZodString;
180344
+ createdAt: import("zod").ZodDate;
180345
+ updatedAt: import("zod").ZodDate;
180346
+ deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
180347
+ systemName: import("zod").ZodString;
180348
+ displayName: import("zod").ZodString;
180349
+ }, "strip", import("zod").ZodTypeAny, {
180350
+ id: string;
180351
+ createdAt: Date;
180352
+ updatedAt: Date;
180353
+ deletedAt: Date | null;
180354
+ systemName: string;
180355
+ displayName: string;
180356
+ }, {
180357
+ id: string;
180358
+ createdAt: Date;
180359
+ updatedAt: Date;
180360
+ deletedAt: Date | null;
180361
+ systemName: string;
180362
+ displayName: string;
180363
+ }>;
180364
+ }, "strip", import("zod").ZodTypeAny, {
180365
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
180366
+ id: string;
180367
+ position: number;
180368
+ options: {
180369
+ id: string;
180370
+ position: number;
180371
+ value: string;
180372
+ label: string;
180373
+ isDefault: boolean;
180374
+ }[];
180375
+ group: {
180376
+ id: string;
180377
+ createdAt: Date;
180378
+ updatedAt: Date;
180379
+ deletedAt: Date | null;
180380
+ systemName: string;
180381
+ displayName: string;
180382
+ };
180383
+ createdAt: Date;
180384
+ updatedAt: Date;
180385
+ deletedAt: Date | null;
180386
+ systemName: string;
180387
+ displayName: string;
180388
+ isDefault: boolean;
180389
+ isArchived: boolean;
180390
+ isRequired: boolean;
180391
+ isUnique: boolean;
180392
+ }, {
180393
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
180394
+ id: string;
180395
+ position: number;
180396
+ options: {
180397
+ id: string;
180398
+ position: number;
180399
+ value: string;
180400
+ label: string;
180401
+ isDefault: boolean;
180402
+ }[];
180403
+ group: {
180404
+ id: string;
180405
+ createdAt: Date;
180406
+ updatedAt: Date;
180407
+ deletedAt: Date | null;
180408
+ systemName: string;
180409
+ displayName: string;
180410
+ };
180411
+ createdAt: Date;
180412
+ updatedAt: Date;
180413
+ deletedAt: Date | null;
180414
+ systemName: string;
180415
+ displayName: string;
180416
+ isDefault: boolean;
180417
+ isArchived: boolean;
180418
+ isRequired: boolean;
180419
+ isUnique: boolean;
180420
+ }>;
180421
+ }, "strip", import("zod").ZodTypeAny, {
180422
+ requestId: string;
180423
+ attribute: {
180424
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
180425
+ id: string;
180426
+ position: number;
180427
+ options: {
180428
+ id: string;
180429
+ position: number;
180430
+ value: string;
180431
+ label: string;
180432
+ isDefault: boolean;
180433
+ }[];
180434
+ group: {
180435
+ id: string;
180436
+ createdAt: Date;
180437
+ updatedAt: Date;
180438
+ deletedAt: Date | null;
180439
+ systemName: string;
180440
+ displayName: string;
180441
+ };
180442
+ createdAt: Date;
180443
+ updatedAt: Date;
180444
+ deletedAt: Date | null;
180445
+ systemName: string;
180446
+ displayName: string;
180447
+ isDefault: boolean;
180448
+ isArchived: boolean;
180449
+ isRequired: boolean;
180450
+ isUnique: boolean;
180451
+ };
180452
+ }, {
180453
+ requestId: string;
180454
+ attribute: {
180455
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
180456
+ id: string;
180457
+ position: number;
180458
+ options: {
180459
+ id: string;
180460
+ position: number;
180461
+ value: string;
180462
+ label: string;
180463
+ isDefault: boolean;
180464
+ }[];
180465
+ group: {
180466
+ id: string;
180467
+ createdAt: Date;
180468
+ updatedAt: Date;
180469
+ deletedAt: Date | null;
180470
+ systemName: string;
180471
+ displayName: string;
180472
+ };
180473
+ createdAt: Date;
180474
+ updatedAt: Date;
180475
+ deletedAt: Date | null;
180476
+ systemName: string;
180477
+ displayName: string;
180478
+ isDefault: boolean;
180479
+ isArchived: boolean;
180480
+ isRequired: boolean;
180481
+ isUnique: boolean;
180482
+ };
180483
+ }>;
180484
+ 500: import("zod").ZodObject<{
180485
+ message: import("zod").ZodString;
180486
+ error: import("zod").ZodAny;
180487
+ }, "strip", import("zod").ZodTypeAny, {
180488
+ message: string;
180489
+ error?: any;
180490
+ }, {
180491
+ message: string;
180492
+ error?: any;
180493
+ }>;
180494
+ };
180495
+ path: "settings//case_log/attributes";
180496
+ headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
180497
+ 'x-tenant': import("zod").ZodString;
180498
+ authorization: import("zod").ZodString;
180499
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
180500
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
180501
+ }, "strip", import("zod").ZodTypeAny, {
180502
+ 'x-tenant': string;
180503
+ authorization: string;
180504
+ 'x-client-timezone': string;
180505
+ 'x-code'?: string | undefined;
180506
+ }, {
180507
+ 'x-tenant': string;
180508
+ authorization: string;
180509
+ 'x-code'?: string | undefined;
180510
+ 'x-client-timezone'?: string | undefined;
180511
+ }>>>;
180512
+ };
180513
+ getAttributes: {
180514
+ method: "GET";
180515
+ query: import("zod").ZodObject<{
180516
+ group: import("zod").ZodString;
180517
+ visibleOnly: import("zod").ZodDefault<import("zod").ZodBoolean>;
180518
+ }, "strip", import("zod").ZodTypeAny, {
180519
+ group: string;
180520
+ visibleOnly: boolean;
180521
+ }, {
180522
+ group: string;
180523
+ visibleOnly?: boolean | undefined;
180524
+ }>;
180525
+ responses: {
180526
+ 200: import("zod").ZodObject<{
180527
+ requestId: import("zod").ZodString;
180528
+ attributes: import("zod").ZodArray<import("zod").ZodObject<{
180529
+ id: import("zod").ZodString;
180530
+ createdAt: import("zod").ZodDate;
180531
+ updatedAt: import("zod").ZodDate;
180532
+ deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
180533
+ systemName: import("zod").ZodString;
180534
+ displayName: import("zod").ZodString;
180535
+ type: import("zod").ZodUnion<[import("zod").ZodLiteral<"text">, import("zod").ZodLiteral<"textarea">, import("zod").ZodLiteral<"date">, import("zod").ZodLiteral<"select">, import("zod").ZodLiteral<"link">, import("zod").ZodLiteral<"attachment">]>;
180536
+ position: import("zod").ZodNumber;
180537
+ isDefault: import("zod").ZodBoolean;
180538
+ isArchived: import("zod").ZodBoolean;
180539
+ isRequired: import("zod").ZodBoolean;
180540
+ isUnique: import("zod").ZodBoolean;
180541
+ options: import("zod").ZodArray<import("zod").ZodObject<{
180542
+ position: import("zod").ZodNumber;
180543
+ value: import("zod").ZodString;
180544
+ label: import("zod").ZodString;
180545
+ isDefault: import("zod").ZodBoolean;
180546
+ id: import("zod").ZodString;
180547
+ }, "strip", import("zod").ZodTypeAny, {
180548
+ id: string;
180549
+ position: number;
180550
+ value: string;
180551
+ label: string;
180552
+ isDefault: boolean;
180553
+ }, {
180554
+ id: string;
180555
+ position: number;
180556
+ value: string;
180557
+ label: string;
180558
+ isDefault: boolean;
180559
+ }>, "many">;
180560
+ group: import("zod").ZodObject<{
180561
+ id: import("zod").ZodString;
180562
+ createdAt: import("zod").ZodDate;
180563
+ updatedAt: import("zod").ZodDate;
180564
+ deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
180565
+ systemName: import("zod").ZodString;
180566
+ displayName: import("zod").ZodString;
180567
+ }, "strip", import("zod").ZodTypeAny, {
180568
+ id: string;
180569
+ createdAt: Date;
180570
+ updatedAt: Date;
180571
+ deletedAt: Date | null;
180572
+ systemName: string;
180573
+ displayName: string;
180574
+ }, {
180575
+ id: string;
180576
+ createdAt: Date;
180577
+ updatedAt: Date;
180578
+ deletedAt: Date | null;
180579
+ systemName: string;
180580
+ displayName: string;
180581
+ }>;
180582
+ }, "strip", import("zod").ZodTypeAny, {
180583
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
180584
+ id: string;
180585
+ position: number;
180586
+ options: {
180587
+ id: string;
180588
+ position: number;
180589
+ value: string;
180590
+ label: string;
180591
+ isDefault: boolean;
180592
+ }[];
180593
+ group: {
180594
+ id: string;
180595
+ createdAt: Date;
180596
+ updatedAt: Date;
180597
+ deletedAt: Date | null;
180598
+ systemName: string;
180599
+ displayName: string;
180600
+ };
180601
+ createdAt: Date;
180602
+ updatedAt: Date;
180603
+ deletedAt: Date | null;
180604
+ systemName: string;
180605
+ displayName: string;
180606
+ isDefault: boolean;
180607
+ isArchived: boolean;
180608
+ isRequired: boolean;
180609
+ isUnique: boolean;
180610
+ }, {
180611
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
180612
+ id: string;
180613
+ position: number;
180614
+ options: {
180615
+ id: string;
180616
+ position: number;
180617
+ value: string;
180618
+ label: string;
180619
+ isDefault: boolean;
180620
+ }[];
180621
+ group: {
180622
+ id: string;
180623
+ createdAt: Date;
180624
+ updatedAt: Date;
180625
+ deletedAt: Date | null;
180626
+ systemName: string;
180627
+ displayName: string;
180628
+ };
180629
+ createdAt: Date;
180630
+ updatedAt: Date;
180631
+ deletedAt: Date | null;
180632
+ systemName: string;
180633
+ displayName: string;
180634
+ isDefault: boolean;
180635
+ isArchived: boolean;
180636
+ isRequired: boolean;
180637
+ isUnique: boolean;
180638
+ }>, "many">;
180639
+ }, "strip", import("zod").ZodTypeAny, {
180640
+ attributes: {
180641
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
180642
+ id: string;
180643
+ position: number;
180644
+ options: {
180645
+ id: string;
180646
+ position: number;
180647
+ value: string;
180648
+ label: string;
180649
+ isDefault: boolean;
180650
+ }[];
180651
+ group: {
180652
+ id: string;
180653
+ createdAt: Date;
180654
+ updatedAt: Date;
180655
+ deletedAt: Date | null;
180656
+ systemName: string;
180657
+ displayName: string;
180658
+ };
180659
+ createdAt: Date;
180660
+ updatedAt: Date;
180661
+ deletedAt: Date | null;
180662
+ systemName: string;
180663
+ displayName: string;
180664
+ isDefault: boolean;
180665
+ isArchived: boolean;
180666
+ isRequired: boolean;
180667
+ isUnique: boolean;
180668
+ }[];
180669
+ requestId: string;
180670
+ }, {
180671
+ attributes: {
180672
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
180673
+ id: string;
180674
+ position: number;
180675
+ options: {
180676
+ id: string;
180677
+ position: number;
180678
+ value: string;
180679
+ label: string;
180680
+ isDefault: boolean;
180681
+ }[];
180682
+ group: {
180683
+ id: string;
180684
+ createdAt: Date;
180685
+ updatedAt: Date;
180686
+ deletedAt: Date | null;
180687
+ systemName: string;
180688
+ displayName: string;
180689
+ };
180690
+ createdAt: Date;
180691
+ updatedAt: Date;
180692
+ deletedAt: Date | null;
180693
+ systemName: string;
180694
+ displayName: string;
180695
+ isDefault: boolean;
180696
+ isArchived: boolean;
180697
+ isRequired: boolean;
180698
+ isUnique: boolean;
180699
+ }[];
180700
+ requestId: string;
180701
+ }>;
180702
+ 500: import("zod").ZodObject<{
180703
+ message: import("zod").ZodString;
180704
+ error: import("zod").ZodAny;
180705
+ }, "strip", import("zod").ZodTypeAny, {
180706
+ message: string;
180707
+ error?: any;
180708
+ }, {
180709
+ message: string;
180710
+ error?: any;
180711
+ }>;
180712
+ };
180713
+ path: "settings//case_log/attributes";
180714
+ headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
180715
+ 'x-tenant': import("zod").ZodString;
180716
+ authorization: import("zod").ZodString;
180717
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
180718
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
180719
+ }, "strip", import("zod").ZodTypeAny, {
180720
+ 'x-tenant': string;
180721
+ authorization: string;
180722
+ 'x-client-timezone': string;
180723
+ 'x-code'?: string | undefined;
180724
+ }, {
180725
+ 'x-tenant': string;
180726
+ authorization: string;
180727
+ 'x-code'?: string | undefined;
180728
+ 'x-client-timezone'?: string | undefined;
180729
+ }>>>;
180730
+ };
180731
+ updateAttribute: {
180732
+ body: import("zod").ZodObject<{
180733
+ name: import("zod").ZodString;
180734
+ type: import("zod").ZodUnion<[import("zod").ZodLiteral<"text">, import("zod").ZodLiteral<"textarea">, import("zod").ZodLiteral<"date">, import("zod").ZodLiteral<"select">, import("zod").ZodLiteral<"link">, import("zod").ZodLiteral<"attachment">]>;
180735
+ isRequired: import("zod").ZodBoolean;
180736
+ isVisible: import("zod").ZodBoolean;
180737
+ group: import("zod").ZodString;
180738
+ options: import("zod").ZodArray<import("zod").ZodObject<{
180739
+ label: import("zod").ZodString;
180740
+ value: import("zod").ZodString;
180741
+ isDefault: import("zod").ZodBoolean;
180742
+ position: import("zod").ZodNumber;
180743
+ }, "strip", import("zod").ZodTypeAny, {
180744
+ position: number;
180745
+ value: string;
180746
+ label: string;
180747
+ isDefault: boolean;
180748
+ }, {
180749
+ position: number;
180750
+ value: string;
180751
+ label: string;
180752
+ isDefault: boolean;
180753
+ }>, "many">;
180754
+ }, "strip", import("zod").ZodTypeAny, {
180755
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
180756
+ name: string;
180757
+ options: {
180758
+ position: number;
180759
+ value: string;
180760
+ label: string;
180761
+ isDefault: boolean;
180762
+ }[];
180763
+ group: string;
180764
+ isRequired: boolean;
180765
+ isVisible: boolean;
180766
+ }, {
180767
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
180768
+ name: string;
180769
+ options: {
180770
+ position: number;
180771
+ value: string;
180772
+ label: string;
180773
+ isDefault: boolean;
180774
+ }[];
180775
+ group: string;
180776
+ isRequired: boolean;
180777
+ isVisible: boolean;
180778
+ }>;
180779
+ method: "PATCH";
180780
+ pathParams: import("zod").ZodObject<{
180781
+ id: import("zod").ZodString;
180782
+ }, "strip", import("zod").ZodTypeAny, {
180783
+ id: string;
180784
+ }, {
180785
+ id: string;
180786
+ }>;
180787
+ responses: {
180788
+ 200: import("zod").ZodObject<{
180789
+ requestId: import("zod").ZodString;
180790
+ attribute: import("zod").ZodObject<{
180791
+ id: import("zod").ZodString;
180792
+ createdAt: import("zod").ZodDate;
180793
+ updatedAt: import("zod").ZodDate;
180794
+ deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
180795
+ systemName: import("zod").ZodString;
180796
+ displayName: import("zod").ZodString;
180797
+ type: import("zod").ZodUnion<[import("zod").ZodLiteral<"text">, import("zod").ZodLiteral<"textarea">, import("zod").ZodLiteral<"date">, import("zod").ZodLiteral<"select">, import("zod").ZodLiteral<"link">, import("zod").ZodLiteral<"attachment">]>;
180798
+ position: import("zod").ZodNumber;
180799
+ isDefault: import("zod").ZodBoolean;
180800
+ isArchived: import("zod").ZodBoolean;
180801
+ isRequired: import("zod").ZodBoolean;
180802
+ isUnique: import("zod").ZodBoolean;
180803
+ options: import("zod").ZodArray<import("zod").ZodObject<{
180804
+ position: import("zod").ZodNumber;
180805
+ value: import("zod").ZodString;
180806
+ label: import("zod").ZodString;
180807
+ isDefault: import("zod").ZodBoolean;
180808
+ id: import("zod").ZodString;
180809
+ }, "strip", import("zod").ZodTypeAny, {
180810
+ id: string;
180811
+ position: number;
180812
+ value: string;
180813
+ label: string;
180814
+ isDefault: boolean;
180815
+ }, {
180816
+ id: string;
180817
+ position: number;
180818
+ value: string;
180819
+ label: string;
180820
+ isDefault: boolean;
180821
+ }>, "many">;
180822
+ group: import("zod").ZodObject<{
180823
+ id: import("zod").ZodString;
180824
+ createdAt: import("zod").ZodDate;
180825
+ updatedAt: import("zod").ZodDate;
180826
+ deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
180827
+ systemName: import("zod").ZodString;
180828
+ displayName: import("zod").ZodString;
180829
+ }, "strip", import("zod").ZodTypeAny, {
180830
+ id: string;
180831
+ createdAt: Date;
180832
+ updatedAt: Date;
180833
+ deletedAt: Date | null;
180834
+ systemName: string;
180835
+ displayName: string;
180836
+ }, {
180837
+ id: string;
180838
+ createdAt: Date;
180839
+ updatedAt: Date;
180840
+ deletedAt: Date | null;
180841
+ systemName: string;
180842
+ displayName: string;
180843
+ }>;
180844
+ }, "strip", import("zod").ZodTypeAny, {
180845
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
180846
+ id: string;
180847
+ position: number;
180848
+ options: {
180849
+ id: string;
180850
+ position: number;
180851
+ value: string;
180852
+ label: string;
180853
+ isDefault: boolean;
180854
+ }[];
180855
+ group: {
180856
+ id: string;
180857
+ createdAt: Date;
180858
+ updatedAt: Date;
180859
+ deletedAt: Date | null;
180860
+ systemName: string;
180861
+ displayName: string;
180862
+ };
180863
+ createdAt: Date;
180864
+ updatedAt: Date;
180865
+ deletedAt: Date | null;
180866
+ systemName: string;
180867
+ displayName: string;
180868
+ isDefault: boolean;
180869
+ isArchived: boolean;
180870
+ isRequired: boolean;
180871
+ isUnique: boolean;
180872
+ }, {
180873
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
180874
+ id: string;
180875
+ position: number;
180876
+ options: {
180877
+ id: string;
180878
+ position: number;
180879
+ value: string;
180880
+ label: string;
180881
+ isDefault: boolean;
180882
+ }[];
180883
+ group: {
180884
+ id: string;
180885
+ createdAt: Date;
180886
+ updatedAt: Date;
180887
+ deletedAt: Date | null;
180888
+ systemName: string;
180889
+ displayName: string;
180890
+ };
180891
+ createdAt: Date;
180892
+ updatedAt: Date;
180893
+ deletedAt: Date | null;
180894
+ systemName: string;
180895
+ displayName: string;
180896
+ isDefault: boolean;
180897
+ isArchived: boolean;
180898
+ isRequired: boolean;
180899
+ isUnique: boolean;
180900
+ }>;
180901
+ }, "strip", import("zod").ZodTypeAny, {
180902
+ requestId: string;
180903
+ attribute: {
180904
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
180905
+ id: string;
180906
+ position: number;
180907
+ options: {
180908
+ id: string;
180909
+ position: number;
180910
+ value: string;
180911
+ label: string;
180912
+ isDefault: boolean;
180913
+ }[];
180914
+ group: {
180915
+ id: string;
180916
+ createdAt: Date;
180917
+ updatedAt: Date;
180918
+ deletedAt: Date | null;
180919
+ systemName: string;
180920
+ displayName: string;
180921
+ };
180922
+ createdAt: Date;
180923
+ updatedAt: Date;
180924
+ deletedAt: Date | null;
180925
+ systemName: string;
180926
+ displayName: string;
180927
+ isDefault: boolean;
180928
+ isArchived: boolean;
180929
+ isRequired: boolean;
180930
+ isUnique: boolean;
180931
+ };
180932
+ }, {
180933
+ requestId: string;
180934
+ attribute: {
180935
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
180936
+ id: string;
180937
+ position: number;
180938
+ options: {
180939
+ id: string;
180940
+ position: number;
180941
+ value: string;
180942
+ label: string;
180943
+ isDefault: boolean;
180944
+ }[];
180945
+ group: {
180946
+ id: string;
180947
+ createdAt: Date;
180948
+ updatedAt: Date;
180949
+ deletedAt: Date | null;
180950
+ systemName: string;
180951
+ displayName: string;
180952
+ };
180953
+ createdAt: Date;
180954
+ updatedAt: Date;
180955
+ deletedAt: Date | null;
180956
+ systemName: string;
180957
+ displayName: string;
180958
+ isDefault: boolean;
180959
+ isArchived: boolean;
180960
+ isRequired: boolean;
180961
+ isUnique: boolean;
180962
+ };
180963
+ }>;
180964
+ 500: import("zod").ZodObject<{
180965
+ message: import("zod").ZodString;
180966
+ error: import("zod").ZodAny;
180967
+ }, "strip", import("zod").ZodTypeAny, {
180968
+ message: string;
180969
+ error?: any;
180970
+ }, {
180971
+ message: string;
180972
+ error?: any;
180973
+ }>;
180974
+ };
180975
+ path: "settings//case_log/attributes/:id";
180976
+ headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
180977
+ 'x-tenant': import("zod").ZodString;
180978
+ authorization: import("zod").ZodString;
180979
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
180980
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
180981
+ }, "strip", import("zod").ZodTypeAny, {
180982
+ 'x-tenant': string;
180983
+ authorization: string;
180984
+ 'x-client-timezone': string;
180985
+ 'x-code'?: string | undefined;
180986
+ }, {
180987
+ 'x-tenant': string;
180988
+ authorization: string;
180989
+ 'x-code'?: string | undefined;
180990
+ 'x-client-timezone'?: string | undefined;
180991
+ }>>>;
180992
+ };
180993
+ changeVisibility: {
180994
+ body: import("zod").ZodObject<{
180995
+ isVisible: import("zod").ZodBoolean;
180996
+ }, "strip", import("zod").ZodTypeAny, {
180997
+ isVisible: boolean;
180998
+ }, {
180999
+ isVisible: boolean;
181000
+ }>;
181001
+ method: "PATCH";
181002
+ pathParams: import("zod").ZodObject<{
181003
+ id: import("zod").ZodString;
181004
+ }, "strip", import("zod").ZodTypeAny, {
181005
+ id: string;
181006
+ }, {
181007
+ id: string;
181008
+ }>;
181009
+ responses: {
181010
+ 200: import("zod").ZodObject<{
181011
+ requestId: import("zod").ZodString;
181012
+ message: import("zod").ZodOptional<import("zod").ZodString>;
181013
+ }, "strip", import("zod").ZodTypeAny, {
181014
+ requestId: string;
181015
+ message?: string | undefined;
181016
+ }, {
181017
+ requestId: string;
181018
+ message?: string | undefined;
181019
+ }>;
181020
+ 500: import("zod").ZodObject<{
181021
+ message: import("zod").ZodString;
181022
+ error: import("zod").ZodAny;
181023
+ }, "strip", import("zod").ZodTypeAny, {
181024
+ message: string;
181025
+ error?: any;
181026
+ }, {
181027
+ message: string;
181028
+ error?: any;
181029
+ }>;
181030
+ };
181031
+ path: "settings//case_log/attributes/visibility/:id";
181032
+ headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
181033
+ 'x-tenant': import("zod").ZodString;
181034
+ authorization: import("zod").ZodString;
181035
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
181036
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
181037
+ }, "strip", import("zod").ZodTypeAny, {
181038
+ 'x-tenant': string;
181039
+ authorization: string;
181040
+ 'x-client-timezone': string;
181041
+ 'x-code'?: string | undefined;
181042
+ }, {
181043
+ 'x-tenant': string;
181044
+ authorization: string;
181045
+ 'x-code'?: string | undefined;
181046
+ 'x-client-timezone'?: string | undefined;
181047
+ }>>>;
181048
+ };
181049
+ changeRequired: {
181050
+ body: import("zod").ZodObject<{
181051
+ isRequired: import("zod").ZodBoolean;
181052
+ }, "strip", import("zod").ZodTypeAny, {
181053
+ isRequired: boolean;
181054
+ }, {
181055
+ isRequired: boolean;
181056
+ }>;
181057
+ method: "PATCH";
181058
+ pathParams: import("zod").ZodObject<{
181059
+ id: import("zod").ZodString;
181060
+ }, "strip", import("zod").ZodTypeAny, {
181061
+ id: string;
181062
+ }, {
181063
+ id: string;
181064
+ }>;
181065
+ responses: {
181066
+ 200: import("zod").ZodObject<{
181067
+ requestId: import("zod").ZodString;
181068
+ message: import("zod").ZodOptional<import("zod").ZodString>;
181069
+ }, "strip", import("zod").ZodTypeAny, {
181070
+ requestId: string;
181071
+ message?: string | undefined;
181072
+ }, {
181073
+ requestId: string;
181074
+ message?: string | undefined;
181075
+ }>;
181076
+ 500: import("zod").ZodObject<{
181077
+ message: import("zod").ZodString;
181078
+ error: import("zod").ZodAny;
181079
+ }, "strip", import("zod").ZodTypeAny, {
181080
+ message: string;
181081
+ error?: any;
181082
+ }, {
181083
+ message: string;
181084
+ error?: any;
181085
+ }>;
181086
+ };
181087
+ path: "settings//case_log/attributes/required/:id";
181088
+ headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
181089
+ 'x-tenant': import("zod").ZodString;
181090
+ authorization: import("zod").ZodString;
181091
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
181092
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
181093
+ }, "strip", import("zod").ZodTypeAny, {
181094
+ 'x-tenant': string;
181095
+ authorization: string;
181096
+ 'x-client-timezone': string;
181097
+ 'x-code'?: string | undefined;
181098
+ }, {
181099
+ 'x-tenant': string;
181100
+ authorization: string;
181101
+ 'x-code'?: string | undefined;
181102
+ 'x-client-timezone'?: string | undefined;
181103
+ }>>>;
181104
+ };
181105
+ updatePosition: {
181106
+ body: import("zod").ZodObject<{
181107
+ attributes: import("zod").ZodArray<import("zod").ZodObject<{
181108
+ attributeId: import("zod").ZodString;
181109
+ position: import("zod").ZodNumber;
181110
+ }, "strip", import("zod").ZodTypeAny, {
181111
+ position: number;
181112
+ attributeId: string;
181113
+ }, {
181114
+ position: number;
181115
+ attributeId: string;
181116
+ }>, "many">;
181117
+ }, "strip", import("zod").ZodTypeAny, {
181118
+ attributes: {
181119
+ position: number;
181120
+ attributeId: string;
181121
+ }[];
181122
+ }, {
181123
+ attributes: {
181124
+ position: number;
181125
+ attributeId: string;
181126
+ }[];
181127
+ }>;
181128
+ method: "POST";
181129
+ responses: {
181130
+ 200: import("zod").ZodObject<{
181131
+ requestId: import("zod").ZodString;
181132
+ message: import("zod").ZodOptional<import("zod").ZodString>;
181133
+ }, "strip", import("zod").ZodTypeAny, {
181134
+ requestId: string;
181135
+ message?: string | undefined;
181136
+ }, {
181137
+ requestId: string;
181138
+ message?: string | undefined;
181139
+ }>;
181140
+ 500: import("zod").ZodObject<{
181141
+ message: import("zod").ZodString;
181142
+ error: import("zod").ZodAny;
181143
+ }, "strip", import("zod").ZodTypeAny, {
181144
+ message: string;
181145
+ error?: any;
181146
+ }, {
181147
+ message: string;
181148
+ error?: any;
181149
+ }>;
181150
+ };
181151
+ path: "settings//case_log/attributes/position";
181152
+ headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
181153
+ 'x-tenant': import("zod").ZodString;
181154
+ authorization: import("zod").ZodString;
181155
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
181156
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
181157
+ }, "strip", import("zod").ZodTypeAny, {
181158
+ 'x-tenant': string;
181159
+ authorization: string;
181160
+ 'x-client-timezone': string;
181161
+ 'x-code'?: string | undefined;
181162
+ }, {
181163
+ 'x-tenant': string;
181164
+ authorization: string;
181165
+ 'x-code'?: string | undefined;
181166
+ 'x-client-timezone'?: string | undefined;
181167
+ }>>>;
181168
+ };
181169
+ deleteAttribute: {
181170
+ body: import("zod").ZodOptional<import("zod").ZodAny>;
181171
+ method: "DELETE";
181172
+ pathParams: import("zod").ZodObject<{
181173
+ id: import("zod").ZodString;
181174
+ }, "strip", import("zod").ZodTypeAny, {
181175
+ id: string;
181176
+ }, {
181177
+ id: string;
181178
+ }>;
181179
+ responses: {
181180
+ 200: import("zod").ZodObject<{
181181
+ requestId: import("zod").ZodString;
181182
+ message: import("zod").ZodString;
181183
+ }, "strip", import("zod").ZodTypeAny, {
181184
+ message: string;
181185
+ requestId: string;
181186
+ }, {
181187
+ message: string;
181188
+ requestId: string;
181189
+ }>;
181190
+ 500: import("zod").ZodObject<{
181191
+ message: import("zod").ZodString;
181192
+ error: import("zod").ZodAny;
181193
+ }, "strip", import("zod").ZodTypeAny, {
181194
+ message: string;
181195
+ error?: any;
181196
+ }, {
181197
+ message: string;
181198
+ error?: any;
181199
+ }>;
181200
+ };
181201
+ path: "settings//case_log/attributes/:id";
181202
+ headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
181203
+ 'x-tenant': import("zod").ZodString;
181204
+ authorization: import("zod").ZodString;
181205
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
181206
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
181207
+ }, "strip", import("zod").ZodTypeAny, {
181208
+ 'x-tenant': string;
181209
+ authorization: string;
181210
+ 'x-client-timezone': string;
181211
+ 'x-code'?: string | undefined;
181212
+ }, {
181213
+ 'x-tenant': string;
181214
+ authorization: string;
181215
+ 'x-code'?: string | undefined;
181216
+ 'x-client-timezone'?: string | undefined;
181217
+ }>>>;
181218
+ };
181219
+ };
181220
+ };
181221
+ export declare const generalTagSettingContract: {
181222
+ generalTag: {
181223
+ createTag: {
181224
+ body: import("zod").ZodObject<{
181225
+ name: import("zod").ZodString;
181226
+ group: import("zod").ZodUnion<[import("zod").ZodLiteral<"general">, import("zod").ZodLiteral<"contact">]>;
181227
+ }, "strip", import("zod").ZodTypeAny, {
181228
+ name: string;
181229
+ group: "general" | "contact";
181230
+ }, {
181231
+ name: string;
181232
+ group: "general" | "contact";
181233
+ }>;
181234
+ method: "POST";
181235
+ responses: {
181236
+ 201: import("zod").ZodObject<{
181237
+ requestId: import("zod").ZodString;
181238
+ tag: import("zod").ZodObject<{
181239
+ id: import("zod").ZodString;
181240
+ createdAt: import("zod").ZodDate;
181241
+ updatedAt: import("zod").ZodDate;
181242
+ deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
181243
+ name: import("zod").ZodString;
181244
+ }, "strip", import("zod").ZodTypeAny, {
181245
+ id: string;
181246
+ name: string;
181247
+ createdAt: Date;
181248
+ updatedAt: Date;
181249
+ deletedAt: Date | null;
181250
+ }, {
181251
+ id: string;
181252
+ name: string;
181253
+ createdAt: Date;
181254
+ updatedAt: Date;
181255
+ deletedAt: Date | null;
181256
+ }>;
181257
+ }, "strip", import("zod").ZodTypeAny, {
181258
+ requestId: string;
181259
+ tag: {
181260
+ id: string;
181261
+ name: string;
181262
+ createdAt: Date;
181263
+ updatedAt: Date;
181264
+ deletedAt: Date | null;
181265
+ };
181266
+ }, {
181267
+ requestId: string;
181268
+ tag: {
181269
+ id: string;
181270
+ name: string;
181271
+ createdAt: Date;
181272
+ updatedAt: Date;
181273
+ deletedAt: Date | null;
181274
+ };
181275
+ }>;
181276
+ 500: import("zod").ZodObject<{
181277
+ message: import("zod").ZodString;
181278
+ error: import("zod").ZodAny;
181279
+ }, "strip", import("zod").ZodTypeAny, {
181280
+ message: string;
181281
+ error?: any;
181282
+ }, {
181283
+ message: string;
181284
+ error?: any;
181285
+ }>;
181286
+ };
181287
+ path: "settings//general_tag/tags";
181288
+ headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
181289
+ 'x-tenant': import("zod").ZodString;
181290
+ authorization: import("zod").ZodString;
181291
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
181292
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
181293
+ }, "strip", import("zod").ZodTypeAny, {
181294
+ 'x-tenant': string;
181295
+ authorization: string;
181296
+ 'x-client-timezone': string;
181297
+ 'x-code'?: string | undefined;
181298
+ }, {
181299
+ 'x-tenant': string;
181300
+ authorization: string;
181301
+ 'x-code'?: string | undefined;
181302
+ 'x-client-timezone'?: string | undefined;
181303
+ }>>>;
181304
+ };
181305
+ getTags: {
181306
+ method: "GET";
181307
+ query: import("zod").ZodOptional<import("zod").ZodObject<{
181308
+ group: import("zod").ZodOptional<import("zod").ZodDefault<import("zod").ZodUnion<[import("zod").ZodLiteral<"general">, import("zod").ZodLiteral<"contact">]>>>;
181309
+ keyword: import("zod").ZodOptional<import("zod").ZodString>;
181310
+ }, "strip", import("zod").ZodTypeAny, {
181311
+ group?: "general" | "contact" | undefined;
181312
+ keyword?: string | undefined;
181313
+ }, {
181314
+ group?: "general" | "contact" | undefined;
181315
+ keyword?: string | undefined;
181316
+ }>>;
181317
+ responses: {
181318
+ 200: import("zod").ZodObject<{
181319
+ requestId: import("zod").ZodString;
181320
+ tags: import("zod").ZodArray<import("zod").ZodObject<{
181321
+ id: import("zod").ZodString;
181322
+ createdAt: import("zod").ZodDate;
181323
+ updatedAt: import("zod").ZodDate;
181324
+ deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
181325
+ name: import("zod").ZodString;
181326
+ }, "strip", import("zod").ZodTypeAny, {
181327
+ id: string;
181328
+ name: string;
181329
+ createdAt: Date;
181330
+ updatedAt: Date;
181331
+ deletedAt: Date | null;
181332
+ }, {
181333
+ id: string;
181334
+ name: string;
181335
+ createdAt: Date;
181336
+ updatedAt: Date;
181337
+ deletedAt: Date | null;
181338
+ }>, "many">;
181339
+ }, "strip", import("zod").ZodTypeAny, {
181340
+ requestId: string;
181341
+ tags: {
181342
+ id: string;
181343
+ name: string;
181344
+ createdAt: Date;
181345
+ updatedAt: Date;
181346
+ deletedAt: Date | null;
181347
+ }[];
181348
+ }, {
181349
+ requestId: string;
181350
+ tags: {
181351
+ id: string;
181352
+ name: string;
181353
+ createdAt: Date;
181354
+ updatedAt: Date;
181355
+ deletedAt: Date | null;
181356
+ }[];
181357
+ }>;
181358
+ 500: import("zod").ZodObject<{
181359
+ message: import("zod").ZodString;
181360
+ error: import("zod").ZodAny;
181361
+ }, "strip", import("zod").ZodTypeAny, {
181362
+ message: string;
181363
+ error?: any;
181364
+ }, {
181365
+ message: string;
181366
+ error?: any;
181367
+ }>;
181368
+ };
181369
+ path: "settings//general_tag/tags";
181370
+ headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
181371
+ 'x-tenant': import("zod").ZodString;
181372
+ authorization: import("zod").ZodString;
181373
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
181374
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
181375
+ }, "strip", import("zod").ZodTypeAny, {
181376
+ 'x-tenant': string;
181377
+ authorization: string;
181378
+ 'x-client-timezone': string;
181379
+ 'x-code'?: string | undefined;
181380
+ }, {
181381
+ 'x-tenant': string;
181382
+ authorization: string;
181383
+ 'x-code'?: string | undefined;
181384
+ 'x-client-timezone'?: string | undefined;
181385
+ }>>>;
181386
+ };
181387
+ updateTag: {
181388
+ body: import("zod").ZodObject<{
181389
+ name: import("zod").ZodString;
181390
+ }, "strip", import("zod").ZodTypeAny, {
181391
+ name: string;
181392
+ }, {
181393
+ name: string;
181394
+ }>;
181395
+ method: "PATCH";
181396
+ pathParams: import("zod").ZodObject<{
181397
+ id: import("zod").ZodString;
181398
+ }, "strip", import("zod").ZodTypeAny, {
181399
+ id: string;
181400
+ }, {
181401
+ id: string;
181402
+ }>;
181403
+ responses: {
181404
+ 200: import("zod").ZodObject<{
181405
+ requestId: import("zod").ZodString;
181406
+ tag: import("zod").ZodObject<{
181407
+ id: import("zod").ZodString;
181408
+ createdAt: import("zod").ZodDate;
181409
+ updatedAt: import("zod").ZodDate;
181410
+ deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
181411
+ name: import("zod").ZodString;
181412
+ }, "strip", import("zod").ZodTypeAny, {
181413
+ id: string;
181414
+ name: string;
181415
+ createdAt: Date;
181416
+ updatedAt: Date;
181417
+ deletedAt: Date | null;
181418
+ }, {
181419
+ id: string;
181420
+ name: string;
181421
+ createdAt: Date;
181422
+ updatedAt: Date;
181423
+ deletedAt: Date | null;
181424
+ }>;
181425
+ }, "strip", import("zod").ZodTypeAny, {
181426
+ requestId: string;
181427
+ tag: {
181428
+ id: string;
181429
+ name: string;
181430
+ createdAt: Date;
181431
+ updatedAt: Date;
181432
+ deletedAt: Date | null;
181433
+ };
181434
+ }, {
181435
+ requestId: string;
181436
+ tag: {
181437
+ id: string;
181438
+ name: string;
181439
+ createdAt: Date;
181440
+ updatedAt: Date;
181441
+ deletedAt: Date | null;
181442
+ };
181443
+ }>;
181444
+ 500: import("zod").ZodObject<{
181445
+ message: import("zod").ZodString;
181446
+ error: import("zod").ZodAny;
181447
+ }, "strip", import("zod").ZodTypeAny, {
181448
+ message: string;
181449
+ error?: any;
181450
+ }, {
181451
+ message: string;
181452
+ error?: any;
181453
+ }>;
181454
+ };
181455
+ path: "settings//general_tag/tags/:id";
181456
+ headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
181457
+ 'x-tenant': import("zod").ZodString;
181458
+ authorization: import("zod").ZodString;
181459
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
181460
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
181461
+ }, "strip", import("zod").ZodTypeAny, {
181462
+ 'x-tenant': string;
181463
+ authorization: string;
181464
+ 'x-client-timezone': string;
181465
+ 'x-code'?: string | undefined;
181466
+ }, {
181467
+ 'x-tenant': string;
181468
+ authorization: string;
181469
+ 'x-code'?: string | undefined;
181470
+ 'x-client-timezone'?: string | undefined;
181471
+ }>>>;
181472
+ };
181473
+ deleteTag: {
181474
+ body: import("zod").ZodOptional<import("zod").ZodAny>;
181475
+ method: "DELETE";
181476
+ pathParams: import("zod").ZodObject<{
181477
+ id: import("zod").ZodString;
181478
+ }, "strip", import("zod").ZodTypeAny, {
181479
+ id: string;
181480
+ }, {
181481
+ id: string;
181482
+ }>;
181483
+ responses: {
181484
+ 200: import("zod").ZodObject<{
181485
+ requestId: import("zod").ZodString;
181486
+ message: import("zod").ZodString;
181487
+ }, "strip", import("zod").ZodTypeAny, {
181488
+ message: string;
181489
+ requestId: string;
181490
+ }, {
181491
+ message: string;
181492
+ requestId: string;
181493
+ }>;
181494
+ 500: import("zod").ZodObject<{
181495
+ message: import("zod").ZodString;
181496
+ error: import("zod").ZodAny;
181497
+ }, "strip", import("zod").ZodTypeAny, {
181498
+ message: string;
181499
+ error?: any;
181500
+ }, {
181501
+ message: string;
181502
+ error?: any;
181503
+ }>;
181504
+ };
181505
+ path: "settings//general_tag/tags/:id";
181506
+ headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
181507
+ 'x-tenant': import("zod").ZodString;
181508
+ authorization: import("zod").ZodString;
181509
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
181510
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
181511
+ }, "strip", import("zod").ZodTypeAny, {
181512
+ 'x-tenant': string;
181513
+ authorization: string;
181514
+ 'x-client-timezone': string;
181515
+ 'x-code'?: string | undefined;
181516
+ }, {
181517
+ 'x-tenant': string;
181518
+ authorization: string;
181519
+ 'x-code'?: string | undefined;
181520
+ 'x-client-timezone'?: string | undefined;
181521
+ }>>>;
181522
+ };
181523
+ };
181524
+ };
181525
+ export declare const contactLabelSettingContract: {
181526
+ contactLabel: {
178328
181527
  createTag: {
178329
181528
  body: import("zod").ZodObject<{
178330
181529
  name: import("zod").ZodString;
@@ -178389,7 +181588,7 @@ export declare const tagSettingContract: {
178389
181588
  error?: any;
178390
181589
  }>;
178391
181590
  };
178392
- path: "settings/tags";
181591
+ path: "settings//contact_label/tags";
178393
181592
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
178394
181593
  'x-tenant': import("zod").ZodString;
178395
181594
  authorization: import("zod").ZodString;
@@ -178471,7 +181670,7 @@ export declare const tagSettingContract: {
178471
181670
  error?: any;
178472
181671
  }>;
178473
181672
  };
178474
- path: "settings/tags";
181673
+ path: "settings//contact_label/tags";
178475
181674
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
178476
181675
  'x-tenant': import("zod").ZodString;
178477
181676
  authorization: import("zod").ZodString;
@@ -178557,7 +181756,7 @@ export declare const tagSettingContract: {
178557
181756
  error?: any;
178558
181757
  }>;
178559
181758
  };
178560
- path: "settings/tags/:id";
181759
+ path: "settings//contact_label/tags/:id";
178561
181760
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
178562
181761
  'x-tenant': import("zod").ZodString;
178563
181762
  authorization: import("zod").ZodString;
@@ -178607,7 +181806,7 @@ export declare const tagSettingContract: {
178607
181806
  error?: any;
178608
181807
  }>;
178609
181808
  };
178610
- path: "settings/tags/:id";
181809
+ path: "settings//contact_label/tags/:id";
178611
181810
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
178612
181811
  'x-tenant': import("zod").ZodString;
178613
181812
  authorization: import("zod").ZodString;