@domu-ai/kiban-sdk 1.175.0 → 1.177.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.
@@ -590,30 +590,6 @@ export type DashboardSchedulerCreatePost500 = {
590
590
  code?: string;
591
591
  details?: unknown | null;
592
592
  };
593
- export type DashboardClientFeaturesGet200Data = {
594
- observabilityEnabled: boolean;
595
- agentsEnabled: boolean;
596
- qaEnabled: boolean;
597
- promptViewingEnabled: boolean;
598
- };
599
- export type DashboardClientFeaturesGet200 = {
600
- data: DashboardClientFeaturesGet200Data;
601
- };
602
- export type DashboardClientFeaturesGet401 = {
603
- message: string;
604
- code?: string;
605
- details?: unknown | null;
606
- };
607
- export type DashboardClientFeaturesGet404 = {
608
- message: string;
609
- code?: string;
610
- details?: unknown | null;
611
- };
612
- export type DashboardClientFeaturesGet500 = {
613
- message: string;
614
- code?: string;
615
- details?: unknown | null;
616
- };
617
593
  export type DashboardFlagsGet200DataFlagsVoicebotStudio = {
618
594
  enabled: boolean;
619
595
  config?: unknown | null;
@@ -634,10 +610,6 @@ export type DashboardFlagsGet200DataFlagsAgentsEnabled = {
634
610
  enabled: boolean;
635
611
  config?: unknown | null;
636
612
  };
637
- export type DashboardFlagsGet200DataFlagsPrivateRecordingsEnabled = {
638
- enabled: boolean;
639
- config?: unknown | null;
640
- };
641
613
  export type DashboardFlagsGet200DataFlagsPromptViewingEnabled = {
642
614
  enabled: boolean;
643
615
  config?: unknown | null;
@@ -652,7 +624,6 @@ export type DashboardFlagsGet200DataFlags = {
652
624
  schedules: DashboardFlagsGet200DataFlagsSchedules;
653
625
  observability_enabled: DashboardFlagsGet200DataFlagsObservabilityEnabled;
654
626
  agents_enabled: DashboardFlagsGet200DataFlagsAgentsEnabled;
655
- private_recordings_enabled: DashboardFlagsGet200DataFlagsPrivateRecordingsEnabled;
656
627
  prompt_viewing_enabled: DashboardFlagsGet200DataFlagsPromptViewingEnabled;
657
628
  qa_enabled: DashboardFlagsGet200DataFlagsQaEnabled;
658
629
  };
@@ -2072,62 +2043,6 @@ export declare const useDashboardSchedulerCreatePost: <TError = DashboardSchedul
2072
2043
  }, queryClient?: QueryClient) => UseMutationResult<Awaited<ReturnType<typeof dashboardSchedulerCreatePost>>, TError, {
2073
2044
  data: DashboardSchedulerCreatePostBody;
2074
2045
  }, TContext>;
