@stack-spot/portal-network 0.198.4 → 0.199.0-beta.1

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.
Files changed (67) hide show
  1. package/CHANGELOG.md +124 -0
  2. package/dist/api/agent-tools.d.ts +150 -148
  3. package/dist/api/agent-tools.d.ts.map +1 -1
  4. package/dist/api/agent-tools.js +41 -4
  5. package/dist/api/agent-tools.js.map +1 -1
  6. package/dist/api/ai.d.ts +288 -19
  7. package/dist/api/ai.d.ts.map +1 -1
  8. package/dist/api/ai.js +196 -11
  9. package/dist/api/ai.js.map +1 -1
  10. package/dist/api/cloudPlatformHorizon.d.ts +178 -9
  11. package/dist/api/cloudPlatformHorizon.d.ts.map +1 -1
  12. package/dist/api/cloudPlatformHorizon.js +69 -1
  13. package/dist/api/cloudPlatformHorizon.js.map +1 -1
  14. package/dist/api/codeShift.d.ts +316 -32
  15. package/dist/api/codeShift.d.ts.map +1 -1
  16. package/dist/api/codeShift.js +172 -8
  17. package/dist/api/codeShift.js.map +1 -1
  18. package/dist/api/dataIntegration.d.ts +291 -1
  19. package/dist/api/dataIntegration.d.ts.map +1 -1
  20. package/dist/api/dataIntegration.js +254 -0
  21. package/dist/api/dataIntegration.js.map +1 -1
  22. package/dist/api/discover.d.ts +72 -0
  23. package/dist/api/discover.d.ts.map +1 -1
  24. package/dist/api/discover.js +68 -2
  25. package/dist/api/discover.js.map +1 -1
  26. package/dist/client/agent-tools.d.ts +35 -2
  27. package/dist/client/agent-tools.d.ts.map +1 -1
  28. package/dist/client/agent-tools.js +25 -3
  29. package/dist/client/agent-tools.js.map +1 -1
  30. package/dist/client/ai.d.ts +137 -2
  31. package/dist/client/ai.d.ts.map +1 -1
  32. package/dist/client/ai.js +102 -2
  33. package/dist/client/ai.js.map +1 -1
  34. package/dist/client/cloud-platform-horizon.d.ts +19 -0
  35. package/dist/client/cloud-platform-horizon.d.ts.map +1 -1
  36. package/dist/client/cloud-platform-horizon.js +19 -1
  37. package/dist/client/cloud-platform-horizon.js.map +1 -1
  38. package/dist/client/code-shift.d.ts +118 -4
  39. package/dist/client/code-shift.d.ts.map +1 -1
  40. package/dist/client/code-shift.js +100 -1
  41. package/dist/client/code-shift.js.map +1 -1
  42. package/dist/client/data-integration.d.ts +30 -0
  43. package/dist/client/data-integration.d.ts.map +1 -1
  44. package/dist/client/data-integration.js +22 -2
  45. package/dist/client/data-integration.js.map +1 -1
  46. package/dist/client/discover.d.ts +14 -0
  47. package/dist/client/discover.d.ts.map +1 -1
  48. package/dist/client/discover.js +28 -1
  49. package/dist/client/discover.js.map +1 -1
  50. package/dist/client/secrets.d.ts.map +1 -1
  51. package/dist/client/secrets.js +1 -1
  52. package/dist/client/secrets.js.map +1 -1
  53. package/dist/client/workspace-ai.d.ts +5 -5
  54. package/package.json +2 -2
  55. package/src/api/agent-tools.ts +199 -152
  56. package/src/api/ai.ts +521 -24
  57. package/src/api/cloudPlatformHorizon.ts +412 -9
  58. package/src/api/codeShift.ts +631 -37
  59. package/src/api/dataIntegration.ts +635 -1
  60. package/src/api/discover.ts +145 -2
  61. package/src/client/agent-tools.ts +16 -3
  62. package/src/client/ai.ts +81 -10
  63. package/src/client/cloud-platform-horizon.ts +12 -4
  64. package/src/client/code-shift.ts +64 -1
  65. package/src/client/data-integration.ts +15 -1
  66. package/src/client/discover.ts +14 -1
  67. package/src/client/secrets.ts +1 -1
