cf-service-sdk-dharani 0.0.68 → 0.0.70
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/generated/graphql.d.ts +27 -12
- package/dist/generated/graphql.js +11 -5
- package/dist/mutations.js +11 -5
- package/package.json +1 -1
|
@@ -2565,13 +2565,8 @@ export type RecentlyContactedContactType = {
|
|
|
2565
2565
|
/** ReduceSpam - Reduce spam score of email content using Claude LLM */
|
|
2566
2566
|
export type ReduceSpam = {
|
|
2567
2567
|
__typename?: 'ReduceSpam';
|
|
2568
|
-
changesMade?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
2569
|
-
cleanedContent?: Maybe<Scalars['String']['output']>;
|
|
2570
|
-
cleanedSubject?: Maybe<Scalars['String']['output']>;
|
|
2571
2568
|
message?: Maybe<Scalars['String']['output']>;
|
|
2572
|
-
|
|
2573
|
-
originalContent?: Maybe<Scalars['String']['output']>;
|
|
2574
|
-
originalSubject?: Maybe<Scalars['String']['output']>;
|
|
2569
|
+
reduceSpamResponse?: Maybe<ReduceSpamResponse>;
|
|
2575
2570
|
success?: Maybe<Scalars['Boolean']['output']>;
|
|
2576
2571
|
};
|
|
2577
2572
|
/** ReduceSpamInput for reducing spam score of email content */
|
|
@@ -2579,7 +2574,20 @@ export type ReduceSpamInput = {
|
|
|
2579
2574
|
/** Original email content */
|
|
2580
2575
|
emailContent: Scalars['String']['input'];
|
|
2581
2576
|
/** Original email subject (optional) */
|
|
2582
|
-
subject
|
|
2577
|
+
subject?: InputMaybe<Scalars['String']['input']>;
|
|
2578
|
+
};
|
|
2579
|
+
/** ReduceSpamResponse - Response for spam reduction */
|
|
2580
|
+
export type ReduceSpamResponse = {
|
|
2581
|
+
__typename?: 'ReduceSpamResponse';
|
|
2582
|
+
changesMade?: Maybe<Scalars['JSONString']['output']>;
|
|
2583
|
+
cleanedContent?: Maybe<Scalars['String']['output']>;
|
|
2584
|
+
cleanedSubject?: Maybe<Scalars['String']['output']>;
|
|
2585
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
2586
|
+
noChangesNeeded?: Maybe<Scalars['Boolean']['output']>;
|
|
2587
|
+
noOfChanges?: Maybe<Scalars['Int']['output']>;
|
|
2588
|
+
originalContent?: Maybe<Scalars['String']['output']>;
|
|
2589
|
+
originalSubject?: Maybe<Scalars['String']['output']>;
|
|
2590
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
2583
2591
|
};
|
|
2584
2592
|
/** RejectInvitation - Reject an invitation to join an account */
|
|
2585
2593
|
export type RejectInvitation = {
|
|
@@ -5432,11 +5440,18 @@ export type ReduceSpamMutation = {
|
|
|
5432
5440
|
__typename?: 'ReduceSpam';
|
|
5433
5441
|
success?: boolean | null;
|
|
5434
5442
|
message?: string | null;
|
|
5435
|
-
|
|
5436
|
-
|
|
5437
|
-
|
|
5438
|
-
|
|
5439
|
-
|
|
5443
|
+
reduceSpamResponse?: {
|
|
5444
|
+
__typename?: 'ReduceSpamResponse';
|
|
5445
|
+
success?: boolean | null;
|
|
5446
|
+
message?: string | null;
|
|
5447
|
+
originalSubject?: string | null;
|
|
5448
|
+
cleanedSubject?: string | null;
|
|
5449
|
+
originalContent?: string | null;
|
|
5450
|
+
cleanedContent?: string | null;
|
|
5451
|
+
changesMade?: any | null;
|
|
5452
|
+
noOfChanges?: number | null;
|
|
5453
|
+
noChangesNeeded?: boolean | null;
|
|
5454
|
+
} | null;
|
|
5440
5455
|
} | null;
|
|
5441
5456
|
};
|
|
5442
5457
|
export type RejectInvitationMutationVariables = Exact<{
|
|
@@ -3538,11 +3538,17 @@ exports.ReduceSpamDocument = (0, client_1.gql) `
|
|
|
3538
3538
|
reduceSpam(input: $input) {
|
|
3539
3539
|
success
|
|
3540
3540
|
message
|
|
3541
|
-
|
|
3542
|
-
|
|
3543
|
-
|
|
3544
|
-
|
|
3545
|
-
|
|
3541
|
+
reduceSpamResponse {
|
|
3542
|
+
success
|
|
3543
|
+
message
|
|
3544
|
+
originalSubject
|
|
3545
|
+
cleanedSubject
|
|
3546
|
+
originalContent
|
|
3547
|
+
cleanedContent
|
|
3548
|
+
changesMade
|
|
3549
|
+
noOfChanges
|
|
3550
|
+
noChangesNeeded
|
|
3551
|
+
}
|
|
3546
3552
|
}
|
|
3547
3553
|
}
|
|
3548
3554
|
`;
|
package/dist/mutations.js
CHANGED
|
@@ -2729,11 +2729,17 @@ mutation ReduceSpam($input: ReduceSpamInput!) {
|
|
|
2729
2729
|
reduceSpam(input: $input) {
|
|
2730
2730
|
success
|
|
2731
2731
|
message
|
|
2732
|
-
|
|
2733
|
-
|
|
2734
|
-
|
|
2735
|
-
|
|
2736
|
-
|
|
2732
|
+
reduceSpamResponse {
|
|
2733
|
+
success
|
|
2734
|
+
message
|
|
2735
|
+
originalSubject
|
|
2736
|
+
cleanedSubject
|
|
2737
|
+
originalContent
|
|
2738
|
+
cleanedContent
|
|
2739
|
+
changesMade
|
|
2740
|
+
noOfChanges
|
|
2741
|
+
noChangesNeeded
|
|
2742
|
+
}
|
|
2737
2743
|
}
|
|
2738
2744
|
}`;
|
|
2739
2745
|
exports.SAVE_NYLAS_CONNECTION = (0, client_1.gql) `
|