@forge/cli-shared 7.0.0-next.6-experimental-786d4ac → 7.0.0-next.6-experimental-bebf085

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,10 +1,11 @@
1
1
  # @forge/cli-shared
2
2
 
3
- ## 7.0.0-next.6-experimental-786d4ac
3
+ ## 7.0.0-next.6-experimental-bebf085
4
4
 
5
5
  ### Major Changes
6
6
 
7
7
  - 27f557d: Improve forge tunnel debugFunctionHandlers error handling
8
+ - bf8b1c7: Added new command line option "-c" or "--container" in forge logs command to fetch Container logs
8
9
  - 3b2ffa9: updated the type of appVersion
9
10
  - 3b2ffa9: update appVersion type in logs command
10
11
 
@@ -21,7 +22,7 @@
21
22
  - Updated dependencies [35165ba]
22
23
  - Updated dependencies [fe7e7e9]
23
24
  - Updated dependencies [b25d06e]
24
- - @forge/manifest@9.4.0-next.2-experimental-786d4ac
25
+ - @forge/manifest@9.4.0-next.2-experimental-bebf085
25
26
 
26
27
  ## 7.0.0-next.6
27
28
 
@@ -1 +1 @@
1
- {"version":3,"file":"graphql-client.d.ts","sourceRoot":"","sources":["../../src/app-logs/graphql-client.ts"],"names":[],"mappings":"AAAA,OAAO,EAA6E,aAAa,EAAE,MAAM,YAAY,CAAC;AAEtH,OAAO,EACL,wBAAwB,EACxB,cAAc,EACd,gBAAgB,EAChB,UAAU,EACV,iBAAiB,EACjB,iBAAiB,EAClB,MAAM,aAAa,CAAC;AAwBrB,qBAAa,mBAAoB,SAAQ,KAAK;CAAG;AACjD,qBAAa,uBAAwB,SAAQ,KAAK;CAAG;AACrD,qBAAa,sBAAuB,SAAQ,KAAK;CAAG;AACpD,qBAAa,oBAAqB,SAAQ,KAAK;CAAG;AAElD,qBAAa,iBAAkB,YAAW,iBAAiB;IAC7C,OAAO,CAAC,QAAQ,CAAC,aAAa;gBAAb,aAAa,EAAE,aAAa;IAE5C,kBAAkB,CAAC,OAAO,EAAE,wBAAwB;;;;;;;IAapD,aAAa,CACxB,OAAO,EAAE,gBAAgB,EACzB,aAAa,EAAE,GAAG,CAAC,MAAM,EAAE,UAAU,CAAC,EACtC,aAAa,EAAE,MAAM,GACpB,OAAO,CAAC,UAAU,EAAE,CAAC;IAkFX,WAAW,CAAC,OAAO,EAAE,cAAc;IAwEhD,OAAO,CAAC,qBAAqB;IAU7B,OAAO,CAAC,eAAe;YAcT,iBAAiB;CAqDhC"}
1
+ {"version":3,"file":"graphql-client.d.ts","sourceRoot":"","sources":["../../src/app-logs/graphql-client.ts"],"names":[],"mappings":"AAAA,OAAO,EAA6E,aAAa,EAAE,MAAM,YAAY,CAAC;AAEtH,OAAO,EACL,wBAAwB,EACxB,cAAc,EACd,gBAAgB,EAChB,UAAU,EACV,iBAAiB,EACjB,iBAAiB,EAClB,MAAM,aAAa,CAAC;AAwBrB,qBAAa,mBAAoB,SAAQ,KAAK;CAAG;AACjD,qBAAa,uBAAwB,SAAQ,KAAK;CAAG;AACrD,qBAAa,sBAAuB,SAAQ,KAAK;CAAG;AACpD,qBAAa,oBAAqB,SAAQ,KAAK;CAAG;AAElD,qBAAa,iBAAkB,YAAW,iBAAiB;IAC7C,OAAO,CAAC,QAAQ,CAAC,aAAa;gBAAb,aAAa,EAAE,aAAa;IAE5C,kBAAkB,CAAC,OAAO,EAAE,wBAAwB;;;;;;;IAapD,aAAa,CACxB,OAAO,EAAE,gBAAgB,EACzB,aAAa,EAAE,GAAG,CAAC,MAAM,EAAE,UAAU,CAAC,EACtC,aAAa,EAAE,MAAM,GACpB,OAAO,CAAC,UAAU,EAAE,CAAC;IAoFX,WAAW,CAAC,OAAO,EAAE,cAAc;IAwEhD,OAAO,CAAC,qBAAqB;IAU7B,OAAO,CAAC,eAAe;YAcT,iBAAiB;CAqDhC"}
@@ -42,7 +42,8 @@ class LogsGraphQLClient {
42
42
  $dateSearchInput: DateSearchInput,
43
43
  $offset: Int!,
44
44
  $limit: Int!,
45
- $queryStartTime: String!
45
+ $queryStartTime: String!,
46
+ $runtime: String
46
47
  ) {
47
48
  appLogsWithMetaData(
48
49
  appId: $appId
@@ -52,6 +53,7 @@ class LogsGraphQLClient {
52
53
  queryStartTime: $queryStartTime
53
54
  query: {
54
55
  dates: $dateSearchInput
56
+ runtime: $runtime
55
57
  }
56
58
  ) {
57
59
  appLogs {
@@ -17,6 +17,7 @@ export interface QueryDetails {
17
17
  limit: number;
18
18
  context?: InstallContext;
19
19
  startTime?: string | null;
20
+ containers?: boolean;
20
21
  }
21
22
  export declare type AppLogsDetails = {
22
23
  appId: string;
@@ -24,6 +25,7 @@ export declare type AppLogsDetails = {
24
25
  limit: number;
25
26
  startTime?: string | null;
26
27
  contextAri?: [Ari];
28
+ runtime?: string | null;
27
29
  };
28
30
  export declare type AppLogsDetailsV2 = AppLogsDetails & {
29
31
  offset: number;
@@ -52,6 +54,10 @@ export interface Invocation {
52
54
  function?: string;
53
55
  trigger?: string;
54
56
  }
57
+ export declare enum Runtime {
58
+ RUNTIMEV2 = "RUNTIMEV2",
59
+ CONTAINER = "CONTAINER"
60
+ }
55
61
  export interface ViewAppLogsClient {
56
62
  viewAppLogs(details: AppLogsDetails): Promise<Invocation[]>;
57
63
  viewAppLogsV2(details: AppLogsDetailsV2, invocationMap: Map<string, Invocation>, totalRecieved: number): Promise<Invocation[]>;
@@ -64,7 +70,7 @@ export declare class ViewAppLogsCommand {
64
70
  private readonly logsClient;
65
71
  private readonly statsigService;
66
72
  constructor(getAppConfig: AppConfigProvider, appEnvironmentClient: AppEnvironmentClient, globalEdgeClient: GlobalEdgeClient, logsClient: ViewAppLogsClient, statsigService: StatsigService);
67
- getAll({ environmentKey, limit, context, startTime }: QueryDetails): Promise<Invocation[]>;
73
+ getAll({ environmentKey, limit, context, startTime, containers }: QueryDetails): Promise<Invocation[]>;
68
74
  getLogs(details: AppLogsDetails): Promise<Invocation[]>;
69
75
  getOne(details: InvocationQueryDetails): Promise<Invocation>;
70
76
  }
@@ -1 +1 @@
1
- {"version":3,"file":"view-logs.d.ts","sourceRoot":"","sources":["../../src/app-logs/view-logs.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"view-logs.d.ts","sourceRoot":"","sources":["../../src/app-logs/view-logs.ts"],"names":[],"mappings":"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"}
@@ -1,8 +1,13 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ViewAppLogsCommand = void 0;
3
+ exports.ViewAppLogsCommand = exports.Runtime = void 0;
4
4
  const ari_1 = require("@forge/util/packages/ari");
5
5
  const ari_2 = require("../ari");
6
+ var Runtime;
7
+ (function (Runtime) {
8
+ Runtime["RUNTIMEV2"] = "RUNTIMEV2";
9
+ Runtime["CONTAINER"] = "CONTAINER";
10
+ })(Runtime = exports.Runtime || (exports.Runtime = {}));
6
11
  class ViewAppLogsCommand {
7
12
  getAppConfig;
8
13
  appEnvironmentClient;
@@ -16,7 +21,7 @@ class ViewAppLogsCommand {
16
21
  this.logsClient = logsClient;
17
22
  this.statsigService = statsigService;
18
23
  }
19
- async getAll({ environmentKey, limit, context, startTime = null }) {
24
+ async getAll({ environmentKey, limit, context, startTime = null, containers = false }) {
20
25
  const { id: appId } = await this.getAppConfig();
21
26
  const [environmentId, cloudId] = await Promise.all([
22
27
  this.appEnvironmentClient.getAppEnvironmentId(appId, environmentKey),
@@ -30,6 +35,9 @@ class ViewAppLogsCommand {
30
35
  startTime,
31
36
  contextAri: contextAri ? [contextAri] : undefined
32
37
  };
38
+ if (containers) {
39
+ details.runtime = Runtime.CONTAINER.toLowerCase();
40
+ }
33
41
  const isV2ApiEnabled = await this.statsigService.isLogsV2ApiEnabled();
34
42
  if (isV2ApiEnabled) {
35
43
  return this.getLogs(details);
@@ -1070,6 +1070,12 @@ export declare type AgentStudioUpdateCustomActionInput = {
1070
1070
  knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
1071
1071
  name: Scalars['String']['input'];
1072
1072
  };
1073
+ export declare type AgentStudioUpdateCustomActionMappingsPayload = Payload & {
1074
+ __typename?: 'AgentStudioUpdateCustomActionMappingsPayload';
1075
+ customActionList?: Maybe<Array<AgentStudioCustomAction>>;
1076
+ errors?: Maybe<Array<MutationError>>;
1077
+ success: Scalars['Boolean']['output'];
1078
+ };
1073
1079
  export declare type AgentStudioUpdateCustomActionPayload = Payload & {
1074
1080
  __typename?: 'AgentStudioUpdateCustomActionPayload';
1075
1081
  customAction?: Maybe<AgentStudioCustomAction>;
@@ -6386,6 +6392,7 @@ export declare type CompassComponentHasScorecardsAppliedEdge = {
6386
6392
  activeWorkItems?: Maybe<CompassComponentScorecardWorkItemsQueryResult>;
6387
6393
  cursor: Scalars['String']['output'];
6388
6394
  node?: Maybe<CompassScorecard>;
6395
+ score?: Maybe<CompassScorecardScoreResult>;
6389
6396
  scorecardScore?: Maybe<CompassScorecardScore>;
6390
6397
  };
6391
6398
  export declare type CompassComponentHasScorecardsAppliedEdgeActiveIssuesArgs = {
@@ -57777,8 +57784,14 @@ export declare type JiraBoardViewStatusColumn = JiraBoardViewColumn & {
57777
57784
  __typename?: 'JiraBoardViewStatusColumn';
57778
57785
  collapsed?: Maybe<Scalars['Boolean']['output']>;
57779
57786
  id: Scalars['ID']['output'];
57787
+ name?: Maybe<Scalars['String']['output']>;
57780
57788
  statuses?: Maybe<Array<Maybe<JiraStatus>>>;
57781
57789
  };
57790
+ export declare type JiraBoardViewStatusColumnMapping = {
57791
+ id?: InputMaybe<Scalars['ID']['input']>;
57792
+ name: Scalars['String']['input'];
57793
+ statusIds: Array<Scalars['ID']['input']>;
57794
+ };
57782
57795
  export declare type JiraBoardViewSyntheticFieldCardOption = JiraBoardViewCardOption & {
57783
57796
  __typename?: 'JiraBoardViewSyntheticFieldCardOption';
57784
57797
  canToggle?: Maybe<Scalars['Boolean']['output']>;
@@ -63573,6 +63586,17 @@ export declare enum JiraIssueViewTimestampDisplayMode {
63573
63586
  Absolute = "ABSOLUTE",
63574
63587
  Relative = "RELATIVE"
63575
63588
  }
63589
+ export declare enum JiraIssueViewUserPreferenceLayoutType {
63590
+ Custom = "CUSTOM",
63591
+ Discussion = "DISCUSSION",
63592
+ Standard = "STANDARD",
63593
+ Wide = "WIDE"
63594
+ }
63595
+ export declare type JiraIssueViewUserPreferredLayout = {
63596
+ __typename?: 'JiraIssueViewUserPreferredLayout';
63597
+ layoutId?: Maybe<Scalars['String']['output']>;
63598
+ layoutType?: Maybe<JiraIssueViewUserPreferenceLayoutType>;
63599
+ };
63576
63600
  export declare type JiraIssueWithScenario = {
63577
63601
  __typename?: 'JiraIssueWithScenario';
63578
63602
  errors?: Maybe<Array<QueryError>>;
@@ -63715,6 +63739,7 @@ export declare enum JiraJourneyParentIssueType {
63715
63739
  export declare type JiraJourneyParentIssueValueType = JiraServiceManagementRequestType;
63716
63740
  export declare type JiraJourneyProjectSettings = {
63717
63741
  __typename?: 'JiraJourneyProjectSettings';
63742
+ isJourneyEntitlementEnabled?: Maybe<Scalars['Boolean']['output']>;
63718
63743
  isJourneyFeatureEnabled?: Maybe<Scalars['Boolean']['output']>;
63719
63744
  };
63720
63745
  export declare type JiraJourneySettings = {
@@ -71307,6 +71332,17 @@ export declare type JiraSetBoardViewGroupByPayload = Payload & {
71307
71332
  success: Scalars['Boolean']['output'];
71308
71333
  view?: Maybe<JiraBoardView>;
71309
71334
  };
71335
+ export declare type JiraSetBoardViewStatusColumnMappingInput = {
71336
+ columns: Array<JiraBoardViewStatusColumnMapping>;
71337
+ settings?: InputMaybe<JiraBoardViewSettings>;
71338
+ viewId: Scalars['ID']['input'];
71339
+ };
71340
+ export declare type JiraSetBoardViewStatusColumnMappingPayload = Payload & {
71341
+ __typename?: 'JiraSetBoardViewStatusColumnMappingPayload';
71342
+ boardView?: Maybe<JiraBoardView>;
71343
+ errors?: Maybe<Array<MutationError>>;
71344
+ success: Scalars['Boolean']['output'];
71345
+ };
71310
71346
  export declare type JiraSetBoardViewWorkflowSelectedInput = {
71311
71347
  selectedWorkflowId: Scalars['ID']['input'];
71312
71348
  settings?: InputMaybe<JiraBoardViewSettings>;
@@ -73327,6 +73363,7 @@ export declare type JiraUserPreferences = {
73327
73363
  issueViewPinnedFieldsBannerLastInteracted?: Maybe<Scalars['DateTime']['output']>;
73328
73364
  issueViewSidebarResizeRatio?: Maybe<Scalars['String']['output']>;
73329
73365
  issueViewTimestampDisplayMode?: Maybe<JiraIssueViewTimestampDisplayMode>;
73366
+ issueViewUserPreferredLayout?: Maybe<JiraIssueViewUserPreferredLayout>;
73330
73367
  jqlBuilderSearchMode?: Maybe<JiraJqlBuilderSearchMode>;
73331
73368
  projectListRightPanelState?: Maybe<JiraProjectListRightPanelState>;
73332
73369
  requestTypeTableViewSettings?: Maybe<Scalars['String']['output']>;
@@ -76846,11 +76883,19 @@ export declare type LpLearnerCoursesArgs = {
76846
76883
  export declare type LpLearnerData = {
76847
76884
  __typename?: 'LpLearnerData';
76848
76885
  learnerByAtlassianId?: Maybe<LpLearner>;
76886
+ learnersByAtlassianIds?: Maybe<Array<Maybe<LpLearner>>>;
76887
+ learnersByIds?: Maybe<Array<Maybe<LpLearner>>>;
76849
76888
  node?: Maybe<Node>;
76850
76889
  };
76851
76890
  export declare type LpLearnerDataLearnerByAtlassianIdArgs = {
76852
76891
  atlassianId: Scalars['String']['input'];
76853
76892
  };
76893
+ export declare type LpLearnerDataLearnersByAtlassianIdsArgs = {
76894
+ atlassianIds: Array<Scalars['String']['input']>;
76895
+ };
76896
+ export declare type LpLearnerDataLearnersByIdsArgs = {
76897
+ ids: Array<Scalars['ID']['input']>;
76898
+ };
76854
76899
  export declare type LpLearnerDataNodeArgs = {
76855
76900
  id: Scalars['ID']['input'];
76856
76901
  };
@@ -76874,10 +76919,6 @@ export declare type LpQueryError = Node & {
76874
76919
  identifier?: Maybe<Scalars['ID']['output']>;
76875
76920
  message?: Maybe<Scalars['String']['output']>;
76876
76921
  };
76877
- export declare enum LpSortOrder {
76878
- Asc = "ASC",
76879
- Desc = "DESC"
76880
- }
76881
76922
  export declare type Macro = {
76882
76923
  __typename?: 'Macro';
76883
76924
  adf: Scalars['String']['output'];
@@ -81937,6 +81978,7 @@ export declare type Mutation = {
81937
81978
  agentStudio_updateAgentKnowledgeSources?: Maybe<AgentStudioUpdateAgentKnowledgeSourcesPayload>;
81938
81979
  agentStudio_updateConversationStarters?: Maybe<AgentStudioUpdateConversationStartersPayload>;
81939
81980
  agentStudio_updateCustomAction?: Maybe<AgentStudioUpdateCustomActionPayload>;
81981
+ agentStudio_updateCustomActionMappingsForContainer?: Maybe<AgentStudioUpdateCustomActionMappingsPayload>;
81940
81982
  appRecommendations?: Maybe<AppRecMutation>;
81941
81983
  appStorage?: Maybe<AppStorageMutation>;
81942
81984
  appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
@@ -82321,6 +82363,7 @@ export declare type Mutation = {
82321
82363
  jira_setBoardViewCompletedIssueSearchCutOff?: Maybe<JiraSetBoardViewCompletedIssueSearchCutOffPayload>;
82322
82364
  jira_setBoardViewFilter?: Maybe<JiraSetBoardViewFilterPayload>;
82323
82365
  jira_setBoardViewGroupBy?: Maybe<JiraSetBoardViewGroupByPayload>;
82366
+ jira_setBoardViewStatusColumnMapping?: Maybe<JiraSetBoardViewStatusColumnMappingPayload>;
82324
82367
  jira_setBoardViewWorkflowSelected?: Maybe<JiraSetBoardViewWorkflowSelectedPayload>;
82325
82368
  jira_setIssueSearchHideDoneItems?: Maybe<JiraSetIssueSearchHideDoneItemsPayload>;
82326
82369
  jira_setIssueSearchViewLayout?: Maybe<JiraSetIssueSearchViewLayoutPayload>;
@@ -82455,6 +82498,7 @@ export declare type Mutation = {
82455
82498
  spf_updateDependencyOwner?: Maybe<SpfUpdateDependencyPayload>;
82456
82499
  spf_updateDependencyPriority?: Maybe<SpfUpdateDependencyPayload>;
82457
82500
  spf_updateDependencyReceivingTeam?: Maybe<SpfUpdateDependencyPayload>;
82501
+ spf_updateDependencyRequester?: Maybe<SpfUpdateDependencyPayload>;
82458
82502
  spf_updateDependencyRequestingTeam?: Maybe<SpfUpdateDependencyPayload>;
82459
82503
  spf_updateDependencyStatus?: Maybe<SpfUpdateDependencyPayload>;
82460
82504
  spf_updateDependencyTargetDate?: Maybe<SpfUpdateDependencyPayload>;
@@ -82603,6 +82647,11 @@ export declare type MutationAgentStudio_UpdateCustomActionArgs = {
82603
82647
  id: Scalars['ID']['input'];
82604
82648
  input: AgentStudioUpdateCustomActionInput;
82605
82649
  };
82650
+ export declare type MutationAgentStudio_UpdateCustomActionMappingsForContainerArgs = {
82651
+ cloudId: Scalars['String']['input'];
82652
+ containerId: Scalars['String']['input'];
82653
+ customActionIds: Array<Scalars['ID']['input']>;
82654
+ };
82606
82655
  export declare type MutationApplyPolarisProjectTemplateArgs = {
82607
82656
  input: ApplyPolarisProjectTemplateInput;
82608
82657
  };
@@ -83827,6 +83876,9 @@ export declare type MutationJira_SetBoardViewFilterArgs = {
83827
83876
  export declare type MutationJira_SetBoardViewGroupByArgs = {
83828
83877
  input: JiraSetBoardViewGroupByInput;
83829
83878
  };
83879
+ export declare type MutationJira_SetBoardViewStatusColumnMappingArgs = {
83880
+ input: JiraSetBoardViewStatusColumnMappingInput;
83881
+ };
83830
83882
  export declare type MutationJira_SetBoardViewWorkflowSelectedArgs = {
83831
83883
  input: JiraSetBoardViewWorkflowSelectedInput;
83832
83884
  };
@@ -84220,6 +84272,9 @@ export declare type MutationSpf_UpdateDependencyPriorityArgs = {
84220
84272
  export declare type MutationSpf_UpdateDependencyReceivingTeamArgs = {
84221
84273
  input: SpfUpdateDependencyReceivingTeamInput;
84222
84274
  };
84275
+ export declare type MutationSpf_UpdateDependencyRequesterArgs = {
84276
+ input: SpfUpdateDependencyRequesterInput;
84277
+ };
84223
84278
  export declare type MutationSpf_UpdateDependencyRequestingTeamArgs = {
84224
84279
  input: SpfUpdateDependencyRequestingTeamInput;
84225
84280
  };
@@ -87920,7 +87975,7 @@ export declare type Query = {
87920
87975
  spacesWithExemptions?: Maybe<Array<Maybe<SpaceWithExemption>>>;
87921
87976
  spf_dependencies?: Maybe<SpfDependencyConnection>;
87922
87977
  spf_dependenciesByIds?: Maybe<Array<Maybe<SpfDependency>>>;
87923
- spf_dependency?: Maybe<SpfDependency>;
87978
+ spf_dependency?: Maybe<SpfDependencyResult>;
87924
87979
  sqlSchemaSizeLog: SqlSchemaSizeLogResponse;
87925
87980
  sqlSlowQueryLogs: Array<SqlSlowQueryLogsResponse>;
87926
87981
  stakeholderComms_getAssignmentsByStakeholder?: Maybe<StakeholderCommsPaginatedAssignmentResults>;
@@ -90996,13 +91051,23 @@ export declare type RadarConnector = {
90996
91051
  connectorId: Scalars['ID']['output'];
90997
91052
  connectorName?: Maybe<Scalars['String']['output']>;
90998
91053
  connectorType?: Maybe<Scalars['String']['output']>;
91054
+ hasData?: Maybe<Scalars['Boolean']['output']>;
90999
91055
  id: Scalars['ID']['output'];
91000
91056
  isEnabled: Scalars['Boolean']['output'];
91001
91057
  isHealthy?: Maybe<Scalars['Boolean']['output']>;
91058
+ type?: Maybe<RadarConnectorType>;
91002
91059
  };
91060
+ export declare enum RadarConnectorType {
91061
+ Csv = "CSV",
91062
+ Workday = "WORKDAY"
91063
+ }
91003
91064
  export declare type RadarConnectorsInput = {
91004
91065
  connectorId: Scalars['ID']['input'];
91066
+ connectorName?: InputMaybe<Scalars['String']['input']>;
91067
+ connectorType?: InputMaybe<Scalars['String']['input']>;
91068
+ hasData?: InputMaybe<Scalars['Boolean']['input']>;
91005
91069
  isEnabled: Scalars['Boolean']['input'];
91070
+ type?: InputMaybe<RadarConnectorType>;
91006
91071
  };
91007
91072
  export declare type RadarCustomFieldDefinition = RadarFieldDefinition & {
91008
91073
  __typename?: 'RadarCustomFieldDefinition';
@@ -96787,8 +96852,9 @@ export declare type SpfCommentConnection = {
96787
96852
  export declare type SpfCommentEdge = {
96788
96853
  __typename?: 'SpfCommentEdge';
96789
96854
  cursor: Scalars['String']['output'];
96790
- node?: Maybe<SpfComment>;
96855
+ node?: Maybe<SpfCommentResult>;
96791
96856
  };
96857
+ export declare type SpfCommentResult = QueryError | SpfComment;
96792
96858
  export declare type SpfCreateCommentInput = {
96793
96859
  data: Scalars['String']['input'];
96794
96860
  dependencyId: Scalars['ID']['input'];
@@ -96874,8 +96940,9 @@ export declare type SpfDependencyConnection = {
96874
96940
  export declare type SpfDependencyEdge = {
96875
96941
  __typename?: 'SpfDependencyEdge';
96876
96942
  cursor: Scalars['String']['output'];
96877
- node?: Maybe<SpfDependency>;
96943
+ node?: Maybe<SpfDependencyResult>;
96878
96944
  };
96945
+ export declare type SpfDependencyResult = QueryError | SpfDependency;
96879
96946
  export declare enum SpfDependencyStatus {
96880
96947
  Accepted = "ACCEPTED",
96881
96948
  Canceled = "CANCELED",
@@ -96910,8 +96977,9 @@ export declare type SpfRelatedContentConnection = {
96910
96977
  export declare type SpfRelatedContentEdge = {
96911
96978
  __typename?: 'SpfRelatedContentEdge';
96912
96979
  cursor: Scalars['String']['output'];
96913
- node?: Maybe<SpfRelatedContent>;
96980
+ node?: Maybe<SpfRelatedContentResult>;
96914
96981
  };
96982
+ export declare type SpfRelatedContentResult = QueryError | SpfRelatedContent;
96915
96983
  export declare type SpfTargetDate = {
96916
96984
  __typename?: 'SpfTargetDate';
96917
96985
  targetDate?: Maybe<Scalars['String']['output']>;
@@ -96970,6 +97038,10 @@ export declare type SpfUpdateDependencyReceivingTeamInput = {
96970
97038
  id: Scalars['ID']['input'];
96971
97039
  receivingTeamId?: InputMaybe<Scalars['String']['input']>;
96972
97040
  };
97041
+ export declare type SpfUpdateDependencyRequesterInput = {
97042
+ id: Scalars['ID']['input'];
97043
+ requesterId: Scalars['String']['input'];
97044
+ };
96973
97045
  export declare type SpfUpdateDependencyRequestingTeamInput = {
96974
97046
  id: Scalars['ID']['input'];
96975
97047
  requestingTeamId?: InputMaybe<Scalars['String']['input']>;