package/dist/api/ai.d.ts CHANGED
@@ -411,6 +411,12 @@ export type QuickCommandsStepRouterRequest = {
411
411
  routes: RouterStepRoute[];
412
412
  max_executions: number;
413
413
  };
414
+ export type QuickCommandsStepScriptRequest = {
415
+ slug: string;
416
+ script: string;
417
+ use_uploaded_files: boolean;
418
+ next_step_slug?: string | null;
419
+ };
414
420
  export type CustomInputRequest = {
415
421
  slug: string;
416
422
  question: string;
@@ -422,7 +428,7 @@ export type QuickCommandsCreateRequest = {
422
428
  "type"?: QuickCommandTypeRequest;
423
429
  description: string;
424
430
  final_result: string;
425
- steps: (QuickCommandsStepFetchRequest | QuickCommandsStepPromptRequest | QuickCommandsStepRouterRequest)[];
431
+ steps: (QuickCommandsStepFetchRequest | QuickCommandsStepPromptRequest | QuickCommandsStepRouterRequest | QuickCommandsStepScriptRequest)[];
426
432
  return_type?: QuickCommandsReturnType | null;
427
433
  preserve_conversation?: boolean;
428
434
  custom_inputs?: CustomInputRequest[] | null;
@@ -434,7 +440,7 @@ export type QuickCommandsCreateRequest = {
434
440
  export type QuickCommandsUpdateRequest = {
435
441
  name?: string | null;
436
442
  description?: string | null;
437
- steps?: (QuickCommandsStepFetchRequest | QuickCommandsStepPromptRequest | QuickCommandsStepRouterRequest)[] | null;
443
+ steps?: (QuickCommandsStepFetchRequest | QuickCommandsStepPromptRequest | QuickCommandsStepRouterRequest | QuickCommandsStepScriptRequest)[] | null;
438
444
  return_type?: QuickCommandsReturnType | null;
439
445
  knowledge_source_slugs?: string[] | null;
440
446
  final_result?: string | null;
@@ -447,7 +453,7 @@ export type QuickCommandsUpdateRequest = {
447
453
  use_only?: boolean | null;
448
454
  use_uploaded_files?: boolean | null;
449
455
  };
450
- export type QuickCommandStepType = "LLM" | "FETCH" | "ROUTER";
456
+ export type QuickCommandStepType = "LLM" | "FETCH" | "ROUTER" | "SCRIPT";
451
457
  export type Method2 = "GET" | "POST" | "PUT" | "PATCH" | "DELETE";
452
458
  export type QuickCommandStepFetchResponse = {
453
459
  slug: string;
@@ -530,6 +536,12 @@ export type QuickCommandsStepRouterResponse = {
530
536
  routes: RouterStepRoute2[];
531
537
  max_executions: number;
532
538
  };
539
+ export type QuickCommandsStepScriptResponse = {
540
+ slug: string;
541
+ "type": QuickCommandStepType;
542
+ script: string;
543
+ use_uploaded_files: boolean;
544
+ };
533
545
  export type CustomInputResponse = {
534
546
  slug: string;
535
547
  question: string;
@@ -543,7 +555,7 @@ export type QuickCommandResponse = {
543
555
  studio_id?: string | null;
544
556
  return_type?: QuickCommandsReturnType | null;
545
557
  final_result?: string | null;
546
- steps?: (QuickCommandStepFetchResponse | QuickCommandStepLlmResponse | QuickCommandsStepRouterResponse)[] | null;
558
+ steps?: (QuickCommandStepFetchResponse | QuickCommandStepLlmResponse | QuickCommandsStepRouterResponse | QuickCommandsStepScriptResponse)[] | null;
547
559
  flow?: {
548
560
  [key: string]: any;
549
561
  } | null;
@@ -566,7 +578,7 @@ export type QuickCommandsMakeACopyRequest = {
566
578
  };
567
579
  export type QuickCommandAnswerStatusResponse = {
568
580
  success: boolean;
569
- next_step_slug: string;
581
+ next_step_slug?: string | null;
570
582
  failure_message?: string | null;
571
583
  input_tokens?: number | null;
572
584
  output_tokens?: number | null;
@@ -583,6 +595,16 @@ export type QuickCommandFetchResponseResult = {
583
595
  data?: string | null;
584
596
  status: number;
585
597
  };
598
+ export type QuickCommandStepScriptStatus = "queued" | "running" | "success" | "failure";
599
+ export type QuickCommandScriptExecutionResponse = {
600
+ status: QuickCommandStepScriptStatus;
601
+ duration?: number | null;
602
+ result?: {
603
+ [key: string]: any;
604
+ } | null;
605
+ logs?: string | null;
606
+ };
607
+ export type QuickCommandStepResult = QuickCommandPromptResponse | QuickCommandFetchResponseResult | QuickCommandScriptExecutionResponse;
586
608
  export type QuickCommandsExecutionRequest = {
587
609
  context?: {
588
610
  [key: string]: any;
@@ -591,7 +613,7 @@ export type QuickCommandsExecutionRequest = {
591
613
  code_selection?: string | null;
592
614
  input_data?: string | null;
593
615
  slugs_executions?: {
594
- [key: string]: string | QuickCommandPromptResponse | QuickCommandFetchResponseResult;
616
+ [key: string]: string | QuickCommandStepResult;
595
617
  } | null;
596
618
  qc_execution_id?: string | null;
597
619
  };
@@ -605,7 +627,7 @@ export type QuickCommandEvaluateStepRouterRequest = {
605
627
  } | null;
606
628
  selected_code?: string | null;
607
629
  slugs_executions: {
608
- [key: string]: QuickCommandPromptResponse | QuickCommandFetchResponseResult;
630
+ [key: string]: QuickCommandStepResult;
609
631
  } | null;
610
632
  };
611
633
  export type QuickCommandEvaluateStepRouterResponse = {
@@ -652,6 +674,7 @@ export type AnswerStatus = {
652
674
  failure_message?: string | null;
653
675
  input_tokens?: number | null;
654
676
  output_tokens?: number | null;
677
+ attempt?: number | null;
655
678
  };
656
679
  export type StepLlm = {
657
680
  duration?: number | null;
@@ -671,7 +694,7 @@ export type Step = {
671
694
  execution_order: number;
672
695
  "type": QuickCommandStepType;
673
696
  step_result: StepFetch | StepLlm | StepRouter | null;
674
- status: string;
697
+ status?: string;
675
698
  };
676
699
  export type QuickCommandExecutionResponse = {
677
700
  execution_id: string;
@@ -682,6 +705,21 @@ export type QuickCommandExecutionResponse = {
682
705
  steps?: Step[] | null;
683
706
  result?: string | null;
684
707
  };
708
+ export type QuickCommandStartScriptRequest = {
709
+ context?: {
710
+ [key: string]: any;
711
+ } | null;
712
+ input_data?: string | {
713
+ [key: string]: any;
714
+ } | null;
715
+ selected_code?: string | null;
716
+ slugs_executions: {
717
+ [key: string]: QuickCommandStepResult;
718
+ } | null;
719
+ };
720
+ export type QuickCommandStartScriptResponse = {
721
+ script_execution_id: string;
722
+ };
685
723
  export type ConversationHistoryAgentEnum = "AI" | "USER";
686
724
  export type ConversationHistoryResponse = {
687
725
  message_id: string;
@@ -692,6 +730,9 @@ export type ConversationHistoryResponse = {
692
730
  [key: string]: any;
693
731
  } | null;
694
732
  updated: string;
733
+ agent_info?: {
734
+ [key: string]: any;
735
+ } | null;
695
736
  };
696
737
  export type ConversationResponse = {
697
738
  id: string;
@@ -730,6 +771,70 @@ export type DependencyResponse = {
730
771
  delete_contents?: ContentDependencyResponse[] | null;
731
772
  missing_list?: ContentDependencyResponse[] | null;
732
773
  };
774
+ export type TokenTypeEnum = "prompt" | "embedding";
775
+ export type AnalyticsTokensDailyUsageResponseSeriesItem = {
776
+ day: number;
777
+ date: string;
778
+ total_tokens: number;
779
+ };
780
+ export type AnalyticsTokensDailyUsageResponse = {
781
+ year: number;
782
+ month: number;
783
+ series: AnalyticsTokensDailyUsageResponseSeriesItem[];
784
+ consumed_tokens: number;
785
+ consumed_tokens_over_last_month?: number | null;
786
+ purchased_token_limit?: number | null;
787
+ purchased_token_limit_over_last_month?: number | null;
788
+ available_tokens?: number | null;
789
+ available_tokens_over_last_month?: number | null;
790
+ limit_consumed?: number | null;
791
+ limit_consumed_over_last_month?: number | null;
792
+ };
793
+ export type AnalyticsTokensRankingUsersResponse = {
794
+ email: string;
795
+ rank: number;
796
+ total_tokens: number;
797
+ total_share: number;
798
+ overage_tokens: number;
799
+ overage_percentage: number;
800
+ };
801
+ export type AnalyticsTokensRankingUsersResponsePaginated = {
802
+ total_pages: number;
803
+ items: AnalyticsTokensRankingUsersResponse[];
804
+ };
805
+ export type SortDirection = "ASC" | "DESC";
806
+ export type ReviewAnswers = {
807
+ id: string;
808
+ memberId: string;
809
+ comment: string;
810
+ createdAt: string;
811
+ updatedAt?: string | null;
812
+ };
813
+ export type Review = {
814
+ id: string;
815
+ memberId: string;
816
+ rating: number;
817
+ comment: string;
818
+ resourceType: string;
819
+ resourceSlug: string;
820
+ createdAt: string;
821
+ updatedAt?: string | null;
822
+ reviewAnswers?: ReviewAnswers[];
823
+ };
824
+ export type ResourceReviewResponse = {
825
+ items: Review[];
826
+ totalElements: number;
827
+ page: number;
828
+ size: number;
829
+ totalPages: number;
830
+ };
831
+ export type ResourceReviewRequest = {
832
+ rating: number;
833
+ comment?: string | null;
834
+ };
835
+ export type ReviewAnswer = {
836
+ answer: string;
837
+ };
733
838
  export type SourceProjectFile2 = {
734
839
  "type": "project_file";
735
840
  path: string;
@@ -761,6 +866,25 @@ export type ChatResponse3 = {
761
866
  sources: (SourceStackAi | SourceKnowledgeSource | SourceProjectFile3)[];
762
867
  message_id: string | null;
763
868
  };
869
+ export type QuickCommandListResponseV3 = {
870
+ slug: string;
871
+ name: string;
872
+ "type": QuickCommandTypeRequest;
873
+ description: string;
874
+ studio_id?: string | null;
875
+ preserve_conversation: boolean;
876
+ use_selected_code: boolean;
877
+ return_type?: QuickCommandsReturnType | null;
878
+ creator: string | null;
879
+ visibility_level: string;
880
+ use_only: boolean;
881
+ share_context_between_steps?: boolean;
882
+ id: string;
883
+ };
884
+ export type PaginatedResponseQuickCommandListResponseV3 = {
885
+ total_pages: number;
886
+ items: QuickCommandListResponseV3[];
887
+ };
764
888
  /**
765
889
  * Metrics
766
890
  */
@@ -1225,11 +1349,16 @@ export declare function changeExternalConfigsV1AccountsExternalConfigPatch({ bod
1225
1349
  /**
1226
1350
  * Tokens Usage
1227
1351
  */
1228
- export declare function tokensUsageV1AccountsTokensUsageGet(opts?: Oazapfts.RequestOpts): Promise<AccountTokenUsage>;
1352
+ export declare function tokensUsageV1AccountsTokensUsageGet({ authorization, xAccountId, xMemberId, xUsername }: {
1353
+ authorization: string;
1354
+ xAccountId?: string | null;
1355
+ xMemberId?: string | null;
1356
+ xUsername?: string | null;
1357
+ }, opts?: Oazapfts.RequestOpts): Promise<AccountTokenUsage>;
1229
1358
  /**
1230
- * Current
1359
+ * Total
1231
1360
  */
1232
- export declare function currentV1TokensUsageTotalGet({ authorization, xAccountId, xMemberId, xUsername }: {
1361
+ export declare function totalV1TokensUsageTotalGet({ authorization, xAccountId, xMemberId, xUsername }: {
1233
1362
  authorization: string;
1234
1363
  xAccountId?: string | null;
1235
1364
  xMemberId?: string | null;
@@ -1239,8 +1368,8 @@ export declare function currentV1TokensUsageTotalGet({ authorization, xAccountId
1239
1368
  * Current
1240
1369
  */
1241
1370
  export declare function currentV1TokensUsageCurrentGet({ year, month, authorization, xAccountId, xMemberId, xUsername }: {
1242
- year: number;
1243
- month: number;
1371
+ year?: number | null;
1372
+ month?: number | null;
1244
1373
  authorization: string;
1245
1374
  xAccountId?: string | null;
1246
1375
  xMemberId?: string | null;
@@ -1436,9 +1565,9 @@ export declare function forkV1QuickCommandsSlugForkPost({ slug, authorization, x
1436
1565
  quickCommandsMakeACopyRequest: QuickCommandsMakeACopyRequest;
1437
1566
  }, opts?: Oazapfts.RequestOpts): Promise<any>;
1438
1567
  /**
1439
- * Get Quick Command
1568
+ * Check Quick Command Exists
1440
1569
  */
1441
- export declare function getQuickCommandV1QuickCommandsSlugExistsGet({ slug, authorization, xAccountId, xMemberId, xUsername }: {
1570
+ export declare function checkQuickCommandExistsV1QuickCommandsSlugExistsGet({ slug, authorization, xAccountId, xMemberId, xUsername }: {
1442
1571
  slug: string;
1443
1572
  authorization: string;
1444
1573
  xAccountId?: string | null;
@@ -1587,6 +1716,28 @@ export declare function runFetchStepV1QuickCommandsSlugStepsStepSlugFetchRunPost
1587
1716
  xUsername?: string | null;
1588
1717
  quickCommandsExecutionRequest: QuickCommandsExecutionRequest;
1589
1718
  }, opts?: Oazapfts.RequestOpts): Promise<QuickCommandStepFetchResponse>;
1719
+ /**
1720
+ * Starts the execution of a step with a user defined script
1721
+ */
1722
+ export declare function startScriptStepV1QuickCommandsSlugStepsStepSlugStartScriptPost({ slug, stepSlug, authorization, xAccountId, xMemberId, xUsername, quickCommandStartScriptRequest }: {
1723
+ slug: string;
1724
+ stepSlug: string;
1725
+ authorization: string;
1726
+ xAccountId?: string | null;
1727
+ xMemberId?: string | null;
1728
+ xUsername?: string | null;
1729
+ quickCommandStartScriptRequest: QuickCommandStartScriptRequest;
1730
+ }, opts?: Oazapfts.RequestOpts): Promise<QuickCommandStartScriptResponse>;
1731
+ /**
1732
+ * Get the status of a script execution step
1733
+ */
1734
+ export declare function getScriptExecutionStatusV1QuickCommandsScriptExecutionsScriptExecutionIdGet({ scriptExecutionId, authorization, xAccountId, xMemberId, xUsername }: {
1735
+ scriptExecutionId: string;
1736
+ authorization: string;
1737
+ xAccountId?: string | null;
1738
+ xMemberId?: string | null;
1739
+ xUsername?: string | null;
1740
+ }, opts?: Oazapfts.RequestOpts): Promise<QuickCommandScriptExecutionResponse>;
1590
1741
  /**
1591
1742
  * List Conversations
1592
1743
  */
@@ -1689,19 +1840,120 @@ export declare function getContentDependenciesV1ContentContentTypeContentIdDepen
1689
1840
  /**
1690
1841
  * Tokens Daily Usage
1691
1842
  */
1692
- export declare function tokensDailyUsageV1AnalyticsTokensDailyUsageGet({ month, year, accountSlug }: {
1843
+ export declare function tokensDailyUsageV1AnalyticsTokensDailyUsageGet({ month, year, tokenType, authorization, xAccountId, xMemberId, xUsername }: {
1693
1844
  month: number;
1694
1845
  year: number;
1695
- accountSlug?: string;
1696
- }, opts?: Oazapfts.RequestOpts): Promise<any>;
1846
+ tokenType: TokenTypeEnum;
1847
+ authorization: string;
1848
+ xAccountId?: string | null;
1849
+ xMemberId?: string | null;
1850
+ xUsername?: string | null;
1851
+ }, opts?: Oazapfts.RequestOpts): Promise<AnalyticsTokensDailyUsageResponse>;
1697
1852
  /**
1698
1853
  * Tokens By User
1699
1854
  */
1700
- export declare function tokensByUserV1AnalyticsTokensByUserGet({ month, year, page, pageSize }: {
1855
+ export declare function tokensByUserV1AnalyticsTokensByUserGet({ month, year, tokenType, page, pageSize, authorization, xAccountId, xMemberId, xUsername }: {
1701
1856
  month: number;
1702
1857
  year: number;
1858
+ tokenType: TokenTypeEnum;
1703
1859
  page?: number;
1704
1860
  pageSize?: number;
1861
+ authorization: string;
1862
+ xAccountId?: string | null;
1863
+ xMemberId?: string | null;
1864
+ xUsername?: string | null;
1865
+ }, opts?: Oazapfts.RequestOpts): Promise<AnalyticsTokensRankingUsersResponsePaginated>;
1866
+ /**
1867
+ * Get Reviews By Resource
1868
+ */
1869
+ export declare function getReviewsByResourceV1ResourcesResourceTypeSlugResourceSlugReviewsGet({ resourceSlug, resourceTypeSlug, size, page, sort, direction, authorization, xAccountId, xMemberId, xUsername }: {
1870
+ resourceSlug: string;
1871
+ resourceTypeSlug: string;
1872
+ size?: number | null;
1873
+ page?: number | null;
1874
+ sort?: string | null;
1875
+ direction?: SortDirection | null;
1876
+ authorization: string;
1877
+ xAccountId?: string | null;
1878
+ xMemberId?: string | null;
1879
+ xUsername?: string | null;
1880
+ }, opts?: Oazapfts.RequestOpts): Promise<ResourceReviewResponse>;
1881
+ /**
1882
+ * Create Resource Review
1883
+ */
1884
+ export declare function createResourceReviewV1ResourcesResourceTypeSlugResourceSlugReviewsPost({ resourceSlug, resourceTypeSlug, authorization, xAccountId, xMemberId, xUsername, resourceReviewRequest }: {
1885
+ resourceSlug: string;
1886
+ resourceTypeSlug: string;
1887
+ authorization: string;
1888
+ xAccountId?: string | null;
1889
+ xMemberId?: string | null;
1890
+ xUsername?: string | null;
1891
+ resourceReviewRequest: ResourceReviewRequest;
1892
+ }, opts?: Oazapfts.RequestOpts): Promise<any>;
1893
+ /**
1894
+ * Create Answer For Review
1895
+ */
1896
+ export declare function createAnswerForReviewV1ResourcesResourceTypeSlugResourceSlugReviewsReviewIdAnswersPost({ resourceSlug, resourceTypeSlug, reviewId, authorization, xAccountId, xMemberId, xUsername, reviewAnswer }: {
1897
+ resourceSlug: string;
1898
+ resourceTypeSlug: string;
1899
+ reviewId: string;
1900
+ authorization: string;
1901
+ xAccountId?: string | null;
1902
+ xMemberId?: string | null;
1903
+ xUsername?: string | null;
1904
+ reviewAnswer: ReviewAnswer;
1905
+ }, opts?: Oazapfts.RequestOpts): Promise<any>;
1906
+ /**
1907
+ * Update Resource Review
1908
+ */
1909
+ export declare function updateResourceReviewV1ResourcesResourceTypeSlugResourceSlugReviewsReviewIdPatch({ resourceSlug, resourceTypeSlug, reviewId, authorization, xAccountId, xMemberId, xUsername, resourceReviewRequest }: {
1910
+ resourceSlug: string;
1911
+ resourceTypeSlug: string;
1912
+ reviewId: string;
1913
+ authorization: string;
1914
+ xAccountId?: string | null;
1915
+ xMemberId?: string | null;
1916
+ xUsername?: string | null;
1917
+ resourceReviewRequest: ResourceReviewRequest;
1918
+ }, opts?: Oazapfts.RequestOpts): Promise<any>;
1919
+ /**
1920
+ * Delete Resource Review
1921
+ */
1922
+ export declare function deleteResourceReviewV1ResourcesResourceTypeSlugResourceSlugReviewsReviewIdDelete({ resourceSlug, resourceTypeSlug, reviewId, authorization, xAccountId, xMemberId, xUsername }: {
1923
+ resourceSlug: string;
1924
+ resourceTypeSlug: string;
1925
+ reviewId: string;
1926
+ authorization: string;
1927
+ xAccountId?: string | null;
1928
+ xMemberId?: string | null;
1929
+ xUsername?: string | null;
1930
+ }, opts?: Oazapfts.RequestOpts): Promise<any>;
1931
+ /**
1932
+ * Update Review Comment
1933
+ */
1934
+ export declare function updateReviewCommentV1ResourcesResourceTypeSlugResourceSlugReviewsReviewIdAnswersAnswerIdPatch({ resourceSlug, resourceTypeSlug, reviewId, answerId, authorization, xAccountId, xMemberId, xUsername, reviewAnswer }: {
1935
+ resourceSlug: string;
1936
+ resourceTypeSlug: string;
1937
+ reviewId: string;
1938
+ answerId: string;
1939
+ authorization: string;
1940
+ xAccountId?: string | null;
1941
+ xMemberId?: string | null;
1942
+ xUsername?: string | null;
1943
+ reviewAnswer: ReviewAnswer;
1944
+ }, opts?: Oazapfts.RequestOpts): Promise<any>;
1945
+ /**
1946
+ * Delete Review Comment
1947
+ */
1948
+ export declare function deleteReviewCommentV1ResourcesResourceTypeSlugResourceSlugReviewsReviewIdAnswersAnswerIdDelete({ resourceSlug, resourceTypeSlug, reviewId, answerId, authorization, xAccountId, xMemberId, xUsername }: {
1949
+ resourceSlug: string;
1950
+ resourceTypeSlug: string;
1951
+ reviewId: string;
1952
+ answerId: string;
1953
+ authorization: string;
1954
+ xAccountId?: string | null;
1955
+ xMemberId?: string | null;
1956
+ xUsername?: string | null;
1705
1957
  }, opts?: Oazapfts.RequestOpts): Promise<any>;
1706
1958
  /**
1707
1959
  * Dev Assistant V2
@@ -1743,4 +1995,21 @@ export declare function devAssistantV3V3ChatPost({ authorization, xAccountId, xM
1743
1995
  xUsername?: string | null;
1744
1996
  chatRequest: ChatRequest;
1745
1997
  }, opts?: Oazapfts.RequestOpts): Promise<string | ChatResponse3>;
1998
+ /**
1999
+ * List All
2000
+ */
2001
+ export declare function listAllV3QuickCommandsGet({ name, slug, size, page, visibilityList, order, isRemote, types, authorization, xAccountId, xMemberId, xUsername }: {
2002
+ name?: string | null;
2003
+ slug?: string | null;
2004
+ size?: number;
2005
+ page?: number;
2006
+ visibilityList?: VisibilityLevelEnum[] | null;
2007
+ order?: OrderEnum | null;
2008
+ isRemote?: boolean;
2009
+ types?: QuickCommandTypeRequest[] | null;
2010
+ authorization: string;
2011
+ xAccountId?: string | null;
2012
+ xMemberId?: string | null;
2013
+ xUsername?: string | null;
2014
+ }, opts?: Oazapfts.RequestOpts): Promise<PaginatedResponseQuickCommandListResponseV3>;
1746
2015
  //# sourceMappingURL=ai.d.ts.map