@timebyping/configuration-service-sdk 7.72.0 → 7.73.0

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.
package/dist/index.d.ts CHANGED
@@ -377,18 +377,6 @@ export interface TimeZoneEntity {
377
377
  export declare const TimeZoneEntitySchema: z.ZodObject<{
378
378
  IANA: z.ZodString;
379
379
  }, z.core.$strip>;
380
- export interface CustomerEncryptionKey {
381
- enabled: boolean;
382
- type: "aws" | "azure" | "none";
383
- }
384
- export declare const CustomerEncryptionKeySchema: z.ZodObject<{
385
- enabled: z.ZodBoolean;
386
- type: z.ZodEnum<{
387
- aws: "aws";
388
- azure: "azure";
389
- none: "none";
390
- }>;
391
- }, z.core.$strip>;
392
380
  export interface EnabledWebappTimekeepingFeatures {
393
381
  phaseCodes?: (boolean | null);
394
382
  taskCodes?: (boolean | null);
@@ -494,6 +482,64 @@ export interface TimeVelocityConfig {
494
482
  export declare const TimeVelocityConfigSchema: z.ZodObject<{
495
483
  minimumStartDate: z.ZodOptional<z.ZodUnion<readonly [z.ZodCodec<z.ZodUnion<readonly [z.ZodString, z.ZodCustom<import("luxon").DateTime<true>, import("luxon").DateTime<true>>]>, z.ZodCustom<import("luxon").DateTime<true>, import("luxon").DateTime<true>>>, z.ZodNull]>>;
496
484
  }, z.core.$strip>;
485
+ export interface CustomerEncryptionKey {
486
+ enabled: boolean;
487
+ type: "aws" | "azure" | "none";
488
+ }
489
+ export declare const CustomerEncryptionKeySchema: z.ZodObject<{
490
+ enabled: z.ZodBoolean;
491
+ type: z.ZodEnum<{
492
+ aws: "aws";
493
+ azure: "azure";
494
+ none: "none";
495
+ }>;
496
+ }, z.core.$strip>;
497
+ export interface AwsCustomerEncryptionKey {
498
+ enabled: boolean;
499
+ type: "aws" | "azure" | "none";
500
+ accountId: string;
501
+ region: string;
502
+ kmsKeyArn: string;
503
+ crossAccountRoleArn: string;
504
+ }
505
+ export declare const AwsCustomerEncryptionKeySchema: z.ZodObject<{
506
+ enabled: z.ZodBoolean;
507
+ type: z.ZodEnum<{
508
+ aws: "aws";
509
+ azure: "azure";
510
+ none: "none";
511
+ }>;
512
+ accountId: z.ZodString;
513
+ region: z.ZodString;
514
+ kmsKeyArn: z.ZodString;
515
+ crossAccountRoleArn: z.ZodString;
516
+ }, z.core.$strip>;
517
+ export interface AzureCustomerEncryptionKey {
518
+ enabled: boolean;
519
+ type: "aws" | "azure" | "none";
520
+ tenantId: string;
521
+ subscriptionId: string;
522
+ keyVaultEndpoint: string;
523
+ keyName: string;
524
+ keyVersion: string;
525
+ clientId: string;
526
+ clientSecret?: (string | null);
527
+ }
528
+ export declare const AzureCustomerEncryptionKeySchema: z.ZodObject<{
529
+ enabled: z.ZodBoolean;
530
+ type: z.ZodEnum<{
531
+ aws: "aws";
532
+ azure: "azure";
533
+ none: "none";
534
+ }>;
535
+ tenantId: z.ZodString;
536
+ subscriptionId: z.ZodString;
537
+ keyVaultEndpoint: z.ZodString;
538
+ keyName: z.ZodString;
539
+ keyVersion: z.ZodString;
540
+ clientId: z.ZodString;
541
+ clientSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
542
+ }, z.core.$strip>;
497
543
  export interface AgentWebsiteEntryInput {
498
544
  applicationName: string;
499
545
  displayName?: string;
@@ -2404,7 +2450,7 @@ export interface CustomerConfigCreateDto {
2404
2450
  agentOutlookCaptureAdditionalMetaData?: (boolean | null);
2405
2451
  billingSystem?: (string | null);
2406
2452
  code?: (string | null);
2407
- customerEncryptionKey?: (CustomerEncryptionKey | null);
2453
+ customerEncryptionKey?: ((AwsCustomerEncryptionKey | AzureCustomerEncryptionKey | CustomerEncryptionKey) | null);
2408
2454
  defaultBillingIncrementSeconds?: (number | null);
2409
2455
  deletedAt?: (LuxonDateTimeSchemaOutput | null);
2410
2456
  egressExportIntervalSeconds?: (number | null);
@@ -2592,14 +2638,39 @@ export declare const CustomerConfigCreateDtoSchema: z.ZodObject<{
2592
2638
  agentOutlookCaptureAdditionalMetaData: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
2593
2639
  billingSystem: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
2594
2640
  code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
2595
- customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
2641
+ customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
2596
2642
  enabled: z.ZodBoolean;
2597
2643
  type: z.ZodEnum<{
2598
2644
  aws: "aws";
2599
2645
  azure: "azure";
2600
2646
  none: "none";
2601
2647
  }>;
2602
- }, z.core.$strip>, z.ZodNull]>>;
2648
+ accountId: z.ZodString;
2649
+ region: z.ZodString;
2650
+ kmsKeyArn: z.ZodString;
2651
+ crossAccountRoleArn: z.ZodString;
2652
+ }, z.core.$strip>, z.ZodObject<{
2653
+ enabled: z.ZodBoolean;
2654
+ type: z.ZodEnum<{
2655
+ aws: "aws";
2656
+ azure: "azure";
2657
+ none: "none";
2658
+ }>;
2659
+ tenantId: z.ZodString;
2660
+ subscriptionId: z.ZodString;
2661
+ keyVaultEndpoint: z.ZodString;
2662
+ keyName: z.ZodString;
2663
+ keyVersion: z.ZodString;
2664
+ clientId: z.ZodString;
2665
+ clientSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
2666
+ }, z.core.$strip>, z.ZodObject<{
2667
+ enabled: z.ZodBoolean;
2668
+ type: z.ZodEnum<{
2669
+ aws: "aws";
2670
+ azure: "azure";
2671
+ none: "none";
2672
+ }>;
2673
+ }, z.core.$strip>]>, z.ZodNull]>>;
2603
2674
  defaultBillingIncrementSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
2604
2675
  deletedAt: z.ZodOptional<z.ZodUnion<readonly [z.ZodCodec<z.ZodUnion<readonly [z.ZodISODateTime, z.ZodISODate, z.ZodCustom<import("luxon").DateTime<true>, import("luxon").DateTime<true>>]>, z.ZodCustom<import("luxon").DateTime<true>, import("luxon").DateTime<true>>>, z.ZodNull]>>;
2605
2676
  egressExportIntervalSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
@@ -2809,7 +2880,7 @@ export interface CustomerConfigUpdateDto {
2809
2880
  agentOutlookCaptureAdditionalMetaData?: (boolean | null);
2810
2881
  billingSystem?: (string | null);
2811
2882
  code?: (string | null);
2812
- customerEncryptionKey?: (CustomerEncryptionKey | null);
2883
+ customerEncryptionKey?: ((AwsCustomerEncryptionKey | AzureCustomerEncryptionKey | CustomerEncryptionKey) | null);
2813
2884
  defaultBillingIncrementSeconds?: (number | null);
2814
2885
  deletedAt?: (LuxonDateTimeSchemaOutput | null);
2815
2886
  egressExportIntervalSeconds?: (number | null);
@@ -2998,14 +3069,39 @@ export declare const CustomerConfigUpdateDtoSchema: z.ZodObject<{
2998
3069
  agentOutlookCaptureAdditionalMetaData: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
2999
3070
  billingSystem: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
3000
3071
  code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
3001
- customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
3072
+ customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
3002
3073
  enabled: z.ZodBoolean;
3003
3074
  type: z.ZodEnum<{
3004
3075
  aws: "aws";
3005
3076
  azure: "azure";
3006
3077
  none: "none";
3007
3078
  }>;
3008
- }, z.core.$strip>, z.ZodNull]>>;
3079
+ accountId: z.ZodString;
3080
+ region: z.ZodString;
3081
+ kmsKeyArn: z.ZodString;
3082
+ crossAccountRoleArn: z.ZodString;
3083
+ }, z.core.$strip>, z.ZodObject<{
3084
+ enabled: z.ZodBoolean;
3085
+ type: z.ZodEnum<{
3086
+ aws: "aws";
3087
+ azure: "azure";
3088
+ none: "none";
3089
+ }>;
3090
+ tenantId: z.ZodString;
3091
+ subscriptionId: z.ZodString;
3092
+ keyVaultEndpoint: z.ZodString;
3093
+ keyName: z.ZodString;
3094
+ keyVersion: z.ZodString;
3095
+ clientId: z.ZodString;
3096
+ clientSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
3097
+ }, z.core.$strip>, z.ZodObject<{
3098
+ enabled: z.ZodBoolean;
3099
+ type: z.ZodEnum<{
3100
+ aws: "aws";
3101
+ azure: "azure";
3102
+ none: "none";
3103
+ }>;
3104
+ }, z.core.$strip>]>, z.ZodNull]>>;
3009
3105
  defaultBillingIncrementSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
