graphlit-client 1.0.20250204001 → 1.0.20250219001

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.
@@ -5520,6 +5520,12 @@ exports.GetFeed = (0, graphql_tag_1.default) `
5520
5520
  subdomain
5521
5521
  accessToken
5522
5522
  }
5523
+ trello {
5524
+ key
5525
+ token
5526
+ identifiers
5527
+ type
5528
+ }
5523
5529
  readLimit
5524
5530
  }
5525
5531
  rss {
@@ -5759,6 +5765,12 @@ exports.QueryFeeds = (0, graphql_tag_1.default) `
5759
5765
  subdomain
5760
5766
  accessToken
5761
5767
  }
5768
+ trello {
5769
+ key
5770
+ token
5771
+ identifiers
5772
+ type
5773
+ }
5762
5774
  readLimit
5763
5775
  }
5764
5776
  rss {
@@ -7849,6 +7861,8 @@ exports.GetSpecification = (0, graphql_tag_1.default) `
7849
7861
  temperature
7850
7862
  probability
7851
7863
  chunkTokenLimit
7864
+ detailLevel
7865
+ reasoningEffort
7852
7866
  }
7853
7867
  azureOpenAI {
7854
7868
  tokenLimit
@@ -8188,6 +8202,8 @@ exports.QuerySpecifications = (0, graphql_tag_1.default) `
8188
8202
  temperature
8189
8203
  probability
8190
8204
  chunkTokenLimit
8205
+ detailLevel
8206
+ reasoningEffort
8191
8207
  }
8192
8208
  azureOpenAI {
8193
8209
  tokenLimit
@@ -8514,6 +8530,14 @@ exports.CreateWorkflow = (0, graphql_tag_1.default) `
8514
8530
  detectLanguage
8515
8531
  language
8516
8532
  }
8533
+ assemblyAI {
8534
+ model
8535
+ key
8536
+ enableRedaction
8537
+ enableSpeakerDiarization
8538
+ detectLanguage
8539
+ language
8540
+ }
8517
8541
  document {
8518
8542
  includeImages
8519
8543
  }
@@ -8698,6 +8722,14 @@ exports.GetWorkflow = (0, graphql_tag_1.default) `
8698
8722
  detectLanguage
8699
8723
  language
8700
8724
  }
8725
+ assemblyAI {
8726
+ model
8727
+ key
8728
+ enableRedaction
8729
+ enableSpeakerDiarization
8730
+ detectLanguage
8731
+ language
8732
+ }
8701
8733
  document {
8702
8734
  includeImages
8703
8735
  }
@@ -8855,6 +8887,14 @@ exports.QueryWorkflows = (0, graphql_tag_1.default) `
8855
8887
  detectLanguage
8856
8888
  language
8857
8889
  }
8890
+ assemblyAI {
8891
+ model
8892
+ key
8893
+ enableRedaction
8894
+ enableSpeakerDiarization
8895
+ detectLanguage
8896
+ language
8897
+ }
8858
8898
  document {
8859
8899
  includeImages
8860
8900
  }
@@ -9007,6 +9047,14 @@ exports.UpdateWorkflow = (0, graphql_tag_1.default) `
9007
9047
  detectLanguage
9008
9048
  language
9009
9049
  }
9050
+ assemblyAI {
9051
+ model
9052
+ key
9053
+ enableRedaction
9054
+ enableSpeakerDiarization
9055
+ detectLanguage
9056
+ language
9057
+ }
9010
9058
  document {
9011
9059
  includeImages
9012
9060
  }
@@ -413,6 +413,44 @@ export type AskGraphlit = {
413
413
  /** The conversation message count, after completion. */
414
414
  messageCount?: Maybe<Scalars['Int']['output']>;
415
415
  };