2075
- /**
2076
- * Returns feature flags for the authenticated client's organization.
2077
- * @summary Get client feature flags
2078
- */
2079
- export type dashboardClientFeaturesGetResponse200 = {
2080
- data: DashboardClientFeaturesGet200;
2081
- status: 200;
2082
- };
2083
- export type dashboardClientFeaturesGetResponse401 = {
2084
- data: DashboardClientFeaturesGet401;
2085
- status: 401;
2086
- };
2087
- export type dashboardClientFeaturesGetResponse404 = {
2088
- data: DashboardClientFeaturesGet404;
2089
- status: 404;
2090
- };
2091
- export type dashboardClientFeaturesGetResponse500 = {
2092
- data: DashboardClientFeaturesGet500;
2093
- status: 500;
2094
- };
2095
- export type dashboardClientFeaturesGetResponseSuccess = (dashboardClientFeaturesGetResponse200) & {
2096
- headers: Headers;
2097
- };
2098
- export type dashboardClientFeaturesGetResponseError = (dashboardClientFeaturesGetResponse401 | dashboardClientFeaturesGetResponse404 | dashboardClientFeaturesGetResponse500) & {
2099
- headers: Headers;
2100
- };
2101
- export type dashboardClientFeaturesGetResponse = (dashboardClientFeaturesGetResponseSuccess | dashboardClientFeaturesGetResponseError);
2102
- export declare const getDashboardClientFeaturesGetUrl: () => string;
2103
- export declare const dashboardClientFeaturesGet: (options?: RequestInit) => Promise<dashboardClientFeaturesGetResponse>;
2104
- export declare const getDashboardClientFeaturesGetQueryKey: () => readonly ["/v1/dashboard/client/features"];
2105
- export declare const getDashboardClientFeaturesGetQueryOptions: <TData = Awaited<ReturnType<typeof dashboardClientFeaturesGet>>, TError = DashboardClientFeaturesGet401 | DashboardClientFeaturesGet404 | DashboardClientFeaturesGet500>(options?: {
2106
- query?: Partial<UseQueryOptions<Awaited<ReturnType<typeof dashboardClientFeaturesGet>>, TError, TData>>;
2107
- request?: SecondParameter<typeof customFetcher>;
2108
- }) => UseQueryOptions<Awaited<ReturnType<typeof dashboardClientFeaturesGet>>, TError, TData> & {
2109
- queryKey: DataTag<QueryKey, TData, TError>;
2110
- };
2111
- export type DashboardClientFeaturesGetQueryResult = NonNullable<Awaited<ReturnType<typeof dashboardClientFeaturesGet>>>;
2112
- export type DashboardClientFeaturesGetQueryError = DashboardClientFeaturesGet401 | DashboardClientFeaturesGet404 | DashboardClientFeaturesGet500;
2113
- export declare function useDashboardClientFeaturesGet<TData = Awaited<ReturnType<typeof dashboardClientFeaturesGet>>, TError = DashboardClientFeaturesGet401 | DashboardClientFeaturesGet404 | DashboardClientFeaturesGet500>(options: {
2114
- query: Partial<UseQueryOptions<Awaited<ReturnType<typeof dashboardClientFeaturesGet>>, TError, TData>> & Pick<DefinedInitialDataOptions<Awaited<ReturnType<typeof dashboardClientFeaturesGet>>, TError, Awaited<ReturnType<typeof dashboardClientFeaturesGet>>>, 'initialData'>;
2115
- request?: SecondParameter<typeof customFetcher>;
2116
- }, queryClient?: QueryClient): DefinedUseQueryResult<TData, TError> & {
2117
- queryKey: DataTag<QueryKey, TData, TError>;
2118
- };
2119
- export declare function useDashboardClientFeaturesGet<TData = Awaited<ReturnType<typeof dashboardClientFeaturesGet>>, TError = DashboardClientFeaturesGet401 | DashboardClientFeaturesGet404 | DashboardClientFeaturesGet500>(options?: {
2120
- query?: Partial<UseQueryOptions<Awaited<ReturnType<typeof dashboardClientFeaturesGet>>, TError, TData>> & Pick<UndefinedInitialDataOptions<Awaited<ReturnType<typeof dashboardClientFeaturesGet>>, TError, Awaited<ReturnType<typeof dashboardClientFeaturesGet>>>, 'initialData'>;
2121
- request?: SecondParameter<typeof customFetcher>;
2122
- }, queryClient?: QueryClient): UseQueryResult<TData, TError> & {
2123
- queryKey: DataTag<QueryKey, TData, TError>;
2124
- };
2125
- export declare function useDashboardClientFeaturesGet<TData = Awaited<ReturnType<typeof dashboardClientFeaturesGet>>, TError = DashboardClientFeaturesGet401 | DashboardClientFeaturesGet404 | DashboardClientFeaturesGet500>(options?: {
2126
- query?: Partial<UseQueryOptions<Awaited<ReturnType<typeof dashboardClientFeaturesGet>>, TError, TData>>;
2127
- request?: SecondParameter<typeof customFetcher>;
2128
- }, queryClient?: QueryClient): UseQueryResult<TData, TError> & {
2129
- queryKey: DataTag<QueryKey, TData, TError>;
2130
- };
2131
2046
  /**
2132
2047
  * Returns the full set of feature flags (with enabled state and optional config) for the authenticated user's organization. Flags not in the response default to disabled.
2133
2048
  * @summary Get feature flags for the authenticated org
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.getDashboardCallsReviewStatusPostUrl = exports.getDashboardCallsCallIdGetQueryOptions = exports.getDashboardCallsCallIdGetQueryKey = exports.dashboardCallsCallIdGet = exports.getDashboardCallsCallIdGetUrl = exports.getDashboardOutputFieldsGetQueryOptions = exports.getDashboardOutputFieldsGetQueryKey = exports.dashboardOutputFieldsGet = exports.getDashboardOutputFieldsGetUrl = exports.getDashboardInputFieldsGetQueryOptions = exports.getDashboardInputFieldsGetQueryKey = exports.dashboardInputFieldsGet = exports.getDashboardInputFieldsGetUrl = exports.getDashboardAgentsGroupedGetQueryOptions = exports.getDashboardAgentsGroupedGetQueryKey = exports.dashboardAgentsGroupedGet = exports.getDashboardAgentsGroupedGetUrl = exports.getDashboardAgentsGetQueryOptions = exports.getDashboardAgentsGetQueryKey = exports.dashboardAgentsGet = exports.getDashboardAgentsGetUrl = exports.getDashboardCampaignsCampaignIdScheduleConfigGetQueryOptions = exports.getDashboardCampaignsCampaignIdScheduleConfigGetQueryKey = exports.dashboardCampaignsCampaignIdScheduleConfigGet = exports.getDashboardCampaignsCampaignIdScheduleConfigGetUrl = exports.getDashboardCampaignsCampaignIdInputFieldsGetQueryOptions = exports.getDashboardCampaignsCampaignIdInputFieldsGetQueryKey = exports.dashboardCampaignsCampaignIdInputFieldsGet = exports.getDashboardCampaignsCampaignIdInputFieldsGetUrl = exports.getDashboardCampaignsGetQueryOptions = exports.getDashboardCampaignsGetQueryKey = exports.dashboardCampaignsGet = exports.getDashboardCampaignsGetUrl = exports.useDashboardCampaignsNamesPost = exports.getDashboardCampaignsNamesPostMutationOptions = exports.dashboardCampaignsNamesPost = exports.getDashboardCampaignsNamesPostUrl = exports.DashboardCallsCallIdScoringRerunsPost200DataResultsItemItemType = exports.DashboardCallsCallIdScoringGet200DataResultsItemItemType = exports.DashboardScorecardsScorecardIdGet200DataItemsItemType = exports.DashboardCampaignsCampaignIdScorecardsActiveGet200DataItemsItemType = exports.DashboardCampaignsCampaignIdScorecardsPost201DataItemsItemType = exports.DashboardSchedulerCreatePostBodyPhoneRotationStatusesItem = exports.DashboardSchedulerCreatePostBodyTimeSlotsItemDaysOfWeekItem = exports.DashboardSchedulerPreviewPost200DataWarningsItemSeverity = exports.DashboardSchedulerPreviewPost200DataWarningsItemType = exports.DashboardSchedulerPreviewPost200DataJourneyStepsItemType = exports.DashboardSchedulerPreviewPostBodyPhoneRotationStatusesItem = exports.DashboardSchedulerPreviewPostBodyTimeSlotsItemDaysOfWeekItem = exports.DashboardCampaignsCampaignIdInputFieldsGet200DataItemType = void 0;
4
- exports.getDashboardInovoWindmillSchedulesNameTogglePatchMutationOptions = exports.dashboardInovoWindmillSchedulesNameTogglePatch = exports.getDashboardInovoWindmillSchedulesNameTogglePatchUrl = exports.useDashboardInovoWindmillSchedulesNamePut = exports.getDashboardInovoWindmillSchedulesNamePutMutationOptions = exports.dashboardInovoWindmillSchedulesNamePut = exports.getDashboardInovoWindmillSchedulesNamePutUrl = exports.getDashboardInovoWindmillSchedulesNameGetQueryOptions = exports.getDashboardInovoWindmillSchedulesNameGetQueryKey = exports.dashboardInovoWindmillSchedulesNameGet = exports.getDashboardInovoWindmillSchedulesNameGetUrl = exports.getDashboardInovoWindmillSchedulesGetQueryOptions = exports.getDashboardInovoWindmillSchedulesGetQueryKey = exports.dashboardInovoWindmillSchedulesGet = exports.getDashboardInovoWindmillSchedulesGetUrl = exports.getDashboardTargetsLatestGetQueryOptions = exports.getDashboardTargetsLatestGetQueryKey = exports.dashboardTargetsLatestGet = exports.getDashboardTargetsLatestGetUrl = exports.getDashboardFlagsGetQueryOptions = exports.getDashboardFlagsGetQueryKey = exports.dashboardFlagsGet = exports.getDashboardFlagsGetUrl = exports.getDashboardClientFeaturesGetQueryOptions = exports.getDashboardClientFeaturesGetQueryKey = exports.dashboardClientFeaturesGet = exports.getDashboardClientFeaturesGetUrl = exports.useDashboardSchedulerCreatePost = exports.getDashboardSchedulerCreatePostMutationOptions = exports.dashboardSchedulerCreatePost = exports.getDashboardSchedulerCreatePostUrl = exports.useDashboardSchedulerPreviewPost = exports.getDashboardSchedulerPreviewPostMutationOptions = exports.dashboardSchedulerPreviewPost = exports.getDashboardSchedulerPreviewPostUrl = exports.useDashboardAgentSandboxStartPost = exports.getDashboardAgentSandboxStartPostMutationOptions = exports.dashboardAgentSandboxStartPost = exports.getDashboardAgentSandboxStartPostUrl = exports.getDashboardCallsCallIdRecordingUrlGetQueryOptions = exports.getDashboardCallsCallIdRecordingUrlGetQueryKey = exports.dashboardCallsCallIdRecordingUrlGet = exports.getDashboardCallsCallIdRecordingUrlGetUrl = exports.useDashboardCallsCallIdReviewPatch = exports.getDashboardCallsCallIdReviewPatchMutationOptions = exports.dashboardCallsCallIdReviewPatch = exports.getDashboardCallsCallIdReviewPatchUrl = exports.useDashboardCallsReviewStatusPost = exports.getDashboardCallsReviewStatusPostMutationOptions = exports.dashboardCallsReviewStatusPost = void 0;
5
- exports.useDashboardCallsCallIdScoringRerunsPost = exports.getDashboardCallsCallIdScoringRerunsPostMutationOptions = exports.dashboardCallsCallIdScoringRerunsPost = exports.getDashboardCallsCallIdScoringRerunsPostUrl = exports.getDashboardCallsCallIdScoringGetQueryOptions = exports.getDashboardCallsCallIdScoringGetQueryKey = exports.dashboardCallsCallIdScoringGet = exports.getDashboardCallsCallIdScoringGetUrl = exports.useDashboardScorecardsScorecardIdActivatePost = exports.getDashboardScorecardsScorecardIdActivatePostMutationOptions = exports.dashboardScorecardsScorecardIdActivatePost = exports.getDashboardScorecardsScorecardIdActivatePostUrl = exports.getDashboardScorecardsScorecardIdGetQueryOptions = exports.getDashboardScorecardsScorecardIdGetQueryKey = exports.dashboardScorecardsScorecardIdGet = exports.getDashboardScorecardsScorecardIdGetUrl = exports.getDashboardCampaignsCampaignIdScorecardsActiveGetQueryOptions = exports.getDashboardCampaignsCampaignIdScorecardsActiveGetQueryKey = exports.dashboardCampaignsCampaignIdScorecardsActiveGet = exports.getDashboardCampaignsCampaignIdScorecardsActiveGetUrl = exports.getDashboardCampaignsCampaignIdScorecardsGetQueryOptions = exports.getDashboardCampaignsCampaignIdScorecardsGetQueryKey = exports.dashboardCampaignsCampaignIdScorecardsGet = exports.getDashboardCampaignsCampaignIdScorecardsGetUrl = exports.useDashboardCampaignsCampaignIdScorecardsPost = exports.getDashboardCampaignsCampaignIdScorecardsPostMutationOptions = exports.dashboardCampaignsCampaignIdScorecardsPost = exports.getDashboardCampaignsCampaignIdScorecardsPostUrl = exports.getDashboardInovoWindmillSchedulesNamePreviewGetQueryOptions = exports.getDashboardInovoWindmillSchedulesNamePreviewGetQueryKey = exports.dashboardInovoWindmillSchedulesNamePreviewGet = exports.getDashboardInovoWindmillSchedulesNamePreviewGetUrl = exports.useDashboardInovoWindmillSchedulesNamePresignUploadPost = exports.getDashboardInovoWindmillSchedulesNamePresignUploadPostMutationOptions = exports.dashboardInovoWindmillSchedulesNamePresignUploadPost = exports.getDashboardInovoWindmillSchedulesNamePresignUploadPostUrl = exports.getDashboardInovoWindmillSchedulesNameRunsGetQueryOptions = exports.getDashboardInovoWindmillSchedulesNameRunsGetQueryKey = exports.dashboardInovoWindmillSchedulesNameRunsGet = exports.getDashboardInovoWindmillSchedulesNameRunsGetUrl = exports.useDashboardInovoWindmillSchedulesNameTogglePatch = void 0;
4
+ exports.getDashboardInovoWindmillSchedulesNameRunsGetQueryKey = exports.dashboardInovoWindmillSchedulesNameRunsGet = exports.getDashboardInovoWindmillSchedulesNameRunsGetUrl = exports.useDashboardInovoWindmillSchedulesNameTogglePatch = exports.getDashboardInovoWindmillSchedulesNameTogglePatchMutationOptions = exports.dashboardInovoWindmillSchedulesNameTogglePatch = exports.getDashboardInovoWindmillSchedulesNameTogglePatchUrl = exports.useDashboardInovoWindmillSchedulesNamePut = exports.getDashboardInovoWindmillSchedulesNamePutMutationOptions = exports.dashboardInovoWindmillSchedulesNamePut = exports.getDashboardInovoWindmillSchedulesNamePutUrl = exports.getDashboardInovoWindmillSchedulesNameGetQueryOptions = exports.getDashboardInovoWindmillSchedulesNameGetQueryKey = exports.dashboardInovoWindmillSchedulesNameGet = exports.getDashboardInovoWindmillSchedulesNameGetUrl = exports.getDashboardInovoWindmillSchedulesGetQueryOptions = exports.getDashboardInovoWindmillSchedulesGetQueryKey = exports.dashboardInovoWindmillSchedulesGet = exports.getDashboardInovoWindmillSchedulesGetUrl = exports.getDashboardTargetsLatestGetQueryOptions = exports.getDashboardTargetsLatestGetQueryKey = exports.dashboardTargetsLatestGet = exports.getDashboardTargetsLatestGetUrl = exports.getDashboardFlagsGetQueryOptions = exports.getDashboardFlagsGetQueryKey = exports.dashboardFlagsGet = exports.getDashboardFlagsGetUrl = exports.useDashboardSchedulerCreatePost = exports.getDashboardSchedulerCreatePostMutationOptions = exports.dashboardSchedulerCreatePost = exports.getDashboardSchedulerCreatePostUrl = exports.useDashboardSchedulerPreviewPost = exports.getDashboardSchedulerPreviewPostMutationOptions = exports.dashboardSchedulerPreviewPost = exports.getDashboardSchedulerPreviewPostUrl = exports.useDashboardAgentSandboxStartPost = exports.getDashboardAgentSandboxStartPostMutationOptions = exports.dashboardAgentSandboxStartPost = exports.getDashboardAgentSandboxStartPostUrl = exports.getDashboardCallsCallIdRecordingUrlGetQueryOptions = exports.getDashboardCallsCallIdRecordingUrlGetQueryKey = exports.dashboardCallsCallIdRecordingUrlGet = exports.getDashboardCallsCallIdRecordingUrlGetUrl = exports.useDashboardCallsCallIdReviewPatch = exports.getDashboardCallsCallIdReviewPatchMutationOptions = exports.dashboardCallsCallIdReviewPatch = exports.getDashboardCallsCallIdReviewPatchUrl = exports.useDashboardCallsReviewStatusPost = exports.getDashboardCallsReviewStatusPostMutationOptions = exports.dashboardCallsReviewStatusPost = void 0;
5
+ exports.useDashboardCallsCallIdScoringRerunsPost = exports.getDashboardCallsCallIdScoringRerunsPostMutationOptions = exports.dashboardCallsCallIdScoringRerunsPost = exports.getDashboardCallsCallIdScoringRerunsPostUrl = exports.getDashboardCallsCallIdScoringGetQueryOptions = exports.getDashboardCallsCallIdScoringGetQueryKey = exports.dashboardCallsCallIdScoringGet = exports.getDashboardCallsCallIdScoringGetUrl = exports.useDashboardScorecardsScorecardIdActivatePost = exports.getDashboardScorecardsScorecardIdActivatePostMutationOptions = exports.dashboardScorecardsScorecardIdActivatePost = exports.getDashboardScorecardsScorecardIdActivatePostUrl = exports.getDashboardScorecardsScorecardIdGetQueryOptions = exports.getDashboardScorecardsScorecardIdGetQueryKey = exports.dashboardScorecardsScorecardIdGet = exports.getDashboardScorecardsScorecardIdGetUrl = exports.getDashboardCampaignsCampaignIdScorecardsActiveGetQueryOptions = exports.getDashboardCampaignsCampaignIdScorecardsActiveGetQueryKey = exports.dashboardCampaignsCampaignIdScorecardsActiveGet = exports.getDashboardCampaignsCampaignIdScorecardsActiveGetUrl = exports.getDashboardCampaignsCampaignIdScorecardsGetQueryOptions = exports.getDashboardCampaignsCampaignIdScorecardsGetQueryKey = exports.dashboardCampaignsCampaignIdScorecardsGet = exports.getDashboardCampaignsCampaignIdScorecardsGetUrl = exports.useDashboardCampaignsCampaignIdScorecardsPost = exports.getDashboardCampaignsCampaignIdScorecardsPostMutationOptions = exports.dashboardCampaignsCampaignIdScorecardsPost = exports.getDashboardCampaignsCampaignIdScorecardsPostUrl = exports.getDashboardInovoWindmillSchedulesNamePreviewGetQueryOptions = exports.getDashboardInovoWindmillSchedulesNamePreviewGetQueryKey = exports.dashboardInovoWindmillSchedulesNamePreviewGet = exports.getDashboardInovoWindmillSchedulesNamePreviewGetUrl = exports.useDashboardInovoWindmillSchedulesNamePresignUploadPost = exports.getDashboardInovoWindmillSchedulesNamePresignUploadPostMutationOptions = exports.dashboardInovoWindmillSchedulesNamePresignUploadPost = exports.getDashboardInovoWindmillSchedulesNamePresignUploadPostUrl = exports.getDashboardInovoWindmillSchedulesNameRunsGetQueryOptions = void 0;
6
6
  exports.useDashboardCampaignsGet = useDashboardCampaignsGet;
7
7
  exports.useDashboardCampaignsCampaignIdInputFieldsGet = useDashboardCampaignsCampaignIdInputFieldsGet;
8
8
  exports.useDashboardCampaignsCampaignIdScheduleConfigGet = useDashboardCampaignsCampaignIdScheduleConfigGet;
@@ -12,7 +12,6 @@ exports.useDashboardInputFieldsGet = useDashboardInputFieldsGet;
12
12
  exports.useDashboardOutputFieldsGet = useDashboardOutputFieldsGet;
13
13
  exports.useDashboardCallsCallIdGet = useDashboardCallsCallIdGet;
14
14
  exports.useDashboardCallsCallIdRecordingUrlGet = useDashboardCallsCallIdRecordingUrlGet;
15
- exports.useDashboardClientFeaturesGet = useDashboardClientFeaturesGet;
16
15
  exports.useDashboardFlagsGet = useDashboardFlagsGet;
17
16
  exports.useDashboardTargetsLatestGet = useDashboardTargetsLatestGet;
18
17
  exports.useDashboardInovoWindmillSchedulesGet = useDashboardInovoWindmillSchedulesGet;
@@ -603,38 +602,6 @@ const useDashboardSchedulerCreatePost = (options, queryClient) => {
603
602
  return (0, react_query_1.useMutation)((0, exports.getDashboardSchedulerCreatePostMutationOptions)(options), queryClient);
604
603
  };
605
604
  exports.useDashboardSchedulerCreatePost = useDashboardSchedulerCreatePost;
606
- const getDashboardClientFeaturesGetUrl = () => {
607
- return `/v1/dashboard/client/features`;
608
- };
609
- exports.getDashboardClientFeaturesGetUrl = getDashboardClientFeaturesGetUrl;
610
- const dashboardClientFeaturesGet = async (options) => {
611
- return (0, fetcher_1.customFetcher)((0, exports.getDashboardClientFeaturesGetUrl)(), {
612
- ...options,
613
- method: 'GET'
614
- });
615
- };
616
- exports.dashboardClientFeaturesGet = dashboardClientFeaturesGet;
617
- const getDashboardClientFeaturesGetQueryKey = () => {
618
- return [
619
- `/v1/dashboard/client/features`
620
- ];
621
- };
622
- exports.getDashboardClientFeaturesGetQueryKey = getDashboardClientFeaturesGetQueryKey;
623
- const getDashboardClientFeaturesGetQueryOptions = (options) => {
624
- const { query: queryOptions, request: requestOptions } = options ?? {};
625
- const queryKey = queryOptions?.queryKey ?? (0, exports.getDashboardClientFeaturesGetQueryKey)();
626
- const queryFn = () => (0, exports.dashboardClientFeaturesGet)(requestOptions);
627
- return { queryKey, queryFn, ...queryOptions };
628
- };
629
- exports.getDashboardClientFeaturesGetQueryOptions = getDashboardClientFeaturesGetQueryOptions;
630
- /**
631
- * @summary Get client feature flags
632
- */
633
- function useDashboardClientFeaturesGet(options, queryClient) {
634
- const queryOptions = (0, exports.getDashboardClientFeaturesGetQueryOptions)(options);
635
- const query = (0, react_query_1.useQuery)(queryOptions, queryClient);
636
- return { ...query, queryKey: queryOptions.queryKey };
637
- }
638
605
  const getDashboardFlagsGetUrl = () => {
639
606
  return `/v1/dashboard/flags`;
640
607
  };
