graphlit-client 1.0.20260101002 → 1.0.20260102003-dev

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.
@@ -7857,6 +7857,16 @@ export const GetFeed = gql `
7857
7857
  attio {
7858
7858
  apiKey
7859
7859
  }
7860
+ salesforce {
7861
+ authenticationType
7862
+ isSandbox
7863
+ clientId
7864
+ clientSecret
7865
+ refreshToken
7866
+ connector {
7867
+ id
7868
+ }
7869
+ }
7860
7870
  readLimit
7861
7871
  }
7862
7872
  commit {
@@ -7918,6 +7928,17 @@ export const GetFeed = gql `
7918
7928
  id
7919
7929
  }
7920
7930
  }
7931
+ salesforce {
7932
+ authenticationType
7933
+ instanceUrl
7934
+ isSandbox
7935
+ clientId
7936
+ clientSecret
7937
+ refreshToken
7938
+ connector {
7939
+ id
7940
+ }
7941
+ }
7921
7942
  readLimit
7922
7943
  }
7923
7944
  calendar {
@@ -7953,6 +7974,25 @@ export const GetFeed = gql `
7953
7974
  }
7954
7975
  readLimit
7955
7976
  }
7977
+ meeting {
7978
+ type
7979
+ readLimit
7980
+ fireflies {
7981
+ apiKey
7982
+ beforeDate
7983
+ afterDate
7984
+ }
7985
+ attio {
7986
+ apiKey
7987
+ afterDate
7988
+ beforeDate
7989
+ }
7990
+ fathom {
7991
+ apiKey
7992
+ afterDate
7993
+ beforeDate
7994
+ }
7995
+ }
7956
7996
  rss {
7957
7997
  readLimit
7958
7998
  uri
@@ -8043,6 +8083,17 @@ export const GetFeed = gql `
8043
8083
  readLimit
8044
8084
  apiKey
8045
8085
  }
8086
+ salesforce {
8087
+ readLimit
8088
+ authenticationType
8089
+ isSandbox
8090
+ clientId
8091
+ clientSecret
8092
+ refreshToken
8093
+ connector {
8094
+ id
8095
+ }
8096
+ }
8046
8097
  research {
8047
8098
  readLimit
8048
8099
  type
@@ -8325,6 +8376,16 @@ export const QueryFeeds = gql `
8325
8376
  attio {
8326
8377
  apiKey
8327
8378
  }
8379
+ salesforce {
8380
+ authenticationType
8381
+ isSandbox
8382
+ clientId
8383
+ clientSecret
8384
+ refreshToken
8385
+ connector {
8386
+ id
8387
+ }
8388
+ }
8328
8389
  readLimit
8329
8390
  }
8330
8391
  commit {
@@ -8386,6 +8447,17 @@ export const QueryFeeds = gql `
8386
8447
  id
8387
8448
  }
8388
8449
  }
8450
+ salesforce {
8451
+ authenticationType
8452
+ instanceUrl
8453
+ isSandbox
8454
+ clientId
8455
+ clientSecret
8456
+ refreshToken
8457
+ connector {
8458
+ id
8459
+ }
8460
+ }
8389
8461
  readLimit
8390
8462
  }
8391
8463
  calendar {
@@ -8421,6 +8493,25 @@ export const QueryFeeds = gql `
8421
8493
  }
8422
8494
  readLimit
8423
8495
  }
8496
+ meeting {
8497
+ type
8498
+ readLimit
8499
+ fireflies {
8500
+ apiKey
8501
+ beforeDate
8502
+ afterDate
8503
+ }
8504
+ attio {
8505
+ apiKey
8506
+ afterDate
8507
+ beforeDate
8508
+ }
8509
+ fathom {
8510
+ apiKey
8511
+ afterDate
8512
+ beforeDate
8513
+ }
8514
+ }
8424
8515
  rss {
8425
8516
  readLimit
8426
8517
  uri
@@ -8511,6 +8602,17 @@ export const QueryFeeds = gql `
8511
8602
  readLimit
8512
8603
  apiKey
8513
8604
  }
