graphlit-client 1.0.20260502001 → 1.0.20260510002

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.
@@ -308,6 +308,7 @@ export const GetAgent = gql `
308
308
  label
309
309
  }
310
310
  rules {
311
+ state
311
312
  then
312
313
  if
313
314
  }
@@ -779,6 +780,7 @@ export const QueryAgents = gql `
779
780
  label
780
781
  }
781
782
  rules {
783
+ state
782
784
  then
783
785
  if
784
786
  }
@@ -22358,19 +22360,21 @@ export const CreateWorkflow = gql `
22358
22360
  jobs {
22359
22361
  connector {
22360
22362
  type
22361
- contentType
22362
- fileType
22363
+ contentTypes
22364
+ fileTypes
22363
22365
  model {
22364
22366
  specification {
22365
22367
  id
22366
22368
  }
22367
22369
  rules {
22370
+ state
22368
22371
  then
22369
22372
  if
22370
22373
  }
22371
22374
  }
22372
22375
  regex {
22373
22376
  rules {
22377
+ state
22374
22378
  then
22375
22379
  type
22376
22380
  path
@@ -22664,19 +22668,21 @@ export const GetWorkflow = gql `
22664
22668
  jobs {
22665
22669
  connector {
22666
22670
  type
22667
- contentType
22668
- fileType
22671
+ contentTypes
22672
+ fileTypes
22669
22673
  model {
22670
22674
  specification {
22671
22675
  id
22672
22676
  }
22673
22677
  rules {
22678
+ state
22674
22679
  then
22675
22680
  if
22676
22681
  }
22677
22682
  }
22678
22683
  regex {
22679
22684
  rules {
22685
+ state
22680
22686
  then
22681
22687
  type
22682
22688
  path
@@ -22941,19 +22947,21 @@ export const QueryWorkflows = gql `
22941
22947
  jobs {
22942
22948
  connector {
22943
22949
  type
22944
- contentType
22945
- fileType
22950
+ contentTypes
22951
+ fileTypes
22946
22952
  model {
22947
22953
  specification {
22948
22954
  id
22949
22955
  }
22950
22956
  rules {
22957
+ state
22951
22958
  then
22952
22959
  if
22953
22960
  }
22954
22961
  }
22955
22962
  regex {
22956
22963
  rules {
22964
+ state
22957
22965
  then
22958
22966
  type
22959
22967
  path
@@ -23212,19 +23220,21 @@ export const UpdateWorkflow = gql `
23212
23220
  jobs {
23213
23221
  connector {
23214
23222
  type
23215
- contentType
23216
- fileType
23223
+ contentTypes
23224
+ fileTypes
23217
23225
  model {
23218
23226
  specification {
23219
23227
  id
23220
23228
  }
23221
23229
  rules {
23230
+ state
23222
23231
  then
23223
23232
  if
23224
23233
  }
23225
23234
  }
23226
23235
  regex {
23227
23236
  rules {
23237
+ state
23228
23238
  then
23229
23239
  type
23230
23240
  path
@@ -23482,19 +23492,21 @@ export const UpsertWorkflow = gql `
23482
23492
  jobs {
23483
23493
  connector {
23484
23494
  type
23485
- contentType
23486
- fileType
23495
+ contentTypes
23496
+ fileTypes
23487
23497
  model {
23488
23498
  specification {
23489
23499
  id
23490
23500
  }
23491
23501
  rules {
23502
+ state
23492
23503
  then
23493
23504
  if
23494
23505
  }
23495
23506
  }
23496
23507
  regex {
23497
23508
  rules {
23509
+ state
23498
23510
  then
23499
23511
  type
23500
23512
  path
@@ -1505,7 +1505,10 @@ export type AuthenticationConnector = {
1505
1505
  __typename?: 'AuthenticationConnector';
1506
1506
  /** API key. */
1507
1507
  apiKey?: Maybe<Scalars['String']['output']>;
1508
- /** Arcade authentication properties. */
1508
+ /**
1509
+ * Arcade authentication properties.
1510
+ * @deprecated Arcade authentication is legacy. Use OAuth instead.
1511
+ */
1509
1512
  arcade?: Maybe<ArcadeAuthenticationProperties>;
1510
1513
  /** Google authentication properties. */
1511
1514
  google?: Maybe<GoogleAuthenticationProperties>;
@@ -1522,8 +1525,6 @@ export type AuthenticationConnector = {
1522
1525
  export type AuthenticationConnectorInput = {
1523
1526
  /** API key. */
1524
1527
  apiKey?: InputMaybe<Scalars['String']['input']>;
1525
- /** Arcade authentication properties. */
1526
- arcade?: InputMaybe<ArcadeAuthenticationPropertiesInput>;
1527
1528
  /** Google authentication properties. */
1528
1529
  google?: InputMaybe<GoogleAuthenticationPropertiesInput>;
1529
1530
  /** Microsoft authentication properties. */
@@ -2734,6 +2735,13 @@ export declare enum ChannelServiceTypes {
2734
2735
  /** WhatsApp */
2735
2736
  WhatsApp = "WHATS_APP"
2736
2737
  }
2738
+ /** Classification rule state */
2739
+ export declare enum ClassificationRuleState {
2740
+ /** Disabled */
2741
+ Disabled = "DISABLED",
2742
+ /** Enabled */
2743
+ Enabled = "ENABLED"
2744
+ }
2737
2745
  /** Represents a classification workflow job. */
2738
2746
  export type ClassificationWorkflowJob = {
2739
2747
  __typename?: 'ClassificationWorkflowJob';
@@ -3537,10 +3545,20 @@ export type ContentMarkdownArgs = {
3537
3545
  /** Represents a content classification connector. */
3538
3546
  export type ContentClassificationConnector = {
3539
3547
  __typename?: 'ContentClassificationConnector';
3540
- /** The content type for filtering content classification services. */
3548
+ /**
3549
+ * The content type to allow for classification.
3550
+ * @deprecated Use contentTypes instead.
3551
+ */
3541
3552
  contentType?: Maybe<ContentTypes>;
3542
- /** The file type for filtering content classification services. */
3553
+ /** The content types to allow for classification. */
3554
+ contentTypes?: Maybe<Array<ContentTypes>>;
3555
+ /**
3556
+ * The file type to allow for classification.
3557
+ * @deprecated Use fileTypes instead.
3558
+ */
3543
3559
  fileType?: Maybe<FileTypes>;
3560
+ /** The file types to allow for classification. */
3561
+ fileTypes?: Maybe<Array<FileTypes>>;
3544
3562
  /** The specific properties for LLM content classification. */
3545
3563
  model?: Maybe<ModelContentClassificationProperties>;
3546
3564
  /** The specific properties for regex content classification. */
@@ -3550,15 +3568,15 @@ export type ContentClassificationConnector = {
3550
3568
  };
3551
3569
  /** Represents a content classification connector. */
3552
3570
  export type ContentClassificationConnectorInput = {
3553
- /** The content type for filtering content classification services. */
3554
- contentType?: InputMaybe<ContentTypes>;
3555
- /** The file type for filtering content classification services. */
3556
- fileType?: InputMaybe<FileTypes>;
3571
+ /** The content types to allow for classification. */
3572
+ contentTypes?: InputMaybe<Array<ContentTypes>>;
3573
+ /** The file types to allow for classification. */
3574
+ fileTypes?: InputMaybe<Array<FileTypes>>;
3557
3575
  /** The specific properties for LLM content classification. */
3558
3576
  model?: InputMaybe<ModelContentClassificationPropertiesInput>;
3559
3577
  /** The specific properties for regex content classification. */
3560
3578
  regex?: InputMaybe<RegexContentClassificationPropertiesInput>;
3561
- /** The entity enrichment service type. */
3579
+ /** The content classification service type. */
3562
3580
  type?: InputMaybe<ContentClassificationServiceTypes>;
3563
3581
  };
3564
3582
  /** Represents the applied result of content classification. */
@@ -9092,7 +9110,10 @@ export type GitHubMilestonesFeedProperties = {
9092
9110
  __typename?: 'GitHubMilestonesFeedProperties';
9093
9111
  /** Authentication type. */
9094
9112
  authenticationType?: Maybe<GitHubAuthenticationTypes>;
9095
- /** Authorization identifier. */
9113
+ /**
9114
+ * Authorization identifier.
9115
+ * @deprecated Use connector instead.
9116
+ */
9096
9117
  authorizationId?: Maybe<Scalars['String']['output']>;
9097
9118
  /** OAuth client identifier. */
9098
9119
  clientId?: Maybe<Scalars['String']['output']>;
@@ -9115,8 +9136,6 @@ export type GitHubMilestonesFeedProperties = {
9115
9136
  export type GitHubMilestonesFeedPropertiesInput = {
9116
9137
  /** Authentication type. */
9117
9138
  authenticationType?: InputMaybe<GitHubAuthenticationTypes>;
9118
- /** Authorization identifier. */
9119
- authorizationId?: InputMaybe<Scalars['String']['input']>;
9120
9139
  /** OAuth client identifier. */
9121
9140
  clientId?: InputMaybe<Scalars['String']['input']>;
9122
9141
  /** OAuth client secret. */
@@ -9138,8 +9157,6 @@ export type GitHubMilestonesFeedPropertiesInput = {
9138
9157
  export type GitHubMilestonesFeedPropertiesUpdateInput = {
9139
9158
  /** Authentication type. */
9140
9159
  authenticationType?: InputMaybe<GitHubAuthenticationTypes>;
9141
- /** Authorization identifier. */
9142
- authorizationId?: InputMaybe<Scalars['String']['input']>;
9143
9160
  /** OAuth client identifier. */
9144
9161
  clientId?: InputMaybe<Scalars['String']['input']>;
9145
9162
  /** OAuth client secret. */
@@ -9515,7 +9532,10 @@ export type GitLabMilestonesFeedProperties = {
9515
9532
  __typename?: 'GitLabMilestonesFeedProperties';
9516
9533
  /** Authentication type. */
9517
9534
  authenticationType?: Maybe<GitLabAuthenticationTypes>;
9518
- /** Authorization identifier. */
9535
+ /**
9536
+ * Authorization identifier.
9537
+ * @deprecated Use connector instead.
9538
+ */
9519
9539
  authorizationId?: Maybe<Scalars['String']['output']>;
9520
9540
  /** OAuth client identifier. */
9521
9541
  clientId?: Maybe<Scalars['String']['output']>;
@@ -9536,8 +9556,6 @@ export type GitLabMilestonesFeedProperties = {
9536
9556
  export type GitLabMilestonesFeedPropertiesInput = {
9537
9557
  /** Authentication type. */
9538
9558
  authenticationType?: InputMaybe<GitLabAuthenticationTypes>;
9539
- /** Authorization identifier. */
9540
- authorizationId?: InputMaybe<Scalars['String']['input']>;
9541
9559
  /** OAuth client identifier. */
9542
9560
  clientId?: InputMaybe<Scalars['String']['input']>;
9543
9561
  /** OAuth client secret. */
@@ -9557,8 +9575,6 @@ export type GitLabMilestonesFeedPropertiesInput = {
9557
9575
  export type GitLabMilestonesFeedPropertiesUpdateInput = {
9558
9576
  /** Authentication type. */
9559
9577
  authenticationType?: InputMaybe<GitLabAuthenticationTypes>;
9560
- /** Authorization identifier. */
9561
- authorizationId?: InputMaybe<Scalars['String']['input']>;
9562
9578
  /** OAuth client identifier. */
9563
9579
  clientId?: InputMaybe<Scalars['String']['input']>;
9564
9580
  /** OAuth client secret. */
@@ -12654,6 +12670,8 @@ export declare enum JinaModels {
12654
12670
  export declare enum JiraAuthenticationTypes {
12655
12671
  /** Connector authentication */
12656
12672
  Connector = "CONNECTOR",
12673
+ /** OAuth authentication */
12674
+ OAuth = "O_AUTH",
12657
12675
  /** Token authentication */
12658
12676
  Token = "TOKEN"
12659
12677
  }
@@ -19486,6 +19504,10 @@ export declare enum OpenAiModels {
19486
19504
  Gpt54Nano_400K = "GPT54_NANO_400K",
19487
19505
  /** GPT 5.4 Nano 400k (2026-03-17 version) */
19488
19506
  Gpt54Nano_400K_20260317 = "GPT54_NANO_400K_20260317",
19507
+ /** GPT 5.5 1024k (Latest) */
19508
+ Gpt55_1024K = "GPT55_1024K",
19509
+ /** GPT 5.5 1024k (2026-04-23 version) */
19510
+ Gpt55_1024K_20260423 = "GPT55_1024K_20260423",
19489
19511
  /** o1 200k (Latest) */
19490
19512
  O1_200K = "O1_200K",
19491
19513
  /** o1 200k (2024-12-17 version) */
@@ -21476,6 +21498,8 @@ export type PromptClassificationRule = {
21476
21498
  __typename?: 'PromptClassificationRule';
21477
21499
  /** The LLM prompt for content classification. Treat as 'If content ...'. */
21478
21500
  if?: Maybe<Scalars['String']['output']>;
21501
+ /** The classification rule state. Defaults to enabled. */
21502
+ state?: Maybe<ClassificationRuleState>;
21479
21503
  /** The label name to be assigned upon content classification. Treat as 'Then label as ...'. */
21480
21504
  then?: Maybe<Scalars['String']['output']>;
21481
21505
  };
@@ -21483,6 +21507,8 @@ export type PromptClassificationRule = {
21483
21507
  export type PromptClassificationRuleInput = {
21484
21508
  /** The LLM prompt for content classification. Treat as 'If content ...'. */
21485
21509
  if?: InputMaybe<Scalars['String']['input']>;
21510
+ /** The classification rule state. Defaults to enabled. */
21511
+ state?: InputMaybe<ClassificationRuleState>;
21486
21512
  /** The label name to be assigned upon content classification. Treat as 'Then label as ...'. */
21487
21513
  then?: InputMaybe<Scalars['String']['input']>;
21488
21514
  };
@@ -23024,6 +23050,8 @@ export type RegexClassificationRule = {
23024
23050
  matches?: Maybe<Scalars['String']['output']>;
23025
23051
  /** The JSONPath of the JSON property to match with regex pattern. Used only with metadata sources. Treat as 'If property at ... matches regex pattern'. */
23026
23052
  path?: Maybe<Scalars['String']['output']>;
23053
+ /** The classification rule state. Defaults to enabled. */
23054
+ state?: Maybe<ClassificationRuleState>;
23027
23055
  /** The label name to be assigned upon content classification. Treat as 'Then label as ...'. */
23028
23056
  then?: Maybe<Scalars['String']['output']>;
23029
23057
  /** The content classification source type. */
@@ -23035,6 +23063,8 @@ export type RegexClassificationRuleInput = {
23035
23063
  matches?: InputMaybe<Scalars['String']['input']>;
23036
23064
  /** The JSONPath of the JSON property to match with regex pattern. Used only with metadata sources. Treat as 'If property at ... matches regex pattern'. */
23037
23065
  path?: InputMaybe<Scalars['String']['input']>;
23066
+ /** The classification rule state. Defaults to enabled. */
23067
+ state?: InputMaybe<ClassificationRuleState>;
23038
23068
  /** The label name to be assigned upon content classification. Treat as 'Then label as ...'. */
23039
23069
  then?: InputMaybe<Scalars['String']['input']>;
23040
23070
  /** The content classification source type. */
@@ -25383,11 +25413,15 @@ export type StorageGateRule = {
25383
25413
  __typename?: 'StorageGateRule';
25384
25414
  /** The rule condition. */
25385
25415
  if: Scalars['String']['output'];
25416
+ /** The storage gate rule state. Defaults to enabled. */
25417
+ state?: Maybe<ClassificationRuleState>;
25386
25418
  };
25387
25419
  /** Represents an input storage gate rule. */
25388
25420
  export type StorageGateRuleInput = {
25389
25421
  /** The rule condition. */
25390
25422
  if: Scalars['String']['input'];
25423
+ /** The storage gate rule state. Defaults to enabled. */
25424
+ state?: InputMaybe<ClassificationRuleState>;
25391
25425
  };
25392
25426
  /** Storage gate types */
25393
25427
  export declare enum StorageGateTypes {
@@ -27465,6 +27499,7 @@ export type GetAgentQuery = {
27465
27499
  }> | null;
27466
27500
  rules?: Array<{
27467
27501
  __typename?: 'PromptClassificationRule';
27502
+ state?: ClassificationRuleState | null;
27468
27503
  then?: string | null;
27469
27504
  if?: string | null;
27470
27505
  }> | null;
@@ -28033,6 +28068,7 @@ export type QueryAgentsQuery = {
28033
28068
  }> | null;
28034
28069
  rules?: Array<{
28035
28070
  __typename?: 'PromptClassificationRule';
28071
+ state?: ClassificationRuleState | null;
28036
28072
  then?: string | null;
28037
28073
  if?: string | null;
28038
28074
  }> | null;
@@ -53734,8 +53770,8 @@ export type CreateWorkflowMutation = {
53734
53770
  connector?: {
53735
53771
  __typename?: 'ContentClassificationConnector';
53736
53772
  type: ContentClassificationServiceTypes;
53737
- contentType?: ContentTypes | null;
53738
- fileType?: FileTypes | null;
53773
+ contentTypes?: Array<ContentTypes> | null;
53774
+ fileTypes?: Array<FileTypes> | null;
53739
53775
  model?: {
53740
53776
  __typename?: 'ModelContentClassificationProperties';
53741
53777
  specification?: {
@@ -53744,6 +53780,7 @@ export type CreateWorkflowMutation = {
53744
53780
  } | null;
53745
53781
  rules?: Array<{
53746
53782
  __typename?: 'PromptClassificationRule';
53783
+ state?: ClassificationRuleState | null;
53747
53784
  then?: string | null;
53748
53785
  if?: string | null;
53749
53786
  } | null> | null;
@@ -53752,6 +53789,7 @@ export type CreateWorkflowMutation = {
53752
53789
  __typename?: 'RegexContentClassificationProperties';
53753
53790
  rules?: Array<{
53754
53791
  __typename?: 'RegexClassificationRule';
53792
+ state?: ClassificationRuleState | null;
53755
53793
  then?: string | null;
53756
53794
  type?: RegexSourceTypes | null;
53757
53795
  path?: string | null;
@@ -54118,8 +54156,8 @@ export type GetWorkflowQuery = {
54118
54156
  connector?: {
54119
54157
  __typename?: 'ContentClassificationConnector';
54120
54158
  type: ContentClassificationServiceTypes;
54121
- contentType?: ContentTypes | null;
54122
- fileType?: FileTypes | null;
54159
+ contentTypes?: Array<ContentTypes> | null;
54160
+ fileTypes?: Array<FileTypes> | null;
54123
54161
  model?: {
54124
54162
  __typename?: 'ModelContentClassificationProperties';
54125
54163
  specification?: {
@@ -54128,6 +54166,7 @@ export type GetWorkflowQuery = {
54128
54166
  } | null;
54129
54167
  rules?: Array<{
54130
54168
  __typename?: 'PromptClassificationRule';
54169
+ state?: ClassificationRuleState | null;
54131
54170
  then?: string | null;
54132
54171
  if?: string | null;
54133
54172
  } | null> | null;
@@ -54136,6 +54175,7 @@ export type GetWorkflowQuery = {
54136
54175
  __typename?: 'RegexContentClassificationProperties';
54137
54176
  rules?: Array<{
54138
54177
  __typename?: 'RegexClassificationRule';
54178
+ state?: ClassificationRuleState | null;
54139
54179
  then?: string | null;
54140
54180
  type?: RegexSourceTypes | null;
54141
54181
  path?: string | null;
@@ -54465,8 +54505,8 @@ export type QueryWorkflowsQuery = {
54465
54505
  connector?: {
54466
54506
  __typename?: 'ContentClassificationConnector';
54467
54507
  type: ContentClassificationServiceTypes;
54468
- contentType?: ContentTypes | null;
54469
- fileType?: FileTypes | null;
54508
+ contentTypes?: Array<ContentTypes> | null;
54509
+ fileTypes?: Array<FileTypes> | null;
54470
54510
  model?: {
54471
54511
  __typename?: 'ModelContentClassificationProperties';
54472
54512
  specification?: {
@@ -54475,6 +54515,7 @@ export type QueryWorkflowsQuery = {
54475
54515
  } | null;
54476
54516
  rules?: Array<{
54477
54517
  __typename?: 'PromptClassificationRule';
54518
+ state?: ClassificationRuleState | null;
54478
54519
  then?: string | null;
54479
54520
  if?: string | null;
54480
54521
  } | null> | null;
@@ -54483,6 +54524,7 @@ export type QueryWorkflowsQuery = {
54483
54524
  __typename?: 'RegexContentClassificationProperties';
54484
54525
  rules?: Array<{
54485
54526
  __typename?: 'RegexClassificationRule';
54527
+ state?: ClassificationRuleState | null;
54486
54528
  then?: string | null;
54487
54529
  type?: RegexSourceTypes | null;
54488
54530
  path?: string | null;
@@ -54803,8 +54845,8 @@ export type UpdateWorkflowMutation = {
54803
54845
  connector?: {
54804
54846
  __typename?: 'ContentClassificationConnector';
54805
54847
  type: ContentClassificationServiceTypes;
54806
- contentType?: ContentTypes | null;
54807
- fileType?: FileTypes | null;
54848
+ contentTypes?: Array<ContentTypes> | null;
54849
+ fileTypes?: Array<FileTypes> | null;
54808
54850
  model?: {
54809
54851
  __typename?: 'ModelContentClassificationProperties';
54810
54852
  specification?: {
@@ -54813,6 +54855,7 @@ export type UpdateWorkflowMutation = {
54813
54855
  } | null;
54814
54856
  rules?: Array<{
54815
54857
  __typename?: 'PromptClassificationRule';
54858
+ state?: ClassificationRuleState | null;
54816
54859
  then?: string | null;
54817
54860
  if?: string | null;
54818
54861
  } | null> | null;
@@ -54821,6 +54864,7 @@ export type UpdateWorkflowMutation = {
54821
54864
  __typename?: 'RegexContentClassificationProperties';
54822
54865
  rules?: Array<{
54823
54866
  __typename?: 'RegexClassificationRule';
54867
+ state?: ClassificationRuleState | null;
54824
54868
  then?: string | null;
54825
54869
  type?: RegexSourceTypes | null;
54826
54870
  path?: string | null;
@@ -55140,8 +55184,8 @@ export type UpsertWorkflowMutation = {
55140
55184
  connector?: {
55141
55185
  __typename?: 'ContentClassificationConnector';
55142
55186
  type: ContentClassificationServiceTypes;
55143
- contentType?: ContentTypes | null;
55144
- fileType?: FileTypes | null;
55187
+ contentTypes?: Array<ContentTypes> | null;
55188
+ fileTypes?: Array<FileTypes> | null;
55145
55189
  model?: {
55146
55190
  __typename?: 'ModelContentClassificationProperties';
55147
55191
  specification?: {
@@ -55150,6 +55194,7 @@ export type UpsertWorkflowMutation = {
55150
55194
  } | null;
55151
55195
  rules?: Array<{
55152
55196
  __typename?: 'PromptClassificationRule';
55197
+ state?: ClassificationRuleState | null;
55153
55198
  then?: string | null;
55154
55199
  if?: string | null;
55155
55200
  } | null> | null;
@@ -55158,6 +55203,7 @@ export type UpsertWorkflowMutation = {
55158
55203
  __typename?: 'RegexContentClassificationProperties';
55159
55204
  rules?: Array<{
55160
55205
  __typename?: 'RegexClassificationRule';
55206
+ state?: ClassificationRuleState | null;
55161
55207
  then?: string | null;
55162
55208
  type?: RegexSourceTypes | null;
55163
55209
  path?: string | null;
@@ -472,6 +472,14 @@ export var ChannelServiceTypes;
472
472
  /** WhatsApp */
473
473
  ChannelServiceTypes["WhatsApp"] = "WHATS_APP";
474
474
  })(ChannelServiceTypes || (ChannelServiceTypes = {}));
475
+ /** Classification rule state */
476
+ export var ClassificationRuleState;
477
+ (function (ClassificationRuleState) {
478
+ /** Disabled */
479
+ ClassificationRuleState["Disabled"] = "DISABLED";
480
+ /** Enabled */
481
+ ClassificationRuleState["Enabled"] = "ENABLED";
482
+ })(ClassificationRuleState || (ClassificationRuleState = {}));
475
483
  /** Cohere model type */
476
484
  export var CohereModels;
477
485
  (function (CohereModels) {
@@ -2135,6 +2143,8 @@ export var JiraAuthenticationTypes;
2135
2143
  (function (JiraAuthenticationTypes) {
2136
2144
  /** Connector authentication */
2137
2145
  JiraAuthenticationTypes["Connector"] = "CONNECTOR";
2146
+ /** OAuth authentication */
2147
+ JiraAuthenticationTypes["OAuth"] = "O_AUTH";
2138
2148
  /** Token authentication */
2139
2149
  JiraAuthenticationTypes["Token"] = "TOKEN";
2140
2150
  })(JiraAuthenticationTypes || (JiraAuthenticationTypes = {}));
@@ -2830,6 +2840,10 @@ export var OpenAiModels;
2830
2840
  OpenAiModels["Gpt54Nano_400K"] = "GPT54_NANO_400K";
2831
2841
  /** GPT 5.4 Nano 400k (2026-03-17 version) */
2832
2842
  OpenAiModels["Gpt54Nano_400K_20260317"] = "GPT54_NANO_400K_20260317";
2843
+ /** GPT 5.5 1024k (Latest) */
2844
+ OpenAiModels["Gpt55_1024K"] = "GPT55_1024K";
2845
+ /** GPT 5.5 1024k (2026-04-23 version) */
2846
+ OpenAiModels["Gpt55_1024K_20260423"] = "GPT55_1024K_20260423";
2833
2847
  /** o1 200k (Latest) */
2834
2848
  OpenAiModels["O1_200K"] = "O1_200K";
2835
2849
  /** o1 200k (2024-12-17 version) */
@@ -50,6 +50,8 @@ const OPENAI_MODEL_MAP = {
50
50
  [Types.OpenAiModels.Gpt54Mini_400K_20260317]: "gpt-5.4-mini-2026-03-17",
51
51
  [Types.OpenAiModels.Gpt54Nano_400K]: "gpt-5.4-nano",
52
52
  [Types.OpenAiModels.Gpt54Nano_400K_20260317]: "gpt-5.4-nano-2026-03-17",
53
+ [Types.OpenAiModels.Gpt55_1024K]: "gpt-5.5",
54
+ [Types.OpenAiModels.Gpt55_1024K_20260423]: "gpt-5.5-2026-04-23",
53
55
  // O1 models
54
56
  [Types.OpenAiModels.O1_200K]: "o1",
55
57
  [Types.OpenAiModels.O1_200K_20241217]: "o1-2024-12-17",
@@ -73,6 +75,8 @@ const OPENAI_RESPONSES_MODEL_ENUMS = new Set([
73
75
  Types.OpenAiModels.Gpt54Mini_400K_20260317,
74
76
  Types.OpenAiModels.Gpt54Nano_400K,
75
77
  Types.OpenAiModels.Gpt54Nano_400K_20260317,
78
+ Types.OpenAiModels.Gpt55_1024K,
79
+ Types.OpenAiModels.Gpt55_1024K_20260423,
76
80
  ]);
77
81
  // Anthropic model mappings
78
82
  const ANTHROPIC_MODEL_MAP = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20260502001",
3
+ "version": "1.0.20260510002",
4
4
  "description": "Graphlit API Client for TypeScript",
5
5
  "type": "module",
6
6
  "main": "./dist/client.js",