@@ -1160,42 +1160,6 @@ export declare const CreateBody: zod.ZodObject<{
1160
1160
  name?: string | undefined;
1161
1161
  activate?: boolean | undefined;
1162
1162
  }>;
1163
- /**
1164
- * Returns feature flags for the authenticated client's organization.
1165
- * @summary Get client feature flags
1166
- */
1167
- export declare const GetClientFeaturesResponse: zod.ZodObject<{
1168
- data: zod.ZodObject<{
1169
- observabilityEnabled: zod.ZodBoolean;
1170
- agentsEnabled: zod.ZodBoolean;
1171
- qaEnabled: zod.ZodBoolean;
1172
- promptViewingEnabled: zod.ZodBoolean;
1173
- }, "strip", zod.ZodTypeAny, {
1174
- observabilityEnabled: boolean;
1175
- agentsEnabled: boolean;
1176
- qaEnabled: boolean;
1177
- promptViewingEnabled: boolean;
1178
- }, {
1179
- observabilityEnabled: boolean;
1180
- agentsEnabled: boolean;
1181
- qaEnabled: boolean;
1182
- promptViewingEnabled: boolean;
1183
- }>;
1184
- }, "strip", zod.ZodTypeAny, {
1185
- data: {
1186
- observabilityEnabled: boolean;
1187
- agentsEnabled: boolean;
1188
- qaEnabled: boolean;
1189
- promptViewingEnabled: boolean;
1190
- };
1191
- }, {
1192
- data: {
1193
- observabilityEnabled: boolean;
1194
- agentsEnabled: boolean;
1195
- qaEnabled: boolean;
1196
- promptViewingEnabled: boolean;
1197
- };
1198
- }>;
1199
1163
  /**
1200
1164
  * Returns the full set of feature flags (with enabled state and optional config) for the authenticated user's organization. Flags not in the response default to disabled.
1201
1165
  * @summary Get feature flags for the authenticated org
@@ -1253,16 +1217,6 @@ export declare const GetOrgFlagsResponse: zod.ZodObject<{
1253
1217
  enabled: boolean;
1254
1218
  config?: unknown;
1255
1219
  }>;
1256
- private_recordings_enabled: zod.ZodObject<{
1257
- enabled: zod.ZodBoolean;
1258
- config: zod.ZodOptional<zod.ZodNullable<zod.ZodUnknown>>;
1259
- }, "strip", zod.ZodTypeAny, {
1260
- enabled: boolean;
1261
- config?: unknown;
1262
- }, {
1263
- enabled: boolean;
1264
- config?: unknown;
1265
- }>;
1266
1220
  prompt_viewing_enabled: zod.ZodObject<{
1267
1221
  enabled: zod.ZodBoolean;
1268
1222
  config: zod.ZodOptional<zod.ZodNullable<zod.ZodUnknown>>;
@@ -1304,10 +1258,6 @@ export declare const GetOrgFlagsResponse: zod.ZodObject<{
1304
1258
  enabled: boolean;
1305
1259
  config?: unknown;
1306
1260
  };
1307
- private_recordings_enabled: {
1308
- enabled: boolean;
1309
- config?: unknown;
1310
- };
1311
1261
  prompt_viewing_enabled: {
1312
1262
  enabled: boolean;
1313
1263
  config?: unknown;
@@ -1337,10 +1287,6 @@ export declare const GetOrgFlagsResponse: zod.ZodObject<{
1337
1287
  enabled: boolean;
1338
1288
  config?: unknown;
1339
1289
  };
1340
- private_recordings_enabled: {
1341
- enabled: boolean;
1342
- config?: unknown;
1343
- };
1344
1290
  prompt_viewing_enabled: {
1345
1291
  enabled: boolean;
1346
1292
  config?: unknown;
@@ -1372,10 +1318,6 @@ export declare const GetOrgFlagsResponse: zod.ZodObject<{
1372
1318
  enabled: boolean;
1373
1319
  config?: unknown;
1374
1320
  };
1375
- private_recordings_enabled: {
1376
- enabled: boolean;
1377
- config?: unknown;
1378
- };
1379
1321
  prompt_viewing_enabled: {
1380
1322
  enabled: boolean;
1381
1323
  config?: unknown;
@@ -1407,10 +1349,6 @@ export declare const GetOrgFlagsResponse: zod.ZodObject<{
1407
1349
  enabled: boolean;
1408
1350
  config?: unknown;
1409
1351
  };
1410
- private_recordings_enabled: {
1411
- enabled: boolean;
1412
- config?: unknown;
1413
- };
1414
1352
  prompt_viewing_enabled: {
1415
1353
  enabled: boolean;
1416
1354
  config?: unknown;
@@ -1444,10 +1382,6 @@ export declare const GetOrgFlagsResponse: zod.ZodObject<{
1444
1382
  enabled: boolean;
1445
1383
  config?: unknown;
1446
1384
  };
1447
- private_recordings_enabled: {
1448
- enabled: boolean;
1449
- config?: unknown;
1450
- };
1451
1385
  prompt_viewing_enabled: {
1452
1386
  enabled: boolean;
1453
1387
  config?: unknown;
@@ -1481,10 +1415,6 @@ export declare const GetOrgFlagsResponse: zod.ZodObject<{
1481
1415
  enabled: boolean;
1482
1416
  config?: unknown;
1483
1417
  };
1484
- private_recordings_enabled: {
1485
- enabled: boolean;
1486
- config?: unknown;
1487
- };
1488
1418
  prompt_viewing_enabled: {
1489
1419
  enabled: boolean;
1490
1420
  config?: unknown;
@@ -33,8 +33,8 @@ var __importStar = (this && this.__importStar) || (function () {
33
33
  };
34
34
  })();
35
35
  Object.defineProperty(exports, "__esModule", { value: true });
36
- exports.deployScorecardBodyItemsItemTwoCategoryMax = exports.deployScorecardBodyNameMax = exports.DeployScorecardParams = exports.WindmillSchedulesPreviewResponse = exports.WindmillSchedulesPreviewParams = exports.WindmillSchedulesPresignUploadResponse = exports.WindmillSchedulesPresignUploadBody = exports.WindmillSchedulesPresignUploadParams = exports.WindmillSchedulesRunsResponse = exports.WindmillSchedulesRunsParams = exports.WindmillSchedulesToggleResponse = exports.WindmillSchedulesToggleBody = exports.WindmillSchedulesToggleParams = exports.WindmillSchedulesUpdateResponse = exports.WindmillSchedulesUpdateBody = exports.WindmillSchedulesUpdateParams = exports.WindmillSchedulesGetByNameResponse = exports.WindmillSchedulesGetByNameParams = exports.WindmillSchedulesListResponse = exports.GetLatestTargetResponse = exports.GetLatestTargetQueryParams = exports.GetOrgFlagsResponse = exports.GetClientFeaturesResponse = exports.CreateBody = exports.createBodyTimeSlotsItemTimeRegExp = exports.PreviewResponse = exports.PreviewBody = exports.previewBodyTimeSlotsItemTimeRegExp = exports.StartCallBody = exports.GetRecordingPresignedUrlResponse = exports.GetRecordingPresignedUrlParams = exports.UpdateReviewResponse = exports.UpdateReviewBody = exports.updateReviewBodyNotesMax = exports.UpdateReviewParams = exports.GetReviewStatusResponse = exports.GetReviewStatusBody = exports.GetCallResponse = exports.GetCallParams = exports.GetOutputFieldsResponse = exports.GetInputFieldsResponse = exports.GetAgentsGroupedResponse = exports.GetAgentsResponse = exports.GetScheduleConfigResponse = exports.GetScheduleConfigParams = exports.GetCampaignInputFieldsResponse = exports.GetCampaignInputFieldsParams = exports.GetCampaignsResponse = exports.GetCampaignNamesResponse = exports.GetCampaignNamesBody = void 0;
37
- exports.RerunCallScoringResponse = exports.RerunCallScoringBody = exports.RerunCallScoringParams = exports.GetCallScoringResponse = exports.GetCallScoringQueryParams = exports.GetCallScoringParams = exports.ActivateScorecardResponse = exports.ActivateScorecardParams = exports.GetScorecardResponse = exports.GetScorecardParams = exports.GetActiveScorecardResponse = exports.GetActiveScorecardParams = exports.GetScorecardVersionsResponse = exports.GetScorecardVersionsParams = exports.DeployScorecardBody = exports.deployScorecardBodyItemsItemTwoInstructionMax = exports.deployScorecardBodyItemsItemTwoNameMax = void 0;
36
+ exports.deployScorecardBodyItemsItemTwoNameMax = exports.deployScorecardBodyItemsItemTwoCategoryMax = exports.deployScorecardBodyNameMax = exports.DeployScorecardParams = exports.WindmillSchedulesPreviewResponse = exports.WindmillSchedulesPreviewParams = exports.WindmillSchedulesPresignUploadResponse = exports.WindmillSchedulesPresignUploadBody = exports.WindmillSchedulesPresignUploadParams = exports.WindmillSchedulesRunsResponse = exports.WindmillSchedulesRunsParams = exports.WindmillSchedulesToggleResponse = exports.WindmillSchedulesToggleBody = exports.WindmillSchedulesToggleParams = exports.WindmillSchedulesUpdateResponse = exports.WindmillSchedulesUpdateBody = exports.WindmillSchedulesUpdateParams = exports.WindmillSchedulesGetByNameResponse = exports.WindmillSchedulesGetByNameParams = exports.WindmillSchedulesListResponse = exports.GetLatestTargetResponse = exports.GetLatestTargetQueryParams = exports.GetOrgFlagsResponse = exports.CreateBody = exports.createBodyTimeSlotsItemTimeRegExp = exports.PreviewResponse = exports.PreviewBody = exports.previewBodyTimeSlotsItemTimeRegExp = exports.StartCallBody = exports.GetRecordingPresignedUrlResponse = exports.GetRecordingPresignedUrlParams = exports.UpdateReviewResponse = exports.UpdateReviewBody = exports.updateReviewBodyNotesMax = exports.UpdateReviewParams = exports.GetReviewStatusResponse = exports.GetReviewStatusBody = exports.GetCallResponse = exports.GetCallParams = exports.GetOutputFieldsResponse = exports.GetInputFieldsResponse = exports.GetAgentsGroupedResponse = exports.GetAgentsResponse = exports.GetScheduleConfigResponse = exports.GetScheduleConfigParams = exports.GetCampaignInputFieldsResponse = exports.GetCampaignInputFieldsParams = exports.GetCampaignsResponse = exports.GetCampaignNamesResponse = exports.GetCampaignNamesBody = void 0;
37
+ exports.RerunCallScoringResponse = exports.RerunCallScoringBody = exports.RerunCallScoringParams = exports.GetCallScoringResponse = exports.GetCallScoringQueryParams = exports.GetCallScoringParams = exports.ActivateScorecardResponse = exports.ActivateScorecardParams = exports.GetScorecardResponse = exports.GetScorecardParams = exports.GetActiveScorecardResponse = exports.GetActiveScorecardParams = exports.GetScorecardVersionsResponse = exports.GetScorecardVersionsParams = exports.DeployScorecardBody = exports.deployScorecardBodyItemsItemTwoInstructionMax = void 0;
38
38
  /**
39
39
  * Generated by orval v8.2.0 🍺
40
40
  * Do not edit manually.
@@ -309,18 +309,6 @@ exports.CreateBody = zod.object({
309
309
  }),
310
310
  "activate": zod.boolean().optional()
311
311
  });
312
- /**
313
- * Returns feature flags for the authenticated client's organization.
314
- * @summary Get client feature flags
315
- */
316
- exports.GetClientFeaturesResponse = zod.object({
317
- "data": zod.object({
318
- "observabilityEnabled": zod.boolean(),
319
- "agentsEnabled": zod.boolean(),
320
- "qaEnabled": zod.boolean(),
321
- "promptViewingEnabled": zod.boolean()
322
- })
323
- });
324
312
  /**
325
313
  * Returns the full set of feature flags (with enabled state and optional config) for the authenticated user's organization. Flags not in the response default to disabled.
326
314
  * @summary Get feature flags for the authenticated org
@@ -348,10 +336,6 @@ exports.GetOrgFlagsResponse = zod.object({
348
336
  "enabled": zod.boolean(),
349
337
  "config": zod.unknown().nullish()
350
338
  }),
351
- "private_recordings_enabled": zod.object({
352
- "enabled": zod.boolean(),
353
- "config": zod.unknown().nullish()
354
- }),
355
339
  "prompt_viewing_enabled": zod.object({
356
340
  "enabled": zod.boolean(),
357
341
  "config": zod.unknown().nullish()
package/flags.d.ts CHANGED
@@ -5,7 +5,6 @@ export declare const FLAGS: {
5
5
  readonly schedules: null;
6
6
  readonly observability_enabled: null;
7
7
  readonly agents_enabled: null;
8
- readonly private_recordings_enabled: null;
9
8
  readonly prompt_viewing_enabled: null;
10
9
  readonly qa_enabled: null;
11
10
  };
package/flags.js CHANGED
@@ -8,7 +8,6 @@ exports.FLAGS = {
8
8
  schedules: null,
9
9
  observability_enabled: null,
10
10
  agents_enabled: null,
11
- private_recordings_enabled: null,
12
11
  prompt_viewing_enabled: null,
13
12
  qa_enabled: null,
14
13
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@domu-ai/kiban-sdk",
3
- "version": "1.175.0",
3
+ "version": "1.177.0",
4
4
  "description": "Generated TypeScript SDKs for Kiban public, internal, and dashboard APIs.",
5
5
  "license": "UNLICENSED",
6
6
  "main": "./index.js",