graphlit-client 1.0.20250630001 → 1.0.20250701001

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 CHANGED
@@ -136,11 +136,11 @@ declare class Graphlit {
136
136
  screenshotPage(uri: string, maximumHeight?: number, isSynchronous?: boolean, workflow?: Types.EntityReferenceInput, collections?: Types.EntityReferenceInput[], correlationId?: string): Promise<Types.ScreenshotPageMutation>;
137
137
  ingestTextBatch(batch: Types.TextContentInput[], textType: Types.TextTypes, collections?: Types.EntityReferenceInput[], observations?: Types.ObservationReferenceInput[], correlationId?: string): Promise<Types.IngestTextBatchMutation>;
138
138
  ingestBatch(uris: string[], workflow?: Types.EntityReferenceInput, collections?: Types.EntityReferenceInput[], observations?: Types.ObservationReferenceInput[], correlationId?: string): Promise<Types.IngestBatchMutation>;
139
- ingestUri(uri: string, name?: string, id?: string, isSynchronous?: boolean, workflow?: Types.EntityReferenceInput, collections?: Types.EntityReferenceInput[], observations?: Types.ObservationReferenceInput[], correlationId?: string): Promise<Types.IngestUriMutation>;
140
- ingestText(text: string, name?: string, textType?: Types.TextTypes, uri?: string, id?: string, isSynchronous?: boolean, workflow?: Types.EntityReferenceInput, collections?: Types.EntityReferenceInput[], observations?: Types.ObservationReferenceInput[], correlationId?: string): Promise<Types.IngestTextMutation>;
141
- ingestMemory(text: string, name?: string, textType?: Types.TextTypes, id?: string, collections?: Types.EntityReferenceInput[], correlationId?: string): Promise<Types.IngestMemoryMutation>;
142
- ingestEvent(markdown: string, name?: string, description?: string, eventDate?: Types.Scalars["DateTime"]["input"], id?: string, collections?: Types.EntityReferenceInput[], correlationId?: string): Promise<Types.IngestEventMutation>;
143
- ingestEncodedFile(name: string, data: string, mimeType: string, fileCreationDate?: Types.Scalars["DateTime"]["input"], fileModifiedDate?: Types.Scalars["DateTime"]["input"], id?: string, isSynchronous?: boolean, workflow?: Types.EntityReferenceInput, collections?: Types.EntityReferenceInput[], observations?: Types.ObservationReferenceInput[], correlationId?: string): Promise<Types.IngestEncodedFileMutation>;
139
+ ingestUri(uri: string, name?: string, id?: string, identifier?: string, isSynchronous?: boolean, workflow?: Types.EntityReferenceInput, collections?: Types.EntityReferenceInput[], observations?: Types.ObservationReferenceInput[], correlationId?: string): Promise<Types.IngestUriMutation>;
140
+ ingestText(text: string, name?: string, textType?: Types.TextTypes, uri?: string, id?: string, identifier?: string, isSynchronous?: boolean, workflow?: Types.EntityReferenceInput, collections?: Types.EntityReferenceInput[], observations?: Types.ObservationReferenceInput[], correlationId?: string): Promise<Types.IngestTextMutation>;
141
+ ingestMemory(text: string, name?: string, textType?: Types.TextTypes, id?: string, identifier?: string, collections?: Types.EntityReferenceInput[], correlationId?: string): Promise<Types.IngestMemoryMutation>;
142
+ ingestEvent(markdown: string, name?: string, description?: string, eventDate?: Types.Scalars["DateTime"]["input"], id?: string, identifier?: string, collections?: Types.EntityReferenceInput[], correlationId?: string): Promise<Types.IngestEventMutation>;
143
+ ingestEncodedFile(name: string, data: string, mimeType: string, fileCreationDate?: Types.Scalars["DateTime"]["input"], fileModifiedDate?: Types.Scalars["DateTime"]["input"], id?: string, identifier?: string, isSynchronous?: boolean, workflow?: Types.EntityReferenceInput, collections?: Types.EntityReferenceInput[], observations?: Types.ObservationReferenceInput[], correlationId?: string): Promise<Types.IngestEncodedFileMutation>;
144
144
  updateContent(content: Types.ContentUpdateInput): Promise<Types.UpdateContentMutation>;
145
145
  deleteContent(id: string): Promise<Types.DeleteContentMutation>;
146
146
  deleteContents(ids: string[], isSynchronous?: boolean): Promise<Types.DeleteContentsMutation>;
package/dist/client.js CHANGED
@@ -540,11 +540,12 @@ class Graphlit {
540
540
  correlationId: correlationId,
541
541
  });
