@forge/cli-shared 3.18.0-next.6 → 3.18.0-next.7

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,16 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.18.0-next.7
4
+
5
+ ### Patch Changes
6
+
7
+ - 9f70463: Bumping dependencies via Renovate:
8
+
9
+ - node-fetch
10
+
11
+ - Updated dependencies [9f70463]
12
+ - @forge/manifest@4.20.0-next.4
13
+
3
14
  ## 3.18.0-next.6
4
15
 
5
16
  ### Minor Changes
@@ -1022,10 +1022,11 @@ export type AppLog = FunctionInvocationMetadata & Node & {
1022
1022
  moduleType?: Maybe<Scalars['String']>;
1023
1023
  startTime?: Maybe<Scalars['String']>;
1024
1024
  traceId?: Maybe<Scalars['ID']>;
1025
- appLogLines?: Maybe<AppLogLines>;
1025
+ appLogLines?: Maybe<AppLogLineConnection>;
1026
1026
  };
1027
1027
  export type AppLogAppLogLinesArgs = {
1028
1028
  first?: Maybe<Scalars['Int']>;
1029
+ query?: Maybe<LogQueryInput>;
1029
1030
  };
1030
1031
  export type AppLogConnection = {
1031
1032
  __typename?: 'AppLogConnection';
@@ -20460,6 +20461,9 @@ export type LogQueryInput = {
20460
20461
  installationContexts?: Maybe<Array<Scalars['ID']>>;
20461
20462
  functionKey?: Maybe<Scalars['String']>;
20462
20463
  appVersion?: Maybe<Scalars['String']>;
20464
+ lvl?: Maybe<Array<Maybe<Scalars['String']>>>;
20465
+ msg?: Maybe<Scalars['String']>;
20466
+ functionKeys?: Maybe<Array<Maybe<Scalars['String']>>>;
20463
20467
  dates?: Maybe<DateSearchInput>;
20464
20468
  };
20465
20469
  export type MarketplaceApp = {
@@ -23874,6 +23878,9 @@ export type QueryAppLogLinesArgs = {
23874
23878
  first?: Maybe<Scalars['Int']>;
23875
23879
  after?: Maybe<Scalars['String']>;
23876
23880
  invocation: Scalars['ID'];
23881
+ appId?: Maybe<Scalars['String']>;
23882
+ environmentId?: Maybe<Scalars['String']>;
23883
+ query?: Maybe<LogQueryInput>;
23877
23884
  };
23878
23885
  export type QueryDeveloperLogAccessArgs = {
23879
23886
  contextIds: Array<Scalars['ID']>;