Skip to content

Commit a66e3d0

Browse files
committed
SDK regeneration
1 parent c4b15d6 commit a66e3d0

File tree

16 files changed

+283
-159
lines changed

16 files changed

+283
-159
lines changed

reference.md

+40-8
Original file line numberDiff line numberDiff line change
@@ -3650,7 +3650,7 @@ await client.user.getSessions("userId");
36503650

36513651
## Graph Edge
36523652

3653-
<details><summary><code>client.graph.edge.<a href="/src/api/resources/graph/resources/edge/client/Client.ts">getByGroupId</a>(groupId) -> Zep.EntityEdge[]</code></summary>
3653+
<details><summary><code>client.graph.edge.<a href="/src/api/resources/graph/resources/edge/client/Client.ts">getByGroupId</a>(groupId, { ...params }) -> Zep.EntityEdge[]</code></summary>
36543654
<dl>
36553655
<dd>
36563656

@@ -3678,7 +3678,7 @@ Returns all edges for a group.
36783678
<dd>
36793679

36803680
```typescript
3681-
await client.graph.edge.getByGroupId("group_id");
3681+
await client.graph.edge.getByGroupId("group_id", {});
36823682
```
36833683

36843684
</dd>
@@ -3702,6 +3702,14 @@ await client.graph.edge.getByGroupId("group_id");
37023702
<dl>
37033703
<dd>
37043704

3705+
**request:** `Zep.GraphEdgesRequest`
3706+
3707+
</dd>
3708+
</dl>
3709+
3710+
<dl>
3711+
<dd>
3712+
37053713
**requestOptions:** `Edge.RequestOptions`
37063714

37073715
</dd>
@@ -3713,7 +3721,7 @@ await client.graph.edge.getByGroupId("group_id");
37133721
</dl>
37143722
</details>
37153723

3716-
<details><summary><code>client.graph.edge.<a href="/src/api/resources/graph/resources/edge/client/Client.ts">getByUserId</a>(userId) -> Zep.EntityEdge[]</code></summary>
3724+
<details><summary><code>client.graph.edge.<a href="/src/api/resources/graph/resources/edge/client/Client.ts">getByUserId</a>(userId, { ...params }) -> Zep.EntityEdge[]</code></summary>
37173725
<dl>
37183726
<dd>
37193727

@@ -3741,7 +3749,7 @@ Returns all edges for a user.
37413749
<dd>
37423750

37433751
```typescript
3744-
await client.graph.edge.getByUserId("user_id");
3752+
await client.graph.edge.getByUserId("user_id", {});
37453753
```
37463754

37473755
</dd>
@@ -3765,6 +3773,14 @@ await client.graph.edge.getByUserId("user_id");
37653773
<dl>
37663774
<dd>
37673775

3776+
**request:** `Zep.GraphEdgesRequest`
3777+
3778+
</dd>
3779+
</dl>
3780+
3781+
<dl>
3782+
<dd>
3783+
37683784
**requestOptions:** `Edge.RequestOptions`
37693785

37703786
</dd>
@@ -4237,7 +4253,7 @@ await client.graph.episode.getNodesAndEdges("uuid");
42374253

42384254
## Graph Node
42394255

4240-
<details><summary><code>client.graph.node.<a href="/src/api/resources/graph/resources/node/client/Client.ts">getByGroupId</a>(groupId) -> Zep.EntityNode[]</code></summary>
4256+
<details><summary><code>client.graph.node.<a href="/src/api/resources/graph/resources/node/client/Client.ts">getByGroupId</a>(groupId, { ...params }) -> Zep.EntityNode[]</code></summary>
42414257
<dl>
42424258
<dd>
42434259

@@ -4265,7 +4281,7 @@ Returns all nodes for a group.
42654281
<dd>
42664282

42674283
```typescript
4268-
await client.graph.node.getByGroupId("group_id");
4284+
await client.graph.node.getByGroupId("group_id", {});
42694285
```
42704286

42714287
</dd>
@@ -4289,6 +4305,14 @@ await client.graph.node.getByGroupId("group_id");
42894305
<dl>
42904306
<dd>
42914307

4308+
**request:** `Zep.GraphNodesRequest`
4309+
4310+
</dd>
4311+
</dl>
4312+
4313+
<dl>
4314+
<dd>
4315+
42924316
**requestOptions:** `Node.RequestOptions`
42934317

