@forge/cli-shared 8.0.0-next.11 → 8.0.0-next.12
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 +6 -0
- package/out/app-logs/graphql-client.d.ts +1 -1
- package/out/app-logs/graphql-client.d.ts.map +1 -1
- package/out/app-logs/graphql-client.js +33 -18
- package/out/app-logs/view-logs.d.ts +4 -2
- package/out/app-logs/view-logs.d.ts.map +1 -1
- package/out/app-logs/view-logs.js +4 -3
- package/out/graphql/graphql-types.d.ts +17 -19
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +29 -24
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -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;
|
|
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
|
-
|
|
83
|
-
|
|
84
|
-
logsMetadata
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
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
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
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":";AAAA,OAAO,EAAE,GAAG,EAAmB,MAAM,0BAA0B,CAAC;AAChE,OAAO,EAAE,GAAG,EAAE,MAAM,KAAK,CAAC;AAE1B,OAAO,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAC;AAE5C,OAAO,EAAE,oBAAoB,EAAE,eAAe,EAAE,MAAM,YAAY,CAAC;AACnE,OAAO,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAC;AAClD,OAAO,EAAE,cAAc,EAAE,MAAM,YAAY,CAAC;AAE5C,MAAM,WAAW,cAAc;IAC7B,IAAI,EAAE,GAAG,CAAC;IACV,OAAO,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,kBAAkB;IACjC,cAAc,EAAE,MAAM,CAAC;CACxB;AAED,MAAM,WAAW,YAAY;IAC3B,cAAc,EAAE,MAAM,CAAC;IACvB,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,cAAc,CAAC;IACzB,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B,UAAU,CAAC,EAAE,OAAO,CAAC;
|
|
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 });
|
|
@@ -5508,6 +5508,7 @@ export declare type ChannelPlatformSampleQueueConfig = {
|
|
|
5508
5508
|
queueId?: Maybe<Scalars['ID']['output']>;
|
|
5509
5509
|
};
|
|
5510
5510
|
export declare type ChannelPlatformSubmitRequestInput = {
|
|
5511
|
+
metadata?: InputMaybe<Scalars['JSON']['input']>;
|
|
5511
5512
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
5512
5513
|
payload?: InputMaybe<Scalars['JSON']['input']>;
|
|
5513
5514
|
};
|
|
@@ -11069,6 +11070,10 @@ export declare type CompleteSprintResponse = MutationResponse & {
|
|
|
11069
11070
|
success: Scalars['Boolean']['output'];
|
|
11070
11071
|
taskId?: Maybe<Scalars['String']['output']>;
|
|
11071
11072
|
};
|
|
11073
|
+
export declare enum ComplianceBoundary {
|
|
11074
|
+
Commercial = "COMMERCIAL",
|
|
11075
|
+
FedrampModerate = "FEDRAMP_MODERATE"
|
|
11076
|
+
}
|
|
11072
11077
|
export declare type ComponentApiUpload = {
|
|
11073
11078
|
__typename?: 'ComponentApiUpload';
|
|
11074
11079
|
specUrl: Scalars['String']['output'];
|
|
@@ -11097,21 +11102,6 @@ export declare enum ComponentSyncEventStatus {
|
|
|
11097
11102
|
Success = "SUCCESS",
|
|
11098
11103
|
UserError = "USER_ERROR"
|
|
11099
11104
|
}
|
|
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
11105
|
export declare type ConfluenceAdminAnnouncementBanner = {
|
|
11116
11106
|
__typename?: 'ConfluenceAdminAnnouncementBanner';
|
|
11117
11107
|
appearance: Scalars['String']['output'];
|
|
@@ -21610,6 +21600,7 @@ export declare type CreateInvitationUrlPayload = {
|
|
|
21610
21600
|
export declare type CreateJiraPlaybookInput = {
|
|
21611
21601
|
cloudId: Scalars['ID']['input'];
|
|
21612
21602
|
filters?: InputMaybe<Array<JiraPlaybookIssueFilterInput>>;
|
|
21603
|
+
jql?: InputMaybe<Scalars['String']['input']>;
|
|
21613
21604
|
name: Scalars['String']['input'];
|
|
21614
21605
|
scopeId?: InputMaybe<Scalars['String']['input']>;
|
|
21615
21606
|
scopeType: JiraPlaybookScopeType;
|
|
@@ -68065,6 +68056,7 @@ export declare type JiraPlaybook = Node & {
|
|
|
68065
68056
|
__typename?: 'JiraPlaybook';
|
|
68066
68057
|
filters?: Maybe<Array<JiraPlaybookIssueFilter>>;
|
|
68067
68058
|
id: Scalars['ID']['output'];
|
|
68059
|
+
jql?: Maybe<Scalars['String']['output']>;
|
|
68068
68060
|
name?: Maybe<Scalars['String']['output']>;
|
|
68069
68061
|
owner?: Maybe<User>;
|
|
68070
68062
|
scopeId?: Maybe<Scalars['String']['output']>;
|
|
@@ -68085,6 +68077,13 @@ export declare type JiraPlaybookEdge = {
|
|
|
68085
68077
|
cursor: Scalars['String']['output'];
|
|
68086
68078
|
node?: Maybe<JiraPlaybook>;
|
|
68087
68079
|
};
|
|
68080
|
+
export declare type JiraPlaybookExecutionFilter = {
|
|
68081
|
+
contextId?: InputMaybe<Scalars['String']['input']>;
|
|
68082
|
+
endTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
68083
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
68084
|
+
startTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
68085
|
+
status?: InputMaybe<Array<JiraPlaybookStepRunStatus>>;
|
|
68086
|
+
};
|
|
68088
68087
|
export declare type JiraPlaybookFilter = {
|
|
68089
68088
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
68090
68089
|
};
|
|
@@ -78436,6 +78435,7 @@ export declare type MarketplaceAppVersionEdge = {
|
|
|
78436
78435
|
};
|
|
78437
78436
|
export declare type MarketplaceAppVersionFilter = {
|
|
78438
78437
|
cloudAppVersionId?: InputMaybe<Scalars['ID']['input']>;
|
|
78438
|
+
cloudComplianceBoundary?: InputMaybe<Array<InputMaybe<ComplianceBoundary>>>;
|
|
78439
78439
|
excludeHiddenIn?: InputMaybe<MarketplaceLocation>;
|
|
78440
78440
|
productHostingOptions?: InputMaybe<Array<AtlassianProductHostingType>>;
|
|
78441
78441
|
visibility?: InputMaybe<MarketplaceAppVersionVisibility>;
|
|
@@ -83376,7 +83376,6 @@ export declare type Mutation = {
|
|
|
83376
83376
|
clearRestrictionsForFree?: Maybe<ContentRestrictionsPageResponse>;
|
|
83377
83377
|
compass?: Maybe<CompassCatalogMutationApi>;
|
|
83378
83378
|
completeSprint?: Maybe<CompleteSprintResponse>;
|
|
83379
|
-
configurePolarisRefresh?: Maybe<ConfigurePolarisRefreshPayload>;
|
|
83380
83379
|
confluence?: Maybe<ConfluenceMutationApi>;
|
|
83381
83380
|
confluenceLegacy_activatePaywallContent?: Maybe<ConfluenceLegacyActivatePaywallContentPayload>;
|
|
83382
83381
|
confluenceLegacy_addDefaultExCoSpacePermissions?: Maybe<ConfluenceLegacyAddDefaultExCoSpacePermissionsPayload>;
|
|
@@ -84134,9 +84133,6 @@ export declare type MutationClearRestrictionsForFreeArgs = {
|
|
|
84134
84133
|
export declare type MutationCompleteSprintArgs = {
|
|
84135
84134
|
input?: InputMaybe<CompleteSprintInput>;
|
|
84136
84135
|
};
|
|
84137
|
-
export declare type MutationConfigurePolarisRefreshArgs = {
|
|
84138
|
-
input: ConfigurePolarisRefreshInput;
|
|
84139
|
-
};
|
|
84140
84136
|
export declare type MutationConfluenceLegacy_ActivatePaywallContentArgs = {
|
|
84141
84137
|
input: ConfluenceLegacyActivatePaywallContentInput;
|
|
84142
84138
|
};
|
|
@@ -91834,6 +91830,7 @@ export declare type QueryPlaybook_JiraPlaybookStepRunsForProjectArgs = {
|
|
|
91834
91830
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
91835
91831
|
cloudId: Scalars['ID']['input'];
|
|
91836
91832
|
filter?: InputMaybe<JiraPlaybookFilter>;
|
|
91833
|
+
filters?: InputMaybe<JiraPlaybookExecutionFilter>;
|
|
91837
91834
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
91838
91835
|
projectKey: Scalars['String']['input'];
|
|
91839
91836
|
};
|
|
@@ -105914,6 +105911,7 @@ export declare type UpdateInstallationDetailsResponse = {
|
|
|
105914
105911
|
export declare type UpdateJiraPlaybookInput = {
|
|
105915
105912
|
filters?: InputMaybe<Array<JiraPlaybookIssueFilterInput>>;
|
|
105916
105913
|
id: Scalars['ID']['input'];
|
|
105914
|
+
jql?: InputMaybe<Scalars['String']['input']>;
|
|
105917
105915
|
name: Scalars['String']['input'];
|
|
105918
105916
|
scopeId?: InputMaybe<Scalars['String']['input']>;
|
|
105919
105917
|
scopeType: JiraPlaybookScopeType;
|