cf-service-sdk 0.0.52 → 0.0.54
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.
|
@@ -498,8 +498,8 @@ export type CallReportFilterInput = {
|
|
|
498
498
|
endDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
499
499
|
/** Custom start date (used if date_group is 'custom') */
|
|
500
500
|
startDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
501
|
-
/** Filter by specific user/salesperson (omit for all users) */
|
|
502
|
-
userId?: InputMaybe<Scalars['ID']['input']
|
|
501
|
+
/** Filter by specific user/salesperson(s) (omit for all users) */
|
|
502
|
+
userId?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
503
503
|
};
|
|
504
504
|
/** Call log entry for the report table */
|
|
505
505
|
export type CallReportLogObject = {
|
|
@@ -1433,6 +1433,8 @@ export type EmailToneInput = {
|
|
|
1433
1433
|
emailContent: Scalars['String']['input'];
|
|
1434
1434
|
/** Number of variations to generate (default: 3) */
|
|
1435
1435
|
numVariations?: InputMaybe<Scalars['Int']['input']>;
|
|
1436
|
+
/** List of previous variations to avoid repetition */
|
|
1437
|
+
previousVariations?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
1436
1438
|
/** Original email subject (optional) */
|
|
1437
1439
|
subject?: InputMaybe<Scalars['String']['input']>;
|
|
1438
1440
|
/** Tone instruction (e.g., 'Persuasive', 'Technical', 'Friendly') */
|