542
542
  }
543
- async ingestUri(uri, name, id, isSynchronous, workflow, collections, observations, correlationId) {
543
+ async ingestUri(uri, name, id, identifier, isSynchronous, workflow, collections, observations, correlationId) {
544
544
  return this.mutateAndCheckError(Documents.IngestUri, {
545
545
  uri: uri,
546
546
  name: name,
547
547
  id: id,
548
+ identifier: identifier,
548
549
  isSynchronous: isSynchronous,
549
550
  workflow: workflow,
550
551
  collections: collections,
@@ -552,13 +553,14 @@ class Graphlit {
552
553
  correlationId: correlationId,
553
554
  });
554
555
  }
555
- async ingestText(text, name, textType, uri, id, isSynchronous, workflow, collections, observations, correlationId) {
556
+ async ingestText(text, name, textType, uri, id, identifier, isSynchronous, workflow, collections, observations, correlationId) {
556
557
  return this.mutateAndCheckError(Documents.IngestText, {
557
558
  name: name,
558
559
  text: text,
559
560
  textType: textType,
560
561
  uri: uri,
561
562
  id: id,
563
+ identifier: identifier,
562
564
  isSynchronous: isSynchronous,
563
565
  workflow: workflow,
564
566
  collections: collections,
@@ -566,28 +568,30 @@ class Graphlit {
566
568
  correlationId: correlationId,
567
569
  });
568
570
  }
569
- async ingestMemory(text, name, textType, id, collections, correlationId) {
571
+ async ingestMemory(text, name, textType, id, identifier, collections, correlationId) {
570
572
  return this.mutateAndCheckError(Documents.IngestMemory, {
571
573
  name: name,
572
574
  text: text,
573
575
  textType: textType,
574
576
  id: id,
577
+ identifier: identifier,
575
578
  collections: collections,
576
579
  correlationId: correlationId,
577
580
  });
578
581
  }
579
- async ingestEvent(markdown, name, description, eventDate, id, collections, correlationId) {
582
+ async ingestEvent(markdown, name, description, eventDate, id, identifier, collections, correlationId) {
580
583
  return this.mutateAndCheckError(Documents.IngestEvent, {
581
584
  name: name,
582
585
  markdown: markdown,
583
586
  description: description,
584
587
  eventDate: eventDate,
585
588
  id: id,
589
+ identifier: identifier,
586
590
  collections: collections,
587
591
  correlationId: correlationId,
588
592
  });
589
593
  }
590
- async ingestEncodedFile(name, data, mimeType, fileCreationDate, fileModifiedDate, id, isSynchronous, workflow, collections, observations, correlationId) {
594
+ async ingestEncodedFile(name, data, mimeType, fileCreationDate, fileModifiedDate, id, identifier, isSynchronous, workflow, collections, observations, correlationId) {
591
595
  return this.mutateAndCheckError(Documents.IngestEncodedFile, {
592
596
  name: name,
593
597
  data: data,
@@ -595,6 +599,7 @@ class Graphlit {
595
599
  fileCreationDate: fileCreationDate,
596
600
  fileModifiedDate: fileModifiedDate,
597
601
  id: id,
602
+ identifier: identifier,
598
603
  isSynchronous: isSynchronous,
599
604
  workflow: workflow,
600
605
  collections: collections,
@@ -1430,6 +1430,7 @@ export const IngestBatch = gql `
1430
1430
  fileType
1431
1431
  mimeType
1432
1432
  uri
1433
+ identifier
1433
1434
  collections {
1434
1435
  id
1435
1436
  name
@@ -1466,12 +1467,13 @@ export const IngestBatch = gql `
1466
1467
  }
1467
1468
  `;
1468
1469
  export const IngestEncodedFile = gql `
1469
- mutation IngestEncodedFile($name: String!, $data: String!, $mimeType: String!, $id: ID, $fileCreationDate: DateTime, $fileModifiedDate: DateTime, $isSynchronous: Boolean, $collections: [EntityReferenceInput!], $observations: [ObservationReferenceInput!], $workflow: EntityReferenceInput, $correlationId: String) {
1470
+ mutation IngestEncodedFile($name: String!, $data: String!, $mimeType: String!, $id: ID, $identifier: String, $fileCreationDate: DateTime, $fileModifiedDate: DateTime, $isSynchronous: Boolean, $collections: [EntityReferenceInput!], $observations: [ObservationReferenceInput!], $workflow: EntityReferenceInput, $correlationId: String) {
1470
1471
  ingestEncodedFile(
1471
1472
  name: $name
1472
1473
  data: $data
1473
1474
  mimeType: $mimeType
1474
1475
  id: $id
1476
+ identifier: $identifier
1475
1477
  fileCreationDate: $fileCreationDate
1476
1478
  fileModifiedDate: $fileModifiedDate
1477
1479
  isSynchronous: $isSynchronous
@@ -1487,6 +1489,7 @@ export const IngestEncodedFile = gql `
1487
1489
  fileType
1488
1490
  mimeType
1489
1491
  uri
1492
+ identifier
1490
1493
  collections {
1491
1494
  id
1492
1495
  name
@@ -1523,13 +1526,14 @@ export const IngestEncodedFile = gql `
1523
1526
  }
1524
1527
  `;
1525
1528
  export const IngestEvent = gql `
1526
- mutation IngestEvent($markdown: String!, $name: String, $description: String, $eventDate: DateTime, $id: ID, $collections: [EntityReferenceInput!], $correlationId: String) {
1529
+ mutation IngestEvent($markdown: String!, $name: String, $description: String, $eventDate: DateTime, $id: ID, $identifier: String, $collections: [EntityReferenceInput!], $correlationId: String) {
1527
1530
  ingestEvent(
1528
1531
  name: $name
1529
1532
  description: $description
1530
1533
  eventDate: $eventDate
1531
1534
  markdown: $markdown
1532
1535
  id: $id
1536
+ identifier: $identifier
1533
1537
  collections: $collections
1534
1538
  correlationId: $correlationId
1535
1539
  ) {
@@ -1540,6 +1544,7 @@ export const IngestEvent = gql `
1540
1544
  fileType
1541
1545
  mimeType
1542
1546
  uri
1547
+ identifier
1543
1548
  collections {
1544
1549
  id
1545
1550
  name
@@ -1576,12 +1581,13 @@ export const IngestEvent = gql `
1576
1581
  }
1577
1582
  `;
1578
1583
  export const IngestMemory = gql `
1579
- mutation IngestMemory($text: String!, $name: String, $textType: TextTypes, $id: ID, $collections: [EntityReferenceInput!], $correlationId: String) {
1584
+ mutation IngestMemory($text: String!, $name: String, $textType: TextTypes, $id: ID, $identifier: String, $collections: [EntityReferenceInput!], $correlationId: String) {
1580
1585
  ingestMemory(
1581
1586
  name: $name
1582
1587
  text: $text
1583
1588
  textType: $textType
1584
1589
  id: $id
1590
+ identifier: $identifier
1585
1591
  collections: $collections
1586
1592
  correlationId: $correlationId
1587
1593
  ) {
@@ -1592,6 +1598,7 @@ export const IngestMemory = gql `
1592
1598
  fileType
1593
1599
  mimeType
1594
1600
  uri
1601
+ identifier
1595
1602
  collections {
1596
1603
  id
1597
1604
  name
@@ -1628,7 +1635,7 @@ export const IngestMemory = gql `
1628
1635
  }
1629
1636
  `;
1630
1637
  export const IngestText = gql `
1631
- mutation IngestText($text: String!, $name: String, $textType: TextTypes, $uri: URL, $id: ID, $isSynchronous: Boolean, $workflow: EntityReferenceInput, $collections: [EntityReferenceInput!], $observations: [ObservationReferenceInput!], $correlationId: String) {
1638
+ mutation IngestText($text: String!, $name: String, $textType: TextTypes, $uri: URL, $id: ID, $identifier: String, $isSynchronous: Boolean, $workflow: EntityReferenceInput, $collections: [EntityReferenceInput!], $observations: [ObservationReferenceInput!], $correlationId: String) {
1632
1639
  ingestText(
1633
1640
  name: $name
1634
1641
  text: $text
@@ -1637,6 +1644,7 @@ export const IngestText = gql `
1637
1644
  id: $id
1638
1645
  isSynchronous: $isSynchronous
1639
1646
  workflow: $workflow
1647
+ identifier: $identifier
1640
1648
  collections: $collections
1641
1649
  observations: $observations
1642
1650
  correlationId: $correlationId
@@ -1648,6 +1656,7 @@ export const IngestText = gql `
1648
1656
  fileType
1649
1657
  mimeType
1650
1658
  uri
1659
+ identifier
1651
1660
  collections {
1652
1661
  id
1653
1662
  name
@@ -1700,6 +1709,7 @@ export const IngestTextBatch = gql `
1700
1709
  fileType
1701
1710
  mimeType
1702
1711
  uri
1712
+ identifier
1703
1713
  collections {
1704
1714
  id
1705
1715
  name
@@ -1736,7 +1746,7 @@ export const IngestTextBatch = gql `
1736
1746
  }
1737
1747
  `;
1738
1748
  export const IngestUri = gql `
1739
- mutation IngestUri($name: String, $uri: URL!, $id: ID, $mimeType: String, $isSynchronous: Boolean, $workflow: EntityReferenceInput, $collections: [EntityReferenceInput!], $observations: [ObservationReferenceInput!], $correlationId: String) {
1749
+ mutation IngestUri($name: String, $uri: URL!, $id: ID, $mimeType: String, $identifier: String, $isSynchronous: Boolean, $workflow: EntityReferenceInput, $collections: [EntityReferenceInput!], $observations: [ObservationReferenceInput!], $correlationId: String) {
1740
1750
  ingestUri(
1741
1751
  name: $name
1742
1752
  uri: $uri
@@ -1745,6 +1755,7 @@ export const IngestUri = gql `
1745
1755
  workflow: $workflow
1746
1756
  collections: $collections
1747
1757
  observations: $observations
1758
+ identifier: $identifier
1748
1759
  isSynchronous: $isSynchronous
1749
1760
  correlationId: $correlationId
1750
1761
  ) {
@@ -1755,6 +1766,7 @@ export const IngestUri = gql `
1755
1766
  fileType
1756
1767
  mimeType
1757
1768
  uri
1769
+ identifier
1758
1770
  collections {
1759
1771
  id
1760
1772
  name
@@ -3004,6 +3016,7 @@ export const ScreenshotPage = gql `
3004
3016
  fileType
3005
3017
  mimeType
3006
3018
  uri
3019
+ identifier
3007
3020
  collections {
3008
3021
  id
3009
3022
  name
@@ -3096,6 +3109,7 @@ export const UpdateContent = gql `
3096
3109
  fileType
3097
3110
  mimeType
3098
3111
  uri
3112
+ identifier
3099
3113
  collections {
3100
3114
  id
3101
3115
  name
@@ -9459,6 +9459,7 @@ export type MutationIngestEncodedFileArgs = {
9459
9459
  fileCreationDate?: InputMaybe<Scalars['DateTime']['input']>;
9460
9460
  fileModifiedDate?: InputMaybe<Scalars['DateTime']['input']>;
9461
9461
  id?: InputMaybe<Scalars['ID']['input']>;
9462
+ identifier?: InputMaybe<Scalars['String']['input']>;
9462
9463
  isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
9463
9464
  mimeType: Scalars['String']['input'];
9464
9465
  name: Scalars['String']['input'];
@@ -9471,6 +9472,7 @@ export type MutationIngestEventArgs = {
9471
9472
  description?: InputMaybe<Scalars['String']['input']>;
9472
9473
  eventDate?: InputMaybe<Scalars['DateTime']['input']>;
9473
9474
  id?: InputMaybe<Scalars['ID']['input']>;
9475
+ identifier?: InputMaybe<Scalars['String']['input']>;
9474
9476
  markdown: Scalars['String']['input'];
9475
9477
  name?: InputMaybe<Scalars['String']['input']>;
9476
9478
  };
@@ -9487,6 +9489,7 @@ export type MutationIngestMemoryArgs = {
9487
9489
  collections?: InputMaybe<Array<EntityReferenceInput>>;
9488
9490
  correlationId?: InputMaybe<Scalars['String']['input']>;
9489
9491
  id?: InputMaybe<Scalars['ID']['input']>;
9492
+ identifier?: InputMaybe<Scalars['String']['input']>;
9490
9493
  name?: InputMaybe<Scalars['String']['input']>;
9491
9494
  text: Scalars['String']['input'];
9492
9495
  textType?: InputMaybe<TextTypes>;
@@ -9504,6 +9507,7 @@ export type MutationIngestTextArgs = {
9504
9507
  collections?: InputMaybe<Array<EntityReferenceInput>>;
9505
9508
  correlationId?: InputMaybe<Scalars['String']['input']>;
9506
9509
  id?: InputMaybe<Scalars['ID']['input']>;
9510
+ identifier?: InputMaybe<Scalars['String']['input']>;
9507
9511
  isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
9508
9512
  name?: InputMaybe<Scalars['String']['input']>;
9509
9513
  observations?: InputMaybe<Array<ObservationReferenceInput>>;
@@ -9524,6 +9528,7 @@ export type MutationIngestUriArgs = {
9524
9528
  collections?: InputMaybe<Array<EntityReferenceInput>>;
9525
9529
  correlationId?: InputMaybe<Scalars['String']['input']>;
9526
9530
  id?: InputMaybe<Scalars['ID']['input']>;
9531
+ identifier?: InputMaybe<Scalars['String']['input']>;
9527
9532
  isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
9528
9533
  mimeType?: InputMaybe<Scalars['String']['input']>;
9529
9534
  name?: InputMaybe<Scalars['String']['input']>;
@@ -16723,6 +16728,7 @@ export type IngestBatchMutation = {
16723
16728
  fileType?: FileTypes | null;
16724
16729
  mimeType?: string | null;
16725
16730
  uri?: any | null;
16731
+ identifier?: string | null;
16726
16732
  collections?: Array<{
16727
16733
  __typename?: 'Collection';
16728
16734
  id: string;
@@ -16768,6 +16774,7 @@ export type IngestEncodedFileMutationVariables = Exact<{
16768
16774
  data: Scalars['String']['input'];
16769
16775
  mimeType: Scalars['String']['input'];
16770
16776
  id?: InputMaybe<Scalars['ID']['input']>;
16777
+ identifier?: InputMaybe<Scalars['String']['input']>;
16771
16778
  fileCreationDate?: InputMaybe<Scalars['DateTime']['input']>;
16772
16779
  fileModifiedDate?: InputMaybe<Scalars['DateTime']['input']>;
16773
16780
  isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
@@ -16787,6 +16794,7 @@ export type IngestEncodedFileMutation = {
16787
16794
  fileType?: FileTypes | null;
16788
16795
  mimeType?: string | null;
16789
16796
  uri?: any | null;
16797
+ identifier?: string | null;
16790
16798
  collections?: Array<{
16791
16799
  __typename?: 'Collection';
16792
16800
  id: string;
@@ -16833,6 +16841,7 @@ export type IngestEventMutationVariables = Exact<{
16833
16841
  description?: InputMaybe<Scalars['String']['input']>;
16834
16842
  eventDate?: InputMaybe<Scalars['DateTime']['input']>;
16835
16843
  id?: InputMaybe<Scalars['ID']['input']>;
16844
+ identifier?: InputMaybe<Scalars['String']['input']>;
16836
16845
  collections?: InputMaybe<Array<EntityReferenceInput> | EntityReferenceInput>;
16837
16846
  correlationId?: InputMaybe<Scalars['String']['input']>;
16838
16847
  }>;
@@ -16847,6 +16856,7 @@ export type IngestEventMutation = {
16847
16856
  fileType?: FileTypes | null;
16848
16857
  mimeType?: string | null;
16849
16858
  uri?: any | null;
16859
+ identifier?: string | null;
16850
16860
  collections?: Array<{
16851
16861
  __typename?: 'Collection';
16852
16862
  id: string;
@@ -16892,6 +16902,7 @@ export type IngestMemoryMutationVariables = Exact<{
16892
16902
  name?: InputMaybe<Scalars['String']['input']>;
16893
16903
  textType?: InputMaybe<TextTypes>;
16894
16904
  id?: InputMaybe<Scalars['ID']['input']>;
16905
+ identifier?: InputMaybe<Scalars['String']['input']>;
16895
16906
  collections?: InputMaybe<Array<EntityReferenceInput> | EntityReferenceInput>;
16896
16907
  correlationId?: InputMaybe<Scalars['String']['input']>;
16897
16908
  }>;
@@ -16906,6 +16917,7 @@ export type IngestMemoryMutation = {
16906
16917
  fileType?: FileTypes | null;
16907
16918
  mimeType?: string | null;
16908
16919
  uri?: any | null;
16920
+ identifier?: string | null;
16909
16921
  collections?: Array<{
16910
16922
  __typename?: 'Collection';
16911
16923
  id: string;
@@ -16952,6 +16964,7 @@ export type IngestTextMutationVariables = Exact<{
16952
16964
  textType?: InputMaybe<TextTypes>;
16953
16965
  uri?: InputMaybe<Scalars['URL']['input']>;
16954
16966
  id?: InputMaybe<Scalars['ID']['input']>;
16967
+ identifier?: InputMaybe<Scalars['String']['input']>;
16955
16968
  isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
16956
16969
  workflow?: InputMaybe<EntityReferenceInput>;
16957
16970
  collections?: InputMaybe<Array<EntityReferenceInput> | EntityReferenceInput>;
@@ -16969,6 +16982,7 @@ export type IngestTextMutation = {
16969
16982
  fileType?: FileTypes | null;
16970
16983
  mimeType?: string | null;
16971
16984
  uri?: any | null;
16985
+ identifier?: string | null;
16972
16986
  collections?: Array<{
16973
16987
  __typename?: 'Collection';
16974
16988
  id: string;
@@ -17028,6 +17042,7 @@ export type IngestTextBatchMutation = {
17028
17042
  fileType?: FileTypes | null;
17029
17043
  mimeType?: string | null;
17030
17044
  uri?: any | null;
17045
+ identifier?: string | null;
17031
17046
  collections?: Array<{
17032
17047
  __typename?: 'Collection';
17033
17048
  id: string;
@@ -17073,6 +17088,7 @@ export type IngestUriMutationVariables = Exact<{
17073
17088
  uri: Scalars['URL']['input'];
17074
17089
  id?: InputMaybe<Scalars['ID']['input']>;
17075
17090
  mimeType?: InputMaybe<Scalars['String']['input']>;
17091
+ identifier?: InputMaybe<Scalars['String']['input']>;
17076
17092
  isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
17077
17093
  workflow?: InputMaybe<EntityReferenceInput>;
17078
17094
  collections?: InputMaybe<Array<EntityReferenceInput> | EntityReferenceInput>;
@@ -17090,6 +17106,7 @@ export type IngestUriMutation = {
17090
17106
  fileType?: FileTypes | null;
17091
17107
  mimeType?: string | null;
17092
17108
  uri?: any | null;
17109
+ identifier?: string | null;
17093
17110
  collections?: Array<{
17094
17111
  __typename?: 'Collection';
17095
17112
  id: string;
@@ -18495,6 +18512,7 @@ export type ScreenshotPageMutation = {
18495
18512
  fileType?: FileTypes | null;
18496
18513
  mimeType?: string | null;
18497
18514
  uri?: any | null;
18515
+ identifier?: string | null;
18498
18516
  collections?: Array<{
18499
18517
  __typename?: 'Collection';
18500
18518
  id: string;
@@ -18604,6 +18622,7 @@ export type UpdateContentMutation = {
18604
18622
  fileType?: FileTypes | null;
18605
18623
  mimeType?: string | null;
18606
18624
  uri?: any | null;
18625
+ identifier?: string | null;
18607
18626
  collections?: Array<{
18608
18627
  __typename?: 'Collection';
18609
18628
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20250630001",
3
+ "version": "1.0.20250701001",
4
4
  "description": "Graphlit API Client for TypeScript",
5
5
  "type": "module",
6
6
  "main": "./dist/client.js",