42944318
</dd>
@@ -4300,7 +4324,7 @@ await client.graph.node.getByGroupId("group_id");
43004324
</dl>
43014325
</details>
43024326

4303-
<details><summary><code>client.graph.node.<a href="/src/api/resources/graph/resources/node/client/Client.ts">getByUserId</a>(userId) -> Zep.EntityNode[]</code></summary>
4327+
<details><summary><code>client.graph.node.<a href="/src/api/resources/graph/resources/node/client/Client.ts">getByUserId</a>(userId, { ...params }) -> Zep.EntityNode[]</code></summary>
43044328
<dl>
43054329
<dd>
43064330

@@ -4328,7 +4352,7 @@ Returns all nodes for a user
43284352
<dd>
43294353

43304354
```typescript
4331-
await client.graph.node.getByUserId("user_id");
4355+
await client.graph.node.getByUserId("user_id", {});
43324356
```
43334357

43344358
</dd>
@@ -4352,6 +4376,14 @@ await client.graph.node.getByUserId("user_id");
43524376
<dl>
43534377
<dd>
43544378

4379+
**request:** `Zep.GraphNodesRequest`
4380+
4381+
</dd>
4382+
</dl>
4383+
4384+
<dl>
4385+
<dd>
4386+
43554387
**requestOptions:** `Node.RequestOptions`
43564388

43574389
</dd>

src/api/resources/document/client/Client.ts