3010
3106
  deletedAt: z.ZodOptional<z.ZodUnion<readonly [z.ZodCodec<z.ZodUnion<readonly [z.ZodISODateTime, z.ZodISODate, z.ZodCustom<import("luxon").DateTime<true>, import("luxon").DateTime<true>>]>, z.ZodCustom<import("luxon").DateTime<true>, import("luxon").DateTime<true>>>, z.ZodNull]>>;
3011
3107
  egressExportIntervalSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
@@ -3272,7 +3368,7 @@ export interface CustomerConfig {
3272
3368
  agentOutlookCaptureAdditionalMetaData?: (boolean | null);
3273
3369
  billingSystem?: (string | null);
3274
3370
  code?: (string | null);
3275
- customerEncryptionKey?: (CustomerEncryptionKey | null);
3371
+ customerEncryptionKey?: ((AwsCustomerEncryptionKey | AzureCustomerEncryptionKey | CustomerEncryptionKey) | null);
3276
3372
  defaultBillingIncrementSeconds?: (number | null);
3277
3373
  deletedAt?: (LuxonDateTimeSchemaOutput | null);
3278
3374
  egressExportIntervalSeconds?: (number | null);
@@ -3465,14 +3561,39 @@ export declare const CustomerConfigSchema: z.ZodObject<{
3465
3561
  agentOutlookCaptureAdditionalMetaData: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
3466
3562
  billingSystem: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
3467
3563
  code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
3468
- customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
3564
+ customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
3469
3565
  enabled: z.ZodBoolean;
3470
3566
  type: z.ZodEnum<{
3471
3567
  aws: "aws";
3472
3568
  azure: "azure";
3473
3569
  none: "none";
3474
3570
  }>;
3475
- }, z.core.$strip>, z.ZodNull]>>;
3571
+ accountId: z.ZodString;
3572
+ region: z.ZodString;
3573
+ kmsKeyArn: z.ZodString;
3574
+ crossAccountRoleArn: z.ZodString;
3575
+ }, z.core.$strip>, z.ZodObject<{
3576
+ enabled: z.ZodBoolean;
3577
+ type: z.ZodEnum<{
3578
+ aws: "aws";
3579
+ azure: "azure";
3580
+ none: "none";
3581
+ }>;
3582
+ tenantId: z.ZodString;
3583
+ subscriptionId: z.ZodString;
3584
+ keyVaultEndpoint: z.ZodString;
3585
+ keyName: z.ZodString;
3586
+ keyVersion: z.ZodString;
3587
+ clientId: z.ZodString;
3588
+ clientSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
3589
+ }, z.core.$strip>, z.ZodObject<{
3590
+ enabled: z.ZodBoolean;
3591
+ type: z.ZodEnum<{
3592
+ aws: "aws";
3593
+ azure: "azure";
3594
+ none: "none";
3595
+ }>;
3596
+ }, z.core.$strip>]>, z.ZodNull]>>;
3476
3597
  defaultBillingIncrementSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
3477
3598
  deletedAt: z.ZodOptional<z.ZodUnion<readonly [z.ZodCodec<z.ZodUnion<readonly [z.ZodISODateTime, z.ZodISODate, z.ZodCustom<import("luxon").DateTime<true>, import("luxon").DateTime<true>>]>, z.ZodCustom<import("luxon").DateTime<true>, import("luxon").DateTime<true>>>, z.ZodNull]>>;
3478
3599
  egressExportIntervalSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
