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

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,11 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.18.0-next.6
4
+
5
+ ### Minor Changes
6
+
7
+ - 424cf45e: Use CDN packaged wrapper script for the node runtime
8
+
3
9
  ## 3.18.0-next.5
4
10
 
5
11
  ### Patch Changes
@@ -7529,6 +7529,7 @@ export type DevOps = {
7529
7529
  summarisedEntities?: Maybe<Array<Maybe<DevOpsSummarisedEntities>>>;
7530
7530
  providers?: Maybe<DevOpsProviders>;
7531
7531
  providersByIds?: Maybe<Array<Maybe<DevOpsDataProvider>>>;
7532
+ providersByDomain?: Maybe<Array<Maybe<DevOpsDataProvider>>>;
7532
7533
  ariGraph?: Maybe<AriGraph>;
7533
7534
  graph?: Maybe<Graph>;
7534
7535
  toolchain?: Maybe<Toolchain>;
@@ -7551,6 +7552,11 @@ export type DevOpsProvidersByIdsArgs = {
7551
7552
  providerIds?: Maybe<Array<Scalars['String']>>;
7552
7553
  providerTypes?: Maybe<Array<DevOpsProviderType>>;
7553
7554
  };
7555
+ export type DevOpsProvidersByDomainArgs = {
7556
+ id: Scalars['ID'];
7557
+ providerDomain: Scalars['String'];
7558
+ providerTypes?: Maybe<Array<DevOpsProviderType>>;
7559
+ };
7554
7560
  export type DevOpsAvatar = {
7555
7561
  __typename?: 'DevOpsAvatar';
7556
7562
  url?: Maybe<Scalars['URL']>;
@@ -26763,6 +26769,12 @@ export type SupportRequestHierarchyRequests = {
26763
26769
  total: Scalars['Int'];
26764
26770
  page: Array<SupportRequestHierarchyRequest>;
26765
26771
  };
26772
+ export type SupportRequestIdentityUser = {
26773
+ __typename?: 'SupportRequestIdentityUser';
26774
+ accountId?: Maybe<Scalars['ID']>;
26775
+ name: Scalars['String'];
26776
+ picture?: Maybe<Scalars['String']>;
26777
+ };
26766
26778
  export type SupportRequestLastComment = {
26767
26779
  __typename?: 'SupportRequestLastComment';
26768
26780
  offset: Scalars['Int'];
@@ -26905,7 +26917,7 @@ export type SupportRequestUpdateInput = {
26905
26917
  };
26906
26918
  export type SupportRequestUser = {
26907
26919
  __typename?: 'SupportRequestUser';
26908
- user?: Maybe<User>;
26920
+ user?: Maybe<SupportRequestIdentityUser>;
26909
26921
  username?: Maybe<Scalars['String']>;
26910
26922
  email?: Maybe<Scalars['String']>;
26911
26923
  displayName?: Maybe<Scalars['String']>;