@forge/cli-shared 3.18.0-next.5 → 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,22 @@
|
|
|
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
|
+
|
|
14
|
+
## 3.18.0-next.6
|
|
15
|
+
|
|
16
|
+
### Minor Changes
|
|
17
|
+
|
|
18
|
+
- 424cf45e: Use CDN packaged wrapper script for the node runtime
|
|
19
|
+
|
|
3
20
|
## 3.18.0-next.5
|
|
4
21
|
|
|
5
22
|
### Patch 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<
|
|
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';
|
|
@@ -7529,6 +7530,7 @@ export type DevOps = {
|
|
|
7529
7530
|
summarisedEntities?: Maybe<Array<Maybe<DevOpsSummarisedEntities>>>;
|
|
7530
7531
|
providers?: Maybe<DevOpsProviders>;
|
|
7531
7532
|
providersByIds?: Maybe<Array<Maybe<DevOpsDataProvider>>>;
|
|
7533
|
+
providersByDomain?: Maybe<Array<Maybe<DevOpsDataProvider>>>;
|
|
7532
7534
|
ariGraph?: Maybe<AriGraph>;
|
|
7533
7535
|
graph?: Maybe<Graph>;
|
|
7534
7536
|
toolchain?: Maybe<Toolchain>;
|
|
@@ -7551,6 +7553,11 @@ export type DevOpsProvidersByIdsArgs = {
|
|
|
7551
7553
|
providerIds?: Maybe<Array<Scalars['String']>>;
|
|
7552
7554
|
providerTypes?: Maybe<Array<DevOpsProviderType>>;
|
|
7553
7555
|
};
|
|
7556
|
+
export type DevOpsProvidersByDomainArgs = {
|
|
7557
|
+
id: Scalars['ID'];
|
|
7558
|
+
providerDomain: Scalars['String'];
|
|
7559
|
+
providerTypes?: Maybe<Array<DevOpsProviderType>>;
|
|
7560
|
+
};
|
|
7554
7561
|
export type DevOpsAvatar = {
|
|
7555
7562
|
__typename?: 'DevOpsAvatar';
|
|
7556
7563
|
url?: Maybe<Scalars['URL']>;
|
|
@@ -20454,6 +20461,9 @@ export type LogQueryInput = {
|
|
|
20454
20461
|
installationContexts?: Maybe<Array<Scalars['ID']>>;
|
|
20455
20462
|
functionKey?: Maybe<Scalars['String']>;
|
|
20456
20463
|
appVersion?: Maybe<Scalars['String']>;
|
|
20464
|
+
lvl?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
20465
|
+
msg?: Maybe<Scalars['String']>;
|
|
20466
|
+
functionKeys?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
20457
20467
|
dates?: Maybe<DateSearchInput>;
|
|
20458
20468
|
};
|
|
20459
20469
|
export type MarketplaceApp = {
|
|
@@ -23868,6 +23878,9 @@ export type QueryAppLogLinesArgs = {
|
|
|
23868
23878
|
first?: Maybe<Scalars['Int']>;
|
|
23869
23879
|
after?: Maybe<Scalars['String']>;
|
|
23870
23880
|
invocation: Scalars['ID'];
|
|
23881
|
+
appId?: Maybe<Scalars['String']>;
|
|
23882
|
+
environmentId?: Maybe<Scalars['String']>;
|
|
23883
|
+
query?: Maybe<LogQueryInput>;
|
|
23871
23884
|
};
|
|
23872
23885
|
export type QueryDeveloperLogAccessArgs = {
|
|
23873
23886
|
contextIds: Array<Scalars['ID']>;
|
|
@@ -26763,6 +26776,12 @@ export type SupportRequestHierarchyRequests = {
|
|
|
26763
26776
|
total: Scalars['Int'];
|
|
26764
26777
|
page: Array<SupportRequestHierarchyRequest>;
|
|
26765
26778
|
};
|
|
26779
|
+
export type SupportRequestIdentityUser = {
|
|
26780
|
+
__typename?: 'SupportRequestIdentityUser';
|
|
26781
|
+
accountId?: Maybe<Scalars['ID']>;
|
|
26782
|
+
name: Scalars['String'];
|
|
26783
|
+
picture?: Maybe<Scalars['String']>;
|
|
26784
|
+
};
|
|
26766
26785
|
export type SupportRequestLastComment = {
|
|
26767
26786
|
__typename?: 'SupportRequestLastComment';
|
|
26768
26787
|
offset: Scalars['Int'];
|
|
@@ -26905,7 +26924,7 @@ export type SupportRequestUpdateInput = {
|
|
|
26905
26924
|
};
|
|
26906
26925
|
export type SupportRequestUser = {
|
|
26907
26926
|
__typename?: 'SupportRequestUser';
|
|
26908
|
-
user?: Maybe<
|
|
26927
|
+
user?: Maybe<SupportRequestIdentityUser>;
|
|
26909
26928
|
username?: Maybe<Scalars['String']>;
|
|
26910
26929
|
email?: Maybe<Scalars['String']>;
|
|
26911
26930
|
displayName?: Maybe<Scalars['String']>;
|