@@ -3778,14 +3899,39 @@ export declare const GetApiV1CustomersMe200Response: z.ZodObject<{
3778
3899
  agentOutlookCaptureAdditionalMetaData: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
3779
3900
  billingSystem: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
3780
3901
  code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
3781
- customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
3902
+ customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
3782
3903
  enabled: z.ZodBoolean;
3783
3904
  type: z.ZodEnum<{
3784
3905
  aws: "aws";
3785
3906
  azure: "azure";
3786
3907
  none: "none";
3787
3908
  }>;
3788
- }, z.core.$strip>, z.ZodNull]>>;
3909
+ accountId: z.ZodString;
3910
+ region: z.ZodString;
3911
+ kmsKeyArn: z.ZodString;
3912
+ crossAccountRoleArn: z.ZodString;
3913
+ }, z.core.$strip>, z.ZodObject<{
3914
+ enabled: z.ZodBoolean;
3915
+ type: z.ZodEnum<{
3916
+ aws: "aws";
3917
+ azure: "azure";
3918
+ none: "none";
3919
+ }>;
3920
+ tenantId: z.ZodString;
3921
+ subscriptionId: z.ZodString;
3922
+ keyVaultEndpoint: z.ZodString;
3923
+ keyName: z.ZodString;
3924
+ keyVersion: z.ZodString;
3925
+ clientId: z.ZodString;
3926
+ clientSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
3927
+ }, z.core.$strip>, z.ZodObject<{
3928
+ enabled: z.ZodBoolean;
3929
+ type: z.ZodEnum<{
3930
+ aws: "aws";
3931
+ azure: "azure";
3932
+ none: "none";
3933
+ }>;
3934
+ }, z.core.$strip>]>, z.ZodNull]>>;
3789
3935
  defaultBillingIncrementSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
3790
3936
  deletedAt: z.ZodOptional<z.ZodUnion<readonly [z.ZodCodec<z.ZodUnion<readonly [z.ZodISODateTime, z.ZodISODate, z.ZodCustom<import("luxon").DateTime<true>, import("luxon").DateTime<true>>]>, z.ZodCustom<import("luxon").DateTime<true>, import("luxon").DateTime<true>>>, z.ZodNull]>>;
3791
3937
  egressExportIntervalSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
@@ -8534,14 +8680,39 @@ export declare const GetApiV1CustomersCustomerid200Response: z.ZodObject<{
8534
8680
  agentOutlookCaptureAdditionalMetaData: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
8535
8681
  billingSystem: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
8536
8682
  code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
8537
- customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
8683
+ customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
8538
8684
  enabled: z.ZodBoolean;
8539
8685
  type: z.ZodEnum<{
8540
8686
  aws: "aws";
8541
8687
  azure: "azure";
8542
8688
  none: "none";
8543
8689
  }>;
8544
- }, z.core.$strip>, z.ZodNull]>>;
8690
+ accountId: z.ZodString;
8691
+ region: z.ZodString;
8692
+ kmsKeyArn: z.ZodString;
8693
+ crossAccountRoleArn: z.ZodString;
8694
+ }, z.core.$strip>, z.ZodObject<{
8695
+ enabled: z.ZodBoolean;
8696
+ type: z.ZodEnum<{
8697
+ aws: "aws";
8698
+ azure: "azure";
8699
+ none: "none";
8700
+ }>;
8701
+ tenantId: z.ZodString;
8702
+ subscriptionId: z.ZodString;
8703
+ keyVaultEndpoint: z.ZodString;
8704
+ keyName: z.ZodString;
8705
+ keyVersion: z.ZodString;
8706
+ clientId: z.ZodString;
8707
+ clientSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
8708
+ }, z.core.$strip>, z.ZodObject<{
8709
+ enabled: z.ZodBoolean;
8710
+ type: z.ZodEnum<{
8711
+ aws: "aws";
8712
+ azure: "azure";
8713
+ none: "none";
8714
+ }>;
8715
+ }, z.core.$strip>]>, z.ZodNull]>>;
8545
8716
  defaultBillingIncrementSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
8546
8717
  deletedAt: z.ZodOptional<z.ZodUnion<readonly [z.ZodCodec<z.ZodUnion<readonly [z.ZodISODateTime, z.ZodISODate, z.ZodCustom<import("luxon").DateTime<true>, import("luxon").DateTime<true>>]>, z.ZodCustom<import("luxon").DateTime<true>, import("luxon").DateTime<true>>>, z.ZodNull]>>;
8547
8718
  egressExportIntervalSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
@@ -8850,14 +9021,39 @@ export declare const PostApiV1CustomersCustomeridBody: z.ZodObject<{
8850
9021
  agentOutlookCaptureAdditionalMetaData: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
8851
9022
  billingSystem: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
8852
9023
  code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
8853
- customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
9024
+ customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
8854
9025
  enabled: z.ZodBoolean;
8855
9026
  type: z.ZodEnum<{
8856
9027
  aws: "aws";
8857
9028
  azure: "azure";
8858
9029
  none: "none";
8859
9030
  }>;
8860
- }, z.core.$strip>, z.ZodNull]>>;
9031
+ accountId: z.ZodString;
9032
+ region: z.ZodString;
9033
+ kmsKeyArn: z.ZodString;
9034
+ crossAccountRoleArn: z.ZodString;
9035
+ }, z.core.$strip>, z.ZodObject<{
9036
+ enabled: z.ZodBoolean;
9037
+ type: z.ZodEnum<{
9038
+ aws: "aws";
9039
+ azure: "azure";
9040
+ none: "none";
9041
+ }>;
9042
+ tenantId: z.ZodString;
9043
+ subscriptionId: z.ZodString;
9044
+ keyVaultEndpoint: z.ZodString;
9045
+ keyName: z.ZodString;
9046
+ keyVersion: z.ZodString;
9047
+ clientId: z.ZodString;
9048
+ clientSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
9049
+ }, z.core.$strip>, z.ZodObject<{
9050
+ enabled: z.ZodBoolean;
9051
+ type: z.ZodEnum<{
9052
+ aws: "aws";
9053
+ azure: "azure";
9054
+ none: "none";
9055
+ }>;
9056
+ }, z.core.$strip>]>, z.ZodNull]>>;
8861
9057
  defaultBillingIncrementSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
8862
9058
  deletedAt: z.ZodOptional<z.ZodUnion<readonly [z.ZodCodec<z.ZodUnion<readonly [z.ZodISODateTime, z.ZodISODate, z.ZodCustom<import("luxon").DateTime<true>, import("luxon").DateTime<true>>]>, z.ZodCustom<import("luxon").DateTime<true>, import("luxon").DateTime<true>>>, z.ZodNull]>>;
8863
9059
  egressExportIntervalSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
