cf-service-sdk 0.0.78 → 0.0.80
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 +387 -0
- package/dist/generated/graphql.js +239 -4
- package/dist/mutations.d.ts +5 -0
- package/dist/mutations.js +75 -1
- package/dist/queries.d.ts +1 -0
- package/dist/queries.js +7 -1
- package/dist/sdk.d.ts +7 -1
- package/dist/sdk.js +36 -0
- package/package.json +1 -1
|
@@ -93,6 +93,34 @@ export type Scalars = {
|
|
|
93
93
|
output: any;
|
|
94
94
|
};
|
|
95
95
|
};
|
|
96
|
+
/** Response type for AI agent chat. */
|
|
97
|
+
export type AiAgentChatResponse = {
|
|
98
|
+
__typename?: 'AIAgentChatResponse';
|
|
99
|
+
conversationId?: Maybe<Scalars['String']['output']>;
|
|
100
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
101
|
+
requiresExecution?: Maybe<Scalars['Boolean']['output']>;
|
|
102
|
+
response?: Maybe<Scalars['String']['output']>;
|
|
103
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
104
|
+
toolCalls?: Maybe<Array<Maybe<ToolCallType>>>;
|
|
105
|
+
toolResults?: Maybe<Array<Maybe<ToolResultType>>>;
|
|
106
|
+
};
|
|
107
|
+
/** Response type for continuing after tool execution. */
|
|
108
|
+
export type AiAgentContinueResponse = {
|
|
109
|
+
__typename?: 'AIAgentContinueResponse';
|
|
110
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
111
|
+
requiresExecution?: Maybe<Scalars['Boolean']['output']>;
|
|
112
|
+
response?: Maybe<Scalars['String']['output']>;
|
|
113
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
114
|
+
toolCalls?: Maybe<Array<Maybe<ToolCallType>>>;
|
|
115
|
+
toolResults?: Maybe<Array<Maybe<ToolResultType>>>;
|
|
116
|
+
};
|
|
117
|
+
/** Response type for tool execution. */
|
|
118
|
+
export type AiAgentExecuteResponse = {
|
|
119
|
+
__typename?: 'AIAgentExecuteResponse';
|
|
120
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
121
|
+
results?: Maybe<Array<Maybe<ToolResultType>>>;
|
|
122
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
123
|
+
};
|
|
96
124
|
/** AcceptInvitation - Accept an invitation to join an account */
|
|
97
125
|
export type AcceptInvitation = {
|
|
98
126
|
__typename?: 'AcceptInvitation';
|
|
@@ -1788,6 +1816,12 @@ export type DeleteContact = {
|
|
|
1788
1816
|
__typename?: 'DeleteContact';
|
|
1789
1817
|
success?: Maybe<Scalars['Boolean']['output']>;
|
|
1790
1818
|
};
|
|
1819
|
+
/** Mutation for deleting a conversation. */
|
|
1820
|
+
export type DeleteConversation = {
|
|
1821
|
+
__typename?: 'DeleteConversation';
|
|
1822
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
1823
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
1824
|
+
};
|
|
1791
1825
|
/** DeleteEmailTemplate - Delete an email template (only if owned by user's account) */
|
|
1792
1826
|
export type DeleteEmailTemplate = {
|
|
1793
1827
|
__typename?: 'DeleteEmailTemplate';
|
|
@@ -1918,6 +1952,10 @@ export type EmployeeSizeData = {
|
|
|
1918
1952
|
/** Full employee size description */
|
|
1919
1953
|
name?: Maybe<Scalars['String']['output']>;
|
|
1920
1954
|
};
|
|
1955
|
+
export type ExternalIdentifierType = {
|
|
1956
|
+
__typename?: 'ExternalIdentifierType';
|
|
1957
|
+
externalIdentifier?: Maybe<Scalars['String']['output']>;
|
|
1958
|
+
};
|
|
1921
1959
|
/** FeedbackInput for submitting feedback */
|
|
1922
1960
|
export type FeedbackInput = {
|
|
1923
1961
|
companyId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2111,6 +2149,12 @@ export type Mutation = {
|
|
|
2111
2149
|
addContactsToSegment?: Maybe<AddContactsToSegment>;
|
|
2112
2150
|
addSegmentToCallCampaign?: Maybe<AddSegmentToCallCampaign>;
|
|
2113
2151
|
addSegmentToCampaign?: Maybe<AddSegmentToCampaign>;
|
|
2152
|
+
/** Mutation for chatting with the AI agent. */
|
|
2153
|
+
aiAgentChat?: Maybe<AiAgentChatResponse>;
|
|
2154
|
+
/** Mutation for continuing conversation after tool execution. */
|
|
2155
|
+
aiAgentContinue?: Maybe<AiAgentContinueResponse>;
|
|
2156
|
+
/** Mutation for executing tool calls. */
|
|
2157
|
+
aiAgentExecute?: Maybe<AiAgentExecuteResponse>;
|
|
2114
2158
|
bulkAssignCompanyOwners?: Maybe<BulkAssignCompanyOwnerMutation>;
|
|
2115
2159
|
cancelCampaign?: Maybe<CancelCampaign>;
|
|
2116
2160
|
/** Cancel a combined campaign */
|
|
@@ -2148,6 +2192,8 @@ export type Mutation = {
|
|
|
2148
2192
|
deleteCompany?: Maybe<DeleteCompany>;
|
|
2149
2193
|
deleteCompanyNote?: Maybe<DeleteCompanyNote>;
|
|
2150
2194
|
deleteContact?: Maybe<DeleteContact>;
|
|
2195
|
+
/** Mutation for deleting a conversation. */
|
|
2196
|
+
deleteConversation?: Maybe<DeleteConversation>;
|
|
2151
2197
|
/** DeleteEmailTemplate - Delete an email template (only if owned by user's account) */
|
|
2152
2198
|
deleteEmailTemplate?: Maybe<DeleteEmailTemplate>;
|
|
2153
2199
|
/** Delete a notification */
|
|
@@ -2234,6 +2280,7 @@ export type Mutation = {
|
|
|
2234
2280
|
/** Update an existing combined campaign template */
|
|
2235
2281
|
updateCombinedCampaignTemplate?: Maybe<UpdateCombinedCampaignTemplate>;
|
|
2236
2282
|
updateCompany?: Maybe<UpdateCompany>;
|
|
2283
|
+
updateCompanyExternalIdentifier?: Maybe<UpdateCompanyExternalIdentifier>;
|
|
2237
2284
|
updateCompanyNote?: Maybe<UpdateCompanyNote>;
|
|
2238
2285
|
updateContact?: Maybe<UpdateContact>;
|
|
2239
2286
|
/** UpdateEmailTemplate - Update an existing email template (only if owned by user's account) */
|
|
@@ -2278,6 +2325,22 @@ export type MutationAddSegmentToCampaignArgs = {
|
|
|
2278
2325
|
segmentId: Scalars['ID']['input'];
|
|
2279
2326
|
};
|
|
2280
2327
|
/** Mutations */
|
|
2328
|
+
export type MutationAiAgentChatArgs = {
|
|
2329
|
+
conversationId?: InputMaybe<Scalars['String']['input']>;
|
|
2330
|
+
enableTools?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2331
|
+
message: Scalars['String']['input'];
|
|
2332
|
+
};
|
|
2333
|
+
/** Mutations */
|
|
2334
|
+
export type MutationAiAgentContinueArgs = {
|
|
2335
|
+
conversationId: Scalars['String']['input'];
|
|
2336
|
+
toolResults: Array<InputMaybe<Scalars['JSONString']['input']>>;
|
|
2337
|
+
};
|
|
2338
|
+
/** Mutations */
|
|
2339
|
+
export type MutationAiAgentExecuteArgs = {
|
|
2340
|
+
conversationId: Scalars['String']['input'];
|
|
2341
|
+
toolCalls: Array<InputMaybe<Scalars['JSONString']['input']>>;
|
|
2342
|
+
};
|
|
2343
|
+
/** Mutations */
|
|
2281
2344
|
export type MutationBulkAssignCompanyOwnersArgs = {
|
|
2282
2345
|
input?: InputMaybe<BulkAssignOwnersInput>;
|
|
2283
2346
|
};
|
|
@@ -2379,6 +2442,10 @@ export type MutationDeleteContactArgs = {
|
|
|
2379
2442
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
2380
2443
|
};
|
|
2381
2444
|
/** Mutations */
|
|
2445
|
+
export type MutationDeleteConversationArgs = {
|
|
2446
|
+
conversationId: Scalars['String']['input'];
|
|
2447
|
+
};
|
|
2448
|
+
/** Mutations */
|
|
2382
2449
|
export type MutationDeleteEmailTemplateArgs = {
|
|
2383
2450
|
uuid: Scalars['UUID']['input'];
|
|
2384
2451
|
};
|
|
@@ -2607,6 +2674,10 @@ export type MutationUpdateCompanyArgs = {
|
|
|
2607
2674
|
input?: InputMaybe<CompanyInput>;
|
|
2608
2675
|
};
|
|
2609
2676
|
/** Mutations */
|
|
2677
|
+
export type MutationUpdateCompanyExternalIdentifierArgs = {
|
|
2678
|
+
input?: InputMaybe<UpdateCompanyExternalIdentifierInput>;
|
|
2679
|
+
};
|
|
2680
|
+
/** Mutations */
|
|
2610
2681
|
export type MutationUpdateCompanyNoteArgs = {
|
|
2611
2682
|
input: CompanyNoteInput;
|
|
2612
2683
|
};
|
|
@@ -2908,6 +2979,7 @@ export type Query = {
|
|
|
2908
2979
|
company?: Maybe<CompanyObject>;
|
|
2909
2980
|
/** Get audiences (user-generated segments) and all campaigns for a company */
|
|
2910
2981
|
companyAudiencesAndCampaigns?: Maybe<CompanyAudiencesAndCampaignsObject>;
|
|
2982
|
+
companyExternalIdentifier?: Maybe<ExternalIdentifierType>;
|
|
2911
2983
|
companyMetadata?: Maybe<Scalars['GenericScalar']['output']>;
|
|
2912
2984
|
companyNote?: Maybe<CompanyNoteObject>;
|
|
2913
2985
|
companyNotes?: Maybe<PaginatedCompanyNoteList>;
|
|
@@ -3067,6 +3139,10 @@ export type QueryCompanyAudiencesAndCampaignsArgs = {
|
|
|
3067
3139
|
companyId: Scalars['ID']['input'];
|
|
3068
3140
|
};
|
|
3069
3141
|
/** Query */
|
|
3142
|
+
export type QueryCompanyExternalIdentifierArgs = {
|
|
3143
|
+
companyId: Scalars['ID']['input'];
|
|
3144
|
+
};
|
|
3145
|
+
/** Query */
|
|
3070
3146
|
export type QueryCompanyMetadataArgs = {
|
|
3071
3147
|
companyId: Scalars['ID']['input'];
|
|
3072
3148
|
};
|
|
@@ -3593,6 +3669,23 @@ export type TasksResponse = {
|
|
|
3593
3669
|
pagination?: Maybe<PaginationInfo>;
|
|
3594
3670
|
stats?: Maybe<TaskStatsObject>;
|
|
3595
3671
|
};
|
|
3672
|
+
/** Type for tool calls. */
|
|
3673
|
+
export type ToolCallType = {
|
|
3674
|
+
__typename?: 'ToolCallType';
|
|
3675
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
3676
|
+
input?: Maybe<Scalars['JSONString']['output']>;
|
|
3677
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
3678
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
3679
|
+
};
|
|
3680
|
+
/** Type for tool execution results. */
|
|
3681
|
+
export type ToolResultType = {
|
|
3682
|
+
__typename?: 'ToolResultType';
|
|
3683
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
3684
|
+
result?: Maybe<Scalars['JSONString']['output']>;
|
|
3685
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
3686
|
+
toolUseId?: Maybe<Scalars['String']['output']>;
|
|
3687
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
3688
|
+
};
|
|
3596
3689
|
export type UsStateData = {
|
|
3597
3690
|
__typename?: 'USStateData';
|
|
3598
3691
|
/** State abbreviation */
|
|
@@ -3695,6 +3788,19 @@ export type UpdateCompany = {
|
|
|
3695
3788
|
__typename?: 'UpdateCompany';
|
|
3696
3789
|
company?: Maybe<CompanyObject>;
|
|
3697
3790
|
};
|
|
3791
|
+
export type UpdateCompanyExternalIdentifier = {
|
|
3792
|
+
__typename?: 'UpdateCompanyExternalIdentifier';
|
|
3793
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
3794
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
3795
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
3796
|
+
};
|
|
3797
|
+
/** Input type for creating a company external identifier */
|
|
3798
|
+
export type UpdateCompanyExternalIdentifierInput = {
|
|
3799
|
+
/** ID of the company to create an external identifier for */
|
|
3800
|
+
companyId: Scalars['ID']['input'];
|
|
3801
|
+
/** External identifier to create */
|
|
3802
|
+
externalIdentifier: Scalars['String']['input'];
|
|
3803
|
+
};
|
|
3698
3804
|
export type UpdateCompanyNote = {
|
|
3699
3805
|
__typename?: 'UpdateCompanyNote';
|
|
3700
3806
|
companyNote?: Maybe<CompanyNoteObject>;
|
|
@@ -4134,6 +4240,86 @@ export type AddSegmentToCampaignMutation = {
|
|
|
4134
4240
|
} | null;
|
|
4135
4241
|
} | null;
|
|
4136
4242
|
};
|
|
4243
|
+
export type AiAgentChatMutationVariables = Exact<{
|
|
4244
|
+
conversationId?: InputMaybe<Scalars['String']['input']>;
|
|
4245
|
+
enableTools?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4246
|
+
message: Scalars['String']['input'];
|
|
4247
|
+
}>;
|
|
4248
|
+
export type AiAgentChatMutation = {
|
|
4249
|
+
__typename?: 'Mutation';
|
|
4250
|
+
aiAgentChat?: {
|
|
4251
|
+
__typename?: 'AIAgentChatResponse';
|
|
4252
|
+
success?: boolean | null;
|
|
4253
|
+
conversationId?: string | null;
|
|
4254
|
+
response?: string | null;
|
|
4255
|
+
requiresExecution?: boolean | null;
|
|
4256
|
+
error?: string | null;
|
|
4257
|
+
toolCalls?: Array<{
|
|
4258
|
+
__typename?: 'ToolCallType';
|
|
4259
|
+
type?: string | null;
|
|
4260
|
+
id?: string | null;
|
|
4261
|
+
name?: string | null;
|
|
4262
|
+
input?: any | null;
|
|
4263
|
+
} | null> | null;
|
|
4264
|
+
toolResults?: Array<{
|
|
4265
|
+
__typename?: 'ToolResultType';
|
|
4266
|
+
toolUseId?: string | null;
|
|
4267
|
+
type?: string | null;
|
|
4268
|
+
success?: boolean | null;
|
|
4269
|
+
result?: any | null;
|
|
4270
|
+
error?: string | null;
|
|
4271
|
+
} | null> | null;
|
|
4272
|
+
} | null;
|
|
4273
|
+
};
|
|
4274
|
+
export type AiAgentContinueMutationVariables = Exact<{
|
|
4275
|
+
conversationId: Scalars['String']['input'];
|
|
4276
|
+
toolResults: Array<InputMaybe<Scalars['JSONString']['input']>> | InputMaybe<Scalars['JSONString']['input']>;
|
|
4277
|
+
}>;
|
|
4278
|
+
export type AiAgentContinueMutation = {
|
|
4279
|
+
__typename?: 'Mutation';
|
|
4280
|
+
aiAgentContinue?: {
|
|
4281
|
+
__typename?: 'AIAgentContinueResponse';
|
|
4282
|
+
success?: boolean | null;
|
|
4283
|
+
response?: string | null;
|
|
4284
|
+
requiresExecution?: boolean | null;
|
|
4285
|
+
error?: string | null;
|
|
4286
|
+
toolCalls?: Array<{
|
|
4287
|
+
__typename?: 'ToolCallType';
|
|
4288
|
+
type?: string | null;
|
|
4289
|
+
id?: string | null;
|
|
4290
|
+
name?: string | null;
|
|
4291
|
+
input?: any | null;
|
|
4292
|
+
} | null> | null;
|
|
4293
|
+
toolResults?: Array<{
|
|
4294
|
+
__typename?: 'ToolResultType';
|
|
4295
|
+
toolUseId?: string | null;
|
|
4296
|
+
type?: string | null;
|
|
4297
|
+
success?: boolean | null;
|
|
4298
|
+
result?: any | null;
|
|
4299
|
+
error?: string | null;
|
|
4300
|
+
} | null> | null;
|
|
4301
|
+
} | null;
|
|
4302
|
+
};
|
|
4303
|
+
export type AiAgentExecuteMutationVariables = Exact<{
|
|
4304
|
+
conversationId: Scalars['String']['input'];
|
|
4305
|
+
toolCalls: Array<InputMaybe<Scalars['JSONString']['input']>> | InputMaybe<Scalars['JSONString']['input']>;
|
|
4306
|
+
}>;
|
|
4307
|
+
export type AiAgentExecuteMutation = {
|
|
4308
|
+
__typename?: 'Mutation';
|
|
4309
|
+
aiAgentExecute?: {
|
|
4310
|
+
__typename?: 'AIAgentExecuteResponse';
|
|
4311
|
+
success?: boolean | null;
|
|
4312
|
+
error?: string | null;
|
|
4313
|
+
results?: Array<{
|
|
4314
|
+
__typename?: 'ToolResultType';
|
|
4315
|
+
toolUseId?: string | null;
|
|
4316
|
+
type?: string | null;
|
|
4317
|
+
success?: boolean | null;
|
|
4318
|
+
result?: any | null;
|
|
4319
|
+
error?: string | null;
|
|
4320
|
+
} | null> | null;
|
|
4321
|
+
} | null;
|
|
4322
|
+
};
|
|
4137
4323
|
export type BulkAssignCompanyOwnersMutationVariables = Exact<{
|
|
4138
4324
|
input?: InputMaybe<BulkAssignOwnersInput>;
|
|
4139
4325
|
}>;
|
|
@@ -10695,6 +10881,17 @@ export type DeleteContactMutation = {
|
|
|
10695
10881
|
success?: boolean | null;
|
|
10696
10882
|
} | null;
|
|
10697
10883
|
};
|
|
10884
|
+
export type DeleteConversationMutationVariables = Exact<{
|
|
10885
|
+
conversationId: Scalars['String']['input'];
|
|
10886
|
+
}>;
|
|
10887
|
+
export type DeleteConversationMutation = {
|
|
10888
|
+
__typename?: 'Mutation';
|
|
10889
|
+
deleteConversation?: {
|
|
10890
|
+
__typename?: 'DeleteConversation';
|
|
10891
|
+
success?: boolean | null;
|
|
10892
|
+
message?: string | null;
|
|
10893
|
+
} | null;
|
|
10894
|
+
};
|
|
10698
10895
|
export type DeleteEmailTemplateMutationVariables = Exact<{
|
|
10699
10896
|
uuid: Scalars['UUID']['input'];
|
|
10700
10897
|
}>;
|
|
@@ -18472,6 +18669,18 @@ export type UpdateCompanyMutation = {
|
|
|
18472
18669
|
} | null;
|
|
18473
18670
|
} | null;
|
|
18474
18671
|
};
|
|
18672
|
+
export type UpdateCompanyExternalIdentifierMutationVariables = Exact<{
|
|
18673
|
+
input?: InputMaybe<UpdateCompanyExternalIdentifierInput>;
|
|
18674
|
+
}>;
|
|
18675
|
+
export type UpdateCompanyExternalIdentifierMutation = {
|
|
18676
|
+
__typename?: 'Mutation';
|
|
18677
|
+
updateCompanyExternalIdentifier?: {
|
|
18678
|
+
__typename?: 'UpdateCompanyExternalIdentifier';
|
|
18679
|
+
success?: boolean | null;
|
|
18680
|
+
message?: string | null;
|
|
18681
|
+
error?: string | null;
|
|
18682
|
+
} | null;
|
|
18683
|
+
};
|
|
18475
18684
|
export type UpdateCompanyNoteMutationVariables = Exact<{
|
|
18476
18685
|
input: CompanyNoteInput;
|
|
18477
18686
|
}>;
|
|
@@ -29721,6 +29930,16 @@ export type CompanyAudiencesAndCampaignsQuery = {
|
|
|
29721
29930
|
} | null> | null;
|
|
29722
29931
|
} | null;
|
|
29723
29932
|
};
|
|
29933
|
+
export type CompanyExternalIdentifierQueryVariables = Exact<{
|
|
29934
|
+
companyId: Scalars['ID']['input'];
|
|
29935
|
+
}>;
|
|
29936
|
+
export type CompanyExternalIdentifierQuery = {
|
|
29937
|
+
__typename?: 'Query';
|
|
29938
|
+
companyExternalIdentifier?: {
|
|
29939
|
+
__typename?: 'ExternalIdentifierType';
|
|
29940
|
+
externalIdentifier?: string | null;
|
|
29941
|
+
} | null;
|
|
29942
|
+
};
|
|
29724
29943
|
export type CompanyMetadataQueryVariables = Exact<{
|
|
29725
29944
|
companyId: Scalars['ID']['input'];
|
|
29726
29945
|
}>;
|
|
@@ -36645,6 +36864,89 @@ export declare function useAddSegmentToCampaignMutation(baseOptions?: Apollo.Mut
|
|
|
36645
36864
|
export type AddSegmentToCampaignMutationHookResult = ReturnType<typeof useAddSegmentToCampaignMutation>;
|
|
36646
36865
|
export type AddSegmentToCampaignMutationResult = Apollo.MutationResult<AddSegmentToCampaignMutation>;
|
|
36647
36866
|
export type AddSegmentToCampaignMutationOptions = Apollo.BaseMutationOptions<AddSegmentToCampaignMutation, AddSegmentToCampaignMutationVariables>;
|
|
36867
|
+
export declare const AiAgentChatDocument: Apollo.DocumentNode;
|
|
36868
|
+
export type AiAgentChatMutationFn = Apollo.MutationFunction<AiAgentChatMutation, AiAgentChatMutationVariables>;
|
|
36869
|
+
/**
|
|
36870
|
+
* __useAiAgentChatMutation__
|
|
36871
|
+
*
|
|
36872
|
+
* To run a mutation, you first call `useAiAgentChatMutation` within a React component and pass it any options that fit your needs.
|
|
36873
|
+
* When your component renders, `useAiAgentChatMutation` returns a tuple that includes:
|
|
36874
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
36875
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
36876
|
+
*
|
|
36877
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
36878
|
+
*
|
|
36879
|
+
* @example
|
|
36880
|
+
* const [aiAgentChatMutation, { data, loading, error }] = useAiAgentChatMutation({
|
|
36881
|
+
* variables: {
|
|
36882
|
+
* conversationId: // value for 'conversationId'
|
|
36883
|
+
* enableTools: // value for 'enableTools'
|
|
36884
|
+
* message: // value for 'message'
|
|
36885
|
+
* },
|
|
36886
|
+
* });
|
|
36887
|
+
*/
|
|
36888
|
+
export declare function useAiAgentChatMutation(baseOptions?: Apollo.MutationHookOptions<AiAgentChatMutation, AiAgentChatMutationVariables>): Apollo.MutationTuple<AiAgentChatMutation, Exact<{
|
|
36889
|
+
conversationId?: InputMaybe<Scalars["String"]["input"]>;
|
|
36890
|
+
enableTools?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
36891
|
+
message: Scalars["String"]["input"];
|
|
36892
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
36893
|
+
export type AiAgentChatMutationHookResult = ReturnType<typeof useAiAgentChatMutation>;
|
|
36894
|
+
export type AiAgentChatMutationResult = Apollo.MutationResult<AiAgentChatMutation>;
|
|
36895
|
+
export type AiAgentChatMutationOptions = Apollo.BaseMutationOptions<AiAgentChatMutation, AiAgentChatMutationVariables>;
|
|
36896
|
+
export declare const AiAgentContinueDocument: Apollo.DocumentNode;
|
|
36897
|
+
export type AiAgentContinueMutationFn = Apollo.MutationFunction<AiAgentContinueMutation, AiAgentContinueMutationVariables>;
|
|
36898
|
+
/**
|
|
36899
|
+
* __useAiAgentContinueMutation__
|
|
36900
|
+
*
|
|
36901
|
+
* To run a mutation, you first call `useAiAgentContinueMutation` within a React component and pass it any options that fit your needs.
|
|
36902
|
+
* When your component renders, `useAiAgentContinueMutation` returns a tuple that includes:
|
|
36903
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
36904
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
36905
|
+
*
|
|
36906
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
36907
|
+
*
|
|
36908
|
+
* @example
|
|
36909
|
+
* const [aiAgentContinueMutation, { data, loading, error }] = useAiAgentContinueMutation({
|
|
36910
|
+
* variables: {
|
|
36911
|
+
* conversationId: // value for 'conversationId'
|
|
36912
|
+
* toolResults: // value for 'toolResults'
|
|
36913
|
+
* },
|
|
36914
|
+
* });
|
|
36915
|
+
*/
|
|
36916
|
+
export declare function useAiAgentContinueMutation(baseOptions?: Apollo.MutationHookOptions<AiAgentContinueMutation, AiAgentContinueMutationVariables>): Apollo.MutationTuple<AiAgentContinueMutation, Exact<{
|
|
36917
|
+
conversationId: Scalars["String"]["input"];
|
|
36918
|
+
toolResults: Array<InputMaybe<Scalars["JSONString"]["input"]>> | InputMaybe<Scalars["JSONString"]["input"]>;
|
|
36919
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
36920
|
+
export type AiAgentContinueMutationHookResult = ReturnType<typeof useAiAgentContinueMutation>;
|
|
36921
|
+
export type AiAgentContinueMutationResult = Apollo.MutationResult<AiAgentContinueMutation>;
|
|
36922
|
+
export type AiAgentContinueMutationOptions = Apollo.BaseMutationOptions<AiAgentContinueMutation, AiAgentContinueMutationVariables>;
|
|
36923
|
+
export declare const AiAgentExecuteDocument: Apollo.DocumentNode;
|
|
36924
|
+
export type AiAgentExecuteMutationFn = Apollo.MutationFunction<AiAgentExecuteMutation, AiAgentExecuteMutationVariables>;
|
|
36925
|
+
/**
|
|
36926
|
+
* __useAiAgentExecuteMutation__
|
|
36927
|
+
*
|
|
36928
|
+
* To run a mutation, you first call `useAiAgentExecuteMutation` within a React component and pass it any options that fit your needs.
|
|
36929
|
+
* When your component renders, `useAiAgentExecuteMutation` returns a tuple that includes:
|
|
36930
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
36931
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
36932
|
+
*
|
|
36933
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
36934
|
+
*
|
|
36935
|
+
* @example
|
|
36936
|
+
* const [aiAgentExecuteMutation, { data, loading, error }] = useAiAgentExecuteMutation({
|
|
36937
|
+
* variables: {
|
|
36938
|
+
* conversationId: // value for 'conversationId'
|
|
36939
|
+
* toolCalls: // value for 'toolCalls'
|
|
36940
|
+
* },
|
|
36941
|
+
* });
|
|
36942
|
+
*/
|
|
36943
|
+
export declare function useAiAgentExecuteMutation(baseOptions?: Apollo.MutationHookOptions<AiAgentExecuteMutation, AiAgentExecuteMutationVariables>): Apollo.MutationTuple<AiAgentExecuteMutation, Exact<{
|
|
36944
|
+
conversationId: Scalars["String"]["input"];
|
|
36945
|
+
toolCalls: Array<InputMaybe<Scalars["JSONString"]["input"]>> | InputMaybe<Scalars["JSONString"]["input"]>;
|
|
36946
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
36947
|
+
export type AiAgentExecuteMutationHookResult = ReturnType<typeof useAiAgentExecuteMutation>;
|
|
36948
|
+
export type AiAgentExecuteMutationResult = Apollo.MutationResult<AiAgentExecuteMutation>;
|
|
36949
|
+
export type AiAgentExecuteMutationOptions = Apollo.BaseMutationOptions<AiAgentExecuteMutation, AiAgentExecuteMutationVariables>;
|
|
36648
36950
|
export declare const BulkAssignCompanyOwnersDocument: Apollo.DocumentNode;
|
|
36649
36951
|
export type BulkAssignCompanyOwnersMutationFn = Apollo.MutationFunction<BulkAssignCompanyOwnersMutation, BulkAssignCompanyOwnersMutationVariables>;
|
|
36650
36952
|
/**
|
|
@@ -37296,6 +37598,31 @@ export declare function useDeleteContactMutation(baseOptions?: Apollo.MutationHo
|
|
|
37296
37598
|
export type DeleteContactMutationHookResult = ReturnType<typeof useDeleteContactMutation>;
|
|
37297
37599
|
export type DeleteContactMutationResult = Apollo.MutationResult<DeleteContactMutation>;
|
|
37298
37600
|
export type DeleteContactMutationOptions = Apollo.BaseMutationOptions<DeleteContactMutation, DeleteContactMutationVariables>;
|
|
37601
|
+
export declare const DeleteConversationDocument: Apollo.DocumentNode;
|
|
37602
|
+
export type DeleteConversationMutationFn = Apollo.MutationFunction<DeleteConversationMutation, DeleteConversationMutationVariables>;
|
|
37603
|
+
/**
|
|
37604
|
+
* __useDeleteConversationMutation__
|
|
37605
|
+
*
|
|
37606
|
+
* To run a mutation, you first call `useDeleteConversationMutation` within a React component and pass it any options that fit your needs.
|
|
37607
|
+
* When your component renders, `useDeleteConversationMutation` returns a tuple that includes:
|
|
37608
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
37609
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
37610
|
+
*
|
|
37611
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
37612
|
+
*
|
|
37613
|
+
* @example
|
|
37614
|
+
* const [deleteConversationMutation, { data, loading, error }] = useDeleteConversationMutation({
|
|
37615
|
+
* variables: {
|
|
37616
|
+
* conversationId: // value for 'conversationId'
|
|
37617
|
+
* },
|
|
37618
|
+
* });
|
|
37619
|
+
*/
|
|
37620
|
+
export declare function useDeleteConversationMutation(baseOptions?: Apollo.MutationHookOptions<DeleteConversationMutation, DeleteConversationMutationVariables>): Apollo.MutationTuple<DeleteConversationMutation, Exact<{
|
|
37621
|
+
conversationId: Scalars["String"]["input"];
|
|
37622
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
37623
|
+
export type DeleteConversationMutationHookResult = ReturnType<typeof useDeleteConversationMutation>;
|
|
37624
|
+
export type DeleteConversationMutationResult = Apollo.MutationResult<DeleteConversationMutation>;
|
|
37625
|
+
export type DeleteConversationMutationOptions = Apollo.BaseMutationOptions<DeleteConversationMutation, DeleteConversationMutationVariables>;
|
|
37299
37626
|
export declare const DeleteEmailTemplateDocument: Apollo.DocumentNode;
|
|
37300
37627
|
export type DeleteEmailTemplateMutationFn = Apollo.MutationFunction<DeleteEmailTemplateMutation, DeleteEmailTemplateMutationVariables>;
|
|
37301
37628
|
/**
|
|
@@ -38599,6 +38926,31 @@ export declare function useUpdateCompanyMutation(baseOptions?: Apollo.MutationHo
|
|
|
38599
38926
|
export type UpdateCompanyMutationHookResult = ReturnType<typeof useUpdateCompanyMutation>;
|
|
38600
38927
|
export type UpdateCompanyMutationResult = Apollo.MutationResult<UpdateCompanyMutation>;
|
|
38601
38928
|
export type UpdateCompanyMutationOptions = Apollo.BaseMutationOptions<UpdateCompanyMutation, UpdateCompanyMutationVariables>;
|
|
38929
|
+
export declare const UpdateCompanyExternalIdentifierDocument: Apollo.DocumentNode;
|
|
38930
|
+
export type UpdateCompanyExternalIdentifierMutationFn = Apollo.MutationFunction<UpdateCompanyExternalIdentifierMutation, UpdateCompanyExternalIdentifierMutationVariables>;
|
|
38931
|
+
/**
|
|
38932
|
+
* __useUpdateCompanyExternalIdentifierMutation__
|
|
38933
|
+
*
|
|
38934
|
+
* To run a mutation, you first call `useUpdateCompanyExternalIdentifierMutation` within a React component and pass it any options that fit your needs.
|
|
38935
|
+
* When your component renders, `useUpdateCompanyExternalIdentifierMutation` returns a tuple that includes:
|
|
38936
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
38937
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
38938
|
+
*
|
|
38939
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
38940
|
+
*
|
|
38941
|
+
* @example
|
|
38942
|
+
* const [updateCompanyExternalIdentifierMutation, { data, loading, error }] = useUpdateCompanyExternalIdentifierMutation({
|
|
38943
|
+
* variables: {
|
|
38944
|
+
* input: // value for 'input'
|
|
38945
|
+
* },
|
|
38946
|
+
* });
|
|
38947
|
+
*/
|
|
38948
|
+
export declare function useUpdateCompanyExternalIdentifierMutation(baseOptions?: Apollo.MutationHookOptions<UpdateCompanyExternalIdentifierMutation, UpdateCompanyExternalIdentifierMutationVariables>): Apollo.MutationTuple<UpdateCompanyExternalIdentifierMutation, Exact<{
|
|
38949
|
+
input?: InputMaybe<UpdateCompanyExternalIdentifierInput>;
|
|
38950
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
38951
|
+
export type UpdateCompanyExternalIdentifierMutationHookResult = ReturnType<typeof useUpdateCompanyExternalIdentifierMutation>;
|
|
38952
|
+
export type UpdateCompanyExternalIdentifierMutationResult = Apollo.MutationResult<UpdateCompanyExternalIdentifierMutation>;
|
|
38953
|
+
export type UpdateCompanyExternalIdentifierMutationOptions = Apollo.BaseMutationOptions<UpdateCompanyExternalIdentifierMutation, UpdateCompanyExternalIdentifierMutationVariables>;
|
|
38602
38954
|
export declare const UpdateCompanyNoteDocument: Apollo.DocumentNode;
|
|
38603
38955
|
export type UpdateCompanyNoteMutationFn = Apollo.MutationFunction<UpdateCompanyNoteMutation, UpdateCompanyNoteMutationVariables>;
|
|
38604
38956
|
/**
|
|
@@ -39716,6 +40068,41 @@ export type CompanyAudiencesAndCampaignsQueryHookResult = ReturnType<typeof useC
|
|
|
39716
40068
|
export type CompanyAudiencesAndCampaignsLazyQueryHookResult = ReturnType<typeof useCompanyAudiencesAndCampaignsLazyQuery>;
|
|
39717
40069
|
export type CompanyAudiencesAndCampaignsSuspenseQueryHookResult = ReturnType<typeof useCompanyAudiencesAndCampaignsSuspenseQuery>;
|
|
39718
40070
|
export type CompanyAudiencesAndCampaignsQueryResult = Apollo.QueryResult<CompanyAudiencesAndCampaignsQuery, CompanyAudiencesAndCampaignsQueryVariables>;
|
|
40071
|
+
export declare const CompanyExternalIdentifierDocument: Apollo.DocumentNode;
|
|
40072
|
+
/**
|
|
40073
|
+
* __useCompanyExternalIdentifierQuery__
|
|
40074
|
+
*
|
|
40075
|
+
* To run a query within a React component, call `useCompanyExternalIdentifierQuery` and pass it any options that fit your needs.
|
|
40076
|
+
* When your component renders, `useCompanyExternalIdentifierQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
40077
|
+
* you can use to render your UI.
|
|
40078
|
+
*
|
|
40079
|
+
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
40080
|
+
*
|
|
40081
|
+
* @example
|
|
40082
|
+
* const { data, loading, error } = useCompanyExternalIdentifierQuery({
|
|
40083
|
+
* variables: {
|
|
40084
|
+
* companyId: // value for 'companyId'
|
|
40085
|
+
* },
|
|
40086
|
+
* });
|
|
40087
|
+
*/
|
|
40088
|
+
export declare function useCompanyExternalIdentifierQuery(baseOptions: Apollo.QueryHookOptions<CompanyExternalIdentifierQuery, CompanyExternalIdentifierQueryVariables> & ({
|
|
40089
|
+
variables: CompanyExternalIdentifierQueryVariables;
|
|
40090
|
+
skip?: boolean;
|
|
40091
|
+
} | {
|
|
40092
|
+
skip: boolean;
|
|
40093
|
+
})): Apollo.QueryResult<CompanyExternalIdentifierQuery, Exact<{
|
|
40094
|
+
companyId: Scalars["ID"]["input"];
|
|
40095
|
+
}>>;
|
|
40096
|
+
export declare function useCompanyExternalIdentifierLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<CompanyExternalIdentifierQuery, CompanyExternalIdentifierQueryVariables>): Apollo.LazyQueryResultTuple<CompanyExternalIdentifierQuery, Exact<{
|
|
40097
|
+
companyId: Scalars["ID"]["input"];
|
|
40098
|
+
}>>;
|
|
40099
|
+
export declare function useCompanyExternalIdentifierSuspenseQuery(baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<CompanyExternalIdentifierQuery, CompanyExternalIdentifierQueryVariables>): Apollo.UseSuspenseQueryResult<CompanyExternalIdentifierQuery | undefined, Exact<{
|
|
40100
|
+
companyId: Scalars["ID"]["input"];
|
|
40101
|
+
}>>;
|
|
40102
|
+
export type CompanyExternalIdentifierQueryHookResult = ReturnType<typeof useCompanyExternalIdentifierQuery>;
|
|
40103
|
+
export type CompanyExternalIdentifierLazyQueryHookResult = ReturnType<typeof useCompanyExternalIdentifierLazyQuery>;
|
|
40104
|
+
export type CompanyExternalIdentifierSuspenseQueryHookResult = ReturnType<typeof useCompanyExternalIdentifierSuspenseQuery>;
|
|
40105
|
+
export type CompanyExternalIdentifierQueryResult = Apollo.QueryResult<CompanyExternalIdentifierQuery, CompanyExternalIdentifierQueryVariables>;
|
|
39719
40106
|
export declare const CompanyMetadataDocument: Apollo.DocumentNode;
|
|
39720
40107
|
/**
|
|
39721
40108
|
* __useCompanyMetadataQuery__
|
|
@@ -33,16 +33,19 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
33
33
|
};
|
|
34
34
|
})();
|
|
35
35
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
-
exports.
|
|
37
|
-
exports.
|
|
38
|
-
exports.
|
|
39
|
-
exports.UserProfileDocument = exports.UsStatesDocument = exports.UnreadNotificationsCountDocument = exports.TasksDocument = exports.TaskDocument = exports.SegmentsDocument = void 0;
|
|
36
|
+
exports.DeleteTaskDocument = exports.DeleteSegmentDocument = exports.DeleteNotificationDocument = exports.DeleteEmailTemplateDocument = exports.DeleteConversationDocument = exports.DeleteContactDocument = exports.DeleteCompanyNoteDocument = exports.DeleteCompanyDocument = exports.DeleteCombinedCampaignTemplateDocument = exports.DeleteCombinedCampaignDocument = exports.DeleteCampaignDocument = exports.DeleteCallCampaignDocument = exports.CreateTaskDocument = exports.CreateSegmentDocument = exports.CreateNotificationDocument = exports.CreateEmailTemplateDocument = exports.CreateContactDocument = exports.CreateCompanyNoteDocument = exports.CreateCompanyDocument = exports.CreateCombinedCampaignTemplateDocument = exports.CreateCombinedCampaignDocument = exports.CreateCampaignDocument = exports.CreateCallCampaignLogDocument = exports.CreateCallCampaignDocument = exports.CompleteCampaignDocument = exports.ClearAllNotificationsDocument = exports.ChangePasswordDocument = exports.CancelInvitationDocument = exports.CancelCombinedCampaignDocument = exports.CancelCampaignDocument = exports.BulkAssignCompanyOwnersDocument = exports.AiAgentExecuteDocument = exports.AiAgentContinueDocument = exports.AiAgentChatDocument = exports.AddSegmentToCampaignDocument = exports.AddSegmentToCallCampaignDocument = exports.AddContactsToSegmentDocument = exports.AddContactsToCombinedCampaignDocument = exports.AddContactsToCampaignDocument = exports.AcceptInvitationDocument = exports.SortDirection = exports.RecentHistorySortField = exports.NotificationTypeEnum = exports.ContactSortField = exports.CompanySortField = exports.CompanyNoteSortField = exports.CallCampaignLogOutcomeEnum = exports.AppEmailTemplateCampaignTypeChoices = exports.AppBusinessProfileStateChoices = exports.AppAccountInvitationStatusChoices = void 0;
|
|
37
|
+
exports.UpdateSegmentDocument = exports.UpdateEmailTemplateDocument = exports.UpdateContactDocument = exports.UpdateCompanyNoteDocument = exports.UpdateCompanyExternalIdentifierDocument = exports.UpdateCompanyDocument = exports.UpdateCombinedCampaignTemplateDocument = exports.UpdateCombinedCampaignLogsDocument = exports.UpdateCombinedCampaignLogDocument = exports.UpdateCombinedCampaignDocument = exports.UpdateCampaignDocument = exports.UpdateCallCampaignLogDocument = exports.UpdateCallCampaignDocument = exports.UnsubscribeFromEmailsDocument = exports.UnhideRecordDocument = exports.SubmitFeedbackDocument = exports.StartCombinedCampaignDocument = exports.StartCampaignDocument = exports.SignupDocument = exports.SetLeadNotInterestedDocument = exports.SendTestEmailCombinedDocument = exports.SendTestEmailDocument = exports.SendManualEmailDocument = exports.SendEmailToContactDocument = exports.ScheduleCombinedCampaignDocument = exports.ScheduleCampaignDocument = exports.SaveNylasConnectionDocument = exports.ResumeCombinedCampaignDocument = exports.RemoveSegmentFromCampaignDocument = exports.RemoveSegmentFromCallCampaignDocument = exports.RemoveMemberDocument = exports.RemoveContactsFromSegmentDocument = exports.RemoveContactsFromCombinedCampaignDocument = exports.RemoveContactsFromCampaignDocument = exports.RejectInvitationDocument = exports.ReduceSpamDocument = exports.PreviewCampaignEmailDocument = exports.PauseCombinedCampaignDocument = exports.PauseCampaignDocument = exports.MarkNotificationAsReadDocument = exports.MarkAllNotificationsAsReadDocument = exports.LoginWithMicrosoftDocument = exports.LoginWithGoogleDocument = exports.LoginDocument = exports.InviteUserDocument = exports.HideRecordDocument = exports.GenerateNewEmailDocument = exports.ForgotPasswordDocument = exports.EmailToneDocument = exports.DisconnectNylasIntegrationDocument = void 0;
|
|
38
|
+
exports.PendingInvitationsDocument = exports.NylasConnectionDocument = exports.NotificationsDocument = exports.NotificationDocument = exports.MyInvitationsDocument = exports.MetalTypesDocument = exports.MetalGradesDocument = exports.IndustryTypesDocument = exports.IndustrySectorsDocument = exports.EmployeeSizesDocument = exports.EmailTemplatesDocument = exports.EmailTemplateDocument = exports.DashboardStatsDocument = exports.CurrentAccountDocument = exports.ContactsInSegmentDocument = exports.ContactsDocument = exports.ContactDocument = exports.CompanySearchDocument = exports.CompanyNotesDocument = exports.CompanyNoteDocument = exports.CompanyMetadataDocument = exports.CompanyExternalIdentifierDocument = exports.CompanyAudiencesAndCampaignsDocument = exports.CompanyDocument = exports.CompaniesDocument = exports.CombinedCampaignsDocument = exports.CombinedCampaignTemplatesDocument = exports.CombinedCampaignTemplateDocument = exports.CombinedCampaignStepsDocument = exports.CombinedCampaignLogsDocument = exports.CombinedCampaignContactsDocument = exports.CombinedCampaignDocument = exports.CampaignsDocument = exports.CampaignStatsDocument = exports.CampaignLogsDocument = exports.CampaignContactsDocument = exports.CampaignAnalyticsDocument = exports.CampaignDocument = exports.CallCampaignsDocument = exports.CallCampaignReportDocument = exports.CallCampaignLogsDocument = exports.CallCampaignLogDocument = exports.CallCampaignAnalyticsDocument = exports.CallCampaignDocument = exports.BusinessProfileDocument = exports.AccountMembersDocument = exports.ValidateOtpAndResetPasswordDocument = exports.UploadFileDocument = exports.UpdateUserProfileDocument = exports.UpdateTaskDocument = void 0;
|
|
39
|
+
exports.UserProfileDocument = exports.UsStatesDocument = exports.UnreadNotificationsCountDocument = exports.TasksDocument = exports.TaskDocument = exports.SegmentsDocument = exports.SegmentDocument = exports.SearchContactsDocument = exports.RecentNotificationsDocument = exports.RecentHistoryDocument = exports.ProductTypesDocument = exports.ProductCategoriesDocument = void 0;
|
|
40
40
|
exports.useAcceptInvitationMutation = useAcceptInvitationMutation;
|
|
41
41
|
exports.useAddContactsToCampaignMutation = useAddContactsToCampaignMutation;
|
|
42
42
|
exports.useAddContactsToCombinedCampaignMutation = useAddContactsToCombinedCampaignMutation;
|
|
43
43
|
exports.useAddContactsToSegmentMutation = useAddContactsToSegmentMutation;
|
|
44
44
|
exports.useAddSegmentToCallCampaignMutation = useAddSegmentToCallCampaignMutation;
|
|
45
45
|
exports.useAddSegmentToCampaignMutation = useAddSegmentToCampaignMutation;
|
|
46
|
+
exports.useAiAgentChatMutation = useAiAgentChatMutation;
|
|
47
|
+
exports.useAiAgentContinueMutation = useAiAgentContinueMutation;
|
|
48
|
+
exports.useAiAgentExecuteMutation = useAiAgentExecuteMutation;
|
|
46
49
|
exports.useBulkAssignCompanyOwnersMutation = useBulkAssignCompanyOwnersMutation;
|
|
47
50
|
exports.useCancelCampaignMutation = useCancelCampaignMutation;
|
|
48
51
|
exports.useCancelCombinedCampaignMutation = useCancelCombinedCampaignMutation;
|
|
@@ -69,6 +72,7 @@ exports.useDeleteCombinedCampaignTemplateMutation = useDeleteCombinedCampaignTem
|
|
|
69
72
|
exports.useDeleteCompanyMutation = useDeleteCompanyMutation;
|
|
70
73
|
exports.useDeleteCompanyNoteMutation = useDeleteCompanyNoteMutation;
|
|
71
74
|
exports.useDeleteContactMutation = useDeleteContactMutation;
|
|
75
|
+
exports.useDeleteConversationMutation = useDeleteConversationMutation;
|
|
72
76
|
exports.useDeleteEmailTemplateMutation = useDeleteEmailTemplateMutation;
|
|
73
77
|
exports.useDeleteNotificationMutation = useDeleteNotificationMutation;
|
|
74
78
|
exports.useDeleteSegmentMutation = useDeleteSegmentMutation;
|
|
@@ -118,6 +122,7 @@ exports.useUpdateCombinedCampaignLogMutation = useUpdateCombinedCampaignLogMutat
|
|
|
118
122
|
exports.useUpdateCombinedCampaignLogsMutation = useUpdateCombinedCampaignLogsMutation;
|
|
119
123
|
exports.useUpdateCombinedCampaignTemplateMutation = useUpdateCombinedCampaignTemplateMutation;
|
|
120
124
|
exports.useUpdateCompanyMutation = useUpdateCompanyMutation;
|
|
125
|
+
exports.useUpdateCompanyExternalIdentifierMutation = useUpdateCompanyExternalIdentifierMutation;
|
|
121
126
|
exports.useUpdateCompanyNoteMutation = useUpdateCompanyNoteMutation;
|
|
122
127
|
exports.useUpdateContactMutation = useUpdateContactMutation;
|
|
123
128
|
exports.useUpdateEmailTemplateMutation = useUpdateEmailTemplateMutation;
|
|
@@ -198,6 +203,9 @@ exports.useCompanySuspenseQuery = useCompanySuspenseQuery;
|
|
|
198
203
|
exports.useCompanyAudiencesAndCampaignsQuery = useCompanyAudiencesAndCampaignsQuery;
|
|
199
204
|
exports.useCompanyAudiencesAndCampaignsLazyQuery = useCompanyAudiencesAndCampaignsLazyQuery;
|
|
200
205
|
exports.useCompanyAudiencesAndCampaignsSuspenseQuery = useCompanyAudiencesAndCampaignsSuspenseQuery;
|
|
206
|
+
exports.useCompanyExternalIdentifierQuery = useCompanyExternalIdentifierQuery;
|
|
207
|
+
exports.useCompanyExternalIdentifierLazyQuery = useCompanyExternalIdentifierLazyQuery;
|
|
208
|
+
exports.useCompanyExternalIdentifierSuspenseQuery = useCompanyExternalIdentifierSuspenseQuery;
|
|
201
209
|
exports.useCompanyMetadataQuery = useCompanyMetadataQuery;
|
|
202
210
|
exports.useCompanyMetadataLazyQuery = useCompanyMetadataLazyQuery;
|
|
203
211
|
exports.useCompanyMetadataSuspenseQuery = useCompanyMetadataSuspenseQuery;
|
|
@@ -948,6 +956,139 @@ function useAddSegmentToCampaignMutation(baseOptions) {
|
|
|
948
956
|
const options = { ...defaultOptions, ...baseOptions };
|
|
949
957
|
return Apollo.useMutation(exports.AddSegmentToCampaignDocument, options);
|
|
950
958
|
}
|
|
959
|
+
exports.AiAgentChatDocument = (0, client_1.gql) `
|
|
960
|
+
mutation AiAgentChat($conversationId: String, $enableTools: Boolean, $message: String!) {
|
|
961
|
+
aiAgentChat(
|
|
962
|
+
conversationId: $conversationId
|
|
963
|
+
enableTools: $enableTools
|
|
964
|
+
message: $message
|
|
965
|
+
) {
|
|
966
|
+
success
|
|
967
|
+
conversationId
|
|
968
|
+
response
|
|
969
|
+
toolCalls {
|
|
970
|
+
type
|
|
971
|
+
id
|
|
972
|
+
name
|
|
973
|
+
input
|
|
974
|
+
}
|
|
975
|
+
toolResults {
|
|
976
|
+
toolUseId
|
|
977
|
+
type
|
|
978
|
+
success
|
|
979
|
+
result
|
|
980
|
+
error
|
|
981
|
+
}
|
|
982
|
+
requiresExecution
|
|
983
|
+
error
|
|
984
|
+
}
|
|
985
|
+
}
|
|
986
|
+
`;
|
|
987
|
+
/**
|
|
988
|
+
* __useAiAgentChatMutation__
|
|
989
|
+
*
|
|
990
|
+
* To run a mutation, you first call `useAiAgentChatMutation` within a React component and pass it any options that fit your needs.
|
|
991
|
+
* When your component renders, `useAiAgentChatMutation` returns a tuple that includes:
|
|
992
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
993
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
994
|
+
*
|
|
995
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
996
|
+
*
|
|
997
|
+
* @example
|
|
998
|
+
* const [aiAgentChatMutation, { data, loading, error }] = useAiAgentChatMutation({
|
|
999
|
+
* variables: {
|
|
1000
|
+
* conversationId: // value for 'conversationId'
|
|
1001
|
+
* enableTools: // value for 'enableTools'
|
|
1002
|
+
* message: // value for 'message'
|
|
1003
|
+
* },
|
|
1004
|
+
* });
|
|
1005
|
+
*/
|
|
1006
|
+
function useAiAgentChatMutation(baseOptions) {
|
|
1007
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
1008
|
+
return Apollo.useMutation(exports.AiAgentChatDocument, options);
|
|
1009
|
+
}
|
|
1010
|
+
exports.AiAgentContinueDocument = (0, client_1.gql) `
|
|
1011
|
+
mutation AiAgentContinue($conversationId: String!, $toolResults: [JSONString]!) {
|
|
1012
|
+
aiAgentContinue(conversationId: $conversationId, toolResults: $toolResults) {
|
|
1013
|
+
success
|
|
1014
|
+
response
|
|
1015
|
+
toolCalls {
|
|
1016
|
+
type
|
|
1017
|
+
id
|
|
1018
|
+
name
|
|
1019
|
+
input
|
|
1020
|
+
}
|
|
1021
|
+
toolResults {
|
|
1022
|
+
toolUseId
|
|
1023
|
+
type
|
|
1024
|
+
success
|
|
1025
|
+
result
|
|
1026
|
+
error
|
|
1027
|
+
}
|
|
1028
|
+
requiresExecution
|
|
1029
|
+
error
|
|
1030
|
+
}
|
|
1031
|
+
}
|
|
1032
|
+
`;
|
|
1033
|
+
/**
|
|
1034
|
+
* __useAiAgentContinueMutation__
|
|
1035
|
+
*
|
|
1036
|
+
* To run a mutation, you first call `useAiAgentContinueMutation` within a React component and pass it any options that fit your needs.
|
|
1037
|
+
* When your component renders, `useAiAgentContinueMutation` returns a tuple that includes:
|
|
1038
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
1039
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
1040
|
+
*
|
|
1041
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
1042
|
+
*
|
|
1043
|
+
* @example
|
|
1044
|
+
* const [aiAgentContinueMutation, { data, loading, error }] = useAiAgentContinueMutation({
|
|
1045
|
+
* variables: {
|
|
1046
|
+
* conversationId: // value for 'conversationId'
|
|
1047
|
+
* toolResults: // value for 'toolResults'
|
|
1048
|
+
* },
|
|
1049
|
+
* });
|
|
1050
|
+
*/
|
|
1051
|
+
function useAiAgentContinueMutation(baseOptions) {
|
|
1052
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
1053
|
+
return Apollo.useMutation(exports.AiAgentContinueDocument, options);
|
|
1054
|
+
}
|
|
1055
|
+
exports.AiAgentExecuteDocument = (0, client_1.gql) `
|
|
1056
|
+
mutation AiAgentExecute($conversationId: String!, $toolCalls: [JSONString]!) {
|
|
1057
|
+
aiAgentExecute(conversationId: $conversationId, toolCalls: $toolCalls) {
|
|
1058
|
+
success
|
|
1059
|
+
results {
|
|
1060
|
+
toolUseId
|
|
1061
|
+
type
|
|
1062
|
+
success
|
|
1063
|
+
result
|
|
1064
|
+
error
|
|
1065
|
+
}
|
|
1066
|
+
error
|
|
1067
|
+
}
|
|
1068
|
+
}
|
|
1069
|
+
`;
|
|
1070
|
+
/**
|
|
1071
|
+
* __useAiAgentExecuteMutation__
|
|
1072
|
+
*
|
|
1073
|
+
* To run a mutation, you first call `useAiAgentExecuteMutation` within a React component and pass it any options that fit your needs.
|
|
1074
|
+
* When your component renders, `useAiAgentExecuteMutation` returns a tuple that includes:
|
|
1075
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
1076
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
1077
|
+
*
|
|
1078
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
1079
|
+
*
|
|
1080
|
+
* @example
|
|
1081
|
+
* const [aiAgentExecuteMutation, { data, loading, error }] = useAiAgentExecuteMutation({
|
|
1082
|
+
* variables: {
|
|
1083
|
+
* conversationId: // value for 'conversationId'
|
|
1084
|
+
* toolCalls: // value for 'toolCalls'
|
|
1085
|
+
* },
|
|
1086
|
+
* });
|
|
1087
|
+
*/
|
|
1088
|
+
function useAiAgentExecuteMutation(baseOptions) {
|
|
1089
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
1090
|
+
return Apollo.useMutation(exports.AiAgentExecuteDocument, options);
|
|
1091
|
+
}
|
|
951
1092
|
exports.BulkAssignCompanyOwnersDocument = (0, client_1.gql) `
|
|
952
1093
|
mutation BulkAssignCompanyOwners($input: BulkAssignOwnersInput) {
|
|
953
1094
|
bulkAssignCompanyOwners(input: $input) {
|
|
@@ -7477,6 +7618,35 @@ function useDeleteContactMutation(baseOptions) {
|
|
|
7477
7618
|
const options = { ...defaultOptions, ...baseOptions };
|
|
7478
7619
|
return Apollo.useMutation(exports.DeleteContactDocument, options);
|
|
7479
7620
|
}
|
|
7621
|
+
exports.DeleteConversationDocument = (0, client_1.gql) `
|
|
7622
|
+
mutation DeleteConversation($conversationId: String!) {
|
|
7623
|
+
deleteConversation(conversationId: $conversationId) {
|
|
7624
|
+
success
|
|
7625
|
+
message
|
|
7626
|
+
}
|
|
7627
|
+
}
|
|
7628
|
+
`;
|
|
7629
|
+
/**
|
|
7630
|
+
* __useDeleteConversationMutation__
|
|
7631
|
+
*
|
|
7632
|
+
* To run a mutation, you first call `useDeleteConversationMutation` within a React component and pass it any options that fit your needs.
|
|
7633
|
+
* When your component renders, `useDeleteConversationMutation` returns a tuple that includes:
|
|
7634
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
7635
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
7636
|
+
*
|
|
7637
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
7638
|
+
*
|
|
7639
|
+
* @example
|
|
7640
|
+
* const [deleteConversationMutation, { data, loading, error }] = useDeleteConversationMutation({
|
|
7641
|
+
* variables: {
|
|
7642
|
+
* conversationId: // value for 'conversationId'
|
|
7643
|
+
* },
|
|
7644
|
+
* });
|
|
7645
|
+
*/
|
|
7646
|
+
function useDeleteConversationMutation(baseOptions) {
|
|
7647
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
7648
|
+
return Apollo.useMutation(exports.DeleteConversationDocument, options);
|
|
7649
|
+
}
|
|
7480
7650
|
exports.DeleteEmailTemplateDocument = (0, client_1.gql) `
|
|
7481
7651
|
mutation DeleteEmailTemplate($uuid: UUID!) {
|
|
7482
7652
|
deleteEmailTemplate(uuid: $uuid) {
|
|
@@ -15615,6 +15785,36 @@ function useUpdateCompanyMutation(baseOptions) {
|
|
|
15615
15785
|
const options = { ...defaultOptions, ...baseOptions };
|
|
15616
15786
|
return Apollo.useMutation(exports.UpdateCompanyDocument, options);
|
|
15617
15787
|
}
|
|
15788
|
+
exports.UpdateCompanyExternalIdentifierDocument = (0, client_1.gql) `
|
|
15789
|
+
mutation UpdateCompanyExternalIdentifier($input: UpdateCompanyExternalIdentifierInput) {
|
|
15790
|
+
updateCompanyExternalIdentifier(input: $input) {
|
|
15791
|
+
success
|
|
15792
|
+
message
|
|
15793
|
+
error
|
|
15794
|
+
}
|
|
15795
|
+
}
|
|
15796
|
+
`;
|
|
15797
|
+
/**
|
|
15798
|
+
* __useUpdateCompanyExternalIdentifierMutation__
|
|
15799
|
+
*
|
|
15800
|
+
* To run a mutation, you first call `useUpdateCompanyExternalIdentifierMutation` within a React component and pass it any options that fit your needs.
|
|
15801
|
+
* When your component renders, `useUpdateCompanyExternalIdentifierMutation` returns a tuple that includes:
|
|
15802
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
15803
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
15804
|
+
*
|
|
15805
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
15806
|
+
*
|
|
15807
|
+
* @example
|
|
15808
|
+
* const [updateCompanyExternalIdentifierMutation, { data, loading, error }] = useUpdateCompanyExternalIdentifierMutation({
|
|
15809
|
+
* variables: {
|
|
15810
|
+
* input: // value for 'input'
|
|
15811
|
+
* },
|
|
15812
|
+
* });
|
|
15813
|
+
*/
|
|
15814
|
+
function useUpdateCompanyExternalIdentifierMutation(baseOptions) {
|
|
15815
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
15816
|
+
return Apollo.useMutation(exports.UpdateCompanyExternalIdentifierDocument, options);
|
|
15817
|
+
}
|
|
15618
15818
|
exports.UpdateCompanyNoteDocument = (0, client_1.gql) `
|
|
15619
15819
|
mutation UpdateCompanyNote($input: CompanyNoteInput!) {
|
|
15620
15820
|
updateCompanyNote(input: $input) {
|
|
@@ -26773,6 +26973,41 @@ function useCompanyAudiencesAndCampaignsSuspenseQuery(baseOptions) {
|
|
|
26773
26973
|
const options = baseOptions === Apollo.skipToken ? baseOptions : { ...defaultOptions, ...baseOptions };
|
|
26774
26974
|
return Apollo.useSuspenseQuery(exports.CompanyAudiencesAndCampaignsDocument, options);
|
|
26775
26975
|
}
|
|
26976
|
+
exports.CompanyExternalIdentifierDocument = (0, client_1.gql) `
|
|
26977
|
+
query CompanyExternalIdentifier($companyId: ID!) {
|
|
26978
|
+
companyExternalIdentifier(companyId: $companyId) {
|
|
26979
|
+
externalIdentifier
|
|
26980
|
+
}
|
|
26981
|
+
}
|
|
26982
|
+
`;
|
|
26983
|
+
/**
|
|
26984
|
+
* __useCompanyExternalIdentifierQuery__
|
|
26985
|
+
*
|
|
26986
|
+
* To run a query within a React component, call `useCompanyExternalIdentifierQuery` and pass it any options that fit your needs.
|
|
26987
|
+
* When your component renders, `useCompanyExternalIdentifierQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
26988
|
+
* you can use to render your UI.
|
|
26989
|
+
*
|
|
26990
|
+
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
26991
|
+
*
|
|
26992
|
+
* @example
|
|
26993
|
+
* const { data, loading, error } = useCompanyExternalIdentifierQuery({
|
|
26994
|
+
* variables: {
|
|
26995
|
+
* companyId: // value for 'companyId'
|
|
26996
|
+
* },
|
|
26997
|
+
* });
|
|
26998
|
+
*/
|
|
26999
|
+
function useCompanyExternalIdentifierQuery(baseOptions) {
|
|
27000
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
27001
|
+
return Apollo.useQuery(exports.CompanyExternalIdentifierDocument, options);
|
|
27002
|
+
}
|
|
27003
|
+
function useCompanyExternalIdentifierLazyQuery(baseOptions) {
|
|
27004
|
+
const options = { ...defaultOptions, ...baseOptions };
|
|
27005
|
+
return Apollo.useLazyQuery(exports.CompanyExternalIdentifierDocument, options);
|
|
27006
|
+
}
|
|
27007
|
+
function useCompanyExternalIdentifierSuspenseQuery(baseOptions) {
|
|
27008
|
+
const options = baseOptions === Apollo.skipToken ? baseOptions : { ...defaultOptions, ...baseOptions };
|
|
27009
|
+
return Apollo.useSuspenseQuery(exports.CompanyExternalIdentifierDocument, options);
|
|
27010
|
+
}
|
|
26776
27011
|
exports.CompanyMetadataDocument = (0, client_1.gql) `
|
|
26777
27012
|
query CompanyMetadata($companyId: ID!) {
|
|
26778
27013
|
companyMetadata(companyId: $companyId)
|
package/dist/mutations.d.ts
CHANGED
|
@@ -85,5 +85,10 @@ export declare const UPDATE_COMPANY_NOTE: import("@apollo/client").DocumentNode;
|
|
|
85
85
|
export declare const DELETE_COMPANY_NOTE: import("@apollo/client").DocumentNode;
|
|
86
86
|
export declare const HIDE_RECORD: import("@apollo/client").DocumentNode;
|
|
87
87
|
export declare const UNHIDE_RECORD: import("@apollo/client").DocumentNode;
|
|
88
|
+
export declare const AI_AGENT_CHAT: import("@apollo/client").DocumentNode;
|
|
89
|
+
export declare const AI_AGENT_EXECUTE: import("@apollo/client").DocumentNode;
|
|
90
|
+
export declare const AI_AGENT_CONTINUE: import("@apollo/client").DocumentNode;
|
|
91
|
+
export declare const DELETE_CONVERSATION: import("@apollo/client").DocumentNode;
|
|
88
92
|
export declare const BULK_ASSIGN_COMPANY_OWNERS: import("@apollo/client").DocumentNode;
|
|
89
93
|
export declare const SET_LEAD_NOT_INTERESTED: import("@apollo/client").DocumentNode;
|
|
94
|
+
export declare const UPDATE_COMPANY_EXTERNAL_IDENTIFIER: import("@apollo/client").DocumentNode;
|
package/dist/mutations.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.ADD_SEGMENT_TO_CAMPAIGN = exports.DELETE_CAMPAIGN = exports.UPDATE_CAMPAIGN = exports.CREATE_CAMPAIGN = exports.REMOVE_CONTACTS_FROM_CAMPAIGN = exports.ADD_CONTACTS_TO_CAMPAIGN = exports.REMOVE_CONTACTS_FROM_SEGMENT = exports.ADD_CONTACTS_TO_SEGMENT = exports.DELETE_SEGMENT = exports.UPDATE_SEGMENT = exports.CREATE_SEGMENT = exports.DELETE_COMPANY = exports.UPDATE_COMPANY = exports.CREATE_COMPANY = exports.DELETE_CONTACT = exports.UPDATE_CONTACT = exports.CREATE_CONTACT = exports.SUBMIT_FEEDBACK = exports.LOGIN_WITH_MICROSOFT = exports.LOGIN_WITH_GOOGLE = exports.UNSUBSCRIBE_FROM_EMAILS = exports.VALIDATE_OTP_AND_RESET_PASSWORD = exports.CHANGE_PASSWORD = exports.UPDATE_USER_PROFILE = exports.LOGIN = exports.CANCEL_INVITATION = exports.REMOVE_MEMBER = exports.REJECT_INVITATION = exports.ACCEPT_INVITATION = exports.INVITE_USER = exports.UPLOAD_FILE = exports.FORGOT_PASSWORD = exports.SIGNUP = exports.DELETE_COMBINED_CAMPAIGN_TEMPLATE = exports.UPDATE_COMBINED_CAMPAIGN_TEMPLATE = exports.CREATE_COMBINED_CAMPAIGN_TEMPLATE = exports.REMOVE_CONTACTS_FROM_COMBINED_CAMPAIGN = exports.ADD_CONTACTS_TO_COMBINED_CAMPAIGN = exports.SEND_TEST_EMAIL_COMBINED = exports.SEND_MANUAL_EMAIL = exports.UPDATE_COMBINED_CAMPAIGN_LOGS = exports.UPDATE_COMBINED_CAMPAIGN_LOG = exports.CANCEL_COMBINED_CAMPAIGN = exports.RESUME_COMBINED_CAMPAIGN = exports.PAUSE_COMBINED_CAMPAIGN = exports.SCHEDULE_COMBINED_CAMPAIGN = exports.START_COMBINED_CAMPAIGN = exports.DELETE_COMBINED_CAMPAIGN = exports.UPDATE_COMBINED_CAMPAIGN = exports.CREATE_COMBINED_CAMPAIGN = void 0;
|
|
4
|
-
exports.SET_LEAD_NOT_INTERESTED = exports.BULK_ASSIGN_COMPANY_OWNERS = exports.UNHIDE_RECORD = exports.HIDE_RECORD = exports.DELETE_COMPANY_NOTE = exports.UPDATE_COMPANY_NOTE = exports.CREATE_COMPANY_NOTE = exports.UPDATE_CALL_CAMPAIGN_LOG = exports.CREATE_CALL_CAMPAIGN_LOG = exports.REMOVE_SEGMENT_FROM_CALL_CAMPAIGN = exports.ADD_SEGMENT_TO_CALL_CAMPAIGN = exports.DELETE_CALL_CAMPAIGN = exports.UPDATE_CALL_CAMPAIGN = exports.CREATE_CALL_CAMPAIGN = exports.DELETE_TASK = exports.UPDATE_TASK = exports.CREATE_TASK = exports.CLEAR_ALL_NOTIFICATIONS = exports.DELETE_NOTIFICATION = exports.MARK_ALL_NOTIFICATIONS_AS_READ = exports.MARK_NOTIFICATION_AS_READ = exports.CREATE_NOTIFICATION = exports.DISCONNECT_NYLAS_INTEGRATION = exports.SAVE_NYLAS_CONNECTION = exports.GENERATE_NEW_EMAIL = exports.REDUCE_SPAM = exports.EMAIL_TONE = exports.DELETE_EMAIL_TEMPLATE = exports.UPDATE_EMAIL_TEMPLATE = exports.CREATE_EMAIL_TEMPLATE = exports.PREVIEW_CAMPAIGN_EMAIL = exports.SCHEDULE_CAMPAIGN = exports.SEND_EMAIL_TO_CONTACT = exports.SEND_TEST_EMAIL = exports.CANCEL_CAMPAIGN = exports.COMPLETE_CAMPAIGN = exports.PAUSE_CAMPAIGN = exports.START_CAMPAIGN = exports.REMOVE_SEGMENT_FROM_CAMPAIGN = void 0;
|
|
4
|
+
exports.UPDATE_COMPANY_EXTERNAL_IDENTIFIER = exports.SET_LEAD_NOT_INTERESTED = exports.BULK_ASSIGN_COMPANY_OWNERS = exports.DELETE_CONVERSATION = exports.AI_AGENT_CONTINUE = exports.AI_AGENT_EXECUTE = exports.AI_AGENT_CHAT = exports.UNHIDE_RECORD = exports.HIDE_RECORD = exports.DELETE_COMPANY_NOTE = exports.UPDATE_COMPANY_NOTE = exports.CREATE_COMPANY_NOTE = exports.UPDATE_CALL_CAMPAIGN_LOG = exports.CREATE_CALL_CAMPAIGN_LOG = exports.REMOVE_SEGMENT_FROM_CALL_CAMPAIGN = exports.ADD_SEGMENT_TO_CALL_CAMPAIGN = exports.DELETE_CALL_CAMPAIGN = exports.UPDATE_CALL_CAMPAIGN = exports.CREATE_CALL_CAMPAIGN = exports.DELETE_TASK = exports.UPDATE_TASK = exports.CREATE_TASK = exports.CLEAR_ALL_NOTIFICATIONS = exports.DELETE_NOTIFICATION = exports.MARK_ALL_NOTIFICATIONS_AS_READ = exports.MARK_NOTIFICATION_AS_READ = exports.CREATE_NOTIFICATION = exports.DISCONNECT_NYLAS_INTEGRATION = exports.SAVE_NYLAS_CONNECTION = exports.GENERATE_NEW_EMAIL = exports.REDUCE_SPAM = exports.EMAIL_TONE = exports.DELETE_EMAIL_TEMPLATE = exports.UPDATE_EMAIL_TEMPLATE = exports.CREATE_EMAIL_TEMPLATE = exports.PREVIEW_CAMPAIGN_EMAIL = exports.SCHEDULE_CAMPAIGN = exports.SEND_EMAIL_TO_CONTACT = exports.SEND_TEST_EMAIL = exports.CANCEL_CAMPAIGN = exports.COMPLETE_CAMPAIGN = exports.PAUSE_CAMPAIGN = exports.START_CAMPAIGN = exports.REMOVE_SEGMENT_FROM_CAMPAIGN = void 0;
|
|
5
5
|
const client_1 = require("@apollo/client");
|
|
6
6
|
exports.CREATE_COMBINED_CAMPAIGN = (0, client_1.gql) `
|
|
7
7
|
mutation CreateCombinedCampaign($input: CombinedCampaignInput!, $steps: [CombinedCampaignStepInput]) {
|
|
@@ -13818,6 +13818,72 @@ mutation UnhideRecord($input: HiddenRecordInput!) {
|
|
|
13818
13818
|
message
|
|
13819
13819
|
}
|
|
13820
13820
|
}`;
|
|
13821
|
+
exports.AI_AGENT_CHAT = (0, client_1.gql) `
|
|
13822
|
+
mutation AiAgentChat($conversationId: String, $enableTools: Boolean, $message: String!) {
|
|
13823
|
+
aiAgentChat(conversationId: $conversationId, enableTools: $enableTools, message: $message) {
|
|
13824
|
+
success
|
|
13825
|
+
conversationId
|
|
13826
|
+
response
|
|
13827
|
+
toolCalls {
|
|
13828
|
+
type
|
|
13829
|
+
id
|
|
13830
|
+
name
|
|
13831
|
+
input
|
|
13832
|
+
}
|
|
13833
|
+
toolResults {
|
|
13834
|
+
toolUseId
|
|
13835
|
+
type
|
|
13836
|
+
success
|
|
13837
|
+
result
|
|
13838
|
+
error
|
|
13839
|
+
}
|
|
13840
|
+
requiresExecution
|
|
13841
|
+
error
|
|
13842
|
+
}
|
|
13843
|
+
}`;
|
|
13844
|
+
exports.AI_AGENT_EXECUTE = (0, client_1.gql) `
|
|
13845
|
+
mutation AiAgentExecute($conversationId: String!, $toolCalls: [JSONString]!) {
|
|
13846
|
+
aiAgentExecute(conversationId: $conversationId, toolCalls: $toolCalls) {
|
|
13847
|
+
success
|
|
13848
|
+
results {
|
|
13849
|
+
toolUseId
|
|
13850
|
+
type
|
|
13851
|
+
success
|
|
13852
|
+
result
|
|
13853
|
+
error
|
|
13854
|
+
}
|
|
13855
|
+
error
|
|
13856
|
+
}
|
|
13857
|
+
}`;
|
|
13858
|
+
exports.AI_AGENT_CONTINUE = (0, client_1.gql) `
|
|
13859
|
+
mutation AiAgentContinue($conversationId: String!, $toolResults: [JSONString]!) {
|
|
13860
|
+
aiAgentContinue(conversationId: $conversationId, toolResults: $toolResults) {
|
|
13861
|
+
success
|
|
13862
|
+
response
|
|
13863
|
+
toolCalls {
|
|
13864
|
+
type
|
|
13865
|
+
id
|
|
13866
|
+
name
|
|
13867
|
+
input
|
|
13868
|
+
}
|
|
13869
|
+
toolResults {
|
|
13870
|
+
toolUseId
|
|
13871
|
+
type
|
|
13872
|
+
success
|
|
13873
|
+
result
|
|
13874
|
+
error
|
|
13875
|
+
}
|
|
13876
|
+
requiresExecution
|
|
13877
|
+
error
|
|
13878
|
+
}
|
|
13879
|
+
}`;
|
|
13880
|
+
exports.DELETE_CONVERSATION = (0, client_1.gql) `
|
|
13881
|
+
mutation DeleteConversation($conversationId: String!) {
|
|
13882
|
+
deleteConversation(conversationId: $conversationId) {
|
|
13883
|
+
success
|
|
13884
|
+
message
|
|
13885
|
+
}
|
|
13886
|
+
}`;
|
|
13821
13887
|
exports.BULK_ASSIGN_COMPANY_OWNERS = (0, client_1.gql) `
|
|
13822
13888
|
mutation BulkAssignCompanyOwners($input: BulkAssignOwnersInput) {
|
|
13823
13889
|
bulkAssignCompanyOwners(input: $input) {
|
|
@@ -13834,3 +13900,11 @@ mutation SetLeadNotInterested($input: SetLeadAsNotInterestedInput) {
|
|
|
13834
13900
|
error
|
|
13835
13901
|
}
|
|
13836
13902
|
}`;
|
|
13903
|
+
exports.UPDATE_COMPANY_EXTERNAL_IDENTIFIER = (0, client_1.gql) `
|
|
13904
|
+
mutation UpdateCompanyExternalIdentifier($input: UpdateCompanyExternalIdentifierInput) {
|
|
13905
|
+
updateCompanyExternalIdentifier(input: $input) {
|
|
13906
|
+
success
|
|
13907
|
+
message
|
|
13908
|
+
error
|
|
13909
|
+
}
|
|
13910
|
+
}`;
|
package/dist/queries.d.ts
CHANGED
|
@@ -49,6 +49,7 @@ export declare const METAL_GRADES: import("@apollo/client").DocumentNode;
|
|
|
49
49
|
export declare const US_STATES: import("@apollo/client").DocumentNode;
|
|
50
50
|
export declare const EMPLOYEE_SIZES: import("@apollo/client").DocumentNode;
|
|
51
51
|
export declare const COMPANY_AUDIENCES_AND_CAMPAIGNS: import("@apollo/client").DocumentNode;
|
|
52
|
+
export declare const COMPANY_EXTERNAL_IDENTIFIER: import("@apollo/client").DocumentNode;
|
|
52
53
|
export declare const CURRENT_ACCOUNT: import("@apollo/client").DocumentNode;
|
|
53
54
|
export declare const ACCOUNT_MEMBERS: import("@apollo/client").DocumentNode;
|
|
54
55
|
export declare const PENDING_INVITATIONS: import("@apollo/client").DocumentNode;
|
package/dist/queries.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.EMPLOYEE_SIZES = exports.US_STATES = exports.METAL_GRADES = exports.METAL_TYPES = exports.PRODUCT_CATEGORIES = exports.PRODUCT_TYPES = exports.INDUSTRY_SECTORS = exports.INDUSTRY_TYPES = exports.COMPANY_METADATA = exports.CONTACT = exports.COMPANY = exports.SEARCH_CONTACTS = exports.CONTACTS = exports.COMPANY_SEARCH = exports.COMPANIES = exports.CONTACTS_IN_SEGMENT = exports.SEGMENT = exports.SEGMENTS = exports.CAMPAIGN_CONTACTS = exports.CAMPAIGN_LOGS = exports.CAMPAIGN_ANALYTICS = exports.CAMPAIGN_STATS = exports.CAMPAIGN = exports.CAMPAIGNS = exports.EMAIL_TEMPLATES = exports.EMAIL_TEMPLATE = exports.NYLAS_CONNECTION = exports.RECENT_NOTIFICATIONS = exports.NOTIFICATION = exports.NOTIFICATIONS = exports.UNREAD_NOTIFICATIONS_COUNT = exports.TASK = exports.TASKS = exports.CALL_CAMPAIGN_REPORT = exports.CALL_CAMPAIGN_LOG = exports.CALL_CAMPAIGN_LOGS = exports.CALL_CAMPAIGN_ANALYTICS = exports.CALL_CAMPAIGN = exports.CALL_CAMPAIGNS = exports.COMPANY_NOTE = exports.COMPANY_NOTES = exports.RECENT_HISTORY = exports.DASHBOARD_STATS = exports.COMBINED_CAMPAIGN_TEMPLATE = exports.COMBINED_CAMPAIGN_TEMPLATES = exports.COMBINED_CAMPAIGN_STEPS = exports.COMBINED_CAMPAIGN_CONTACTS = exports.COMBINED_CAMPAIGN_LOGS = exports.COMBINED_CAMPAIGN = exports.COMBINED_CAMPAIGNS = void 0;
|
|
4
|
-
exports.USER_PROFILE = exports.MY_INVITATIONS = exports.BUSINESS_PROFILE = exports.PENDING_INVITATIONS = exports.ACCOUNT_MEMBERS = exports.CURRENT_ACCOUNT = exports.COMPANY_AUDIENCES_AND_CAMPAIGNS = void 0;
|
|
4
|
+
exports.USER_PROFILE = exports.MY_INVITATIONS = exports.BUSINESS_PROFILE = exports.PENDING_INVITATIONS = exports.ACCOUNT_MEMBERS = exports.CURRENT_ACCOUNT = exports.COMPANY_EXTERNAL_IDENTIFIER = exports.COMPANY_AUDIENCES_AND_CAMPAIGNS = void 0;
|
|
5
5
|
const client_1 = require("@apollo/client");
|
|
6
6
|
exports.COMBINED_CAMPAIGNS = (0, client_1.gql) `
|
|
7
7
|
query CombinedCampaigns($pagination: PaginationInput, $status: String, $sortBy: String) {
|
|
@@ -15642,6 +15642,12 @@ query CompanyAudiencesAndCampaigns($companyId: ID!) {
|
|
|
15642
15642
|
}
|
|
15643
15643
|
}
|
|
15644
15644
|
}`;
|
|
15645
|
+
exports.COMPANY_EXTERNAL_IDENTIFIER = (0, client_1.gql) `
|
|
15646
|
+
query CompanyExternalIdentifier($companyId: ID!) {
|
|
15647
|
+
companyExternalIdentifier(companyId: $companyId) {
|
|
15648
|
+
externalIdentifier
|
|
15649
|
+
}
|
|
15650
|
+
}`;
|
|
15645
15651
|
exports.CURRENT_ACCOUNT = (0, client_1.gql) `
|
|
15646
15652
|
query CurrentAccount {
|
|
15647
15653
|
currentAccount {
|
package/dist/sdk.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { CloudForgeClientOptions } from "./client";
|
|
2
|
-
import { BulkAssignOwnersInput, CallReportFilterInput, CombinedCampaignFilterInput, CombinedCampaignInput, CombinedCampaignStepInput, CombinedCampaignTemplateInput, CompanyFilterInput, CompanyNoteFilterInput, CompanyNoteInput, CompanyNoteSortInput, CompanySortInput, ContactFilterInput, ContactSortInput, CreateCallCampaignLogMutationVariables, CreateCallCampaignMutationVariables, CreateCampaignMutationVariables, CreateCompanyMutationVariables, CreateContactMutationVariables, CreateEmailTemplateMutationVariables, CreateNotificationMutationVariables, CreateSegmentMutationVariables, CreateTaskMutationVariables, CustomContactInput, EmailToneInput, FileUploadInput, HiddenRecordInput, InvitationResponseInput, InviteUserInput, MicrosoftUserInput, PaginationInput, RecentHistoryFilterInput, RecentHistorySortInput, ReduceSpamInput, SaveNylasConnectionMutationVariables, Scalars, SegmentFilterInput, SetLeadAsNotInterestedInput, SignupInput, SubmitFeedbackMutationVariables, TaskFilterInput, UpdateCallCampaignLogMutationVariables, UpdateCallCampaignMutationVariables, UpdateCampaignMutationVariables, UpdateCombinedCampaignInput, UpdateCombinedCampaignLogInput, UpdateCompanyMutationVariables, UpdateContactMutationVariables, UpdateEmailTemplateMutationVariables, UpdateSegmentMutationVariables, UpdateTaskMutationVariables, UpdateUserProfileMutationVariables, UserTypeInput } from "./generated/graphql";
|
|
2
|
+
import { BulkAssignOwnersInput, CallReportFilterInput, CombinedCampaignFilterInput, CombinedCampaignInput, CombinedCampaignStepInput, CombinedCampaignTemplateInput, CompanyFilterInput, CompanyNoteFilterInput, CompanyNoteInput, CompanyNoteSortInput, CompanySortInput, ContactFilterInput, ContactSortInput, CreateCallCampaignLogMutationVariables, CreateCallCampaignMutationVariables, CreateCampaignMutationVariables, CreateCompanyMutationVariables, CreateContactMutationVariables, CreateEmailTemplateMutationVariables, CreateNotificationMutationVariables, CreateSegmentMutationVariables, CreateTaskMutationVariables, CustomContactInput, EmailToneInput, FileUploadInput, HiddenRecordInput, InvitationResponseInput, InviteUserInput, MicrosoftUserInput, PaginationInput, RecentHistoryFilterInput, RecentHistorySortInput, ReduceSpamInput, SaveNylasConnectionMutationVariables, Scalars, SegmentFilterInput, SetLeadAsNotInterestedInput, SignupInput, SubmitFeedbackMutationVariables, TaskFilterInput, UpdateCallCampaignLogMutationVariables, UpdateCallCampaignMutationVariables, UpdateCampaignMutationVariables, UpdateCombinedCampaignInput, UpdateCombinedCampaignLogInput, UpdateCompanyExternalIdentifierInput, UpdateCompanyMutationVariables, UpdateContactMutationVariables, UpdateEmailTemplateMutationVariables, UpdateSegmentMutationVariables, UpdateTaskMutationVariables, UpdateUserProfileMutationVariables, UserTypeInput } from "./generated/graphql";
|
|
3
3
|
export declare class CloudForgeSDK {
|
|
4
4
|
private client;
|
|
5
5
|
private apolloClient;
|
|
@@ -14,6 +14,9 @@ export declare class CloudForgeSDK {
|
|
|
14
14
|
addContactsToSegment(contactIds: string[], segmentId: string): Promise<import("@apollo/client").FetchResult<any>>;
|
|
15
15
|
addSegmentToCallCampaign(campaignId: string, segmentId: string): Promise<import("@apollo/client").FetchResult<any>>;
|
|
16
16
|
addSegmentToCampaign(campaignId: string, segmentId: string): Promise<import("@apollo/client").FetchResult<any>>;
|
|
17
|
+
aiAgentChat(message: string, conversationId?: string, enableTools?: boolean): Promise<import("@apollo/client").FetchResult<any>>;
|
|
18
|
+
aiAgentContinue(conversationId: string, toolResults: Scalars['JSONString']['input'][]): Promise<import("@apollo/client").FetchResult<any>>;
|
|
19
|
+
aiAgentExecute(conversationId: string, toolCalls: Scalars['JSONString']['input'][]): Promise<import("@apollo/client").FetchResult<any>>;
|
|
17
20
|
bulkAssignCompanyOwners(input?: BulkAssignOwnersInput): Promise<import("@apollo/client").FetchResult<any>>;
|
|
18
21
|
cancelCampaign(id: string): Promise<import("@apollo/client").FetchResult<any>>;
|
|
19
22
|
cancelCombinedCampaign(id: string): Promise<import("@apollo/client").FetchResult<any>>;
|
|
@@ -40,6 +43,7 @@ export declare class CloudForgeSDK {
|
|
|
40
43
|
deleteCompany(id?: string): Promise<import("@apollo/client").FetchResult<any>>;
|
|
41
44
|
deleteCompanyNote(id: string): Promise<import("@apollo/client").FetchResult<any>>;
|
|
42
45
|
deleteContact(id?: string): Promise<import("@apollo/client").FetchResult<any>>;
|
|
46
|
+
deleteConversation(conversationId: string): Promise<import("@apollo/client").FetchResult<any>>;
|
|
43
47
|
deleteEmailTemplate(uuid: string): Promise<import("@apollo/client").FetchResult<any>>;
|
|
44
48
|
deleteNotification(notificationId: string): Promise<import("@apollo/client").FetchResult<any>>;
|
|
45
49
|
deleteSegment(id: string): Promise<import("@apollo/client").FetchResult<any>>;
|
|
@@ -89,6 +93,7 @@ export declare class CloudForgeSDK {
|
|
|
89
93
|
updateCombinedCampaignLogs(logIds: string[], notes?: string, outcome?: string, status?: string): Promise<import("@apollo/client").FetchResult<any>>;
|
|
90
94
|
updateCombinedCampaignTemplate(input: CombinedCampaignTemplateInput, uuid: string): Promise<import("@apollo/client").FetchResult<any>>;
|
|
91
95
|
updateCompany(input: UpdateCompanyMutationVariables): Promise<import("@apollo/client").FetchResult<any>>;
|
|
96
|
+
updateCompanyExternalIdentifier(input?: UpdateCompanyExternalIdentifierInput): Promise<import("@apollo/client").FetchResult<any>>;
|
|
92
97
|
updateCompanyNote(input: CompanyNoteInput): Promise<import("@apollo/client").FetchResult<any>>;
|
|
93
98
|
updateContact(input: UpdateContactMutationVariables): Promise<import("@apollo/client").FetchResult<any>>;
|
|
94
99
|
updateEmailTemplate(input: UpdateEmailTemplateMutationVariables, uuid: string): Promise<import("@apollo/client").FetchResult<any>>;
|
|
@@ -121,6 +126,7 @@ export declare class CloudForgeSDK {
|
|
|
121
126
|
companies(filters?: CompanyFilterInput, pagination?: PaginationInput, sort?: CompanySortInput): Promise<import("@apollo/client").ApolloQueryResult<any>>;
|
|
122
127
|
company(id?: string): Promise<import("@apollo/client").ApolloQueryResult<any>>;
|
|
123
128
|
companyAudiencesAndCampaigns(companyId: string): Promise<import("@apollo/client").ApolloQueryResult<any>>;
|
|
129
|
+
companyExternalIdentifier(companyId: string): Promise<import("@apollo/client").ApolloQueryResult<any>>;
|
|
124
130
|
companyMetadata(companyId: string): Promise<import("@apollo/client").ApolloQueryResult<any>>;
|
|
125
131
|
companyNote(id: string): Promise<import("@apollo/client").ApolloQueryResult<any>>;
|
|
126
132
|
companyNotes(filters?: CompanyNoteFilterInput, pagination?: PaginationInput, sort?: CompanyNoteSortInput): Promise<import("@apollo/client").ApolloQueryResult<any>>;
|
package/dist/sdk.js
CHANGED
|
@@ -69,6 +69,24 @@ class CloudForgeSDK {
|
|
|
69
69
|
variables: { campaignId, segmentId }
|
|
70
70
|
});
|
|
71
71
|
}
|
|
72
|
+
async aiAgentChat(message, conversationId, enableTools) {
|
|
73
|
+
return this.apolloClient.mutate({
|
|
74
|
+
mutation: mutations_1.AI_AGENT_CHAT,
|
|
75
|
+
variables: { message, conversationId, enableTools }
|
|
76
|
+
});
|
|
77
|
+
}
|
|
78
|
+
async aiAgentContinue(conversationId, toolResults) {
|
|
79
|
+
return this.apolloClient.mutate({
|
|
80
|
+
mutation: mutations_1.AI_AGENT_CONTINUE,
|
|
81
|
+
variables: { conversationId, toolResults }
|
|
82
|
+
});
|
|
83
|
+
}
|
|
84
|
+
async aiAgentExecute(conversationId, toolCalls) {
|
|
85
|
+
return this.apolloClient.mutate({
|
|
86
|
+
mutation: mutations_1.AI_AGENT_EXECUTE,
|
|
87
|
+
variables: { conversationId, toolCalls }
|
|
88
|
+
});
|
|
89
|
+
}
|
|
72
90
|
async bulkAssignCompanyOwners(input) {
|
|
73
91
|
return this.apolloClient.mutate({
|
|
74
92
|
mutation: mutations_1.BULK_ASSIGN_COMPANY_OWNERS,
|
|
@@ -224,6 +242,12 @@ class CloudForgeSDK {
|
|
|
224
242
|
variables: { id }
|
|
225
243
|
});
|
|
226
244
|
}
|
|
245
|
+
async deleteConversation(conversationId) {
|
|
246
|
+
return this.apolloClient.mutate({
|
|
247
|
+
mutation: mutations_1.DELETE_CONVERSATION,
|
|
248
|
+
variables: { conversationId }
|
|
249
|
+
});
|
|
250
|
+
}
|
|
227
251
|
async deleteEmailTemplate(uuid) {
|
|
228
252
|
return this.apolloClient.mutate({
|
|
229
253
|
mutation: mutations_1.DELETE_EMAIL_TEMPLATE,
|
|
@@ -516,6 +540,12 @@ class CloudForgeSDK {
|
|
|
516
540
|
variables: { ...input }
|
|
517
541
|
});
|
|
518
542
|
}
|
|
543
|
+
async updateCompanyExternalIdentifier(input) {
|
|
544
|
+
return this.apolloClient.mutate({
|
|
545
|
+
mutation: mutations_1.UPDATE_COMPANY_EXTERNAL_IDENTIFIER,
|
|
546
|
+
variables: { ...input }
|
|
547
|
+
});
|
|
548
|
+
}
|
|
519
549
|
async updateCompanyNote(input) {
|
|
520
550
|
return this.apolloClient.mutate({
|
|
521
551
|
mutation: mutations_1.UPDATE_COMPANY_NOTE,
|
|
@@ -708,6 +738,12 @@ class CloudForgeSDK {
|
|
|
708
738
|
variables: { companyId }
|
|
709
739
|
});
|
|
710
740
|
}
|
|
741
|
+
async companyExternalIdentifier(companyId) {
|
|
742
|
+
return this.apolloClient.query({
|
|
743
|
+
query: queries_1.COMPANY_EXTERNAL_IDENTIFIER,
|
|
744
|
+
variables: { companyId }
|
|
745
|
+
});
|
|
746
|
+
}
|
|
711
747
|
async companyMetadata(companyId) {
|
|
712
748
|
return this.apolloClient.query({
|
|
713
749
|
query: queries_1.COMPANY_METADATA,
|