8605
+ salesforce {
8606
+ readLimit
8607
+ authenticationType
8608
+ isSandbox
8609
+ clientId
8610
+ clientSecret
8611
+ refreshToken
8612
+ connector {
8613
+ id
8614
+ }
8615
+ }
8514
8616
  research {
8515
8617
  readLimit
8516
8618
  type
@@ -610,6 +610,34 @@ export type AttioFeedPropertiesUpdateInput = {
610
610
  /** The limit of items to be read from feed, defaults to 100. */
611
611
  readLimit?: InputMaybe<Scalars['Int']['input']>;
612
612
  };
613
+ /** Represents Attio meeting transcript feed properties. */
614
+ export type AttioMeetingProperties = {
615
+ __typename?: 'AttioMeetingProperties';
616
+ /** Filter meetings ending after this date (inclusive). */
617
+ afterDate?: Maybe<Scalars['DateTime']['output']>;
618
+ /** Attio API key. */
619
+ apiKey?: Maybe<Scalars['String']['output']>;
620
+ /** Filter meetings starting before this date (exclusive). */
621
+ beforeDate?: Maybe<Scalars['DateTime']['output']>;
622
+ };
623
+ /** Represents Attio meeting transcript feed properties. */
624
+ export type AttioMeetingPropertiesInput = {
625
+ /** Filter meetings ending after this date (inclusive). */
626
+ afterDate?: InputMaybe<Scalars['DateTime']['input']>;
627
+ /** Attio API key. */
628
+ apiKey: Scalars['String']['input'];
629
+ /** Filter meetings starting before this date (exclusive). */
630
+ beforeDate?: InputMaybe<Scalars['DateTime']['input']>;
631
+ };
632
+ /** Represents Attio meeting transcript feed properties. */
633
+ export type AttioMeetingPropertiesUpdateInput = {
634
+ /** Filter meetings ending after this date (inclusive). */
635
+ afterDate?: InputMaybe<Scalars['DateTime']['input']>;
636
+ /** Attio API key. */
637
+ apiKey?: InputMaybe<Scalars['String']['input']>;
638
+ /** Filter meetings starting before this date (exclusive). */
639
+ beforeDate?: InputMaybe<Scalars['DateTime']['input']>;
640
+ };
613
641
  /** Represents Attio Tasks feed properties. */
614
642
  export type AttioTasksFeedProperties = {
615
643
  __typename?: 'AttioTasksFeedProperties';
@@ -1289,6 +1317,8 @@ export type CrmFeedProperties = {
1289
1317
  microsoftContacts?: Maybe<MicrosoftContactsCrmFeedProperties>;
1290
1318
  /** The limit of items to be read from feed, defaults to 100. */
1291
1319
  readLimit?: Maybe<Scalars['Int']['output']>;
1320
+ /** Salesforce CRM properties. */
1321
+ salesforce?: Maybe<SalesforceCrmFeedProperties>;
1292
1322
  /** Feed service type. */
1293
1323
  type: FeedServiceTypes;
1294
1324
  };
@@ -1302,6 +1332,8 @@ export type CrmFeedPropertiesInput = {
1302
1332
  microsoftContacts?: InputMaybe<MicrosoftContactsCrmFeedPropertiesInput>;
1303
1333
  /** The limit of items to be read from feed, defaults to 100. */
1304
1334
  readLimit?: InputMaybe<Scalars['Int']['input']>;
1335
+ /** Salesforce CRM properties. */
1336
+ salesforce?: InputMaybe<SalesforceCrmFeedPropertiesInput>;
1305
1337
  /** Feed service type. */
1306
1338
  type: FeedServiceTypes;
1307
1339
  };
@@ -1315,6 +1347,8 @@ export type CrmFeedPropertiesUpdateInput = {
1315
1347
  microsoftContacts?: InputMaybe<MicrosoftContactsCrmFeedPropertiesUpdateInput>;
1316
1348
  /** The limit of items to be read from feed, defaults to 100. */
1317
1349
  readLimit?: InputMaybe<Scalars['Int']['input']>;
1350
+ /** Salesforce CRM properties. */
1351
+ salesforce?: InputMaybe<SalesforceCrmFeedPropertiesUpdateInput>;
1318
1352
  };
1319
1353
  /** Represents a calendar event attendee. */
1320
1354
  export type CalendarAttendee = {
@@ -2806,7 +2840,9 @@ export declare enum ContentTypes {
2806
2840
  /** Pull Request (i.e. GitHub, GitLab, Bitbucket) */
2807
2841
  PullRequest = "PULL_REQUEST",
2808
2842
  /** Text (i.e. Markdown, HTML, plain text) */
2809
- Text = "TEXT"
2843
+ Text = "TEXT",
2844
+ /** Transcript (i.e. pre-transcribed meeting content) */
2845
+ Transcript = "TRANSCRIPT"
2810
2846
  }
2811
2847
  /** Represents content. */
2812
2848
  export type ContentUpdateInput = {
@@ -5066,6 +5102,34 @@ export type FactUpdateInput = {
5066
5102
  /** The date/time when this fact became valid. */
5067
5103
  validAt?: InputMaybe<Scalars['DateTime']['input']>;
5068
5104
  };
5105
+ /** Represents Fathom meeting transcript properties. */
5106
+ export type FathomProperties = {
5107
+ __typename?: 'FathomProperties';
5108
+ /** Filter meetings created after this date. */
5109
+ afterDate?: Maybe<Scalars['DateTime']['output']>;
5110
+ /** Fathom API key. */
5111
+ apiKey?: Maybe<Scalars['String']['output']>;
5112
+ /** Filter meetings created before this date. */
5113
+ beforeDate?: Maybe<Scalars['DateTime']['output']>;
5114
+ };
5115
+ /** Represents Fathom meeting transcript properties. */
5116
+ export type FathomPropertiesInput = {
5117
+ /** Filter meetings created after this date. */
5118
+ afterDate?: InputMaybe<Scalars['DateTime']['input']>;
5119
+ /** Fathom API key. */
5120
+ apiKey: Scalars['String']['input'];
5121
+ /** Filter meetings created before this date. */
5122
+ beforeDate?: InputMaybe<Scalars['DateTime']['input']>;
5123
+ };
5124
+ /** Represents Fathom meeting transcript properties. */
5125
+ export type FathomPropertiesUpdateInput = {
5126
+ /** Filter meetings created after this date. */
5127
+ afterDate?: InputMaybe<Scalars['DateTime']['input']>;
5128
+ /** Fathom API key. */
5129
+ apiKey?: InputMaybe<Scalars['String']['input']>;
5130
+ /** Filter meetings created before this date. */
5131
+ beforeDate?: InputMaybe<Scalars['DateTime']['input']>;
5132
+ };
5069
5133
  /** Represents a feed. */
5070
5134
  export type Feed = {
5071
5135
  __typename?: 'Feed';
@@ -5103,6 +5167,8 @@ export type Feed = {
5103
5167
  lastPostDate?: Maybe<Scalars['DateTime']['output']>;
5104
5168
  /** The date the feed was last read. */
5105
5169
  lastReadDate?: Maybe<Scalars['DateTime']['output']>;
5170
+ /** The Meeting transcript feed properties. */
5171
+ meeting?: Maybe<MeetingFeedProperties>;
5106
5172
  /** The Microsoft Teams feed properties. */
5107
5173
  microsoftTeams?: Maybe<MicrosoftTeamsFeedProperties>;
5108
5174
  /** The modified date of the feed. */
@@ -5125,6 +5191,8 @@ export type Feed = {
5125
5191
  research?: Maybe<ResearchFeedProperties>;
5126
5192
  /** The RSS feed properties. */
5127
5193
  rss?: Maybe<RssFeedProperties>;
5194
+ /** The Salesforce feed properties. */
5195
+ salesforce?: Maybe<SalesforceFeedProperties>;
5128
5196
  /** The feed schedule policy. */
5129
5197
  schedulePolicy?: Maybe<FeedSchedulePolicy>;
5130
5198
  /** The web search feed properties. */
@@ -5143,6 +5211,8 @@ export type Feed = {
5143
5211
  type: FeedTypes;
5144
5212
  /** The web feed properties. */
5145
5213
  web?: Maybe<WebFeedProperties>;
5214
+ /** The webhook URI for real-time message ingestion. Only returned for Slack feeds with MONITOR schedule. */
5215
+ webhookUri?: Maybe<Scalars['URL']['output']>;
5146
5216
  workflow?: Maybe<Workflow>;
5147
5217
  /** The YouTube feed properties. */
5148
5218
  youtube?: Maybe<YouTubeFeedProperties>;
@@ -5157,12 +5227,18 @@ export declare enum FeedConnectorTypes {
5157
5227
  Atlassian = "ATLASSIAN",
5158
5228
  /** Attio feed connector */
5159
5229
  Attio = "ATTIO",
5230
+ /** Attio Meeting Transcripts feed connector */
5231
+ AttioMeeting = "ATTIO_MEETING",
5160
5232
  /** Microsoft Azure feed connector */
5161
5233
  Azure = "AZURE",
5162
5234
  /** Box feed connector */
5163
5235
  Box = "BOX",
5164
5236
  /** Dropbox feed connector */
5165
5237
  Dropbox = "DROPBOX",
5238
+ /** Fathom feed connector */
5239
+ Fathom = "FATHOM",
5240
+ /** Fireflies.ai feed connector */
5241
+ Fireflies = "FIREFLIES",
5166
5242
  /** GitHub feed connector */
5167
5243
  GitHub = "GIT_HUB",
5168
5244
  /** Google Cloud feed connector */
@@ -5189,6 +5265,10 @@ export declare enum FeedConnectorTypes {
5189
5265
  OneDrive = "ONE_DRIVE",
5190
5266
  /** Parallel feed connector */
5191
5267
  Parallel = "PARALLEL",
5268
+ /** Salesforce feed connector */
5269
+ Salesforce = "SALESFORCE",
5270
+ /** Salesforce Einstein Conversation Insights feed connector */
5271
+ SalesforceEci = "SALESFORCE_ECI",
5192
5272
  /** Microsoft SharePoint feed connector */
5193
5273
  SharePoint = "SHARE_POINT",
5194
5274
  /** Zendesk feed connector */
@@ -5247,6 +5327,8 @@ export type FeedInput = {
5247
5327
  intercom?: InputMaybe<IntercomFeedPropertiesInput>;
5248
5328
  /** The issue feed properties. */
5249
5329
  issue?: InputMaybe<IssueFeedPropertiesInput>;
5330
+ /** The Meeting transcript feed properties. */
5331
+ meeting?: InputMaybe<MeetingFeedPropertiesInput>;
5250
5332
  /** The Microsoft Teams feed properties. */
5251
5333
  microsoftTeams?: InputMaybe<MicrosoftTeamsFeedPropertiesInput>;
5252
5334
  /** The name of the feed. */
@@ -5261,6 +5343,8 @@ export type FeedInput = {
5261
5343
  research?: InputMaybe<ResearchFeedPropertiesInput>;
5262
5344
  /** The RSS feed properties. */
5263
5345
  rss?: InputMaybe<RssFeedPropertiesInput>;
5346
+ /** The Salesforce feed properties. */
5347
+ salesforce?: InputMaybe<SalesforceFeedPropertiesInput>;
5264
5348
  /** The feed schedule policy. */
5265
5349
  schedulePolicy?: InputMaybe<FeedSchedulePolicyInput>;
5266
5350
  /** The web search feed properties. */
@@ -5316,6 +5400,8 @@ export type FeedSchedulePolicyInput = {
5316
5400
  export declare enum FeedServiceTypes {
5317
5401
  /** Atlassian Jira feed service */
5318
5402
  AtlassianJira = "ATLASSIAN_JIRA",
5403
+ /** Attio Meeting Transcripts feed service */
5404
+ AttioMeeting = "ATTIO_MEETING",
5319
5405
  /** Attio Notes feed service */
5320
5406
  AttioNotes = "ATTIO_NOTES",
5321
5407
  /** Attio Objects feed service */
@@ -5330,6 +5416,10 @@ export declare enum FeedServiceTypes {
5330
5416
  Box = "BOX",
5331
5417
  /** Dropbox feed service */
5332
5418
  Dropbox = "DROPBOX",
5419
+ /** Fathom feed service */
5420
+ Fathom = "FATHOM",
5421
+ /** Fireflies.ai feed service */
5422
+ Fireflies = "FIREFLIES",
5333
5423
  /** GitHub feed service */
5334
5424
  GitHub = "GIT_HUB",
5335
5425
  /** GitHub Commits feed service */
@@ -5366,6 +5456,14 @@ export declare enum FeedServiceTypes {
5366
5456
  Parallel = "PARALLEL",
5367
5457
  /** AWS S3 Blob feed service */
5368
5458
  S3Blob = "S3_BLOB",
5459
+ /** Salesforce Einstein Conversation Insights feed service */
5460
+ SalesforceEci = "SALESFORCE_ECI",
5461
+ /** Salesforce Notes feed service */
5462
+ SalesforceNotes = "SALESFORCE_NOTES",
5463
+ /** Salesforce Objects feed service */
5464
+ SalesforceObjects = "SALESFORCE_OBJECTS",
5465
+ /** Salesforce Tasks feed service */
5466
+ SalesforceTasks = "SALESFORCE_TASKS",
5369
5467
  /** Microsoft SharePoint feed service */
5370
5468
  SharePoint = "SHARE_POINT",
5371
5469
  /** Trello feed service */
@@ -5402,6 +5500,8 @@ export declare enum FeedTypes {
5402
5500
  Intercom = "INTERCOM",
5403
5501
  /** Issue feed */
5404
5502
  Issue = "ISSUE",
5503
+ /** Meeting transcript feed */
5504
+ Meeting = "MEETING",
5405
5505
  /** Microsoft Teams channel feed */
5406
5506
  MicrosoftTeams = "MICROSOFT_TEAMS",
5407
5507
  /** Notion feed */
@@ -5414,6 +5514,8 @@ export declare enum FeedTypes {
5414
5514
  Research = "RESEARCH",
5415
5515
  /** RSS feed */
5416
5516
  Rss = "RSS",
5517
+ /** Salesforce feed */
5518
+ Salesforce = "SALESFORCE",
5417
5519
  /** Web Search feed */
5418
5520
  Search = "SEARCH",
5419
5521
  /** Cloud storage site feed */
@@ -5453,6 +5555,8 @@ export type FeedUpdateInput = {
5453
5555
  intercom?: InputMaybe<IntercomFeedPropertiesUpdateInput>;
5454
5556
  /** The issue feed properties. */
5455
5557
  issue?: InputMaybe<IssueFeedPropertiesUpdateInput>;
5558
+ /** The Meeting transcript feed properties. */
5559
+ meeting?: InputMaybe<MeetingFeedPropertiesUpdateInput>;
5456
5560
  /** The Microsoft Teams feed properties. */
5457
5561
  microsoftTeams?: InputMaybe<MicrosoftTeamsFeedPropertiesUpdateInput>;
5458
5562
  /** The name of the feed. */
@@ -5467,6 +5571,8 @@ export type FeedUpdateInput = {
5467
5571
  research?: InputMaybe<ResearchFeedPropertiesUpdateInput>;
5468
5572
  /** The RSS feed properties. */
5469
5573
  rss?: InputMaybe<RssFeedPropertiesUpdateInput>;
5574
+ /** The Salesforce feed properties. */
5575
+ salesforce?: InputMaybe<SalesforceFeedPropertiesUpdateInput>;
5470
5576
  /** The feed schedule policy. */
5471
5577
  schedulePolicy?: InputMaybe<FeedSchedulePolicyInput>;
5472
5578
  /** The web search feed properties. */
@@ -5607,6 +5713,34 @@ export declare enum FilterMode {
5607
5713
  /** Match only if ALL items the entity has are within the specified list. Entity cannot have items outside the filter list. */
5608
5714
  Only = "ONLY"
5609
5715
  }
5716
+ /** Represents Fireflies.ai feed properties. */
5717
+ export type FirefliesFeedProperties = {
5718
+ __typename?: 'FirefliesFeedProperties';
5719
+ /** Filter transcripts after this date. */
5720
+ afterDate?: Maybe<Scalars['DateTime']['output']>;
5721
+ /** Fireflies.ai API key. */
5722
+ apiKey?: Maybe<Scalars['String']['output']>;
5723
+ /** Filter transcripts before this date. */
5724
+ beforeDate?: Maybe<Scalars['DateTime']['output']>;
5725
+ };
5726
+ /** Represents Fireflies.ai feed properties. */
5727
+ export type FirefliesFeedPropertiesInput = {
5728
+ /** Filter transcripts after this date. */
5729
+ afterDate?: InputMaybe<Scalars['DateTime']['input']>;
5730
+ /** Fireflies.ai API key. */
5731
+ apiKey: Scalars['String']['input'];
5732
+ /** Filter transcripts before this date. */
5733
+ beforeDate?: InputMaybe<Scalars['DateTime']['input']>;
5734
+ };
5735
+ /** Represents Fireflies.ai feed properties. */
5736
+ export type FirefliesFeedPropertiesUpdateInput = {
5737
+ /** Filter transcripts after this date. */
5738
+ afterDate?: InputMaybe<Scalars['DateTime']['input']>;
5739
+ /** Fireflies.ai API key. */
5740
+ apiKey?: InputMaybe<Scalars['String']['input']>;
5741
+ /** Filter transcripts before this date. */
5742
+ beforeDate?: InputMaybe<Scalars['DateTime']['input']>;
5743
+ };
5610
5744
  /** Represents geometry metadata. */
5611
5745
  export type GeometryMetadata = {
5612
5746
  __typename?: 'GeometryMetadata';
@@ -7669,6 +7803,8 @@ export type IssueFeedProperties = {
7669
7803
  linear?: Maybe<LinearFeedProperties>;
7670
7804
  /** The limit of items to be read from feed, defaults to 100. */
7671
7805
  readLimit?: Maybe<Scalars['Int']['output']>;
7806
+ /** Salesforce Tasks properties. */
7807
+ salesforce?: Maybe<SalesforceTasksFeedProperties>;
7672
7808
  /** Trello properties. */
7673
7809
  trello?: Maybe<TrelloFeedProperties>;
7674
7810
  /** Feed service type. */
@@ -7692,6 +7828,8 @@ export type IssueFeedPropertiesInput = {
7692
7828
  linear?: InputMaybe<LinearFeedPropertiesInput>;
7693
7829
  /** The limit of items to be read from feed, defaults to 100. */
7694
7830
  readLimit?: InputMaybe<Scalars['Int']['input']>;
7831
+ /** Salesforce Tasks properties. */
7832
+ salesforce?: InputMaybe<SalesforceTasksFeedPropertiesInput>;
7695
7833
  /** Trello properties. */
7696
7834
  trello?: InputMaybe<TrelloFeedPropertiesInput>;
7697
7835
  /** Feed service type. */
@@ -7715,6 +7853,8 @@ export type IssueFeedPropertiesUpdateInput = {
7715
7853
  linear?: InputMaybe<LinearFeedPropertiesUpdateInput>;
7716
7854
  /** The limit of items to be read from feed, defaults to 100. */
7717
7855
  readLimit?: InputMaybe<Scalars['Int']['input']>;
7856
+ /** Salesforce Tasks properties. */
7857
+ salesforce?: InputMaybe<SalesforceTasksFeedPropertiesUpdateInput>;
7718
7858
  /** Trello properties. */
7719
7859
  trello?: InputMaybe<TrelloFeedPropertiesUpdateInput>;
7720
7860
  /** Zendesk Tickets properties. */
@@ -10068,6 +10208,46 @@ export type MedicalTherapyUpdateInput = {
10068
10208
  /** The medicaltherapy URI. */
10069
10209
  uri?: InputMaybe<Scalars['URL']['input']>;
10070
10210
  };
10211
+ /** Represents meeting transcript feed properties. */
10212
+ export type MeetingFeedProperties = {
10213
+ __typename?: 'MeetingFeedProperties';
10214
+ /** Attio meeting transcript properties. */
10215
+ attio?: Maybe<AttioMeetingProperties>;
10216
+ /** Feed connector type. */
10217
+ connectorType: FeedConnectorTypes;
10218
+ /** Fathom meeting properties. */
10219
+ fathom?: Maybe<FathomProperties>;
10220
+ /** Fireflies.ai properties. */
10221
+ fireflies?: Maybe<FirefliesFeedProperties>;
10222
+ /** The limit of items to be read from feed, defaults to 100. */
10223
+ readLimit?: Maybe<Scalars['Int']['output']>;
10224
+ /** Feed service type. */
10225
+ type: FeedServiceTypes;
10226
+ };
10227
+ /** Represents meeting transcript feed properties. */
10228
+ export type MeetingFeedPropertiesInput = {
10229
+ /** Attio meeting transcript properties. */
10230
+ attio?: InputMaybe<AttioMeetingPropertiesInput>;
10231
+ /** Fathom meeting properties. */
10232
+ fathom?: InputMaybe<FathomPropertiesInput>;
10233
+ /** Fireflies.ai properties. */
10234
+ fireflies?: InputMaybe<FirefliesFeedPropertiesInput>;
10235
+ /** The limit of items to be read from feed, defaults to 100. */
10236
+ readLimit?: InputMaybe<Scalars['Int']['input']>;
10237
+ /** Feed service type. */
10238
+ type: FeedServiceTypes;
10239
+ };
10240
+ /** Represents meeting transcript feed properties. */
10241
+ export type MeetingFeedPropertiesUpdateInput = {
10242
+ /** Attio meeting transcript properties. */
10243
+ attio?: InputMaybe<AttioMeetingPropertiesUpdateInput>;
10244
+ /** Fathom meeting properties. */
10245
+ fathom?: InputMaybe<FathomPropertiesUpdateInput>;
10246
+ /** Fireflies.ai properties. */
10247
+ fireflies?: InputMaybe<FirefliesFeedPropertiesUpdateInput>;
10248
+ /** The limit of items to be read from feed, defaults to 100. */
10249
+ readLimit?: InputMaybe<Scalars['Int']['input']>;
10250
+ };
10071
10251
  /** Represents an entity mention in a fact. */
10072
10252
  export type MentionReference = {
10073
10253
  __typename?: 'MentionReference';
@@ -16600,6 +16780,168 @@ export type RevisionStrategyUpdateInput = {
16600
16780
  /** The revision strategy type. */
16601
16781
  type?: InputMaybe<RevisionStrategyTypes>;
16602
16782
  };
16783
+ export declare enum SalesforceAuthenticationTypes {
16784
+ Connector = "CONNECTOR",
16785
+ User = "USER"
16786
+ }
16787
+ /** Represents Salesforce CRM feed properties. */
16788
+ export type SalesforceCrmFeedProperties = {
16789
+ __typename?: 'SalesforceCRMFeedProperties';
16790
+ /** Salesforce authentication type. */
16791
+ authenticationType?: Maybe<SalesforceAuthenticationTypes>;
16792
+ /** Salesforce OAuth2 client identifier (Consumer Key). */
16793
+ clientId?: Maybe<Scalars['String']['output']>;
16794
+ /** Salesforce OAuth2 client secret (Consumer Secret). */
16795
+ clientSecret?: Maybe<Scalars['String']['output']>;
16796
+ /** Authentication connector reference. */
16797
+ connector?: Maybe<EntityReference>;
16798
+ /** Salesforce instance URL, optional for reference (determined automatically from OAuth token response). */
16799
+ instanceUrl?: Maybe<Scalars['String']['output']>;
16800
+ /** Whether this is a Salesforce sandbox environment (determines OAuth endpoint). */
16801
+ isSandbox?: Maybe<Scalars['Boolean']['output']>;
16802
+ /** Salesforce OAuth2 refresh token. */
16803
+ refreshToken?: Maybe<Scalars['String']['output']>;
16804
+ };
16805
+ /** Represents Salesforce CRM feed properties. */
16806
+ export type SalesforceCrmFeedPropertiesInput = {
16807
+ /** Salesforce authentication type, defaults to User. */
16808
+ authenticationType?: InputMaybe<SalesforceAuthenticationTypes>;
16809
+ /** Salesforce OAuth2 client identifier (Consumer Key), for User authentication type. */
16810
+ clientId?: InputMaybe<Scalars['String']['input']>;
16811
+ /** Salesforce OAuth2 client secret (Consumer Secret), for User authentication type. */
16812
+ clientSecret?: InputMaybe<Scalars['String']['input']>;
16813
+ /** The authentication connector reference. */
16814
+ connector?: InputMaybe<EntityReferenceInput>;
16815
+ /** Salesforce instance URL, optional for reference (determined automatically from OAuth token response). */
16816
+ instanceUrl?: InputMaybe<Scalars['String']['input']>;
16817
+ /** Whether this is a Salesforce sandbox environment (determines OAuth endpoint). */
16818
+ isSandbox?: InputMaybe<Scalars['Boolean']['input']>;
16819
+ /** Salesforce OAuth2 refresh token, for User authentication type. */
16820
+ refreshToken?: InputMaybe<Scalars['String']['input']>;
16821
+ };
16822
+ /** Represents Salesforce CRM feed properties. */
16823
+ export type SalesforceCrmFeedPropertiesUpdateInput = {
16824
+ /** Salesforce authentication type, defaults to User. */
16825
+ authenticationType?: InputMaybe<SalesforceAuthenticationTypes>;
16826
+ /** Salesforce OAuth2 client identifier (Consumer Key), for User authentication type. */
16827
+ clientId?: InputMaybe<Scalars['String']['input']>;
16828
+ /** Salesforce OAuth2 client secret (Consumer Secret), for User authentication type. */
16829
+ clientSecret?: InputMaybe<Scalars['String']['input']>;
16830
+ /** The authentication connector reference. */
16831
+ connector?: InputMaybe<EntityReferenceInput>;
16832
+ /** Salesforce instance URL, optional for reference (determined automatically from OAuth token response). */
16833
+ instanceUrl?: InputMaybe<Scalars['String']['input']>;
16834
+ /** Whether this is a Salesforce sandbox environment (determines OAuth endpoint). */
16835
+ isSandbox?: InputMaybe<Scalars['Boolean']['input']>;
16836
+ /** Salesforce OAuth2 refresh token, for User authentication type. */
16837
+ refreshToken?: InputMaybe<Scalars['String']['input']>;
16838
+ };
16839
+ export declare enum SalesforceFeedAuthenticationTypes {
16840
+ Connector = "CONNECTOR",
16841
+ User = "USER"
16842
+ }
16843
+ /** Represents Salesforce feed properties. */
16844
+ export type SalesforceFeedProperties = {
16845
+ __typename?: 'SalesforceFeedProperties';
16846
+ /** Salesforce authentication type. */
16847
+ authenticationType?: Maybe<SalesforceFeedAuthenticationTypes>;
16848
+ /** Salesforce OAuth2 client identifier (Consumer Key from Connected App). */
16849
+ clientId?: Maybe<Scalars['String']['output']>;
16850
+ /** Salesforce OAuth2 client secret (Consumer Secret from Connected App). */
16851
+ clientSecret?: Maybe<Scalars['String']['output']>;
16852
+ /** Connector reference for credential retrieval. */
16853
+ connector?: Maybe<EntityReference>;
16854
+ /** Use Salesforce sandbox environment. */
16855
+ isSandbox?: Maybe<Scalars['Boolean']['output']>;
16856
+ /** The limit of items to be read from feed, defaults to 100. */
16857
+ readLimit?: Maybe<Scalars['Int']['output']>;
16858
+ /** Salesforce OAuth2 refresh token. */
16859
+ refreshToken?: Maybe<Scalars['String']['output']>;
16860
+ };
16861
+ /** Represents Salesforce feed properties. */
16862
+ export type SalesforceFeedPropertiesInput = {
16863
+ /** Salesforce authentication type. */
16864
+ authenticationType?: InputMaybe<SalesforceFeedAuthenticationTypes>;
16865
+ /** Salesforce OAuth2 client identifier (Consumer Key from Connected App). */
16866
+ clientId?: InputMaybe<Scalars['String']['input']>;
16867
+ /** Salesforce OAuth2 client secret (Consumer Secret from Connected App). */
16868
+ clientSecret?: InputMaybe<Scalars['String']['input']>;
16869
+ /** Connector reference for credential retrieval. */
16870
+ connector?: InputMaybe<EntityReferenceInput>;
16871
+ /** Use Salesforce sandbox environment. */
16872
+ isSandbox?: InputMaybe<Scalars['Boolean']['input']>;
16873
+ /** The limit of items to be read from feed, defaults to 100. */
16874
+ readLimit?: InputMaybe<Scalars['Int']['input']>;
16875
+ /** Salesforce OAuth2 refresh token. */
16876
+ refreshToken?: InputMaybe<Scalars['String']['input']>;
16877
+ };
16878
+ /** Represents Salesforce feed properties. */
16879
+ export type SalesforceFeedPropertiesUpdateInput = {
16880
+ /** Salesforce authentication type. */
16881
+ authenticationType?: InputMaybe<SalesforceFeedAuthenticationTypes>;
16882
+ /** Salesforce OAuth2 client identifier (Consumer Key from Connected App). */
16883
+ clientId?: InputMaybe<Scalars['String']['input']>;
16884
+ /** Salesforce OAuth2 client secret (Consumer Secret from Connected App). */
16885
+ clientSecret?: InputMaybe<Scalars['String']['input']>;
16886
+ /** Connector reference for credential retrieval. */
16887
+ connector?: InputMaybe<EntityReferenceInput>;
16888
+ /** Use Salesforce sandbox environment. */
16889
+ isSandbox?: InputMaybe<Scalars['Boolean']['input']>;
16890
+ /** The limit of items to be read from feed, defaults to 100. */
16891
+ readLimit?: InputMaybe<Scalars['Int']['input']>;
16892
+ /** Salesforce OAuth2 refresh token. */
16893
+ refreshToken?: InputMaybe<Scalars['String']['input']>;
16894
+ };
16895
+ export declare enum SalesforceIssueAuthenticationTypes {
16896
+ Connector = "CONNECTOR",
16897
+ User = "USER"
16898
+ }
16899
+ /** Represents Salesforce Tasks feed properties. */
16900
+ export type SalesforceTasksFeedProperties = {
16901
+ __typename?: 'SalesforceTasksFeedProperties';
16902
+ /** Salesforce authentication type. */
16903
+ authenticationType?: Maybe<SalesforceIssueAuthenticationTypes>;
16904
+ /** Salesforce OAuth2 client identifier (Consumer Key from Connected App). */
16905
+ clientId?: Maybe<Scalars['String']['output']>;
16906
+ /** Salesforce OAuth2 client secret (Consumer Secret from Connected App). */
16907
+ clientSecret?: Maybe<Scalars['String']['output']>;
16908
+ /** Connector reference for credential retrieval. */
16909
+ connector?: Maybe<EntityReference>;
16910
+ /** Use Salesforce sandbox environment. */
16911
+ isSandbox?: Maybe<Scalars['Boolean']['output']>;
16912
+ /** Salesforce OAuth2 refresh token. */
16913
+ refreshToken?: Maybe<Scalars['String']['output']>;
16914
+ };
16915
+ /** Represents Salesforce Tasks feed properties. */
16916
+ export type SalesforceTasksFeedPropertiesInput = {
16917
+ /** Salesforce authentication type. */
16918
+ authenticationType?: InputMaybe<SalesforceIssueAuthenticationTypes>;
16919
+ /** Salesforce OAuth2 client identifier (Consumer Key from Connected App). */
16920
+ clientId?: InputMaybe<Scalars['String']['input']>;
16921
+ /** Salesforce OAuth2 client secret (Consumer Secret from Connected App). */
16922
+ clientSecret?: InputMaybe<Scalars['String']['input']>;
16923
+ /** Connector reference for credential retrieval. */
16924
+ connector?: InputMaybe<EntityReferenceInput>;
16925
+ /** Use Salesforce sandbox environment. */
16926
+ isSandbox?: InputMaybe<Scalars['Boolean']['input']>;
16927
+ /** Salesforce OAuth2 refresh token. */
16928
+ refreshToken?: InputMaybe<Scalars['String']['input']>;
16929
+ };
16930
+ /** Represents Salesforce Tasks feed properties. */
16931
+ export type SalesforceTasksFeedPropertiesUpdateInput = {
16932
+ /** Salesforce authentication type. */
16933
+ authenticationType?: InputMaybe<SalesforceIssueAuthenticationTypes>;
16934
+ /** Salesforce OAuth2 client identifier (Consumer Key from Connected App). */
16935
+ clientId?: InputMaybe<Scalars['String']['input']>;
16936
+ /** Salesforce OAuth2 client secret (Consumer Secret from Connected App). */
16937
+ clientSecret?: InputMaybe<Scalars['String']['input']>;
16938
+ /** Connector reference for credential retrieval. */
16939
+ connector?: InputMaybe<EntityReferenceInput>;
16940
+ /** Use Salesforce sandbox environment. */
16941
+ isSandbox?: InputMaybe<Scalars['Boolean']['input']>;
16942
+ /** Salesforce OAuth2 refresh token. */
16943
+ refreshToken?: InputMaybe<Scalars['String']['input']>;
16944
+ };
16603
16945
  /** SDK type */
16604
16946
  export declare enum SdkTypes {
16605
16947
  /** .NET SDK */
@@ -17011,6 +17353,8 @@ export type SlackFeedPropertiesInput = {
17011
17353
  readLimit?: InputMaybe<Scalars['Int']['input']>;
17012
17354
  /** Slack OAuth refresh token. */
17013
17355
  refreshToken?: InputMaybe<Scalars['String']['input']>;
17356
+ /** The Slack App signing secret for webhook validation. Required when using MONITOR schedule (real-time webhook mode). */
17357
+ signingSecret?: InputMaybe<Scalars['String']['input']>;
17014
17358
  /** The Slack bot token, required for Token authentication type. */
17015
17359
  token?: InputMaybe<Scalars['String']['input']>;
17016
17360
  /** Feed listing type, i.e. past or new messages. */
@@ -17034,6 +17378,8 @@ export type SlackFeedPropertiesUpdateInput = {
17034
17378
  readLimit?: InputMaybe<Scalars['Int']['input']>;
17035
17379
  /** Slack OAuth refresh token. */
17036
17380
  refreshToken?: InputMaybe<Scalars['String']['input']>;
17381
+ /** The Slack App signing secret for webhook validation. */
17382
+ signingSecret?: InputMaybe<Scalars['String']['input']>;
17037
17383
  /** The Slack bot token. */
17038
17384
  token?: InputMaybe<Scalars['String']['input']>;
17039
17385
  /** Feed listing type, i.e. past or new messages. */
@@ -27682,6 +28028,18 @@ export type GetFeedQuery = {
27682
28028
  __typename?: 'AttioTasksFeedProperties';
27683
28029
  apiKey: string;
27684
28030
  } | null;
28031
+ salesforce?: {
28032
+ __typename?: 'SalesforceTasksFeedProperties';
28033
+ authenticationType?: SalesforceIssueAuthenticationTypes | null;
28034
+ isSandbox?: boolean | null;
28035
+ clientId?: string | null;
28036
+ clientSecret?: string | null;
28037
+ refreshToken?: string | null;
28038
+ connector?: {
28039
+ __typename?: 'EntityReference';
28040
+ id: string;
28041
+ } | null;
28042
+ } | null;
27685
28043
  } | null;
27686
28044
  commit?: {
27687
28045
  __typename?: 'CommitFeedProperties';
@@ -27755,6 +28113,19 @@ export type GetFeedQuery = {
27755
28113
  id: string;
27756
28114
  } | null;
27757
28115
  } | null;
28116
+ salesforce?: {
28117
+ __typename?: 'SalesforceCRMFeedProperties';
28118
+ authenticationType?: SalesforceAuthenticationTypes | null;
28119
+ instanceUrl?: string | null;
28120
+ isSandbox?: boolean | null;
28121
+ clientId?: string | null;
28122
+ clientSecret?: string | null;
28123
+ refreshToken?: string | null;
28124
+ connector?: {
28125
+ __typename?: 'EntityReference';
28126
+ id: string;
28127
+ } | null;
28128
+ } | null;
27758
28129
  } | null;
27759
28130
  calendar?: {
27760
28131
  __typename?: 'CalendarFeedProperties';
@@ -27794,6 +28165,29 @@ export type GetFeedQuery = {
27794
28165
  } | null;
27795
28166
  } | null;
27796
28167
  } | null;
28168
+ meeting?: {
28169
+ __typename?: 'MeetingFeedProperties';
28170
+ type: FeedServiceTypes;
28171
+ readLimit?: number | null;
28172
+ fireflies?: {
28173
+ __typename?: 'FirefliesFeedProperties';
28174
+ apiKey?: string | null;
28175
+ beforeDate?: any | null;
28176
+ afterDate?: any | null;
28177
+ } | null;
28178
+ attio?: {
28179
+ __typename?: 'AttioMeetingProperties';
28180
+ apiKey?: string | null;
28181
+ afterDate?: any | null;
28182
+ beforeDate?: any | null;
28183
+ } | null;
28184
+ fathom?: {
28185
+ __typename?: 'FathomProperties';
28186
+ apiKey?: string | null;
28187
+ afterDate?: any | null;
28188
+ beforeDate?: any | null;
28189
+ } | null;
28190
+ } | null;
27797
28191
  rss?: {
27798
28192
  __typename?: 'RSSFeedProperties';
27799
28193
  readLimit?: number | null;
@@ -27899,6 +28293,19 @@ export type GetFeedQuery = {
27899
28293
  readLimit?: number | null;
27900
28294
  apiKey: string;
27901
28295
  } | null;
28296
+ salesforce?: {
28297
+ __typename?: 'SalesforceFeedProperties';
28298
+ readLimit?: number | null;
28299
+ authenticationType?: SalesforceFeedAuthenticationTypes | null;
28300
+ isSandbox?: boolean | null;
28301
+ clientId?: string | null;
28302
+ clientSecret?: string | null;
28303
+ refreshToken?: string | null;
28304
+ connector?: {
28305
+ __typename?: 'EntityReference';
28306
+ id: string;
28307
+ } | null;
28308
+ } | null;
27902
28309
  research?: {
27903
28310
  __typename?: 'ResearchFeedProperties';
27904
28311
  readLimit?: number | null;
@@ -28249,6 +28656,18 @@ export type QueryFeedsQuery = {
28249
28656
  __typename?: 'AttioTasksFeedProperties';
28250
28657
  apiKey: string;
28251
28658
  } | null;
28659
+ salesforce?: {
28660
+ __typename?: 'SalesforceTasksFeedProperties';
28661
+ authenticationType?: SalesforceIssueAuthenticationTypes | null;
28662
+ isSandbox?: boolean | null;
28663
+ clientId?: string | null;
28664
+ clientSecret?: string | null;
28665
+ refreshToken?: string | null;
28666
+ connector?: {
28667
+ __typename?: 'EntityReference';
28668
+ id: string;
28669
+ } | null;
28670
+ } | null;
28252
28671
  } | null;
28253
28672
  commit?: {
28254
28673
  __typename?: 'CommitFeedProperties';
@@ -28322,6 +28741,19 @@ export type QueryFeedsQuery = {
28322
28741
  id: string;
28323
28742
  } | null;
28324
28743
  } | null;
28744
+ salesforce?: {
28745
+ __typename?: 'SalesforceCRMFeedProperties';
28746
+ authenticationType?: SalesforceAuthenticationTypes | null;
28747
+ instanceUrl?: string | null;
28748
+ isSandbox?: boolean | null;
28749
+ clientId?: string | null;
28750
+ clientSecret?: string | null;
28751
+ refreshToken?: string | null;
28752
+ connector?: {
28753
+ __typename?: 'EntityReference';
28754
+ id: string;
28755
+ } | null;
28756
+ } | null;
28325
28757
  } | null;
28326
28758
  calendar?: {
28327
28759
  __typename?: 'CalendarFeedProperties';
@@ -28361,6 +28793,29 @@ export type QueryFeedsQuery = {
28361
28793
  } | null;
28362
28794
  } | null;
28363
28795
  } | null;
28796
+ meeting?: {
28797
+ __typename?: 'MeetingFeedProperties';
28798
+ type: FeedServiceTypes;
28799
+ readLimit?: number | null;
28800
+ fireflies?: {
28801
+ __typename?: 'FirefliesFeedProperties';
28802
+ apiKey?: string | null;
28803
+ beforeDate?: any | null;
28804
+ afterDate?: any | null;
28805
+ } | null;
28806
+ attio?: {
28807
+ __typename?: 'AttioMeetingProperties';
28808
+ apiKey?: string | null;
28809
+ afterDate?: any | null;
28810
+ beforeDate?: any | null;
28811
+ } | null;
28812
+ fathom?: {
28813
+ __typename?: 'FathomProperties';
28814
+ apiKey?: string | null;
28815
+ afterDate?: any | null;
28816
+ beforeDate?: any | null;
28817
+ } | null;
28818
+ } | null;
28364
28819
  rss?: {
28365
28820
  __typename?: 'RSSFeedProperties';
28366
28821
  readLimit?: number | null;
@@ -28466,6 +28921,19 @@ export type QueryFeedsQuery = {
28466
28921
  readLimit?: number | null;
28467
28922
  apiKey: string;
28468
28923
  } | null;
28924
+ salesforce?: {
28925
+ __typename?: 'SalesforceFeedProperties';
28926
+ readLimit?: number | null;
28927
+ authenticationType?: SalesforceFeedAuthenticationTypes | null;
28928
+ isSandbox?: boolean | null;
28929
+ clientId?: string | null;
28930
+ clientSecret?: string | null;
28931
+ refreshToken?: string | null;
28932
+ connector?: {
28933
+ __typename?: 'EntityReference';
28934
+ id: string;
28935
+ } | null;
28936
+ } | null;
28469
28937
  research?: {
28470
28938
  __typename?: 'ResearchFeedProperties';
28471
28939
  readLimit?: number | null;
@@ -520,6 +520,8 @@ export var ContentTypes;
520
520
  ContentTypes["PullRequest"] = "PULL_REQUEST";
521
521
  /** Text (i.e. Markdown, HTML, plain text) */
522
522
  ContentTypes["Text"] = "TEXT";
523
+ /** Transcript (i.e. pre-transcribed meeting content) */
524
+ ContentTypes["Transcript"] = "TRANSCRIPT";
523
525
  })(ContentTypes || (ContentTypes = {}));
524
526
  /** Conversation message role type */
525
527
  export var ConversationRoleTypes;
@@ -946,12 +948,18 @@ export var FeedConnectorTypes;
946
948
  FeedConnectorTypes["Atlassian"] = "ATLASSIAN";
947
949
  /** Attio feed connector */
948
950
  FeedConnectorTypes["Attio"] = "ATTIO";
951
+ /** Attio Meeting Transcripts feed connector */
952
+ FeedConnectorTypes["AttioMeeting"] = "ATTIO_MEETING";
949
953
  /** Microsoft Azure feed connector */
950
954
  FeedConnectorTypes["Azure"] = "AZURE";
951
955
  /** Box feed connector */
952
956
  FeedConnectorTypes["Box"] = "BOX";
953
957
  /** Dropbox feed connector */
954
958
  FeedConnectorTypes["Dropbox"] = "DROPBOX";
959
+ /** Fathom feed connector */
960
+ FeedConnectorTypes["Fathom"] = "FATHOM";
961
+ /** Fireflies.ai feed connector */
962
+ FeedConnectorTypes["Fireflies"] = "FIREFLIES";
955
963
  /** GitHub feed connector */
956
964
  FeedConnectorTypes["GitHub"] = "GIT_HUB";
957
965
  /** Google Cloud feed connector */
@@ -978,6 +986,10 @@ export var FeedConnectorTypes;
978
986
  FeedConnectorTypes["OneDrive"] = "ONE_DRIVE";
979
987
  /** Parallel feed connector */
980
988
  FeedConnectorTypes["Parallel"] = "PARALLEL";
989
+ /** Salesforce feed connector */
990
+ FeedConnectorTypes["Salesforce"] = "SALESFORCE";
991
+ /** Salesforce Einstein Conversation Insights feed connector */
992
+ FeedConnectorTypes["SalesforceEci"] = "SALESFORCE_ECI";
981
993
  /** Microsoft SharePoint feed connector */
982
994
  FeedConnectorTypes["SharePoint"] = "SHARE_POINT";
983
995
  /** Zendesk feed connector */
@@ -996,6 +1008,8 @@ export var FeedServiceTypes;
996
1008
  (function (FeedServiceTypes) {
997
1009
  /** Atlassian Jira feed service */
998
1010
  FeedServiceTypes["AtlassianJira"] = "ATLASSIAN_JIRA";
1011
+ /** Attio Meeting Transcripts feed service */
1012
+ FeedServiceTypes["AttioMeeting"] = "ATTIO_MEETING";
999
1013
  /** Attio Notes feed service */
1000
1014
  FeedServiceTypes["AttioNotes"] = "ATTIO_NOTES";
1001
1015
  /** Attio Objects feed service */
@@ -1010,6 +1024,10 @@ export var FeedServiceTypes;
1010
1024
  FeedServiceTypes["Box"] = "BOX";
1011
1025
  /** Dropbox feed service */
1012
1026
  FeedServiceTypes["Dropbox"] = "DROPBOX";
1027
+ /** Fathom feed service */
1028
+ FeedServiceTypes["Fathom"] = "FATHOM";
1029
+ /** Fireflies.ai feed service */
1030
+ FeedServiceTypes["Fireflies"] = "FIREFLIES";
1013
1031
  /** GitHub feed service */
1014
1032
  FeedServiceTypes["GitHub"] = "GIT_HUB";
1015
1033
  /** GitHub Commits feed service */
@@ -1046,6 +1064,14 @@ export var FeedServiceTypes;
1046
1064
  FeedServiceTypes["Parallel"] = "PARALLEL";
1047
1065
  /** AWS S3 Blob feed service */
1048
1066
  FeedServiceTypes["S3Blob"] = "S3_BLOB";
1067
+ /** Salesforce Einstein Conversation Insights feed service */
1068
+ FeedServiceTypes["SalesforceEci"] = "SALESFORCE_ECI";
1069
+ /** Salesforce Notes feed service */
1070
+ FeedServiceTypes["SalesforceNotes"] = "SALESFORCE_NOTES";
1071
+ /** Salesforce Objects feed service */
1072
+ FeedServiceTypes["SalesforceObjects"] = "SALESFORCE_OBJECTS";
1073
+ /** Salesforce Tasks feed service */
1074
+ FeedServiceTypes["SalesforceTasks"] = "SALESFORCE_TASKS";
1049
1075
  /** Microsoft SharePoint feed service */
1050
1076
  FeedServiceTypes["SharePoint"] = "SHARE_POINT";
1051
1077
  /** Trello feed service */
@@ -1084,6 +1110,8 @@ export var FeedTypes;
1084
1110
  FeedTypes["Intercom"] = "INTERCOM";
1085
1111
  /** Issue feed */
1086
1112
  FeedTypes["Issue"] = "ISSUE";
1113
+ /** Meeting transcript feed */
1114
+ FeedTypes["Meeting"] = "MEETING";
1087
1115
  /** Microsoft Teams channel feed */
1088
1116
  FeedTypes["MicrosoftTeams"] = "MICROSOFT_TEAMS";
1089
1117
  /** Notion feed */
@@ -1096,6 +1124,8 @@ export var FeedTypes;
1096
1124
  FeedTypes["Research"] = "RESEARCH";
1097
1125
  /** RSS feed */
1098
1126
  FeedTypes["Rss"] = "RSS";
1127
+ /** Salesforce feed */
1128
+ FeedTypes["Salesforce"] = "SALESFORCE";
1099
1129
  /** Web Search feed */
1100
1130
  FeedTypes["Search"] = "SEARCH";
1101
1131
  /** Cloud storage site feed */
@@ -2300,6 +2330,21 @@ export var RevisionStrategyTypes;
2300
2330
  /** Prompt LLM to revise completion, and provide updated response */
2301
2331
  RevisionStrategyTypes["Revise"] = "REVISE";
2302
2332
  })(RevisionStrategyTypes || (RevisionStrategyTypes = {}));
2333
+ export var SalesforceAuthenticationTypes;
2334
+ (function (SalesforceAuthenticationTypes) {
2335
+ SalesforceAuthenticationTypes["Connector"] = "CONNECTOR";
2336
+ SalesforceAuthenticationTypes["User"] = "USER";
2337
+ })(SalesforceAuthenticationTypes || (SalesforceAuthenticationTypes = {}));
2338
+ export var SalesforceFeedAuthenticationTypes;
2339
+ (function (SalesforceFeedAuthenticationTypes) {
2340
+ SalesforceFeedAuthenticationTypes["Connector"] = "CONNECTOR";
2341
+ SalesforceFeedAuthenticationTypes["User"] = "USER";
2342
+ })(SalesforceFeedAuthenticationTypes || (SalesforceFeedAuthenticationTypes = {}));
2343
+ export var SalesforceIssueAuthenticationTypes;
2344
+ (function (SalesforceIssueAuthenticationTypes) {
2345
+ SalesforceIssueAuthenticationTypes["Connector"] = "CONNECTOR";
2346
+ SalesforceIssueAuthenticationTypes["User"] = "USER";
2347
+ })(SalesforceIssueAuthenticationTypes || (SalesforceIssueAuthenticationTypes = {}));
2303
2348
  /** SDK type */
2304
2349
  export var SdkTypes;
2305
2350
  (function (SdkTypes) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20260101002",
3
+ "version": "1.0.20260102003-dev",
4
4
  "description": "Graphlit API Client for TypeScript",
5
5
  "type": "module",
6
6
  "main": "./dist/client.js",
@@ -25,6 +25,7 @@
25
25
  },
26
26
  "scripts": {
27
27
  "generate": "graphql-codegen --config codegen.yml",
28
+ "generate:dev": "GRAPHQL_SCHEMA_URL=https://data-scus-dev.graphlit.io/api/v1/graphql graphql-codegen --config codegen.yml",
28
29
  "format": "prettier --write .",
29
30
  "build": "tsc -p tsconfig.json",
30
31
  "prepublishOnly": "npm run build",