@@ -9147,14 +9343,39 @@ export declare const PostApiV1CustomersCustomerid201Response: z.ZodObject<{
9147
9343
  agentOutlookCaptureAdditionalMetaData: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
9148
9344
  billingSystem: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
9149
9345
  code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
9150
- customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
9346
+ customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
9151
9347
  enabled: z.ZodBoolean;
9152
9348
  type: z.ZodEnum<{
9153
9349
  aws: "aws";
9154
9350
  azure: "azure";
9155
9351
  none: "none";
9156
9352
  }>;
9157
- }, z.core.$strip>, z.ZodNull]>>;
9353
+ accountId: z.ZodString;
9354
+ region: z.ZodString;
9355
+ kmsKeyArn: z.ZodString;
9356
+ crossAccountRoleArn: z.ZodString;
9357
+ }, z.core.$strip>, z.ZodObject<{
9358
+ enabled: z.ZodBoolean;
9359
+ type: z.ZodEnum<{
9360
+ aws: "aws";
9361
+ azure: "azure";
9362
+ none: "none";
9363
+ }>;
9364
+ tenantId: z.ZodString;
9365
+ subscriptionId: z.ZodString;
9366
+ keyVaultEndpoint: z.ZodString;
9367
+ keyName: z.ZodString;
9368
+ keyVersion: z.ZodString;
9369
+ clientId: z.ZodString;
9370
+ clientSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
9371
+ }, z.core.$strip>, z.ZodObject<{
9372
+ enabled: z.ZodBoolean;
9373
+ type: z.ZodEnum<{
9374
+ aws: "aws";
9375
+ azure: "azure";
9376
+ none: "none";
9377
+ }>;
9378
+ }, z.core.$strip>]>, z.ZodNull]>>;
9158
9379
  defaultBillingIncrementSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
9159
9380
  deletedAt: z.ZodOptional<z.ZodUnion<readonly [z.ZodCodec<z.ZodUnion<readonly [z.ZodISODateTime, z.ZodISODate, z.ZodCustom<import("luxon").DateTime<true>, import("luxon").DateTime<true>>]>, z.ZodCustom<import("luxon").DateTime<true>, import("luxon").DateTime<true>>>, z.ZodNull]>>;
9160
9381
  egressExportIntervalSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
@@ -9463,14 +9684,39 @@ export declare const PatchApiV1CustomersCustomeridBody: z.ZodObject<{
9463
9684
  agentOutlookCaptureAdditionalMetaData: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
9464
9685
  billingSystem: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
9465
9686
  code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
9466
- customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
9687
+ customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
9467
9688
  enabled: z.ZodBoolean;
9468
9689
  type: z.ZodEnum<{
9469
9690
  aws: "aws";
9470
9691
  azure: "azure";
9471
9692
  none: "none";
9472
9693
  }>;
9473
- }, z.core.$strip>, z.ZodNull]>>;
9694
+ accountId: z.ZodString;
9695
+ region: z.ZodString;
9696
+ kmsKeyArn: z.ZodString;
9697
+ crossAccountRoleArn: z.ZodString;
9698
+ }, z.core.$strip>, z.ZodObject<{
9699
+ enabled: z.ZodBoolean;
9700
+ type: z.ZodEnum<{
9701
+ aws: "aws";
9702
+ azure: "azure";
9703
+ none: "none";
9704
+ }>;
9705
+ tenantId: z.ZodString;
9706
+ subscriptionId: z.ZodString;
9707
+ keyVaultEndpoint: z.ZodString;
9708
+ keyName: z.ZodString;
9709
+ keyVersion: z.ZodString;
9710
+ clientId: z.ZodString;
9711
+ clientSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
9712
+ }, z.core.$strip>, z.ZodObject<{
9713
+ enabled: z.ZodBoolean;
9714
+ type: z.ZodEnum<{
9715
+ aws: "aws";
9716
+ azure: "azure";
9717
+ none: "none";
9718
+ }>;
9719
+ }, z.core.$strip>]>, z.ZodNull]>>;
9474
9720
  defaultBillingIncrementSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
9475
9721
  deletedAt: z.ZodOptional<z.ZodUnion<readonly [z.ZodCodec<z.ZodUnion<readonly [z.ZodISODateTime, z.ZodISODate, z.ZodCustom<import("luxon").DateTime<true>, import("luxon").DateTime<true>>]>, z.ZodCustom<import("luxon").DateTime<true>, import("luxon").DateTime<true>>>, z.ZodNull]>>;
9476
9722
  egressExportIntervalSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
@@ -9761,14 +10007,39 @@ export declare const PatchApiV1CustomersCustomerid200Response: z.ZodObject<{
9761
10007
  agentOutlookCaptureAdditionalMetaData: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
9762
10008
  billingSystem: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
9763
10009
  code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
9764
- customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
10010
+ customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
9765
10011
  enabled: z.ZodBoolean;
9766
10012
  type: z.ZodEnum<{
9767
10013
  aws: "aws";
9768
10014
  azure: "azure";
9769
10015
  none: "none";
9770
10016
  }>;
9771
- }, z.core.$strip>, z.ZodNull]>>;
10017
+ accountId: z.ZodString;
10018
+ region: z.ZodString;
10019
+ kmsKeyArn: z.ZodString;
10020
+ crossAccountRoleArn: z.ZodString;
10021
+ }, z.core.$strip>, z.ZodObject<{
10022
+ enabled: z.ZodBoolean;
10023
+ type: z.ZodEnum<{
10024
+ aws: "aws";
10025
+ azure: "azure";
10026
+ none: "none";
10027
+ }>;
10028
+ tenantId: z.ZodString;
10029
+ subscriptionId: z.ZodString;
10030
+ keyVaultEndpoint: z.ZodString;
10031
+ keyName: z.ZodString;
10032
+ keyVersion: z.ZodString;
10033
+ clientId: z.ZodString;
10034
+ clientSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
10035
+ }, z.core.$strip>, z.ZodObject<{
10036
+ enabled: z.ZodBoolean;
10037
+ type: z.ZodEnum<{
10038
+ aws: "aws";
10039
+ azure: "azure";
10040
+ none: "none";
10041
+ }>;
10042
+ }, z.core.$strip>]>, z.ZodNull]>>;
9772
10043
  defaultBillingIncrementSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
9773
10044
  deletedAt: z.ZodOptional<z.ZodUnion<readonly [z.ZodCodec<z.ZodUnion<readonly [z.ZodISODateTime, z.ZodISODate, z.ZodCustom<import("luxon").DateTime<true>, import("luxon").DateTime<true>>]>, z.ZodCustom<import("luxon").DateTime<true>, import("luxon").DateTime<true>>>, z.ZodNull]>>;
9774
10045
  egressExportIntervalSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
