@timebyping/configuration-service-sdk 7.72.0 → 7.74.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 +1584 -318
- package/dist/index.js +24 -7
- package/dist/index.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/openapi.json +208 -23
- package/package.json +1 -1
- package/src/index.ts +57 -13
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;
|
|
@@ -512,6 +558,9 @@ export declare const BulkOperationErrorSchema: z.ZodObject<{
|
|
|
512
558
|
message: z.ZodString;
|
|
513
559
|
errorCode: z.ZodString;
|
|
514
560
|
}, z.core.$strip>;
|
|
561
|
+
export interface RotateEncryptionKeyDto {
|
|
562
|
+
}
|
|
563
|
+
export declare const RotateEncryptionKeyDtoSchema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
515
564
|
export interface PrivacyDocumentCreateDto {
|
|
516
565
|
customerId: ObjectIdSchemaOutput;
|
|
517
566
|
language: string;
|
|
@@ -2404,7 +2453,7 @@ export interface CustomerConfigCreateDto {
|
|
|
2404
2453
|
agentOutlookCaptureAdditionalMetaData?: (boolean | null);
|
|
2405
2454
|
billingSystem?: (string | null);
|
|
2406
2455
|
code?: (string | null);
|
|
2407
|
-
customerEncryptionKey?: (CustomerEncryptionKey | null);
|
|
2456
|
+
customerEncryptionKey?: ((AwsCustomerEncryptionKey | AzureCustomerEncryptionKey | CustomerEncryptionKey) | null);
|
|
2408
2457
|
defaultBillingIncrementSeconds?: (number | null);
|
|
2409
2458
|
deletedAt?: (LuxonDateTimeSchemaOutput | null);
|
|
2410
2459
|
egressExportIntervalSeconds?: (number | null);
|
|
@@ -2592,14 +2641,39 @@ export declare const CustomerConfigCreateDtoSchema: z.ZodObject<{
|
|
|
2592
2641
|
agentOutlookCaptureAdditionalMetaData: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
2593
2642
|
billingSystem: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
2594
2643
|
code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
2595
|
-
customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
2644
|
+
customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
|
|
2596
2645
|
enabled: z.ZodBoolean;
|
|
2597
2646
|
type: z.ZodEnum<{
|
|
2598
2647
|
aws: "aws";
|
|
2599
2648
|
azure: "azure";
|
|
2600
2649
|
none: "none";
|
|
2601
2650
|
}>;
|
|
2602
|
-
|
|
2651
|
+
accountId: z.ZodString;
|
|
2652
|
+
region: z.ZodString;
|
|
2653
|
+
kmsKeyArn: z.ZodString;
|
|
2654
|
+
crossAccountRoleArn: z.ZodString;
|
|
2655
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2656
|
+
enabled: z.ZodBoolean;
|
|
2657
|
+
type: z.ZodEnum<{
|
|
2658
|
+
aws: "aws";
|
|
2659
|
+
azure: "azure";
|
|
2660
|
+
none: "none";
|
|
2661
|
+
}>;
|
|
2662
|
+
tenantId: z.ZodString;
|
|
2663
|
+
subscriptionId: z.ZodString;
|
|
2664
|
+
keyVaultEndpoint: z.ZodString;
|
|
2665
|
+
keyName: z.ZodString;
|
|
2666
|
+
keyVersion: z.ZodString;
|
|
2667
|
+
clientId: z.ZodString;
|
|
2668
|
+
clientSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
2669
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2670
|
+
enabled: z.ZodBoolean;
|
|
2671
|
+
type: z.ZodEnum<{
|
|
2672
|
+
aws: "aws";
|
|
2673
|
+
azure: "azure";
|
|
2674
|
+
none: "none";
|
|
2675
|
+
}>;
|
|
2676
|
+
}, z.core.$strip>]>, z.ZodNull]>>;
|
|
2603
2677
|
defaultBillingIncrementSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
2604
2678
|
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
2679
|
egressExportIntervalSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
@@ -2809,7 +2883,7 @@ export interface CustomerConfigUpdateDto {
|
|
|
2809
2883
|
agentOutlookCaptureAdditionalMetaData?: (boolean | null);
|
|
2810
2884
|
billingSystem?: (string | null);
|
|
2811
2885
|
code?: (string | null);
|
|
2812
|
-
customerEncryptionKey?: (CustomerEncryptionKey | null);
|
|
2886
|
+
customerEncryptionKey?: ((AwsCustomerEncryptionKey | AzureCustomerEncryptionKey | CustomerEncryptionKey) | null);
|
|
2813
2887
|
defaultBillingIncrementSeconds?: (number | null);
|
|
2814
2888
|
deletedAt?: (LuxonDateTimeSchemaOutput | null);
|
|
2815
2889
|
egressExportIntervalSeconds?: (number | null);
|
|
@@ -2998,14 +3072,39 @@ export declare const CustomerConfigUpdateDtoSchema: z.ZodObject<{
|
|
|
2998
3072
|
agentOutlookCaptureAdditionalMetaData: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
2999
3073
|
billingSystem: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
3000
3074
|
code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
3001
|
-
customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
3075
|
+
customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
|
|
3002
3076
|
enabled: z.ZodBoolean;
|
|
3003
3077
|
type: z.ZodEnum<{
|
|
3004
3078
|
aws: "aws";
|
|
3005
3079
|
azure: "azure";
|
|
3006
3080
|
none: "none";
|
|
3007
3081
|
}>;
|
|
3008
|
-
|
|
3082
|
+
accountId: z.ZodString;
|
|
3083
|
+
region: z.ZodString;
|
|
3084
|
+
kmsKeyArn: z.ZodString;
|
|
3085
|
+
crossAccountRoleArn: z.ZodString;
|
|
3086
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3087
|
+
enabled: z.ZodBoolean;
|
|
3088
|
+
type: z.ZodEnum<{
|
|
3089
|
+
aws: "aws";
|
|
3090
|
+
azure: "azure";
|
|
3091
|
+
none: "none";
|
|
3092
|
+
}>;
|
|
3093
|
+
tenantId: z.ZodString;
|
|
3094
|
+
subscriptionId: z.ZodString;
|
|
3095
|
+
keyVaultEndpoint: z.ZodString;
|
|
3096
|
+
keyName: z.ZodString;
|
|
3097
|
+
keyVersion: z.ZodString;
|
|
3098
|
+
clientId: z.ZodString;
|
|
3099
|
+
clientSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
3100
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3101
|
+
enabled: z.ZodBoolean;
|
|
3102
|
+
type: z.ZodEnum<{
|
|
3103
|
+
aws: "aws";
|
|
3104
|
+
azure: "azure";
|
|
3105
|
+
none: "none";
|
|
3106
|
+
}>;
|
|
3107
|
+
}, z.core.$strip>]>, z.ZodNull]>>;
|
|
3009
3108
|
defaultBillingIncrementSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
3010
3109
|
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
3110
|
egressExportIntervalSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
@@ -3272,7 +3371,7 @@ export interface CustomerConfig {
|
|
|
3272
3371
|
agentOutlookCaptureAdditionalMetaData?: (boolean | null);
|
|
3273
3372
|
billingSystem?: (string | null);
|
|
3274
3373
|
code?: (string | null);
|
|
3275
|
-
customerEncryptionKey?: (CustomerEncryptionKey | null);
|
|
3374
|
+
customerEncryptionKey?: ((AwsCustomerEncryptionKey | AzureCustomerEncryptionKey | CustomerEncryptionKey) | null);
|
|
3276
3375
|
defaultBillingIncrementSeconds?: (number | null);
|
|
3277
3376
|
deletedAt?: (LuxonDateTimeSchemaOutput | null);
|
|
3278
3377
|
egressExportIntervalSeconds?: (number | null);
|
|
@@ -3465,14 +3564,39 @@ export declare const CustomerConfigSchema: z.ZodObject<{
|
|
|
3465
3564
|
agentOutlookCaptureAdditionalMetaData: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
3466
3565
|
billingSystem: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
3467
3566
|
code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
3468
|
-
customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
3567
|
+
customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
|
|
3469
3568
|
enabled: z.ZodBoolean;
|
|
3470
3569
|
type: z.ZodEnum<{
|
|
3471
3570
|
aws: "aws";
|
|
3472
3571
|
azure: "azure";
|
|
3473
3572
|
none: "none";
|
|
3474
3573
|
}>;
|
|
3475
|
-
|
|
3574
|
+
accountId: z.ZodString;
|
|
3575
|
+
region: z.ZodString;
|
|
3576
|
+
kmsKeyArn: z.ZodString;
|
|
3577
|
+
crossAccountRoleArn: z.ZodString;
|
|
3578
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3579
|
+
enabled: z.ZodBoolean;
|
|
3580
|
+
type: z.ZodEnum<{
|
|
3581
|
+
aws: "aws";
|
|
3582
|
+
azure: "azure";
|
|
3583
|
+
none: "none";
|
|
3584
|
+
}>;
|
|
3585
|
+
tenantId: z.ZodString;
|
|
3586
|
+
subscriptionId: z.ZodString;
|
|
3587
|
+
keyVaultEndpoint: z.ZodString;
|
|
3588
|
+
keyName: z.ZodString;
|
|
3589
|
+
keyVersion: z.ZodString;
|
|
3590
|
+
clientId: z.ZodString;
|
|
3591
|
+
clientSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
3592
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3593
|
+
enabled: z.ZodBoolean;
|
|
3594
|
+
type: z.ZodEnum<{
|
|
3595
|
+
aws: "aws";
|
|
3596
|
+
azure: "azure";
|
|
3597
|
+
none: "none";
|
|
3598
|
+
}>;
|
|
3599
|
+
}, z.core.$strip>]>, z.ZodNull]>>;
|
|
3476
3600
|
defaultBillingIncrementSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
3477
3601
|
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
3602
|
egressExportIntervalSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
@@ -3778,14 +3902,39 @@ export declare const GetApiV1CustomersMe200Response: z.ZodObject<{
|
|
|
3778
3902
|
agentOutlookCaptureAdditionalMetaData: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
3779
3903
|
billingSystem: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
3780
3904
|
code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
3781
|
-
customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
3905
|
+
customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
|
|
3782
3906
|
enabled: z.ZodBoolean;
|
|
3783
3907
|
type: z.ZodEnum<{
|
|
3784
3908
|
aws: "aws";
|
|
3785
3909
|
azure: "azure";
|
|
3786
3910
|
none: "none";
|
|
3787
3911
|
}>;
|
|
3788
|
-
|
|
3912
|
+
accountId: z.ZodString;
|
|
3913
|
+
region: z.ZodString;
|
|
3914
|
+
kmsKeyArn: z.ZodString;
|
|
3915
|
+
crossAccountRoleArn: z.ZodString;
|
|
3916
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3917
|
+
enabled: z.ZodBoolean;
|
|
3918
|
+
type: z.ZodEnum<{
|
|
3919
|
+
aws: "aws";
|
|
3920
|
+
azure: "azure";
|
|
3921
|
+
none: "none";
|
|
3922
|
+
}>;
|
|
3923
|
+
tenantId: z.ZodString;
|
|
3924
|
+
subscriptionId: z.ZodString;
|
|
3925
|
+
keyVaultEndpoint: z.ZodString;
|
|
3926
|
+
keyName: z.ZodString;
|
|
3927
|
+
keyVersion: z.ZodString;
|
|
3928
|
+
clientId: z.ZodString;
|
|
3929
|
+
clientSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
3930
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3931
|
+
enabled: z.ZodBoolean;
|
|
3932
|
+
type: z.ZodEnum<{
|
|
3933
|
+
aws: "aws";
|
|
3934
|
+
azure: "azure";
|
|
3935
|
+
none: "none";
|
|
3936
|
+
}>;
|
|
3937
|
+
}, z.core.$strip>]>, z.ZodNull]>>;
|
|
3789
3938
|
defaultBillingIncrementSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
3790
3939
|
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
3940
|
egressExportIntervalSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
@@ -8534,14 +8683,39 @@ export declare const GetApiV1CustomersCustomerid200Response: z.ZodObject<{
|
|
|
8534
8683
|
agentOutlookCaptureAdditionalMetaData: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
8535
8684
|
billingSystem: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
8536
8685
|
code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
8537
|
-
customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
8686
|
+
customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
|
|
8538
8687
|
enabled: z.ZodBoolean;
|
|
8539
8688
|
type: z.ZodEnum<{
|
|
8540
8689
|
aws: "aws";
|
|
8541
8690
|
azure: "azure";
|
|
8542
8691
|
none: "none";
|
|
8543
8692
|
}>;
|
|
8544
|
-
|
|
8693
|
+
accountId: z.ZodString;
|
|
8694
|
+
region: z.ZodString;
|
|
8695
|
+
kmsKeyArn: z.ZodString;
|
|
8696
|
+
crossAccountRoleArn: z.ZodString;
|
|
8697
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
8698
|
+
enabled: z.ZodBoolean;
|
|
8699
|
+
type: z.ZodEnum<{
|
|
8700
|
+
aws: "aws";
|
|
8701
|
+
azure: "azure";
|
|
8702
|
+
none: "none";
|
|
8703
|
+
}>;
|
|
8704
|
+
tenantId: z.ZodString;
|
|
8705
|
+
subscriptionId: z.ZodString;
|
|
8706
|
+
keyVaultEndpoint: z.ZodString;
|
|
8707
|
+
keyName: z.ZodString;
|
|
8708
|
+
keyVersion: z.ZodString;
|
|
8709
|
+
clientId: z.ZodString;
|
|
8710
|
+
clientSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
8711
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
8712
|
+
enabled: z.ZodBoolean;
|
|
8713
|
+
type: z.ZodEnum<{
|
|
8714
|
+
aws: "aws";
|
|
8715
|
+
azure: "azure";
|
|
8716
|
+
none: "none";
|
|
8717
|
+
}>;
|
|
8718
|
+
}, z.core.$strip>]>, z.ZodNull]>>;
|
|
8545
8719
|
defaultBillingIncrementSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
8546
8720
|
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
8721
|
egressExportIntervalSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
@@ -8850,14 +9024,39 @@ export declare const PostApiV1CustomersCustomeridBody: z.ZodObject<{
|
|
|
8850
9024
|
agentOutlookCaptureAdditionalMetaData: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
8851
9025
|
billingSystem: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
8852
9026
|
code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
8853
|
-
customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
9027
|
+
customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
|
|
8854
9028
|
enabled: z.ZodBoolean;
|
|
8855
9029
|
type: z.ZodEnum<{
|
|
8856
9030
|
aws: "aws";
|
|
8857
9031
|
azure: "azure";
|
|
8858
9032
|
none: "none";
|
|
8859
9033
|
}>;
|
|
8860
|
-
|
|
9034
|
+
accountId: z.ZodString;
|
|
9035
|
+
region: z.ZodString;
|
|
9036
|
+
kmsKeyArn: z.ZodString;
|
|
9037
|
+
crossAccountRoleArn: z.ZodString;
|
|
9038
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
9039
|
+
enabled: z.ZodBoolean;
|
|
9040
|
+
type: z.ZodEnum<{
|
|
9041
|
+
aws: "aws";
|
|
9042
|
+
azure: "azure";
|
|
9043
|
+
none: "none";
|
|
9044
|
+
}>;
|
|
9045
|
+
tenantId: z.ZodString;
|
|
9046
|
+
subscriptionId: z.ZodString;
|
|
9047
|
+
keyVaultEndpoint: z.ZodString;
|
|
9048
|
+
keyName: z.ZodString;
|
|
9049
|
+
keyVersion: z.ZodString;
|
|
9050
|
+
clientId: z.ZodString;
|
|
9051
|
+
clientSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
9052
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
9053
|
+
enabled: z.ZodBoolean;
|
|
9054
|
+
type: z.ZodEnum<{
|
|
9055
|
+
aws: "aws";
|
|
9056
|
+
azure: "azure";
|
|
9057
|
+
none: "none";
|
|
9058
|
+
}>;
|
|
9059
|
+
}, z.core.$strip>]>, z.ZodNull]>>;
|
|
8861
9060
|
defaultBillingIncrementSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
8862
9061
|
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
9062
|
egressExportIntervalSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
@@ -9147,14 +9346,39 @@ export declare const PostApiV1CustomersCustomerid201Response: z.ZodObject<{
|
|
|
9147
9346
|
agentOutlookCaptureAdditionalMetaData: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
9148
9347
|
billingSystem: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
9149
9348
|
code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
9150
|
-
customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
9349
|
+
customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
|
|
9151
9350
|
enabled: z.ZodBoolean;
|
|
9152
9351
|
type: z.ZodEnum<{
|
|
9153
9352
|
aws: "aws";
|
|
9154
9353
|
azure: "azure";
|
|
9155
9354
|
none: "none";
|
|
9156
9355
|
}>;
|
|
9157
|
-
|
|
9356
|
+
accountId: z.ZodString;
|
|
9357
|
+
region: z.ZodString;
|
|
9358
|
+
kmsKeyArn: z.ZodString;
|
|
9359
|
+
crossAccountRoleArn: z.ZodString;
|
|
9360
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
9361
|
+
enabled: z.ZodBoolean;
|
|
9362
|
+
type: z.ZodEnum<{
|
|
9363
|
+
aws: "aws";
|
|
9364
|
+
azure: "azure";
|
|
9365
|
+
none: "none";
|
|
9366
|
+
}>;
|
|
9367
|
+
tenantId: z.ZodString;
|
|
9368
|
+
subscriptionId: z.ZodString;
|
|
9369
|
+
keyVaultEndpoint: z.ZodString;
|
|
9370
|
+
keyName: z.ZodString;
|
|
9371
|
+
keyVersion: z.ZodString;
|
|
9372
|
+
clientId: z.ZodString;
|
|
9373
|
+
clientSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
9374
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
9375
|
+
enabled: z.ZodBoolean;
|
|
9376
|
+
type: z.ZodEnum<{
|
|
9377
|
+
aws: "aws";
|
|
9378
|
+
azure: "azure";
|
|
9379
|
+
none: "none";
|
|
9380
|
+
}>;
|
|
9381
|
+
}, z.core.$strip>]>, z.ZodNull]>>;
|
|
9158
9382
|
defaultBillingIncrementSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
9159
9383
|
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
9384
|
egressExportIntervalSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
@@ -9463,14 +9687,39 @@ export declare const PatchApiV1CustomersCustomeridBody: z.ZodObject<{
|
|
|
9463
9687
|
agentOutlookCaptureAdditionalMetaData: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
9464
9688
|
billingSystem: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
9465
9689
|
code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
9466
|
-
customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
9690
|
+
customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
|
|
9467
9691
|
enabled: z.ZodBoolean;
|
|
9468
9692
|
type: z.ZodEnum<{
|
|
9469
9693
|
aws: "aws";
|
|
9470
9694
|
azure: "azure";
|
|
9471
9695
|
none: "none";
|
|
9472
9696
|
}>;
|
|
9473
|
-
|
|
9697
|
+
accountId: z.ZodString;
|
|
9698
|
+
region: z.ZodString;
|
|
9699
|
+
kmsKeyArn: z.ZodString;
|
|
9700
|
+
crossAccountRoleArn: z.ZodString;
|
|
9701
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
9702
|
+
enabled: z.ZodBoolean;
|
|
9703
|
+
type: z.ZodEnum<{
|
|
9704
|
+
aws: "aws";
|
|
9705
|
+
azure: "azure";
|
|
9706
|
+
none: "none";
|
|
9707
|
+
}>;
|
|
9708
|
+
tenantId: z.ZodString;
|
|
9709
|
+
subscriptionId: z.ZodString;
|
|
9710
|
+
keyVaultEndpoint: z.ZodString;
|
|
9711
|
+
keyName: z.ZodString;
|
|
9712
|
+
keyVersion: z.ZodString;
|
|
9713
|
+
clientId: z.ZodString;
|
|
9714
|
+
clientSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
9715
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
9716
|
+
enabled: z.ZodBoolean;
|
|
9717
|
+
type: z.ZodEnum<{
|
|
9718
|
+
aws: "aws";
|
|
9719
|
+
azure: "azure";
|
|
9720
|
+
none: "none";
|
|
9721
|
+
}>;
|
|
9722
|
+
}, z.core.$strip>]>, z.ZodNull]>>;
|
|
9474
9723
|
defaultBillingIncrementSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
9475
9724
|
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
9725
|
egressExportIntervalSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
@@ -9761,14 +10010,39 @@ export declare const PatchApiV1CustomersCustomerid200Response: z.ZodObject<{
|
|
|
9761
10010
|
agentOutlookCaptureAdditionalMetaData: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
9762
10011
|
billingSystem: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
9763
10012
|
code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
9764
|
-
customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
10013
|
+
customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
|
|
9765
10014
|
enabled: z.ZodBoolean;
|
|
9766
10015
|
type: z.ZodEnum<{
|
|
9767
10016
|
aws: "aws";
|
|
9768
10017
|
azure: "azure";
|
|
9769
10018
|
none: "none";
|
|
9770
10019
|
}>;
|
|
9771
|
-
|
|
10020
|
+
accountId: z.ZodString;
|
|
10021
|
+
region: z.ZodString;
|
|
10022
|
+
kmsKeyArn: z.ZodString;
|
|
10023
|
+
crossAccountRoleArn: z.ZodString;
|
|
10024
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
10025
|
+
enabled: z.ZodBoolean;
|
|
10026
|
+
type: z.ZodEnum<{
|
|
10027
|
+
aws: "aws";
|
|
10028
|
+
azure: "azure";
|
|
10029
|
+
none: "none";
|
|
10030
|
+
}>;
|
|
10031
|
+
tenantId: z.ZodString;
|
|
10032
|
+
subscriptionId: z.ZodString;
|
|
10033
|
+
keyVaultEndpoint: z.ZodString;
|
|
10034
|
+
keyName: z.ZodString;
|
|
10035
|
+
keyVersion: z.ZodString;
|
|
10036
|
+
clientId: z.ZodString;
|
|
10037
|
+
clientSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
10038
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
10039
|
+
enabled: z.ZodBoolean;
|
|
10040
|
+
type: z.ZodEnum<{
|
|
10041
|
+
aws: "aws";
|
|
10042
|
+
azure: "azure";
|
|
10043
|
+
none: "none";
|
|
10044
|
+
}>;
|
|
10045
|
+
}, z.core.$strip>]>, z.ZodNull]>>;
|
|
9772
10046
|
defaultBillingIncrementSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
9773
10047
|
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
10048
|
egressExportIntervalSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
@@ -10077,14 +10351,39 @@ export declare const DeleteApiV1CustomersCustomerid200Response: z.ZodObject<{
|
|
|
10077
10351
|
agentOutlookCaptureAdditionalMetaData: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
10078
10352
|
billingSystem: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
10079
10353
|
code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
10080
|
-
customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
10354
|
+
customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
|
|
10081
10355
|
enabled: z.ZodBoolean;
|
|
10082
10356
|
type: z.ZodEnum<{
|
|
10083
10357
|
aws: "aws";
|
|
10084
10358
|
azure: "azure";
|
|
10085
10359
|
none: "none";
|
|
10086
10360
|
}>;
|
|
10087
|
-
|
|
10361
|
+
accountId: z.ZodString;
|
|
10362
|
+
region: z.ZodString;
|
|
10363
|
+
kmsKeyArn: z.ZodString;
|
|
10364
|
+
crossAccountRoleArn: z.ZodString;
|
|
10365
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
10366
|
+
enabled: z.ZodBoolean;
|
|
10367
|
+
type: z.ZodEnum<{
|
|
10368
|
+
aws: "aws";
|
|
10369
|
+
azure: "azure";
|
|
10370
|
+
none: "none";
|
|
10371
|
+
}>;
|
|
10372
|
+
tenantId: z.ZodString;
|
|
10373
|
+
subscriptionId: z.ZodString;
|
|
10374
|
+
keyVaultEndpoint: z.ZodString;
|
|
10375
|
+
keyName: z.ZodString;
|
|
10376
|
+
keyVersion: z.ZodString;
|
|
10377
|
+
clientId: z.ZodString;
|
|
10378
|
+
clientSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
10379
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
10380
|
+
enabled: z.ZodBoolean;
|
|
10381
|
+
type: z.ZodEnum<{
|
|
10382
|
+
aws: "aws";
|
|
10383
|
+
azure: "azure";
|
|
10384
|
+
none: "none";
|
|
10385
|
+
}>;
|
|
10386
|
+
}, z.core.$strip>]>, z.ZodNull]>>;
|
|
10088
10387
|
defaultBillingIncrementSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
10089
10388
|
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
10389
|
egressExportIntervalSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
@@ -10395,14 +10694,39 @@ export declare const GetApiV1Customers200Response: z.ZodUnion<readonly [z.ZodStr
|
|
|
10395
10694
|
agentOutlookCaptureAdditionalMetaData: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
10396
10695
|
billingSystem: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
10397
10696
|
code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
10398
|
-
customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
10697
|
+
customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
|
|
10399
10698
|
enabled: z.ZodBoolean;
|
|
10400
10699
|
type: z.ZodEnum<{
|
|
10401
10700
|
aws: "aws";
|
|
10402
10701
|
azure: "azure";
|
|
10403
10702
|
none: "none";
|
|
10404
10703
|
}>;
|
|
10405
|
-
|
|
10704
|
+
accountId: z.ZodString;
|
|
10705
|
+
region: z.ZodString;
|
|
10706
|
+
kmsKeyArn: z.ZodString;
|
|
10707
|
+
crossAccountRoleArn: z.ZodString;
|
|
10708
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
10709
|
+
enabled: z.ZodBoolean;
|
|
10710
|
+
type: z.ZodEnum<{
|
|
10711
|
+
aws: "aws";
|
|
10712
|
+
azure: "azure";
|
|
10713
|
+
none: "none";
|
|
10714
|
+
}>;
|
|
10715
|
+
tenantId: z.ZodString;
|
|
10716
|
+
subscriptionId: z.ZodString;
|
|
10717
|
+
keyVaultEndpoint: z.ZodString;
|
|
10718
|
+
keyName: z.ZodString;
|
|
10719
|
+
keyVersion: z.ZodString;
|
|
10720
|
+
clientId: z.ZodString;
|
|
10721
|
+
clientSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
10722
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
10723
|
+
enabled: z.ZodBoolean;
|
|
10724
|
+
type: z.ZodEnum<{
|
|
10725
|
+
aws: "aws";
|
|
10726
|
+
azure: "azure";
|
|
10727
|
+
none: "none";
|
|
10728
|
+
}>;
|
|
10729
|
+
}, z.core.$strip>]>, z.ZodNull]>>;
|
|
10406
10730
|
defaultBillingIncrementSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
10407
10731
|
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
10732
|
egressExportIntervalSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
@@ -10642,122 +10966,11 @@ export declare const PatchApiV1CustomersCustomeridWebsitesBulk200Response: z.Zod
|
|
|
10642
10966
|
errorCode: z.ZodString;
|
|
10643
10967
|
}, z.core.$strip>>;
|
|
10644
10968
|
}, z.core.$strip>;
|
|
10645
|
-
export declare const
|
|
10646
|
-
customerId: z.ZodString;
|
|
10647
|
-
}, z.core.$strip>;
|
|
10648
|
-
export declare const GetApiV1CustomersCustomeridPrivacyDocuments200Response: z.ZodArray<z.ZodObject<{
|
|
10649
|
-
_id: z.ZodCustom<string, string>;
|
|
10650
|
-
customerId: z.ZodCustom<string, string>;
|
|
10651
|
-
language: z.ZodString;
|
|
10652
|
-
versionId: z.ZodOptional<z.ZodUnion<readonly [z.ZodCustom<string, string>, z.ZodNull]>>;
|
|
10653
|
-
status: z.ZodEnum<{
|
|
10654
|
-
DRAFT: "DRAFT";
|
|
10655
|
-
PUBLISHED: "PUBLISHED";
|
|
10656
|
-
ARCHIVED: "ARCHIVED";
|
|
10657
|
-
}>;
|
|
10658
|
-
contentHtml: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
10659
|
-
createdAt: 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>>>;
|
|
10660
|
-
createdByUserId: z.ZodCustom<string, string>;
|
|
10661
|
-
publishedAt: 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]>>;
|
|
10662
|
-
publishedBy: z.ZodOptional<z.ZodUnion<readonly [z.ZodCustom<string, string>, z.ZodNull]>>;
|
|
10663
|
-
archivedAt: 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]>>;
|
|
10664
|
-
archivedBy: z.ZodOptional<z.ZodUnion<readonly [z.ZodCustom<string, string>, z.ZodNull]>>;
|
|
10665
|
-
}, z.core.$strip>>;
|
|
10666
|
-
export declare const PostApiV1CustomersCustomeridPrivacyDocumentsParams: z.ZodObject<{
|
|
10667
|
-
customerId: z.ZodString;
|
|
10668
|
-
}, z.core.$strip>;
|
|
10669
|
-
export declare const PostApiV1CustomersCustomeridPrivacyDocumentsBody: z.ZodObject<{
|
|
10670
|
-
customerId: z.ZodCustom<string, string>;
|
|
10671
|
-
language: z.ZodString;
|
|
10672
|
-
contentHtml: z.ZodOptional<z.ZodString>;
|
|
10673
|
-
}, z.core.$strip>;
|
|
10674
|
-
export declare const GetApiV1CustomersCustomeridPrivacyDocumentsIdParams: z.ZodObject<{
|
|
10675
|
-
customerId: z.ZodString;
|
|
10676
|
-
id: z.ZodString;
|
|
10677
|
-
}, z.core.$strip>;
|
|
10678
|
-
export declare const GetApiV1CustomersCustomeridPrivacyDocumentsId200Response: z.ZodObject<{
|
|
10679
|
-
_id: z.ZodCustom<string, string>;
|
|
10680
|
-
customerId: z.ZodCustom<string, string>;
|
|
10681
|
-
language: z.ZodString;
|
|
10682
|
-
versionId: z.ZodOptional<z.ZodUnion<readonly [z.ZodCustom<string, string>, z.ZodNull]>>;
|
|
10683
|
-
status: z.ZodEnum<{
|
|
10684
|
-
DRAFT: "DRAFT";
|
|
10685
|
-
PUBLISHED: "PUBLISHED";
|
|
10686
|
-
ARCHIVED: "ARCHIVED";
|
|
10687
|
-
}>;
|
|
10688
|
-
contentHtml: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
10689
|
-
createdAt: 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>>>;
|
|
10690
|
-
createdByUserId: z.ZodCustom<string, string>;
|
|
10691
|
-
publishedAt: 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]>>;
|
|
10692
|
-
publishedBy: z.ZodOptional<z.ZodUnion<readonly [z.ZodCustom<string, string>, z.ZodNull]>>;
|
|
10693
|
-
archivedAt: 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]>>;
|
|
10694
|
-
archivedBy: z.ZodOptional<z.ZodUnion<readonly [z.ZodCustom<string, string>, z.ZodNull]>>;
|
|
10695
|
-
}, z.core.$strip>;
|
|
10696
|
-
export declare const PatchApiV1CustomersCustomeridPrivacyDocumentsIdParams: z.ZodObject<{
|
|
10969
|
+
export declare const PostApiV1CustomersCustomeridRotateEncryptionKeyParams: z.ZodObject<{
|
|
10697
10970
|
customerId: z.ZodString;
|
|
10698
|
-
id: z.ZodString;
|
|
10699
10971
|
}, z.core.$strip>;
|
|
10700
|
-
export declare const
|
|
10701
|
-
|
|
10702
|
-
status: z.ZodOptional<z.ZodEnum<{
|
|
10703
|
-
DRAFT: "DRAFT";
|
|
10704
|
-
PUBLISHED: "PUBLISHED";
|
|
10705
|
-
ARCHIVED: "ARCHIVED";
|
|
10706
|
-
}>>;
|
|
10707
|
-
}, z.core.$strip>;
|
|
10708
|
-
export declare const PatchApiV1CustomersCustomeridPrivacyDocumentsId200Response: z.ZodObject<{
|
|
10709
|
-
_id: z.ZodCustom<string, string>;
|
|
10710
|
-
customerId: z.ZodCustom<string, string>;
|
|
10711
|
-
language: z.ZodString;
|
|
10712
|
-
versionId: z.ZodOptional<z.ZodUnion<readonly [z.ZodCustom<string, string>, z.ZodNull]>>;
|
|
10713
|
-
status: z.ZodEnum<{
|
|
10714
|
-
DRAFT: "DRAFT";
|
|
10715
|
-
PUBLISHED: "PUBLISHED";
|
|
10716
|
-
ARCHIVED: "ARCHIVED";
|
|
10717
|
-
}>;
|
|
10718
|
-
contentHtml: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
10719
|
-
createdAt: 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>>>;
|
|
10720
|
-
createdByUserId: z.ZodCustom<string, string>;
|
|
10721
|
-
publishedAt: 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]>>;
|
|
10722
|
-
publishedBy: z.ZodOptional<z.ZodUnion<readonly [z.ZodCustom<string, string>, z.ZodNull]>>;
|
|
10723
|
-
archivedAt: 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]>>;
|
|
10724
|
-
archivedBy: z.ZodOptional<z.ZodUnion<readonly [z.ZodCustom<string, string>, z.ZodNull]>>;
|
|
10725
|
-
}, z.core.$strip>;
|
|
10726
|
-
export declare const GetApiV1CustomersCustomeridPrivacyDocumentsPublishedParams: z.ZodObject<{
|
|
10727
|
-
customerId: z.ZodString;
|
|
10728
|
-
}, z.core.$strip>;
|
|
10729
|
-
export declare const GetApiV1CustomersCustomeridPrivacyDocumentsPublishedQuery: z.ZodObject<{
|
|
10730
|
-
language: z.ZodString;
|
|
10731
|
-
}, z.core.$strip>;
|
|
10732
|
-
export declare const GetApiV1CustomersCustomeridPrivacyDocumentsPublished200Response: z.ZodObject<{
|
|
10733
|
-
_id: z.ZodCustom<string, string>;
|
|
10734
|
-
customerId: z.ZodCustom<string, string>;
|
|
10735
|
-
language: z.ZodString;
|
|
10736
|
-
versionId: z.ZodOptional<z.ZodUnion<readonly [z.ZodCustom<string, string>, z.ZodNull]>>;
|
|
10737
|
-
status: z.ZodEnum<{
|
|
10738
|
-
DRAFT: "DRAFT";
|
|
10739
|
-
PUBLISHED: "PUBLISHED";
|
|
10740
|
-
ARCHIVED: "ARCHIVED";
|
|
10741
|
-
}>;
|
|
10742
|
-
contentHtml: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
10743
|
-
createdAt: 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>>>;
|
|
10744
|
-
createdByUserId: z.ZodCustom<string, string>;
|
|
10745
|
-
publishedAt: 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]>>;
|
|
10746
|
-
publishedBy: z.ZodOptional<z.ZodUnion<readonly [z.ZodCustom<string, string>, z.ZodNull]>>;
|
|
10747
|
-
archivedAt: 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]>>;
|
|
10748
|
-
archivedBy: z.ZodOptional<z.ZodUnion<readonly [z.ZodCustom<string, string>, z.ZodNull]>>;
|
|
10749
|
-
}, z.core.$strip>;
|
|
10750
|
-
export declare const GetApiV1OnboardingCustomeridLogoParams: z.ZodObject<{
|
|
10751
|
-
customerId: z.ZodString;
|
|
10752
|
-
}, z.core.$strip>;
|
|
10753
|
-
export declare const GetApiV1OnboardingCustomeridLogo200Response: z.ZodObject<{
|
|
10754
|
-
expiresIn: z.ZodOptional<z.ZodNumber>;
|
|
10755
|
-
url: z.ZodOptional<z.ZodString>;
|
|
10756
|
-
}, z.core.$strip>;
|
|
10757
|
-
export declare const PatchApiV1OnboardingCustomeridLogoParams: z.ZodObject<{
|
|
10758
|
-
customerId: z.ZodString;
|
|
10759
|
-
}, z.core.$strip>;
|
|
10760
|
-
export declare const PatchApiV1OnboardingCustomeridLogo200Response: z.ZodObject<{
|
|
10972
|
+
export declare const PostApiV1CustomersCustomeridRotateEncryptionKeyBody: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
10973
|
+
export declare const PostApiV1CustomersCustomeridRotateEncryptionKey200Response: z.ZodObject<{
|
|
10761
10974
|
agentAccessibilityCheckDurationInMinutes: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
10762
10975
|
agentEntryMinimumDuration: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
10763
10976
|
agentExcludedWebsiteEntries: z.ZodArray<z.ZodObject<{
|
|
@@ -10863,14 +11076,39 @@ export declare const PatchApiV1OnboardingCustomeridLogo200Response: z.ZodObject<
|
|
|
10863
11076
|
agentOutlookCaptureAdditionalMetaData: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
10864
11077
|
billingSystem: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
10865
11078
|
code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
10866
|
-
customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
11079
|
+
customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
|
|
10867
11080
|
enabled: z.ZodBoolean;
|
|
10868
11081
|
type: z.ZodEnum<{
|
|
10869
11082
|
aws: "aws";
|
|
10870
11083
|
azure: "azure";
|
|
10871
11084
|
none: "none";
|
|
10872
11085
|
}>;
|
|
10873
|
-
|
|
11086
|
+
accountId: z.ZodString;
|
|
11087
|
+
region: z.ZodString;
|
|
11088
|
+
kmsKeyArn: z.ZodString;
|
|
11089
|
+
crossAccountRoleArn: z.ZodString;
|
|
11090
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
11091
|
+
enabled: z.ZodBoolean;
|
|
11092
|
+
type: z.ZodEnum<{
|
|
11093
|
+
aws: "aws";
|
|
11094
|
+
azure: "azure";
|
|
11095
|
+
none: "none";
|
|
11096
|
+
}>;
|
|
11097
|
+
tenantId: z.ZodString;
|
|
11098
|
+
subscriptionId: z.ZodString;
|
|
11099
|
+
keyVaultEndpoint: z.ZodString;
|
|
11100
|
+
keyName: z.ZodString;
|
|
11101
|
+
keyVersion: z.ZodString;
|
|
11102
|
+
clientId: z.ZodString;
|
|
11103
|
+
clientSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11104
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
11105
|
+
enabled: z.ZodBoolean;
|
|
11106
|
+
type: z.ZodEnum<{
|
|
11107
|
+
aws: "aws";
|
|
11108
|
+
azure: "azure";
|
|
11109
|
+
none: "none";
|
|
11110
|
+
}>;
|
|
11111
|
+
}, z.core.$strip>]>, z.ZodNull]>>;
|
|
10874
11112
|
defaultBillingIncrementSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
10875
11113
|
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
11114
|
egressExportIntervalSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
@@ -11070,109 +11308,562 @@ export declare const PatchApiV1OnboardingCustomeridLogo200Response: z.ZodObject<
|
|
|
11070
11308
|
highLeverageRatio: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
11071
11309
|
}, z.core.$strip>, z.ZodNull]>>;
|
|
11072
11310
|
}, z.core.$strip>;
|
|
11073
|
-
export declare const
|
|
11074
|
-
customerId: z.
|
|
11311
|
+
export declare const GetApiV1CustomersCustomeridPrivacyDocumentsParams: z.ZodObject<{
|
|
11312
|
+
customerId: z.ZodString;
|
|
11075
11313
|
}, z.core.$strip>;
|
|
11076
|
-
export declare const
|
|
11314
|
+
export declare const GetApiV1CustomersCustomeridPrivacyDocuments200Response: z.ZodArray<z.ZodObject<{
|
|
11315
|
+
_id: z.ZodCustom<string, string>;
|
|
11077
11316
|
customerId: z.ZodCustom<string, string>;
|
|
11317
|
+
language: z.ZodString;
|
|
11318
|
+
versionId: z.ZodOptional<z.ZodUnion<readonly [z.ZodCustom<string, string>, z.ZodNull]>>;
|
|
11319
|
+
status: z.ZodEnum<{
|
|
11320
|
+
DRAFT: "DRAFT";
|
|
11321
|
+
PUBLISHED: "PUBLISHED";
|
|
11322
|
+
ARCHIVED: "ARCHIVED";
|
|
11323
|
+
}>;
|
|
11324
|
+
contentHtml: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11325
|
+
createdAt: 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>>>;
|
|
11326
|
+
createdByUserId: z.ZodCustom<string, string>;
|
|
11327
|
+
publishedAt: 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]>>;
|
|
11328
|
+
publishedBy: z.ZodOptional<z.ZodUnion<readonly [z.ZodCustom<string, string>, z.ZodNull]>>;
|
|
11329
|
+
archivedAt: 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]>>;
|
|
11330
|
+
archivedBy: z.ZodOptional<z.ZodUnion<readonly [z.ZodCustom<string, string>, z.ZodNull]>>;
|
|
11331
|
+
}, z.core.$strip>>;
|
|
11332
|
+
export declare const PostApiV1CustomersCustomeridPrivacyDocumentsParams: z.ZodObject<{
|
|
11333
|
+
customerId: z.ZodString;
|
|
11078
11334
|
}, z.core.$strip>;
|
|
11079
|
-
export declare const
|
|
11080
|
-
insights: z.ZodUnion<readonly [z.ZodObject<{
|
|
11081
|
-
org: z.ZodUnion<readonly [z.ZodObject<{
|
|
11082
|
-
timeVelocity: z.ZodUnion<readonly [z.ZodObject<{
|
|
11083
|
-
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]>>;
|
|
11084
|
-
}, z.core.$strip>, z.ZodNull]>;
|
|
11085
|
-
}, z.core.$strip>, z.ZodNull]>;
|
|
11086
|
-
}, z.core.$strip>, z.ZodNull]>;
|
|
11087
|
-
rankOrder: z.ZodOptional<z.ZodUnion<readonly [z.ZodArray<z.ZodString>, z.ZodNull]>>;
|
|
11088
|
-
highLeverageRanks: z.ZodOptional<z.ZodUnion<readonly [z.ZodArray<z.ZodString>, z.ZodNull]>>;
|
|
11089
|
-
highLeverageRatio: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
11090
|
-
}, z.core.$strip>;
|
|
11091
|
-
export declare const PatchApiV1CustomersCustomeridSignal200Response: z.ZodObject<{
|
|
11092
|
-
insights: z.ZodUnion<readonly [z.ZodObject<{
|
|
11093
|
-
org: z.ZodUnion<readonly [z.ZodObject<{
|
|
11094
|
-
timeVelocity: z.ZodUnion<readonly [z.ZodObject<{
|
|
11095
|
-
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]>>;
|
|
11096
|
-
}, z.core.$strip>, z.ZodNull]>;
|
|
11097
|
-
}, z.core.$strip>, z.ZodNull]>;
|
|
11098
|
-
}, z.core.$strip>, z.ZodNull]>;
|
|
11099
|
-
rankOrder: z.ZodOptional<z.ZodUnion<readonly [z.ZodArray<z.ZodString>, z.ZodNull]>>;
|
|
11100
|
-
highLeverageRanks: z.ZodOptional<z.ZodUnion<readonly [z.ZodArray<z.ZodString>, z.ZodNull]>>;
|
|
11101
|
-
highLeverageRatio: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
11102
|
-
}, z.core.$strip>;
|
|
11103
|
-
export declare const GetApiV1CustomersCustomeridSignalInsightsParams: z.ZodObject<{
|
|
11335
|
+
export declare const PostApiV1CustomersCustomeridPrivacyDocumentsBody: z.ZodObject<{
|
|
11104
11336
|
customerId: z.ZodCustom<string, string>;
|
|
11337
|
+
language: z.ZodString;
|
|
11338
|
+
contentHtml: z.ZodOptional<z.ZodString>;
|
|
11105
11339
|
}, z.core.$strip>;
|
|
11106
|
-
export declare const
|
|
11107
|
-
customerId: z.
|
|
11340
|
+
export declare const GetApiV1CustomersCustomeridPrivacyDocumentsIdParams: z.ZodObject<{
|
|
11341
|
+
customerId: z.ZodString;
|
|
11342
|
+
id: z.ZodString;
|
|
11108
11343
|
}, z.core.$strip>;
|
|
11109
|
-
export declare const
|
|
11110
|
-
|
|
11111
|
-
|
|
11112
|
-
|
|
11113
|
-
|
|
11114
|
-
|
|
11344
|
+
export declare const GetApiV1CustomersCustomeridPrivacyDocumentsId200Response: z.ZodObject<{
|
|
11345
|
+
_id: z.ZodCustom<string, string>;
|
|
11346
|
+
customerId: z.ZodCustom<string, string>;
|
|
11347
|
+
language: z.ZodString;
|
|
11348
|
+
versionId: z.ZodOptional<z.ZodUnion<readonly [z.ZodCustom<string, string>, z.ZodNull]>>;
|
|
11349
|
+
status: z.ZodEnum<{
|
|
11350
|
+
DRAFT: "DRAFT";
|
|
11351
|
+
PUBLISHED: "PUBLISHED";
|
|
11352
|
+
ARCHIVED: "ARCHIVED";
|
|
11353
|
+
}>;
|
|
11354
|
+
contentHtml: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11355
|
+
createdAt: 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>>>;
|
|
11356
|
+
createdByUserId: z.ZodCustom<string, string>;
|
|
11357
|
+
publishedAt: 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]>>;
|
|
11358
|
+
publishedBy: z.ZodOptional<z.ZodUnion<readonly [z.ZodCustom<string, string>, z.ZodNull]>>;
|
|
11359
|
+
archivedAt: 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]>>;
|
|
11360
|
+
archivedBy: z.ZodOptional<z.ZodUnion<readonly [z.ZodCustom<string, string>, z.ZodNull]>>;
|
|
11115
11361
|
}, z.core.$strip>;
|
|
11116
|
-
export declare const
|
|
11117
|
-
|
|
11118
|
-
|
|
11119
|
-
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]>>;
|
|
11120
|
-
}, z.core.$strip>, z.ZodNull]>;
|
|
11121
|
-
}, z.core.$strip>, z.ZodNull]>;
|
|
11362
|
+
export declare const PatchApiV1CustomersCustomeridPrivacyDocumentsIdParams: z.ZodObject<{
|
|
11363
|
+
customerId: z.ZodString;
|
|
11364
|
+
id: z.ZodString;
|
|
11122
11365
|
}, z.core.$strip>;
|
|
11123
|
-
export declare const
|
|
11124
|
-
|
|
11366
|
+
export declare const PatchApiV1CustomersCustomeridPrivacyDocumentsIdBody: z.ZodObject<{
|
|
11367
|
+
contentHtml: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11368
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
11369
|
+
DRAFT: "DRAFT";
|
|
11370
|
+
PUBLISHED: "PUBLISHED";
|
|
11371
|
+
ARCHIVED: "ARCHIVED";
|
|
11372
|
+
}>>;
|
|
11125
11373
|
}, z.core.$strip>;
|
|
11126
|
-
export declare const
|
|
11374
|
+
export declare const PatchApiV1CustomersCustomeridPrivacyDocumentsId200Response: z.ZodObject<{
|
|
11375
|
+
_id: z.ZodCustom<string, string>;
|
|
11127
11376
|
customerId: z.ZodCustom<string, string>;
|
|
11377
|
+
language: z.ZodString;
|
|
11378
|
+
versionId: z.ZodOptional<z.ZodUnion<readonly [z.ZodCustom<string, string>, z.ZodNull]>>;
|
|
11379
|
+
status: z.ZodEnum<{
|
|
11380
|
+
DRAFT: "DRAFT";
|
|
11381
|
+
PUBLISHED: "PUBLISHED";
|
|
11382
|
+
ARCHIVED: "ARCHIVED";
|
|
11383
|
+
}>;
|
|
11384
|
+
contentHtml: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11385
|
+
createdAt: 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>>>;
|
|
11386
|
+
createdByUserId: z.ZodCustom<string, string>;
|
|
11387
|
+
publishedAt: 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]>>;
|
|
11388
|
+
publishedBy: z.ZodOptional<z.ZodUnion<readonly [z.ZodCustom<string, string>, z.ZodNull]>>;
|
|
11389
|
+
archivedAt: 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]>>;
|
|
11390
|
+
archivedBy: z.ZodOptional<z.ZodUnion<readonly [z.ZodCustom<string, string>, z.ZodNull]>>;
|
|
11128
11391
|
}, z.core.$strip>;
|
|
11129
|
-
export declare const
|
|
11130
|
-
|
|
11131
|
-
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]>>;
|
|
11132
|
-
}, z.core.$strip>, z.ZodNull]>;
|
|
11392
|
+
export declare const GetApiV1CustomersCustomeridPrivacyDocumentsPublishedParams: z.ZodObject<{
|
|
11393
|
+
customerId: z.ZodString;
|
|
11133
11394
|
}, z.core.$strip>;
|
|
11134
|
-
export declare const
|
|
11135
|
-
|
|
11136
|
-
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]>>;
|
|
11137
|
-
}, z.core.$strip>, z.ZodNull]>;
|
|
11395
|
+
export declare const GetApiV1CustomersCustomeridPrivacyDocumentsPublishedQuery: z.ZodObject<{
|
|
11396
|
+
language: z.ZodString;
|
|
11138
11397
|
}, z.core.$strip>;
|
|
11139
|
-
export declare const
|
|
11398
|
+
export declare const GetApiV1CustomersCustomeridPrivacyDocumentsPublished200Response: z.ZodObject<{
|
|
11399
|
+
_id: z.ZodCustom<string, string>;
|
|
11140
11400
|
customerId: z.ZodCustom<string, string>;
|
|
11401
|
+
language: z.ZodString;
|
|
11402
|
+
versionId: z.ZodOptional<z.ZodUnion<readonly [z.ZodCustom<string, string>, z.ZodNull]>>;
|
|
11403
|
+
status: z.ZodEnum<{
|
|
11404
|
+
DRAFT: "DRAFT";
|
|
11405
|
+
PUBLISHED: "PUBLISHED";
|
|
11406
|
+
ARCHIVED: "ARCHIVED";
|
|
11407
|
+
}>;
|
|
11408
|
+
contentHtml: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11409
|
+
createdAt: 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>>>;
|
|
11410
|
+
createdByUserId: z.ZodCustom<string, string>;
|
|
11411
|
+
publishedAt: 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]>>;
|
|
11412
|
+
publishedBy: z.ZodOptional<z.ZodUnion<readonly [z.ZodCustom<string, string>, z.ZodNull]>>;
|
|
11413
|
+
archivedAt: 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]>>;
|
|
11414
|
+
archivedBy: z.ZodOptional<z.ZodUnion<readonly [z.ZodCustom<string, string>, z.ZodNull]>>;
|
|
11141
11415
|
}, z.core.$strip>;
|
|
11142
|
-
export declare const
|
|
11143
|
-
customerId: z.
|
|
11416
|
+
export declare const GetApiV1OnboardingCustomeridLogoParams: z.ZodObject<{
|
|
11417
|
+
customerId: z.ZodString;
|
|
11144
11418
|
}, z.core.$strip>;
|
|
11145
|
-
export declare const
|
|
11146
|
-
|
|
11419
|
+
export declare const GetApiV1OnboardingCustomeridLogo200Response: z.ZodObject<{
|
|
11420
|
+
expiresIn: z.ZodOptional<z.ZodNumber>;
|
|
11421
|
+
url: z.ZodOptional<z.ZodString>;
|
|
11147
11422
|
}, z.core.$strip>;
|
|
11148
|
-
export declare const
|
|
11149
|
-
|
|
11423
|
+
export declare const PatchApiV1OnboardingCustomeridLogoParams: z.ZodObject<{
|
|
11424
|
+
customerId: z.ZodString;
|
|
11150
11425
|
}, z.core.$strip>;
|
|
11151
|
-
export declare const
|
|
11152
|
-
readonly
|
|
11153
|
-
|
|
11154
|
-
|
|
11155
|
-
|
|
11156
|
-
|
|
11157
|
-
|
|
11158
|
-
|
|
11159
|
-
|
|
11160
|
-
|
|
11161
|
-
|
|
11162
|
-
|
|
11163
|
-
|
|
11164
|
-
|
|
11165
|
-
|
|
11166
|
-
|
|
11167
|
-
|
|
11168
|
-
|
|
11169
|
-
|
|
11170
|
-
|
|
11171
|
-
|
|
11172
|
-
|
|
11173
|
-
|
|
11174
|
-
|
|
11175
|
-
|
|
11426
|
+
export declare const PatchApiV1OnboardingCustomeridLogo200Response: z.ZodObject<{
|
|
11427
|
+
agentAccessibilityCheckDurationInMinutes: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
11428
|
+
agentEntryMinimumDuration: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
11429
|
+
agentExcludedWebsiteEntries: z.ZodArray<z.ZodObject<{
|
|
11430
|
+
applicationName: z.ZodString;
|
|
11431
|
+
displayName: z.ZodString;
|
|
11432
|
+
metadataSignatures: z.ZodOptional<z.ZodUnion<readonly [z.ZodArray<z.ZodObject<{
|
|
11433
|
+
accessibilitySignature: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11434
|
+
metadataField: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11435
|
+
newActivity: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
11436
|
+
}, z.core.$strip>>, z.ZodNull]>>;
|
|
11437
|
+
ignoreTitles: z.ZodOptional<z.ZodUnion<readonly [z.ZodArray<z.ZodString>, z.ZodNull]>>;
|
|
11438
|
+
suggestedTaxonomy: z.ZodUnion<readonly [z.ZodObject<{
|
|
11439
|
+
domain: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11440
|
+
source: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11441
|
+
category: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11442
|
+
technology: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11443
|
+
mechanism: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11444
|
+
}, z.core.$strip>, z.ZodNull]>;
|
|
11445
|
+
titleBarTemplate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11446
|
+
descriptionTemplate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11447
|
+
group: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11448
|
+
imageCapture: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
11449
|
+
}, z.core.$strip>>;
|
|
11450
|
+
agentIdleTime: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
11451
|
+
agentLaunchDarklyPollingIntervalDuration: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
11452
|
+
agentLoggingEndpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11453
|
+
agentLoggingSecureEndpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11454
|
+
agentLoggingToken: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11455
|
+
agentMacApplicationEntries: z.ZodArray<z.ZodObject<{
|
|
11456
|
+
process: z.ZodString;
|
|
11457
|
+
windowTitle: z.ZodString;
|
|
11458
|
+
titleBarPollingIntervalSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
11459
|
+
accessibilitySignatureMetadataEntries: z.ZodOptional<z.ZodUnion<readonly [z.ZodArray<z.ZodObject<{
|
|
11460
|
+
accessibilitySignature: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11461
|
+
metadataField: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11462
|
+
newActivity: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
11463
|
+
}, z.core.$strip>>, z.ZodNull]>>;
|
|
11464
|
+
ignoreTitles: z.ZodOptional<z.ZodUnion<readonly [z.ZodArray<z.ZodString>, z.ZodNull]>>;
|
|
11465
|
+
suggestedTaxonomy: z.ZodUnion<readonly [z.ZodObject<{
|
|
11466
|
+
domain: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11467
|
+
source: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11468
|
+
category: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11469
|
+
technology: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11470
|
+
mechanism: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11471
|
+
}, z.core.$strip>, z.ZodNull]>;
|
|
11472
|
+
titleBarTemplate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11473
|
+
descriptionTemplate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11474
|
+
imageCapture: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
11475
|
+
}, z.core.$strip>>;
|
|
11476
|
+
agentMetricsEndpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11477
|
+
agentNonActivityServiceThresholdInSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
11478
|
+
agentSqlDbFlushTime: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
11479
|
+
agentTracingEndpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11480
|
+
agentWebsiteEntries: z.ZodArray<z.ZodObject<{
|
|
11481
|
+
applicationName: z.ZodString;
|
|
11482
|
+
displayName: z.ZodString;
|
|
11483
|
+
metadataSignatures: z.ZodOptional<z.ZodUnion<readonly [z.ZodArray<z.ZodObject<{
|
|
11484
|
+
accessibilitySignature: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11485
|
+
metadataField: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11486
|
+
newActivity: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
11487
|
+
}, z.core.$strip>>, z.ZodNull]>>;
|
|
11488
|
+
ignoreTitles: z.ZodOptional<z.ZodUnion<readonly [z.ZodArray<z.ZodString>, z.ZodNull]>>;
|
|
11489
|
+
suggestedTaxonomy: z.ZodUnion<readonly [z.ZodObject<{
|
|
11490
|
+
domain: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11491
|
+
source: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11492
|
+
category: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11493
|
+
technology: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11494
|
+
mechanism: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11495
|
+
}, z.core.$strip>, z.ZodNull]>;
|
|
11496
|
+
titleBarTemplate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11497
|
+
descriptionTemplate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11498
|
+
group: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11499
|
+
imageCapture: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
11500
|
+
}, z.core.$strip>>;
|
|
11501
|
+
agentWindowsApplicationEntries: z.ZodArray<z.ZodObject<{
|
|
11502
|
+
process: z.ZodString;
|
|
11503
|
+
windowTitle: z.ZodString;
|
|
11504
|
+
titleBarPollingIntervalSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
11505
|
+
accessibilitySignatureMetadataEntries: z.ZodOptional<z.ZodUnion<readonly [z.ZodArray<z.ZodObject<{
|
|
11506
|
+
accessibilitySignature: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11507
|
+
metadataField: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11508
|
+
newActivity: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
11509
|
+
}, z.core.$strip>>, z.ZodNull]>>;
|
|
11510
|
+
ignoreTitles: z.ZodOptional<z.ZodUnion<readonly [z.ZodArray<z.ZodString>, z.ZodNull]>>;
|
|
11511
|
+
suggestedTaxonomy: z.ZodUnion<readonly [z.ZodObject<{
|
|
11512
|
+
domain: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11513
|
+
source: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11514
|
+
category: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11515
|
+
technology: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11516
|
+
mechanism: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11517
|
+
}, z.core.$strip>, z.ZodNull]>;
|
|
11518
|
+
titleBarTemplate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11519
|
+
descriptionTemplate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11520
|
+
imageCapture: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
11521
|
+
}, z.core.$strip>>;
|
|
11522
|
+
agentMinimumWindowsClientVersionSupported: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11523
|
+
agentMinimumWindowsClientVersionSupportedMessage: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11524
|
+
agentMinimumMacClientVersionSupported: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11525
|
+
agentMinimumMacClientVersionSupportedMessage: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11526
|
+
agentDelayAfterOutlookStartSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
11527
|
+
agentOutlookDelayAfterLaurelStartSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
11528
|
+
agentOutlookCaptureBody: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
11529
|
+
agentOutlookCaptureAdditionalMetaData: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
11530
|
+
billingSystem: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11531
|
+
code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11532
|
+
customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
|
|
11533
|
+
enabled: z.ZodBoolean;
|
|
11534
|
+
type: z.ZodEnum<{
|
|
11535
|
+
aws: "aws";
|
|
11536
|
+
azure: "azure";
|
|
11537
|
+
none: "none";
|
|
11538
|
+
}>;
|
|
11539
|
+
accountId: z.ZodString;
|
|
11540
|
+
region: z.ZodString;
|
|
11541
|
+
kmsKeyArn: z.ZodString;
|
|
11542
|
+
crossAccountRoleArn: z.ZodString;
|
|
11543
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
11544
|
+
enabled: z.ZodBoolean;
|
|
11545
|
+
type: z.ZodEnum<{
|
|
11546
|
+
aws: "aws";
|
|
11547
|
+
azure: "azure";
|
|
11548
|
+
none: "none";
|
|
11549
|
+
}>;
|
|
11550
|
+
tenantId: z.ZodString;
|
|
11551
|
+
subscriptionId: z.ZodString;
|
|
11552
|
+
keyVaultEndpoint: z.ZodString;
|
|
11553
|
+
keyName: z.ZodString;
|
|
11554
|
+
keyVersion: z.ZodString;
|
|
11555
|
+
clientId: z.ZodString;
|
|
11556
|
+
clientSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11557
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
11558
|
+
enabled: z.ZodBoolean;
|
|
11559
|
+
type: z.ZodEnum<{
|
|
11560
|
+
aws: "aws";
|
|
11561
|
+
azure: "azure";
|
|
11562
|
+
none: "none";
|
|
11563
|
+
}>;
|
|
11564
|
+
}, z.core.$strip>]>, z.ZodNull]>>;
|
|
11565
|
+
defaultBillingIncrementSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
11566
|
+
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]>>;
|
|
11567
|
+
egressExportIntervalSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
11568
|
+
egressFFFields: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11569
|
+
egressFFHeaders: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11570
|
+
enabledWebappTimekeepingFeatures: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
11571
|
+
phaseCodes: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
11572
|
+
taskCodes: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
11573
|
+
actionCodes: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
11574
|
+
activityCodes: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
11575
|
+
requiredCodeTypes: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
11576
|
+
}, z.core.$strip>, z.ZodNull]>>;
|
|
11577
|
+
dataRetention: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
11578
|
+
enabled: z.ZodBoolean;
|
|
11579
|
+
retentionPeriodInDays: z.ZodNumber;
|
|
11580
|
+
retentionTier: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
11581
|
+
standard: "standard";
|
|
11582
|
+
enhanced: "enhanced";
|
|
11583
|
+
}>, z.ZodNull]>>;
|
|
11584
|
+
}, z.core.$strip>, z.ZodNull]>>;
|
|
11585
|
+
privacy: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
11586
|
+
allowUsersToOverride: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
11587
|
+
capturePrivateEmails: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
11588
|
+
capturePrivateMeetings: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
11589
|
+
}, z.core.$strip>, z.ZodNull]>>;
|
|
11590
|
+
enabledWebappAdministrativeFeatures: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
11591
|
+
biDirectionalSync: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
11592
|
+
delegateAccess: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
11593
|
+
}, z.core.$strip>, z.ZodNull]>>;
|
|
11594
|
+
webexTracking: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
11595
|
+
orgId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11596
|
+
clientId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11597
|
+
clientSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11598
|
+
serviceAppId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11599
|
+
variant: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
11600
|
+
Webex: "Webex";
|
|
11601
|
+
WebexGov: "WebexGov";
|
|
11602
|
+
WebexDev: "WebexDev";
|
|
11603
|
+
}>, z.ZodNull]>>;
|
|
11604
|
+
refreshToken: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11605
|
+
cdrEnabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
11606
|
+
meetingsEnabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
11607
|
+
}, z.core.$strip>, z.ZodNull]>>;
|
|
11608
|
+
webexContacts: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
11609
|
+
orgId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11610
|
+
clientId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11611
|
+
clientSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11612
|
+
serviceAppId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11613
|
+
variant: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
11614
|
+
Webex: "Webex";
|
|
11615
|
+
WebexGov: "WebexGov";
|
|
11616
|
+
WebexDev: "WebexDev";
|
|
11617
|
+
}>, z.ZodNull]>>;
|
|
11618
|
+
refreshToken: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11619
|
+
contactsEnabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
11620
|
+
peopleEnabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
11621
|
+
}, z.core.$strip>, z.ZodNull]>>;
|
|
11622
|
+
ringCentralTracking: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
11623
|
+
phonesEnabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
11624
|
+
meetingsEnabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
11625
|
+
clientId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11626
|
+
clientSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11627
|
+
serverUrl: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11628
|
+
jwtToken: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11629
|
+
}, z.core.$strip>, z.ZodNull]>>;
|
|
11630
|
+
enablePostReleaseEditing: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
11631
|
+
narrativeGuidelinesMode: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
11632
|
+
customer_only: "customer_only";
|
|
11633
|
+
inferred_only: "inferred_only";
|
|
11634
|
+
customer_then_inferred: "customer_then_inferred";
|
|
11635
|
+
disabled: "disabled";
|
|
11636
|
+
}>, z.ZodNull]>>;
|
|
11637
|
+
summaryCharacterLimitCount: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
11638
|
+
enableLaurelConnect: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
11639
|
+
enableTracking: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
11640
|
+
enableTrackingMicrosoftTeams: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
11641
|
+
enableTrackingGoogle: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
11642
|
+
enableTrackingZoom: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
11643
|
+
enableCloudAssistantCdr: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
11644
|
+
feedbackUrl: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11645
|
+
fiscalYearStartDate: 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]>>;
|
|
11646
|
+
fiscalQ2StartDate: 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]>>;
|
|
11647
|
+
fiscalQ3StartDate: 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]>>;
|
|
11648
|
+
fiscalQ4StartDate: 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]>>;
|
|
11649
|
+
i18Language: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11650
|
+
launchDarklyCustomerKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11651
|
+
launchDarklyEnvironmentKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11652
|
+
launchDarklyRelay: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11653
|
+
laurelConnectType: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
11654
|
+
ADERANT: "ADERANT";
|
|
11655
|
+
CSV: "CSV";
|
|
11656
|
+
}>, z.ZodNull]>>;
|
|
11657
|
+
laurelConnectCsvBucketArn: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11658
|
+
laurelConnectSnsSubscriptionArn: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11659
|
+
logLevel: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
11660
|
+
DEBUG: "DEBUG";
|
|
11661
|
+
INFO: "INFO";
|
|
11662
|
+
ERROR: "ERROR";
|
|
11663
|
+
WARN: "WARN";
|
|
11664
|
+
}>, z.ZodNull]>>;
|
|
11665
|
+
name: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11666
|
+
salesforceId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11667
|
+
supportUrl: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11668
|
+
laurelUrl: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11669
|
+
timeServiceUrl: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11670
|
+
trackingMicrosoftGraphApiAppId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11671
|
+
trackingMicrosoftGraphApiTenantId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11672
|
+
trackingMicrosoftTeamsGraphApiSecretId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11673
|
+
trackingMicrosoftTeamsGraphApiSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11674
|
+
trackingMicrosoftTeamsGraphApiSecretExpiration: 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]>>;
|
|
11675
|
+
trackingMicrosoftTeamsGraphApiSubscriptionSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11676
|
+
trackingGoogleProjectId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11677
|
+
trackingGoogleServiceAccountEmail: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11678
|
+
trackingGoogleServiceAccountPrivateKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11679
|
+
trackingZoomApiAccountId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11680
|
+
trackingZoomApiAppSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11681
|
+
intappTermsApiKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11682
|
+
intappTermsApiSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11683
|
+
intappTermsRestrictedWordEnforcementLevel: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
11684
|
+
block: "block";
|
|
11685
|
+
acknowledge: "acknowledge";
|
|
11686
|
+
warn: "warn";
|
|
11687
|
+
off: "off";
|
|
11688
|
+
}>, z.ZodNull]>>;
|
|
11689
|
+
trackingZoomApiClientId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11690
|
+
trackingZoomApiEventSecretToken: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11691
|
+
trackingZoomApiVariant: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
11692
|
+
Zoom: "Zoom";
|
|
11693
|
+
ZoomGov: "ZoomGov";
|
|
11694
|
+
}>, z.ZodNull]>>;
|
|
11695
|
+
enableOutlookFolderSearch: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
11696
|
+
outlookServerType: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
11697
|
+
O365: "O365";
|
|
11698
|
+
OnPremise: "OnPremise";
|
|
11699
|
+
}>, z.ZodNull]>>;
|
|
11700
|
+
outlookServerUrl: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11701
|
+
outlookFolderSearchAdminUsername: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11702
|
+
outlookFolderSearchAdminPassword: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11703
|
+
outlookFolderSearchAdminDomain: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11704
|
+
outlookFolderSearchAzureAppSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11705
|
+
outlookFolderSearchAzureAppSecretExpiration: 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]>>;
|
|
11706
|
+
outlookFolderSearchAzureAppClientId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11707
|
+
outlookFolderSearchAzureTenantId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11708
|
+
microsoftApiType: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
11709
|
+
Ews: "Ews";
|
|
11710
|
+
Graph: "Graph";
|
|
11711
|
+
}>, z.ZodNull]>>;
|
|
11712
|
+
laurelConnectSftpUserRoleName: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11713
|
+
laurelConnectSftpUserSshPrivateKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11714
|
+
webappDisplayClientCallSignForInitiatives: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
11715
|
+
version: 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>>>;
|
|
11716
|
+
versionUserId: z.ZodOptional<z.ZodUnion<readonly [z.ZodCustom<string, string>, z.ZodNull]>>;
|
|
11717
|
+
defaultDateTimeLocale: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11718
|
+
switchInitiativeDisplayLabel: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
11719
|
+
delegateMapping: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
11720
|
+
enabled: z.ZodBoolean;
|
|
11721
|
+
}, z.core.$strip>, z.ZodNull]>>;
|
|
11722
|
+
timesheetInitiativeCategorizationScoreThreshold: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
11723
|
+
userInitiativesEnabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
11724
|
+
allowUserVersionOverride: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
11725
|
+
autoAddUsers: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
11726
|
+
disableMobileApp: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
11727
|
+
onboardingResource: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
11728
|
+
welcomeVideo: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
11729
|
+
muxAssetId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11730
|
+
muxPlaybackId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11731
|
+
uploadedBy: z.ZodOptional<z.ZodUnion<readonly [z.ZodCustom<string, string>, z.ZodNull]>>;
|
|
11732
|
+
uploadId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11733
|
+
uploadedAt: 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]>>;
|
|
11734
|
+
}, z.core.$strip>, z.ZodNull]>>;
|
|
11735
|
+
seeItInActionVideo: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
11736
|
+
muxAssetId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11737
|
+
muxPlaybackId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11738
|
+
uploadedBy: z.ZodOptional<z.ZodUnion<readonly [z.ZodCustom<string, string>, z.ZodNull]>>;
|
|
11739
|
+
uploadId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11740
|
+
uploadedAt: 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]>>;
|
|
11741
|
+
}, z.core.$strip>, z.ZodNull]>>;
|
|
11742
|
+
welcomeQuote: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
11743
|
+
quote: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11744
|
+
quoteBy: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11745
|
+
logoUrl: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11746
|
+
}, z.core.$strip>, z.ZodNull]>>;
|
|
11747
|
+
}, z.core.$strip>, z.ZodNull]>>;
|
|
11748
|
+
_id: z.ZodCustom<string, string>;
|
|
11749
|
+
customerId: z.ZodCustom<string, string>;
|
|
11750
|
+
schemaVersion: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11751
|
+
signal: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
11752
|
+
insights: z.ZodUnion<readonly [z.ZodObject<{
|
|
11753
|
+
org: z.ZodUnion<readonly [z.ZodObject<{
|
|
11754
|
+
timeVelocity: z.ZodUnion<readonly [z.ZodObject<{
|
|
11755
|
+
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]>>;
|
|
11756
|
+
}, z.core.$strip>, z.ZodNull]>;
|
|
11757
|
+
}, z.core.$strip>, z.ZodNull]>;
|
|
11758
|
+
}, z.core.$strip>, z.ZodNull]>;
|
|
11759
|
+
rankOrder: z.ZodOptional<z.ZodUnion<readonly [z.ZodArray<z.ZodString>, z.ZodNull]>>;
|
|
11760
|
+
highLeverageRanks: z.ZodOptional<z.ZodUnion<readonly [z.ZodArray<z.ZodString>, z.ZodNull]>>;
|
|
11761
|
+
highLeverageRatio: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
11762
|
+
}, z.core.$strip>, z.ZodNull]>>;
|
|
11763
|
+
}, z.core.$strip>;
|
|
11764
|
+
export declare const GetApiV1CustomersCustomeridSignalParams: z.ZodObject<{
|
|
11765
|
+
customerId: z.ZodCustom<string, string>;
|
|
11766
|
+
}, z.core.$strip>;
|
|
11767
|
+
export declare const PatchApiV1CustomersCustomeridSignalParams: z.ZodObject<{
|
|
11768
|
+
customerId: z.ZodCustom<string, string>;
|
|
11769
|
+
}, z.core.$strip>;
|
|
11770
|
+
export declare const PatchApiV1CustomersCustomeridSignalBody: z.ZodObject<{
|
|
11771
|
+
insights: z.ZodUnion<readonly [z.ZodObject<{
|
|
11772
|
+
org: z.ZodUnion<readonly [z.ZodObject<{
|
|
11773
|
+
timeVelocity: z.ZodUnion<readonly [z.ZodObject<{
|
|
11774
|
+
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]>>;
|
|
11775
|
+
}, z.core.$strip>, z.ZodNull]>;
|
|
11776
|
+
}, z.core.$strip>, z.ZodNull]>;
|
|
11777
|
+
}, z.core.$strip>, z.ZodNull]>;
|
|
11778
|
+
rankOrder: z.ZodOptional<z.ZodUnion<readonly [z.ZodArray<z.ZodString>, z.ZodNull]>>;
|
|
11779
|
+
highLeverageRanks: z.ZodOptional<z.ZodUnion<readonly [z.ZodArray<z.ZodString>, z.ZodNull]>>;
|
|
11780
|
+
highLeverageRatio: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
11781
|
+
}, z.core.$strip>;
|
|
11782
|
+
export declare const PatchApiV1CustomersCustomeridSignal200Response: z.ZodObject<{
|
|
11783
|
+
insights: z.ZodUnion<readonly [z.ZodObject<{
|
|
11784
|
+
org: z.ZodUnion<readonly [z.ZodObject<{
|
|
11785
|
+
timeVelocity: z.ZodUnion<readonly [z.ZodObject<{
|
|
11786
|
+
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]>>;
|
|
11787
|
+
}, z.core.$strip>, z.ZodNull]>;
|
|
11788
|
+
}, z.core.$strip>, z.ZodNull]>;
|
|
11789
|
+
}, z.core.$strip>, z.ZodNull]>;
|
|
11790
|
+
rankOrder: z.ZodOptional<z.ZodUnion<readonly [z.ZodArray<z.ZodString>, z.ZodNull]>>;
|
|
11791
|
+
highLeverageRanks: z.ZodOptional<z.ZodUnion<readonly [z.ZodArray<z.ZodString>, z.ZodNull]>>;
|
|
11792
|
+
highLeverageRatio: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
11793
|
+
}, z.core.$strip>;
|
|
11794
|
+
export declare const GetApiV1CustomersCustomeridSignalInsightsParams: z.ZodObject<{
|
|
11795
|
+
customerId: z.ZodCustom<string, string>;
|
|
11796
|
+
}, z.core.$strip>;
|
|
11797
|
+
export declare const PatchApiV1CustomersCustomeridSignalInsightsParams: z.ZodObject<{
|
|
11798
|
+
customerId: z.ZodCustom<string, string>;
|
|
11799
|
+
}, z.core.$strip>;
|
|
11800
|
+
export declare const PatchApiV1CustomersCustomeridSignalInsightsBody: z.ZodObject<{
|
|
11801
|
+
org: z.ZodUnion<readonly [z.ZodObject<{
|
|
11802
|
+
timeVelocity: z.ZodUnion<readonly [z.ZodObject<{
|
|
11803
|
+
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]>>;
|
|
11804
|
+
}, z.core.$strip>, z.ZodNull]>;
|
|
11805
|
+
}, z.core.$strip>, z.ZodNull]>;
|
|
11806
|
+
}, z.core.$strip>;
|
|
11807
|
+
export declare const PatchApiV1CustomersCustomeridSignalInsights200Response: z.ZodObject<{
|
|
11808
|
+
org: z.ZodUnion<readonly [z.ZodObject<{
|
|
11809
|
+
timeVelocity: z.ZodUnion<readonly [z.ZodObject<{
|
|
11810
|
+
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]>>;
|
|
11811
|
+
}, z.core.$strip>, z.ZodNull]>;
|
|
11812
|
+
}, z.core.$strip>, z.ZodNull]>;
|
|
11813
|
+
}, z.core.$strip>;
|
|
11814
|
+
export declare const GetApiV1CustomersCustomeridSignalInsightsOrgParams: z.ZodObject<{
|
|
11815
|
+
customerId: z.ZodCustom<string, string>;
|
|
11816
|
+
}, z.core.$strip>;
|
|
11817
|
+
export declare const PatchApiV1CustomersCustomeridSignalInsightsOrgParams: z.ZodObject<{
|
|
11818
|
+
customerId: z.ZodCustom<string, string>;
|
|
11819
|
+
}, z.core.$strip>;
|
|
11820
|
+
export declare const PatchApiV1CustomersCustomeridSignalInsightsOrgBody: z.ZodObject<{
|
|
11821
|
+
timeVelocity: z.ZodUnion<readonly [z.ZodObject<{
|
|
11822
|
+
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]>>;
|
|
11823
|
+
}, z.core.$strip>, z.ZodNull]>;
|
|
11824
|
+
}, z.core.$strip>;
|
|
11825
|
+
export declare const PatchApiV1CustomersCustomeridSignalInsightsOrg200Response: z.ZodObject<{
|
|
11826
|
+
timeVelocity: z.ZodUnion<readonly [z.ZodObject<{
|
|
11827
|
+
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]>>;
|
|
11828
|
+
}, z.core.$strip>, z.ZodNull]>;
|
|
11829
|
+
}, z.core.$strip>;
|
|
11830
|
+
export declare const GetApiV1CustomersCustomeridSignalInsightsOrgTimevelocityParams: z.ZodObject<{
|
|
11831
|
+
customerId: z.ZodCustom<string, string>;
|
|
11832
|
+
}, z.core.$strip>;
|
|
11833
|
+
export declare const PatchApiV1CustomersCustomeridSignalInsightsOrgTimevelocityParams: z.ZodObject<{
|
|
11834
|
+
customerId: z.ZodCustom<string, string>;
|
|
11835
|
+
}, z.core.$strip>;
|
|
11836
|
+
export declare const PatchApiV1CustomersCustomeridSignalInsightsOrgTimevelocityBody: z.ZodObject<{
|
|
11837
|
+
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]>>;
|
|
11838
|
+
}, z.core.$strip>;
|
|
11839
|
+
export declare const PatchApiV1CustomersCustomeridSignalInsightsOrgTimevelocity200Response: z.ZodObject<{
|
|
11840
|
+
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]>>;
|
|
11841
|
+
}, z.core.$strip>;
|
|
11842
|
+
export declare const Request: {
|
|
11843
|
+
readonly '/api/v1/global': {
|
|
11844
|
+
readonly POST: {
|
|
11845
|
+
readonly body: z.ZodObject<{
|
|
11846
|
+
agentConfigurationRefreshInterval: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
11847
|
+
feedbackUrl: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11848
|
+
identityServiceManagementUrl: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11849
|
+
logLevel: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
11850
|
+
DEBUG: "DEBUG";
|
|
11851
|
+
INFO: "INFO";
|
|
11852
|
+
ERROR: "ERROR";
|
|
11853
|
+
WARN: "WARN";
|
|
11854
|
+
}>, z.ZodNull]>>;
|
|
11855
|
+
supportUrl: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11856
|
+
laurelUrl: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11857
|
+
agentMinimumWindowsClientVersionSupported: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11858
|
+
agentMinimumWindowsClientVersionSupportedMessage: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11859
|
+
agentMinimumMacClientVersionSupported: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11860
|
+
agentMinimumMacClientVersionSupportedMessage: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11861
|
+
agentLoggingEndpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11862
|
+
agentLoggingSecureEndpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11863
|
+
agentLoggingToken: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
11864
|
+
}, z.core.$strip>;
|
|
11865
|
+
};
|
|
11866
|
+
readonly PATCH: {
|
|
11176
11867
|
readonly body: z.ZodObject<{
|
|
11177
11868
|
agentConfigurationRefreshInterval: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
11178
11869
|
feedbackUrl: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
@@ -12435,14 +13126,39 @@ export declare const Request: {
|
|
|
12435
13126
|
agentOutlookCaptureAdditionalMetaData: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
12436
13127
|
billingSystem: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
12437
13128
|
code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
12438
|
-
customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
13129
|
+
customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
|
|
12439
13130
|
enabled: z.ZodBoolean;
|
|
12440
13131
|
type: z.ZodEnum<{
|
|
12441
13132
|
aws: "aws";
|
|
12442
13133
|
azure: "azure";
|
|
12443
13134
|
none: "none";
|
|
12444
13135
|
}>;
|
|
12445
|
-
|
|
13136
|
+
accountId: z.ZodString;
|
|
13137
|
+
region: z.ZodString;
|
|
13138
|
+
kmsKeyArn: z.ZodString;
|
|
13139
|
+
crossAccountRoleArn: z.ZodString;
|
|
13140
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
13141
|
+
enabled: z.ZodBoolean;
|
|
13142
|
+
type: z.ZodEnum<{
|
|
13143
|
+
aws: "aws";
|
|
13144
|
+
azure: "azure";
|
|
13145
|
+
none: "none";
|
|
13146
|
+
}>;
|
|
13147
|
+
tenantId: z.ZodString;
|
|
13148
|
+
subscriptionId: z.ZodString;
|
|
13149
|
+
keyVaultEndpoint: z.ZodString;
|
|
13150
|
+
keyName: z.ZodString;
|
|
13151
|
+
keyVersion: z.ZodString;
|
|
13152
|
+
clientId: z.ZodString;
|
|
13153
|
+
clientSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
13154
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
13155
|
+
enabled: z.ZodBoolean;
|
|
13156
|
+
type: z.ZodEnum<{
|
|
13157
|
+
aws: "aws";
|
|
13158
|
+
azure: "azure";
|
|
13159
|
+
none: "none";
|
|
13160
|
+
}>;
|
|
13161
|
+
}, z.core.$strip>]>, z.ZodNull]>>;
|
|
12446
13162
|
defaultBillingIncrementSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
12447
13163
|
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
13164
|
egressExportIntervalSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
@@ -12737,14 +13453,39 @@ export declare const Request: {
|
|
|
12737
13453
|
agentOutlookCaptureAdditionalMetaData: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
12738
13454
|
billingSystem: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
12739
13455
|
code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
12740
|
-
customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
13456
|
+
customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
|
|
12741
13457
|
enabled: z.ZodBoolean;
|
|
12742
13458
|
type: z.ZodEnum<{
|
|
12743
13459
|
aws: "aws";
|
|
12744
13460
|
azure: "azure";
|
|
12745
13461
|
none: "none";
|
|
12746
13462
|
}>;
|
|
12747
|
-
|
|
13463
|
+
accountId: z.ZodString;
|
|
13464
|
+
region: z.ZodString;
|
|
13465
|
+
kmsKeyArn: z.ZodString;
|
|
13466
|
+
crossAccountRoleArn: z.ZodString;
|
|
13467
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
13468
|
+
enabled: z.ZodBoolean;
|
|
13469
|
+
type: z.ZodEnum<{
|
|
13470
|
+
aws: "aws";
|
|
13471
|
+
azure: "azure";
|
|
13472
|
+
none: "none";
|
|
13473
|
+
}>;
|
|
13474
|
+
tenantId: z.ZodString;
|
|
13475
|
+
subscriptionId: z.ZodString;
|
|
13476
|
+
keyVaultEndpoint: z.ZodString;
|
|
13477
|
+
keyName: z.ZodString;
|
|
13478
|
+
keyVersion: z.ZodString;
|
|
13479
|
+
clientId: z.ZodString;
|
|
13480
|
+
clientSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
13481
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
13482
|
+
enabled: z.ZodBoolean;
|
|
13483
|
+
type: z.ZodEnum<{
|
|
13484
|
+
aws: "aws";
|
|
13485
|
+
azure: "azure";
|
|
13486
|
+
none: "none";
|
|
13487
|
+
}>;
|
|
13488
|
+
}, z.core.$strip>]>, z.ZodNull]>>;
|
|
12748
13489
|
defaultBillingIncrementSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
12749
13490
|
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
13491
|
egressExportIntervalSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
@@ -12983,6 +13724,14 @@ export declare const Request: {
|
|
|
12983
13724
|
}, z.core.$strip>;
|
|
12984
13725
|
};
|
|
12985
13726
|
};
|
|
13727
|
+
readonly '/api/v1/customers/{customerId}/rotate-encryption-key': {
|
|
13728
|
+
readonly POST: {
|
|
13729
|
+
readonly params: z.ZodObject<{
|
|
13730
|
+
customerId: z.ZodString;
|
|
13731
|
+
}, z.core.$strip>;
|
|
13732
|
+
readonly body: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
13733
|
+
};
|
|
13734
|
+
};
|
|
12986
13735
|
readonly '/api/v1/customers/{customerId}/privacy-documents': {
|
|
12987
13736
|
readonly GET: {
|
|
12988
13737
|
readonly params: z.ZodObject<{
|
|
@@ -16397,46 +17146,388 @@ export declare const Response: {
|
|
|
16397
17146
|
"Europe/Zagreb": "Europe/Zagreb";
|
|
16398
17147
|
"Europe/Zurich": "Europe/Zurich";
|
|
16399
17148
|
}>, z.ZodNull]>>;
|
|
16400
|
-
firstDayOfWeek: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
16401
|
-
i18Language: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
16402
|
-
defaultDateTimeLocale: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
16403
|
-
userId: z.ZodCustom<string, string>;
|
|
17149
|
+
firstDayOfWeek: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
17150
|
+
i18Language: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17151
|
+
defaultDateTimeLocale: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17152
|
+
userId: z.ZodCustom<string, string>;
|
|
17153
|
+
version: 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>>>;
|
|
17154
|
+
versionUserId: z.ZodOptional<z.ZodUnion<readonly [z.ZodCustom<string, string>, z.ZodNull]>>;
|
|
17155
|
+
initiativeDisplayLabel: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
17156
|
+
webappMinimumDurationSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
17157
|
+
signalLiveboards: z.ZodOptional<z.ZodUnion<readonly [z.ZodArray<z.ZodObject<{
|
|
17158
|
+
name: z.ZodString;
|
|
17159
|
+
thoughtspotCluster: z.ZodString;
|
|
17160
|
+
liveboardId: z.ZodString;
|
|
17161
|
+
}, z.core.$strip>>, z.ZodNull]>>;
|
|
17162
|
+
schemaVersion: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17163
|
+
timesheetInitiativeCategorizationScoreThreshold: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
17164
|
+
timerCarryover: z.ZodObject<{
|
|
17165
|
+
enabled: z.ZodBoolean;
|
|
17166
|
+
fields: z.ZodUnion<readonly [z.ZodObject<{
|
|
17167
|
+
narrative: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
17168
|
+
codes: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
17169
|
+
notes: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
17170
|
+
}, z.core.$strip>, z.ZodNull]>;
|
|
17171
|
+
}, z.core.$strip>;
|
|
17172
|
+
showTimerInEntryModals: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
17173
|
+
privacy: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
17174
|
+
capturePrivateEmails: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
17175
|
+
capturePrivateMeetings: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
17176
|
+
}, z.core.$strip>, z.ZodNull]>>;
|
|
17177
|
+
webappWorkActivityCustomFilters: z.ZodOptional<z.ZodUnion<readonly [z.ZodArray<z.ZodObject<{
|
|
17178
|
+
id: z.ZodString;
|
|
17179
|
+
searchText: z.ZodString;
|
|
17180
|
+
activityType: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17181
|
+
application: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17182
|
+
enabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
17183
|
+
createdAt: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
17184
|
+
}, z.core.$strip>>, z.ZodNull]>>;
|
|
17185
|
+
}, z.core.$strip>;
|
|
17186
|
+
};
|
|
17187
|
+
};
|
|
17188
|
+
readonly '/api/v1/customers/me': {
|
|
17189
|
+
readonly GET: {
|
|
17190
|
+
readonly '200': z.ZodObject<{
|
|
17191
|
+
agentAccessibilityCheckDurationInMinutes: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
17192
|
+
agentEntryMinimumDuration: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
17193
|
+
agentExcludedWebsiteEntries: z.ZodArray<z.ZodObject<{
|
|
17194
|
+
applicationName: z.ZodString;
|
|
17195
|
+
displayName: z.ZodString;
|
|
17196
|
+
metadataSignatures: z.ZodOptional<z.ZodUnion<readonly [z.ZodArray<z.ZodObject<{
|
|
17197
|
+
accessibilitySignature: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17198
|
+
metadataField: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17199
|
+
newActivity: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
17200
|
+
}, z.core.$strip>>, z.ZodNull]>>;
|
|
17201
|
+
ignoreTitles: z.ZodOptional<z.ZodUnion<readonly [z.ZodArray<z.ZodString>, z.ZodNull]>>;
|
|
17202
|
+
suggestedTaxonomy: z.ZodUnion<readonly [z.ZodObject<{
|
|
17203
|
+
domain: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17204
|
+
source: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17205
|
+
category: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17206
|
+
technology: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17207
|
+
mechanism: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17208
|
+
}, z.core.$strip>, z.ZodNull]>;
|
|
17209
|
+
titleBarTemplate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17210
|
+
descriptionTemplate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17211
|
+
group: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17212
|
+
imageCapture: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
17213
|
+
}, z.core.$strip>>;
|
|
17214
|
+
agentIdleTime: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
17215
|
+
agentLaunchDarklyPollingIntervalDuration: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
17216
|
+
agentLoggingEndpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17217
|
+
agentLoggingSecureEndpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17218
|
+
agentLoggingToken: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17219
|
+
agentMacApplicationEntries: z.ZodArray<z.ZodObject<{
|
|
17220
|
+
process: z.ZodString;
|
|
17221
|
+
windowTitle: z.ZodString;
|
|
17222
|
+
titleBarPollingIntervalSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
17223
|
+
accessibilitySignatureMetadataEntries: z.ZodOptional<z.ZodUnion<readonly [z.ZodArray<z.ZodObject<{
|
|
17224
|
+
accessibilitySignature: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17225
|
+
metadataField: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17226
|
+
newActivity: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
17227
|
+
}, z.core.$strip>>, z.ZodNull]>>;
|
|
17228
|
+
ignoreTitles: z.ZodOptional<z.ZodUnion<readonly [z.ZodArray<z.ZodString>, z.ZodNull]>>;
|
|
17229
|
+
suggestedTaxonomy: z.ZodUnion<readonly [z.ZodObject<{
|
|
17230
|
+
domain: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17231
|
+
source: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17232
|
+
category: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17233
|
+
technology: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17234
|
+
mechanism: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17235
|
+
}, z.core.$strip>, z.ZodNull]>;
|
|
17236
|
+
titleBarTemplate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17237
|
+
descriptionTemplate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17238
|
+
imageCapture: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
17239
|
+
}, z.core.$strip>>;
|
|
17240
|
+
agentMetricsEndpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17241
|
+
agentNonActivityServiceThresholdInSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
17242
|
+
agentSqlDbFlushTime: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
17243
|
+
agentTracingEndpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17244
|
+
agentWebsiteEntries: z.ZodArray<z.ZodObject<{
|
|
17245
|
+
applicationName: z.ZodString;
|
|
17246
|
+
displayName: z.ZodString;
|
|
17247
|
+
metadataSignatures: z.ZodOptional<z.ZodUnion<readonly [z.ZodArray<z.ZodObject<{
|
|
17248
|
+
accessibilitySignature: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17249
|
+
metadataField: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17250
|
+
newActivity: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
17251
|
+
}, z.core.$strip>>, z.ZodNull]>>;
|
|
17252
|
+
ignoreTitles: z.ZodOptional<z.ZodUnion<readonly [z.ZodArray<z.ZodString>, z.ZodNull]>>;
|
|
17253
|
+
suggestedTaxonomy: z.ZodUnion<readonly [z.ZodObject<{
|
|
17254
|
+
domain: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17255
|
+
source: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17256
|
+
category: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17257
|
+
technology: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17258
|
+
mechanism: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17259
|
+
}, z.core.$strip>, z.ZodNull]>;
|
|
17260
|
+
titleBarTemplate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17261
|
+
descriptionTemplate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17262
|
+
group: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17263
|
+
imageCapture: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
17264
|
+
}, z.core.$strip>>;
|
|
17265
|
+
agentWindowsApplicationEntries: z.ZodArray<z.ZodObject<{
|
|
17266
|
+
process: z.ZodString;
|
|
17267
|
+
windowTitle: z.ZodString;
|
|
17268
|
+
titleBarPollingIntervalSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
17269
|
+
accessibilitySignatureMetadataEntries: z.ZodOptional<z.ZodUnion<readonly [z.ZodArray<z.ZodObject<{
|
|
17270
|
+
accessibilitySignature: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17271
|
+
metadataField: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17272
|
+
newActivity: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
17273
|
+
}, z.core.$strip>>, z.ZodNull]>>;
|
|
17274
|
+
ignoreTitles: z.ZodOptional<z.ZodUnion<readonly [z.ZodArray<z.ZodString>, z.ZodNull]>>;
|
|
17275
|
+
suggestedTaxonomy: z.ZodUnion<readonly [z.ZodObject<{
|
|
17276
|
+
domain: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17277
|
+
source: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17278
|
+
category: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17279
|
+
technology: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17280
|
+
mechanism: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17281
|
+
}, z.core.$strip>, z.ZodNull]>;
|
|
17282
|
+
titleBarTemplate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17283
|
+
descriptionTemplate: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17284
|
+
imageCapture: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
17285
|
+
}, z.core.$strip>>;
|
|
17286
|
+
agentMinimumWindowsClientVersionSupported: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17287
|
+
agentMinimumWindowsClientVersionSupportedMessage: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17288
|
+
agentMinimumMacClientVersionSupported: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17289
|
+
agentMinimumMacClientVersionSupportedMessage: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17290
|
+
agentDelayAfterOutlookStartSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
17291
|
+
agentOutlookDelayAfterLaurelStartSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
17292
|
+
agentOutlookCaptureBody: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
17293
|
+
agentOutlookCaptureAdditionalMetaData: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
17294
|
+
billingSystem: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17295
|
+
code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17296
|
+
customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
|
|
17297
|
+
enabled: z.ZodBoolean;
|
|
17298
|
+
type: z.ZodEnum<{
|
|
17299
|
+
aws: "aws";
|
|
17300
|
+
azure: "azure";
|
|
17301
|
+
none: "none";
|
|
17302
|
+
}>;
|
|
17303
|
+
accountId: z.ZodString;
|
|
17304
|
+
region: z.ZodString;
|
|
17305
|
+
kmsKeyArn: z.ZodString;
|
|
17306
|
+
crossAccountRoleArn: z.ZodString;
|
|
17307
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
17308
|
+
enabled: z.ZodBoolean;
|
|
17309
|
+
type: z.ZodEnum<{
|
|
17310
|
+
aws: "aws";
|
|
17311
|
+
azure: "azure";
|
|
17312
|
+
none: "none";
|
|
17313
|
+
}>;
|
|
17314
|
+
tenantId: z.ZodString;
|
|
17315
|
+
subscriptionId: z.ZodString;
|
|
17316
|
+
keyVaultEndpoint: z.ZodString;
|
|
17317
|
+
keyName: z.ZodString;
|
|
17318
|
+
keyVersion: z.ZodString;
|
|
17319
|
+
clientId: z.ZodString;
|
|
17320
|
+
clientSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17321
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
17322
|
+
enabled: z.ZodBoolean;
|
|
17323
|
+
type: z.ZodEnum<{
|
|
17324
|
+
aws: "aws";
|
|
17325
|
+
azure: "azure";
|
|
17326
|
+
none: "none";
|
|
17327
|
+
}>;
|
|
17328
|
+
}, z.core.$strip>]>, z.ZodNull]>>;
|
|
17329
|
+
defaultBillingIncrementSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
17330
|
+
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]>>;
|
|
17331
|
+
egressExportIntervalSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
17332
|
+
egressFFFields: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17333
|
+
egressFFHeaders: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17334
|
+
enabledWebappTimekeepingFeatures: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
17335
|
+
phaseCodes: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
17336
|
+
taskCodes: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
17337
|
+
actionCodes: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
17338
|
+
activityCodes: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
17339
|
+
requiredCodeTypes: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
17340
|
+
}, z.core.$strip>, z.ZodNull]>>;
|
|
17341
|
+
dataRetention: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
17342
|
+
enabled: z.ZodBoolean;
|
|
17343
|
+
retentionPeriodInDays: z.ZodNumber;
|
|
17344
|
+
retentionTier: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
17345
|
+
standard: "standard";
|
|
17346
|
+
enhanced: "enhanced";
|
|
17347
|
+
}>, z.ZodNull]>>;
|
|
17348
|
+
}, z.core.$strip>, z.ZodNull]>>;
|
|
17349
|
+
privacy: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
17350
|
+
allowUsersToOverride: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
17351
|
+
capturePrivateEmails: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
17352
|
+
capturePrivateMeetings: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
17353
|
+
}, z.core.$strip>, z.ZodNull]>>;
|
|
17354
|
+
enabledWebappAdministrativeFeatures: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
17355
|
+
biDirectionalSync: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
17356
|
+
delegateAccess: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
17357
|
+
}, z.core.$strip>, z.ZodNull]>>;
|
|
17358
|
+
webexTracking: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
17359
|
+
orgId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17360
|
+
clientId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17361
|
+
clientSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17362
|
+
serviceAppId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17363
|
+
variant: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
17364
|
+
Webex: "Webex";
|
|
17365
|
+
WebexGov: "WebexGov";
|
|
17366
|
+
WebexDev: "WebexDev";
|
|
17367
|
+
}>, z.ZodNull]>>;
|
|
17368
|
+
refreshToken: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17369
|
+
cdrEnabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
17370
|
+
meetingsEnabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
17371
|
+
}, z.core.$strip>, z.ZodNull]>>;
|
|
17372
|
+
webexContacts: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
17373
|
+
orgId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17374
|
+
clientId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17375
|
+
clientSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17376
|
+
serviceAppId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17377
|
+
variant: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
17378
|
+
Webex: "Webex";
|
|
17379
|
+
WebexGov: "WebexGov";
|
|
17380
|
+
WebexDev: "WebexDev";
|
|
17381
|
+
}>, z.ZodNull]>>;
|
|
17382
|
+
refreshToken: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17383
|
+
contactsEnabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
17384
|
+
peopleEnabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
17385
|
+
}, z.core.$strip>, z.ZodNull]>>;
|
|
17386
|
+
ringCentralTracking: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
17387
|
+
phonesEnabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
17388
|
+
meetingsEnabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
17389
|
+
clientId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17390
|
+
clientSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17391
|
+
serverUrl: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17392
|
+
jwtToken: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17393
|
+
}, z.core.$strip>, z.ZodNull]>>;
|
|
17394
|
+
enablePostReleaseEditing: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
17395
|
+
narrativeGuidelinesMode: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
17396
|
+
customer_only: "customer_only";
|
|
17397
|
+
inferred_only: "inferred_only";
|
|
17398
|
+
customer_then_inferred: "customer_then_inferred";
|
|
17399
|
+
disabled: "disabled";
|
|
17400
|
+
}>, z.ZodNull]>>;
|
|
17401
|
+
summaryCharacterLimitCount: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
17402
|
+
enableLaurelConnect: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
17403
|
+
enableTracking: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
17404
|
+
enableTrackingMicrosoftTeams: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
17405
|
+
enableTrackingGoogle: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
17406
|
+
enableTrackingZoom: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
17407
|
+
enableCloudAssistantCdr: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
17408
|
+
feedbackUrl: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17409
|
+
fiscalYearStartDate: 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]>>;
|
|
17410
|
+
fiscalQ2StartDate: 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]>>;
|
|
17411
|
+
fiscalQ3StartDate: 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]>>;
|
|
17412
|
+
fiscalQ4StartDate: 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]>>;
|
|
17413
|
+
i18Language: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17414
|
+
launchDarklyCustomerKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17415
|
+
launchDarklyEnvironmentKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17416
|
+
launchDarklyRelay: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17417
|
+
laurelConnectType: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
17418
|
+
ADERANT: "ADERANT";
|
|
17419
|
+
CSV: "CSV";
|
|
17420
|
+
}>, z.ZodNull]>>;
|
|
17421
|
+
laurelConnectCsvBucketArn: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17422
|
+
laurelConnectSnsSubscriptionArn: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17423
|
+
logLevel: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
17424
|
+
DEBUG: "DEBUG";
|
|
17425
|
+
INFO: "INFO";
|
|
17426
|
+
ERROR: "ERROR";
|
|
17427
|
+
WARN: "WARN";
|
|
17428
|
+
}>, z.ZodNull]>>;
|
|
17429
|
+
name: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17430
|
+
salesforceId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17431
|
+
supportUrl: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17432
|
+
laurelUrl: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17433
|
+
timeServiceUrl: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17434
|
+
trackingMicrosoftGraphApiAppId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17435
|
+
trackingMicrosoftGraphApiTenantId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17436
|
+
trackingMicrosoftTeamsGraphApiSecretId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17437
|
+
trackingMicrosoftTeamsGraphApiSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17438
|
+
trackingMicrosoftTeamsGraphApiSecretExpiration: 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]>>;
|
|
17439
|
+
trackingMicrosoftTeamsGraphApiSubscriptionSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17440
|
+
trackingGoogleProjectId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17441
|
+
trackingGoogleServiceAccountEmail: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17442
|
+
trackingGoogleServiceAccountPrivateKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17443
|
+
trackingZoomApiAccountId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17444
|
+
trackingZoomApiAppSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17445
|
+
intappTermsApiKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17446
|
+
intappTermsApiSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17447
|
+
intappTermsRestrictedWordEnforcementLevel: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
17448
|
+
block: "block";
|
|
17449
|
+
acknowledge: "acknowledge";
|
|
17450
|
+
warn: "warn";
|
|
17451
|
+
off: "off";
|
|
17452
|
+
}>, z.ZodNull]>>;
|
|
17453
|
+
trackingZoomApiClientId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17454
|
+
trackingZoomApiEventSecretToken: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17455
|
+
trackingZoomApiVariant: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
17456
|
+
Zoom: "Zoom";
|
|
17457
|
+
ZoomGov: "ZoomGov";
|
|
17458
|
+
}>, z.ZodNull]>>;
|
|
17459
|
+
enableOutlookFolderSearch: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
17460
|
+
outlookServerType: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
17461
|
+
O365: "O365";
|
|
17462
|
+
OnPremise: "OnPremise";
|
|
17463
|
+
}>, z.ZodNull]>>;
|
|
17464
|
+
outlookServerUrl: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17465
|
+
outlookFolderSearchAdminUsername: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17466
|
+
outlookFolderSearchAdminPassword: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17467
|
+
outlookFolderSearchAdminDomain: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17468
|
+
outlookFolderSearchAzureAppSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17469
|
+
outlookFolderSearchAzureAppSecretExpiration: 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]>>;
|
|
17470
|
+
outlookFolderSearchAzureAppClientId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17471
|
+
outlookFolderSearchAzureTenantId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17472
|
+
microsoftApiType: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
17473
|
+
Ews: "Ews";
|
|
17474
|
+
Graph: "Graph";
|
|
17475
|
+
}>, z.ZodNull]>>;
|
|
17476
|
+
laurelConnectSftpUserRoleName: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17477
|
+
laurelConnectSftpUserSshPrivateKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17478
|
+
webappDisplayClientCallSignForInitiatives: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
16404
17479
|
version: 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>>>;
|
|
16405
17480
|
versionUserId: z.ZodOptional<z.ZodUnion<readonly [z.ZodCustom<string, string>, z.ZodNull]>>;
|
|
16406
|
-
|
|
16407
|
-
|
|
16408
|
-
|
|
16409
|
-
name: z.ZodString;
|
|
16410
|
-
thoughtspotCluster: z.ZodString;
|
|
16411
|
-
liveboardId: z.ZodString;
|
|
16412
|
-
}, z.core.$strip>>, z.ZodNull]>>;
|
|
16413
|
-
schemaVersion: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
16414
|
-
timesheetInitiativeCategorizationScoreThreshold: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
16415
|
-
timerCarryover: z.ZodObject<{
|
|
17481
|
+
defaultDateTimeLocale: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17482
|
+
switchInitiativeDisplayLabel: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
17483
|
+
delegateMapping: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
16416
17484
|
enabled: z.ZodBoolean;
|
|
16417
|
-
|
|
16418
|
-
|
|
16419
|
-
|
|
16420
|
-
|
|
17485
|
+
}, z.core.$strip>, z.ZodNull]>>;
|
|
17486
|
+
timesheetInitiativeCategorizationScoreThreshold: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
17487
|
+
userInitiativesEnabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
17488
|
+
allowUserVersionOverride: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
17489
|
+
autoAddUsers: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
17490
|
+
disableMobileApp: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
17491
|
+
onboardingResource: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
17492
|
+
welcomeVideo: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
17493
|
+
muxAssetId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17494
|
+
muxPlaybackId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17495
|
+
uploadedBy: z.ZodOptional<z.ZodUnion<readonly [z.ZodCustom<string, string>, z.ZodNull]>>;
|
|
17496
|
+
uploadId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17497
|
+
uploadedAt: 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]>>;
|
|
17498
|
+
}, z.core.$strip>, z.ZodNull]>>;
|
|
17499
|
+
seeItInActionVideo: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
17500
|
+
muxAssetId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17501
|
+
muxPlaybackId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17502
|
+
uploadedBy: z.ZodOptional<z.ZodUnion<readonly [z.ZodCustom<string, string>, z.ZodNull]>>;
|
|
17503
|
+
uploadId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17504
|
+
uploadedAt: 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]>>;
|
|
17505
|
+
}, z.core.$strip>, z.ZodNull]>>;
|
|
17506
|
+
welcomeQuote: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
17507
|
+
quote: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17508
|
+
quoteBy: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17509
|
+
logoUrl: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17510
|
+
}, z.core.$strip>, z.ZodNull]>>;
|
|
17511
|
+
}, z.core.$strip>, z.ZodNull]>>;
|
|
17512
|
+
_id: z.ZodCustom<string, string>;
|
|
17513
|
+
customerId: z.ZodCustom<string, string>;
|
|
17514
|
+
schemaVersion: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17515
|
+
signal: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
17516
|
+
insights: z.ZodUnion<readonly [z.ZodObject<{
|
|
17517
|
+
org: z.ZodUnion<readonly [z.ZodObject<{
|
|
17518
|
+
timeVelocity: z.ZodUnion<readonly [z.ZodObject<{
|
|
17519
|
+
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]>>;
|
|
17520
|
+
}, z.core.$strip>, z.ZodNull]>;
|
|
17521
|
+
}, z.core.$strip>, z.ZodNull]>;
|
|
16421
17522
|
}, z.core.$strip>, z.ZodNull]>;
|
|
16422
|
-
|
|
16423
|
-
|
|
16424
|
-
|
|
16425
|
-
capturePrivateEmails: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
16426
|
-
capturePrivateMeetings: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
17523
|
+
rankOrder: z.ZodOptional<z.ZodUnion<readonly [z.ZodArray<z.ZodString>, z.ZodNull]>>;
|
|
17524
|
+
highLeverageRanks: z.ZodOptional<z.ZodUnion<readonly [z.ZodArray<z.ZodString>, z.ZodNull]>>;
|
|
17525
|
+
highLeverageRatio: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
16427
17526
|
}, z.core.$strip>, z.ZodNull]>>;
|
|
16428
|
-
webappWorkActivityCustomFilters: z.ZodOptional<z.ZodUnion<readonly [z.ZodArray<z.ZodObject<{
|
|
16429
|
-
id: z.ZodString;
|
|
16430
|
-
searchText: z.ZodString;
|
|
16431
|
-
activityType: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
16432
|
-
application: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
16433
|
-
enabled: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
16434
|
-
createdAt: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
16435
|
-
}, z.core.$strip>>, z.ZodNull]>>;
|
|
16436
17527
|
}, z.core.$strip>;
|
|
16437
17528
|
};
|
|
16438
17529
|
};
|
|
16439
|
-
readonly '/api/v1/customers/
|
|
17530
|
+
readonly '/api/v1/customers/{customerId}': {
|
|
16440
17531
|
readonly GET: {
|
|
16441
17532
|
readonly '200': z.ZodObject<{
|
|
16442
17533
|
agentAccessibilityCheckDurationInMinutes: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
@@ -16544,14 +17635,39 @@ export declare const Response: {
|
|
|
16544
17635
|
agentOutlookCaptureAdditionalMetaData: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
16545
17636
|
billingSystem: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
16546
17637
|
code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
16547
|
-
customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
17638
|
+
customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
|
|
16548
17639
|
enabled: z.ZodBoolean;
|
|
16549
17640
|
type: z.ZodEnum<{
|
|
16550
17641
|
aws: "aws";
|
|
16551
17642
|
azure: "azure";
|
|
16552
17643
|
none: "none";
|
|
16553
17644
|
}>;
|
|
16554
|
-
|
|
17645
|
+
accountId: z.ZodString;
|
|
17646
|
+
region: z.ZodString;
|
|
17647
|
+
kmsKeyArn: z.ZodString;
|
|
17648
|
+
crossAccountRoleArn: z.ZodString;
|
|
17649
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
17650
|
+
enabled: z.ZodBoolean;
|
|
17651
|
+
type: z.ZodEnum<{
|
|
17652
|
+
aws: "aws";
|
|
17653
|
+
azure: "azure";
|
|
17654
|
+
none: "none";
|
|
17655
|
+
}>;
|
|
17656
|
+
tenantId: z.ZodString;
|
|
17657
|
+
subscriptionId: z.ZodString;
|
|
17658
|
+
keyVaultEndpoint: z.ZodString;
|
|
17659
|
+
keyName: z.ZodString;
|
|
17660
|
+
keyVersion: z.ZodString;
|
|
17661
|
+
clientId: z.ZodString;
|
|
17662
|
+
clientSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17663
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
17664
|
+
enabled: z.ZodBoolean;
|
|
17665
|
+
type: z.ZodEnum<{
|
|
17666
|
+
aws: "aws";
|
|
17667
|
+
azure: "azure";
|
|
17668
|
+
none: "none";
|
|
17669
|
+
}>;
|
|
17670
|
+
}, z.core.$strip>]>, z.ZodNull]>>;
|
|
16555
17671
|
defaultBillingIncrementSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
16556
17672
|
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
17673
|
egressExportIntervalSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
@@ -16752,10 +17868,8 @@ export declare const Response: {
|
|
|
16752
17868
|
}, z.core.$strip>, z.ZodNull]>>;
|
|
16753
17869
|
}, z.core.$strip>;
|
|
16754
17870
|
};
|
|
16755
|
-
|
|
16756
|
-
|
|
16757
|
-
readonly GET: {
|
|
16758
|
-
readonly '200': z.ZodObject<{
|
|
17871
|
+
readonly POST: {
|
|
17872
|
+
readonly '201': z.ZodObject<{
|
|
16759
17873
|
agentAccessibilityCheckDurationInMinutes: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
16760
17874
|
agentEntryMinimumDuration: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
16761
17875
|
agentExcludedWebsiteEntries: z.ZodArray<z.ZodObject<{
|
|
@@ -16861,14 +17975,39 @@ export declare const Response: {
|
|
|
16861
17975
|
agentOutlookCaptureAdditionalMetaData: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
16862
17976
|
billingSystem: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
16863
17977
|
code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
16864
|
-
customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
17978
|
+
customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
|
|
16865
17979
|
enabled: z.ZodBoolean;
|
|
16866
17980
|
type: z.ZodEnum<{
|
|
16867
17981
|
aws: "aws";
|
|
16868
17982
|
azure: "azure";
|
|
16869
17983
|
none: "none";
|
|
16870
17984
|
}>;
|
|
16871
|
-
|
|
17985
|
+
accountId: z.ZodString;
|
|
17986
|
+
region: z.ZodString;
|
|
17987
|
+
kmsKeyArn: z.ZodString;
|
|
17988
|
+
crossAccountRoleArn: z.ZodString;
|
|
17989
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
17990
|
+
enabled: z.ZodBoolean;
|
|
17991
|
+
type: z.ZodEnum<{
|
|
17992
|
+
aws: "aws";
|
|
17993
|
+
azure: "azure";
|
|
17994
|
+
none: "none";
|
|
17995
|
+
}>;
|
|
17996
|
+
tenantId: z.ZodString;
|
|
17997
|
+
subscriptionId: z.ZodString;
|
|
17998
|
+
keyVaultEndpoint: z.ZodString;
|
|
17999
|
+
keyName: z.ZodString;
|
|
18000
|
+
keyVersion: z.ZodString;
|
|
18001
|
+
clientId: z.ZodString;
|
|
18002
|
+
clientSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
18003
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
18004
|
+
enabled: z.ZodBoolean;
|
|
18005
|
+
type: z.ZodEnum<{
|
|
18006
|
+
aws: "aws";
|
|
18007
|
+
azure: "azure";
|
|
18008
|
+
none: "none";
|
|
18009
|
+
}>;
|
|
18010
|
+
}, z.core.$strip>]>, z.ZodNull]>>;
|
|
16872
18011
|
defaultBillingIncrementSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
16873
18012
|
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
18013
|
egressExportIntervalSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
@@ -17069,8 +18208,8 @@ export declare const Response: {
|
|
|
17069
18208
|
}, z.core.$strip>, z.ZodNull]>>;
|
|
17070
18209
|
}, z.core.$strip>;
|
|
17071
18210
|
};
|
|
17072
|
-
readonly
|
|
17073
|
-
readonly '
|
|
18211
|
+
readonly PATCH: {
|
|
18212
|
+
readonly '200': z.ZodObject<{
|
|
17074
18213
|
agentAccessibilityCheckDurationInMinutes: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
17075
18214
|
agentEntryMinimumDuration: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
17076
18215
|
agentExcludedWebsiteEntries: z.ZodArray<z.ZodObject<{
|
|
@@ -17176,14 +18315,39 @@ export declare const Response: {
|
|
|
17176
18315
|
agentOutlookCaptureAdditionalMetaData: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
17177
18316
|
billingSystem: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17178
18317
|
code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17179
|
-
customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
18318
|
+
customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
|
|
17180
18319
|
enabled: z.ZodBoolean;
|
|
17181
18320
|
type: z.ZodEnum<{
|
|
17182
18321
|
aws: "aws";
|
|
17183
18322
|
azure: "azure";
|
|
17184
18323
|
none: "none";
|
|
17185
18324
|
}>;
|
|
17186
|
-
|
|
18325
|
+
accountId: z.ZodString;
|
|
18326
|
+
region: z.ZodString;
|
|
18327
|
+
kmsKeyArn: z.ZodString;
|
|
18328
|
+
crossAccountRoleArn: z.ZodString;
|
|
18329
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
18330
|
+
enabled: z.ZodBoolean;
|
|
18331
|
+
type: z.ZodEnum<{
|
|
18332
|
+
aws: "aws";
|
|
18333
|
+
azure: "azure";
|
|
18334
|
+
none: "none";
|
|
18335
|
+
}>;
|
|
18336
|
+
tenantId: z.ZodString;
|
|
18337
|
+
subscriptionId: z.ZodString;
|
|
18338
|
+
keyVaultEndpoint: z.ZodString;
|
|
18339
|
+
keyName: z.ZodString;
|
|
18340
|
+
keyVersion: z.ZodString;
|
|
18341
|
+
clientId: z.ZodString;
|
|
18342
|
+
clientSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
18343
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
18344
|
+
enabled: z.ZodBoolean;
|
|
18345
|
+
type: z.ZodEnum<{
|
|
18346
|
+
aws: "aws";
|
|
18347
|
+
azure: "azure";
|
|
18348
|
+
none: "none";
|
|
18349
|
+
}>;
|
|
18350
|
+
}, z.core.$strip>]>, z.ZodNull]>>;
|
|
17187
18351
|
defaultBillingIncrementSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
17188
18352
|
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
18353
|
egressExportIntervalSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
@@ -17384,7 +18548,7 @@ export declare const Response: {
|
|
|
17384
18548
|
}, z.core.$strip>, z.ZodNull]>>;
|
|
17385
18549
|
}, z.core.$strip>;
|
|
17386
18550
|
};
|
|
17387
|
-
readonly
|
|
18551
|
+
readonly DELETE: {
|
|
17388
18552
|
readonly '200': z.ZodObject<{
|
|
17389
18553
|
agentAccessibilityCheckDurationInMinutes: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
17390
18554
|
agentEntryMinimumDuration: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
@@ -17491,14 +18655,39 @@ export declare const Response: {
|
|
|
17491
18655
|
agentOutlookCaptureAdditionalMetaData: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
17492
18656
|
billingSystem: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17493
18657
|
code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17494
|
-
customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
18658
|
+
customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
|
|
17495
18659
|
enabled: z.ZodBoolean;
|
|
17496
18660
|
type: z.ZodEnum<{
|
|
17497
18661
|
aws: "aws";
|
|
17498
18662
|
azure: "azure";
|
|
17499
18663
|
none: "none";
|
|
17500
18664
|
}>;
|
|
17501
|
-
|
|
18665
|
+
accountId: z.ZodString;
|
|
18666
|
+
region: z.ZodString;
|
|
18667
|
+
kmsKeyArn: z.ZodString;
|
|
18668
|
+
crossAccountRoleArn: z.ZodString;
|
|
18669
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
18670
|
+
enabled: z.ZodBoolean;
|
|
18671
|
+
type: z.ZodEnum<{
|
|
18672
|
+
aws: "aws";
|
|
18673
|
+
azure: "azure";
|
|
18674
|
+
none: "none";
|
|
18675
|
+
}>;
|
|
18676
|
+
tenantId: z.ZodString;
|
|
18677
|
+
subscriptionId: z.ZodString;
|
|
18678
|
+
keyVaultEndpoint: z.ZodString;
|
|
18679
|
+
keyName: z.ZodString;
|
|
18680
|
+
keyVersion: z.ZodString;
|
|
18681
|
+
clientId: z.ZodString;
|
|
18682
|
+
clientSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
18683
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
18684
|
+
enabled: z.ZodBoolean;
|
|
18685
|
+
type: z.ZodEnum<{
|
|
18686
|
+
aws: "aws";
|
|
18687
|
+
azure: "azure";
|
|
18688
|
+
none: "none";
|
|
18689
|
+
}>;
|
|
18690
|
+
}, z.core.$strip>]>, z.ZodNull]>>;
|
|
17502
18691
|
defaultBillingIncrementSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
17503
18692
|
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
18693
|
egressExportIntervalSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
@@ -17699,8 +18888,10 @@ export declare const Response: {
|
|
|
17699
18888
|
}, z.core.$strip>, z.ZodNull]>>;
|
|
17700
18889
|
}, z.core.$strip>;
|
|
17701
18890
|
};
|
|
17702
|
-
|
|
17703
|
-
|
|
18891
|
+
};
|
|
18892
|
+
readonly '/api/v1/customers': {
|
|
18893
|
+
readonly GET: {
|
|
18894
|
+
readonly '200': z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodObject<{
|
|
17704
18895
|
agentAccessibilityCheckDurationInMinutes: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
17705
18896
|
agentEntryMinimumDuration: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
17706
18897
|
agentExcludedWebsiteEntries: z.ZodArray<z.ZodObject<{
|
|
@@ -17806,14 +18997,39 @@ export declare const Response: {
|
|
|
17806
18997
|
agentOutlookCaptureAdditionalMetaData: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
17807
18998
|
billingSystem: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17808
18999
|
code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
17809
|
-
customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
19000
|
+
customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
|
|
17810
19001
|
enabled: z.ZodBoolean;
|
|
17811
19002
|
type: z.ZodEnum<{
|
|
17812
19003
|
aws: "aws";
|
|
17813
19004
|
azure: "azure";
|
|
17814
19005
|
none: "none";
|
|
17815
19006
|
}>;
|
|
17816
|
-
|
|
19007
|
+
accountId: z.ZodString;
|
|
19008
|
+
region: z.ZodString;
|
|
19009
|
+
kmsKeyArn: z.ZodString;
|
|
19010
|
+
crossAccountRoleArn: z.ZodString;
|
|
19011
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
19012
|
+
enabled: z.ZodBoolean;
|
|
19013
|
+
type: z.ZodEnum<{
|
|
19014
|
+
aws: "aws";
|
|
19015
|
+
azure: "azure";
|
|
19016
|
+
none: "none";
|
|
19017
|
+
}>;
|
|
19018
|
+
tenantId: z.ZodString;
|
|
19019
|
+
subscriptionId: z.ZodString;
|
|
19020
|
+
keyVaultEndpoint: z.ZodString;
|
|
19021
|
+
keyName: z.ZodString;
|
|
19022
|
+
keyVersion: z.ZodString;
|
|
19023
|
+
clientId: z.ZodString;
|
|
19024
|
+
clientSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
19025
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
19026
|
+
enabled: z.ZodBoolean;
|
|
19027
|
+
type: z.ZodEnum<{
|
|
19028
|
+
aws: "aws";
|
|
19029
|
+
azure: "azure";
|
|
19030
|
+
none: "none";
|
|
19031
|
+
}>;
|
|
19032
|
+
}, z.core.$strip>]>, z.ZodNull]>>;
|
|
17817
19033
|
defaultBillingIncrementSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
17818
19034
|
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
19035
|
egressExportIntervalSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
@@ -18012,12 +19228,30 @@ export declare const Response: {
|
|
|
18012
19228
|
highLeverageRanks: z.ZodOptional<z.ZodUnion<readonly [z.ZodArray<z.ZodString>, z.ZodNull]>>;
|
|
18013
19229
|
highLeverageRatio: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
18014
19230
|
}, z.core.$strip>, z.ZodNull]>>;
|
|
18015
|
-
}, z.core.$strip>;
|
|
19231
|
+
}, z.core.$strip>>]>;
|
|
18016
19232
|
};
|
|
18017
19233
|
};
|
|
18018
|
-
readonly '/api/v1/customers': {
|
|
19234
|
+
readonly '/api/v1/customers/{customerId}/timezones': {
|
|
18019
19235
|
readonly GET: {
|
|
18020
|
-
readonly '200': z.
|
|
19236
|
+
readonly '200': z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString>>;
|
|
19237
|
+
};
|
|
19238
|
+
};
|
|
19239
|
+
readonly '/api/v1/customers/{customerId}/websites/bulk': {
|
|
19240
|
+
readonly PATCH: {
|
|
19241
|
+
readonly '200': z.ZodObject<{
|
|
19242
|
+
succeeded: z.ZodNumber;
|
|
19243
|
+
failed: z.ZodNumber;
|
|
19244
|
+
errors: z.ZodArray<z.ZodObject<{
|
|
19245
|
+
index: z.ZodNumber;
|
|
19246
|
+
message: z.ZodString;
|
|
19247
|
+
errorCode: z.ZodString;
|
|
19248
|
+
}, z.core.$strip>>;
|
|
19249
|
+
}, z.core.$strip>;
|
|
19250
|
+
};
|
|
19251
|
+
};
|
|
19252
|
+
readonly '/api/v1/customers/{customerId}/rotate-encryption-key': {
|
|
19253
|
+
readonly POST: {
|
|
19254
|
+
readonly '200': z.ZodObject<{
|
|
18021
19255
|
agentAccessibilityCheckDurationInMinutes: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
18022
19256
|
agentEntryMinimumDuration: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
18023
19257
|
agentExcludedWebsiteEntries: z.ZodArray<z.ZodObject<{
|
|
@@ -18123,14 +19357,39 @@ export declare const Response: {
|
|
|
18123
19357
|
agentOutlookCaptureAdditionalMetaData: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
18124
19358
|
billingSystem: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
18125
19359
|
code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
18126
|
-
customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
19360
|
+
customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
|
|
18127
19361
|
enabled: z.ZodBoolean;
|
|
18128
19362
|
type: z.ZodEnum<{
|
|
18129
19363
|
aws: "aws";
|
|
18130
19364
|
azure: "azure";
|
|
18131
19365
|
none: "none";
|
|
18132
19366
|
}>;
|
|
18133
|
-
|
|
19367
|
+
accountId: z.ZodString;
|
|
19368
|
+
region: z.ZodString;
|
|
19369
|
+
kmsKeyArn: z.ZodString;
|
|
19370
|
+
crossAccountRoleArn: z.ZodString;
|
|
19371
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
19372
|
+
enabled: z.ZodBoolean;
|
|
19373
|
+
type: z.ZodEnum<{
|
|
19374
|
+
aws: "aws";
|
|
19375
|
+
azure: "azure";
|
|
19376
|
+
none: "none";
|
|
19377
|
+
}>;
|
|
19378
|
+
tenantId: z.ZodString;
|
|
19379
|
+
subscriptionId: z.ZodString;
|
|
19380
|
+
keyVaultEndpoint: z.ZodString;
|
|
19381
|
+
keyName: z.ZodString;
|
|
19382
|
+
keyVersion: z.ZodString;
|
|
19383
|
+
clientId: z.ZodString;
|
|
19384
|
+
clientSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
19385
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
19386
|
+
enabled: z.ZodBoolean;
|
|
19387
|
+
type: z.ZodEnum<{
|
|
19388
|
+
aws: "aws";
|
|
19389
|
+
azure: "azure";
|
|
19390
|
+
none: "none";
|
|
19391
|
+
}>;
|
|
19392
|
+
}, z.core.$strip>]>, z.ZodNull]>>;
|
|
18134
19393
|
defaultBillingIncrementSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
18135
19394
|
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
19395
|
egressExportIntervalSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
@@ -18329,24 +19588,6 @@ export declare const Response: {
|
|
|
18329
19588
|
highLeverageRanks: z.ZodOptional<z.ZodUnion<readonly [z.ZodArray<z.ZodString>, z.ZodNull]>>;
|
|
18330
19589
|
highLeverageRatio: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
18331
19590
|
}, z.core.$strip>, z.ZodNull]>>;
|
|
18332
|
-
}, z.core.$strip>>]>;
|
|
18333
|
-
};
|
|
18334
|
-
};
|
|
18335
|
-
readonly '/api/v1/customers/{customerId}/timezones': {
|
|
18336
|
-
readonly GET: {
|
|
18337
|
-
readonly '200': z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString>>;
|
|
18338
|
-
};
|
|
18339
|
-
};
|
|
18340
|
-
readonly '/api/v1/customers/{customerId}/websites/bulk': {
|
|
18341
|
-
readonly PATCH: {
|
|
18342
|
-
readonly '200': z.ZodObject<{
|
|
18343
|
-
succeeded: z.ZodNumber;
|
|
18344
|
-
failed: z.ZodNumber;
|
|
18345
|
-
errors: z.ZodArray<z.ZodObject<{
|
|
18346
|
-
index: z.ZodNumber;
|
|
18347
|
-
message: z.ZodString;
|
|
18348
|
-
errorCode: z.ZodString;
|
|
18349
|
-
}, z.core.$strip>>;
|
|
18350
19591
|
}, z.core.$strip>;
|
|
18351
19592
|
};
|
|
18352
19593
|
};
|
|
@@ -18570,14 +19811,39 @@ export declare const Response: {
|
|
|
18570
19811
|
agentOutlookCaptureAdditionalMetaData: z.ZodOptional<z.ZodUnion<readonly [z.ZodBoolean, z.ZodNull]>>;
|
|
18571
19812
|
billingSystem: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
18572
19813
|
code: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
18573
|
-
customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
19814
|
+
customerEncryptionKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
|
|
18574
19815
|
enabled: z.ZodBoolean;
|
|
18575
19816
|
type: z.ZodEnum<{
|
|
18576
19817
|
aws: "aws";
|
|
18577
19818
|
azure: "azure";
|
|
18578
19819
|
none: "none";
|
|
18579
19820
|
}>;
|
|
18580
|
-
|
|
19821
|
+
accountId: z.ZodString;
|
|
19822
|
+
region: z.ZodString;
|
|
19823
|
+
kmsKeyArn: z.ZodString;
|
|
19824
|
+
crossAccountRoleArn: z.ZodString;
|
|
19825
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
19826
|
+
enabled: z.ZodBoolean;
|
|
19827
|
+
type: z.ZodEnum<{
|
|
19828
|
+
aws: "aws";
|
|
19829
|
+
azure: "azure";
|
|
19830
|
+
none: "none";
|
|
19831
|
+
}>;
|
|
19832
|
+
tenantId: z.ZodString;
|
|
19833
|
+
subscriptionId: z.ZodString;
|
|
19834
|
+
keyVaultEndpoint: z.ZodString;
|
|
19835
|
+
keyName: z.ZodString;
|
|
19836
|
+
keyVersion: z.ZodString;
|
|
19837
|
+
clientId: z.ZodString;
|
|
19838
|
+
clientSecret: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull]>>;
|
|
19839
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
19840
|
+
enabled: z.ZodBoolean;
|
|
19841
|
+
type: z.ZodEnum<{
|
|
19842
|
+
aws: "aws";
|
|
19843
|
+
azure: "azure";
|
|
19844
|
+
none: "none";
|
|
19845
|
+
}>;
|
|
19846
|
+
}, z.core.$strip>]>, z.ZodNull]>>;
|
|
18581
19847
|
defaultBillingIncrementSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|
|
18582
19848
|
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
19849
|
egressExportIntervalSeconds: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodNull]>>;
|