graphlit-client 1.0.20260427002 → 1.0.20260428001

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.
@@ -458,6 +458,8 @@ export const GetAgent = gql `
458
458
  threadId
459
459
  }
460
460
  twitter {
461
+ postId
462
+ postUri
461
463
  replyToTweetId
462
464
  }
463
465
  github {
@@ -892,6 +894,8 @@ export const QueryAgents = gql `
892
894
  threadId
893
895
  }
894
896
  twitter {
897
+ postId
898
+ postUri
895
899
  replyToTweetId
896
900
  }
897
901
  github {
@@ -18325,6 +18329,25 @@ export const CreateReplica = gql `
18325
18329
  observationMode
18326
18330
  }
18327
18331
  }
18332
+ skill {
18333
+ filter {
18334
+ skillOwners
18335
+ skills {
18336
+ id
18337
+ }
18338
+ excludeSkills {
18339
+ id
18340
+ }
18341
+ feeds {
18342
+ id
18343
+ }
18344
+ hasFeeds
18345
+ collections {
18346
+ id
18347
+ }
18348
+ hasCollections
18349
+ }
18350
+ }
18328
18351
  git {
18329
18352
  branchType
18330
18353
  branch
@@ -18545,6 +18568,25 @@ export const GetReplica = gql `
18545
18568
  observationMode
18546
18569
  }
18547
18570
  }
18571
+ skill {
18572
+ filter {
18573
+ skillOwners
18574
+ skills {
18575
+ id
18576
+ }
18577
+ excludeSkills {
18578
+ id
18579
+ }
18580
+ feeds {
18581
+ id
18582
+ }
18583
+ hasFeeds
18584
+ collections {
18585
+ id
18586
+ }
18587
+ hasCollections
18588
+ }
18589
+ }
18548
18590
  git {
18549
18591
  branchType
18550
18592
  branch
@@ -18720,6 +18762,25 @@ export const QueryReplicas = gql `
18720
18762
  observationMode
18721
18763
  }
18722
18764
  }
18765
+ skill {
18766
+ filter {
18767
+ skillOwners
18768
+ skills {
18769
+ id
18770
+ }
18771
+ excludeSkills {
18772
+ id
18773
+ }
18774
+ feeds {
18775
+ id
18776
+ }
18777
+ hasFeeds
18778
+ collections {
18779
+ id
18780
+ }
18781
+ hasCollections
18782
+ }
18783
+ }
18723
18784
  git {
18724
18785
  branchType
18725
18786
  branch
@@ -18904,6 +18965,25 @@ export const UpdateReplica = gql `
18904
18965
  observationMode
18905
18966
  }
18906
18967
  }