@@ -10077,14 +10348,39 @@ export declare const DeleteApiV1CustomersCustomerid200Response: z.ZodObject<{
10077
10348
  agentOutlookCaptureAdditionalMetaData: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
10078
10349
  billingSystem: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
10079
10350
  code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
10080
- customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
10351
+ customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
10081
10352
  enabled: z.ZodBoolean;
10082
10353
  type: z.ZodEnum<{
10083
10354
  aws: "aws";
10084
10355
  azure: "azure";
10085
10356
  none: "none";
10086
10357
  }>;
10087
- }, z.core.$strip>, z.ZodNull]>>;
10358
+ accountId: z.ZodString;
10359
+ region: z.ZodString;
10360
+ kmsKeyArn: z.ZodString;
10361
+ crossAccountRoleArn: z.ZodString;
10362
+ }, z.core.$strip>, z.ZodObject<{
10363
+ enabled: z.ZodBoolean;
10364
+ type: z.ZodEnum<{
10365
+ aws: "aws";
10366
+ azure: "azure";
10367
+ none: "none";
10368
+ }>;
10369
+ tenantId: z.ZodString;
10370
+ subscriptionId: z.ZodString;
10371
+ keyVaultEndpoint: z.ZodString;
10372
+ keyName: z.ZodString;
10373
+ keyVersion: z.ZodString;
10374
+ clientId: z.ZodString;
10375
+ clientSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
10376
+ }, z.core.$strip>, z.ZodObject<{
10377
+ enabled: z.ZodBoolean;
10378
+ type: z.ZodEnum<{
10379
+ aws: "aws";
10380
+ azure: "azure";
10381
+ none: "none";
10382
+ }>;
10383
+ }, z.core.$strip>]>, z.ZodNull]>>;
10088
10384
  defaultBillingIncrementSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
10089
10385
  deletedAt: z.ZodOptional<z.ZodUnion<readonly [z.ZodCodec<z.ZodUnion<readonly [z.ZodISODateTime, z.ZodISODate, z.ZodCustom<import("luxon").DateTime<true>, import("luxon").DateTime<true>>]>, z.ZodCustom<import("luxon").DateTime<true>, import("luxon").DateTime<true>>>, z.ZodNull]>>;
10090
10386
  egressExportIntervalSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
@@ -10395,14 +10691,39 @@ export declare const GetApiV1Customers200Response: z.ZodUnion<readonly [z.ZodStr
10395
10691
  agentOutlookCaptureAdditionalMetaData: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
10396
10692
  billingSystem: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
10397
10693
  code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
10398
- customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
10694
+ customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
10399
10695
  enabled: z.ZodBoolean;
10400
10696
  type: z.ZodEnum<{
10401
10697
  aws: "aws";
10402
10698
  azure: "azure";
10403
10699
  none: "none";
10404
10700
  }>;
10405
- }, z.core.$strip>, z.ZodNull]>>;
10701
+ accountId: z.ZodString;
10702
+ region: z.ZodString;
10703
+ kmsKeyArn: z.ZodString;
10704
+ crossAccountRoleArn: z.ZodString;
10705
+ }, z.core.$strip>, z.ZodObject<{
10706
+ enabled: z.ZodBoolean;
10707
+ type: z.ZodEnum<{
10708
+ aws: "aws";
10709
+ azure: "azure";
10710
+ none: "none";
10711
+ }>;
10712
+ tenantId: z.ZodString;
10713
+ subscriptionId: z.ZodString;
10714
+ keyVaultEndpoint: z.ZodString;
10715
+ keyName: z.ZodString;
10716
+ keyVersion: z.ZodString;
10717
+ clientId: z.ZodString;
10718
+ clientSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
10719
+ }, z.core.$strip>, z.ZodObject<{
10720
+ enabled: z.ZodBoolean;
10721
+ type: z.ZodEnum<{
10722
+ aws: "aws";
10723
+ azure: "azure";
10724
+ none: "none";
10725
+ }>;
10726
+ }, z.core.$strip>]>, z.ZodNull]>>;
10406
10727
  defaultBillingIncrementSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
10407
10728
  deletedAt: z.ZodOptional<z.ZodUnion<readonly [z.ZodCodec<z.ZodUnion<readonly [z.ZodISODateTime, z.ZodISODate, z.ZodCustom<import("luxon").DateTime<true>, import("luxon").DateTime<true>>]>, z.ZodCustom<import("luxon").DateTime<true>, import("luxon").DateTime<true>>>, z.ZodNull]>>;
10408
10729
  egressExportIntervalSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
@@ -10863,14 +11184,39 @@ export declare const PatchApiV1OnboardingCustomeridLogo200Response: z.ZodObject<
10863
11184
  agentOutlookCaptureAdditionalMetaData: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
10864
11185
  billingSystem: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
10865
11186
  code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
10866
- customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
11187
+ customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
10867
11188
  enabled: z.ZodBoolean;
10868
11189
  type: z.ZodEnum<{
10869
11190
  aws: "aws";
10870
11191
  azure: "azure";
10871
11192
  none: "none";
10872
11193
  }>;
10873
- }, z.core.$strip>, z.ZodNull]>>;
11194
+ accountId: z.ZodString;
11195
+ region: z.ZodString;
11196
+ kmsKeyArn: z.ZodString;
11197
+ crossAccountRoleArn: z.ZodString;
11198
+ }, z.core.$strip>, z.ZodObject<{
11199
+ enabled: z.ZodBoolean;
11200
+ type: z.ZodEnum<{
11201
+ aws: "aws";
11202
+ azure: "azure";
11203
+ none: "none";
11204
+ }>;
11205
+ tenantId: z.ZodString;
11206
+ subscriptionId: z.ZodString;
11207
+ keyVaultEndpoint: z.ZodString;
11208
+ keyName: z.ZodString;
11209
+ keyVersion: z.ZodString;
11210
+ clientId: z.ZodString;
11211
+ clientSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
11212
+ }, z.core.$strip>, z.ZodObject<{
11213
+ enabled: z.ZodBoolean;
11214
+ type: z.ZodEnum<{
11215
+ aws: "aws";
11216
+ azure: "azure";
11217
+ none: "none";
11218
+ }>;
11219
+ }, z.core.$strip>]>, z.ZodNull]>>;
10874
11220
  defaultBillingIncrementSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
10875
11221
  deletedAt: z.ZodOptional<z.ZodUnion<readonly [z.ZodCodec<z.ZodUnion<readonly [z.ZodISODateTime, z.ZodISODate, z.ZodCustom<import("luxon").DateTime<true>, import("luxon").DateTime<true>>]>, z.ZodCustom<import("luxon").DateTime<true>, import("luxon").DateTime<true>>>, z.ZodNull]>>;
