@forge/cli-shared 8.25.0-next.3 → 8.25.0-next.5

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 CHANGED
@@ -1,5 +1,17 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 8.25.0-next.5
4
+
5
+ ### Minor Changes
6
+
7
+ - 2a1ec30: Adding warning when site has over 100 apps installed
8
+
9
+ ## 8.25.0-next.4
10
+
11
+ ### Patch Changes
12
+
13
+ - 2a03b88: `isAgent` attribution now excludes CI: `isAgent()` returns `false` when `CI=true` even if stdin/stdout are non-TTY, so the `isAgent` and `isCI` signals never overlap in the `atl-attribution` header and analytics payload.
14
+
3
15
  ## 8.25.0-next.3
4
16
 
5
17
  ### Minor Changes
@@ -8,9 +8,10 @@ export declare class DebuggingGraphqlRunner implements GraphQLRunner {
8
8
  private readonly sensitivePatterns;
9
9
  constructor(innerClient: GraphQLRunner, endpoint: string, logger: Logger);
10
10
  private filterSensitiveData;
11
- run<TVariables extends Variables, TResponse>(query: string, variables: TVariables): Promise<{
11
+ run<TVariables extends Variables, TResponse, TExtensions>(query: string, variables: TVariables): Promise<{
12
12
  requestId: string | undefined;
13
13
  response: TResponse;
14
+ extensions: TExtensions | undefined;
14
15
  }>;
15
16
  }
16
17
  //# sourceMappingURL=debugging-graphql-runner.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"debugging-graphql-runner.d.ts","sourceRoot":"","sources":["../../src/graphql/debugging-graphql-runner.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,OAAO,CAAC;AAG/B,OAAO,EAAE,aAAa,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC;AAG5D,wBAAgB,SAAS,CAAC,SAAS,EAAE,GAAG,UAEvC;AAED,qBAAa,sBAAuB,YAAW,aAAa;IAKxD,OAAO,CAAC,QAAQ,CAAC,WAAW;IAC5B,OAAO,CAAC,QAAQ,CAAC,QAAQ;IACzB,OAAO,CAAC,QAAQ,CAAC,MAAM;IALzB,OAAO,CAAC,QAAQ,CAAC,iBAAiB,CAA6B;gBAG5C,WAAW,EAAE,aAAa,EAC1B,QAAQ,EAAE,MAAM,EAChB,MAAM,EAAE,MAAM;IAGjC,OAAO,CAAC,mBAAmB;IAsBd,GAAG,CAAC,UAAU,SAAS,SAAS,EAAE,SAAS,EAAE,KAAK,EAAE,MAAM,EAAE,SAAS,EAAE,UAAU;;;;CAY/F"}
1
+ {"version":3,"file":"debugging-graphql-runner.d.ts","sourceRoot":"","sources":["../../src/graphql/debugging-graphql-runner.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,OAAO,CAAC;AAG/B,OAAO,EAAE,aAAa,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC;AAG5D,wBAAgB,SAAS,CAAC,SAAS,EAAE,GAAG,UAEvC;AAED,qBAAa,sBAAuB,YAAW,aAAa;IAKxD,OAAO,CAAC,QAAQ,CAAC,WAAW;IAC5B,OAAO,CAAC,QAAQ,CAAC,QAAQ;IACzB,OAAO,CAAC,QAAQ,CAAC,MAAM;IALzB,OAAO,CAAC,QAAQ,CAAC,iBAAiB,CAA6B;gBAG5C,WAAW,EAAE,aAAa,EAC1B,QAAQ,EAAE,MAAM,EAChB,MAAM,EAAE,MAAM;IAGjC,OAAO,CAAC,mBAAmB;IAsBd,GAAG,CAAC,UAAU,SAAS,SAAS,EAAE,SAAS,EAAE,WAAW,EAAE,KAAK,EAAE,MAAM,EAAE,SAAS,EAAE,UAAU;;;;;CAe5G"}
@@ -39,10 +39,10 @@ class DebuggingGraphqlRunner {
39
39
  async run(query, variables) {
40
40
  const filteredVariables = this.filterSensitiveData(variables);
41
41
  this.logger.trace(ui_1.Text.graphQL.request(this.endpoint, query, stringify(filteredVariables)));
42
- const { requestId, response } = await this.innerClient.run(query, variables);
42
+ const { requestId, response, extensions } = await this.innerClient.run(query, variables);
43
43
  const filteredResponse = this.filterSensitiveData(response);
44
44
  this.logger.trace(ui_1.Text.graphQL.response(stringify(filteredResponse), requestId));
45
- return { requestId, response };
45
+ return { requestId, response, extensions };
46
46
  }
47
47
  }
48
48
  exports.DebuggingGraphqlRunner = DebuggingGraphqlRunner;
@@ -3,18 +3,24 @@ import { Mutation, Query } from './graphql-types';
3
3
  export { Variables };
4
4
  export declare type AvailableMutations = Omit<Mutation, '__typename'>;
5
5
  export declare type AvailableQueries = Omit<Query, '__typename'>;
6
- export interface RunnerResponse<TResponse> {
6
+ export interface GatewayRequestIdGraphQLExtensions {
7
+ gateway?: {
8
+ request_id: string;
9
+ };
10
+ }
11
+ export interface RunnerResponse<TResponse, TExtensions = GatewayRequestIdGraphQLExtensions> {
7
12
  response: TResponse;
8
13
  requestId?: string;
14
+ extensions?: TExtensions;
9
15
  }
10
16
  export declare type MutationResult<TLabel extends keyof AvailableMutations> = Record<TLabel, NonNullable<Required<AvailableMutations>[TLabel]>>;
11
17
  export interface GraphQLClient {
12
- query<TLabel extends keyof AvailableQueries, TVariables extends Variables>(query: string, variables: TVariables): Promise<Record<TLabel, AvailableQueries[TLabel]> & {
18
+ query<TLabel extends keyof AvailableQueries, TVariables extends Variables, TExtensions = GatewayRequestIdGraphQLExtensions>(query: string, variables: TVariables): Promise<Record<TLabel, AvailableQueries[TLabel]> & {
13
19
  requestId: string;
14
20
  }>;
15
- mutate<TLabel extends keyof AvailableMutations, TVariables extends Variables>(query: string, variables: TVariables): Promise<RunnerResponse<MutationResult<TLabel>>>;
21
+ mutate<TLabel extends keyof AvailableMutations, TVariables extends Variables, TExtensions = GatewayRequestIdGraphQLExtensions>(query: string, variables: TVariables): Promise<RunnerResponse<MutationResult<TLabel>, TExtensions>>;
16
22
  }
17
23
  export interface GraphQLRunner {
18
- run<TVariables extends Variables, TResponse>(operation: string, variables: TVariables): Promise<RunnerResponse<TResponse>>;
24
+ run<TVariables extends Variables, TResponse, TExtensions = GatewayRequestIdGraphQLExtensions>(operation: string, variables: TVariables): Promise<RunnerResponse<TResponse, TExtensions>>;
19
25
  }
20
26
  //# sourceMappingURL=graphql-client.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"graphql-client.d.ts","sourceRoot":"","sources":["../../src/graphql/graphql-client.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAE5C,OAAO,EAAE,QAAQ,EAAE,KAAK,EAAE,MAAM,iBAAiB,CAAC;AAElD,OAAO,EAAE,SAAS,EAAE,CAAC;AAErB,oBAAY,kBAAkB,GAAG,IAAI,CAAC,QAAQ,EAAE,YAAY,CAAC,CAAC;AAC9D,oBAAY,gBAAgB,GAAG,IAAI,CAAC,KAAK,EAAE,YAAY,CAAC,CAAC;AAEzD,MAAM,WAAW,cAAc,CAAC,SAAS;IACvC,QAAQ,EAAE,SAAS,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,oBAAY,cAAc,CAAC,MAAM,SAAS,MAAM,kBAAkB,IAAI,MAAM,CAC1E,MAAM,EACN,WAAW,CAAC,QAAQ,CAAC,kBAAkB,CAAC,CAAC,MAAM,CAAC,CAAC,CAClD,CAAC;AAEF,MAAM,WAAW,aAAa;IAC5B,KAAK,CAAC,MAAM,SAAS,MAAM,gBAAgB,EAAE,UAAU,SAAS,SAAS,EACvE,KAAK,EAAE,MAAM,EACb,SAAS,EAAE,UAAU,GACpB,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,gBAAgB,CAAC,MAAM,CAAC,CAAC,GAAG;QAAE,SAAS,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IAC7E,MAAM,CAAC,MAAM,SAAS,MAAM,kBAAkB,EAAE,UAAU,SAAS,SAAS,EAC1E,KAAK,EAAE,MAAM,EACb,SAAS,EAAE,UAAU,GACpB,OAAO,CAAC,cAAc,CAAC,cAAc,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;CACpD;AAED,MAAM,WAAW,aAAa;IAC5B,GAAG,CAAC,UAAU,SAAS,SAAS,EAAE,SAAS,EACzC,SAAS,EAAE,MAAM,EACjB,SAAS,EAAE,UAAU,GACpB,OAAO,CAAC,cAAc,CAAC,SAAS,CAAC,CAAC,CAAC;CACvC"}
1
+ {"version":3,"file":"graphql-client.d.ts","sourceRoot":"","sources":["../../src/graphql/graphql-client.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAE5C,OAAO,EAAE,QAAQ,EAAE,KAAK,EAAE,MAAM,iBAAiB,CAAC;AAElD,OAAO,EAAE,SAAS,EAAE,CAAC;AAErB,oBAAY,kBAAkB,GAAG,IAAI,CAAC,QAAQ,EAAE,YAAY,CAAC,CAAC;AAC9D,oBAAY,gBAAgB,GAAG,IAAI,CAAC,KAAK,EAAE,YAAY,CAAC,CAAC;AAEzD,MAAM,WAAW,iCAAiC;IAChD,OAAO,CAAC,EAAE;QACR,UAAU,EAAE,MAAM,CAAC;KACpB,CAAC;CACH;AAED,MAAM,WAAW,cAAc,CAAC,SAAS,EAAE,WAAW,GAAG,iCAAiC;IACxF,QAAQ,EAAE,SAAS,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,WAAW,CAAC;CAC1B;AAED,oBAAY,cAAc,CAAC,MAAM,SAAS,MAAM,kBAAkB,IAAI,MAAM,CAC1E,MAAM,EACN,WAAW,CAAC,QAAQ,CAAC,kBAAkB,CAAC,CAAC,MAAM,CAAC,CAAC,CAClD,CAAC;AAEF,MAAM,WAAW,aAAa;IAC5B,KAAK,CACH,MAAM,SAAS,MAAM,gBAAgB,EACrC,UAAU,SAAS,SAAS,EAC5B,WAAW,GAAG,iCAAiC,EAE/C,KAAK,EAAE,MAAM,EACb,SAAS,EAAE,UAAU,GACpB,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,gBAAgB,CAAC,MAAM,CAAC,CAAC,GAAG;QAAE,SAAS,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IAC7E,MAAM,CACJ,MAAM,SAAS,MAAM,kBAAkB,EACvC,UAAU,SAAS,SAAS,EAC5B,WAAW,GAAG,iCAAiC,EAE/C,KAAK,EAAE,MAAM,EACb,SAAS,EAAE,UAAU,GACpB,OAAO,CAAC,cAAc,CAAC,cAAc,CAAC,MAAM,CAAC,EAAE,WAAW,CAAC,CAAC,CAAC;CACjE;AAED,MAAM,WAAW,aAAa;IAC5B,GAAG,CAAC,UAAU,SAAS,SAAS,EAAE,SAAS,EAAE,WAAW,GAAG,iCAAiC,EAC1F,SAAS,EAAE,MAAM,EACjB,SAAS,EAAE,UAAU,GACpB,OAAO,CAAC,cAAc,CAAC,SAAS,EAAE,WAAW,CAAC,CAAC,CAAC;CACpD"}
@@ -7648,6 +7648,10 @@ export declare type AgentWorkspaceCancelRoutingTableGenerationPayload = {
7648
7648
  generationId: Scalars['ID']['output'];
7649
7649
  status: AgentWorkspaceRoutingTableGenerationStatus;
7650
7650
  };
7651
+ export declare type AgentWorkspaceCancelSmartRoutingDryRunInput = {
7652
+ cloudId: Scalars['ID']['input'];
7653
+ projectKey: Scalars['String']['input'];
7654
+ };
7651
7655
  export declare type AgentWorkspaceCapacityConnection = {
7652
7656
  __typename?: 'AgentWorkspaceCapacityConnection';
7653
7657
  edges: Array<AgentWorkspaceAgentCapacityEdge>;
@@ -7698,6 +7702,14 @@ export declare type AgentWorkspaceCapacitySummary = {
7698
7702
  totalUnassignedWorkItems: Scalars['Int']['output'];
7699
7703
  totalUtilizationPercent: Scalars['Float']['output'];
7700
7704
  };
7705
+ export declare type AgentWorkspaceConfusionMatrix = {
7706
+ __typename?: 'AgentWorkspaceConfusionMatrix';
7707
+ falseNegatives: Scalars['Int']['output'];
7708
+ falsePositives: Scalars['Int']['output'];
7709
+ total: Scalars['Int']['output'];
7710
+ trueNegatives: Scalars['Int']['output'];
7711
+ truePositives: Scalars['Int']['output'];
7712
+ };
7701
7713
  export declare type AgentWorkspaceCoverShiftEditBoundsInput = {
7702
7714
  agentId: Scalars['ID']['input'];
7703
7715
  coveringShiftId: Scalars['ID']['input'];
@@ -8577,10 +8589,57 @@ export declare type AgentWorkspaceSmartRoutingConfig = {
8577
8589
  __typename?: 'AgentWorkspaceSmartRoutingConfig';
8578
8590
  enabled: Scalars['Boolean']['output'];
8579
8591
  serviceFieldId?: Maybe<Scalars['String']['output']>;
8592
+ serviceFieldName?: Maybe<Scalars['String']['output']>;
8580
8593
  serviceFieldType?: Maybe<AgentWorkspaceSmartRoutingServiceFieldType>;
8581
8594
  setupVersion: Scalars['Int']['output'];
8582
8595
  warning?: Maybe<Scalars['String']['output']>;
8583
8596
  };
8597
+ export declare type AgentWorkspaceSmartRoutingDryRun = {
8598
+ __typename?: 'AgentWorkspaceSmartRoutingDryRun';
8599
+ actualSampleSize: Scalars['Int']['output'];
8600
+ endedAt?: Maybe<Scalars['DateTime']['output']>;
8601
+ errorCode?: Maybe<Scalars['String']['output']>;
8602
+ errorCount: Scalars['Int']['output'];
8603
+ processedCount: Scalars['Int']['output'];
8604
+ progressPct: Scalars['Int']['output'];
8605
+ requestedSampleSize: Scalars['Int']['output'];
8606
+ result?: Maybe<AgentWorkspaceSmartRoutingDryRunResult>;
8607
+ runId: Scalars['ID']['output'];
8608
+ startedAt: Scalars['DateTime']['output'];
8609
+ status: AgentWorkspaceSmartRoutingDryRunStatus;
8610
+ totalCount: Scalars['Int']['output'];
8611
+ };
8612
+ export declare type AgentWorkspaceSmartRoutingDryRunResult = {
8613
+ __typename?: 'AgentWorkspaceSmartRoutingDryRunResult';
8614
+ accuracy?: Maybe<Scalars['Float']['output']>;
8615
+ configCoverage?: Maybe<Scalars['Float']['output']>;
8616
+ excludedCount: Scalars['Int']['output'];
8617
+ matrix: AgentWorkspaceConfusionMatrix;
8618
+ perService: Array<AgentWorkspaceSmartRoutingPerServiceStat>;
8619
+ precision?: Maybe<Scalars['Float']['output']>;
8620
+ recall?: Maybe<Scalars['Float']['output']>;
8621
+ sampleSize: Scalars['Int']['output'];
8622
+ volumeCoverage?: Maybe<Scalars['Float']['output']>;
8623
+ };
8624
+ export declare enum AgentWorkspaceSmartRoutingDryRunStatus {
8625
+ Cancelled = "CANCELLED",
8626
+ Cancelling = "CANCELLING",
8627
+ Completed = "COMPLETED",
8628
+ Failed = "FAILED",
8629
+ Pending = "PENDING",
8630
+ Running = "RUNNING",
8631
+ Timeout = "TIMEOUT"
8632
+ }
8633
+ export declare type AgentWorkspaceSmartRoutingPerServiceStat = {
8634
+ __typename?: 'AgentWorkspaceSmartRoutingPerServiceStat';
8635
+ covered: Scalars['Boolean']['output'];
8636
+ falseNegatives: Scalars['Int']['output'];
8637
+ falsePositives: Scalars['Int']['output'];
8638
+ observed: Scalars['Int']['output'];
8639
+ serviceId: Scalars['ID']['output'];
8640
+ trueNegatives: Scalars['Int']['output'];
8641
+ truePositives: Scalars['Int']['output'];
8642
+ };
8584
8643
  export declare enum AgentWorkspaceSmartRoutingServiceFieldType {
8585
8644
  AffectedServices = "AFFECTED_SERVICES",
8586
8645
  Asset = "ASSET",
@@ -8627,6 +8686,16 @@ export declare type AgentWorkspaceStartGenerateRoutingTablePayload = {
8627
8686
  generationId: Scalars['ID']['output'];
8628
8687
  status: AgentWorkspaceRoutingTableGenerationStatus;
8629
8688
  };
8689
+ export declare type AgentWorkspaceStartSmartRoutingDryRunInput = {
8690
+ cloudId: Scalars['ID']['input'];
8691
+ projectKey: Scalars['String']['input'];
8692
+ sampleSize?: InputMaybe<Scalars['Int']['input']>;
8693
+ };
8694
+ export declare type AgentWorkspaceStartSmartRoutingDryRunPayload = {
8695
+ __typename?: 'AgentWorkspaceStartSmartRoutingDryRunPayload';
8696
+ runId: Scalars['ID']['output'];
8697
+ status: AgentWorkspaceSmartRoutingDryRunStatus;
8698
+ };
8630
8699
  export declare type AgentWorkspaceSubmitDraftedRoutingTableInput = {
8631
8700
  cloudId: Scalars['ID']['input'];
8632
8701
  draftId?: InputMaybe<Scalars['ID']['input']>;
@@ -8634,6 +8703,7 @@ export declare type AgentWorkspaceSubmitDraftedRoutingTableInput = {
8634
8703
  fieldId: Scalars['String']['input'];
8635
8704
  projectKey: Scalars['String']['input'];
8636
8705
  selectedServiceIds?: InputMaybe<Array<Scalars['String']['input']>>;
8706
+ serviceFieldName?: InputMaybe<Scalars['String']['input']>;
8637
8707
  serviceFieldType?: InputMaybe<AgentWorkspaceSmartRoutingServiceFieldType>;
8638
8708
  };
8639
8709
  export declare type AgentWorkspaceSubmitDraftedRoutingTablePayload = {
@@ -8782,6 +8852,7 @@ export declare type AgentWorkspaceUpdateRoutingConfigInput = {
8782
8852
  enabled: Scalars['Boolean']['input'];
8783
8853
  projectKey: Scalars['String']['input'];
8784
8854
  serviceFieldId?: InputMaybe<Scalars['String']['input']>;
8855
+ serviceFieldName?: InputMaybe<Scalars['String']['input']>;
8785
8856
  serviceFieldType?: InputMaybe<AgentWorkspaceSmartRoutingServiceFieldType>;
8786
8857
  };
8787
8858
  export declare type AgentWorkspaceUpdateScheduleInput = {
@@ -17049,6 +17120,7 @@ export declare type CcpEntitlementRelatesToEntitlementsArgs = {
17049
17120
  };
17050
17121
  export declare type CcpEntitlementDisplayInfo = {
17051
17122
  __typename?: 'CcpEntitlementDisplayInfo';
17123
+ entitlementCustomName?: Maybe<Scalars['String']['output']>;
17052
17124
  provisionedResource?: Maybe<CcpEntitlementProvisionedResource>;
17053
17125
  };
17054
17126
  export declare type CcpEntitlementExperienceCapabilities = CommerceEntitlementExperienceCapabilities & {
@@ -43265,6 +43337,7 @@ export declare type DevAiRovoDevBulkSessionResult = {
43265
43337
  export declare type DevAiRovoDevCreatePullRequestInput = {
43266
43338
  branchName?: InputMaybe<Scalars['String']['input']>;
43267
43339
  codeChanges?: InputMaybe<Scalars['String']['input']>;
43340
+ isDraft?: InputMaybe<Scalars['Boolean']['input']>;
43268
43341
  sessionAri: Scalars['ID']['input'];
43269
43342
  };
43270
43343
  export declare type DevAiRovoDevCreatePullRequestPayload = Payload & {
@@ -162305,6 +162378,7 @@ export declare type Mutation = {
162305
162378
  agentWorkspace_assignAgentsToSkill?: Maybe<AgentWorkspaceAssignAgentsToSkillPayload>;
162306
162379
  agentWorkspace_bulkUpsertDraftedRoutingTableEntries?: Maybe<AgentWorkspaceBulkUpsertDraftedRoutingTableEntriesPayload>;
162307
162380
  agentWorkspace_cancelRoutingTableGeneration?: Maybe<AgentWorkspaceCancelRoutingTableGenerationPayload>;
162381
+ agentWorkspace_cancelSmartRoutingDryRun?: Maybe<AgentWorkspaceSmartRoutingDryRun>;
162308
162382
  agentWorkspace_createAndLinkTeamsFromGroups?: Maybe<AgentWorkspaceCreateAndLinkTeamsPayload>;
162309
162383
  agentWorkspace_createDraftedRoutingTableEntries?: Maybe<AgentWorkspaceCreateDraftedRoutingTableEntriesPayload>;
162310
162384
  agentWorkspace_createDraftedRoutingTableEntriesV2?: Maybe<AgentWorkspaceCreateDraftedRoutingTableEntriesPayload>;
@@ -162328,6 +162402,7 @@ export declare type Mutation = {
162328
162402
  agentWorkspace_startBulkScheduleImportJob?: Maybe<AgentWorkspaceStartBulkImportPayload>;
162329
162403
  agentWorkspace_startGenerateRoutingTable?: Maybe<AgentWorkspaceStartGenerateRoutingTablePayload>;
162330
162404
  agentWorkspace_startGenerateRoutingTableV2?: Maybe<AgentWorkspaceStartGenerateRoutingTablePayload>;
162405
+ agentWorkspace_startSmartRoutingDryRun?: Maybe<AgentWorkspaceStartSmartRoutingDryRunPayload>;
162331
162406
  agentWorkspace_submitDraftedRoutingTable?: Maybe<AgentWorkspaceSubmitDraftedRoutingTablePayload>;
162332
162407
  agentWorkspace_unassignCoverShift?: Maybe<AgentWorkspaceUnassignCoverShiftPayload>;
162333
162408
  agentWorkspace_updateRoutingConfig?: Maybe<AgentWorkspaceUpdateSmartRoutingConfigPayload>;
@@ -164145,6 +164220,9 @@ export declare type MutationAgentWorkspace_BulkUpsertDraftedRoutingTableEntriesA
164145
164220
  export declare type MutationAgentWorkspace_CancelRoutingTableGenerationArgs = {
164146
164221
  input: AgentWorkspaceCancelRoutingTableGenerationInput;
164147
164222
  };
164223
+ export declare type MutationAgentWorkspace_CancelSmartRoutingDryRunArgs = {
164224
+ input: AgentWorkspaceCancelSmartRoutingDryRunInput;
164225
+ };
164148
164226
  export declare type MutationAgentWorkspace_CreateAndLinkTeamsFromGroupsArgs = {
164149
164227
  input: AgentWorkspaceCreateAndLinkTeamsInput;
164150
164228
  };
@@ -164216,6 +164294,9 @@ export declare type MutationAgentWorkspace_StartGenerateRoutingTableArgs = {
164216
164294
  export declare type MutationAgentWorkspace_StartGenerateRoutingTableV2Args = {
164217
164295
  input: AgentWorkspaceStartGenerateRoutingTableInputV2;
164218
164296
  };
164297
+ export declare type MutationAgentWorkspace_StartSmartRoutingDryRunArgs = {
164298
+ input: AgentWorkspaceStartSmartRoutingDryRunInput;
164299
+ };
164219
164300
  export declare type MutationAgentWorkspace_SubmitDraftedRoutingTableArgs = {
164220
164301
  input: AgentWorkspaceSubmitDraftedRoutingTableInput;
164221
164302
  };
@@ -172523,6 +172604,7 @@ export declare type Query = {
172523
172604
  agentWorkspace_skills?: Maybe<AgentWorkspaceSkillConnection>;
172524
172605
  agentWorkspace_skillsInCategory?: Maybe<AgentWorkspaceSkillConnection>;
172525
172606
  agentWorkspace_smartRoutingConfig?: Maybe<AgentWorkspaceSmartRoutingConfig>;
172607
+ agentWorkspace_smartRoutingDryRun?: Maybe<AgentWorkspaceSmartRoutingDryRun>;
172526
172608
  agentWorkspace_teamCapacities?: Maybe<Array<AgentWorkspaceTeamCapacity>>;
172527
172609
  agentWorkspace_teamRebalancingRecommendations?: Maybe<Array<AgentWorkspaceIssueRebalancingRecommendation>>;
172528
172610
  agentWorkspace_teamRebalancingSummaries?: Maybe<Array<AgentWorkspaceTeamRebalancingSummary>>;
@@ -176774,6 +176856,10 @@ export declare type QueryAgentWorkspace_SkillsInCategoryArgs = {
176774
176856
  export declare type QueryAgentWorkspace_SmartRoutingConfigArgs = {
176775
176857
  projectAri: Scalars['ID']['input'];
176776
176858
  };
176859
+ export declare type QueryAgentWorkspace_SmartRoutingDryRunArgs = {
176860
+ cloudId: Scalars['ID']['input'];
176861
+ projectKey: Scalars['String']['input'];
176862
+ };
176777
176863
  export declare type QueryAgentWorkspace_TeamCapacitiesArgs = {
176778
176864
  input: AgentWorkspaceTeamCapacitiesInput;
176779
176865
  };