graphlit-client 1.0.20250108001 → 1.0.20250114001
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/client.d.ts +55 -55
- package/dist/client.js +110 -110
- package/dist/generated/graphql-documents.js +111 -1
- package/dist/generated/graphql-types.d.ts +205 -5
- package/dist/generated/graphql-types.js +4 -0
- package/package.json +1 -1
@@ -673,6 +673,8 @@ export declare enum AzureDocumentIntelligenceModels {
|
|
673
673
|
UsMortgageDisclosure = "US_MORTGAGE_DISCLOSURE",
|
674
674
|
/** Pay Stub (US) */
|
675
675
|
UsPayStub = "US_PAY_STUB",
|
676
|
+
/** Unified Tax Form (US) */
|
677
|
+
UsTaxForm = "US_TAX_FORM",
|
676
678
|
/** 1098 Form (US) */
|
677
679
|
UsTaxForm1098 = "US_TAX_FORM1098",
|
678
680
|
/** 1098E Form (US) */
|
@@ -693,7 +695,9 @@ export declare enum AzureDocumentIntelligenceVersions {
|
|
693
695
|
*/
|
694
696
|
V2024_02_29Preview = "V2024_02_29_PREVIEW",
|
695
697
|
/** 2024-07-31 Preview API */
|
696
|
-
V2024_07_31Preview = "V2024_07_31_PREVIEW"
|
698
|
+
V2024_07_31Preview = "V2024_07_31_PREVIEW",
|
699
|
+
/** 2024-11-30 GA API */
|
700
|
+
V2024_11_30 = "V2024_11_30"
|
697
701
|
}
|
698
702
|
/** Represents the Azure Document Intelligence preparation properties. */
|
699
703
|
export type AzureDocumentPreparationProperties = {
|
@@ -1516,6 +1520,8 @@ export type ContentCriteria = {
|
|
1516
1520
|
or?: Maybe<Array<ContentCriteriaLevel>>;
|
1517
1521
|
/** Filter by content types. */
|
1518
1522
|
types?: Maybe<Array<ContentTypes>>;
|
1523
|
+
/** Filter by users. Only applies to project scope. */
|
1524
|
+
users?: Maybe<Array<EntityReference>>;
|
1519
1525
|
/** Filter by workflows. */
|
1520
1526
|
workflows?: Maybe<Array<EntityReference>>;
|
1521
1527
|
};
|
@@ -1557,6 +1563,8 @@ export type ContentCriteriaLevel = {
|
|
1557
1563
|
feeds?: Maybe<Array<EntityReference>>;
|
1558
1564
|
/** Filter by observations. */
|
1559
1565
|
observations?: Maybe<Array<ObservationCriteria>>;
|
1566
|
+
/** Filter by users. Only applies to project scope. */
|
1567
|
+
users?: Maybe<Array<EntityReference>>;
|
1560
1568
|
/** Filter by workflows. */
|
1561
1569
|
workflows?: Maybe<Array<EntityReference>>;
|
1562
1570
|
};
|
@@ -1725,6 +1733,8 @@ export type ContentFilter = {
|
|
1725
1733
|
types?: InputMaybe<Array<ContentTypes>>;
|
1726
1734
|
/** The content URI. */
|
1727
1735
|
uri?: InputMaybe<Scalars['URL']['input']>;
|
1736
|
+
/** Filter by users. Only applies to project scope. */
|
1737
|
+
users?: InputMaybe<Array<EntityReferenceFilter>>;
|
1728
1738
|
/** Filter by workflows. */
|
1729
1739
|
workflows?: InputMaybe<Array<EntityReferenceFilter>>;
|
1730
1740
|
};
|
@@ -1736,6 +1746,8 @@ export type ContentFilterLevel = {
|
|
1736
1746
|
feeds?: InputMaybe<Array<EntityReferenceFilter>>;
|
1737
1747
|
/** Filter by observations. */
|
1738
1748
|
observations?: InputMaybe<Array<ObservationReferenceFilter>>;
|
1749
|
+
/** Filter by users. Only applies to project scope. */
|
1750
|
+
users?: InputMaybe<Array<EntityReferenceFilter>>;
|
1739
1751
|
/** Filter by workflows. */
|
1740
1752
|
workflows?: InputMaybe<Array<EntityReferenceFilter>>;
|
1741
1753
|
};
|
@@ -2068,8 +2080,12 @@ export type ConversationMessage = {
|
|
2068
2080
|
citations?: Maybe<Array<Maybe<ConversationCitation>>>;
|
2069
2081
|
/** The elapsed time for the model to complete the prompt, only provided with assistant role. */
|
2070
2082
|
completionTime?: Maybe<Scalars['TimeSpan']['output']>;
|
2083
|
+
/** The Base64-encoded image which will be supplied to the LLM with the conversation message, optional. */
|
2084
|
+
data?: Maybe<Scalars['String']['output']>;
|
2071
2085
|
/** The conversation message. */
|
2072
2086
|
message?: Maybe<Scalars['String']['output']>;
|
2087
|
+
/** The MIME type of the Base64-encoded image, optional. */
|
2088
|
+
mimeType?: Maybe<Scalars['String']['output']>;
|
2073
2089
|
/** The LLM model description, only provided with assistant role. */
|
2074
2090
|
model?: Maybe<Scalars['String']['output']>;
|
2075
2091
|
/** The LLM service type, only provided with assistant role. */
|
@@ -2089,8 +2105,12 @@ export type ConversationMessage = {
|
|
2089
2105
|
export type ConversationMessageInput = {
|
2090
2106
|
/** The conversation message author. */
|
2091
2107
|
author?: InputMaybe<Scalars['String']['input']>;
|
2108
|
+
/** The Base64-encoded image which will be supplied to the LLM with the conversation message, optional. */
|
2109
|
+
data?: InputMaybe<Scalars['String']['input']>;
|
2092
2110
|
/** The conversation message. */
|
2093
2111
|
message: Scalars['String']['input'];
|
2112
|
+
/** The MIME type of the Base64-encoded image, optional. */
|
2113
|
+
mimeType?: InputMaybe<Scalars['String']['input']>;
|
2094
2114
|
/** The conversation message role. */
|
2095
2115
|
role: ConversationRoleTypes;
|
2096
2116
|
};
|
@@ -3912,6 +3932,14 @@ export type GoogleEmailFeedProperties = {
|
|
3912
3932
|
clientId: Scalars['String']['output'];
|
3913
3933
|
/** Google Email client secret. */
|
3914
3934
|
clientSecret: Scalars['String']['output'];
|
3935
|
+
/** Whether to exclude Sent messages in email listing. Default is False. */
|
3936
|
+
excludeSentItems?: Maybe<Scalars['Boolean']['output']>;
|
3937
|
+
/** Whether to only read past emails from Inbox. Default is False. */
|
3938
|
+
inboxOnly?: Maybe<Scalars['Boolean']['output']>;
|
3939
|
+
/** Whether to include Deleted messages in email listing. Default is False. */
|
3940
|
+
includeDeletedItems?: Maybe<Scalars['Boolean']['output']>;
|
3941
|
+
/** Whether to include Spam messages in email listing. Default is False. */
|
3942
|
+
includeSpam?: Maybe<Scalars['Boolean']['output']>;
|
3915
3943
|
/** Google Email refresh token. */
|
3916
3944
|
refreshToken?: Maybe<Scalars['String']['output']>;
|
3917
3945
|
/** Email listing type, i.e. past or new emails. */
|
@@ -3923,6 +3951,14 @@ export type GoogleEmailFeedPropertiesInput = {
|
|
3923
3951
|
clientId: Scalars['String']['input'];
|
3924
3952
|
/** Google client secret. */
|
3925
3953
|
clientSecret: Scalars['String']['input'];
|
3954
|
+
/** Whether to exclude Sent messages in email listing. Default is False. */
|
3955
|
+
excludeSentItems?: InputMaybe<Scalars['Boolean']['input']>;
|
3956
|
+
/** Whether to only read past emails from Inbox. Default is False. */
|
3957
|
+
inboxOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
3958
|
+
/** Whether to include Deleted messages in email listing. Default is False. */
|
3959
|
+
includeDeletedItems?: InputMaybe<Scalars['Boolean']['input']>;
|
3960
|
+
/** Whether to include Spam messages in email listing. Default is False. */
|
3961
|
+
includeSpam?: InputMaybe<Scalars['Boolean']['input']>;
|
3926
3962
|
/** Google refresh token. */
|
3927
3963
|
refreshToken: Scalars['String']['input'];
|
3928
3964
|
/** Email listing type, i.e. past or new emails. */
|
@@ -3934,6 +3970,14 @@ export type GoogleEmailFeedPropertiesUpdateInput = {
|
|
3934
3970
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
3935
3971
|
/** Google client secret. */
|
3936
3972
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
3973
|
+
/** Whether to exclude Sent messages in email listing. Default is False. */
|
3974
|
+
excludeSentItems?: InputMaybe<Scalars['Boolean']['input']>;
|
3975
|
+
/** Whether to only read past emails from Inbox. Default is False. */
|
3976
|
+
inboxOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
3977
|
+
/** Whether to include Deleted messages in email listing. Default is False. */
|
3978
|
+
includeDeletedItems?: InputMaybe<Scalars['Boolean']['input']>;
|
3979
|
+
/** Whether to include Spam messages in email listing. Default is False. */
|
3980
|
+
includeSpam?: InputMaybe<Scalars['Boolean']['input']>;
|
3937
3981
|
/** Google refresh token. */
|
3938
3982
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
3939
3983
|
/** Email listing type, i.e. past or new emails. */
|
@@ -6718,6 +6762,14 @@ export type MicrosoftEmailFeedProperties = {
|
|
6718
6762
|
clientId: Scalars['String']['output'];
|
6719
6763
|
/** Microsoft Email client secret. */
|
6720
6764
|
clientSecret: Scalars['String']['output'];
|
6765
|
+
/** Whether to exclude Sent messages in email listing. Default is False. */
|
6766
|
+
excludeSentItems?: Maybe<Scalars['Boolean']['output']>;
|
6767
|
+
/** Whether to only read past emails from Inbox. Default is False. */
|
6768
|
+
inboxOnly?: Maybe<Scalars['Boolean']['output']>;
|
6769
|
+
/** Whether to include Deleted messages in email listing. Default is False. */
|
6770
|
+
includeDeletedItems?: Maybe<Scalars['Boolean']['output']>;
|
6771
|
+
/** Whether to include Spam messages in email listing. Default is False. */
|
6772
|
+
includeSpam?: Maybe<Scalars['Boolean']['output']>;
|
6721
6773
|
/** Microsoft Email refresh token. */
|
6722
6774
|
refreshToken: Scalars['String']['output'];
|
6723
6775
|
/** Email listing type, i.e. past or new emails. */
|
@@ -6729,6 +6781,14 @@ export type MicrosoftEmailFeedPropertiesInput = {
|
|
6729
6781
|
clientId: Scalars['String']['input'];
|
6730
6782
|
/** Microsoft Email client secret. */
|
6731
6783
|
clientSecret: Scalars['String']['input'];
|
6784
|
+
/** Whether to exclude Sent messages in email listing. Default is False. */
|
6785
|
+
excludeSentItems?: InputMaybe<Scalars['Boolean']['input']>;
|
6786
|
+
/** Whether to only read past emails from Inbox. Default is False. */
|
6787
|
+
inboxOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
6788
|
+
/** Whether to include Deleted messages in email listing. Default is False. */
|
6789
|
+
includeDeletedItems?: InputMaybe<Scalars['Boolean']['input']>;
|
6790
|
+
/** Whether to include Spam messages in email listing. Default is False. */
|
6791
|
+
includeSpam?: InputMaybe<Scalars['Boolean']['input']>;
|
6732
6792
|
/** Microsoft Email refresh token. */
|
6733
6793
|
refreshToken: Scalars['String']['input'];
|
6734
6794
|
/** Email listing type, i.e. past or new emails. */
|
@@ -6740,6 +6800,14 @@ export type MicrosoftEmailFeedPropertiesUpdateInput = {
|
|
6740
6800
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
6741
6801
|
/** Microsoft Email client secret. */
|
6742
6802
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
6803
|
+
/** Whether to exclude Sent messages in email listing. Default is False. */
|
6804
|
+
excludeSentItems?: InputMaybe<Scalars['Boolean']['input']>;
|
6805
|
+
/** Whether to only read past emails from Inbox. Default is False. */
|
6806
|
+
inboxOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
6807
|
+
/** Whether to include Deleted messages in email listing. Default is False. */
|
6808
|
+
includeDeletedItems?: InputMaybe<Scalars['Boolean']['input']>;
|
6809
|
+
/** Whether to include Spam messages in email listing. Default is False. */
|
6810
|
+
includeSpam?: InputMaybe<Scalars['Boolean']['input']>;
|
6743
6811
|
/** Microsoft Email refresh token. */
|
6744
6812
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
6745
6813
|
/** Email listing type, i.e. past or new emails. */
|
@@ -7356,7 +7424,7 @@ export type Mutation = {
|
|
7356
7424
|
openCollection?: Maybe<Collection>;
|
7357
7425
|
/** Opens an existing conversation. */
|
7358
7426
|
openConversation?: Maybe<Conversation>;
|
7359
|
-
/** Prompts LLM without content retrieval.
|
7427
|
+
/** Prompts LLM without content retrieval. You can provide a list of conversation messages to be completed, an LLM user prompt and optional Base64-encoded image, or both. If both are provided, the LLM prompt (and optional image) will be appended as an additional User message to the conversation. */
|
7360
7428
|
prompt?: Maybe<PromptCompletion>;
|
7361
7429
|
/** Prompts a conversation. */
|
7362
7430
|
promptConversation?: Maybe<PromptConversation>;
|
@@ -8045,14 +8113,18 @@ export type MutationOpenConversationArgs = {
|
|
8045
8113
|
};
|
8046
8114
|
export type MutationPromptArgs = {
|
8047
8115
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
8048
|
-
|
8049
|
-
|
8116
|
+
data?: InputMaybe<Scalars['String']['input']>;
|
8117
|
+
messages?: InputMaybe<Array<ConversationMessageInput>>;
|
8118
|
+
mimeType?: InputMaybe<Scalars['String']['input']>;
|
8119
|
+
prompt?: InputMaybe<Scalars['String']['input']>;
|
8050
8120
|
specification?: InputMaybe<EntityReferenceInput>;
|
8051
8121
|
};
|
8052
8122
|
export type MutationPromptConversationArgs = {
|
8053
8123
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
8124
|
+
data?: InputMaybe<Scalars['String']['input']>;
|
8054
8125
|
id?: InputMaybe<Scalars['ID']['input']>;
|
8055
8126
|
includeDetails?: InputMaybe<Scalars['Boolean']['input']>;
|
8127
|
+
mimeType?: InputMaybe<Scalars['String']['input']>;
|
8056
8128
|
prompt: Scalars['String']['input'];
|
8057
8129
|
requireTool?: InputMaybe<Scalars['Boolean']['input']>;
|
8058
8130
|
specification?: InputMaybe<EntityReferenceInput>;
|
@@ -8128,7 +8200,7 @@ export type MutationReviseImageArgs = {
|
|
8128
8200
|
id?: InputMaybe<Scalars['ID']['input']>;
|
8129
8201
|
prompt: Scalars['String']['input'];
|
8130
8202
|
specification?: InputMaybe<EntityReferenceInput>;
|
8131
|
-
uri
|
8203
|
+
uri?: InputMaybe<Scalars['URL']['input']>;
|
8132
8204
|
};
|
8133
8205
|
export type MutationReviseTextArgs = {
|
8134
8206
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
@@ -12885,6 +12957,10 @@ export type GetAlertQuery = {
|
|
12885
12957
|
__typename?: 'EntityReference';
|
12886
12958
|
id: string;
|
12887
12959
|
}> | null;
|
12960
|
+
users?: Array<{
|
12961
|
+
__typename?: 'EntityReference';
|
12962
|
+
id: string;
|
12963
|
+
}> | null;
|
12888
12964
|
observations?: Array<{
|
12889
12965
|
__typename?: 'ObservationCriteria';
|
12890
12966
|
type: ObservableTypes;
|
@@ -12908,6 +12984,10 @@ export type GetAlertQuery = {
|
|
12908
12984
|
__typename?: 'EntityReference';
|
12909
12985
|
id: string;
|
12910
12986
|
}> | null;
|
12987
|
+
users?: Array<{
|
12988
|
+
__typename?: 'EntityReference';
|
12989
|
+
id: string;
|
12990
|
+
}> | null;
|
12911
12991
|
observations?: Array<{
|
12912
12992
|
__typename?: 'ObservationCriteria';
|
12913
12993
|
type: ObservableTypes;
|
@@ -12932,6 +13012,10 @@ export type GetAlertQuery = {
|
|
12932
13012
|
__typename?: 'EntityReference';
|
12933
13013
|
id: string;
|
12934
13014
|
}> | null;
|
13015
|
+
users?: Array<{
|
13016
|
+
__typename?: 'EntityReference';
|
13017
|
+
id: string;
|
13018
|
+
}> | null;
|
12935
13019
|
observations?: Array<{
|
12936
13020
|
__typename?: 'ObservationCriteria';
|
12937
13021
|
type: ObservableTypes;
|
@@ -13027,6 +13111,10 @@ export type QueryAlertsQuery = {
|
|
13027
13111
|
__typename?: 'EntityReference';
|
13028
13112
|
id: string;
|
13029
13113
|
}> | null;
|
13114
|
+
users?: Array<{
|
13115
|
+
__typename?: 'EntityReference';
|
13116
|
+
id: string;
|
13117
|
+
}> | null;
|
13030
13118
|
observations?: Array<{
|
13031
13119
|
__typename?: 'ObservationCriteria';
|
13032
13120
|
type: ObservableTypes;
|
@@ -13050,6 +13138,10 @@ export type QueryAlertsQuery = {
|
|
13050
13138
|
__typename?: 'EntityReference';
|
13051
13139
|
id: string;
|
13052
13140
|
}> | null;
|
13141
|
+
users?: Array<{
|
13142
|
+
__typename?: 'EntityReference';
|
13143
|
+
id: string;
|
13144
|
+
}> | null;
|
13053
13145
|
observations?: Array<{
|
13054
13146
|
__typename?: 'ObservationCriteria';
|
13055
13147
|
type: ObservableTypes;
|
@@ -13074,6 +13166,10 @@ export type QueryAlertsQuery = {
|
|
13074
13166
|
__typename?: 'EntityReference';
|
13075
13167
|
id: string;
|
13076
13168
|
}> | null;
|
13169
|
+
users?: Array<{
|
13170
|
+
__typename?: 'EntityReference';
|
13171
|
+
id: string;
|
13172
|
+
}> | null;
|
13077
13173
|
observations?: Array<{
|
13078
13174
|
__typename?: 'ObservationCriteria';
|
13079
13175
|
type: ObservableTypes;
|
@@ -13454,6 +13550,8 @@ export type DescribeEncodedImageMutation = {
|
|
13454
13550
|
timestamp?: any | null;
|
13455
13551
|
modelService?: ModelServiceTypes | null;
|
13456
13552
|
model?: string | null;
|
13553
|
+
data?: string | null;
|
13554
|
+
mimeType?: string | null;
|
13457
13555
|
citations?: Array<{
|
13458
13556
|
__typename?: 'ConversationCitation';
|
13459
13557
|
index?: number | null;
|
@@ -13592,6 +13690,8 @@ export type DescribeImageMutation = {
|
|
13592
13690
|
timestamp?: any | null;
|
13593
13691
|
modelService?: ModelServiceTypes | null;
|
13594
13692
|
model?: string | null;
|
13693
|
+
data?: string | null;
|
13694
|
+
mimeType?: string | null;
|
13595
13695
|
citations?: Array<{
|
13596
13696
|
__typename?: 'ConversationCitation';
|
13597
13697
|
index?: number | null;
|
@@ -15422,6 +15522,8 @@ export type AskGraphlitMutation = {
|
|
15422
15522
|
timestamp?: any | null;
|
15423
15523
|
modelService?: ModelServiceTypes | null;
|
15424
15524
|
model?: string | null;
|
15525
|
+
data?: string | null;
|
15526
|
+
mimeType?: string | null;
|
15425
15527
|
citations?: Array<{
|
15426
15528
|
__typename?: 'ConversationCitation';
|
15427
15529
|
index?: number | null;
|
@@ -15593,6 +15695,8 @@ export type CompleteConversationMutation = {
|
|
15593
15695
|
timestamp?: any | null;
|
15594
15696
|
modelService?: ModelServiceTypes | null;
|
15595
15697
|
model?: string | null;
|
15698
|
+
data?: string | null;
|
15699
|
+
mimeType?: string | null;
|
15596
15700
|
citations?: Array<{
|
15597
15701
|
__typename?: 'ConversationCitation';
|
15598
15702
|
index?: number | null;
|
@@ -15781,6 +15885,8 @@ export type CompleteConversationMutation = {
|
|
15781
15885
|
timestamp?: any | null;
|
15782
15886
|
modelService?: ModelServiceTypes | null;
|
15783
15887
|
model?: string | null;
|
15888
|
+
data?: string | null;
|
15889
|
+
mimeType?: string | null;
|
15784
15890
|
citations?: Array<{
|
15785
15891
|
__typename?: 'ConversationCitation';
|
15786
15892
|
index?: number | null;
|
@@ -15927,6 +16033,8 @@ export type ContinueConversationMutation = {
|
|
15927
16033
|
timestamp?: any | null;
|
15928
16034
|
modelService?: ModelServiceTypes | null;
|
15929
16035
|
model?: string | null;
|
16036
|
+
data?: string | null;
|
16037
|
+
mimeType?: string | null;
|
15930
16038
|
citations?: Array<{
|
15931
16039
|
__typename?: 'ConversationCitation';
|
15932
16040
|
index?: number | null;
|
@@ -16115,6 +16223,8 @@ export type ContinueConversationMutation = {
|
|
16115
16223
|
timestamp?: any | null;
|
16116
16224
|
modelService?: ModelServiceTypes | null;
|
16117
16225
|
model?: string | null;
|
16226
|
+
data?: string | null;
|
16227
|
+
mimeType?: string | null;
|
16118
16228
|
citations?: Array<{
|
16119
16229
|
__typename?: 'ConversationCitation';
|
16120
16230
|
index?: number | null;
|
@@ -16323,6 +16433,8 @@ export type FormatConversationMutation = {
|
|
16323
16433
|
timestamp?: any | null;
|
16324
16434
|
modelService?: ModelServiceTypes | null;
|
16325
16435
|
model?: string | null;
|
16436
|
+
data?: string | null;
|
16437
|
+
mimeType?: string | null;
|
16326
16438
|
citations?: Array<{
|
16327
16439
|
__typename?: 'ConversationCitation';
|
16328
16440
|
index?: number | null;
|
@@ -16511,6 +16623,8 @@ export type FormatConversationMutation = {
|
|
16511
16623
|
timestamp?: any | null;
|
16512
16624
|
modelService?: ModelServiceTypes | null;
|
16513
16625
|
model?: string | null;
|
16626
|
+
data?: string | null;
|
16627
|
+
mimeType?: string | null;
|
16514
16628
|
citations?: Array<{
|
16515
16629
|
__typename?: 'ConversationCitation';
|
16516
16630
|
index?: number | null;
|
@@ -16661,6 +16775,8 @@ export type GetConversationQuery = {
|
|
16661
16775
|
timestamp?: any | null;
|
16662
16776
|
modelService?: ModelServiceTypes | null;
|
16663
16777
|
model?: string | null;
|
16778
|
+
data?: string | null;
|
16779
|
+
mimeType?: string | null;
|
16664
16780
|
citations?: Array<{
|
16665
16781
|
__typename?: 'ConversationCitation';
|
16666
16782
|
index?: number | null;
|
@@ -16821,6 +16937,10 @@ export type GetConversationQuery = {
|
|
16821
16937
|
__typename?: 'EntityReference';
|
16822
16938
|
id: string;
|
16823
16939
|
}> | null;
|
16940
|
+
users?: Array<{
|
16941
|
+
__typename?: 'EntityReference';
|
16942
|
+
id: string;
|
16943
|
+
}> | null;
|
16824
16944
|
observations?: Array<{
|
16825
16945
|
__typename?: 'ObservationCriteria';
|
16826
16946
|
type: ObservableTypes;
|
@@ -16844,6 +16964,10 @@ export type GetConversationQuery = {
|
|
16844
16964
|
__typename?: 'EntityReference';
|
16845
16965
|
id: string;
|
16846
16966
|
}> | null;
|
16967
|
+
users?: Array<{
|
16968
|
+
__typename?: 'EntityReference';
|
16969
|
+
id: string;
|
16970
|
+
}> | null;
|
16847
16971
|
observations?: Array<{
|
16848
16972
|
__typename?: 'ObservationCriteria';
|
16849
16973
|
type: ObservableTypes;
|
@@ -16868,6 +16992,10 @@ export type GetConversationQuery = {
|
|
16868
16992
|
__typename?: 'EntityReference';
|
16869
16993
|
id: string;
|
16870
16994
|
}> | null;
|
16995
|
+
users?: Array<{
|
16996
|
+
__typename?: 'EntityReference';
|
16997
|
+
id: string;
|
16998
|
+
}> | null;
|
16871
16999
|
observations?: Array<{
|
16872
17000
|
__typename?: 'ObservationCriteria';
|
16873
17001
|
type: ObservableTypes;
|
@@ -16911,6 +17039,10 @@ export type GetConversationQuery = {
|
|
16911
17039
|
__typename?: 'EntityReference';
|
16912
17040
|
id: string;
|
16913
17041
|
}> | null;
|
17042
|
+
users?: Array<{
|
17043
|
+
__typename?: 'EntityReference';
|
17044
|
+
id: string;
|
17045
|
+
}> | null;
|
16914
17046
|
observations?: Array<{
|
16915
17047
|
__typename?: 'ObservationCriteria';
|
16916
17048
|
type: ObservableTypes;
|
@@ -16934,6 +17066,10 @@ export type GetConversationQuery = {
|
|
16934
17066
|
__typename?: 'EntityReference';
|
16935
17067
|
id: string;
|
16936
17068
|
}> | null;
|
17069
|
+
users?: Array<{
|
17070
|
+
__typename?: 'EntityReference';
|
17071
|
+
id: string;
|
17072
|
+
}> | null;
|
16937
17073
|
observations?: Array<{
|
16938
17074
|
__typename?: 'ObservationCriteria';
|
16939
17075
|
type: ObservableTypes;
|
@@ -16958,6 +17094,10 @@ export type GetConversationQuery = {
|
|
16958
17094
|
__typename?: 'EntityReference';
|
16959
17095
|
id: string;
|
16960
17096
|
}> | null;
|
17097
|
+
users?: Array<{
|
17098
|
+
__typename?: 'EntityReference';
|
17099
|
+
id: string;
|
17100
|
+
}> | null;
|
16961
17101
|
observations?: Array<{
|
16962
17102
|
__typename?: 'ObservationCriteria';
|
16963
17103
|
type: ObservableTypes;
|
@@ -16973,6 +17113,8 @@ export type GetConversationQuery = {
|
|
16973
17113
|
};
|
16974
17114
|
export type PromptMutationVariables = Exact<{
|
16975
17115
|
prompt: Scalars['String']['input'];
|
17116
|
+
mimeType?: InputMaybe<Scalars['String']['input']>;
|
17117
|
+
data?: InputMaybe<Scalars['String']['input']>;
|
16976
17118
|
specification?: InputMaybe<EntityReferenceInput>;
|
16977
17119
|
messages?: InputMaybe<Array<ConversationMessageInput> | ConversationMessageInput>;
|
16978
17120
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
@@ -16997,6 +17139,8 @@ export type PromptMutation = {
|
|
16997
17139
|
timestamp?: any | null;
|
16998
17140
|
modelService?: ModelServiceTypes | null;
|
16999
17141
|
model?: string | null;
|
17142
|
+
data?: string | null;
|
17143
|
+
mimeType?: string | null;
|
17000
17144
|
citations?: Array<{
|
17001
17145
|
__typename?: 'ConversationCitation';
|
17002
17146
|
index?: number | null;
|
@@ -17146,6 +17290,8 @@ export type PromptConversationMutation = {
|
|
17146
17290
|
timestamp?: any | null;
|
17147
17291
|
modelService?: ModelServiceTypes | null;
|
17148
17292
|
model?: string | null;
|
17293
|
+
data?: string | null;
|
17294
|
+
mimeType?: string | null;
|
17149
17295
|
citations?: Array<{
|
17150
17296
|
__typename?: 'ConversationCitation';
|
17151
17297
|
index?: number | null;
|
@@ -17334,6 +17480,8 @@ export type PromptConversationMutation = {
|
|
17334
17480
|
timestamp?: any | null;
|
17335
17481
|
modelService?: ModelServiceTypes | null;
|
17336
17482
|
model?: string | null;
|
17483
|
+
data?: string | null;
|
17484
|
+
mimeType?: string | null;
|
17337
17485
|
citations?: Array<{
|
17338
17486
|
__typename?: 'ConversationCitation';
|
17339
17487
|
index?: number | null;
|
@@ -17600,6 +17748,8 @@ export type QueryConversationsQuery = {
|
|
17600
17748
|
timestamp?: any | null;
|
17601
17749
|
modelService?: ModelServiceTypes | null;
|
17602
17750
|
model?: string | null;
|
17751
|
+
data?: string | null;
|
17752
|
+
mimeType?: string | null;
|
17603
17753
|
citations?: Array<{
|
17604
17754
|
__typename?: 'ConversationCitation';
|
17605
17755
|
index?: number | null;
|
@@ -17760,6 +17910,10 @@ export type QueryConversationsQuery = {
|
|
17760
17910
|
__typename?: 'EntityReference';
|
17761
17911
|
id: string;
|
17762
17912
|
}> | null;
|
17913
|
+
users?: Array<{
|
17914
|
+
__typename?: 'EntityReference';
|
17915
|
+
id: string;
|
17916
|
+
}> | null;
|
17763
17917
|
observations?: Array<{
|
17764
17918
|
__typename?: 'ObservationCriteria';
|
17765
17919
|
type: ObservableTypes;
|
@@ -17783,6 +17937,10 @@ export type QueryConversationsQuery = {
|
|
17783
17937
|
__typename?: 'EntityReference';
|
17784
17938
|
id: string;
|
17785
17939
|
}> | null;
|
17940
|
+
users?: Array<{
|
17941
|
+
__typename?: 'EntityReference';
|
17942
|
+
id: string;
|
17943
|
+
}> | null;
|
17786
17944
|
observations?: Array<{
|
17787
17945
|
__typename?: 'ObservationCriteria';
|
17788
17946
|
type: ObservableTypes;
|
@@ -17807,6 +17965,10 @@ export type QueryConversationsQuery = {
|
|
17807
17965
|
__typename?: 'EntityReference';
|
17808
17966
|
id: string;
|
17809
17967
|
}> | null;
|
17968
|
+
users?: Array<{
|
17969
|
+
__typename?: 'EntityReference';
|
17970
|
+
id: string;
|
17971
|
+
}> | null;
|
17810
17972
|
observations?: Array<{
|
17811
17973
|
__typename?: 'ObservationCriteria';
|
17812
17974
|
type: ObservableTypes;
|
@@ -17850,6 +18012,10 @@ export type QueryConversationsQuery = {
|
|
17850
18012
|
__typename?: 'EntityReference';
|
17851
18013
|
id: string;
|
17852
18014
|
}> | null;
|
18015
|
+
users?: Array<{
|
18016
|
+
__typename?: 'EntityReference';
|
18017
|
+
id: string;
|
18018
|
+
}> | null;
|
17853
18019
|
observations?: Array<{
|
17854
18020
|
__typename?: 'ObservationCriteria';
|
17855
18021
|
type: ObservableTypes;
|
@@ -17873,6 +18039,10 @@ export type QueryConversationsQuery = {
|
|
17873
18039
|
__typename?: 'EntityReference';
|
17874
18040
|
id: string;
|
17875
18041
|
}> | null;
|
18042
|
+
users?: Array<{
|
18043
|
+
__typename?: 'EntityReference';
|
18044
|
+
id: string;
|
18045
|
+
}> | null;
|
17876
18046
|
observations?: Array<{
|
17877
18047
|
__typename?: 'ObservationCriteria';
|
17878
18048
|
type: ObservableTypes;
|
@@ -17897,6 +18067,10 @@ export type QueryConversationsQuery = {
|
|
17897
18067
|
__typename?: 'EntityReference';
|
17898
18068
|
id: string;
|
17899
18069
|
}> | null;
|
18070
|
+
users?: Array<{
|
18071
|
+
__typename?: 'EntityReference';
|
18072
|
+
id: string;
|
18073
|
+
}> | null;
|
17900
18074
|
observations?: Array<{
|
17901
18075
|
__typename?: 'ObservationCriteria';
|
17902
18076
|
type: ObservableTypes;
|
@@ -17938,6 +18112,8 @@ export type ReviseContentMutation = {
|
|
17938
18112
|
timestamp?: any | null;
|
17939
18113
|
modelService?: ModelServiceTypes | null;
|
17940
18114
|
model?: string | null;
|
18115
|
+
data?: string | null;
|
18116
|
+
mimeType?: string | null;
|
17941
18117
|
citations?: Array<{
|
17942
18118
|
__typename?: 'ConversationCitation';
|
17943
18119
|
index?: number | null;
|
@@ -18086,6 +18262,8 @@ export type ReviseEncodedImageMutation = {
|
|
18086
18262
|
timestamp?: any | null;
|
18087
18263
|
modelService?: ModelServiceTypes | null;
|
18088
18264
|
model?: string | null;
|
18265
|
+
data?: string | null;
|
18266
|
+
mimeType?: string | null;
|
18089
18267
|
citations?: Array<{
|
18090
18268
|
__typename?: 'ConversationCitation';
|
18091
18269
|
index?: number | null;
|
@@ -18233,6 +18411,8 @@ export type ReviseImageMutation = {
|
|
18233
18411
|
timestamp?: any | null;
|
18234
18412
|
modelService?: ModelServiceTypes | null;
|
18235
18413
|
model?: string | null;
|
18414
|
+
data?: string | null;
|
18415
|
+
mimeType?: string | null;
|
18236
18416
|
citations?: Array<{
|
18237
18417
|
__typename?: 'ConversationCitation';
|
18238
18418
|
index?: number | null;
|
@@ -18380,6 +18560,8 @@ export type ReviseTextMutation = {
|
|
18380
18560
|
timestamp?: any | null;
|
18381
18561
|
modelService?: ModelServiceTypes | null;
|
18382
18562
|
model?: string | null;
|
18563
|
+
data?: string | null;
|
18564
|
+
mimeType?: string | null;
|
18383
18565
|
citations?: Array<{
|
18384
18566
|
__typename?: 'ConversationCitation';
|
18385
18567
|
index?: number | null;
|
@@ -18867,6 +19049,10 @@ export type GetFeedQuery = {
|
|
18867
19049
|
google?: {
|
18868
19050
|
__typename?: 'GoogleEmailFeedProperties';
|
18869
19051
|
type?: EmailListingTypes | null;
|
19052
|
+
includeSpam?: boolean | null;
|
19053
|
+
excludeSentItems?: boolean | null;
|
19054
|
+
includeDeletedItems?: boolean | null;
|
19055
|
+
inboxOnly?: boolean | null;
|
18870
19056
|
refreshToken?: string | null;
|
18871
19057
|
clientId: string;
|
18872
19058
|
clientSecret: string;
|
@@ -18874,6 +19060,10 @@ export type GetFeedQuery = {
|
|
18874
19060
|
microsoft?: {
|
18875
19061
|
__typename?: 'MicrosoftEmailFeedProperties';
|
18876
19062
|
type?: EmailListingTypes | null;
|
19063
|
+
includeSpam?: boolean | null;
|
19064
|
+
excludeSentItems?: boolean | null;
|
19065
|
+
includeDeletedItems?: boolean | null;
|
19066
|
+
inboxOnly?: boolean | null;
|
18877
19067
|
refreshToken: string;
|
18878
19068
|
clientId: string;
|
18879
19069
|
clientSecret: string;
|
@@ -19142,6 +19332,10 @@ export type QueryFeedsQuery = {
|
|
19142
19332
|
google?: {
|
19143
19333
|
__typename?: 'GoogleEmailFeedProperties';
|
19144
19334
|
type?: EmailListingTypes | null;
|
19335
|
+
includeSpam?: boolean | null;
|
19336
|
+
excludeSentItems?: boolean | null;
|
19337
|
+
includeDeletedItems?: boolean | null;
|
19338
|
+
inboxOnly?: boolean | null;
|
19145
19339
|
refreshToken?: string | null;
|
19146
19340
|
clientId: string;
|
19147
19341
|
clientSecret: string;
|
@@ -19149,6 +19343,10 @@ export type QueryFeedsQuery = {
|
|
19149
19343
|
microsoft?: {
|
19150
19344
|
__typename?: 'MicrosoftEmailFeedProperties';
|
19151
19345
|
type?: EmailListingTypes | null;
|
19346
|
+
includeSpam?: boolean | null;
|
19347
|
+
excludeSentItems?: boolean | null;
|
19348
|
+
includeDeletedItems?: boolean | null;
|
19349
|
+
inboxOnly?: boolean | null;
|
19152
19350
|
refreshToken: string;
|
19153
19351
|
clientId: string;
|
19154
19352
|
clientSecret: string;
|
@@ -21952,6 +22150,8 @@ export type PromptSpecificationsMutation = {
|
|
21952
22150
|
timestamp?: any | null;
|
21953
22151
|
modelService?: ModelServiceTypes | null;
|
21954
22152
|
model?: string | null;
|
22153
|
+
data?: string | null;
|
22154
|
+
mimeType?: string | null;
|
21955
22155
|
citations?: Array<{
|
21956
22156
|
__typename?: 'ConversationCitation';
|
21957
22157
|
index?: number | null;
|
@@ -99,6 +99,8 @@ var AzureDocumentIntelligenceModels;
|
|
99
99
|
AzureDocumentIntelligenceModels["UsMortgageDisclosure"] = "US_MORTGAGE_DISCLOSURE";
|
100
100
|
/** Pay Stub (US) */
|
101
101
|
AzureDocumentIntelligenceModels["UsPayStub"] = "US_PAY_STUB";
|
102
|
+
/** Unified Tax Form (US) */
|
103
|
+
AzureDocumentIntelligenceModels["UsTaxForm"] = "US_TAX_FORM";
|
102
104
|
/** 1098 Form (US) */
|
103
105
|
AzureDocumentIntelligenceModels["UsTaxForm1098"] = "US_TAX_FORM1098";
|
104
106
|
/** 1098E Form (US) */
|
@@ -121,6 +123,8 @@ var AzureDocumentIntelligenceVersions;
|
|
121
123
|
AzureDocumentIntelligenceVersions["V2024_02_29Preview"] = "V2024_02_29_PREVIEW";
|
122
124
|
/** 2024-07-31 Preview API */
|
123
125
|
AzureDocumentIntelligenceVersions["V2024_07_31Preview"] = "V2024_07_31_PREVIEW";
|
126
|
+
/** 2024-11-30 GA API */
|
127
|
+
AzureDocumentIntelligenceVersions["V2024_11_30"] = "V2024_11_30";
|
124
128
|
})(AzureDocumentIntelligenceVersions || (exports.AzureDocumentIntelligenceVersions = AzureDocumentIntelligenceVersions = {}));
|
125
129
|
/** Azure OpenAI model type */
|
126
130
|
var AzureOpenAiModels;
|