18968
+ skill {
18969
+ filter {
18970
+ skillOwners
18971
+ skills {
18972
+ id
18973
+ }
18974
+ excludeSkills {
18975
+ id
18976
+ }
18977
+ feeds {
18978
+ id
18979
+ }
18980
+ hasFeeds
18981
+ collections {
18982
+ id
18983
+ }
18984
+ hasCollections
18985
+ }
18986
+ }
18907
18987
  git {
18908
18988
  branchType
18909
18989
  branch
@@ -19072,6 +19152,25 @@ export const UpsertReplica = gql `
19072
19152
  observationMode
19073
19153
  }
19074
19154
  }
19155
+ skill {
19156
+ filter {
19157
+ skillOwners
19158
+ skills {
19159
+ id
19160
+ }
19161
+ excludeSkills {
19162
+ id
19163
+ }
19164
+ feeds {
19165
+ id
19166
+ }
19167
+ hasFeeds
19168
+ collections {
19169
+ id
19170
+ }
19171
+ hasCollections
19172
+ }
19173
+ }
19075
19174
  git {
19076
19175
  branchType
19077
19176
  branch
@@ -22934,6 +22934,8 @@ export type Replica = {
22934
22934
  relevance?: Maybe<Scalars['Float']['output']>;
22935
22935
  /** The replica schedule policy. */
22936
22936
  schedulePolicy?: Maybe<ReplicaSchedulePolicy>;
22937
+ /** The skill-specific replica properties. */
22938
+ skill?: Maybe<ReplicaSkillProperties>;
22937
22939
  /** The state of the replica (i.e. created, finished). */
22938
22940
  state: EntityState;
22939
22941
  /** Whether destination deletes should be synchronized when previously replicated artifacts no longer match the replica. */
@@ -23067,6 +23069,8 @@ export type ReplicaInput = {
23067
23069
  name: Scalars['String']['input'];
23068
23070
  /** The replica schedule policy. */
23069
23071
  schedulePolicy?: InputMaybe<ReplicaSchedulePolicyInput>;
23072
+ /** The skill-specific replica properties. */
23073
+ skill?: InputMaybe<ReplicaSkillPropertiesInput>;
23070
23074
  /** Whether destination deletes should be synchronized when previously replicated artifacts no longer match the replica. */
23071
23075
  synchronizeDeletes?: InputMaybe<Scalars['Boolean']['input']>;
23072
23076
  /** The source entity type to replicate. */
@@ -23093,6 +23097,17 @@ export type ReplicaSchedulePolicyInput = {
23093
23097
  /** If a repeated replica, the interval between reconciliation sweeps. */
23094
23098
  repeatInterval?: InputMaybe<Scalars['TimeSpan']['input']>;
23095
23099
  };
23100
+ /** Represents skill-specific replica properties. */
23101
+ export type ReplicaSkillProperties = {
23102
+ __typename?: 'ReplicaSkillProperties';
23103
+ /** The filter criteria to apply when selecting skills. */
23104
+ filter?: Maybe<SkillCriteria>;
23105
+ };
23106
+ /** Represents skill-specific replica properties. */
23107
+ export type ReplicaSkillPropertiesInput = {
23108
+ /** The filter criteria to apply when selecting skills. */
23109
+ filter?: InputMaybe<SkillCriteriaInput>;
23110
+ };
23096
23111
  /** Represents an external entity artifact replica. */
23097
23112
  export type ReplicaUpdateInput = {
23098
23113
  /** The external artifact formats to replicate. */
@@ -23115,6 +23130,8 @@ export type ReplicaUpdateInput = {
23115
23130
  name?: InputMaybe<Scalars['String']['input']>;
23116
23131
  /** The replica schedule policy. */
23117
23132
  schedulePolicy?: InputMaybe<ReplicaSchedulePolicyInput>;
23133
+ /** The skill-specific replica properties. */
23134
+ skill?: InputMaybe<ReplicaSkillPropertiesInput>;
23118
23135
  /** Whether destination deletes should be synchronized when previously replicated artifacts no longer match the replica. */
23119
23136
  synchronizeDeletes?: InputMaybe<Scalars['Boolean']['input']>;
23120
23137
  /** The source entity type to replicate. */
@@ -24227,6 +24244,41 @@ export type SkillArgumentInput = {
24227
24244
  /** Whether this argument is required. Defaults to true. */
24228
24245
  required?: InputMaybe<Scalars['Boolean']['input']>;
24229
24246
  };
24247
+ /** Represents a skill filter. */
24248
+ export type SkillCriteria = {
24249
+ __typename?: 'SkillCriteria';
24250
+ /** Filter by collections. */
24251
+ collections?: Maybe<Array<EntityReference>>;
24252
+ /** Exclude skills. */
24253
+ excludeSkills?: Maybe<Array<EntityReference>>;
24254
+ /** Filter by feeds. */
24255
+ feeds?: Maybe<Array<EntityReference>>;
24256
+ /** Filter by presence or absence of associated collections. */
24257
+ hasCollections?: Maybe<Scalars['Boolean']['output']>;
24258
+ /** Filter by presence or absence of associated feeds. */
24259
+ hasFeeds?: Maybe<Scalars['Boolean']['output']>;
24260
+ /** Filter by skill owners. */
24261
+ skillOwners?: Maybe<Array<EntityOwners>>;
24262
+ /** Filter by skills. */
24263
+ skills?: Maybe<Array<EntityReference>>;
24264
+ };
24265
+ /** Represents a skill filter. */
24266
+ export type SkillCriteriaInput = {
24267
+ /** Filter by collections. */
24268
+ collections?: InputMaybe<Array<EntityReferenceInput>>;
24269
+ /** Exclude skills. */
24270
+ excludeSkills?: InputMaybe<Array<EntityReferenceInput>>;
24271
+ /** Filter by feeds. */
24272
+ feeds?: InputMaybe<Array<EntityReferenceInput>>;
24273
+ /** Filter by presence or absence of associated collections. */
24274
+ hasCollections?: InputMaybe<Scalars['Boolean']['input']>;
24275
+ /** Filter by presence or absence of associated feeds. */
24276
+ hasFeeds?: InputMaybe<Scalars['Boolean']['input']>;
24277
+ /** Filter by skill owners. */
24278
+ skillOwners?: InputMaybe<Array<EntityOwners>>;
24279
+ /** Filter by skills. */
24280
+ skills?: InputMaybe<Array<EntityReferenceInput>>;
24281
+ };
24230
24282
  /** Represents a skill feed preview item. */
24231
24283
  export type SkillFeedPreviewItem = {
24232
24284
  __typename?: 'SkillFeedPreviewItem';
@@ -25614,11 +25666,19 @@ export declare enum TwitterAuthenticationTypes {
25614
25666
  /** Represents the X/Twitter distribution properties. */
25615
25667
  export type TwitterDistributionProperties = {
25616
25668
  __typename?: 'TwitterDistributionProperties';
25669
+ /** The X/Twitter post ID to update or delete. */
25670
+ postId?: Maybe<Scalars['String']['output']>;
25671
+ /** The X/Twitter post URI to update or delete. */
25672
+ postUri?: Maybe<Scalars['String']['output']>;
25617
25673
  /** The tweet ID to reply to. */
25618
25674
  replyToTweetId?: Maybe<Scalars['String']['output']>;
25619
25675
  };
25620
25676
  /** Represents the X/Twitter distribution properties. */
25621
25677
  export type TwitterDistributionPropertiesInput = {
25678
+ /** The X/Twitter post ID to update or delete. */
25679
+ postId?: InputMaybe<Scalars['String']['input']>;
25680
+ /** The X/Twitter post URI to update or delete. */
25681
+ postUri?: InputMaybe<Scalars['String']['input']>;
25622
25682
  /** The tweet ID to reply to. */
25623
25683
  replyToTweetId?: InputMaybe<Scalars['String']['input']>;
25624
25684
  };
@@ -27237,6 +27297,8 @@ export type GetAgentQuery = {
27237
27297
  } | null;
27238
27298
  twitter?: {
27239
27299
  __typename?: 'TwitterDistributionProperties';
27300
+ postId?: string | null;
27301
+ postUri?: string | null;
27240
27302
  replyToTweetId?: string | null;
27241
27303
  } | null;
27242
27304
  github?: {
@@ -27765,6 +27827,8 @@ export type QueryAgentsQuery = {
27765
27827
  } | null;
27766
27828
  twitter?: {
27767
27829
  __typename?: 'TwitterDistributionProperties';
27830
+ postId?: string | null;
27831
+ postUri?: string | null;
27768
27832
  replyToTweetId?: string | null;
27769
27833
  } | null;
27770
27834
  github?: {
@@ -48362,6 +48426,31 @@ export type CreateReplicaMutation = {
48362
48426
  }> | null;
48363
48427
  } | null;
48364
48428
  } | null;
48429
+ skill?: {
48430
+ __typename?: 'ReplicaSkillProperties';
48431
+ filter?: {
48432
+ __typename?: 'SkillCriteria';
48433
+ skillOwners?: Array<EntityOwners> | null;
48434
+ hasFeeds?: boolean | null;
48435
+ hasCollections?: boolean | null;
48436
+ skills?: Array<{
48437
+ __typename?: 'EntityReference';
48438
+ id: string;
48439
+ }> | null;
48440
+ excludeSkills?: Array<{
48441
+ __typename?: 'EntityReference';
48442
+ id: string;
48443
+ }> | null;
48444
+ feeds?: Array<{
48445
+ __typename?: 'EntityReference';
48446
+ id: string;
48447
+ }> | null;
48448
+ collections?: Array<{
48449
+ __typename?: 'EntityReference';
48450
+ id: string;
48451
+ }> | null;
48452
+ } | null;
48453
+ } | null;
48365
48454
  git?: {
48366
48455
  __typename?: 'ReplicaGitProperties';
48367
48456
  branchType?: ReplicaBranchTypes | null;
@@ -48640,6 +48729,31 @@ export type GetReplicaQuery = {
48640
48729
  }> | null;
48641
48730
  } | null;
48642
48731
  } | null;
48732
+ skill?: {
48733
+ __typename?: 'ReplicaSkillProperties';
48734
+ filter?: {
48735
+ __typename?: 'SkillCriteria';
48736
+ skillOwners?: Array<EntityOwners> | null;
48737
+ hasFeeds?: boolean | null;
48738
+ hasCollections?: boolean | null;
48739
+ skills?: Array<{
48740
+ __typename?: 'EntityReference';
48741
+ id: string;
48742
+ }> | null;
48743
+ excludeSkills?: Array<{
48744
+ __typename?: 'EntityReference';
48745
+ id: string;
48746
+ }> | null;
48747
+ feeds?: Array<{
48748
+ __typename?: 'EntityReference';
48749
+ id: string;
48750
+ }> | null;
48751
+ collections?: Array<{
48752
+ __typename?: 'EntityReference';
48753
+ id: string;
48754
+ }> | null;
48755
+ } | null;
48756
+ } | null;
48643
48757
  git?: {
48644
48758
  __typename?: 'ReplicaGitProperties';
48645
48759
  branchType?: ReplicaBranchTypes | null;
@@ -48859,6 +48973,31 @@ export type QueryReplicasQuery = {
48859
48973
  }> | null;
48860
48974
  } | null;
48861
48975
  } | null;
48976
+ skill?: {
48977
+ __typename?: 'ReplicaSkillProperties';
48978
+ filter?: {
48979
+ __typename?: 'SkillCriteria';
48980
+ skillOwners?: Array<EntityOwners> | null;
48981
+ hasFeeds?: boolean | null;
48982
+ hasCollections?: boolean | null;
48983
+ skills?: Array<{
48984
+ __typename?: 'EntityReference';
48985
+ id: string;
48986
+ }> | null;
48987
+ excludeSkills?: Array<{
48988
+ __typename?: 'EntityReference';
48989
+ id: string;
48990
+ }> | null;
48991
+ feeds?: Array<{
48992
+ __typename?: 'EntityReference';
48993
+ id: string;
48994
+ }> | null;
48995
+ collections?: Array<{
48996
+ __typename?: 'EntityReference';
48997
+ id: string;
48998
+ }> | null;
48999
+ } | null;
49000
+ } | null;
48862
49001
  git?: {
48863
49002
  __typename?: 'ReplicaGitProperties';
48864
49003
  branchType?: ReplicaBranchTypes | null;
@@ -49091,6 +49230,31 @@ export type UpdateReplicaMutation = {
49091
49230
  }> | null;
49092
49231
  } | null;
49093
49232
  } | null;
49233
+ skill?: {
49234
+ __typename?: 'ReplicaSkillProperties';
49235
+ filter?: {
49236
+ __typename?: 'SkillCriteria';
49237
+ skillOwners?: Array<EntityOwners> | null;
49238
+ hasFeeds?: boolean | null;
49239
+ hasCollections?: boolean | null;
49240
+ skills?: Array<{
49241
+ __typename?: 'EntityReference';
49242
+ id: string;
49243
+ }> | null;
49244
+ excludeSkills?: Array<{
49245
+ __typename?: 'EntityReference';
49246
+ id: string;
49247
+ }> | null;
49248
+ feeds?: Array<{
49249
+ __typename?: 'EntityReference';
49250
+ id: string;
49251
+ }> | null;
49252
+ collections?: Array<{
49253
+ __typename?: 'EntityReference';
49254
+ id: string;
49255
+ }> | null;
49256
+ } | null;
49257
+ } | null;
49094
49258
  git?: {
49095
49259
  __typename?: 'ReplicaGitProperties';
49096
49260
  branchType?: ReplicaBranchTypes | null;
@@ -49300,6 +49464,31 @@ export type UpsertReplicaMutation = {
49300
49464
  }> | null;
49301
49465
  } | null;
49302
49466
  } | null;
49467
+ skill?: {
49468
+ __typename?: 'ReplicaSkillProperties';
49469
+ filter?: {
49470
+ __typename?: 'SkillCriteria';
49471
+ skillOwners?: Array<EntityOwners> | null;
49472
+ hasFeeds?: boolean | null;
49473
+ hasCollections?: boolean | null;
49474
+ skills?: Array<{
49475
+ __typename?: 'EntityReference';
49476
+ id: string;
49477
+ }> | null;
49478
+ excludeSkills?: Array<{
49479
+ __typename?: 'EntityReference';
49480
+ id: string;
49481
+ }> | null;
49482
+ feeds?: Array<{
49483
+ __typename?: 'EntityReference';
49484
+ id: string;
49485
+ }> | null;
49486
+ collections?: Array<{
49487
+ __typename?: 'EntityReference';
49488
+ id: string;
49489
+ }> | null;
49490
+ } | null;
49491
+ } | null;
49303
49492
  git?: {
49304
49493
  __typename?: 'ReplicaGitProperties';
49305
49494
  branchType?: ReplicaBranchTypes | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20260427002",
3
+ "version": "1.0.20260428001",
4
4
  "description": "Graphlit API Client for TypeScript",
5
5
  "type": "module",
6
6
  "main": "./dist/client.js",