416
+ /** Represents the Assembly.AI preparation properties. */
417
+ export type AssemblyAiAudioPreparationProperties = {
418
+ __typename?: 'AssemblyAIAudioPreparationProperties';
419
+ /** Whether to auto-detect the speaker(s) language during Assembly.AI audio transcription. */
420
+ detectLanguage?: Maybe<Scalars['Boolean']['output']>;
421
+ /** Whether to enable redaction during Assembly.AI audio transcription. */
422
+ enableRedaction?: Maybe<Scalars['Boolean']['output']>;
423
+ /** Whether to enable speaker diarization during Assembly.AI audio transcription. */
424
+ enableSpeakerDiarization?: Maybe<Scalars['Boolean']['output']>;
425
+ /** The Assembly.AI API key. */
426
+ key?: Maybe<Scalars['String']['output']>;
427
+ /** Specify the language to transcribe during Assembly.AI audio transcription. Expected language in BCP 47 format, such as 'en' or 'en-US'. */
428
+ language?: Maybe<Scalars['String']['output']>;
429
+ /** The Assembly.AI transcription model. */
430
+ model?: Maybe<AssemblyAiModels>;
431
+ };
432
+ /** Represents the Assembly.AI preparation properties. */
433
+ export type AssemblyAiAudioPreparationPropertiesInput = {
434
+ /** Whether to auto-detect the speaker(s) language during Assembly.AI audio transcription. */
435
+ detectLanguage?: InputMaybe<Scalars['Boolean']['input']>;
436
+ /** Whether to enable redaction during Assembly.AI audio transcription. */
437
+ enableRedaction?: InputMaybe<Scalars['Boolean']['input']>;
438
+ /** Whether to enable speaker diarization during Assembly.AI audio transcription. */
439
+ enableSpeakerDiarization?: InputMaybe<Scalars['Boolean']['input']>;
440
+ /** The Assembly.AI API key, optional. */
441
+ key?: InputMaybe<Scalars['String']['input']>;
442
+ /** Specify the language to transcribe during Assembly.AI audio transcription. Expected language in BCP 47 format, such as 'en' or 'en-US'. */
443
+ language?: InputMaybe<Scalars['String']['input']>;
444
+ /** The Assembly.AI transcription model. */
445
+ model?: InputMaybe<AssemblyAiModels>;
446
+ };
447
+ /** Assembly.AI models */
448
+ export declare enum AssemblyAiModels {
449
+ /** Best */
450
+ Best = "BEST",
451
+ /** Nano */
452
+ Nano = "NANO"
453
+ }
416
454
  /** Represents Atlassian Jira feed properties. */