+26-26
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ export class Document {
5252
headers: {
5353
"X-Fern-Language": "JavaScript",
5454
"X-Fern-SDK-Name": "zep-cloud",
55-
"X-Fern-SDK-Version": "2.9.0",
56-
"User-Agent": "zep-cloud/2.9.0",
55+
"X-Fern-SDK-Version": "2.10.0",
56+
"User-Agent": "zep-cloud/2.10.0",
5757
"X-Fern-Runtime": core.RUNTIME.type,
5858
"X-Fern-Runtime-Version": core.RUNTIME.version,
5959
...(await this._getCustomAuthorizationHeaders()),
@@ -147,8 +147,8 @@ export class Document {
147147
headers: {
148148
"X-Fern-Language": "JavaScript",
149149
"X-Fern-SDK-Name": "zep-cloud",
150-
"X-Fern-SDK-Version": "2.9.0",
151-
"User-Agent": "zep-cloud/2.9.0",
150+
"X-Fern-SDK-Version": "2.10.0",
151+
"User-Agent": "zep-cloud/2.10.0",
152152
"X-Fern-Runtime": core.RUNTIME.type,
153153
"X-Fern-Runtime-Version": core.RUNTIME.version,
154154
...(await this._getCustomAuthorizationHeaders()),
@@ -264,8 +264,8 @@ export class Document {
264264
headers: {
265265
"X-Fern-Language": "JavaScript",
266266
"X-Fern-SDK-Name": "zep-cloud",
267-
"X-Fern-SDK-Version": "2.9.0",
268-
"User-Agent": "zep-cloud/2.9.0",
267+
"X-Fern-SDK-Version": "2.10.0",
268+
"User-Agent": "zep-cloud/2.10.0",
269269
"X-Fern-Runtime": core.RUNTIME.type,
270270
"X-Fern-Runtime-Version": core.RUNTIME.version,
271271
...(await this._getCustomAuthorizationHeaders()),
@@ -380,8 +380,8 @@ export class Document {
380380
headers: {
381381
"X-Fern-Language": "JavaScript",
382382
"X-Fern-SDK-Name": "zep-cloud",
383-
"X-Fern-SDK-Version": "2.9.0",
384-
"User-Agent": "zep-cloud/2.9.0",
383+
"X-Fern-SDK-Version": "2.10.0",
384+
"User-Agent": "zep-cloud/2.10.0",
385385
"X-Fern-Runtime": core.RUNTIME.type,
386386
"X-Fern-Runtime-Version": core.RUNTIME.version,
387387
...(await this._getCustomAuthorizationHeaders()),
@@ -497,8 +497,8 @@ export class Document {
497497
headers: {
498498
"X-Fern-Language": "JavaScript",
499499
"X-Fern-SDK-Name": "zep-cloud",
500-
"X-Fern-SDK-Version": "2.9.0",
501-
"User-Agent": "zep-cloud/2.9.0",
500+
"X-Fern-SDK-Version": "2.10.0",
501+
"User-Agent": "zep-cloud/2.10.0",
502502
"X-Fern-Runtime": core.RUNTIME.type,
503503
"X-Fern-Runtime-Version": core.RUNTIME.version,
504504
...(await this._getCustomAuthorizationHeaders()),
@@ -616,8 +616,8 @@ export class Document {
616616
headers: {
617617
"X-Fern-Language": "JavaScript",
618618
"X-Fern-SDK-Name": "zep-cloud",
619-
"X-Fern-SDK-Version": "2.9.0",
620-
"User-Agent": "zep-cloud/2.9.0",
619+
"X-Fern-SDK-Version": "2.10.0",
620+
"User-Agent": "zep-cloud/2.10.0",
621621
"X-Fern-Runtime": core.RUNTIME.type,
622622
"X-Fern-Runtime-Version": core.RUNTIME.version,
623623
...(await this._getCustomAuthorizationHeaders()),
@@ -725,8 +725,8 @@ export class Document {
725725
headers: {
726726
"X-Fern-Language": "JavaScript",
727727
"X-Fern-SDK-Name": "zep-cloud",
728-
"X-Fern-SDK-Version": "2.9.0",
729-
"User-Agent": "zep-cloud/2.9.0",
728+
"X-Fern-SDK-Version": "2.10.0",
729+
"User-Agent": "zep-cloud/2.10.0",
730730
"X-Fern-Runtime": core.RUNTIME.type,
731731
"X-Fern-Runtime-Version": core.RUNTIME.version,
732732
...(await this._getCustomAuthorizationHeaders()),
@@ -836,8 +836,8 @@ export class Document {
836836
headers: {
837837
"X-Fern-Language": "JavaScript",
838838
"X-Fern-SDK-Name": "zep-cloud",
839-
"X-Fern-SDK-Version": "2.9.0",
840-
"User-Agent": "zep-cloud/2.9.0",
839+
"X-Fern-SDK-Version": "2.10.0",
840+
"User-Agent": "zep-cloud/2.10.0",
841841
"X-Fern-Runtime": core.RUNTIME.type,
842842
"X-Fern-Runtime-Version": core.RUNTIME.version,
843843
...(await this._getCustomAuthorizationHeaders()),
@@ -947,8 +947,8 @@ export class Document {
947947
headers: {
948948
"X-Fern-Language": "JavaScript",
949949
"X-Fern-SDK-Name": "zep-cloud",
950-
"X-Fern-SDK-Version": "2.9.0",
951-
"User-Agent": "zep-cloud/2.9.0",
950+
"X-Fern-SDK-Version": "2.10.0",
951+
"User-Agent": "zep-cloud/2.10.0",
952952
"X-Fern-Runtime": core.RUNTIME.type,
953953
"X-Fern-Runtime-Version": core.RUNTIME.version,
954954
...(await this._getCustomAuthorizationHeaders()),
@@ -1058,8 +1058,8 @@ export class Document {
10581058
headers: {
10591059
"X-Fern-Language": "JavaScript",
10601060
"X-Fern-SDK-Name": "zep-cloud",
1061-
"X-Fern-SDK-Version": "2.9.0",
1062-
"User-Agent": "zep-cloud/2.9.0",
1061+
"X-Fern-SDK-Version": "2.10.0",
1062+
"User-Agent": "zep-cloud/2.10.0",
10631063
"X-Fern-Runtime": core.RUNTIME.type,
10641064
"X-Fern-Runtime-Version": core.RUNTIME.version,
10651065
...(await this._getCustomAuthorizationHeaders()),
@@ -1167,8 +1167,8 @@ export class Document {
11671167
headers: {
11681168
"X-Fern-Language": "JavaScript",
11691169
"X-Fern-SDK-Name": "zep-cloud",
1170-
"X-Fern-SDK-Version": "2.9.0",
1171-
"User-Agent": "zep-cloud/2.9.0",
1170+
"X-Fern-SDK-Version": "2.10.0",
1171+
"User-Agent": "zep-cloud/2.10.0",
11721172
"X-Fern-Runtime": core.RUNTIME.type,
11731173
"X-Fern-Runtime-Version": core.RUNTIME.version,
11741174
...(await this._getCustomAuthorizationHeaders()),
@@ -1288,8 +1288,8 @@ export class Document {
12881288
headers: {
12891289
"X-Fern-Language": "JavaScript",
12901290
"X-Fern-SDK-Name": "zep-cloud",
1291-
"X-Fern-SDK-Version": "2.9.0",
1292-
"User-Agent": "zep-cloud/2.9.0",
1291+
"X-Fern-SDK-Version": "2.10.0",
1292+
"User-Agent": "zep-cloud/2.10.0",
12931293
"X-Fern-Runtime": core.RUNTIME.type,
12941294
"X-Fern-Runtime-Version": core.RUNTIME.version,
12951295
...(await this._getCustomAuthorizationHeaders()),
@@ -1413,8 +1413,8 @@ export class Document {
14131413
headers: {
14141414
"X-Fern-Language": "JavaScript",
14151415
"X-Fern-SDK-Name": "zep-cloud",
1416-
"X-Fern-SDK-Version": "2.9.0",
1417-
"User-Agent": "zep-cloud/2.9.0",
1416+
"X-Fern-SDK-Version": "2.10.0",
1417+
"User-Agent": "zep-cloud/2.10.0",
14181418
"X-Fern-Runtime": core.RUNTIME.type,
14191419
"X-Fern-Runtime-Version": core.RUNTIME.version,
14201420
...(await this._getCustomAuthorizationHeaders()),

src/api/resources/graph/client/Client.ts

+10-10
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ export class Graph {
7171
headers: {
7272
"X-Fern-Language": "JavaScript",
7373
"X-Fern-SDK-Name": "zep-cloud",
74-
"X-Fern-SDK-Version": "2.9.0",
75-
"User-Agent": "zep-cloud/2.9.0",
74+
"X-Fern-SDK-Version": "2.10.0",
75+
"User-Agent": "zep-cloud/2.10.0",
7676
"X-Fern-Runtime": core.RUNTIME.type,
7777
"X-Fern-Runtime-Version": core.RUNTIME.version,
7878
...(await this._getCustomAuthorizationHeaders()),
@@ -169,8 +169,8 @@ export class Graph {
169169
headers: {
170170
"X-Fern-Language": "JavaScript",
171171
"X-Fern-SDK-Name": "zep-cloud",
172-
"X-Fern-SDK-Version": "2.9.0",
173-
"User-Agent": "zep-cloud/2.9.0",
172+
"X-Fern-SDK-Version": "2.10.0",
173+
"User-Agent": "zep-cloud/2.10.0",
174174
"X-Fern-Runtime": core.RUNTIME.type,
175175
"X-Fern-Runtime-Version": core.RUNTIME.version,
176176
...(await this._getCustomAuthorizationHeaders()),
@@ -260,8 +260,8 @@ export class Graph {
260260
headers: {
261261
"X-Fern-Language": "JavaScript",
262262
"X-Fern-SDK-Name": "zep-cloud",
263-
"X-Fern-SDK-Version": "2.9.0",
264-
"User-Agent": "zep-cloud/2.9.0",
263+
"X-Fern-SDK-Version": "2.10.0",
264+
"User-Agent": "zep-cloud/2.10.0",
265265
"X-Fern-Runtime": core.RUNTIME.type,
266266
"X-Fern-Runtime-Version": core.RUNTIME.version,
267267
...(await this._getCustomAuthorizationHeaders()),
@@ -358,8 +358,8 @@ export class Graph {
358358
headers: {
359359
"X-Fern-Language": "JavaScript",
360360
"X-Fern-SDK-Name": "zep-cloud",
361-
"X-Fern-SDK-Version": "2.9.0",
362-
"User-Agent": "zep-cloud/2.9.0",
361+
"X-Fern-SDK-Version": "2.10.0",
362+
"User-Agent": "zep-cloud/2.10.0",
363363
"X-Fern-Runtime": core.RUNTIME.type,
364364
"X-Fern-Runtime-Version": core.RUNTIME.version,
365365
...(await this._getCustomAuthorizationHeaders()),
@@ -454,8 +454,8 @@ export class Graph {
454454
headers: {
455455
"X-Fern-Language": "JavaScript",
456456
"X-Fern-SDK-Name": "zep-cloud",
457-
"X-Fern-SDK-Version": "2.9.0",
458-
"User-Agent": "zep-cloud/2.9.0",
457+
"X-Fern-SDK-Version": "2.10.0",
458+
"User-Agent": "zep-cloud/2.10.0",
459459
"X-Fern-Runtime": core.RUNTIME.type,
460460
"X-Fern-Runtime-Version": core.RUNTIME.version,
461461
...(await this._getCustomAuthorizationHeaders()),

0 commit comments

Comments
 (0)