10876
11222
  egressExportIntervalSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
@@ -12435,14 +12781,39 @@ export declare const Request: {
12435
12781
  agentOutlookCaptureAdditionalMetaData: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
12436
12782
  billingSystem: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
12437
12783
  code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
12438
- customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
12784
+ customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
12439
12785
  enabled: z.ZodBoolean;
12440
12786
  type: z.ZodEnum<{
12441
12787
  aws: "aws";
12442
12788
  azure: "azure";
12443
12789
  none: "none";
12444
12790
  }>;
12445
- }, z.core.$strip>, z.ZodNull]>>;
12791
+ accountId: z.ZodString;
12792
+ region: z.ZodString;
12793
+ kmsKeyArn: z.ZodString;
12794
+ crossAccountRoleArn: z.ZodString;
12795
+ }, z.core.$strip>, z.ZodObject<{
12796
+ enabled: z.ZodBoolean;
12797
+ type: z.ZodEnum<{
12798
+ aws: "aws";
12799
+ azure: "azure";
12800
+ none: "none";
12801
+ }>;
12802
+ tenantId: z.ZodString;
12803
+ subscriptionId: z.ZodString;
12804
+ keyVaultEndpoint: z.ZodString;
12805
+ keyName: z.ZodString;
12806
+ keyVersion: z.ZodString;
12807
+ clientId: z.ZodString;
12808
+ clientSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
12809
+ }, z.core.$strip>, z.ZodObject<{
12810
+ enabled: z.ZodBoolean;
12811
+ type: z.ZodEnum<{
12812
+ aws: "aws";
12813
+ azure: "azure";
12814
+ none: "none";
12815
+ }>;
12816
+ }, z.core.$strip>]>, z.ZodNull]>>;
12446
12817
  defaultBillingIncrementSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12447
12818
  deletedAt: z.ZodOptional<z.ZodUnion<readonly [z.ZodCodec<z.ZodUnion<readonly [z.ZodISODateTime, z.ZodISODate, z.ZodCustom<import("luxon").DateTime<true>, import("luxon").DateTime<true>>]>, z.ZodCustom<import("luxon").DateTime<true>, import("luxon").DateTime<true>>>, z.ZodNull]>>;
12448
12819
  egressExportIntervalSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
@@ -12737,14 +13108,39 @@ export declare const Request: {
12737
13108
  agentOutlookCaptureAdditionalMetaData: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
12738
13109
  billingSystem: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
12739
13110
  code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
12740
- customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
13111
+ customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
12741
13112
  enabled: z.ZodBoolean;
12742
13113
  type: z.ZodEnum<{
12743
13114
  aws: "aws";
12744
13115
  azure: "azure";
12745
13116
  none: "none";
12746
13117
  }>;
12747
- }, z.core.$strip>, z.ZodNull]>>;
13118
+ accountId: z.ZodString;
13119
+ region: z.ZodString;
13120
+ kmsKeyArn: z.ZodString;
13121
+ crossAccountRoleArn: z.ZodString;
13122
+ }, z.core.$strip>, z.ZodObject<{
13123
+ enabled: z.ZodBoolean;
13124
+ type: z.ZodEnum<{
13125
+ aws: "aws";
13126
+ azure: "azure";
13127
+ none: "none";
13128
+ }>;
13129
+ tenantId: z.ZodString;
13130
+ subscriptionId: z.ZodString;
13131
+ keyVaultEndpoint: z.ZodString;
13132
+ keyName: z.ZodString;
13133
+ keyVersion: z.ZodString;
13134
+ clientId: z.ZodString;
13135
+ clientSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
13136
+ }, z.core.$strip>, z.ZodObject<{
13137
+ enabled: z.ZodBoolean;
13138
+ type: z.ZodEnum<{
13139
+ aws: "aws";
13140
+ azure: "azure";
13141
+ none: "none";
13142
+ }>;
13143
+ }, z.core.$strip>]>, z.ZodNull]>>;
12748
13144
  defaultBillingIncrementSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
12749
13145
  deletedAt: z.ZodOptional<z.ZodUnion<readonly [z.ZodCodec<z.ZodUnion<readonly [z.ZodISODateTime, z.ZodISODate, z.ZodCustom<import("luxon").DateTime<true>, import("luxon").DateTime<true>>]>, z.ZodCustom<import("luxon").DateTime<true>, import("luxon").DateTime<true>>>, z.ZodNull]>>;
12750
13146
  egressExportIntervalSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
@@ -16544,14 +16940,39 @@ export declare const Response: {
16544
16940
  agentOutlookCaptureAdditionalMetaData: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
16545
16941
  billingSystem: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
16546
16942
  code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
16547
- customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
16943
+ customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
16548
16944
  enabled: z.ZodBoolean;
16549
16945
  type: z.ZodEnum<{
16550
16946
  aws: "aws";
16551
16947
  azure: "azure";
16552
16948
  none: "none";
16553
16949
  }>;
16554
- }, z.core.$strip>, z.ZodNull]>>;
16950
+ accountId: z.ZodString;
16951
+ region: z.ZodString;
16952
+ kmsKeyArn: z.ZodString;
16953
+ crossAccountRoleArn: z.ZodString;
16954
+ }, z.core.$strip>, z.ZodObject<{
16955
+ enabled: z.ZodBoolean;
16956
+ type: z.ZodEnum<{
16957
+ aws: "aws";
16958
+ azure: "azure";
16959
+ none: "none";
16960
+ }>;
16961
+ tenantId: z.ZodString;
16962
+ subscriptionId: z.ZodString;
16963
+ keyVaultEndpoint: z.ZodString;
16964
+ keyName: z.ZodString;
16965
+ keyVersion: z.ZodString;
16966
+ clientId: z.ZodString;
16967
+ clientSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
16968
+ }, z.core.$strip>, z.ZodObject<{
16969
+ enabled: z.ZodBoolean;
16970
+ type: z.ZodEnum<{
16971
+ aws: "aws";
16972
+ azure: "azure";
16973
+ none: "none";
16974
+ }>;
16975
+ }, z.core.$strip>]>, z.ZodNull]>>;
16555
16976
  defaultBillingIncrementSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
16556
16977
  deletedAt: z.ZodOptional<z.ZodUnion<readonly [z.ZodCodec<z.ZodUnion<readonly [z.ZodISODateTime, z.ZodISODate, z.ZodCustom<import("luxon").DateTime<true>, import("luxon").DateTime<true>>]>, z.ZodCustom<import("luxon").DateTime<true>, import("luxon").DateTime<true>>>, z.ZodNull]>>;
