@forge/cli-shared 8.0.0-next.11 → 8.0.0-next.13

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,19 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 8.0.0-next.13
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [1992aaf]
8
+ - Updated dependencies [c2e09b9]
9
+ - @forge/manifest@10.0.0-next.11
10
+
11
+ ## 8.0.0-next.12
12
+
13
+ ### Major Changes
14
+
15
+ - d33186c: Resolved sorting issue in the displayed log lines
16
+
3
17
  ## 8.0.0-next.11
4
18
 
5
19
  ### Patch Changes
@@ -18,7 +18,7 @@ export declare class LogsGraphQLClient implements ViewAppLogsClient {
18
18
  function?: string | undefined;
19
19
  trigger?: string | undefined;
20
20
  }>;
21
- viewAppLogsV2(details: AppLogsDetailsV2, invocationMap: Map<string, Invocation>, totalRecieved: number): Promise<Invocation[]>;
21
+ viewAppLogsV2(details: AppLogsDetailsV2, invocationMap: Map<string, Invocation>, logLinesWithInvocation: Invocation[], totalRecieved: number): Promise<Invocation[]>;
22
22
  viewAppLogs(details: AppLogsDetails): Promise<Invocation[]>;
23
23
  private extractInvocationInfo;
24
24
  private extractLogLines;
@@ -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;IAoFX,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,sBAAsB,EAAE,UAAU,EAAE,EACpC,aAAa,EAAE,MAAM,GACpB,OAAO,CAAC,UAAU,EAAE,CAAC;IAoGX,WAAW,CAAC,OAAO,EAAE,cAAc;IAwEhD,OAAO,CAAC,qBAAqB;IAU7B,OAAO,CAAC,eAAe;YAcT,iBAAiB;CAqDhC"}
@@ -34,7 +34,7 @@ class LogsGraphQLClient {
34
34
  logs: result.lines.map(sanitizeLogLine)
35
35
  };
36
36
  }