417
455
  export type AtlassianJiraFeedProperties = {
418
456
  __typename?: 'AtlassianJiraFeedProperties';
@@ -2315,6 +2353,8 @@ export declare enum DeepgramModels {
2315
2353
  Nova2Video = "NOVA2_VIDEO",
2316
2354
  /** Nova 2 (Voicemail) */
2317
2355
  Nova2Voicemail = "NOVA2_VOICEMAIL",
2356
+ /** Nova 3 (General) */
2357
+ Nova3 = "NOVA3",
2318
2358
  /** Whisper (Base) */
2319
2359
  WhisperBase = "WHISPER_BASE",
2320
2360
  /** Whisper (Large) */
@@ -3618,6 +3658,8 @@ export declare enum FeedServiceTypes {
3618
3658
  S3Blob = "S3_BLOB",
3619
3659
  /** Microsoft SharePoint feed service */
3620
3660
  SharePoint = "SHARE_POINT",
3661
+ /** Trello feed service */
3662
+ Trello = "TRELLO",
3621
3663
  /** Zendesk Articles feed service */
3622
3664
  ZendeskArticles = "ZENDESK_ARTICLES",
3623
3665
  /** Zendesk Tickets feed service */
@@ -3664,6 +3706,8 @@ export type FeedUpdateInput = {
3664
3706
  email?: InputMaybe<EmailFeedPropertiesUpdateInput>;
3665
3707
  /** The ID of the feed to update. */
3666
3708
  id: Scalars['ID']['input'];
3709
+ /** The Intercom feed properties. */
3710
+ intercom?: InputMaybe<IntercomFeedPropertiesUpdateInput>;
3667
3711
  /** The issue feed properties. */
3668
3712
  issue?: InputMaybe<IssueFeedPropertiesUpdateInput>;
3669
3713
  /** The Microsoft Teams feed properties. */
@@ -3692,10 +3736,14 @@ export type FeedUpdateInput = {
3692
3736
  workflow?: InputMaybe<EntityReferenceInput>;
3693
3737
  /** The YouTube feed properties. */
3694
3738
  youtube?: InputMaybe<YouTubeFeedPropertiesUpdateInput>;
3739
+ /** The Zendesk feed properties. */
3740
+ zendesk?: InputMaybe<ZendeskFeedPropertiesUpdateInput>;
3695
3741
  };
3696
3742
  /** Represents a file preparation connector. */
3697
3743
  export type FilePreparationConnector = {
3698
3744
  __typename?: 'FilePreparationConnector';
3745
+ /** The specific properties for Assembly.AI preparation. */
3746
+ assemblyAI?: Maybe<AssemblyAiAudioPreparationProperties>;
3699
3747
  /** The specific properties for Azure Document Intelligence preparation. */
3700
3748
  azureDocument?: Maybe<AzureDocumentPreparationProperties>;
3701
3749
  /** The specific properties for Deepgram preparation. */
@@ -3713,6 +3761,8 @@ export type FilePreparationConnector = {
3713
3761
  };
3714
3762
  /** Represents a file preparation connector. */
3715
3763
  export type FilePreparationConnectorInput = {
3764
+ /** The specific properties for Assembly.AI preparation. */
3765
+ assemblyAI?: InputMaybe<AssemblyAiAudioPreparationPropertiesInput>;
3716
3766
  /** The specific properties for Azure Document Intelligence preparation. */
3717
3767
  azureDocument?: InputMaybe<AzureDocumentPreparationPropertiesInput>;
3718
3768
  /** The specific properties for Deepgram preparation. */
@@ -3730,6 +3780,8 @@ export type FilePreparationConnectorInput = {
3730
3780
  };
3731
3781
  /** File preparation service type */
3732
3782
  export declare enum FilePreparationServiceTypes {
3783
+ /** Assembly.AI Audio Transcription */
3784
+ AssemblyAi = "ASSEMBLY_AI",
3733
3785
  /** Azure AI Document Intelligence */
3734
3786
  AzureDocumentIntelligence = "AZURE_DOCUMENT_INTELLIGENCE",
3735
3787
  /** Deepgram Audio Transcription */
@@ -4096,6 +4148,10 @@ export declare enum GoogleModels {
4096
4148
  Gemini_1_5Pro_001 = "GEMINI_1_5_PRO_001",
4097
4149
  /** Gemini 1.5 Pro (002 version) */
4098
4150
  Gemini_1_5Pro_002 = "GEMINI_1_5_PRO_002",
4151
+ /** Gemini 2.0 Flash (Latest) */
4152
+ Gemini_2_0Flash = "GEMINI_2_0_FLASH",
4153
+ /** Gemini 2.0 Flash (001 version) */
4154
+ Gemini_2_0Flash_001 = "GEMINI_2_0_FLASH_001",
4099
4155
  /** Gemini 2.0 Flash (Experimental) */
4100
4156
  Gemini_2_0FlashExperimental = "GEMINI_2_0_FLASH_EXPERIMENTAL",
4101
4157
  /** Gemini 2.0 Flash Thinking (Experimental) */
@@ -4591,6 +4647,13 @@ export type IntercomFeedPropertiesInput = {
4591
4647
  /** The limit of items to be read from feed, defaults to 100. */
4592
4648
  readLimit?: InputMaybe<Scalars['Int']['input']>;
4593
4649
  };
4650
+ /** Represents Intercom feed properties. */
4651
+ export type IntercomFeedPropertiesUpdateInput = {
4652
+ /** Intercom access token. */
4653
+ accessToken?: InputMaybe<Scalars['String']['input']>;
4654
+ /** The limit of items to be read from feed, defaults to 100. */
4655
+ readLimit?: InputMaybe<Scalars['Int']['input']>;
4656
+ };
4594
4657
  /** Represents Intercom Tickets feed properties. */
4595
4658
  export type IntercomTicketsFeedProperties = {
4596
4659
  __typename?: 'IntercomTicketsFeedProperties';
@@ -4624,6 +4687,8 @@ export type IssueFeedProperties = {
4624
4687
  linear?: Maybe<LinearFeedProperties>;
4625
4688
  /** The limit of items to be read from feed, defaults to 100. */
4626
4689
  readLimit?: Maybe<Scalars['Int']['output']>;
4690
+ /** Trello properties. */
4691
+ trello?: Maybe<TrelloFeedProperties>;
4627
4692
  /** Feed service type. */
4628
4693
  type: FeedServiceTypes;
4629
4694
  /** Zendesk Tickets properties. */
@@ -4643,6 +4708,8 @@ export type IssueFeedPropertiesInput = {
4643
4708
  linear?: InputMaybe<LinearFeedPropertiesInput>;
4644
4709
  /** The limit of items to be read from feed, defaults to 100. */
4645
4710
  readLimit?: InputMaybe<Scalars['Int']['input']>;
4711
+ /** Trello properties. */
4712
+ trello?: InputMaybe<TrelloFeedPropertiesInput>;
4646
4713
  /** Feed service type. */
4647
4714
  type: FeedServiceTypes;
4648
4715
  /** Zendesk Tickets properties. */
@@ -4662,6 +4729,8 @@ export type IssueFeedPropertiesUpdateInput = {
4662
4729
  linear?: InputMaybe<LinearFeedPropertiesUpdateInput>;
4663
4730
  /** The limit of items to be read from feed, defaults to 100. */
4664
4731
  readLimit?: InputMaybe<Scalars['Int']['input']>;
4732
+ /** Trello properties. */
4733
+ trello?: InputMaybe<TrelloFeedPropertiesUpdateInput>;
4665
4734
  /** Zendesk Tickets properties. */
4666
4735
  zendesk?: InputMaybe<ZendeskTicketsFeedPropertiesUpdateInput>;
4667
4736
  };
@@ -8682,6 +8751,8 @@ export type OpenAiModelProperties = {
8682
8751
  modelName?: Maybe<Scalars['String']['output']>;
8683
8752
  /** The model token probability. */
8684
8753
  probability?: Maybe<Scalars['Float']['output']>;
8754
+ /** The OpenAI reasoning effort level. Only applies when using OpenAI o1 or newer reasoning models. */
8755
+ reasoningEffort?: Maybe<OpenAiReasoningEffortLevels>;
8685
8756
  /** The model temperature. */
8686
8757
  temperature?: Maybe<Scalars['Float']['output']>;
8687
8758
  /** The number of tokens which can provided to the OpenAI model, if using developer's own account. */
@@ -8705,6 +8776,8 @@ export type OpenAiModelPropertiesInput = {
8705
8776
  modelName?: InputMaybe<Scalars['String']['input']>;
8706
8777
  /** The model token probability. */
8707
8778
  probability?: InputMaybe<Scalars['Float']['input']>;
8779
+ /** The OpenAI reasoning effort level. Only applies when using OpenAI o1 or newer reasoning models. */
8780
+ reasoningEffort?: InputMaybe<OpenAiReasoningEffortLevels>;
8708
8781
  /** The model temperature. */
8709
8782
  temperature?: InputMaybe<Scalars['Float']['input']>;
8710
8783
  /** The number of tokens which can provided to the OpenAI model, if using developer's own account. */
@@ -8728,6 +8801,8 @@ export type OpenAiModelPropertiesUpdateInput = {
8728
8801
  modelName?: InputMaybe<Scalars['String']['input']>;
8729
8802
  /** The model token probability. */
8730
8803
  probability?: InputMaybe<Scalars['Float']['input']>;
8804
+ /** The OpenAI reasoning effort level. Only applies when using OpenAI o1 or newer reasoning models. */
8805
+ reasoningEffort?: InputMaybe<OpenAiReasoningEffortLevels>;
8731
8806
  /** The model temperature. */
8732
8807
  temperature?: InputMaybe<Scalars['Float']['input']>;
8733
8808
  /** The number of tokens which can provided to the OpenAI model, if using developer's own account. */
@@ -8842,6 +8917,15 @@ export declare enum OpenAiModels {
8842
8917
  /** o3 Mini 200k (2025-01-31 version) */
8843
8918
  O3Mini_200K_20250131 = "O3_MINI_200K_20250131"
8844
8919
  }
8920
+ /** OpenAI reasoning effort levels */
8921
+ export declare enum OpenAiReasoningEffortLevels {
8922
+ /** High effort */
8923
+ High = "HIGH",
8924
+ /** Low effort */
8925
+ Low = "LOW",
8926
+ /** Medium effort */
8927
+ Medium = "MEDIUM"
8928
+ }
8845
8929
  /** OpenAI vision model detail levels */
8846
8930
  export declare enum OpenAiVisionDetailLevels {
8847
8931
  /** High */
@@ -12319,6 +12403,46 @@ export type ToolDefinitionInput = {
12319
12403
  /** The tool schema. */
12320
12404
  schema: Scalars['String']['input'];
12321
12405
  };
12406
+ /** Represents Trello feed properties. */
12407
+ export type TrelloFeedProperties = {
12408
+ __typename?: 'TrelloFeedProperties';
12409
+ /** The Trello identifiers. */
12410
+ identifiers: Array<Scalars['String']['output']>;
12411
+ /** The Trello API key. */
12412
+ key: Scalars['String']['output'];
12413
+ /** The Trello integration token. */
12414
+ token: Scalars['String']['output'];
12415
+ /** The Trello object type, i.e. card or board. */
12416
+ type: TrelloTypes;
12417
+ };
12418
+ /** Represents Trello feed properties. */
12419
+ export type TrelloFeedPropertiesInput = {
12420
+ /** The Trello identifiers. */
12421
+ identifiers: Array<Scalars['String']['input']>;
12422
+ /** The Trello API key. */
12423
+ key: Scalars['String']['input'];
12424
+ /** The Trello integration token. */
12425
+ token: Scalars['String']['input'];
12426
+ /** The Trello object type, i.e. card or board. */
12427
+ type: TrelloTypes;
12428
+ };
12429
+ /** Represents Trello feed properties. */
12430
+ export type TrelloFeedPropertiesUpdateInput = {
12431
+ /** The Trello identifiers. */
12432
+ identifiers?: InputMaybe<Array<Scalars['String']['input']>>;
12433
+ /** The Trello API key. */
12434
+ key?: InputMaybe<Scalars['String']['input']>;
12435
+ /** The Trello integration token. */
12436
+ token?: InputMaybe<Scalars['String']['input']>;
12437
+ /** The Trello object type, i.e. card or board. */
12438
+ type?: InputMaybe<TrelloTypes>;
12439
+ };
12440
+ export declare enum TrelloTypes {
12441
+ /** Trello Board */
12442
+ Board = "BOARD",
12443
+ /** Trello Card */
12444
+ Card = "CARD"
12445
+ }
12322
12446
  /** Unit types */
12323
12447
  export declare enum UnitTypes {
12324
12448
  /** Angstrom */
@@ -12813,6 +12937,15 @@ export type ZendeskFeedPropertiesInput = {
12813
12937
  /** Zendesk subdomain. */
12814
12938
  subdomain: Scalars['String']['input'];
12815
12939
  };
12940
+ /** Represents Zendesk feed properties. */
12941
+ export type ZendeskFeedPropertiesUpdateInput = {
12942
+ /** Zendesk access token. */
12943
+ accessToken?: InputMaybe<Scalars['String']['input']>;
12944
+ /** The limit of items to be read from feed, defaults to 100. */
12945
+ readLimit?: InputMaybe<Scalars['Int']['input']>;
12946
+ /** Zendesk subdomain. */
12947
+ subdomain?: InputMaybe<Scalars['String']['input']>;
12948
+ };
12816
12949
  /** Represents Zendesk Tickets feed properties. */
12817
12950
  export type ZendeskTicketsFeedProperties = {
12818
12951
  __typename?: 'ZendeskTicketsFeedProperties';
@@ -19139,6 +19272,13 @@ export type GetFeedQuery = {
19139
19272
  subdomain: string;
19140
19273
  accessToken: string;
19141
19274
  } | null;
19275
+ trello?: {
19276
+ __typename?: 'TrelloFeedProperties';
19277
+ key: string;
19278
+ token: string;
19279
+ identifiers: Array<string>;
19280
+ type: TrelloTypes;
19281
+ } | null;
19142
19282
  } | null;
19143
19283
  rss?: {
19144
19284
  __typename?: 'RSSFeedProperties';
@@ -19423,6 +19563,13 @@ export type QueryFeedsQuery = {
19423
19563
  subdomain: string;
19424
19564
  accessToken: string;
19425
19565
  } | null;
19566
+ trello?: {
19567
+ __typename?: 'TrelloFeedProperties';
19568
+ key: string;
19569
+ token: string;
19570
+ identifiers: Array<string>;
19571
+ type: TrelloTypes;
19572
+ } | null;
19426
19573
  } | null;
19427
19574
  rss?: {
19428
19575
  __typename?: 'RSSFeedProperties';
@@ -22102,6 +22249,8 @@ export type GetSpecificationQuery = {
22102
22249
  temperature?: number | null;
22103
22250
  probability?: number | null;
22104
22251
  chunkTokenLimit?: number | null;
22252
+ detailLevel?: OpenAiVisionDetailLevels | null;
22253
+ reasoningEffort?: OpenAiReasoningEffortLevels | null;
22105
22254
  } | null;
22106
22255
  azureOpenAI?: {
22107
22256
  __typename?: 'AzureOpenAIModelProperties';
@@ -22485,6 +22634,8 @@ export type QuerySpecificationsQuery = {
22485
22634
  temperature?: number | null;
22486
22635
  probability?: number | null;
22487
22636
  chunkTokenLimit?: number | null;
22637
+ detailLevel?: OpenAiVisionDetailLevels | null;
22638
+ reasoningEffort?: OpenAiReasoningEffortLevels | null;
22488
22639
  } | null;
22489
22640
  azureOpenAI?: {
22490
22641
  __typename?: 'AzureOpenAIModelProperties';
@@ -22888,6 +23039,15 @@ export type CreateWorkflowMutation = {
22888
23039
  detectLanguage?: boolean | null;
22889
23040
  language?: string | null;
22890
23041
  } | null;
23042
+ assemblyAI?: {
23043
+ __typename?: 'AssemblyAIAudioPreparationProperties';
23044
+ model?: AssemblyAiModels | null;
23045
+ key?: string | null;
23046
+ enableRedaction?: boolean | null;
23047
+ enableSpeakerDiarization?: boolean | null;
23048
+ detectLanguage?: boolean | null;
23049
+ language?: string | null;
23050
+ } | null;
22891
23051
  document?: {
22892
23052
  __typename?: 'DocumentPreparationProperties';
22893
23053
  includeImages?: boolean | null;
@@ -23124,6 +23284,15 @@ export type GetWorkflowQuery = {
23124
23284
  detectLanguage?: boolean | null;
23125
23285
  language?: string | null;
23126
23286
  } | null;
23287
+ assemblyAI?: {
23288
+ __typename?: 'AssemblyAIAudioPreparationProperties';
23289
+ model?: AssemblyAiModels | null;
23290
+ key?: string | null;
23291
+ enableRedaction?: boolean | null;
23292
+ enableSpeakerDiarization?: boolean | null;
23293
+ detectLanguage?: boolean | null;
23294
+ language?: string | null;
23295
+ } | null;
23127
23296
  document?: {
23128
23297
  __typename?: 'DocumentPreparationProperties';
23129
23298
  includeImages?: boolean | null;
@@ -23326,6 +23495,15 @@ export type QueryWorkflowsQuery = {
23326
23495
  detectLanguage?: boolean | null;
23327
23496
  language?: string | null;
23328
23497
  } | null;
23498
+ assemblyAI?: {
23499
+ __typename?: 'AssemblyAIAudioPreparationProperties';
23500
+ model?: AssemblyAiModels | null;
23501
+ key?: string | null;
23502
+ enableRedaction?: boolean | null;
23503
+ enableSpeakerDiarization?: boolean | null;
23504
+ detectLanguage?: boolean | null;
23505
+ language?: string | null;
23506
+ } | null;
23329
23507
  document?: {
23330
23508
  __typename?: 'DocumentPreparationProperties';
23331
23509
  includeImages?: boolean | null;
@@ -23520,6 +23698,15 @@ export type UpdateWorkflowMutation = {
23520
23698
  detectLanguage?: boolean | null;
23521
23699
  language?: string | null;
23522
23700
  } | null;
23701
+ assemblyAI?: {
23702
+ __typename?: 'AssemblyAIAudioPreparationProperties';
23703
+ model?: AssemblyAiModels | null;
23704
+ key?: string | null;
23705
+ enableRedaction?: boolean | null;
23706
+ enableSpeakerDiarization?: boolean | null;
23707
+ detectLanguage?: boolean | null;
23708
+ language?: string | null;
23709
+ } | null;
23523
23710
  document?: {
23524
23711
  __typename?: 'DocumentPreparationProperties';
23525
23712
  includeImages?: boolean | null;
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.MailImportance = exports.LinkTypes = exports.LabelFacetTypes = exports.JinaModels = exports.IntegrationServiceTypes = exports.ImageProjectionTypes = exports.H3ResolutionTypes = exports.GroqModels = exports.GraphStrategyTypes = exports.GoogleModels = exports.FileTypes = exports.FilePreparationServiceTypes = exports.FeedTypes = exports.FeedServiceTypes = exports.FeedListingTypes = exports.FeedConnectorTypes = exports.FacetValueTypes = exports.EventFacetTypes = exports.EnvironmentTypes = exports.EntityTypes = exports.EntityState = exports.EntityExtractionServiceTypes = exports.EntityEnrichmentServiceTypes = exports.EmailListingTypes = exports.ElevenLabsModels = exports.DeviceTypes = exports.DeepseekModels = exports.DeepgramModels = exports.ConversationTypes = exports.ConversationStrategyTypes = exports.ConversationSearchTypes = exports.ConversationRoleTypes = exports.ContentTypes = exports.ContentPublishingServiceTypes = exports.ContentPublishingFormats = exports.ContentIndexingServiceTypes = exports.ContentFacetTypes = exports.ConnectorTypes = exports.CollectionTypes = exports.CohereModels = exports.CerebrasModels = exports.CategoryFacetTypes = exports.BillableMetrics = exports.AzureOpenAiModels = exports.AzureDocumentIntelligenceVersions = exports.AzureDocumentIntelligenceModels = exports.AuthenticationServiceTypes = exports.ApplyPolicy = exports.AnthropicModels = exports.AlertTypes = void 0;
4
- exports.TextRoles = exports.SummarizationTypes = exports.StoragePolicyTypes = exports.SpecificationTypes = exports.SoftwareFacetTypes = exports.SiteTypes = exports.SharePointAuthenticationTypes = exports.SearchTypes = exports.SearchServiceTypes = exports.SearchQueryTypes = exports.SdkTypes = exports.RevisionStrategyTypes = exports.RetrievalStrategyTypes = exports.ResourceConnectorTypes = exports.RerankingModelServiceTypes = exports.RepoFacetTypes = exports.ReplicateModels = exports.RenditionTypes = exports.PromptStrategyTypes = exports.ProductFacetTypes = exports.PolicyTimeTypes = exports.PlaceFacetTypes = exports.PersonFacetTypes = exports.OrientationTypes = exports.OrganizationFacetTypes = exports.OrderDirectionTypes = exports.OrderByTypes = exports.OperationTypes = exports.OpenAiVisionDetailLevels = exports.OpenAiModels = exports.OccurrenceTypes = exports.ObservableTypes = exports.NotionTypes = exports.ModelTypes = exports.ModelServiceTypes = exports.MistralModels = exports.MetadataTypes = exports.MedicalTherapyFacetTypes = exports.MedicalTestFacetTypes = exports.MedicalStudyFacetTypes = exports.MedicalProcedureFacetTypes = exports.MedicalIndicationFacetTypes = exports.MedicalGuidelineFacetTypes = exports.MedicalDrugFacetTypes = exports.MedicalDrugClassFacetTypes = exports.MedicalDeviceFacetTypes = exports.MedicalContraindicationFacetTypes = exports.MedicalConditionFacetTypes = exports.MailSensitivity = exports.MailPriority = void 0;
5
- exports.YouTubeTypes = exports.VoyageModels = exports.UserTypes = exports.UnitTypes = exports.TimedPolicyRecurrenceTypes = exports.TimeIntervalTypes = exports.TextTypes = void 0;
3
+ exports.LinkTypes = exports.LabelFacetTypes = exports.JinaModels = exports.IntegrationServiceTypes = exports.ImageProjectionTypes = exports.H3ResolutionTypes = exports.GroqModels = exports.GraphStrategyTypes = exports.GoogleModels = exports.FileTypes = exports.FilePreparationServiceTypes = exports.FeedTypes = exports.FeedServiceTypes = exports.FeedListingTypes = exports.FeedConnectorTypes = exports.FacetValueTypes = exports.EventFacetTypes = exports.EnvironmentTypes = exports.EntityTypes = exports.EntityState = exports.EntityExtractionServiceTypes = exports.EntityEnrichmentServiceTypes = exports.EmailListingTypes = exports.ElevenLabsModels = exports.DeviceTypes = exports.DeepseekModels = exports.DeepgramModels = exports.ConversationTypes = exports.ConversationStrategyTypes = exports.ConversationSearchTypes = exports.ConversationRoleTypes = exports.ContentTypes = exports.ContentPublishingServiceTypes = exports.ContentPublishingFormats = exports.ContentIndexingServiceTypes = exports.ContentFacetTypes = exports.ConnectorTypes = exports.CollectionTypes = exports.CohereModels = exports.CerebrasModels = exports.CategoryFacetTypes = exports.BillableMetrics = exports.AzureOpenAiModels = exports.AzureDocumentIntelligenceVersions = exports.AzureDocumentIntelligenceModels = exports.AuthenticationServiceTypes = exports.AssemblyAiModels = exports.ApplyPolicy = exports.AnthropicModels = exports.AlertTypes = void 0;
4
+ exports.StoragePolicyTypes = exports.SpecificationTypes = exports.SoftwareFacetTypes = exports.SiteTypes = exports.SharePointAuthenticationTypes = exports.SearchTypes = exports.SearchServiceTypes = exports.SearchQueryTypes = exports.SdkTypes = exports.RevisionStrategyTypes = exports.RetrievalStrategyTypes = exports.ResourceConnectorTypes = exports.RerankingModelServiceTypes = exports.RepoFacetTypes = exports.ReplicateModels = exports.RenditionTypes = exports.PromptStrategyTypes = exports.ProductFacetTypes = exports.PolicyTimeTypes = exports.PlaceFacetTypes = exports.PersonFacetTypes = exports.OrientationTypes = exports.OrganizationFacetTypes = exports.OrderDirectionTypes = exports.OrderByTypes = exports.OperationTypes = exports.OpenAiVisionDetailLevels = exports.OpenAiReasoningEffortLevels = exports.OpenAiModels = exports.OccurrenceTypes = exports.ObservableTypes = exports.NotionTypes = exports.ModelTypes = exports.ModelServiceTypes = exports.MistralModels = exports.MetadataTypes = exports.MedicalTherapyFacetTypes = exports.MedicalTestFacetTypes = exports.MedicalStudyFacetTypes = exports.MedicalProcedureFacetTypes = exports.MedicalIndicationFacetTypes = exports.MedicalGuidelineFacetTypes = exports.MedicalDrugFacetTypes = exports.MedicalDrugClassFacetTypes = exports.MedicalDeviceFacetTypes = exports.MedicalContraindicationFacetTypes = exports.MedicalConditionFacetTypes = exports.MailSensitivity = exports.MailPriority = exports.MailImportance = void 0;
5
+ exports.YouTubeTypes = exports.VoyageModels = exports.UserTypes = exports.UnitTypes = exports.TrelloTypes = exports.TimedPolicyRecurrenceTypes = exports.TimeIntervalTypes = exports.TextTypes = exports.TextRoles = exports.SummarizationTypes = void 0;
6
6
  /** Alert type */
7
7
  var AlertTypes;
8
8
  (function (AlertTypes) {
@@ -57,6 +57,14 @@ var ApplyPolicy;
57
57
  /** The policy is applied in the validation step before the execution. */
58
58
  ApplyPolicy["Validation"] = "VALIDATION";
59
59
  })(ApplyPolicy || (exports.ApplyPolicy = ApplyPolicy = {}));
60
+ /** Assembly.AI models */
61
+ var AssemblyAiModels;
62
+ (function (AssemblyAiModels) {
63
+ /** Best */
64
+ AssemblyAiModels["Best"] = "BEST";
65
+ /** Nano */
66
+ AssemblyAiModels["Nano"] = "NANO";
67
+ })(AssemblyAiModels || (exports.AssemblyAiModels = AssemblyAiModels = {}));
60
68
  /** Authentication service type */
61
69
  var AuthenticationServiceTypes;
62
70
  (function (AuthenticationServiceTypes) {
@@ -368,6 +376,8 @@ var DeepgramModels;
368
376
  DeepgramModels["Nova2Video"] = "NOVA2_VIDEO";
369
377
  /** Nova 2 (Voicemail) */
370
378
  DeepgramModels["Nova2Voicemail"] = "NOVA2_VOICEMAIL";
379
+ /** Nova 3 (General) */
380
+ DeepgramModels["Nova3"] = "NOVA3";
371
381
  /** Whisper (Base) */
372
382
  DeepgramModels["WhisperBase"] = "WHISPER_BASE";
373
383
  /** Whisper (Large) */
@@ -700,6 +710,8 @@ var FeedServiceTypes;
700
710
  FeedServiceTypes["S3Blob"] = "S3_BLOB";
701
711
  /** Microsoft SharePoint feed service */
702
712
  FeedServiceTypes["SharePoint"] = "SHARE_POINT";
713
+ /** Trello feed service */
714
+ FeedServiceTypes["Trello"] = "TRELLO";
703
715
  /** Zendesk Articles feed service */
704
716
  FeedServiceTypes["ZendeskArticles"] = "ZENDESK_ARTICLES";
705
717
  /** Zendesk Tickets feed service */
@@ -740,6 +752,8 @@ var FeedTypes;
740
752
  /** File preparation service type */
741
753
  var FilePreparationServiceTypes;
742
754
  (function (FilePreparationServiceTypes) {
755
+ /** Assembly.AI Audio Transcription */
756
+ FilePreparationServiceTypes["AssemblyAi"] = "ASSEMBLY_AI";
743
757
  /** Azure AI Document Intelligence */
744
758
  FilePreparationServiceTypes["AzureDocumentIntelligence"] = "AZURE_DOCUMENT_INTELLIGENCE";
745
759
  /** Deepgram Audio Transcription */
@@ -808,6 +822,10 @@ var GoogleModels;
808
822
  GoogleModels["Gemini_1_5Pro_001"] = "GEMINI_1_5_PRO_001";
809
823
  /** Gemini 1.5 Pro (002 version) */
810
824
  GoogleModels["Gemini_1_5Pro_002"] = "GEMINI_1_5_PRO_002";
825
+ /** Gemini 2.0 Flash (Latest) */
826
+ GoogleModels["Gemini_2_0Flash"] = "GEMINI_2_0_FLASH";
827
+ /** Gemini 2.0 Flash (001 version) */
828
+ GoogleModels["Gemini_2_0Flash_001"] = "GEMINI_2_0_FLASH_001";
811
829
  /** Gemini 2.0 Flash (Experimental) */
812
830
  GoogleModels["Gemini_2_0FlashExperimental"] = "GEMINI_2_0_FLASH_EXPERIMENTAL";
813
831
  /** Gemini 2.0 Flash Thinking (Experimental) */
@@ -1352,6 +1370,16 @@ var OpenAiModels;
1352
1370
  /** o3 Mini 200k (2025-01-31 version) */
1353
1371
  OpenAiModels["O3Mini_200K_20250131"] = "O3_MINI_200K_20250131";
1354
1372
  })(OpenAiModels || (exports.OpenAiModels = OpenAiModels = {}));
1373
+ /** OpenAI reasoning effort levels */
1374
+ var OpenAiReasoningEffortLevels;
1375
+ (function (OpenAiReasoningEffortLevels) {
1376
+ /** High effort */
1377
+ OpenAiReasoningEffortLevels["High"] = "HIGH";
1378
+ /** Low effort */
1379
+ OpenAiReasoningEffortLevels["Low"] = "LOW";
1380
+ /** Medium effort */
1381
+ OpenAiReasoningEffortLevels["Medium"] = "MEDIUM";
1382
+ })(OpenAiReasoningEffortLevels || (exports.OpenAiReasoningEffortLevels = OpenAiReasoningEffortLevels = {}));
1355
1383
  /** OpenAI vision model detail levels */
1356
1384
  var OpenAiVisionDetailLevels;
1357
1385
  (function (OpenAiVisionDetailLevels) {
@@ -1730,6 +1758,13 @@ var TimedPolicyRecurrenceTypes;
1730
1758
  /** Repeat until disabled */
1731
1759
  TimedPolicyRecurrenceTypes["Repeat"] = "REPEAT";
1732
1760
  })(TimedPolicyRecurrenceTypes || (exports.TimedPolicyRecurrenceTypes = TimedPolicyRecurrenceTypes = {}));
1761
+ var TrelloTypes;
1762
+ (function (TrelloTypes) {
1763
+ /** Trello Board */
1764
+ TrelloTypes["Board"] = "BOARD";
1765
+ /** Trello Card */
1766
+ TrelloTypes["Card"] = "CARD";
1767
+ })(TrelloTypes || (exports.TrelloTypes = TrelloTypes = {}));
1733
1768
  /** Unit types */
1734
1769
  var UnitTypes;
1735
1770
  (function (UnitTypes) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20250204001",
3
+ "version": "1.0.20250219001",
4
4
  "description": "Graphlit API TypeScript Client",
5
5
  "main": "dist/client.js",
6
6
  "types": "dist/client.d.ts",