@naturali/sdk 0.48.0 → 0.49.0

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/index.d.cts CHANGED
@@ -343,6 +343,77 @@ type ErrorResponse = {
343
343
  };
344
344
  };
345
345
  };
346
+ /**
347
+ * The end user an agent is talking to.
348
+ */
349
+ type Actor = {
350
+ /**
351
+ * Public actor ID (actor_ prefix).
352
+ */
353
+ id: string | null;
354
+ project_id: string | null;
355
+ /**
356
+ * Your own key for this person. Null only for an actor minted before this resource existed.
357
+ *
358
+ */
359
+ external_id: string | null;
360
+ /**
361
+ * A human-friendly name, for reading a transcript later.
362
+ */
363
+ name: string | null;
364
+ /**
365
+ * Persona instructions composed into the agent's prompt for this actor's turns.
366
+ *
367
+ */
368
+ instructions: string | null;
369
+ /**
370
+ * Whether a memory container is linked, carrying what the agent remembers about this actor across sessions. The container's own id is not exposed — naturali fronts no memory resource that could resolve it.
371
+ *
372
+ */
373
+ has_memory: boolean;
374
+ created_at: Date | null;
375
+ updated_at: Date | null;
376
+ };
377
+ type ActorCreate = {
378
+ /**
379
+ * Your own key for this person — the idempotency key this call converges on. May not start with a channel prefix (`whatsapp:`, `discord:`, …) or `address:`.
380
+ *
381
+ */
382
+ external_id: string;
383
+ /**
384
+ * A human-friendly name. Defaults to `external_id`.
385
+ */
386
+ name?: string;
387
+ /**
388
+ * Persona instructions composed into the agent's prompt for this actor's turns. Treat as trusted input: text an end user controls reaches the agent's instructions verbatim.
389
+ *
390
+ */
391
+ instructions?: string;
392
+ /**
393
+ * Give the actor its own memory container, so an agent remembers it across sessions. Applied on creation only — a call that returns an existing actor leaves its memory as it was.
394
+ *
395
+ */
396
+ memory?: boolean;
397
+ };
398
+ /**
399
+ * Only the fields present are changed.
400
+ */
401
+ type ActorUpdate = {
402
+ name?: string;
403
+ /**
404
+ * Null clears the persona instructions.
405
+ */
406
+ instructions?: string | null;
407
+ };
408
+ type ActorList = {
409
+ data: Array<Actor>;
410
+ /**
411
+ * Total actors matching the query, when the upstream reports it.
412
+ */
413
+ total: number | null;
414
+ limit: number;
415
+ offset: number;
416
+ };
346
417
  type Address = {
347
418
  id: string;
348
419
  project_id: string;
@@ -2659,17 +2730,30 @@ type WebhookDeliveryList = {
2659
2730
  next_cursor: string | null;
2660
2731
  };
2661
2732
  /**
2662
- * Maximum items per page.
2733
+ * Project public ID (proj_ prefix).
2734
+ */
2735
+ type ProjectId = string;
2736
+ /**
2737
+ * Actor public ID (actor_ prefix).
2738
+ */
2739
+ type ActorId = string;
2740
+ /**
2741
+ * Return only the actor carrying this external ID.
2742
+ */
2743
+ type ExternalIdFilter = string;
2744
+ /**
2745
+ * Maximum items to return (1–100).
2663
2746
  */
2664
2747
  type Limit = number;
2665
2748
  /**
2666
- * Opaque pagination cursor from a previous response's next_cursor.
2749
+ * Items to skip. This list pages by offset rather than by naturali's usual opaque cursor because the upstream ordering is offset-based; a cursor here would only imitate a keyset.
2750
+ *
2667
2751
  */
2668
- type Cursor = string;
2752
+ type Offset = number;
2669
2753
  /**
2670
- * Project public ID (proj_ prefix).
2754
+ * Opaque pagination cursor from a previous response's next_cursor.
2671
2755
  */
2672
- type ProjectId = string;
2756
+ type Cursor = string;
2673
2757
  /**
2674
2758
  * The prefixed, self-describing channel identifier (`whatsapp:dm:<phone>`, `discord:dm:<user_id>`, `discord:thread:<guild_id>:<channel_id>`), URL-encoded.
2675
2759
  *
@@ -2720,10 +2804,6 @@ type ConversationId = string;
2720
2804
  * Maximum messages per page.
2721
2805
  */
2722
2806
  type MessagesLimit = number;
2723
- /**
2724
- * Number of messages to skip.
2725
- */
2726
- type Offset = number;
2727
2807
  /**
2728
2808
  * Generation public ID (gen_ prefix).
2729
2809
  */
@@ -2788,6 +2868,217 @@ type WebhookId = string;
2788
2868
  * Delivery public ID (whd_ prefix).
2789
2869
  */
2790
2870
  type DeliveryId = string;
2871
+ type ListActorsData = {
2872
+ body?: never;
2873
+ path: {
2874
+ /**
2875
+ * Project public ID (proj_ prefix).
2876
+ */
2877
+ project_id: string;
2878
+ };
2879
+ query?: {
2880
+ /**
2881
+ * Return only the actor carrying this external ID.
2882
+ */
2883
+ external_id?: string;
2884
+ /**
2885
+ * Maximum items to return (1–100).
2886
+ */
2887
+ limit?: number;
2888
+ /**
2889
+ * Items to skip. This list pages by offset rather than by naturali's usual opaque cursor because the upstream ordering is offset-based; a cursor here would only imitate a keyset.
2890
+ *
2891
+ */
2892
+ offset?: number;
2893
+ };
2894
+ url: '/v1/projects/{project_id}/actors';
2895
+ };
2896
+ type ListActorsErrors = {
2897
+ /**
2898
+ * The request was malformed or failed validation.
2899
+ */
2900
+ 400: ErrorResponse;
2901
+ /**
2902
+ * Missing or invalid credentials.
2903
+ */
2904
+ 401: ErrorResponse;
2905
+ /**
2906
+ * The resource does not exist (existence is not leaked).
2907
+ */
2908
+ 404: ErrorResponse;
2909
+ /**
2910
+ * The upstream runtime could not complete the operation.
2911
+ */
2912
+ 502: ErrorResponse;
2913
+ };
2914
+ type ListActorsError = ListActorsErrors[keyof ListActorsErrors];
2915
+ type ListActorsResponses = {
2916
+ /**
2917
+ * A page of actors.
2918
+ */
2919
+ 200: ActorList;
2920
+ };
2921
+ type ListActorsResponse = ListActorsResponses[keyof ListActorsResponses];
2922
+ type CreateActorData = {
2923
+ body: ActorCreate;
2924
+ path: {
2925
+ /**
2926
+ * Project public ID (proj_ prefix).
2927
+ */
2928
+ project_id: string;
2929
+ };
2930
+ query?: never;
2931
+ url: '/v1/projects/{project_id}/actors';
2932
+ };
2933
+ type CreateActorErrors = {
2934
+ /**
2935
+ * The request was malformed or failed validation.
2936
+ */
2937
+ 400: ErrorResponse;
2938
+ /**
2939
+ * Missing or invalid credentials.
2940
+ */
2941
+ 401: ErrorResponse;
2942
+ /**
2943
+ * The resource does not exist (existence is not leaked).
2944
+ */
2945
+ 404: ErrorResponse;
2946
+ /**
2947
+ * The upstream runtime could not complete the operation.
2948
+ */
2949
+ 502: ErrorResponse;
2950
+ };
2951
+ type CreateActorError = CreateActorErrors[keyof CreateActorErrors];
2952
+ type CreateActorResponses = {
2953
+ /**
2954
+ * An actor with this `external_id` already existed.
2955
+ */
2956
+ 200: Actor;
2957
+ /**
2958
+ * Actor created.
2959
+ */
2960
+ 201: Actor;
2961
+ };
2962
+ type CreateActorResponse = CreateActorResponses[keyof CreateActorResponses];
2963
+ type DeleteActorData = {
2964
+ body?: never;
2965
+ path: {
2966
+ /**
2967
+ * Project public ID (proj_ prefix).
2968
+ */
2969
+ project_id: string;
2970
+ /**
2971
+ * Actor public ID (actor_ prefix).
2972
+ */
2973
+ actor_id: string;
2974
+ };
2975
+ query?: never;
2976
+ url: '/v1/projects/{project_id}/actors/{actor_id}';
2977
+ };
2978
+ type DeleteActorErrors = {
2979
+ /**
2980
+ * Missing or invalid credentials.
2981
+ */
2982
+ 401: ErrorResponse;
2983
+ /**
2984
+ * The resource does not exist (existence is not leaked).
2985
+ */
2986
+ 404: ErrorResponse;
2987
+ /**
2988
+ * The actor belongs to an address and is erased through it.
2989
+ */
2990
+ 409: ErrorResponse;
2991
+ /**
2992
+ * The upstream runtime could not complete the operation.
2993
+ */
2994
+ 502: ErrorResponse;
2995
+ };
2996
+ type DeleteActorError = DeleteActorErrors[keyof DeleteActorErrors];
2997
+ type DeleteActorResponses = {
2998
+ /**
2999
+ * Actor erased.
3000
+ */
3001
+ 204: void;
3002
+ };
3003
+ type DeleteActorResponse = DeleteActorResponses[keyof DeleteActorResponses];
3004
+ type GetActorData = {
3005
+ body?: never;
3006
+ path: {
3007
+ /**
3008
+ * Project public ID (proj_ prefix).
3009
+ */
3010
+ project_id: string;
3011
+ /**
3012
+ * Actor public ID (actor_ prefix).
3013
+ */
3014
+ actor_id: string;
3015
+ };
3016
+ query?: never;
3017
+ url: '/v1/projects/{project_id}/actors/{actor_id}';
3018
+ };
3019
+ type GetActorErrors = {
3020
+ /**
3021
+ * Missing or invalid credentials.
3022
+ */
3023
+ 401: ErrorResponse;
3024
+ /**
3025
+ * The resource does not exist (existence is not leaked).
3026
+ */
3027
+ 404: ErrorResponse;
3028
+ /**
3029
+ * The upstream runtime could not complete the operation.
3030
+ */
3031
+ 502: ErrorResponse;
3032
+ };
3033
+ type GetActorError = GetActorErrors[keyof GetActorErrors];
3034
+ type GetActorResponses = {
3035
+ /**
3036
+ * The actor.
3037
+ */
3038
+ 200: Actor;
3039
+ };
3040
+ type GetActorResponse = GetActorResponses[keyof GetActorResponses];
3041
+ type UpdateActorData = {
3042
+ body: ActorUpdate;
3043
+ path: {
3044
+ /**
3045
+ * Project public ID (proj_ prefix).
3046
+ */
3047
+ project_id: string;
3048
+ /**
3049
+ * Actor public ID (actor_ prefix).
3050
+ */
3051
+ actor_id: string;
3052
+ };
3053
+ query?: never;
3054
+ url: '/v1/projects/{project_id}/actors/{actor_id}';
3055
+ };
3056
+ type UpdateActorErrors = {
3057
+ /**
3058
+ * The request was malformed or failed validation.
3059
+ */
3060
+ 400: ErrorResponse;
3061
+ /**
3062
+ * Missing or invalid credentials.
3063
+ */
3064
+ 401: ErrorResponse;
3065
+ /**
3066
+ * The resource does not exist (existence is not leaked).
3067
+ */
3068
+ 404: ErrorResponse;
3069
+ /**
3070
+ * The upstream runtime could not complete the operation.
3071
+ */
3072
+ 502: ErrorResponse;
3073
+ };
3074
+ type UpdateActorError = UpdateActorErrors[keyof UpdateActorErrors];
3075
+ type UpdateActorResponses = {
3076
+ /**
3077
+ * The updated actor.
3078
+ */
3079
+ 200: Actor;
3080
+ };
3081
+ type UpdateActorResponse = UpdateActorResponses[keyof UpdateActorResponses];
2791
3082
  type ListAddressesData = {
2792
3083
  body?: never;
2793
3084
  path: {
@@ -2798,7 +3089,7 @@ type ListAddressesData = {
2798
3089
  };
2799
3090
  query?: {
2800
3091
  /**
2801
- * Maximum items per page.
3092
+ * Maximum items to return (1–100).
2802
3093
  */
2803
3094
  limit?: number;
2804
3095
  /**
@@ -2951,7 +3242,7 @@ type ListAddressConversationsData = {
2951
3242
  };
2952
3243
  query?: {
2953
3244
  /**
2954
- * Maximum items per page.
3245
+ * Maximum items to return (1–100).
2955
3246
  */
2956
3247
  limit?: number;
2957
3248
  /**
@@ -2994,7 +3285,7 @@ type ListAgentsData = {
2994
3285
  };
2995
3286
  query?: {
2996
3287
  /**
2997
- * Maximum items per page.
3288
+ * Maximum items to return (1–100).
2998
3289
  */
2999
3290
  limit?: number;
3000
3291
  /**
@@ -3191,7 +3482,7 @@ type ListApiKeysData = {
3191
3482
  path?: never;
3192
3483
  query?: {
3193
3484
  /**
3194
- * Maximum items per page.
3485
+ * Maximum items to return (1–100).
3195
3486
  */
3196
3487
  limit?: number;
3197
3488
  /**
@@ -3392,7 +3683,7 @@ type ListAssistantGrantsData = {
3392
3683
  path?: never;
3393
3684
  query?: {
3394
3685
  /**
3395
- * Maximum items per page.
3686
+ * Maximum items to return (1–100).
3396
3687
  */
3397
3688
  limit?: number;
3398
3689
  /**
@@ -3625,7 +3916,7 @@ type ListBoardsData = {
3625
3916
  };
3626
3917
  query?: {
3627
3918
  /**
3628
- * Maximum items per page.
3919
+ * Maximum items to return (1–100).
3629
3920
  */
3630
3921
  limit?: number;
3631
3922
  /**
@@ -3859,7 +4150,7 @@ type ListChannelRoutesData = {
3859
4150
  };
3860
4151
  query?: {
3861
4152
  /**
3862
- * Maximum items per page.
4153
+ * Maximum items to return (1–100).
3863
4154
  */
3864
4155
  limit?: number;
3865
4156
  /**
@@ -4135,7 +4426,7 @@ type ListChannelsData = {
4135
4426
  };
4136
4427
  query?: {
4137
4428
  /**
4138
- * Maximum items per page.
4429
+ * Maximum items to return (1–100).
4139
4430
  */
4140
4431
  limit?: number;
4141
4432
  /**
@@ -4340,7 +4631,7 @@ type ListChannelConversationsData = {
4340
4631
  };
4341
4632
  query?: {
4342
4633
  /**
4343
- * Maximum items per page.
4634
+ * Maximum items to return (1–100).
4344
4635
  */
4345
4636
  limit?: number;
4346
4637
  /**
@@ -4436,7 +4727,8 @@ type ListChannelConversationMessagesData = {
4436
4727
  */
4437
4728
  limit?: number;
4438
4729
  /**
4439
- * Number of messages to skip.
4730
+ * Items to skip. This list pages by offset rather than by naturali's usual opaque cursor because the upstream ordering is offset-based; a cursor here would only imitate a keyset.
4731
+ *
4440
4732
  */
4441
4733
  offset?: number;
4442
4734
  };
@@ -4486,11 +4778,12 @@ type ListAgentGenerationsData = {
4486
4778
  */
4487
4779
  status?: 'in_progress' | 'requires_action' | 'completed' | 'failed';
4488
4780
  /**
4489
- * Maximum items per page.
4781
+ * Maximum items to return (1–100).
4490
4782
  */
4491
4783
  limit?: number;
4492
4784
  /**
4493
- * Number of messages to skip.
4785
+ * Items to skip. This list pages by offset rather than by naturali's usual opaque cursor because the upstream ordering is offset-based; a cursor here would only imitate a keyset.
4786
+ *
4494
4787
  */
4495
4788
  offset?: number;
4496
4789
  };
@@ -4654,7 +4947,7 @@ type ListKnowledgeCollectionsData = {
4654
4947
  };
4655
4948
  query?: {
4656
4949
  /**
4657
- * Maximum items per page.
4950
+ * Maximum items to return (1–100).
4658
4951
  */
4659
4952
  limit?: number;
4660
4953
  /**
@@ -4891,7 +5184,7 @@ type ListKnowledgeDocumentsData = {
4891
5184
  };
4892
5185
  query?: {
4893
5186
  /**
4894
- * Maximum items per page.
5187
+ * Maximum items to return (1–100).
4895
5188
  */
4896
5189
  limit?: number;
4897
5190
  /**
@@ -5107,7 +5400,7 @@ type ListKnowledgeConvertersData = {
5107
5400
  };
5108
5401
  query?: {
5109
5402
  /**
5110
- * Maximum items per page.
5403
+ * Maximum items to return (1–100).
5111
5404
  */
5112
5405
  limit?: number;
5113
5406
  /**
@@ -5310,7 +5603,7 @@ type ListModelsData = {
5310
5603
  path?: never;
5311
5604
  query?: {
5312
5605
  /**
5313
- * Maximum items per page.
5606
+ * Maximum items to return (1–100).
5314
5607
  */
5315
5608
  limit?: number;
5316
5609
  /**
@@ -5394,7 +5687,7 @@ type ListProjectsData = {
5394
5687
  path?: never;
5395
5688
  query?: {
5396
5689
  /**
5397
- * Maximum items per page.
5690
+ * Maximum items to return (1–100).
5398
5691
  */
5399
5692
  limit?: number;
5400
5693
  /**
@@ -5601,7 +5894,7 @@ type ListProvidersData = {
5601
5894
  };
5602
5895
  query?: {
5603
5896
  /**
5604
- * Maximum items per page.
5897
+ * Maximum items to return (1–100).
5605
5898
  */
5606
5899
  limit?: number;
5607
5900
  /**
@@ -5903,7 +6196,8 @@ type ListSessionMessagesData = {
5903
6196
  */
5904
6197
  limit?: number;
5905
6198
  /**
5906
- * Number of messages to skip.
6199
+ * Items to skip. This list pages by offset rather than by naturali's usual opaque cursor because the upstream ordering is offset-based; a cursor here would only imitate a keyset.
6200
+ *
5907
6201
  */
5908
6202
  offset?: number;
5909
6203
  };
@@ -6064,7 +6358,7 @@ type ListTasksData = {
6064
6358
  */
6065
6359
  assignee?: string;
6066
6360
  /**
6067
- * Maximum items per page.
6361
+ * Maximum items to return (1–100).
6068
6362
  */
6069
6363
  limit?: number;
6070
6364
  /**
@@ -6350,7 +6644,7 @@ type ListToolsData = {
6350
6644
  };
6351
6645
  query?: {
6352
6646
  /**
6353
- * Maximum items per page.
6647
+ * Maximum items to return (1–100).
6354
6648
  */
6355
6649
  limit?: number;
6356
6650
  /**
@@ -6546,11 +6840,12 @@ type ListTracesData = {
6546
6840
  };
6547
6841
  query?: {
6548
6842
  /**
6549
- * Maximum items per page.
6843
+ * Maximum items to return (1–100).
6550
6844
  */
6551
6845
  limit?: number;
6552
6846
  /**
6553
- * Number of messages to skip.
6847
+ * Items to skip. This list pages by offset rather than by naturali's usual opaque cursor because the upstream ordering is offset-based; a cursor here would only imitate a keyset.
6848
+ *
6554
6849
  */
6555
6850
  offset?: number;
6556
6851
  };
@@ -6684,11 +6979,12 @@ type ListTraceGenerationsData = {
6684
6979
  */
6685
6980
  status?: 'in_progress' | 'requires_action' | 'completed' | 'failed';
6686
6981
  /**
6687
- * Maximum items per page.
6982
+ * Maximum items to return (1–100).
6688
6983
  */
6689
6984
  limit?: number;
6690
6985
  /**
6691
- * Number of messages to skip.
6986
+ * Items to skip. This list pages by offset rather than by naturali's usual opaque cursor because the upstream ordering is offset-based; a cursor here would only imitate a keyset.
6987
+ *
6692
6988
  */
6693
6989
  offset?: number;
6694
6990
  };
@@ -6768,7 +7064,7 @@ type ListWebhooksData = {
6768
7064
  };
6769
7065
  query?: {
6770
7066
  /**
6771
- * Maximum items per page.
7067
+ * Maximum items to return (1–100).
6772
7068
  */
6773
7069
  limit?: number;
6774
7070
  /**
@@ -6995,7 +7291,7 @@ type ListWebhookDeliveriesData = {
6995
7291
  };
6996
7292
  query?: {
6997
7293
  /**
6998
- * Maximum items per page.
7294
+ * Maximum items to return (1–100).
6999
7295
  */
7000
7296
  limit?: number;
7001
7297
  /**
@@ -7120,6 +7416,45 @@ type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean
7120
7416
  */
7121
7417
  meta?: keyof ClientMeta extends never ? Record<string, unknown> : ClientMeta;
7122
7418
  };
7419
+ declare class Actors {
7420
+ /**
7421
+ * List actors
7422
+ *
7423
+ * Lists the project's actors. Filter by `external_id` to resolve your own key to an actor without creating one.
7424
+ *
7425
+ */
7426
+ static listActors<ThrowOnError extends boolean = false>(options: Options<ListActorsData, ThrowOnError>): RequestResult<ListActorsResponses, ListActorsErrors, ThrowOnError>;
7427
+ /**
7428
+ * Create an actor
7429
+ *
7430
+ * Creates the actor, or returns the one that already carries this `external_id`. Idempotent on that key: a retry returns the existing actor with `200` rather than creating a second one, so this is safe as the first call your backend makes when it sees a new user.
7431
+ * `external_id` may not start with a channel prefix (`whatsapp:`, `discord:`, …) or `address:` — those name actors that belong to an [address](/docs/api/addresses/get-address), which owns its own.
7432
+ *
7433
+ */
7434
+ static createActor<ThrowOnError extends boolean = false>(options: Options<CreateActorData, ThrowOnError>): RequestResult<CreateActorResponses, CreateActorErrors, ThrowOnError>;
7435
+ /**
7436
+ * Erase an actor
7437
+ *
7438
+ * Removes the actor and the sessions it holds. Erasure of one identity as this API knows it — narrower than "erase this human everywhere", since naturali does not know that two identities are the same person and does not claim to.
7439
+ * An actor that belongs to an [address](/docs/api/addresses/get-address) responds `409`: erase it through `DELETE /v1/projects/{project_id}/addresses/{identifier}`, which also removes the address and its conversations. Deleting it here would leave those behind, pointing at an identity that no longer exists.
7440
+ *
7441
+ */
7442
+ static deleteActor<ThrowOnError extends boolean = false>(options: Options<DeleteActorData, ThrowOnError>): RequestResult<DeleteActorResponses, DeleteActorErrors, ThrowOnError>;
7443
+ /**
7444
+ * Get an actor
7445
+ *
7446
+ * Returns one actor. An actor belonging to another project responds `404`, not `403` — the API never confirms that an id exists elsewhere.
7447
+ *
7448
+ */
7449
+ static getActor<ThrowOnError extends boolean = false>(options: Options<GetActorData, ThrowOnError>): RequestResult<GetActorResponses, GetActorErrors, ThrowOnError>;
7450
+ /**
7451
+ * Update an actor
7452
+ *
7453
+ * Updates the fields present in the body and leaves the rest alone. `external_id` is not updatable: it is the key callers converge on, and moving it would silently orphan every reference they hold.
7454
+ *
7455
+ */
7456
+ static updateActor<ThrowOnError extends boolean = false>(options: Options<UpdateActorData, ThrowOnError>): RequestResult<UpdateActorResponses, UpdateActorErrors, ThrowOnError>;
7457
+ }
7123
7458
  declare class Channels {
7124
7459
  /**
7125
7460
  * List addresses
@@ -7944,6 +8279,7 @@ interface NaturaliClientOptions {
7944
8279
  * is available as typed data.
7945
8280
  */
7946
8281
  declare class NaturaliClient {
8282
+ readonly actors: typeof Actors;
7947
8283
  readonly agents: typeof Agents;
7948
8284
  readonly apiKeys: typeof ApiKeys;
7949
8285
  readonly assistant: typeof Assistant;
@@ -7965,4 +8301,4 @@ declare class NaturaliClient {
7965
8301
  constructor({ token, headers }?: NaturaliClientOptions);
7966
8302
  }
7967
8303
  //#endregion
7968
- export { type Acknowledgement, type AddSessionMessageData, type AddSessionMessageError, type AddSessionMessageErrors, type AddSessionMessageResponse, type AddSessionMessageResponses, type Address, type AddressActionSet, type AddressList, type Agent, type AgentCreate, type AgentId, type AgentList, type AgentUpdate, Agents, type ApiKeyCreate, type ApiKeyCreated, type ApiKeyId, type ApiKeyList, type ApiKeyRecord, type ApiKeyUpdate, ApiKeys, type AssigneeFilter, Assistant, type AssistantChannel, type AssistantGrant, type AssistantGrantList, type AssistantLinkPreview, type AssistantLinkRedeem, type AssistantScope, Auth, type AuthSession, type Board, type BoardCompletionRule, type BoardCreate, type BoardDispatch, type BoardId, type BoardIdFilter, type BoardList, type BoardOnEnter, type BoardState, type BoardTransition, type BoardUpdate, Boards, type Channel, type ChannelCreate, type ChannelDefaultAction, type ChannelDefaultActionInput, type ChannelId, type ChannelKind, type ChannelKindList, type ChannelList, type ChannelPredicate, type ChannelRoute, type ChannelRouteList, type ChannelRouteWrite, type ChannelSurface, type ChannelUpdate, Channels, type ClientOptions, type CollectionId, type Conversation, type ConversationId, type ConversationList, type ConversationMessage, type ConversationMessageList, type ConverterId, type CreateAgentData, type CreateAgentError, type CreateAgentErrors, type CreateAgentResponse, type CreateAgentResponses, type CreateApiKeyData, type CreateApiKeyError, type CreateApiKeyErrors, type CreateApiKeyResponse, type CreateApiKeyResponses, type CreateBoardData, type CreateBoardError, type CreateBoardErrors, type CreateBoardResponse, type CreateBoardResponses, type CreateChannelData, type CreateChannelError, type CreateChannelErrors, type CreateChannelResponse, type CreateChannelResponses, type CreateChannelRouteData, type CreateChannelRouteError, type CreateChannelRouteErrors, type CreateChannelRouteResponse, type CreateChannelRouteResponses, type CreateConversationData, type CreateConversationError, type CreateConversationErrors, type CreateConversationResponse, type CreateConversationResponses, type CreateGenerationData, type CreateGenerationError, type CreateGenerationErrors, type CreateGenerationResponse, type CreateGenerationResponses, type CreateKnowledgeCollectionData, type CreateKnowledgeCollectionError, type CreateKnowledgeCollectionErrors, type CreateKnowledgeCollectionResponse, type CreateKnowledgeCollectionResponses, type CreateKnowledgeConverterData, type CreateKnowledgeConverterError, type CreateKnowledgeConverterErrors, type CreateKnowledgeConverterResponse, type CreateKnowledgeConverterResponses, type CreateKnowledgeDocumentData, type CreateKnowledgeDocumentError, type CreateKnowledgeDocumentErrors, type CreateKnowledgeDocumentResponse, type CreateKnowledgeDocumentResponses, type CreateProjectData, type CreateProjectError, type CreateProjectErrors, type CreateProjectResponse, type CreateProjectResponses, type CreateProviderData, type CreateProviderError, type CreateProviderErrors, type CreateProviderResponse, type CreateProviderResponses, type CreateSessionData, type CreateSessionError, type CreateSessionErrors, type CreateSessionResponse, type CreateSessionResponses, type CreateTaskData, type CreateTaskError, type CreateTaskErrors, type CreateTaskResponse, type CreateTaskResponses, type CreateToolData, type CreateToolError, type CreateToolErrors, type CreateToolResponse, type CreateToolResponses, type CreateWebhookData, type CreateWebhookError, type CreateWebhookErrors, type CreateWebhookResponse, type CreateWebhookResponses, type Cursor, type DeleteAddressData, type DeleteAddressError, type DeleteAddressErrors, type DeleteAddressResponse, type DeleteAddressResponses, type DeleteAgentData, type DeleteAgentError, type DeleteAgentErrors, type DeleteAgentResponse, type DeleteAgentResponses, type DeleteApiKeyData, type DeleteApiKeyError, type DeleteApiKeyErrors, type DeleteApiKeyResponse, type DeleteApiKeyResponses, type DeleteBoardData, type DeleteBoardError, type DeleteBoardErrors, type DeleteBoardResponse, type DeleteBoardResponses, type DeleteChannelData, type DeleteChannelError, type DeleteChannelErrors, type DeleteChannelResponse, type DeleteChannelResponses, type DeleteChannelRouteData, type DeleteChannelRouteError, type DeleteChannelRouteErrors, type DeleteChannelRouteResponse, type DeleteChannelRouteResponses, type DeleteKnowledgeCollectionData, type DeleteKnowledgeCollectionError, type DeleteKnowledgeCollectionErrors, type DeleteKnowledgeCollectionResponse, type DeleteKnowledgeCollectionResponses, type DeleteKnowledgeConverterData, type DeleteKnowledgeConverterError, type DeleteKnowledgeConverterErrors, type DeleteKnowledgeConverterResponse, type DeleteKnowledgeConverterResponses, type DeleteKnowledgeDocumentData, type DeleteKnowledgeDocumentError, type DeleteKnowledgeDocumentErrors, type DeleteKnowledgeDocumentResponse, type DeleteKnowledgeDocumentResponses, type DeleteProjectData, type DeleteProjectError, type DeleteProjectErrors, type DeleteProjectResponse, type DeleteProjectResponses, type DeleteProviderData, type DeleteProviderError, type DeleteProviderErrors, type DeleteProviderResponse, type DeleteProviderResponses, type DeleteTaskData, type DeleteTaskError, type DeleteTaskErrors, type DeleteTaskResponse, type DeleteTaskResponses, type DeleteToolData, type DeleteToolError, type DeleteToolErrors, type DeleteToolResponse, type DeleteToolResponses, type DeleteWebhookData, type DeleteWebhookError, type DeleteWebhookErrors, type DeleteWebhookResponse, type DeleteWebhookResponses, type DeliveryId, type DiscordModes, type DocumentId, type ErrorResponse, type Event, type EventSubscription, type EventType, type Force, type GenerateSessionResponseData, type GenerateSessionResponseError, type GenerateSessionResponseErrors, type GenerateSessionResponseResponse, type GenerateSessionResponseResponses, type Generation, type GenerationCreate, type GenerationId, type GenerationList, type GenerationResult, type GenerationStatus, type GenerationUsage, Generations, type GetAddressData, type GetAddressError, type GetAddressErrors, type GetAddressResponse, type GetAddressResponses, type GetAgentData, type GetAgentError, type GetAgentErrors, type GetAgentResponse, type GetAgentResponses, type GetApiKeyData, type GetApiKeyError, type GetApiKeyErrors, type GetApiKeyResponse, type GetApiKeyResponses, type GetBoardData, type GetBoardError, type GetBoardErrors, type GetBoardResponse, type GetBoardResponses, type GetChannelConversationData, type GetChannelConversationError, type GetChannelConversationErrors, type GetChannelConversationResponse, type GetChannelConversationResponses, type GetChannelData, type GetChannelError, type GetChannelErrors, type GetChannelResponse, type GetChannelResponses, type GetChannelRouteData, type GetChannelRouteError, type GetChannelRouteErrors, type GetChannelRouteResponse, type GetChannelRouteResponses, type GetCurrentUserData, type GetCurrentUserError, type GetCurrentUserErrors, type GetCurrentUserResponse, type GetCurrentUserResponses, type GetGenerationData, type GetGenerationError, type GetGenerationErrors, type GetGenerationResponse, type GetGenerationResponses, type GetGenerationUsageData, type GetGenerationUsageError, type GetGenerationUsageErrors, type GetGenerationUsageResponse, type GetGenerationUsageResponses, type GetKnowledgeCollectionData, type GetKnowledgeCollectionError, type GetKnowledgeCollectionErrors, type GetKnowledgeCollectionResponse, type GetKnowledgeCollectionResponses, type GetKnowledgeConverterData, type GetKnowledgeConverterError, type GetKnowledgeConverterErrors, type GetKnowledgeConverterResponse, type GetKnowledgeConverterResponses, type GetKnowledgeDocumentData, type GetKnowledgeDocumentError, type GetKnowledgeDocumentErrors, type GetKnowledgeDocumentResponse, type GetKnowledgeDocumentResponses, type GetModelData, type GetModelError, type GetModelErrors, type GetModelResponse, type GetModelResponses, type GetProjectData, type GetProjectError, type GetProjectErrors, type GetProjectResponse, type GetProjectResponses, type GetProjectUsageData, type GetProjectUsageError, type GetProjectUsageErrors, type GetProjectUsageResponse, type GetProjectUsageResponses, type GetProviderData, type GetProviderError, type GetProviderErrors, type GetProviderResponse, type GetProviderResponses, type GetSessionData, type GetSessionError, type GetSessionErrors, type GetSessionResponse, type GetSessionResponses, type GetTaskData, type GetTaskError, type GetTaskErrors, type GetTaskResponse, type GetTaskResponses, type GetToolData, type GetToolError, type GetToolErrors, type GetToolResponse, type GetToolResponses, type GetTraceData, type GetTraceError, type GetTraceErrors, type GetTraceResponse, type GetTraceResponses, type GetTraceStepsData, type GetTraceStepsError, type GetTraceStepsErrors, type GetTraceStepsResponse, type GetTraceStepsResponses, type GetTraceTreeData, type GetTraceTreeError, type GetTraceTreeErrors, type GetTraceTreeResponse, type GetTraceTreeResponses, type GetWebhookData, type GetWebhookDeliveryData, type GetWebhookDeliveryError, type GetWebhookDeliveryErrors, type GetWebhookDeliveryResponse, type GetWebhookDeliveryResponses, type GetWebhookError, type GetWebhookErrors, type GetWebhookResponse, type GetWebhookResponses, type GrantId, type HttpExecute, type IdempotencyKey, type Identifier, Knowledge, type KnowledgeChunk, type KnowledgeCollection, type KnowledgeCollectionCreate, type KnowledgeCollectionList, type KnowledgeCollectionUpdate, type KnowledgeConverter, type KnowledgeConverterCreate, type KnowledgeConverterList, type KnowledgeConverterUpdate, type KnowledgeDocument, type KnowledgeDocumentCreate, type KnowledgeDocumentList, type KnowledgeQueryRequest, type KnowledgeQueryResult, type Limit, type LinkToken, type ListAddressConversationsData, type ListAddressConversationsError, type ListAddressConversationsErrors, type ListAddressConversationsResponse, type ListAddressConversationsResponses, type ListAddressesData, type ListAddressesError, type ListAddressesErrors, type ListAddressesResponse, type ListAddressesResponses, type ListAgentGenerationsData, type ListAgentGenerationsError, type ListAgentGenerationsErrors, type ListAgentGenerationsResponse, type ListAgentGenerationsResponses, type ListAgentsData, type ListAgentsError, type ListAgentsErrors, type ListAgentsResponse, type ListAgentsResponses, type ListApiKeysData, type ListApiKeysError, type ListApiKeysErrors, type ListApiKeysResponse, type ListApiKeysResponses, type ListAssistantGrantsData, type ListAssistantGrantsError, type ListAssistantGrantsErrors, type ListAssistantGrantsResponse, type ListAssistantGrantsResponses, type ListBoardsData, type ListBoardsError, type ListBoardsErrors, type ListBoardsResponse, type ListBoardsResponses, type ListChannelConversationMessagesData, type ListChannelConversationMessagesError, type ListChannelConversationMessagesErrors, type ListChannelConversationMessagesResponse, type ListChannelConversationMessagesResponses, type ListChannelConversationsData, type ListChannelConversationsError, type ListChannelConversationsErrors, type ListChannelConversationsResponse, type ListChannelConversationsResponses, type ListChannelKindsData, type ListChannelKindsError, type ListChannelKindsErrors, type ListChannelKindsResponse, type ListChannelKindsResponses, type ListChannelRoutesData, type ListChannelRoutesError, type ListChannelRoutesErrors, type ListChannelRoutesResponse, type ListChannelRoutesResponses, type ListChannelsData, type ListChannelsError, type ListChannelsErrors, type ListChannelsResponse, type ListChannelsResponses, type ListKnowledgeCollectionsData, type ListKnowledgeCollectionsError, type ListKnowledgeCollectionsErrors, type ListKnowledgeCollectionsResponse, type ListKnowledgeCollectionsResponses, type ListKnowledgeConvertersData, type ListKnowledgeConvertersError, type ListKnowledgeConvertersErrors, type ListKnowledgeConvertersResponse, type ListKnowledgeConvertersResponses, type ListKnowledgeDocumentsData, type ListKnowledgeDocumentsError, type ListKnowledgeDocumentsErrors, type ListKnowledgeDocumentsResponse, type ListKnowledgeDocumentsResponses, type ListModelsData, type ListModelsError, type ListModelsErrors, type ListModelsResponse, type ListModelsResponses, type ListProjectChannelRoutesData, type ListProjectChannelRoutesError, type ListProjectChannelRoutesErrors, type ListProjectChannelRoutesResponse, type ListProjectChannelRoutesResponses, type ListProjectsData, type ListProjectsError, type ListProjectsErrors, type ListProjectsResponse, type ListProjectsResponses, type ListProvidersData, type ListProvidersError, type ListProvidersErrors, type ListProvidersResponse, type ListProvidersResponses, type ListSessionMessagesData, type ListSessionMessagesError, type ListSessionMessagesErrors, type ListSessionMessagesResponse, type ListSessionMessagesResponses, type ListTaskTransitionsData, type ListTaskTransitionsError, type ListTaskTransitionsErrors, type ListTaskTransitionsResponse, type ListTaskTransitionsResponses, type ListTasksData, type ListTasksError, type ListTasksErrors, type ListTasksResponse, type ListTasksResponses, type ListToolsData, type ListToolsError, type ListToolsErrors, type ListToolsResponse, type ListToolsResponses, type ListTraceGenerationsData, type ListTraceGenerationsError, type ListTraceGenerationsErrors, type ListTraceGenerationsResponse, type ListTraceGenerationsResponses, type ListTracesData, type ListTracesError, type ListTracesErrors, type ListTracesResponse, type ListTracesResponses, type ListWebhookDeliveriesData, type ListWebhookDeliveriesError, type ListWebhookDeliveriesErrors, type ListWebhookDeliveriesResponse, type ListWebhookDeliveriesResponses, type ListWebhooksData, type ListWebhooksError, type ListWebhooksErrors, type ListWebhooksResponse, type ListWebhooksResponses, type LogoutData, type LogoutError, type LogoutErrors, type LogoutRequest, type LogoutResponse, type LogoutResponses, type McpConfig, type Message, type MessagesLimit, type Model, type ModelList, Models, NaturaliClient, type NaturaliClientOptions, type Offset, type Options, type PreviewAssistantLinkData, type PreviewAssistantLinkError, type PreviewAssistantLinkErrors, type PreviewAssistantLinkResponse, type PreviewAssistantLinkResponses, type Project, type ProjectCreate, type ProjectId, type ProjectList, type ProjectUpdate, type ProjectUsage, Projects, type Provider, type ProviderCreate, type ProviderId, type ProviderList, type ProviderUpdate, Providers, type QueryKnowledgeCollectionData, type QueryKnowledgeCollectionError, type QueryKnowledgeCollectionErrors, type QueryKnowledgeCollectionResponse, type QueryKnowledgeCollectionResponses, type RedeemAssistantLinkData, type RedeemAssistantLinkError, type RedeemAssistantLinkErrors, type RedeemAssistantLinkResponse, type RedeemAssistantLinkResponses, type RedeliverWebhookDeliveryData, type RedeliverWebhookDeliveryError, type RedeliverWebhookDeliveryErrors, type RedeliverWebhookDeliveryResponse, type RedeliverWebhookDeliveryResponses, type RefreshRequest, type RefreshSessionData, type RefreshSessionError, type RefreshSessionErrors, type RefreshSessionResponse, type RefreshSessionResponses, type ReingestKnowledgeDocumentData, type ReingestKnowledgeDocumentError, type ReingestKnowledgeDocumentErrors, type ReingestKnowledgeDocumentResponse, type ReingestKnowledgeDocumentResponses, type RequestSignInCodeData, type RequestSignInCodeError, type RequestSignInCodeErrors, type RequestSignInCodeResponse, type RequestSignInCodeResponses, type RevokeAssistantGrantData, type RevokeAssistantGrantError, type RevokeAssistantGrantErrors, type RevokeAssistantGrantResponse, type RevokeAssistantGrantResponses, type RotateApiKeyData, type RotateApiKeyError, type RotateApiKeyErrors, type RotateApiKeyResponse, type RotateApiKeyResponses, type RotateWebhookSecretData, type RotateWebhookSecretError, type RotateWebhookSecretErrors, type RotateWebhookSecretResponse, type RotateWebhookSecretResponses, type RouteId, type Session, type SessionCreate, type SessionGenerate, type SessionGeneration, type SessionId, type SessionMessage, type SessionMessageCreate, type SessionMessageList, type SessionTranscriptMessage, Sessions, type SetAddressActionData, type SetAddressActionError, type SetAddressActionErrors, type SetAddressActionResponse, type SetAddressActionResponses, type SignInCodeRequest, type SignInCodeVerify, type StateFilter, type StatusFilter, type StepRules, type Task, type TaskCreate, type TaskId, type TaskList, type TaskTransitionList, type TaskTransitionRecord, type TaskTransitionRequest, type TaskUpdate, Tasks, type Tool, type ToolChoice, type ToolContext, type ToolCreate, type ToolId, type ToolList, type ToolUpdate, Tools, type Trace, type TraceId, type TraceList, type TraceSteps, type TraceTreeNode, Traces, type TransitionTaskData, type TransitionTaskError, type TransitionTaskErrors, type TransitionTaskResponse, type TransitionTaskResponses, type UpdateAgentData, type UpdateAgentError, type UpdateAgentErrors, type UpdateAgentResponse, type UpdateAgentResponses, type UpdateApiKeyData, type UpdateApiKeyError, type UpdateApiKeyErrors, type UpdateApiKeyResponse, type UpdateApiKeyResponses, type UpdateBoardData, type UpdateBoardError, type UpdateBoardErrors, type UpdateBoardResponse, type UpdateBoardResponses, type UpdateChannelData, type UpdateChannelError, type UpdateChannelErrors, type UpdateChannelResponse, type UpdateChannelResponses, type UpdateChannelRouteData, type UpdateChannelRouteError, type UpdateChannelRouteErrors, type UpdateChannelRouteResponse, type UpdateChannelRouteResponses, type UpdateKnowledgeCollectionData, type UpdateKnowledgeCollectionError, type UpdateKnowledgeCollectionErrors, type UpdateKnowledgeCollectionResponse, type UpdateKnowledgeCollectionResponses, type UpdateKnowledgeConverterData, type UpdateKnowledgeConverterError, type UpdateKnowledgeConverterErrors, type UpdateKnowledgeConverterResponse, type UpdateKnowledgeConverterResponses, type UpdateProjectData, type UpdateProjectError, type UpdateProjectErrors, type UpdateProjectResponse, type UpdateProjectResponses, type UpdateProviderData, type UpdateProviderError, type UpdateProviderErrors, type UpdateProviderResponse, type UpdateProviderResponses, type UpdateTaskData, type UpdateTaskError, type UpdateTaskErrors, type UpdateTaskResponse, type UpdateTaskResponses, type UpdateToolData, type UpdateToolError, type UpdateToolErrors, type UpdateToolResponse, type UpdateToolResponses, type UpdateWebhookData, type UpdateWebhookError, type UpdateWebhookErrors, type UpdateWebhookResponse, type UpdateWebhookResponses, type UsageGroup, type UsageTokens, type User, type VerifySignInCodeData, type VerifySignInCodeError, type VerifySignInCodeErrors, type VerifySignInCodeResponse, type VerifySignInCodeResponses, type Webhook, type WebhookCreate, type WebhookDelivery, type WebhookDeliveryList, type WebhookId, type WebhookList, type WebhookUpdate, type WebhookWithSecret, Webhooks, createClient, createConfig };
8304
+ export { type Acknowledgement, type Actor, type ActorCreate, type ActorId, type ActorList, type ActorUpdate, Actors, type AddSessionMessageData, type AddSessionMessageError, type AddSessionMessageErrors, type AddSessionMessageResponse, type AddSessionMessageResponses, type Address, type AddressActionSet, type AddressList, type Agent, type AgentCreate, type AgentId, type AgentList, type AgentUpdate, Agents, type ApiKeyCreate, type ApiKeyCreated, type ApiKeyId, type ApiKeyList, type ApiKeyRecord, type ApiKeyUpdate, ApiKeys, type AssigneeFilter, Assistant, type AssistantChannel, type AssistantGrant, type AssistantGrantList, type AssistantLinkPreview, type AssistantLinkRedeem, type AssistantScope, Auth, type AuthSession, type Board, type BoardCompletionRule, type BoardCreate, type BoardDispatch, type BoardId, type BoardIdFilter, type BoardList, type BoardOnEnter, type BoardState, type BoardTransition, type BoardUpdate, Boards, type Channel, type ChannelCreate, type ChannelDefaultAction, type ChannelDefaultActionInput, type ChannelId, type ChannelKind, type ChannelKindList, type ChannelList, type ChannelPredicate, type ChannelRoute, type ChannelRouteList, type ChannelRouteWrite, type ChannelSurface, type ChannelUpdate, Channels, type ClientOptions, type CollectionId, type Conversation, type ConversationId, type ConversationList, type ConversationMessage, type ConversationMessageList, type ConverterId, type CreateActorData, type CreateActorError, type CreateActorErrors, type CreateActorResponse, type CreateActorResponses, type CreateAgentData, type CreateAgentError, type CreateAgentErrors, type CreateAgentResponse, type CreateAgentResponses, type CreateApiKeyData, type CreateApiKeyError, type CreateApiKeyErrors, type CreateApiKeyResponse, type CreateApiKeyResponses, type CreateBoardData, type CreateBoardError, type CreateBoardErrors, type CreateBoardResponse, type CreateBoardResponses, type CreateChannelData, type CreateChannelError, type CreateChannelErrors, type CreateChannelResponse, type CreateChannelResponses, type CreateChannelRouteData, type CreateChannelRouteError, type CreateChannelRouteErrors, type CreateChannelRouteResponse, type CreateChannelRouteResponses, type CreateConversationData, type CreateConversationError, type CreateConversationErrors, type CreateConversationResponse, type CreateConversationResponses, type CreateGenerationData, type CreateGenerationError, type CreateGenerationErrors, type CreateGenerationResponse, type CreateGenerationResponses, type CreateKnowledgeCollectionData, type CreateKnowledgeCollectionError, type CreateKnowledgeCollectionErrors, type CreateKnowledgeCollectionResponse, type CreateKnowledgeCollectionResponses, type CreateKnowledgeConverterData, type CreateKnowledgeConverterError, type CreateKnowledgeConverterErrors, type CreateKnowledgeConverterResponse, type CreateKnowledgeConverterResponses, type CreateKnowledgeDocumentData, type CreateKnowledgeDocumentError, type CreateKnowledgeDocumentErrors, type CreateKnowledgeDocumentResponse, type CreateKnowledgeDocumentResponses, type CreateProjectData, type CreateProjectError, type CreateProjectErrors, type CreateProjectResponse, type CreateProjectResponses, type CreateProviderData, type CreateProviderError, type CreateProviderErrors, type CreateProviderResponse, type CreateProviderResponses, type CreateSessionData, type CreateSessionError, type CreateSessionErrors, type CreateSessionResponse, type CreateSessionResponses, type CreateTaskData, type CreateTaskError, type CreateTaskErrors, type CreateTaskResponse, type CreateTaskResponses, type CreateToolData, type CreateToolError, type CreateToolErrors, type CreateToolResponse, type CreateToolResponses, type CreateWebhookData, type CreateWebhookError, type CreateWebhookErrors, type CreateWebhookResponse, type CreateWebhookResponses, type Cursor, type DeleteActorData, type DeleteActorError, type DeleteActorErrors, type DeleteActorResponse, type DeleteActorResponses, type DeleteAddressData, type DeleteAddressError, type DeleteAddressErrors, type DeleteAddressResponse, type DeleteAddressResponses, type DeleteAgentData, type DeleteAgentError, type DeleteAgentErrors, type DeleteAgentResponse, type DeleteAgentResponses, type DeleteApiKeyData, type DeleteApiKeyError, type DeleteApiKeyErrors, type DeleteApiKeyResponse, type DeleteApiKeyResponses, type DeleteBoardData, type DeleteBoardError, type DeleteBoardErrors, type DeleteBoardResponse, type DeleteBoardResponses, type DeleteChannelData, type DeleteChannelError, type DeleteChannelErrors, type DeleteChannelResponse, type DeleteChannelResponses, type DeleteChannelRouteData, type DeleteChannelRouteError, type DeleteChannelRouteErrors, type DeleteChannelRouteResponse, type DeleteChannelRouteResponses, type DeleteKnowledgeCollectionData, type DeleteKnowledgeCollectionError, type DeleteKnowledgeCollectionErrors, type DeleteKnowledgeCollectionResponse, type DeleteKnowledgeCollectionResponses, type DeleteKnowledgeConverterData, type DeleteKnowledgeConverterError, type DeleteKnowledgeConverterErrors, type DeleteKnowledgeConverterResponse, type DeleteKnowledgeConverterResponses, type DeleteKnowledgeDocumentData, type DeleteKnowledgeDocumentError, type DeleteKnowledgeDocumentErrors, type DeleteKnowledgeDocumentResponse, type DeleteKnowledgeDocumentResponses, type DeleteProjectData, type DeleteProjectError, type DeleteProjectErrors, type DeleteProjectResponse, type DeleteProjectResponses, type DeleteProviderData, type DeleteProviderError, type DeleteProviderErrors, type DeleteProviderResponse, type DeleteProviderResponses, type DeleteTaskData, type DeleteTaskError, type DeleteTaskErrors, type DeleteTaskResponse, type DeleteTaskResponses, type DeleteToolData, type DeleteToolError, type DeleteToolErrors, type DeleteToolResponse, type DeleteToolResponses, type DeleteWebhookData, type DeleteWebhookError, type DeleteWebhookErrors, type DeleteWebhookResponse, type DeleteWebhookResponses, type DeliveryId, type DiscordModes, type DocumentId, type ErrorResponse, type Event, type EventSubscription, type EventType, type ExternalIdFilter, type Force, type GenerateSessionResponseData, type GenerateSessionResponseError, type GenerateSessionResponseErrors, type GenerateSessionResponseResponse, type GenerateSessionResponseResponses, type Generation, type GenerationCreate, type GenerationId, type GenerationList, type GenerationResult, type GenerationStatus, type GenerationUsage, Generations, type GetActorData, type GetActorError, type GetActorErrors, type GetActorResponse, type GetActorResponses, type GetAddressData, type GetAddressError, type GetAddressErrors, type GetAddressResponse, type GetAddressResponses, type GetAgentData, type GetAgentError, type GetAgentErrors, type GetAgentResponse, type GetAgentResponses, type GetApiKeyData, type GetApiKeyError, type GetApiKeyErrors, type GetApiKeyResponse, type GetApiKeyResponses, type GetBoardData, type GetBoardError, type GetBoardErrors, type GetBoardResponse, type GetBoardResponses, type GetChannelConversationData, type GetChannelConversationError, type GetChannelConversationErrors, type GetChannelConversationResponse, type GetChannelConversationResponses, type GetChannelData, type GetChannelError, type GetChannelErrors, type GetChannelResponse, type GetChannelResponses, type GetChannelRouteData, type GetChannelRouteError, type GetChannelRouteErrors, type GetChannelRouteResponse, type GetChannelRouteResponses, type GetCurrentUserData, type GetCurrentUserError, type GetCurrentUserErrors, type GetCurrentUserResponse, type GetCurrentUserResponses, type GetGenerationData, type GetGenerationError, type GetGenerationErrors, type GetGenerationResponse, type GetGenerationResponses, type GetGenerationUsageData, type GetGenerationUsageError, type GetGenerationUsageErrors, type GetGenerationUsageResponse, type GetGenerationUsageResponses, type GetKnowledgeCollectionData, type GetKnowledgeCollectionError, type GetKnowledgeCollectionErrors, type GetKnowledgeCollectionResponse, type GetKnowledgeCollectionResponses, type GetKnowledgeConverterData, type GetKnowledgeConverterError, type GetKnowledgeConverterErrors, type GetKnowledgeConverterResponse, type GetKnowledgeConverterResponses, type GetKnowledgeDocumentData, type GetKnowledgeDocumentError, type GetKnowledgeDocumentErrors, type GetKnowledgeDocumentResponse, type GetKnowledgeDocumentResponses, type GetModelData, type GetModelError, type GetModelErrors, type GetModelResponse, type GetModelResponses, type GetProjectData, type GetProjectError, type GetProjectErrors, type GetProjectResponse, type GetProjectResponses, type GetProjectUsageData, type GetProjectUsageError, type GetProjectUsageErrors, type GetProjectUsageResponse, type GetProjectUsageResponses, type GetProviderData, type GetProviderError, type GetProviderErrors, type GetProviderResponse, type GetProviderResponses, type GetSessionData, type GetSessionError, type GetSessionErrors, type GetSessionResponse, type GetSessionResponses, type GetTaskData, type GetTaskError, type GetTaskErrors, type GetTaskResponse, type GetTaskResponses, type GetToolData, type GetToolError, type GetToolErrors, type GetToolResponse, type GetToolResponses, type GetTraceData, type GetTraceError, type GetTraceErrors, type GetTraceResponse, type GetTraceResponses, type GetTraceStepsData, type GetTraceStepsError, type GetTraceStepsErrors, type GetTraceStepsResponse, type GetTraceStepsResponses, type GetTraceTreeData, type GetTraceTreeError, type GetTraceTreeErrors, type GetTraceTreeResponse, type GetTraceTreeResponses, type GetWebhookData, type GetWebhookDeliveryData, type GetWebhookDeliveryError, type GetWebhookDeliveryErrors, type GetWebhookDeliveryResponse, type GetWebhookDeliveryResponses, type GetWebhookError, type GetWebhookErrors, type GetWebhookResponse, type GetWebhookResponses, type GrantId, type HttpExecute, type IdempotencyKey, type Identifier, Knowledge, type KnowledgeChunk, type KnowledgeCollection, type KnowledgeCollectionCreate, type KnowledgeCollectionList, type KnowledgeCollectionUpdate, type KnowledgeConverter, type KnowledgeConverterCreate, type KnowledgeConverterList, type KnowledgeConverterUpdate, type KnowledgeDocument, type KnowledgeDocumentCreate, type KnowledgeDocumentList, type KnowledgeQueryRequest, type KnowledgeQueryResult, type Limit, type LinkToken, type ListActorsData, type ListActorsError, type ListActorsErrors, type ListActorsResponse, type ListActorsResponses, type ListAddressConversationsData, type ListAddressConversationsError, type ListAddressConversationsErrors, type ListAddressConversationsResponse, type ListAddressConversationsResponses, type ListAddressesData, type ListAddressesError, type ListAddressesErrors, type ListAddressesResponse, type ListAddressesResponses, type ListAgentGenerationsData, type ListAgentGenerationsError, type ListAgentGenerationsErrors, type ListAgentGenerationsResponse, type ListAgentGenerationsResponses, type ListAgentsData, type ListAgentsError, type ListAgentsErrors, type ListAgentsResponse, type ListAgentsResponses, type ListApiKeysData, type ListApiKeysError, type ListApiKeysErrors, type ListApiKeysResponse, type ListApiKeysResponses, type ListAssistantGrantsData, type ListAssistantGrantsError, type ListAssistantGrantsErrors, type ListAssistantGrantsResponse, type ListAssistantGrantsResponses, type ListBoardsData, type ListBoardsError, type ListBoardsErrors, type ListBoardsResponse, type ListBoardsResponses, type ListChannelConversationMessagesData, type ListChannelConversationMessagesError, type ListChannelConversationMessagesErrors, type ListChannelConversationMessagesResponse, type ListChannelConversationMessagesResponses, type ListChannelConversationsData, type ListChannelConversationsError, type ListChannelConversationsErrors, type ListChannelConversationsResponse, type ListChannelConversationsResponses, type ListChannelKindsData, type ListChannelKindsError, type ListChannelKindsErrors, type ListChannelKindsResponse, type ListChannelKindsResponses, type ListChannelRoutesData, type ListChannelRoutesError, type ListChannelRoutesErrors, type ListChannelRoutesResponse, type ListChannelRoutesResponses, type ListChannelsData, type ListChannelsError, type ListChannelsErrors, type ListChannelsResponse, type ListChannelsResponses, type ListKnowledgeCollectionsData, type ListKnowledgeCollectionsError, type ListKnowledgeCollectionsErrors, type ListKnowledgeCollectionsResponse, type ListKnowledgeCollectionsResponses, type ListKnowledgeConvertersData, type ListKnowledgeConvertersError, type ListKnowledgeConvertersErrors, type ListKnowledgeConvertersResponse, type ListKnowledgeConvertersResponses, type ListKnowledgeDocumentsData, type ListKnowledgeDocumentsError, type ListKnowledgeDocumentsErrors, type ListKnowledgeDocumentsResponse, type ListKnowledgeDocumentsResponses, type ListModelsData, type ListModelsError, type ListModelsErrors, type ListModelsResponse, type ListModelsResponses, type ListProjectChannelRoutesData, type ListProjectChannelRoutesError, type ListProjectChannelRoutesErrors, type ListProjectChannelRoutesResponse, type ListProjectChannelRoutesResponses, type ListProjectsData, type ListProjectsError, type ListProjectsErrors, type ListProjectsResponse, type ListProjectsResponses, type ListProvidersData, type ListProvidersError, type ListProvidersErrors, type ListProvidersResponse, type ListProvidersResponses, type ListSessionMessagesData, type ListSessionMessagesError, type ListSessionMessagesErrors, type ListSessionMessagesResponse, type ListSessionMessagesResponses, type ListTaskTransitionsData, type ListTaskTransitionsError, type ListTaskTransitionsErrors, type ListTaskTransitionsResponse, type ListTaskTransitionsResponses, type ListTasksData, type ListTasksError, type ListTasksErrors, type ListTasksResponse, type ListTasksResponses, type ListToolsData, type ListToolsError, type ListToolsErrors, type ListToolsResponse, type ListToolsResponses, type ListTraceGenerationsData, type ListTraceGenerationsError, type ListTraceGenerationsErrors, type ListTraceGenerationsResponse, type ListTraceGenerationsResponses, type ListTracesData, type ListTracesError, type ListTracesErrors, type ListTracesResponse, type ListTracesResponses, type ListWebhookDeliveriesData, type ListWebhookDeliveriesError, type ListWebhookDeliveriesErrors, type ListWebhookDeliveriesResponse, type ListWebhookDeliveriesResponses, type ListWebhooksData, type ListWebhooksError, type ListWebhooksErrors, type ListWebhooksResponse, type ListWebhooksResponses, type LogoutData, type LogoutError, type LogoutErrors, type LogoutRequest, type LogoutResponse, type LogoutResponses, type McpConfig, type Message, type MessagesLimit, type Model, type ModelList, Models, NaturaliClient, type NaturaliClientOptions, type Offset, type Options, type PreviewAssistantLinkData, type PreviewAssistantLinkError, type PreviewAssistantLinkErrors, type PreviewAssistantLinkResponse, type PreviewAssistantLinkResponses, type Project, type ProjectCreate, type ProjectId, type ProjectList, type ProjectUpdate, type ProjectUsage, Projects, type Provider, type ProviderCreate, type ProviderId, type ProviderList, type ProviderUpdate, Providers, type QueryKnowledgeCollectionData, type QueryKnowledgeCollectionError, type QueryKnowledgeCollectionErrors, type QueryKnowledgeCollectionResponse, type QueryKnowledgeCollectionResponses, type RedeemAssistantLinkData, type RedeemAssistantLinkError, type RedeemAssistantLinkErrors, type RedeemAssistantLinkResponse, type RedeemAssistantLinkResponses, type RedeliverWebhookDeliveryData, type RedeliverWebhookDeliveryError, type RedeliverWebhookDeliveryErrors, type RedeliverWebhookDeliveryResponse, type RedeliverWebhookDeliveryResponses, type RefreshRequest, type RefreshSessionData, type RefreshSessionError, type RefreshSessionErrors, type RefreshSessionResponse, type RefreshSessionResponses, type ReingestKnowledgeDocumentData, type ReingestKnowledgeDocumentError, type ReingestKnowledgeDocumentErrors, type ReingestKnowledgeDocumentResponse, type ReingestKnowledgeDocumentResponses, type RequestSignInCodeData, type RequestSignInCodeError, type RequestSignInCodeErrors, type RequestSignInCodeResponse, type RequestSignInCodeResponses, type RevokeAssistantGrantData, type RevokeAssistantGrantError, type RevokeAssistantGrantErrors, type RevokeAssistantGrantResponse, type RevokeAssistantGrantResponses, type RotateApiKeyData, type RotateApiKeyError, type RotateApiKeyErrors, type RotateApiKeyResponse, type RotateApiKeyResponses, type RotateWebhookSecretData, type RotateWebhookSecretError, type RotateWebhookSecretErrors, type RotateWebhookSecretResponse, type RotateWebhookSecretResponses, type RouteId, type Session, type SessionCreate, type SessionGenerate, type SessionGeneration, type SessionId, type SessionMessage, type SessionMessageCreate, type SessionMessageList, type SessionTranscriptMessage, Sessions, type SetAddressActionData, type SetAddressActionError, type SetAddressActionErrors, type SetAddressActionResponse, type SetAddressActionResponses, type SignInCodeRequest, type SignInCodeVerify, type StateFilter, type StatusFilter, type StepRules, type Task, type TaskCreate, type TaskId, type TaskList, type TaskTransitionList, type TaskTransitionRecord, type TaskTransitionRequest, type TaskUpdate, Tasks, type Tool, type ToolChoice, type ToolContext, type ToolCreate, type ToolId, type ToolList, type ToolUpdate, Tools, type Trace, type TraceId, type TraceList, type TraceSteps, type TraceTreeNode, Traces, type TransitionTaskData, type TransitionTaskError, type TransitionTaskErrors, type TransitionTaskResponse, type TransitionTaskResponses, type UpdateActorData, type UpdateActorError, type UpdateActorErrors, type UpdateActorResponse, type UpdateActorResponses, type UpdateAgentData, type UpdateAgentError, type UpdateAgentErrors, type UpdateAgentResponse, type UpdateAgentResponses, type UpdateApiKeyData, type UpdateApiKeyError, type UpdateApiKeyErrors, type UpdateApiKeyResponse, type UpdateApiKeyResponses, type UpdateBoardData, type UpdateBoardError, type UpdateBoardErrors, type UpdateBoardResponse, type UpdateBoardResponses, type UpdateChannelData, type UpdateChannelError, type UpdateChannelErrors, type UpdateChannelResponse, type UpdateChannelResponses, type UpdateChannelRouteData, type UpdateChannelRouteError, type UpdateChannelRouteErrors, type UpdateChannelRouteResponse, type UpdateChannelRouteResponses, type UpdateKnowledgeCollectionData, type UpdateKnowledgeCollectionError, type UpdateKnowledgeCollectionErrors, type UpdateKnowledgeCollectionResponse, type UpdateKnowledgeCollectionResponses, type UpdateKnowledgeConverterData, type UpdateKnowledgeConverterError, type UpdateKnowledgeConverterErrors, type UpdateKnowledgeConverterResponse, type UpdateKnowledgeConverterResponses, type UpdateProjectData, type UpdateProjectError, type UpdateProjectErrors, type UpdateProjectResponse, type UpdateProjectResponses, type UpdateProviderData, type UpdateProviderError, type UpdateProviderErrors, type UpdateProviderResponse, type UpdateProviderResponses, type UpdateTaskData, type UpdateTaskError, type UpdateTaskErrors, type UpdateTaskResponse, type UpdateTaskResponses, type UpdateToolData, type UpdateToolError, type UpdateToolErrors, type UpdateToolResponse, type UpdateToolResponses, type UpdateWebhookData, type UpdateWebhookError, type UpdateWebhookErrors, type UpdateWebhookResponse, type UpdateWebhookResponses, type UsageGroup, type UsageTokens, type User, type VerifySignInCodeData, type VerifySignInCodeError, type VerifySignInCodeErrors, type VerifySignInCodeResponse, type VerifySignInCodeResponses, type Webhook, type WebhookCreate, type WebhookDelivery, type WebhookDeliveryList, type WebhookId, type WebhookList, type WebhookUpdate, type WebhookWithSecret, Webhooks, createClient, createConfig };