37
- async viewAppLogsV2(details, invocationMap, totalRecieved) {
37
+ async viewAppLogsV2(details, invocationMap, logLinesWithInvocation, totalRecieved) {
38
38
  const query = `
39
39
  query forge_cli_getApplicationLogsV2(
40
40
  $appId: String!,
@@ -79,33 +79,48 @@ class LogsGraphQLClient {
79
79
  throw new MissingAppLogsError();
80
80
  }
81
81
  for (const logLine of result.appLogsWithMetaData.appLogs) {
82
- let logsMetadata = invocationMap.get(logLine.invocationId);
83
- if (!logsMetadata) {
84
- logsMetadata = {
85
- id: logLine.invocationId,
86
- appVersion: logLine.appVersion,
87
- function: logLine.functionKey || undefined,
88
- trigger: undefined,
89
- logs: []
90
- };
82
+ if (details.grouped) {
83
+ let logsMetadata = invocationMap.get(logLine.invocationId);
84
+ if (!logsMetadata) {
85
+ logsMetadata = {
86
+ id: logLine.invocationId,
87
+ appVersion: logLine.appVersion,
88
+ function: logLine.functionKey || undefined,
89
+ trigger: undefined,
90
+ logs: []
91
+ };
92
+ }
93
+ logsMetadata.logs.push({
94
+ message: logLine.message || undefined,
95
+ other: logLine.other ? JSON.parse(logLine.other) : [],
96
+ level: logLine.lvl || undefined,
97
+ timestamp: logLine.ts
98
+ });
99
+ invocationMap.set(logLine.invocationId, logsMetadata);
91
100
  }
92
- logsMetadata.logs.push({
93
- message: logLine.message || undefined,
94
- other: logLine.other ? JSON.parse(logLine.other) : [],
95
- level: logLine.lvl || undefined,
96
- timestamp: logLine.ts
101
+ logLinesWithInvocation.push({
102
+ id: logLine.invocationId,
103
+ appVersion: logLine.appVersion,
104
+ function: logLine.functionKey || undefined,
105
+ logs: [
106
+ {
107
+ message: logLine.message || undefined,
108
+ other: logLine.other ? JSON.parse(logLine.other) : [],
109
+ level: logLine.lvl || undefined,
110
+ timestamp: logLine.ts
111
+ }
112
+ ]
97
113
  });
98
- invocationMap.set(logLine.invocationId, logsMetadata);
99
114
  }
100
115
  const serverSideMaxLimit = result.appLogsWithMetaData.appLogs.length;
101
116
  totalRecieved += serverSideMaxLimit;
102
117
  if (result.appLogsWithMetaData.hasNextPage && details.maxLimit > totalRecieved) {
103
118
  details.offset = details.offset + serverSideMaxLimit;
104
119
  details.limit = details.limit - serverSideMaxLimit;
105
- return this.viewAppLogsV2(details, invocationMap, totalRecieved);
120
+ return this.viewAppLogsV2(details, invocationMap, logLinesWithInvocation, totalRecieved);
106
121
  }
107
122
  const invocations = [...invocationMap.values()];
108
- return invocations;
123
+ return details.grouped ? invocations : logLinesWithInvocation;
109
124
  }
110
125
  async viewAppLogs(details) {
111
126
  const query = `
@@ -18,11 +18,13 @@ export interface QueryDetails {
18
18
  context?: InstallContext;
19
19
  startTime?: string | null;
20
20
  containers?: boolean;
21
+ grouped?: boolean;
21
22
  }
22
23
  export declare type AppLogsDetails = {
23
24
  appId: string;
24
25
  environmentId: string;
25
26
  limit: number;
27
+ grouped?: boolean;
26
28
  startTime?: string | null;
27
29
  contextAri?: [Ari];
28
30
  runtime?: string | null;
@@ -60,7 +62,7 @@ export declare enum Runtime {
60
62
  }
61
63
  export interface ViewAppLogsClient {
62
64
  viewAppLogs(details: AppLogsDetails): Promise<Invocation[]>;
63
- viewAppLogsV2(details: AppLogsDetailsV2, invocationMap: Map<string, Invocation>, totalRecieved: number): Promise<Invocation[]>;
65
+ viewAppLogsV2(details: AppLogsDetailsV2, invocationMap: Map<string, Invocation>, logLinesWithInvocation: Invocation[], totalRecieved: number): Promise<Invocation[]>;
64
66
  viewInvocationLogs(details: AppInvocationLogsDetails): Promise<Invocation>;
65
67
  }
66
68
  export declare class ViewAppLogsCommand {
@@ -70,7 +72,7 @@ export declare class ViewAppLogsCommand {
70
72
  private readonly logsClient;
71
73
  private readonly statsigService;
72
74
  constructor(getAppConfig: AppConfigProvider, appEnvironmentClient: AppEnvironmentClient, globalEdgeClient: GlobalEdgeClient, logsClient: ViewAppLogsClient, statsigService: StatsigService);
73
- getAll({ environmentKey, limit, context, startTime, containers }: QueryDetails): Promise<Invocation[]>;
75
+ getAll({ environmentKey, limit, context, startTime, grouped, containers }: QueryDetails): Promise<Invocation[]>;
74
76
  getLogs(details: AppLogsDetails): Promise<Invocation[]>;
75
77
  getOne(details: InvocationQueryDetails): Promise<Invocation>;
76
78
  }
@@ -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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"}
@@ -21,7 +21,7 @@ class ViewAppLogsCommand {
21
21
  this.logsClient = logsClient;
22
22
  this.statsigService = statsigService;
23
23
  }
24
- async getAll({ environmentKey, limit, context, startTime = null, containers = false }) {
24
+ async getAll({ environmentKey, limit, context, startTime = null, grouped = false, containers = false }) {
25
25
  const { id: appId } = await this.getAppConfig();
26
26
  const [environmentId, cloudId] = await Promise.all([
27
27
  this.appEnvironmentClient.getAppEnvironmentId(appId, environmentKey),
@@ -33,7 +33,8 @@ class ViewAppLogsCommand {
33
33
  environmentId,
34
34
  limit,
35
35
  startTime,
36
- contextAri: contextAri ? [contextAri] : undefined
36
+ contextAri: contextAri ? [contextAri] : undefined,
37
+ grouped
37
38
  };
38
39
  if (containers) {
39
40
  details.runtime = Runtime.CONTAINER.toLowerCase();
@@ -63,7 +64,7 @@ class ViewAppLogsCommand {
63
64
  dateSearchInput,
64
65
  queryStartTime: earliestStart.toISOString(),
65
66
  maxLimit: details.limit
66
- }, new Map(), 0);
67
+ }, new Map(), [], 0);
67
68
  }
68
69
  async getOne(details) {
69
70
  return this.logsClient.viewInvocationLogs({ invocationId: details.invocationId });
@@ -872,7 +872,9 @@ export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
872
872
  connectedChannels?: Maybe<AgentStudioConnectedChannels>;
873
873
  conversationStarters?: Maybe<Array<Scalars['String']['output']>>;
874
874
  creator?: Maybe<User>;
875
+ creatorType?: Maybe<Scalars['String']['output']>;
875
876
  description?: Maybe<Scalars['String']['output']>;
877
+ externalConfigReference?: Maybe<Scalars['String']['output']>;
876
878
  id: Scalars['ID']['output'];
877
879
  instructions?: Maybe<Scalars['String']['output']>;
878
880
  isFavourite?: Maybe<Scalars['Boolean']['output']>;
@@ -4076,14 +4078,29 @@ export declare enum CcpEntitlementStatus {
4076
4078
  Active = "ACTIVE",
4077
4079
  Inactive = "INACTIVE"
4078
4080
  }
4079
- export declare type CcpEntitlementTemplate = {
4081
+ export declare type CcpEntitlementTemplate = Node & {
4080
4082
  __typename?: 'CcpEntitlementTemplate';
4083
+ catalogAccountKey?: Maybe<Scalars['ID']['output']>;
4084
+ createdAt?: Maybe<Scalars['Float']['output']>;
4081
4085
  data?: Maybe<Scalars['String']['output']>;
4086
+ defaultRevision?: Maybe<Scalars['Boolean']['output']>;
4087
+ description?: Maybe<Scalars['String']['output']>;
4088
+ id: Scalars['ID']['output'];
4082
4089
  key?: Maybe<Scalars['ID']['output']>;
4090
+ productKey?: Maybe<Scalars['String']['output']>;
4083
4091
  provisionedBy?: Maybe<Scalars['String']['output']>;
4092
+ status?: Maybe<CcpEntitlementTemplateStatus>;
4093
+ uniqueKey?: Maybe<Scalars['ID']['output']>;
4094
+ updatedAt?: Maybe<Scalars['Float']['output']>;
4084
4095
  userUsageInclusions?: Maybe<CcpEntitlementTemplateUserUsageInclusions>;
4085
4096
  version?: Maybe<Scalars['Int']['output']>;
4086
4097
  };
4098
+ export declare enum CcpEntitlementTemplateStatus {
4099
+ Deprecated = "DEPRECATED",
4100
+ None = "NONE",
4101
+ Published = "PUBLISHED",
4102
+ Unpublished = "UNPUBLISHED"
4103
+ }
4087
4104
  export declare type CcpEntitlementTemplateUserUsageInclusions = {
4088
4105
  __typename?: 'CcpEntitlementTemplateUserUsageInclusions';
4089
4106
  references?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
@@ -4850,6 +4867,7 @@ export declare type CcpQueryApi = {
4850
4867
  __typename?: 'CcpQueryApi';
4851
4868
  catalogAccounts?: Maybe<Array<Maybe<CcpCatalogAccount>>>;
4852
4869
  entitlement?: Maybe<CcpEntitlement>;
4870
+ entitlementTemplates?: Maybe<Array<Maybe<CcpEntitlementTemplate>>>;
4853
4871
  entitlements?: Maybe<Array<Maybe<CcpEntitlement>>>;
4854
4872
  experienceCapabilities?: Maybe<CcpRootExperienceCapabilities>;
4855
4873
  invoiceGroups?: Maybe<Array<Maybe<CcpInvoiceGroupV2>>>;
@@ -4872,6 +4890,9 @@ export declare type CcpQueryApiCatalogAccountsArgs = {
4872
4890
  export declare type CcpQueryApiEntitlementArgs = {
4873
4891
  id: Scalars['ID']['input'];
4874
4892
  };
4893
+ export declare type CcpQueryApiEntitlementTemplatesArgs = {
4894
+ ids: Array<Scalars['ID']['input']>;
4895
+ };
4875
4896
  export declare type CcpQueryApiEntitlementsArgs = {
4876
4897
  ids: Array<Scalars['ID']['input']>;
4877
4898
  };
@@ -5508,6 +5529,7 @@ export declare type ChannelPlatformSampleQueueConfig = {
5508
5529
  queueId?: Maybe<Scalars['ID']['output']>;
5509
5530
  };
5510
5531
  export declare type ChannelPlatformSubmitRequestInput = {
5532
+ metadata?: InputMaybe<Scalars['JSON']['input']>;
5511
5533
  name?: InputMaybe<Scalars['String']['input']>;
5512
5534
  payload?: InputMaybe<Scalars['JSON']['input']>;
5513
5535
  };
@@ -11069,6 +11091,10 @@ export declare type CompleteSprintResponse = MutationResponse & {
11069
11091
  success: Scalars['Boolean']['output'];
11070
11092
  taskId?: Maybe<Scalars['String']['output']>;
11071
11093
  };
11094
+ export declare enum ComplianceBoundary {
11095
+ Commercial = "COMMERCIAL",
11096
+ FedrampModerate = "FEDRAMP_MODERATE"
11097
+ }
11072
11098
  export declare type ComponentApiUpload = {
11073
11099
  __typename?: 'ComponentApiUpload';
11074
11100
  specUrl: Scalars['String']['output'];
@@ -11097,21 +11123,6 @@ export declare enum ComponentSyncEventStatus {
11097
11123
  Success = "SUCCESS",
11098
11124
  UserError = "USER_ERROR"
11099
11125
  }
11100
- export declare type ConfigurePolarisRefreshInput = {
11101
- autoRefreshTimeSeconds?: InputMaybe<Scalars['Int']['input']>;
11102
- clearError?: InputMaybe<Scalars['Boolean']['input']>;
11103
- disable?: InputMaybe<Scalars['Boolean']['input']>;
11104
- project: Scalars['ID']['input'];
11105
- setError?: InputMaybe<PolarisRefreshError>;
11106
- subject?: InputMaybe<Scalars['ID']['input']>;
11107
- timeToLiveSeconds?: InputMaybe<Scalars['Int']['input']>;
11108
- };
11109
- export declare type ConfigurePolarisRefreshPayload = Payload & {
11110
- __typename?: 'ConfigurePolarisRefreshPayload';
11111
- errors?: Maybe<Array<MutationError>>;
11112
- node?: Maybe<Scalars['Int']['output']>;
11113
- success: Scalars['Boolean']['output'];
11114
- };
11115
11126
  export declare type ConfluenceAdminAnnouncementBanner = {
11116
11127
  __typename?: 'ConfluenceAdminAnnouncementBanner';
11117
11128
  appearance: Scalars['String']['output'];
@@ -21610,6 +21621,7 @@ export declare type CreateInvitationUrlPayload = {
21610
21621
  export declare type CreateJiraPlaybookInput = {
21611
21622
  cloudId: Scalars['ID']['input'];
21612
21623
  filters?: InputMaybe<Array<JiraPlaybookIssueFilterInput>>;
21624
+ jql?: InputMaybe<Scalars['String']['input']>;
21613
21625
  name: Scalars['String']['input'];
21614
21626
  scopeId?: InputMaybe<Scalars['String']['input']>;
21615
21627
  scopeType: JiraPlaybookScopeType;
@@ -68065,6 +68077,7 @@ export declare type JiraPlaybook = Node & {
68065
68077
  __typename?: 'JiraPlaybook';
68066
68078
  filters?: Maybe<Array<JiraPlaybookIssueFilter>>;
68067
68079
  id: Scalars['ID']['output'];
68080
+ jql?: Maybe<Scalars['String']['output']>;
68068
68081
  name?: Maybe<Scalars['String']['output']>;
68069
68082
  owner?: Maybe<User>;
68070
68083
  scopeId?: Maybe<Scalars['String']['output']>;
@@ -68085,6 +68098,13 @@ export declare type JiraPlaybookEdge = {
68085
68098
  cursor: Scalars['String']['output'];
68086
68099
  node?: Maybe<JiraPlaybook>;
68087
68100
  };
68101
+ export declare type JiraPlaybookExecutionFilter = {
68102
+ contextId?: InputMaybe<Scalars['String']['input']>;
68103
+ endTime?: InputMaybe<Scalars['DateTime']['input']>;
68104
+ name?: InputMaybe<Scalars['String']['input']>;
68105
+ startTime?: InputMaybe<Scalars['DateTime']['input']>;
68106
+ status?: InputMaybe<Array<JiraPlaybookStepRunStatus>>;
68107
+ };
68088
68108
  export declare type JiraPlaybookFilter = {
68089
68109
  name?: InputMaybe<Scalars['String']['input']>;
68090
68110
  };
@@ -78436,6 +78456,7 @@ export declare type MarketplaceAppVersionEdge = {
78436
78456
  };
78437
78457
  export declare type MarketplaceAppVersionFilter = {
78438
78458
  cloudAppVersionId?: InputMaybe<Scalars['ID']['input']>;
78459
+ cloudComplianceBoundary?: InputMaybe<Array<InputMaybe<ComplianceBoundary>>>;
78439
78460
  excludeHiddenIn?: InputMaybe<MarketplaceLocation>;
78440
78461
  productHostingOptions?: InputMaybe<Array<AtlassianProductHostingType>>;
78441
78462
  visibility?: InputMaybe<MarketplaceAppVersionVisibility>;
@@ -83376,7 +83397,6 @@ export declare type Mutation = {
83376
83397
  clearRestrictionsForFree?: Maybe<ContentRestrictionsPageResponse>;
83377
83398
  compass?: Maybe<CompassCatalogMutationApi>;
83378
83399
  completeSprint?: Maybe<CompleteSprintResponse>;
83379
- configurePolarisRefresh?: Maybe<ConfigurePolarisRefreshPayload>;
83380
83400
  confluence?: Maybe<ConfluenceMutationApi>;
83381
83401
  confluenceLegacy_activatePaywallContent?: Maybe<ConfluenceLegacyActivatePaywallContentPayload>;
83382
83402
  confluenceLegacy_addDefaultExCoSpacePermissions?: Maybe<ConfluenceLegacyAddDefaultExCoSpacePermissionsPayload>;
@@ -84134,9 +84154,6 @@ export declare type MutationClearRestrictionsForFreeArgs = {
84134
84154
  export declare type MutationCompleteSprintArgs = {
84135
84155
  input?: InputMaybe<CompleteSprintInput>;
84136
84156
  };
84137
- export declare type MutationConfigurePolarisRefreshArgs = {
84138
- input: ConfigurePolarisRefreshInput;
84139
- };
84140
84157
  export declare type MutationConfluenceLegacy_ActivatePaywallContentArgs = {
84141
84158
  input: ConfluenceLegacyActivatePaywallContentInput;
84142
84159
  };
@@ -91834,6 +91851,7 @@ export declare type QueryPlaybook_JiraPlaybookStepRunsForProjectArgs = {
91834
91851
  after?: InputMaybe<Scalars['String']['input']>;
91835
91852
  cloudId: Scalars['ID']['input'];
91836
91853
  filter?: InputMaybe<JiraPlaybookFilter>;
91854
+ filters?: InputMaybe<JiraPlaybookExecutionFilter>;
91837
91855
  first?: InputMaybe<Scalars['Int']['input']>;
91838
91856
  projectKey: Scalars['String']['input'];
91839
91857
  };
@@ -105914,6 +105932,7 @@ export declare type UpdateInstallationDetailsResponse = {
105914
105932
  export declare type UpdateJiraPlaybookInput = {
105915
105933
  filters?: InputMaybe<Array<JiraPlaybookIssueFilterInput>>;
105916
105934
  id: Scalars['ID']['input'];
105935
+ jql?: InputMaybe<Scalars['String']['input']>;
105917
105936
  name: Scalars['String']['input'];
105918
105937
  scopeId?: InputMaybe<Scalars['String']['input']>;
105919
105938
  scopeType: JiraPlaybookScopeType;