16557
16978
  egressExportIntervalSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
@@ -16861,14 +17282,39 @@ export declare const Response: {
16861
17282
  agentOutlookCaptureAdditionalMetaData: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
16862
17283
  billingSystem: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
16863
17284
  code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
16864
- customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
17285
+ customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
16865
17286
  enabled: z.ZodBoolean;
16866
17287
  type: z.ZodEnum<{
16867
17288
  aws: "aws";
16868
17289
  azure: "azure";
16869
17290
  none: "none";
16870
17291
  }>;
16871
- }, z.core.$strip>, z.ZodNull]>>;
17292
+ accountId: z.ZodString;
17293
+ region: z.ZodString;
17294
+ kmsKeyArn: z.ZodString;
17295
+ crossAccountRoleArn: z.ZodString;
17296
+ }, z.core.$strip>, z.ZodObject<{
17297
+ enabled: z.ZodBoolean;
17298
+ type: z.ZodEnum<{
17299
+ aws: "aws";
17300
+ azure: "azure";
17301
+ none: "none";
17302
+ }>;
17303
+ tenantId: z.ZodString;
17304
+ subscriptionId: z.ZodString;
17305
+ keyVaultEndpoint: z.ZodString;
17306
+ keyName: z.ZodString;
17307
+ keyVersion: z.ZodString;
17308
+ clientId: z.ZodString;
17309
+ clientSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
17310
+ }, z.core.$strip>, z.ZodObject<{
17311
+ enabled: z.ZodBoolean;
17312
+ type: z.ZodEnum<{
17313
+ aws: "aws";
17314
+ azure: "azure";
17315
+ none: "none";
17316
+ }>;
17317
+ }, z.core.$strip>]>, z.ZodNull]>>;
16872
17318
  defaultBillingIncrementSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
16873
17319
  deletedAt: z.ZodOptional<z.ZodUnion<readonly [z.ZodCodec<z.ZodUnion<readonly [z.ZodISODateTime, z.ZodISODate, z.ZodCustom<import("luxon").DateTime<true>, import("luxon").DateTime<true>>]>, z.ZodCustom<import("luxon").DateTime<true>, import("luxon").DateTime<true>>>, z.ZodNull]>>;
16874
17320
  egressExportIntervalSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
@@ -17176,14 +17622,39 @@ export declare const Response: {
17176
17622
  agentOutlookCaptureAdditionalMetaData: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
17177
17623
  billingSystem: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
17178
17624
  code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
17179
- customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
17625
+ customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
17180
17626
  enabled: z.ZodBoolean;
17181
17627
  type: z.ZodEnum<{
17182
17628
  aws: "aws";
17183
17629
  azure: "azure";
17184
17630
  none: "none";
17185
17631
  }>;
17186
- }, z.core.$strip>, z.ZodNull]>>;
17632
+ accountId: z.ZodString;
17633
+ region: z.ZodString;
17634
+ kmsKeyArn: z.ZodString;
17635
+ crossAccountRoleArn: z.ZodString;
17636
+ }, z.core.$strip>, z.ZodObject<{
17637
+ enabled: z.ZodBoolean;
17638
+ type: z.ZodEnum<{
17639
+ aws: "aws";
17640
+ azure: "azure";
17641
+ none: "none";
17642
+ }>;
17643
+ tenantId: z.ZodString;
17644
+ subscriptionId: z.ZodString;
17645
+ keyVaultEndpoint: z.ZodString;
17646
+ keyName: z.ZodString;
17647
+ keyVersion: z.ZodString;
17648
+ clientId: z.ZodString;
17649
+ clientSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
17650
+ }, z.core.$strip>, z.ZodObject<{
17651
+ enabled: z.ZodBoolean;
17652
+ type: z.ZodEnum<{
17653
+ aws: "aws";
17654
+ azure: "azure";
17655
+ none: "none";
17656
+ }>;
17657
+ }, z.core.$strip>]>, z.ZodNull]>>;
17187
17658
  defaultBillingIncrementSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
17188
17659
  deletedAt: z.ZodOptional<z.ZodUnion<readonly [z.ZodCodec<z.ZodUnion<readonly [z.ZodISODateTime, z.ZodISODate, z.ZodCustom<import("luxon").DateTime<true>, import("luxon").DateTime<true>>]>, z.ZodCustom<import("luxon").DateTime<true>, import("luxon").DateTime<true>>>, z.ZodNull]>>;
17189
17660
  egressExportIntervalSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
@@ -17491,14 +17962,39 @@ export declare const Response: {
17491
17962
  agentOutlookCaptureAdditionalMetaData: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
17492
17963
  billingSystem: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
17493
17964
  code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
17494
- customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
17965
+ customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
17495
17966
  enabled: z.ZodBoolean;
17496
17967
  type: z.ZodEnum<{
17497
17968
  aws: "aws";
17498
17969
  azure: "azure";
17499
17970
  none: "none";
17500
17971
  }>;
17501
- }, z.core.$strip>, z.ZodNull]>>;
17972
+ accountId: z.ZodString;
17973
+ region: z.ZodString;
17974
+ kmsKeyArn: z.ZodString;
17975
+ crossAccountRoleArn: z.ZodString;
17976
+ }, z.core.$strip>, z.ZodObject<{
17977
+ enabled: z.ZodBoolean;
17978
+ type: z.ZodEnum<{
17979
+ aws: "aws";
17980
+ azure: "azure";
17981
+ none: "none";
17982
+ }>;
17983
+ tenantId: z.ZodString;
17984
+ subscriptionId: z.ZodString;
17985
+ keyVaultEndpoint: z.ZodString;
17986
+ keyName: z.ZodString;
17987
+ keyVersion: z.ZodString;
17988
+ clientId: z.ZodString;
17989
+ clientSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
17990
+ }, z.core.$strip>, z.ZodObject<{
17991
+ enabled: z.ZodBoolean;
17992
+ type: z.ZodEnum<{
17993
+ aws: "aws";
17994
+ azure: "azure";
17995
+ none: "none";
17996
+ }>;
17997
+ }, z.core.$strip>]>, z.ZodNull]>>;
17502
17998
  defaultBillingIncrementSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
17503
17999
  deletedAt: z.ZodOptional<z.ZodUnion<readonly [z.ZodCodec<z.ZodUnion<readonly [z.ZodISODateTime, z.ZodISODate, z.ZodCustom<import("luxon").DateTime<true>, import("luxon").DateTime<true>>]>, z.ZodCustom<import("luxon").DateTime<true>, import("luxon").DateTime<true>>>, z.ZodNull]>>;
