@kl1/contracts 1.1.70-uat → 1.1.72-uat

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,4 +1,3 @@
1
- export { holdLabelContract } from './hold-label';
2
1
  export declare const apiContract: {
3
2
  auth: {
4
3
  refreshToken: {
@@ -222471,6 +222470,244 @@ export declare const workflowContract: {
222471
222470
  };
222472
222471
  };
222473
222472
  };
222473
+ export declare const holdLabelContract: {
222474
+ holdLabel: {
222475
+ createHoldLabel: {
222476
+ body: import("zod").ZodObject<{
222477
+ name: import("zod").ZodString;
222478
+ }, "strip", import("zod").ZodTypeAny, {
222479
+ name: string;
222480
+ }, {
222481
+ name: string;
222482
+ }>;
222483
+ method: "POST";
222484
+ responses: {
222485
+ 201: import("zod").ZodObject<{
222486
+ requestId: import("zod").ZodString;
222487
+ holdLabel: import("zod").ZodObject<{
222488
+ id: import("zod").ZodString;
222489
+ createdAt: import("zod").ZodDate;
222490
+ updatedAt: import("zod").ZodDate;
222491
+ deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
222492
+ name: import("zod").ZodString;
222493
+ position: import("zod").ZodNumber;
222494
+ }, "strip", import("zod").ZodTypeAny, {
222495
+ id: string;
222496
+ name: string;
222497
+ position: number;
222498
+ createdAt: Date;
222499
+ updatedAt: Date;
222500
+ deletedAt: Date | null;
222501
+ }, {
222502
+ id: string;
222503
+ name: string;
222504
+ position: number;
222505
+ createdAt: Date;
222506
+ updatedAt: Date;
222507
+ deletedAt: Date | null;
222508
+ }>;
222509
+ }, "strip", import("zod").ZodTypeAny, {
222510
+ requestId: string;
222511
+ holdLabel: {
222512
+ id: string;
222513
+ name: string;
222514
+ position: number;
222515
+ createdAt: Date;
222516
+ updatedAt: Date;
222517
+ deletedAt: Date | null;
222518
+ };
222519
+ }, {
222520
+ requestId: string;
222521
+ holdLabel: {
222522
+ id: string;
222523
+ name: string;
222524
+ position: number;
222525
+ createdAt: Date;
222526
+ updatedAt: Date;
222527
+ deletedAt: Date | null;
222528
+ };
222529
+ }>;
222530
+ };
222531
+ path: "hold-label";
222532
+ };
222533
+ getHoldLabels: {
222534
+ method: "GET";
222535
+ responses: {
222536
+ 200: import("zod").ZodObject<{
222537
+ requestId: import("zod").ZodString;
222538
+ holdLabels: import("zod").ZodArray<import("zod").ZodObject<{
222539
+ id: import("zod").ZodString;
222540
+ createdAt: import("zod").ZodDate;
222541
+ updatedAt: import("zod").ZodDate;
222542
+ deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
222543
+ name: import("zod").ZodString;
222544
+ position: import("zod").ZodNumber;
222545
+ }, "strip", import("zod").ZodTypeAny, {
222546
+ id: string;
222547
+ name: string;
222548
+ position: number;
222549
+ createdAt: Date;
222550
+ updatedAt: Date;
222551
+ deletedAt: Date | null;
222552
+ }, {
222553
+ id: string;
222554
+ name: string;
222555
+ position: number;
222556
+ createdAt: Date;
222557
+ updatedAt: Date;
222558
+ deletedAt: Date | null;
222559
+ }>, "many">;
222560
+ }, "strip", import("zod").ZodTypeAny, {
222561
+ requestId: string;
222562
+ holdLabels: {
222563
+ id: string;
222564
+ name: string;
222565
+ position: number;
222566
+ createdAt: Date;
222567
+ updatedAt: Date;
222568
+ deletedAt: Date | null;
222569
+ }[];
222570
+ }, {
222571
+ requestId: string;
222572
+ holdLabels: {
222573
+ id: string;
222574
+ name: string;
222575
+ position: number;
222576
+ createdAt: Date;
222577
+ updatedAt: Date;
222578
+ deletedAt: Date | null;
222579
+ }[];
222580
+ }>;
222581
+ };
222582
+ path: "hold-label";
222583
+ };
222584
+ updateHoldLabel: {
222585
+ body: import("zod").ZodObject<{
222586
+ name: import("zod").ZodString;
222587
+ }, "strip", import("zod").ZodTypeAny, {
222588
+ name: string;
222589
+ }, {
222590
+ name: string;
222591
+ }>;
222592
+ method: "PATCH";
222593
+ pathParams: import("zod").ZodObject<{
222594
+ id: import("zod").ZodString;
222595
+ }, "strip", import("zod").ZodTypeAny, {
222596
+ id: string;
222597
+ }, {
222598
+ id: string;
222599
+ }>;
222600
+ responses: {
222601
+ 200: import("zod").ZodObject<{
222602
+ requestId: import("zod").ZodString;
222603
+ holdLabel: import("zod").ZodObject<{
222604
+ id: import("zod").ZodString;
222605
+ createdAt: import("zod").ZodDate;
222606
+ updatedAt: import("zod").ZodDate;
222607
+ deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
222608
+ name: import("zod").ZodString;
222609
+ position: import("zod").ZodNumber;
222610
+ }, "strip", import("zod").ZodTypeAny, {
222611
+ id: string;
222612
+ name: string;
222613
+ position: number;
222614
+ createdAt: Date;
222615
+ updatedAt: Date;
222616
+ deletedAt: Date | null;
222617
+ }, {
222618
+ id: string;
222619
+ name: string;
222620
+ position: number;
222621
+ createdAt: Date;
222622
+ updatedAt: Date;
222623
+ deletedAt: Date | null;
222624
+ }>;
222625
+ }, "strip", import("zod").ZodTypeAny, {
222626
+ requestId: string;
222627
+ holdLabel: {
222628
+ id: string;
222629
+ name: string;
222630
+ position: number;
222631
+ createdAt: Date;
222632
+ updatedAt: Date;
222633
+ deletedAt: Date | null;
222634
+ };
222635
+ }, {
222636
+ requestId: string;
222637
+ holdLabel: {
222638
+ id: string;
222639
+ name: string;
222640
+ position: number;
222641
+ createdAt: Date;
222642
+ updatedAt: Date;
222643
+ deletedAt: Date | null;
222644
+ };
222645
+ }>;
222646
+ };
222647
+ path: "hold-label/:id";
222648
+ };
222649
+ deleteHoldLabel: {
222650
+ body: null;
222651
+ method: "DELETE";
222652
+ pathParams: import("zod").ZodObject<{
222653
+ id: import("zod").ZodString;
222654
+ }, "strip", import("zod").ZodTypeAny, {
222655
+ id: string;
222656
+ }, {
222657
+ id: string;
222658
+ }>;
222659
+ responses: {
222660
+ 200: import("zod").ZodObject<{
222661
+ requestId: import("zod").ZodString;
222662
+ }, "strip", import("zod").ZodTypeAny, {
222663
+ requestId: string;
222664
+ }, {
222665
+ requestId: string;
222666
+ }>;
222667
+ };
222668
+ path: "hold-label/:id";
222669
+ };
222670
+ getAutoUnhold: {
222671
+ method: "GET";
222672
+ responses: {
222673
+ 200: import("zod").ZodObject<{
222674
+ requestId: import("zod").ZodString;
222675
+ autoUnhold: import("zod").ZodBoolean;
222676
+ }, "strip", import("zod").ZodTypeAny, {
222677
+ requestId: string;
222678
+ autoUnhold: boolean;
222679
+ }, {
222680
+ requestId: string;
222681
+ autoUnhold: boolean;
222682
+ }>;
222683
+ };
222684
+ path: "hold-label/auto-unhold";
222685
+ };
222686
+ updateAutoUnhold: {
222687
+ body: import("zod").ZodObject<{
222688
+ autoUnhold: import("zod").ZodBoolean;
222689
+ }, "strip", import("zod").ZodTypeAny, {
222690
+ autoUnhold: boolean;
222691
+ }, {
222692
+ autoUnhold: boolean;
222693
+ }>;
222694
+ method: "PATCH";
222695
+ responses: {
222696
+ 200: import("zod").ZodObject<{
222697
+ requestId: import("zod").ZodString;
222698
+ autoUnhold: import("zod").ZodBoolean;
222699
+ }, "strip", import("zod").ZodTypeAny, {
222700
+ requestId: string;
222701
+ autoUnhold: boolean;
222702
+ }, {
222703
+ requestId: string;
222704
+ autoUnhold: boolean;
222705
+ }>;
222706
+ };
222707
+ path: "hold-label/auto-unhold";
222708
+ };
222709
+ };
222710
+ };
222474
222711
  export declare const ticketSettingContract: {
222475
222712
  ticketSetting: {
222476
222713
  createAttribute: {