graphlit-client 1.0.20250216001 → 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
  }
@@ -19272,6 +19272,13 @@ export type GetFeedQuery = {
19272
19272
  subdomain: string;
19273
19273
  accessToken: string;
19274
19274
  } | null;
19275
+ trello?: {
19276
+ __typename?: 'TrelloFeedProperties';
19277
+ key: string;
19278
+ token: string;
19279
+ identifiers: Array<string>;
19280
+ type: TrelloTypes;
19281
+ } | null;
19275
19282
  } | null;
19276
19283
  rss?: {
19277
19284
  __typename?: 'RSSFeedProperties';
@@ -19556,6 +19563,13 @@ export type QueryFeedsQuery = {
19556
19563
  subdomain: string;
19557
19564
  accessToken: string;
19558
19565
  } | null;
19566
+ trello?: {
19567
+ __typename?: 'TrelloFeedProperties';
19568
+ key: string;
19569
+ token: string;
19570
+ identifiers: Array<string>;
19571
+ type: TrelloTypes;
19572
+ } | null;
19559
19573
  } | null;
19560
19574
  rss?: {
19561
19575
  __typename?: 'RSSFeedProperties';
@@ -22235,6 +22249,8 @@ export type GetSpecificationQuery = {
22235
22249
  temperature?: number | null;
22236
22250
  probability?: number | null;
22237
22251
  chunkTokenLimit?: number | null;
22252
+ detailLevel?: OpenAiVisionDetailLevels | null;
22253
+ reasoningEffort?: OpenAiReasoningEffortLevels | null;
22238
22254
  } | null;
22239
22255
  azureOpenAI?: {
22240
22256
  __typename?: 'AzureOpenAIModelProperties';
@@ -22618,6 +22634,8 @@ export type QuerySpecificationsQuery = {
22618
22634
  temperature?: number | null;
22619
22635
  probability?: number | null;
22620
22636
  chunkTokenLimit?: number | null;
22637
+ detailLevel?: OpenAiVisionDetailLevels | null;
22638
+ reasoningEffort?: OpenAiReasoningEffortLevels | null;
22621
22639
  } | null;
22622
22640
  azureOpenAI?: {
22623
22641
  __typename?: 'AzureOpenAIModelProperties';
@@ -23021,6 +23039,15 @@ export type CreateWorkflowMutation = {
23021
23039
  detectLanguage?: boolean | null;
23022
23040
  language?: string | null;
23023
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;
23024
23051
  document?: {
23025
23052
  __typename?: 'DocumentPreparationProperties';
23026
23053
  includeImages?: boolean | null;
@@ -23257,6 +23284,15 @@ export type GetWorkflowQuery = {
23257
23284
  detectLanguage?: boolean | null;
23258
23285
  language?: string | null;
23259
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;
23260
23296
  document?: {
23261
23297
  __typename?: 'DocumentPreparationProperties';
23262
23298
  includeImages?: boolean | null;
@@ -23459,6 +23495,15 @@ export type QueryWorkflowsQuery = {
23459
23495
  detectLanguage?: boolean | null;
23460
23496
  language?: string | null;
23461
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;
23462
23507
  document?: {
23463
23508
  __typename?: 'DocumentPreparationProperties';
23464
23509
  includeImages?: boolean | null;
@@ -23653,6 +23698,15 @@ export type UpdateWorkflowMutation = {
23653
23698
  detectLanguage?: boolean | null;
23654
23699
  language?: string | null;
23655
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;
23656
23710
  document?: {
23657
23711
  __typename?: 'DocumentPreparationProperties';
23658
23712
  includeImages?: boolean | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20250216001",
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",