17504
18000
  egressExportIntervalSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
@@ -17806,14 +18302,39 @@ export declare const Response: {
17806
18302
  agentOutlookCaptureAdditionalMetaData: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
17807
18303
  billingSystem: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
17808
18304
  code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
17809
- customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
18305
+ customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
17810
18306
  enabled: z.ZodBoolean;
17811
18307
  type: z.ZodEnum<{
17812
18308
  aws: "aws";
17813
18309
  azure: "azure";
17814
18310
  none: "none";
17815
18311
  }>;
17816
- }, z.core.$strip>, z.ZodNull]>>;
18312
+ accountId: z.ZodString;
18313
+ region: z.ZodString;
18314
+ kmsKeyArn: z.ZodString;
18315
+ crossAccountRoleArn: z.ZodString;
18316
+ }, z.core.$strip>, z.ZodObject<{
18317
+ enabled: z.ZodBoolean;
18318
+ type: z.ZodEnum<{
18319
+ aws: "aws";
18320
+ azure: "azure";
18321
+ none: "none";
18322
+ }>;
18323
+ tenantId: z.ZodString;
18324
+ subscriptionId: z.ZodString;
18325
+ keyVaultEndpoint: z.ZodString;
18326
+ keyName: z.ZodString;
18327
+ keyVersion: z.ZodString;
18328
+ clientId: z.ZodString;
18329
+ clientSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
18330
+ }, z.core.$strip>, z.ZodObject<{
18331
+ enabled: z.ZodBoolean;
18332
+ type: z.ZodEnum<{
18333
+ aws: "aws";
18334
+ azure: "azure";
18335
+ none: "none";
18336
+ }>;
18337
+ }, z.core.$strip>]>, z.ZodNull]>>;
17817
18338
  defaultBillingIncrementSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
17818
18339
  deletedAt: z.ZodOptional<z.ZodUnion<readonly [z.ZodCodec<z.ZodUnion<readonly [z.ZodISODateTime, z.ZodISODate, z.ZodCustom<import("luxon").DateTime<true>, import("luxon").DateTime<true>>]>, z.ZodCustom<import("luxon").DateTime<true>, import("luxon").DateTime<true>>>, z.ZodNull]>>;
17819
18340
  egressExportIntervalSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
@@ -18123,14 +18644,39 @@ export declare const Response: {
18123
18644
  agentOutlookCaptureAdditionalMetaData: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
18124
18645
  billingSystem: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
18125
18646
  code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
18126
- customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
18647
+ customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
18127
18648
  enabled: z.ZodBoolean;
18128
18649
  type: z.ZodEnum<{
18129
18650
  aws: "aws";
18130
18651
  azure: "azure";
18131
18652
  none: "none";
18132
18653
  }>;
18133
- }, z.core.$strip>, z.ZodNull]>>;
18654
+ accountId: z.ZodString;
18655
+ region: z.ZodString;
18656
+ kmsKeyArn: z.ZodString;
18657
+ crossAccountRoleArn: z.ZodString;
18658
+ }, z.core.$strip>, z.ZodObject<{
18659
+ enabled: z.ZodBoolean;
18660
+ type: z.ZodEnum<{
18661
+ aws: "aws";
18662
+ azure: "azure";
18663
+ none: "none";
18664
+ }>;
18665
+ tenantId: z.ZodString;
18666
+ subscriptionId: z.ZodString;
18667
+ keyVaultEndpoint: z.ZodString;
18668
+ keyName: z.ZodString;
18669
+ keyVersion: z.ZodString;
18670
+ clientId: z.ZodString;
18671
+ clientSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
18672
+ }, z.core.$strip>, z.ZodObject<{
18673
+ enabled: z.ZodBoolean;
18674
+ type: z.ZodEnum<{
18675
+ aws: "aws";
18676
+ azure: "azure";
18677
+ none: "none";
18678
+ }>;
18679
+ }, z.core.$strip>]>, z.ZodNull]>>;
18134
18680
  defaultBillingIncrementSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
18135
18681
  deletedAt: z.ZodOptional<z.ZodUnion<readonly [z.ZodCodec<z.ZodUnion<readonly [z.ZodISODateTime, z.ZodISODate, z.ZodCustom<import("luxon").DateTime<true>, import("luxon").DateTime<true>>]>, z.ZodCustom<import("luxon").DateTime<true>, import("luxon").DateTime<true>>>, z.ZodNull]>>;
18136
18682
  egressExportIntervalSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
@@ -18570,14 +19116,39 @@ export declare const Response: {
18570
19116
  agentOutlookCaptureAdditionalMetaData: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
18571
19117
  billingSystem: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
18572
19118
  code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
18573
- customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
19119
+ customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
18574
19120
  enabled: z.ZodBoolean;
18575
19121
  type: z.ZodEnum<{
18576
19122
  aws: "aws";
18577
19123
  azure: "azure";
18578
19124
  none: "none";
18579
19125
  }>;
18580
- }, z.core.$strip>, z.ZodNull]>>;
19126
+ accountId: z.ZodString;
19127
+ region: z.ZodString;
19128
+ kmsKeyArn: z.ZodString;
19129
+ crossAccountRoleArn: z.ZodString;
19130
+ }, z.core.$strip>, z.ZodObject<{
19131
+ enabled: z.ZodBoolean;
19132
+ type: z.ZodEnum<{
19133
+ aws: "aws";
19134
+ azure: "azure";
19135
+ none: "none";
19136
+ }>;
19137
+ tenantId: z.ZodString;
19138
+ subscriptionId: z.ZodString;
19139
+ keyVaultEndpoint: z.ZodString;
19140
+ keyName: z.ZodString;
19141
+ keyVersion: z.ZodString;
19142
+ clientId: z.ZodString;
19143
+ clientSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
19144
+ }, z.core.$strip>, z.ZodObject<{
19145
+ enabled: z.ZodBoolean;
19146
+ type: z.ZodEnum<{
19147
+ aws: "aws";
19148
+ azure: "azure";
19149
+ none: "none";
19150
+ }>;
19151
+ }, z.core.$strip>]>, z.ZodNull]>>;
18581
19152
  defaultBillingIncrementSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
18582
19153
  deletedAt: z.ZodOptional<z.ZodUnion<readonly [z.ZodCodec<z.ZodUnion<readonly [z.ZodISODateTime, z.ZodISODate, z.ZodCustom<import("luxon").DateTime<true>, import("luxon").DateTime<true>>]>, z.ZodCustom<import("luxon").DateTime<true>, import("luxon").DateTime<true>>>, z.ZodNull]>>;
18583
19154
  egressExportIntervalSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;