@stack-spot/portal-network 0.154.1 → 0.155.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/CHANGELOG.md +7 -0
- package/dist/api/ai.d.ts +252 -76
- package/dist/api/ai.d.ts.map +1 -1
- package/dist/api/ai.js +245 -138
- package/dist/api/ai.js.map +1 -1
- package/dist/client/ai.d.ts +38 -1
- package/dist/client/ai.d.ts.map +1 -1
- package/dist/client/ai.js +10 -1
- package/dist/client/ai.js.map +1 -1
- package/package.json +1 -1
- package/src/api/ai.ts +436 -145
- package/src/client/ai.ts +5 -0
package/dist/api/ai.d.ts
CHANGED
|
@@ -177,6 +177,7 @@ export type QuickCommandEvent = {
|
|
|
177
177
|
execution_id?: string | null;
|
|
178
178
|
qc_execution_id?: string | null;
|
|
179
179
|
id?: string | null;
|
|
180
|
+
is_remote?: boolean | null;
|
|
180
181
|
};
|
|
181
182
|
export type GenericEventRequest = {
|
|
182
183
|
"type": EventTypeEnum;
|
|
@@ -314,6 +315,10 @@ export type AccountSettingsChangeErqcRequest = {
|
|
|
314
315
|
client_cert?: string | null;
|
|
315
316
|
client_key?: string | null;
|
|
316
317
|
};
|
|
318
|
+
export type AccountTokenUsage = {
|
|
319
|
+
total_usage: number;
|
|
320
|
+
max_tokens: number;
|
|
321
|
+
};
|
|
317
322
|
export type TokensCurrentUsageResponse = {
|
|
318
323
|
used: number;
|
|
319
324
|
limit: number;
|
|
@@ -369,6 +374,7 @@ export type QuickCommandsStepFetchRequest = {
|
|
|
369
374
|
[key: string]: string;
|
|
370
375
|
} | null;
|
|
371
376
|
data?: string | null;
|
|
377
|
+
next_step_slug?: string | null;
|
|
372
378
|
};
|
|
373
379
|
export type QuickCommandsStepPromptRequest = {
|
|
374
380
|
slug: string;
|
|
@@ -379,6 +385,34 @@ export type QuickCommandsStepPromptRequest = {
|
|
|
379
385
|
knowledge_source_slugs?: string[] | null;
|
|
380
386
|
agent_id?: string | null;
|
|
381
387
|
agent_built_in?: boolean | null;
|
|
388
|
+
next_step_slug?: string | null;
|
|
389
|
+
};
|
|
390
|
+
export type OperatorType = "equals" | "notEquals" | "contains" | "notContains" | "startsWith" | "endsWith" | "greater" | "smaller" | "greaterEqual" | "smallerEqual" | "isEmpty" | "isNotEmpty" | "isDefined" | "isUndefined";
|
|
391
|
+
export type SimpleExpr = {
|
|
392
|
+
left?: any | null;
|
|
393
|
+
operator?: OperatorType | null;
|
|
394
|
+
right?: any | null;
|
|
395
|
+
};
|
|
396
|
+
export type ConditionExpr = {
|
|
397
|
+
left?: any | null;
|
|
398
|
+
operator?: OperatorType | null;
|
|
399
|
+
right?: any | null;
|
|
400
|
+
and?: SimpleExpr[] | null;
|
|
401
|
+
or?: SimpleExpr[] | null;
|
|
402
|
+
jinja_expression?: string | null;
|
|
403
|
+
label?: string | null;
|
|
404
|
+
};
|
|
405
|
+
export type RouterStepRoute = {
|
|
406
|
+
"default"?: boolean;
|
|
407
|
+
next_step_slug?: string | null;
|
|
408
|
+
condition?: ConditionExpr | null;
|
|
409
|
+
default_error_message?: string | null;
|
|
410
|
+
id?: string | null;
|
|
411
|
+
};
|
|
412
|
+
export type QuickCommandsStepRouterRequest = {
|
|
413
|
+
slug: string;
|
|
414
|
+
routes: RouterStepRoute[];
|
|
415
|
+
max_executions: number;
|
|
382
416
|
};
|
|
383
417
|
export type CustomInputRequest = {
|
|
384
418
|
slug: string;
|
|
@@ -391,7 +425,7 @@ export type QuickCommandsCreateRequest = {
|
|
|
391
425
|
"type"?: QuickCommandTypeRequest;
|
|
392
426
|
description: string;
|
|
393
427
|
final_result: string;
|
|
394
|
-
steps: (QuickCommandsStepFetchRequest | QuickCommandsStepPromptRequest)[];
|
|
428
|
+
steps: (QuickCommandsStepFetchRequest | QuickCommandsStepPromptRequest | QuickCommandsStepRouterRequest)[];
|
|
395
429
|
return_type?: QuickCommandsReturnType | null;
|
|
396
430
|
preserve_conversation?: boolean;
|
|
397
431
|
custom_inputs?: CustomInputRequest[] | null;
|
|
@@ -402,7 +436,7 @@ export type QuickCommandsCreateRequest = {
|
|
|
402
436
|
export type QuickCommandsUpdateRequest = {
|
|
403
437
|
name?: string | null;
|
|
404
438
|
description?: string | null;
|
|
405
|
-
steps?: (QuickCommandsStepFetchRequest | QuickCommandsStepPromptRequest)[] | null;
|
|
439
|
+
steps?: (QuickCommandsStepFetchRequest | QuickCommandsStepPromptRequest | QuickCommandsStepRouterRequest)[] | null;
|
|
406
440
|
return_type?: QuickCommandsReturnType | null;
|
|
407
441
|
knowledge_source_slugs?: string[] | null;
|
|
408
442
|
final_result?: string | null;
|
|
@@ -413,7 +447,7 @@ export type QuickCommandsUpdateRequest = {
|
|
|
413
447
|
} | null;
|
|
414
448
|
use_only?: boolean | null;
|
|
415
449
|
};
|
|
416
|
-
export type QuickCommandStepType = "LLM" | "FETCH";
|
|
450
|
+
export type QuickCommandStepType = "LLM" | "FETCH" | "ROUTER";
|
|
417
451
|
export type Method2 = "GET" | "POST" | "PUT" | "PATCH" | "DELETE";
|
|
418
452
|
export type QuickCommandStepFetchResponse = {
|
|
419
453
|
slug: string;
|
|
@@ -423,8 +457,9 @@ export type QuickCommandStepFetchResponse = {
|
|
|
423
457
|
headers?: {
|
|
424
458
|
[key: string]: string;
|
|
425
459
|
} | null;
|
|
426
|
-
data?:
|
|
460
|
+
data?: any | null;
|
|
427
461
|
is_remote?: boolean;
|
|
462
|
+
next_step_slug?: string | null;
|
|
428
463
|
};
|
|
429
464
|
export type AgentType = "CONVERSATIONAL" | "SINGLE_ANSWER";
|
|
430
465
|
export type LlmConfig = {
|
|
@@ -468,6 +503,29 @@ export type QuickCommandStepLlmResponse = {
|
|
|
468
503
|
agent_id?: string | null;
|
|
469
504
|
agent_built_in?: boolean | null;
|
|
470
505
|
agent_data?: AgentDefinitionResponse | null;
|
|
506
|
+
next_step_slug?: string | null;
|
|
507
|
+
};
|
|
508
|
+
export type ConditionExpr2 = {
|
|
509
|
+
left?: any | null;
|
|
510
|
+
operator?: OperatorType | null;
|
|
511
|
+
right?: any | null;
|
|
512
|
+
and?: SimpleExpr[] | null;
|
|
513
|
+
or?: SimpleExpr[] | null;
|
|
514
|
+
jinja_expression?: string | null;
|
|
515
|
+
label?: string | null;
|
|
516
|
+
};
|
|
517
|
+
export type RouterStepRoute2 = {
|
|
518
|
+
"default"?: boolean;
|
|
519
|
+
next_step_slug?: string | null;
|
|
520
|
+
condition?: ConditionExpr2 | null;
|
|
521
|
+
default_error_message?: string | null;
|
|
522
|
+
id?: string | null;
|
|
523
|
+
};
|
|
524
|
+
export type QuickCommandsStepRouterResponse = {
|
|
525
|
+
slug: string;
|
|
526
|
+
"type": QuickCommandStepType;
|
|
527
|
+
routes: RouterStepRoute2[];
|
|
528
|
+
max_executions: number;
|
|
471
529
|
};
|
|
472
530
|
export type CustomInputResponse = {
|
|
473
531
|
slug: string;
|
|
@@ -482,7 +540,7 @@ export type QuickCommandResponse = {
|
|
|
482
540
|
studio_id?: string | null;
|
|
483
541
|
return_type?: QuickCommandsReturnType | null;
|
|
484
542
|
final_result?: string | null;
|
|
485
|
-
steps?: (QuickCommandStepFetchResponse | QuickCommandStepLlmResponse)[] | null;
|
|
543
|
+
steps?: (QuickCommandStepFetchResponse | QuickCommandStepLlmResponse | QuickCommandsStepRouterResponse)[] | null;
|
|
486
544
|
flow?: {
|
|
487
545
|
[key: string]: any;
|
|
488
546
|
} | null;
|
|
@@ -528,6 +586,20 @@ export type QuickCommandsExecutionRequest = {
|
|
|
528
586
|
export type QuickCommandFinalResultResponse = {
|
|
529
587
|
result: string;
|
|
530
588
|
};
|
|
589
|
+
export type QuickCommandEvaluateStepRouterRequest = {
|
|
590
|
+
executions_count: number;
|
|
591
|
+
input_data?: string | {
|
|
592
|
+
[key: string]: any;
|
|
593
|
+
} | null;
|
|
594
|
+
slugs_executions: {
|
|
595
|
+
[key: string]: QuickCommandPromptResponse | QuickCommandFetchResponseResult;
|
|
596
|
+
} | null;
|
|
597
|
+
};
|
|
598
|
+
export type QuickCommandEvaluateStepRouterResponse = {
|
|
599
|
+
next_step_slug: string;
|
|
600
|
+
"default"?: boolean;
|
|
601
|
+
condition?: ConditionExpr2 | null;
|
|
602
|
+
};
|
|
531
603
|
export type QuickCommandCreateRequest = {
|
|
532
604
|
input_data?: string | {
|
|
533
605
|
[key: string]: any;
|
|
@@ -538,6 +610,11 @@ export type QuickCommandCreateRequest = {
|
|
|
538
610
|
} | null;
|
|
539
611
|
execution_tag?: string | null;
|
|
540
612
|
};
|
|
613
|
+
export type QuickCommandExecutionRequest = {
|
|
614
|
+
account_id: string;
|
|
615
|
+
account_slug: string;
|
|
616
|
+
user_mail: string;
|
|
617
|
+
};
|
|
541
618
|
export type Progress = {
|
|
542
619
|
start: string;
|
|
543
620
|
end?: string | null;
|
|
@@ -560,11 +637,16 @@ export type StepLlm = {
|
|
|
560
637
|
sources: (SourceStackAi | SourceKnowledgeSource | SourceProjectFile | KnowledgeSourceEvent)[];
|
|
561
638
|
tools?: string[];
|
|
562
639
|
};
|
|
640
|
+
export type StepRouter = {
|
|
641
|
+
next_step_slug: string;
|
|
642
|
+
condition?: ConditionExpr2 | null;
|
|
643
|
+
"default"?: boolean;
|
|
644
|
+
};
|
|
563
645
|
export type Step = {
|
|
564
646
|
step_name: string;
|
|
565
647
|
execution_order: number;
|
|
566
648
|
"type": QuickCommandStepType;
|
|
567
|
-
step_result: StepFetch | StepLlm;
|
|
649
|
+
step_result: StepFetch | StepLlm | StepRouter | null;
|
|
568
650
|
};
|
|
569
651
|
export type QuickCommandExecutionResponse = {
|
|
570
652
|
execution_id: string;
|
|
@@ -660,116 +742,130 @@ export declare function metricsMetricsGet(opts?: Oazapfts.RequestOpts): Promise<
|
|
|
660
742
|
/**
|
|
661
743
|
* Workspace Fork
|
|
662
744
|
*/
|
|
663
|
-
export declare function workspaceForkV1AiStacksWorkspaceForkPost({ authorization, xAccountId, aiStackWorkspaceForkRequest }: {
|
|
745
|
+
export declare function workspaceForkV1AiStacksWorkspaceForkPost({ authorization, xAccountId, xMemberId, aiStackWorkspaceForkRequest }: {
|
|
664
746
|
authorization: string;
|
|
665
747
|
xAccountId?: string | null;
|
|
748
|
+
xMemberId?: string | null;
|
|
666
749
|
aiStackWorkspaceForkRequest: AiStackWorkspaceForkRequest;
|
|
667
750
|
}, opts?: Oazapfts.RequestOpts): Promise<AiStackWorkspaceForkResponse>;
|
|
668
751
|
/**
|
|
669
752
|
* Workspace Delete Fork
|
|
670
753
|
*/
|
|
671
|
-
export declare function workspaceDeleteForkV1AiStacksWorkspaceForkDelete({ authorization, xAccountId, aiStackWorkspaceDeleteRequest }: {
|
|
754
|
+
export declare function workspaceDeleteForkV1AiStacksWorkspaceForkDelete({ authorization, xAccountId, xMemberId, aiStackWorkspaceDeleteRequest }: {
|
|
672
755
|
authorization: string;
|
|
673
756
|
xAccountId?: string | null;
|
|
757
|
+
xMemberId?: string | null;
|
|
674
758
|
aiStackWorkspaceDeleteRequest: AiStackWorkspaceDeleteRequest;
|
|
675
759
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
676
760
|
/**
|
|
677
761
|
* Workspace List
|
|
678
762
|
*/
|
|
679
|
-
export declare function workspaceListV1AiStacksWorkspaceListPost({ authorization, xAccountId, aiStackWorkspaceListRequest }: {
|
|
763
|
+
export declare function workspaceListV1AiStacksWorkspaceListPost({ authorization, xAccountId, xMemberId, aiStackWorkspaceListRequest }: {
|
|
680
764
|
authorization: string;
|
|
681
765
|
xAccountId?: string | null;
|
|
766
|
+
xMemberId?: string | null;
|
|
682
767
|
aiStackWorkspaceListRequest: AiStackWorkspaceListRequest;
|
|
683
768
|
}, opts?: Oazapfts.RequestOpts): Promise<GetAiStackResponse[]>;
|
|
684
769
|
/**
|
|
685
770
|
* List Ai Stacks
|
|
686
771
|
*/
|
|
687
|
-
export declare function listAiStacksV1AiStacksGet({ visibility, authorization, xAccountId }: {
|
|
772
|
+
export declare function listAiStacksV1AiStacksGet({ visibility, authorization, xAccountId, xMemberId }: {
|
|
688
773
|
visibility?: VisibilityLevelEnum;
|
|
689
774
|
authorization: string;
|
|
690
775
|
xAccountId?: string | null;
|
|
776
|
+
xMemberId?: string | null;
|
|
691
777
|
}, opts?: Oazapfts.RequestOpts): Promise<GetAiStackResponse[]>;
|
|
692
778
|
/**
|
|
693
779
|
* Create Ai Stack
|
|
694
780
|
*/
|
|
695
|
-
export declare function createAiStackV1AiStacksPost({ authorization, xAccountId, newAiStackRequest }: {
|
|
781
|
+
export declare function createAiStackV1AiStacksPost({ authorization, xAccountId, xMemberId, newAiStackRequest }: {
|
|
696
782
|
authorization: string;
|
|
697
783
|
xAccountId?: string | null;
|
|
784
|
+
xMemberId?: string | null;
|
|
698
785
|
newAiStackRequest: NewAiStackRequest;
|
|
699
786
|
}, opts?: Oazapfts.RequestOpts): Promise<NewAiStackResponse>;
|
|
700
787
|
/**
|
|
701
788
|
* Update Ai Stack
|
|
702
789
|
*/
|
|
703
|
-
export declare function updateAiStackV1AiStacksStackIdPatch({ stackId, authorization, xAccountId, updateAiStackRequest }: {
|
|
790
|
+
export declare function updateAiStackV1AiStacksStackIdPatch({ stackId, authorization, xAccountId, xMemberId, updateAiStackRequest }: {
|
|
704
791
|
stackId: string;
|
|
705
792
|
authorization: string;
|
|
706
793
|
xAccountId?: string | null;
|
|
794
|
+
xMemberId?: string | null;
|
|
707
795
|
updateAiStackRequest: UpdateAiStackRequest;
|
|
708
796
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
709
797
|
/**
|
|
710
798
|
* Get Ai Stack
|
|
711
799
|
*/
|
|
712
|
-
export declare function getAiStackV1AiStacksStackIdGet({ stackId, authorization, xAccountId }: {
|
|
800
|
+
export declare function getAiStackV1AiStacksStackIdGet({ stackId, authorization, xAccountId, xMemberId }: {
|
|
713
801
|
stackId: string;
|
|
714
802
|
authorization: string;
|
|
715
803
|
xAccountId?: string | null;
|
|
804
|
+
xMemberId?: string | null;
|
|
716
805
|
}, opts?: Oazapfts.RequestOpts): Promise<GetAiStackResponse>;
|
|
717
806
|
/**
|
|
718
807
|
* Remove Ai Stack
|
|
719
808
|
*/
|
|
720
|
-
export declare function removeAiStackV1AiStacksStackIdDelete({ stackId, authorization, xAccountId }: {
|
|
809
|
+
export declare function removeAiStackV1AiStacksStackIdDelete({ stackId, authorization, xAccountId, xMemberId }: {
|
|
721
810
|
stackId: string;
|
|
722
811
|
authorization: string;
|
|
723
812
|
xAccountId?: string | null;
|
|
813
|
+
xMemberId?: string | null;
|
|
724
814
|
}, opts?: Oazapfts.RequestOpts): Promise<any>;
|
|
725
815
|
/**
|
|
726
816
|
* Get Ai Stack Exists
|
|
727
817
|
*/
|
|
728
|
-
export declare function getAiStackExistsV1AiStacksStackNameExistsGet({ stackName, authorization, xAccountId }: {
|
|
818
|
+
export declare function getAiStackExistsV1AiStacksStackNameExistsGet({ stackName, authorization, xAccountId, xMemberId }: {
|
|
729
819
|
stackName: string;
|
|
730
820
|
authorization: string;
|
|
731
821
|
xAccountId?: string | null;
|
|
822
|
+
xMemberId?: string | null;
|
|
732
823
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
733
824
|
/**
|
|
734
825
|
* Add Favorite
|
|
735
826
|
*/
|
|
736
|
-
export declare function addFavoriteV1AiStacksStackIdFavoritePost({ stackId, authorization, xAccountId }: {
|
|
827
|
+
export declare function addFavoriteV1AiStacksStackIdFavoritePost({ stackId, authorization, xAccountId, xMemberId }: {
|
|
737
828
|
stackId: string;
|
|
738
829
|
authorization: string;
|
|
739
830
|
xAccountId?: string | null;
|
|
831
|
+
xMemberId?: string | null;
|
|
740
832
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
741
833
|
/**
|
|
742
834
|
* Delete Favorite
|
|
743
835
|
*/
|
|
744
|
-
export declare function deleteFavoriteV1AiStacksStackIdFavoriteDelete({ stackId, authorization, xAccountId }: {
|
|
836
|
+
export declare function deleteFavoriteV1AiStacksStackIdFavoriteDelete({ stackId, authorization, xAccountId, xMemberId }: {
|
|
745
837
|
stackId: string;
|
|
746
838
|
authorization: string;
|
|
747
839
|
xAccountId?: string | null;
|
|
840
|
+
xMemberId?: string | null;
|
|
748
841
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
749
842
|
/**
|
|
750
843
|
* Fork
|
|
751
844
|
*/
|
|
752
|
-
export declare function forkV1AiStacksStackIdForkPost({ stackId, authorization, xAccountId, aiStackForkRequest }: {
|
|
845
|
+
export declare function forkV1AiStacksStackIdForkPost({ stackId, authorization, xAccountId, xMemberId, aiStackForkRequest }: {
|
|
753
846
|
stackId: string;
|
|
754
847
|
authorization: string;
|
|
755
848
|
xAccountId?: string | null;
|
|
849
|
+
xMemberId?: string | null;
|
|
756
850
|
aiStackForkRequest: AiStackForkRequest;
|
|
757
851
|
}, opts?: Oazapfts.RequestOpts): Promise<NewAiStackResponse>;
|
|
758
852
|
/**
|
|
759
853
|
* Share
|
|
760
854
|
*/
|
|
761
|
-
export declare function shareV1AiStacksStackIdSharePost({ stackId, authorization, xAccountId }: {
|
|
855
|
+
export declare function shareV1AiStacksStackIdSharePost({ stackId, authorization, xAccountId, xMemberId }: {
|
|
762
856
|
stackId: string;
|
|
763
857
|
authorization: string;
|
|
764
858
|
xAccountId?: string | null;
|
|
859
|
+
xMemberId?: string | null;
|
|
765
860
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
766
861
|
/**
|
|
767
862
|
* Publish
|
|
768
863
|
*/
|
|
769
|
-
export declare function publishV1AiStacksStackIdPublishPost({ stackId, authorization, xAccountId, aiStackPublishRequest }: {
|
|
864
|
+
export declare function publishV1AiStacksStackIdPublishPost({ stackId, authorization, xAccountId, xMemberId, aiStackPublishRequest }: {
|
|
770
865
|
stackId: string;
|
|
771
866
|
authorization: string;
|
|
772
867
|
xAccountId?: string | null;
|
|
868
|
+
xMemberId?: string | null;
|
|
773
869
|
aiStackPublishRequest?: AiStackPublishRequest;
|
|
774
870
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
775
871
|
/**
|
|
@@ -782,9 +878,10 @@ export declare function projectFilesV1ProjectFilesPost({ authorization, newProje
|
|
|
782
878
|
/**
|
|
783
879
|
* Quick Actions
|
|
784
880
|
*/
|
|
785
|
-
export declare function quickActionsV1QuickActionsPost({ authorization, xAccountId, quickActionsRequest }: {
|
|
881
|
+
export declare function quickActionsV1QuickActionsPost({ authorization, xAccountId, xMemberId, quickActionsRequest }: {
|
|
786
882
|
authorization: string;
|
|
787
883
|
xAccountId?: string | null;
|
|
884
|
+
xMemberId?: string | null;
|
|
788
885
|
quickActionsRequest: QuickActionsRequest;
|
|
789
886
|
}, opts?: Oazapfts.RequestOpts): Promise<SimpleResponse>;
|
|
790
887
|
/**
|
|
@@ -794,17 +891,19 @@ export declare function devAssistantV1ChatPost(opts?: Oazapfts.RequestOpts): Pro
|
|
|
794
891
|
/**
|
|
795
892
|
* Autocomplete V1
|
|
796
893
|
*/
|
|
797
|
-
export declare function autocompleteV1V1AutocompletePost({ authorization, xAccountId, autoCompleteRequest }: {
|
|
894
|
+
export declare function autocompleteV1V1AutocompletePost({ authorization, xAccountId, xMemberId, autoCompleteRequest }: {
|
|
798
895
|
authorization: string;
|
|
799
896
|
xAccountId?: string | null;
|
|
897
|
+
xMemberId?: string | null;
|
|
800
898
|
autoCompleteRequest: AutoCompleteRequest;
|
|
801
899
|
}, opts?: Oazapfts.RequestOpts): Promise<string | AutoCompleteResult>;
|
|
802
900
|
/**
|
|
803
901
|
* Post Event
|
|
804
902
|
*/
|
|
805
|
-
export declare function postEventV1EventsPost({ authorization, xAccountId, body }: {
|
|
903
|
+
export declare function postEventV1EventsPost({ authorization, xAccountId, xMemberId, body }: {
|
|
806
904
|
authorization: string;
|
|
807
905
|
xAccountId?: string | null;
|
|
906
|
+
xMemberId?: string | null;
|
|
808
907
|
body: GenericEventRequest[];
|
|
809
908
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
810
909
|
/**
|
|
@@ -835,13 +934,14 @@ export declare function createKnowledgeSourceV1KnowledgeSourcesPost({ authorizat
|
|
|
835
934
|
/**
|
|
836
935
|
* List Knowledge Sources
|
|
837
936
|
*/
|
|
838
|
-
export declare function listKnowledgeSourcesV1KnowledgeSourcesGet({ visibility, order, $default, types, authorization, xAccountId }: {
|
|
937
|
+
export declare function listKnowledgeSourcesV1KnowledgeSourcesGet({ visibility, order, $default, types, authorization, xAccountId, xMemberId }: {
|
|
839
938
|
visibility?: VisibilityLevelEnum;
|
|
840
939
|
order?: OrderEnum;
|
|
841
940
|
$default?: boolean | null;
|
|
842
941
|
types?: KnowledgeSourceTypeEnum[] | null;
|
|
843
942
|
authorization: string;
|
|
844
943
|
xAccountId?: string | null;
|
|
944
|
+
xMemberId?: string | null;
|
|
845
945
|
}, opts?: Oazapfts.RequestOpts): Promise<KnowledgeSourceItemResponse[]>;
|
|
846
946
|
/**
|
|
847
947
|
* Find Knowledge Source
|
|
@@ -861,10 +961,11 @@ export declare function updateKnowledgeSourceV1KnowledgeSourcesSlugPatch({ slug,
|
|
|
861
961
|
/**
|
|
862
962
|
* Delete Knowledge Source
|
|
863
963
|
*/
|
|
864
|
-
export declare function deleteKnowledgeSourceV1KnowledgeSourcesSlugDelete({ slug, authorization, xAccountId }: {
|
|
964
|
+
export declare function deleteKnowledgeSourceV1KnowledgeSourcesSlugDelete({ slug, authorization, xAccountId, xMemberId }: {
|
|
865
965
|
slug: string;
|
|
866
966
|
authorization: string;
|
|
867
967
|
xAccountId?: string | null;
|
|
968
|
+
xMemberId?: string | null;
|
|
868
969
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
869
970
|
/**
|
|
870
971
|
* Exists Knowledge Source
|
|
@@ -876,12 +977,13 @@ export declare function existsKnowledgeSourceV1KnowledgeSourcesSlugExistsGet({ s
|
|
|
876
977
|
/**
|
|
877
978
|
* Search
|
|
878
979
|
*/
|
|
879
|
-
export declare function searchV1KnowledgeSourcesSlugSimilaritySearchGet({ slug, q, size, authorization, xAccountId }: {
|
|
980
|
+
export declare function searchV1KnowledgeSourcesSlugSimilaritySearchGet({ slug, q, size, authorization, xAccountId, xMemberId }: {
|
|
880
981
|
slug: string;
|
|
881
982
|
q: string;
|
|
882
983
|
size?: number;
|
|
883
984
|
authorization: string;
|
|
884
985
|
xAccountId?: string | null;
|
|
986
|
+
xMemberId?: string | null;
|
|
885
987
|
}, opts?: Oazapfts.RequestOpts): Promise<KnowledgeSourceSimilaritySearchItemResponse[]>;
|
|
886
988
|
/**
|
|
887
989
|
* Share Knowledge Source
|
|
@@ -956,10 +1058,11 @@ export declare function findSnippetDocByCustomIdV1KnowledgeSourcesSlugSnippetsId
|
|
|
956
1058
|
/**
|
|
957
1059
|
* Vectorize Snippet Knowledge Source
|
|
958
1060
|
*/
|
|
959
|
-
export declare function vectorizeSnippetKnowledgeSourceV1KnowledgeSourcesSlugSnippetsPost({ slug, authorization, xAccountId, snippetKnowledgeSourceRequest }: {
|
|
1061
|
+
export declare function vectorizeSnippetKnowledgeSourceV1KnowledgeSourcesSlugSnippetsPost({ slug, authorization, xAccountId, xMemberId, snippetKnowledgeSourceRequest }: {
|
|
960
1062
|
slug: string;
|
|
961
1063
|
authorization: string;
|
|
962
1064
|
xAccountId?: string | null;
|
|
1065
|
+
xMemberId?: string | null;
|
|
963
1066
|
snippetKnowledgeSourceRequest: SnippetKnowledgeSourceRequest;
|
|
964
1067
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
965
1068
|
/**
|
|
@@ -981,10 +1084,11 @@ export declare function findEventDocByCustomIdV1KnowledgeSourcesSlugEventsIdGet(
|
|
|
981
1084
|
/**
|
|
982
1085
|
* Vectorize Event Knowledge Source
|
|
983
1086
|
*/
|
|
984
|
-
export declare function vectorizeEventKnowledgeSourceV1KnowledgeSourcesSlugEventsPost({ slug, authorization, xAccountId, body }: {
|
|
1087
|
+
export declare function vectorizeEventKnowledgeSourceV1KnowledgeSourcesSlugEventsPost({ slug, authorization, xAccountId, xMemberId, body }: {
|
|
985
1088
|
slug: string;
|
|
986
1089
|
authorization: string;
|
|
987
1090
|
xAccountId?: string | null;
|
|
1091
|
+
xMemberId?: string | null;
|
|
988
1092
|
body: {
|
|
989
1093
|
[key: string]: any;
|
|
990
1094
|
};
|
|
@@ -1000,10 +1104,11 @@ export declare function findCustomDocByCustomIdV1KnowledgeSourcesSlugCustomIdGet
|
|
|
1000
1104
|
/**
|
|
1001
1105
|
* Vectorize Custom Knowledge Source
|
|
1002
1106
|
*/
|
|
1003
|
-
export declare function vectorizeCustomKnowledgeSourceV1KnowledgeSourcesSlugCustomPost({ slug, authorization, xAccountId, customKnowledgeSourceRequest }: {
|
|
1107
|
+
export declare function vectorizeCustomKnowledgeSourceV1KnowledgeSourcesSlugCustomPost({ slug, authorization, xAccountId, xMemberId, customKnowledgeSourceRequest }: {
|
|
1004
1108
|
slug: string;
|
|
1005
1109
|
authorization: string;
|
|
1006
1110
|
xAccountId?: string | null;
|
|
1111
|
+
xMemberId?: string | null;
|
|
1007
1112
|
customKnowledgeSourceRequest: CustomKnowledgeSourceRequest;
|
|
1008
1113
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
1009
1114
|
/**
|
|
@@ -1020,32 +1125,36 @@ export declare function searchKnowledgeSourcesV1KnowledgeSourcesSearchPost({ aut
|
|
|
1020
1125
|
/**
|
|
1021
1126
|
* Change Llm
|
|
1022
1127
|
*/
|
|
1023
|
-
export declare function changeLlmV1AccountsLlmPatch({ authorization, xAccountId, accountSettingsChangeLlmRequest }: {
|
|
1128
|
+
export declare function changeLlmV1AccountsLlmPatch({ authorization, xAccountId, xMemberId, accountSettingsChangeLlmRequest }: {
|
|
1024
1129
|
authorization: string;
|
|
1025
1130
|
xAccountId?: string | null;
|
|
1131
|
+
xMemberId?: string | null;
|
|
1026
1132
|
accountSettingsChangeLlmRequest: AccountSettingsChangeLlmRequest;
|
|
1027
1133
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
1028
1134
|
/**
|
|
1029
1135
|
* Change Limit
|
|
1030
1136
|
*/
|
|
1031
|
-
export declare function changeLimitV1AccountsTokenLimitsPut({ authorization, xAccountId, accountSettingsChangeLimitRequest }: {
|
|
1137
|
+
export declare function changeLimitV1AccountsTokenLimitsPut({ authorization, xAccountId, xMemberId, accountSettingsChangeLimitRequest }: {
|
|
1032
1138
|
authorization: string;
|
|
1033
1139
|
xAccountId?: string | null;
|
|
1140
|
+
xMemberId?: string | null;
|
|
1034
1141
|
accountSettingsChangeLimitRequest: AccountSettingsChangeLimitRequest;
|
|
1035
1142
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
1036
1143
|
/**
|
|
1037
1144
|
* Reset Limit
|
|
1038
1145
|
*/
|
|
1039
|
-
export declare function resetLimitV1AccountsTokenLimitsDelete({ authorization, xAccountId }: {
|
|
1146
|
+
export declare function resetLimitV1AccountsTokenLimitsDelete({ authorization, xAccountId, xMemberId }: {
|
|
1040
1147
|
authorization: string;
|
|
1041
1148
|
xAccountId?: string | null;
|
|
1149
|
+
xMemberId?: string | null;
|
|
1042
1150
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
1043
1151
|
/**
|
|
1044
1152
|
* Change External Rqc
|
|
1045
1153
|
*/
|
|
1046
|
-
export declare function changeExternalRqcV1AccountsExternalRqcPatch({ authorization, xAccountId, accountSettingsChangeErqcRequest }: {
|
|
1154
|
+
export declare function changeExternalRqcV1AccountsExternalRqcPatch({ authorization, xAccountId, xMemberId, accountSettingsChangeErqcRequest }: {
|
|
1047
1155
|
authorization: string;
|
|
1048
1156
|
xAccountId?: string | null;
|
|
1157
|
+
xMemberId?: string | null;
|
|
1049
1158
|
accountSettingsChangeErqcRequest: AccountSettingsChangeErqcRequest;
|
|
1050
1159
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
1051
1160
|
/**
|
|
@@ -1060,321 +1169,383 @@ export declare function changeExternalConfigsV1AccountsExternalConfigPatch({ bod
|
|
|
1060
1169
|
[key: string]: any;
|
|
1061
1170
|
};
|
|
1062
1171
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
1172
|
+
/**
|
|
1173
|
+
* Tokens Usage
|
|
1174
|
+
*/
|
|
1175
|
+
export declare function tokensUsageV1AccountsTokensUsageGet(opts?: Oazapfts.RequestOpts): Promise<AccountTokenUsage>;
|
|
1063
1176
|
/**
|
|
1064
1177
|
* Current
|
|
1065
1178
|
*/
|
|
1066
|
-
export declare function currentV1TokensUsageTotalGet({ authorization, xAccountId }: {
|
|
1179
|
+
export declare function currentV1TokensUsageTotalGet({ authorization, xAccountId, xMemberId }: {
|
|
1067
1180
|
authorization: string;
|
|
1068
1181
|
xAccountId?: string | null;
|
|
1182
|
+
xMemberId?: string | null;
|
|
1069
1183
|
}, opts?: Oazapfts.RequestOpts): Promise<TokensCurrentUsageResponse>;
|
|
1070
1184
|
/**
|
|
1071
1185
|
* Current
|
|
1072
1186
|
*/
|
|
1073
|
-
export declare function currentV1TokensUsageCurrentGet({ year, month, authorization, xAccountId }: {
|
|
1187
|
+
export declare function currentV1TokensUsageCurrentGet({ year, month, authorization, xAccountId, xMemberId }: {
|
|
1074
1188
|
year: number;
|
|
1075
1189
|
month: number;
|
|
1076
1190
|
authorization: string;
|
|
1077
1191
|
xAccountId?: string | null;
|
|
1192
|
+
xMemberId?: string | null;
|
|
1078
1193
|
}, opts?: Oazapfts.RequestOpts): Promise<TokensCurrentUsageResponse>;
|
|
1079
1194
|
/**
|
|
1080
1195
|
* Monthly
|
|
1081
1196
|
*/
|
|
1082
|
-
export declare function monthlyV1TokensUsageMonthlyGet({ year, authorization, xAccountId }: {
|
|
1197
|
+
export declare function monthlyV1TokensUsageMonthlyGet({ year, authorization, xAccountId, xMemberId }: {
|
|
1083
1198
|
year: number;
|
|
1084
1199
|
authorization: string;
|
|
1085
1200
|
xAccountId?: string | null;
|
|
1201
|
+
xMemberId?: string | null;
|
|
1086
1202
|
}, opts?: Oazapfts.RequestOpts): Promise<TokensMonthlyUsageResponse[]>;
|
|
1087
1203
|
/**
|
|
1088
1204
|
* Top Users
|
|
1089
1205
|
*/
|
|
1090
|
-
export declare function topUsersV1TokensUsageTopUsersGet({ year, month, authorization, xAccountId }: {
|
|
1206
|
+
export declare function topUsersV1TokensUsageTopUsersGet({ year, month, authorization, xAccountId, xMemberId }: {
|
|
1091
1207
|
year: number;
|
|
1092
1208
|
month: number;
|
|
1093
1209
|
authorization: string;
|
|
1094
1210
|
xAccountId?: string | null;
|
|
1211
|
+
xMemberId?: string | null;
|
|
1095
1212
|
}, opts?: Oazapfts.RequestOpts): Promise<any>;
|
|
1096
1213
|
/**
|
|
1097
1214
|
* Add Association
|
|
1098
1215
|
*/
|
|
1099
|
-
export declare function addAssociationV1WorkspaceWorkspaceIdPost({ workspaceId, authorization, xAccountId, addWorkspaceKnowledgeSourceRequest }: {
|
|
1216
|
+
export declare function addAssociationV1WorkspaceWorkspaceIdPost({ workspaceId, authorization, xAccountId, xMemberId, addWorkspaceKnowledgeSourceRequest }: {
|
|
1100
1217
|
workspaceId: string;
|
|
1101
1218
|
authorization: string;
|
|
1102
1219
|
xAccountId?: string | null;
|
|
1220
|
+
xMemberId?: string | null;
|
|
1103
1221
|
addWorkspaceKnowledgeSourceRequest: AddWorkspaceKnowledgeSourceRequest;
|
|
1104
1222
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
1105
1223
|
/**
|
|
1106
1224
|
* List Association
|
|
1107
1225
|
*/
|
|
1108
|
-
export declare function listAssociationV1WorkspaceWorkspaceIdGet({ workspaceId, authorization, xAccountId }: {
|
|
1226
|
+
export declare function listAssociationV1WorkspaceWorkspaceIdGet({ workspaceId, authorization, xAccountId, xMemberId }: {
|
|
1109
1227
|
workspaceId: string;
|
|
1110
1228
|
authorization: string;
|
|
1111
1229
|
xAccountId?: string | null;
|
|
1230
|
+
xMemberId?: string | null;
|
|
1112
1231
|
}, opts?: Oazapfts.RequestOpts): Promise<KnowledgeSourceResponse[]>;
|
|
1113
1232
|
/**
|
|
1114
1233
|
* Delete Association
|
|
1115
1234
|
*/
|
|
1116
|
-
export declare function deleteAssociationV1WorkspaceWorkspaceIdKnowledgeSourceKnowledgeSourceSlugDelete({ workspaceId, knowledgeSourceSlug, authorization, xAccountId }: {
|
|
1235
|
+
export declare function deleteAssociationV1WorkspaceWorkspaceIdKnowledgeSourceKnowledgeSourceSlugDelete({ workspaceId, knowledgeSourceSlug, authorization, xAccountId, xMemberId }: {
|
|
1117
1236
|
workspaceId: string;
|
|
1118
1237
|
knowledgeSourceSlug: string;
|
|
1119
1238
|
authorization: string;
|
|
1120
1239
|
xAccountId?: string | null;
|
|
1240
|
+
xMemberId?: string | null;
|
|
1121
1241
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
1122
1242
|
/**
|
|
1123
1243
|
* Workspace Fork
|
|
1124
1244
|
*/
|
|
1125
|
-
export declare function workspaceForkV1QuickCommandsWorkspaceForkPost({ authorization, xAccountId, quickCommandWorkspaceForkRequest }: {
|
|
1245
|
+
export declare function workspaceForkV1QuickCommandsWorkspaceForkPost({ authorization, xAccountId, xMemberId, quickCommandWorkspaceForkRequest }: {
|
|
1126
1246
|
authorization: string;
|
|
1127
1247
|
xAccountId?: string | null;
|
|
1248
|
+
xMemberId?: string | null;
|
|
1128
1249
|
quickCommandWorkspaceForkRequest: QuickCommandWorkspaceForkRequest;
|
|
1129
1250
|
}, opts?: Oazapfts.RequestOpts): Promise<any>;
|
|
1130
1251
|
/**
|
|
1131
1252
|
* Workspace Delete Fork
|
|
1132
1253
|
*/
|
|
1133
|
-
export declare function workspaceDeleteForkV1QuickCommandsWorkspaceForkDelete({ authorization, xAccountId, quickCommandWorkspaceDeleteRequest }: {
|
|
1254
|
+
export declare function workspaceDeleteForkV1QuickCommandsWorkspaceForkDelete({ authorization, xAccountId, xMemberId, quickCommandWorkspaceDeleteRequest }: {
|
|
1134
1255
|
authorization: string;
|
|
1135
1256
|
xAccountId?: string | null;
|
|
1257
|
+
xMemberId?: string | null;
|
|
1136
1258
|
quickCommandWorkspaceDeleteRequest: QuickCommandWorkspaceDeleteRequest;
|
|
1137
1259
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
1138
1260
|
/**
|
|
1139
1261
|
* Workspace List
|
|
1140
1262
|
*/
|
|
1141
|
-
export declare function workspaceListV1QuickCommandsWorkspaceListPost({ authorization, xAccountId, quickCommandWorkspaceListRequest }: {
|
|
1263
|
+
export declare function workspaceListV1QuickCommandsWorkspaceListPost({ authorization, xAccountId, xMemberId, quickCommandWorkspaceListRequest }: {
|
|
1142
1264
|
authorization: string;
|
|
1143
1265
|
xAccountId?: string | null;
|
|
1266
|
+
xMemberId?: string | null;
|
|
1144
1267
|
quickCommandWorkspaceListRequest: QuickCommandWorkspaceListRequest;
|
|
1145
1268
|
}, opts?: Oazapfts.RequestOpts): Promise<QuickCommandListResponse[]>;
|
|
1146
1269
|
/**
|
|
1147
1270
|
* Create Quick Command
|
|
1148
1271
|
*/
|
|
1149
|
-
export declare function createQuickCommandV1QuickCommandsPost({ authorization, xAccountId, quickCommandsCreateRequest }: {
|
|
1272
|
+
export declare function createQuickCommandV1QuickCommandsPost({ authorization, xAccountId, xMemberId, quickCommandsCreateRequest }: {
|
|
1150
1273
|
authorization: string;
|
|
1151
1274
|
xAccountId?: string | null;
|
|
1275
|
+
xMemberId?: string | null;
|
|
1152
1276
|
quickCommandsCreateRequest: QuickCommandsCreateRequest;
|
|
1153
1277
|
}, opts?: Oazapfts.RequestOpts): Promise<any>;
|
|
1154
1278
|
/**
|
|
1155
1279
|
* List All
|
|
1156
1280
|
*/
|
|
1157
|
-
export declare function listAllV1QuickCommandsAllGet({ visibility, order, types, authorization, xAccountId }: {
|
|
1281
|
+
export declare function listAllV1QuickCommandsAllGet({ visibility, order, types, authorization, xAccountId, xMemberId }: {
|
|
1158
1282
|
visibility?: VisibilityLevelEnum | null;
|
|
1159
1283
|
order?: OrderEnum;
|
|
1160
1284
|
types?: QuickCommandTypeRequest[] | null;
|
|
1161
1285
|
authorization: string;
|
|
1162
1286
|
xAccountId?: string | null;
|
|
1287
|
+
xMemberId?: string | null;
|
|
1163
1288
|
}, opts?: Oazapfts.RequestOpts): Promise<QuickCommandListResponse[]>;
|
|
1164
1289
|
/**
|
|
1165
1290
|
* Update Quick Command
|
|
1166
1291
|
*/
|
|
1167
|
-
export declare function updateQuickCommandV1QuickCommandsSlugPatch({ slug, authorization, xAccountId, quickCommandsUpdateRequest }: {
|
|
1292
|
+
export declare function updateQuickCommandV1QuickCommandsSlugPatch({ slug, authorization, xAccountId, xMemberId, quickCommandsUpdateRequest }: {
|
|
1168
1293
|
slug: string;
|
|
1169
1294
|
authorization: string;
|
|
1170
1295
|
xAccountId?: string | null;
|
|
1296
|
+
xMemberId?: string | null;
|
|
1171
1297
|
quickCommandsUpdateRequest: QuickCommandsUpdateRequest;
|
|
1172
1298
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
1173
1299
|
/**
|
|
1174
1300
|
* Get Quick Command
|
|
1175
1301
|
*/
|
|
1176
|
-
export declare function getQuickCommandV1QuickCommandsSlugGet({ slug, findAgents, authorization, xAccountId }: {
|
|
1302
|
+
export declare function getQuickCommandV1QuickCommandsSlugGet({ slug, findAgents, authorization, xAccountId, xMemberId }: {
|
|
1177
1303
|
slug: string;
|
|
1178
1304
|
findAgents?: boolean;
|
|
1179
1305
|
authorization: string;
|
|
1180
1306
|
xAccountId?: string | null;
|
|
1307
|
+
xMemberId?: string | null;
|
|
1181
1308
|
}, opts?: Oazapfts.RequestOpts): Promise<QuickCommandResponse>;
|
|
1182
1309
|
/**
|
|
1183
1310
|
* Delete Quick Command
|
|
1184
1311
|
*/
|
|
1185
|
-
export declare function deleteQuickCommandV1QuickCommandsSlugDelete({ slug, authorization, xAccountId }: {
|
|
1312
|
+
export declare function deleteQuickCommandV1QuickCommandsSlugDelete({ slug, authorization, xAccountId, xMemberId }: {
|
|
1186
1313
|
slug: string;
|
|
1187
1314
|
authorization: string;
|
|
1188
1315
|
xAccountId?: string | null;
|
|
1316
|
+
xMemberId?: string | null;
|
|
1189
1317
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
1190
1318
|
/**
|
|
1191
1319
|
* Add Favorite
|
|
1192
1320
|
*/
|
|
1193
|
-
export declare function addFavoriteV1QuickCommandsSlugFavoritePost({ slug, authorization, xAccountId }: {
|
|
1321
|
+
export declare function addFavoriteV1QuickCommandsSlugFavoritePost({ slug, authorization, xAccountId, xMemberId }: {
|
|
1194
1322
|
slug: string;
|
|
1195
1323
|
authorization: string;
|
|
1196
1324
|
xAccountId?: string | null;
|
|
1325
|
+
xMemberId?: string | null;
|
|
1197
1326
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
1198
1327
|
/**
|
|
1199
1328
|
* Delete Favorite
|
|
1200
1329
|
*/
|
|
1201
|
-
export declare function deleteFavoriteV1QuickCommandsSlugFavoriteDelete({ slug, authorization, xAccountId }: {
|
|
1330
|
+
export declare function deleteFavoriteV1QuickCommandsSlugFavoriteDelete({ slug, authorization, xAccountId, xMemberId }: {
|
|
1202
1331
|
slug: string;
|
|
1203
1332
|
authorization: string;
|
|
1204
1333
|
xAccountId?: string | null;
|
|
1334
|
+
xMemberId?: string | null;
|
|
1205
1335
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
1206
1336
|
/**
|
|
1207
1337
|
* Share
|
|
1208
1338
|
*/
|
|
1209
|
-
export declare function shareV1QuickCommandsSlugSharePost({ slug, authorization, xAccountId }: {
|
|
1339
|
+
export declare function shareV1QuickCommandsSlugSharePost({ slug, authorization, xAccountId, xMemberId }: {
|
|
1210
1340
|
slug: string;
|
|
1211
1341
|
authorization: string;
|
|
1212
1342
|
xAccountId?: string | null;
|
|
1343
|
+
xMemberId?: string | null;
|
|
1213
1344
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
1214
1345
|
/**
|
|
1215
1346
|
* Publish
|
|
1216
1347
|
*/
|
|
1217
|
-
export declare function publishV1QuickCommandsSlugPublishPost({ slug, authorization, xAccountId, quickCommandPublishRequest }: {
|
|
1348
|
+
export declare function publishV1QuickCommandsSlugPublishPost({ slug, authorization, xAccountId, xMemberId, quickCommandPublishRequest }: {
|
|
1218
1349
|
slug: string;
|
|
1219
1350
|
authorization: string;
|
|
1220
1351
|
xAccountId?: string | null;
|
|
1352
|
+
xMemberId?: string | null;
|
|
1221
1353
|
quickCommandPublishRequest?: QuickCommandPublishRequest;
|
|
1222
1354
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
1223
1355
|
/**
|
|
1224
1356
|
* Fork
|
|
1225
1357
|
*/
|
|
1226
|
-
export declare function forkV1QuickCommandsSlugForkPost({ slug, authorization, xAccountId, quickCommandsMakeACopyRequest }: {
|
|
1358
|
+
export declare function forkV1QuickCommandsSlugForkPost({ slug, authorization, xAccountId, xMemberId, quickCommandsMakeACopyRequest }: {
|
|
1227
1359
|
slug: string;
|
|
1228
1360
|
authorization: string;
|
|
1229
1361
|
xAccountId?: string | null;
|
|
1362
|
+
xMemberId?: string | null;
|
|
1230
1363
|
quickCommandsMakeACopyRequest: QuickCommandsMakeACopyRequest;
|
|
1231
1364
|
}, opts?: Oazapfts.RequestOpts): Promise<any>;
|
|
1232
1365
|
/**
|
|
1233
1366
|
* Get Quick Command
|
|
1234
1367
|
*/
|
|
1235
|
-
export declare function getQuickCommandV1QuickCommandsSlugExistsGet({ slug, authorization, xAccountId }: {
|
|
1368
|
+
export declare function getQuickCommandV1QuickCommandsSlugExistsGet({ slug, authorization, xAccountId, xMemberId }: {
|
|
1236
1369
|
slug: string;
|
|
1237
1370
|
authorization: string;
|
|
1238
1371
|
xAccountId?: string | null;
|
|
1372
|
+
xMemberId?: string | null;
|
|
1239
1373
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
1240
1374
|
/**
|
|
1241
1375
|
* Get Quick Command By Ks Slug
|
|
1242
1376
|
*/
|
|
1243
|
-
export declare function getQuickCommandByKsSlugV1QuickCommandsKnowledgeSourcesSlugGet({ slug, authorization, xAccountId }: {
|
|
1377
|
+
export declare function getQuickCommandByKsSlugV1QuickCommandsKnowledgeSourcesSlugGet({ slug, authorization, xAccountId, xMemberId }: {
|
|
1244
1378
|
slug: string;
|
|
1245
1379
|
authorization: string;
|
|
1246
1380
|
xAccountId?: string | null;
|
|
1381
|
+
xMemberId?: string | null;
|
|
1247
1382
|
}, opts?: Oazapfts.RequestOpts): Promise<QuickCommandListResponse[]>;
|
|
1248
1383
|
/**
|
|
1249
1384
|
* Get Quick Commands By Agent Id
|
|
1250
1385
|
*/
|
|
1251
|
-
export declare function getQuickCommandsByAgentIdV1QuickCommandsAgentsAgentIdGet({ agentId, authorization, xAccountId }: {
|
|
1386
|
+
export declare function getQuickCommandsByAgentIdV1QuickCommandsAgentsAgentIdGet({ agentId, authorization, xAccountId, xMemberId }: {
|
|
1252
1387
|
agentId: string;
|
|
1253
1388
|
authorization: string;
|
|
1254
1389
|
xAccountId?: string | null;
|
|
1390
|
+
xMemberId?: string | null;
|
|
1255
1391
|
}, opts?: Oazapfts.RequestOpts): Promise<QuickCommandListResponse[]>;
|
|
1256
1392
|
/**
|
|
1257
1393
|
* Disassociate Agent
|
|
1258
1394
|
*/
|
|
1259
|
-
export declare function disassociateAgentV1QuickCommandsAgentsAgentIdDelete({ agentId, authorization, xAccountId }: {
|
|
1395
|
+
export declare function disassociateAgentV1QuickCommandsAgentsAgentIdDelete({ agentId, authorization, xAccountId, xMemberId }: {
|
|
1260
1396
|
agentId: string;
|
|
1261
1397
|
authorization: string;
|
|
1262
1398
|
xAccountId?: string | null;
|
|
1399
|
+
xMemberId?: string | null;
|
|
1263
1400
|
}, opts?: Oazapfts.RequestOpts): Promise<any>;
|
|
1264
1401
|
/**
|
|
1265
1402
|
* List By Workspace Id
|
|
1266
1403
|
*/
|
|
1267
|
-
export declare function listByWorkspaceIdV1QuickCommandsWorkspacesWorkspaceIdGet({ workspaceId, authorization, xAccountId }: {
|
|
1404
|
+
export declare function listByWorkspaceIdV1QuickCommandsWorkspacesWorkspaceIdGet({ workspaceId, authorization, xAccountId, xMemberId }: {
|
|
1268
1405
|
workspaceId: string;
|
|
1269
1406
|
authorization: string;
|
|
1270
1407
|
xAccountId?: string | null;
|
|
1408
|
+
xMemberId?: string | null;
|
|
1271
1409
|
}, opts?: Oazapfts.RequestOpts): Promise<QuickCommandListResponse[]>;
|
|
1272
1410
|
/**
|
|
1273
1411
|
* Format Fetch Step
|
|
1274
1412
|
*/
|
|
1275
|
-
export declare function formatFetchStepV1QuickCommandsSlugStepsStepSlugFetchFormatPost({ slug, stepSlug, authorization, xAccountId, quickCommandsExecutionRequest }: {
|
|
1413
|
+
export declare function formatFetchStepV1QuickCommandsSlugStepsStepSlugFetchFormatPost({ slug, stepSlug, authorization, xAccountId, xMemberId, quickCommandsExecutionRequest }: {
|
|
1276
1414
|
slug: string;
|
|
1277
1415
|
stepSlug: string;
|
|
1278
1416
|
authorization: string;
|
|
1279
1417
|
xAccountId?: string | null;
|
|
1418
|
+
xMemberId?: string | null;
|
|
1280
1419
|
quickCommandsExecutionRequest: QuickCommandsExecutionRequest;
|
|
1281
1420
|
}, opts?: Oazapfts.RequestOpts): Promise<QuickCommandStepFetchResponse>;
|
|
1282
1421
|
/**
|
|
1283
1422
|
* Format Result
|
|
1284
1423
|
*/
|
|
1285
|
-
export declare function formatResultV1QuickCommandsSlugResultFormatPost({ slug, authorization, xAccountId, quickCommandsExecutionRequest }: {
|
|
1424
|
+
export declare function formatResultV1QuickCommandsSlugResultFormatPost({ slug, authorization, xAccountId, xMemberId, quickCommandsExecutionRequest }: {
|
|
1286
1425
|
slug: string;
|
|
1287
1426
|
authorization: string;
|
|
1288
1427
|
xAccountId?: string | null;
|
|
1428
|
+
xMemberId?: string | null;
|
|
1289
1429
|
quickCommandsExecutionRequest: QuickCommandsExecutionRequest;
|
|
1290
1430
|
}, opts?: Oazapfts.RequestOpts): Promise<QuickCommandFinalResultResponse>;
|
|
1431
|
+
/**
|
|
1432
|
+
* Calculates the next route for a ROUTER step
|
|
1433
|
+
*/
|
|
1434
|
+
export declare function calculateNextStepV1QuickCommandsSlugStepsStepSlugCalculateNextStepPost({ slug, stepSlug, authorization, xAccountId, xMemberId, quickCommandEvaluateStepRouterRequest }: {
|
|
1435
|
+
slug: string;
|
|
1436
|
+
stepSlug: string;
|
|
1437
|
+
authorization: string;
|
|
1438
|
+
xAccountId?: string | null;
|
|
1439
|
+
xMemberId?: string | null;
|
|
1440
|
+
quickCommandEvaluateStepRouterRequest: QuickCommandEvaluateStepRouterRequest;
|
|
1441
|
+
}, opts?: Oazapfts.RequestOpts): Promise<QuickCommandEvaluateStepRouterResponse>;
|
|
1291
1442
|
/**
|
|
1292
1443
|
* Add Workspace
|
|
1293
1444
|
*/
|
|
1294
|
-
export declare function addWorkspaceV1QuickCommandsSlugWorkspacesWorkspaceIdAddPost({ slug, workspaceId, authorization, xAccountId }: {
|
|
1445
|
+
export declare function addWorkspaceV1QuickCommandsSlugWorkspacesWorkspaceIdAddPost({ slug, workspaceId, authorization, xAccountId, xMemberId }: {
|
|
1295
1446
|
slug: string;
|
|
1296
1447
|
workspaceId: string;
|
|
1297
1448
|
authorization: string;
|
|
1298
1449
|
xAccountId?: string | null;
|
|
1450
|
+
xMemberId?: string | null;
|
|
1299
1451
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
1300
1452
|
/**
|
|
1301
1453
|
* Remove Workspace
|
|
1302
1454
|
*/
|
|
1303
|
-
export declare function removeWorkspaceV1QuickCommandsSlugWorkspacesWorkspaceIdRemoveDelete({ slug, workspaceId, authorization, xAccountId }: {
|
|
1455
|
+
export declare function removeWorkspaceV1QuickCommandsSlugWorkspacesWorkspaceIdRemoveDelete({ slug, workspaceId, authorization, xAccountId, xMemberId }: {
|
|
1304
1456
|
slug: string;
|
|
1305
1457
|
workspaceId: string;
|
|
1306
1458
|
authorization: string;
|
|
1307
1459
|
xAccountId?: string | null;
|
|
1460
|
+
xMemberId?: string | null;
|
|
1308
1461
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
1309
1462
|
/**
|
|
1310
1463
|
* Create Execution
|
|
1311
1464
|
*/
|
|
1312
|
-
export declare function createExecutionV1QuickCommandsCreateExecutionSlugPost({ slug, conversationId, authorization, xAccountId, quickCommandCreateRequest }: {
|
|
1465
|
+
export declare function createExecutionV1QuickCommandsCreateExecutionSlugPost({ slug, conversationId, authorization, xAccountId, xMemberId, quickCommandCreateRequest }: {
|
|
1313
1466
|
slug: string;
|
|
1314
1467
|
conversationId?: string | null;
|
|
1315
1468
|
authorization: string;
|
|
1316
1469
|
xAccountId?: string | null;
|
|
1470
|
+
xMemberId?: string | null;
|
|
1317
1471
|
quickCommandCreateRequest?: QuickCommandCreateRequest;
|
|
1318
1472
|
}, opts?: Oazapfts.RequestOpts): Promise<any>;
|
|
1473
|
+
/**
|
|
1474
|
+
* Triggers asynchronous execution of a Remote Quick Command
|
|
1475
|
+
*/
|
|
1476
|
+
export declare function executeV1QuickCommandsExecuteExecutionIdPost({ executionId, authorization, xAccountId, xMemberId, quickCommandExecutionRequest }: {
|
|
1477
|
+
executionId: string;
|
|
1478
|
+
authorization: string;
|
|
1479
|
+
xAccountId?: string | null;
|
|
1480
|
+
xMemberId?: string | null;
|
|
1481
|
+
quickCommandExecutionRequest?: QuickCommandExecutionRequest;
|
|
1482
|
+
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
1319
1483
|
/**
|
|
1320
1484
|
* Callback
|
|
1321
1485
|
*/
|
|
1322
|
-
export declare function callbackV1QuickCommandsCallbackExecutionIdGet({ executionId, authorization, xAccountId }: {
|
|
1486
|
+
export declare function callbackV1QuickCommandsCallbackExecutionIdGet({ executionId, authorization, xAccountId, xMemberId }: {
|
|
1323
1487
|
executionId: string;
|
|
1324
1488
|
authorization: string;
|
|
1325
1489
|
xAccountId?: string | null;
|
|
1490
|
+
xMemberId?: string | null;
|
|
1326
1491
|
}, opts?: Oazapfts.RequestOpts): Promise<QuickCommandExecutionResponse>;
|
|
1327
1492
|
/**
|
|
1328
1493
|
* Run Fetch Step
|
|
1329
1494
|
*/
|
|
1330
|
-
export declare function runFetchStepV1QuickCommandsSlugStepsStepSlugFetchRunPost({ slug, stepSlug, authorization, xAccountId, quickCommandsExecutionRequest }: {
|
|
1495
|
+
export declare function runFetchStepV1QuickCommandsSlugStepsStepSlugFetchRunPost({ slug, stepSlug, authorization, xAccountId, xMemberId, quickCommandsExecutionRequest }: {
|
|
1331
1496
|
slug: string;
|
|
1332
1497
|
stepSlug: string;
|
|
1333
1498
|
authorization: string;
|
|
1334
1499
|
xAccountId?: string | null;
|
|
1500
|
+
xMemberId?: string | null;
|
|
1335
1501
|
quickCommandsExecutionRequest: QuickCommandsExecutionRequest;
|
|
1336
|
-
}, opts?: Oazapfts.RequestOpts): Promise<
|
|
1502
|
+
}, opts?: Oazapfts.RequestOpts): Promise<QuickCommandStepFetchResponse>;
|
|
1337
1503
|
/**
|
|
1338
1504
|
* List Conversations
|
|
1339
1505
|
*/
|
|
1340
|
-
export declare function listConversationsV1ConversationsGet({ size, page, authorization, xAccountId }: {
|
|
1506
|
+
export declare function listConversationsV1ConversationsGet({ size, page, authorization, xAccountId, xMemberId }: {
|
|
1341
1507
|
size?: number;
|
|
1342
1508
|
page?: number;
|
|
1343
1509
|
authorization: string;
|
|
1344
1510
|
xAccountId?: string | null;
|
|
1511
|
+
xMemberId?: string | null;
|
|
1345
1512
|
}, opts?: Oazapfts.RequestOpts): Promise<ConversationResponse[]>;
|
|
1346
1513
|
/**
|
|
1347
1514
|
* Conversation History
|
|
1348
1515
|
*/
|
|
1349
|
-
export declare function conversationHistoryV1ConversationsConversationIdGet({ conversationId, authorization, xAccountId }: {
|
|
1516
|
+
export declare function conversationHistoryV1ConversationsConversationIdGet({ conversationId, authorization, xAccountId, xMemberId }: {
|
|
1350
1517
|
conversationId: string;
|
|
1351
1518
|
authorization: string;
|
|
1352
1519
|
xAccountId?: string | null;
|
|
1520
|
+
xMemberId?: string | null;
|
|
1353
1521
|
}, opts?: Oazapfts.RequestOpts): Promise<ConversationResponse>;
|
|
1354
1522
|
/**
|
|
1355
1523
|
* Update Title
|
|
1356
1524
|
*/
|
|
1357
|
-
export declare function updateTitleV1ConversationsConversationIdPatch({ conversationId, authorization, xAccountId, conversationUpdateTitleRequest }: {
|
|
1525
|
+
export declare function updateTitleV1ConversationsConversationIdPatch({ conversationId, authorization, xAccountId, xMemberId, conversationUpdateTitleRequest }: {
|
|
1358
1526
|
conversationId: string;
|
|
1359
1527
|
authorization: string;
|
|
1360
1528
|
xAccountId?: string | null;
|
|
1529
|
+
xMemberId?: string | null;
|
|
1361
1530
|
conversationUpdateTitleRequest: ConversationUpdateTitleRequest;
|
|
1362
1531
|
}, opts?: Oazapfts.RequestOpts): Promise<ConversationResponse>;
|
|
1363
1532
|
/**
|
|
1364
1533
|
* Delete Conversation
|
|
1365
1534
|
*/
|
|
1366
|
-
export declare function deleteConversationV1ConversationsConversationIdDelete({ conversationId, authorization, xAccountId }: {
|
|
1535
|
+
export declare function deleteConversationV1ConversationsConversationIdDelete({ conversationId, authorization, xAccountId, xMemberId }: {
|
|
1367
1536
|
conversationId: string;
|
|
1368
1537
|
authorization: string;
|
|
1369
1538
|
xAccountId?: string | null;
|
|
1539
|
+
xMemberId?: string | null;
|
|
1370
1540
|
}, opts?: Oazapfts.RequestOpts): Promise<unknown>;
|
|
1371
1541
|
/**
|
|
1372
1542
|
* Download Conversation
|
|
1373
1543
|
*/
|
|
1374
|
-
export declare function downloadConversationV1ConversationsConversationIdDownloadGet({ conversationId, authorization, xAccountId }: {
|
|
1544
|
+
export declare function downloadConversationV1ConversationsConversationIdDownloadGet({ conversationId, authorization, xAccountId, xMemberId }: {
|
|
1375
1545
|
conversationId: string;
|
|
1376
1546
|
authorization: string;
|
|
1377
1547
|
xAccountId?: string | null;
|
|
1548
|
+
xMemberId?: string | null;
|
|
1378
1549
|
}, opts?: Oazapfts.RequestOpts): Promise<any>;
|
|
1379
1550
|
/**
|
|
1380
1551
|
* Create Knowledge Source
|
|
@@ -1401,10 +1572,11 @@ export declare function uploadKnowledgeObjectsZipV1DefaultKnowledgeSourcesSlugOb
|
|
|
1401
1572
|
/**
|
|
1402
1573
|
* Find Knowledge Source Dependencies
|
|
1403
1574
|
*/
|
|
1404
|
-
export declare function findKnowledgeSourceDependenciesV1KnowledgeSourcesSlugDependenciesGet({ slug, authorization, xAccountId }: {
|
|
1575
|
+
export declare function findKnowledgeSourceDependenciesV1KnowledgeSourcesSlugDependenciesGet({ slug, authorization, xAccountId, xMemberId }: {
|
|
1405
1576
|
slug: string;
|
|
1406
1577
|
authorization: string;
|
|
1407
1578
|
xAccountId?: string | null;
|
|
1579
|
+
xMemberId?: string | null;
|
|
1408
1580
|
}, opts?: Oazapfts.RequestOpts): Promise<KnowledgeSourceDependenciesResponse>;
|
|
1409
1581
|
/**
|
|
1410
1582
|
* Get Flags
|
|
@@ -1413,11 +1585,12 @@ export declare function getFlagsV1FlagsGet(opts?: Oazapfts.RequestOpts): Promise
|
|
|
1413
1585
|
/**
|
|
1414
1586
|
* Get Content Dependencies
|
|
1415
1587
|
*/
|
|
1416
|
-
export declare function getContentDependenciesV1ContentContentTypeContentIdDependenciesGet({ contentType, contentId, authorization, xAccountId }: {
|
|
1588
|
+
export declare function getContentDependenciesV1ContentContentTypeContentIdDependenciesGet({ contentType, contentId, authorization, xAccountId, xMemberId }: {
|
|
1417
1589
|
contentType: ContentDependencyType;
|
|
1418
1590
|
contentId: string;
|
|
1419
1591
|
authorization: string;
|
|
1420
1592
|
xAccountId?: string | null;
|
|
1593
|
+
xMemberId?: string | null;
|
|
1421
1594
|
}, opts?: Oazapfts.RequestOpts): Promise<DependencyResponse>;
|
|
1422
1595
|
/**
|
|
1423
1596
|
* Dev Assistant V2
|
|
@@ -1428,29 +1601,32 @@ export declare function devAssistantV2V2ChatPost({ accept }: {
|
|
|
1428
1601
|
/**
|
|
1429
1602
|
* Quick Commands Run V2
|
|
1430
1603
|
*/
|
|
1431
|
-
export declare function quickCommandsRunV2V2QuickCommandsSlugStepsStepSlugRunPost({ slug, stepSlug, authorization, xAccountId, quickCommandsExecutionRequest }: {
|
|
1604
|
+
export declare function quickCommandsRunV2V2QuickCommandsSlugStepsStepSlugRunPost({ slug, stepSlug, authorization, xAccountId, xMemberId, quickCommandsExecutionRequest }: {
|
|
1432
1605
|
slug: string;
|
|
1433
1606
|
stepSlug: string;
|
|
1434
1607
|
authorization: string;
|
|
1435
1608
|
xAccountId?: string | null;
|
|
1609
|
+
xMemberId?: string | null;
|
|
1436
1610
|
quickCommandsExecutionRequest: QuickCommandsExecutionRequest;
|
|
1437
1611
|
}, opts?: Oazapfts.RequestOpts): Promise<string | QuickCommandPromptResponse2>;
|
|
1438
1612
|
/**
|
|
1439
1613
|
* List All
|
|
1440
1614
|
*/
|
|
1441
|
-
export declare function listAllV2QuickCommandsAllGet({ visibility, order, types, authorization, xAccountId }: {
|
|
1615
|
+
export declare function listAllV2QuickCommandsAllGet({ visibility, order, types, authorization, xAccountId, xMemberId }: {
|
|
1442
1616
|
visibility?: VisibilityLevelEnum | null;
|
|
1443
1617
|
order?: OrderEnum;
|
|
1444
1618
|
types?: QuickCommandTypeRequest[] | null;
|
|
1445
1619
|
authorization: string;
|
|
1446
1620
|
xAccountId?: string | null;
|
|
1621
|
+
xMemberId?: string | null;
|
|
1447
1622
|
}, opts?: Oazapfts.RequestOpts): Promise<QuickCommandListResponse[]>;
|
|
1448
1623
|
/**
|
|
1449
1624
|
* Dev Assistant V3
|
|
1450
1625
|
*/
|
|
1451
|
-
export declare function devAssistantV3V3ChatPost({ authorization, xAccountId, chatRequest }: {
|
|
1626
|
+
export declare function devAssistantV3V3ChatPost({ authorization, xAccountId, xMemberId, chatRequest }: {
|
|
1452
1627
|
authorization: string;
|
|
1453
1628
|
xAccountId?: string | null;
|
|
1629
|
+
xMemberId?: string | null;
|
|
1454
1630
|
chatRequest: ChatRequest;
|
|
1455
1631
|
}, opts?: Oazapfts.RequestOpts): Promise<string | ChatResponse3>;
|
|
1456
1632
|
//# sourceMappingURL=ai.d.ts.map
|