@forge/cli-shared 3.19.1-next.4 → 3.19.1-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,21 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.19.1-next.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 37d6fdb: Bumping dependencies via Renovate:
|
|
8
|
+
|
|
9
|
+
- ignore-walk
|
|
10
|
+
|
|
11
|
+
## 3.19.1-next.5
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- e534bed5: Bumping dependencies via Renovate:
|
|
16
|
+
|
|
17
|
+
- ignore-walk
|
|
18
|
+
|
|
3
19
|
## 3.19.1-next.4
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
@@ -11767,6 +11767,85 @@ export type HelpCenterUpdateTopicsOrderPayload = Payload & {
|
|
|
11767
11767
|
errors?: Maybe<Array<MutationError>>;
|
|
11768
11768
|
success: Scalars['Boolean']['output'];
|
|
11769
11769
|
};
|
|
11770
|
+
export type HelpExternalResource = Node & {
|
|
11771
|
+
__typename?: 'HelpExternalResource';
|
|
11772
|
+
containerAti: Scalars['String']['output'];
|
|
11773
|
+
containerId: Scalars['String']['output'];
|
|
11774
|
+
created: Scalars['String']['output'];
|
|
11775
|
+
description: Scalars['String']['output'];
|
|
11776
|
+
id: Scalars['ID']['output'];
|
|
11777
|
+
link: Scalars['String']['output'];
|
|
11778
|
+
resourceType: HelpExternalResourceLinkResourceType;
|
|
11779
|
+
title: Scalars['String']['output'];
|
|
11780
|
+
updated: Scalars['String']['output'];
|
|
11781
|
+
};
|
|
11782
|
+
export type HelpExternalResourceCreateInput = {
|
|
11783
|
+
containerAti: Scalars['String']['input'];
|
|
11784
|
+
containerId: Scalars['String']['input'];
|
|
11785
|
+
description: Scalars['String']['input'];
|
|
11786
|
+
link: Scalars['String']['input'];
|
|
11787
|
+
resourceType: HelpExternalResourceLinkResourceType;
|
|
11788
|
+
title: Scalars['String']['input'];
|
|
11789
|
+
};
|
|
11790
|
+
export type HelpExternalResourceEdge = {
|
|
11791
|
+
__typename?: 'HelpExternalResourceEdge';
|
|
11792
|
+
cursor: Scalars['String']['output'];
|
|
11793
|
+
node?: Maybe<HelpExternalResource>;
|
|
11794
|
+
};
|
|
11795
|
+
export declare enum HelpExternalResourceLinkResourceType {
|
|
11796
|
+
Channel = "CHANNEL",
|
|
11797
|
+
Knowledge = "KNOWLEDGE",
|
|
11798
|
+
RequestForm = "REQUEST_FORM"
|
|
11799
|
+
}
|
|
11800
|
+
export type HelpExternalResourceMutationApi = {
|
|
11801
|
+
__typename?: 'HelpExternalResourceMutationApi';
|
|
11802
|
+
createExternalResource?: Maybe<HelpExternalResourcePayload>;
|
|
11803
|
+
deleteExternalResource?: Maybe<HelpExternalResourcePayload>;
|
|
11804
|
+
updateExternalResource?: Maybe<HelpExternalResourcePayload>;
|
|
11805
|
+
};
|
|
11806
|
+
export type HelpExternalResourceMutationApiCreateExternalResourceArgs = {
|
|
11807
|
+
input: HelpExternalResourceCreateInput;
|
|
11808
|
+
};
|
|
11809
|
+
export type HelpExternalResourceMutationApiDeleteExternalResourceArgs = {
|
|
11810
|
+
id: Scalars['ID']['input'];
|
|
11811
|
+
};
|
|
11812
|
+
export type HelpExternalResourceMutationApiUpdateExternalResourceArgs = {
|
|
11813
|
+
input: HelpExternalResourceUpdateInput;
|
|
11814
|
+
};
|
|
11815
|
+
export type HelpExternalResourcePayload = Payload & {
|
|
11816
|
+
__typename?: 'HelpExternalResourcePayload';
|
|
11817
|
+
errors?: Maybe<Array<MutationError>>;
|
|
11818
|
+
externalResource?: Maybe<HelpExternalResource>;
|
|
11819
|
+
success: Scalars['Boolean']['output'];
|
|
11820
|
+
};
|
|
11821
|
+
export type HelpExternalResourceQueryApi = {
|
|
11822
|
+
__typename?: 'HelpExternalResourceQueryApi';
|
|
11823
|
+
getExternalResources?: Maybe<HelpExternalResourcesResult>;
|
|
11824
|
+
};
|
|
11825
|
+
export type HelpExternalResourceQueryApiGetExternalResourcesArgs = {
|
|
11826
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
11827
|
+
containerAti: Scalars['String']['input'];
|
|
11828
|
+
containerId: Scalars['String']['input'];
|
|
11829
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
11830
|
+
};
|
|
11831
|
+
export type HelpExternalResourceQueryError = {
|
|
11832
|
+
__typename?: 'HelpExternalResourceQueryError';
|
|
11833
|
+
extensions?: Maybe<Array<QueryErrorExtension>>;
|
|
11834
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
11835
|
+
};
|
|
11836
|
+
export type HelpExternalResourceUpdateInput = {
|
|
11837
|
+
description: Scalars['String']['input'];
|
|
11838
|
+
id: Scalars['ID']['input'];
|
|
11839
|
+
link: Scalars['String']['input'];
|
|
11840
|
+
title: Scalars['String']['input'];
|
|
11841
|
+
};
|
|
11842
|
+
export type HelpExternalResources = {
|
|
11843
|
+
__typename?: 'HelpExternalResources';
|
|
11844
|
+
edges: Array<Maybe<HelpExternalResourceEdge>>;
|
|
11845
|
+
pageInfo: PageInfo;
|
|
11846
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
11847
|
+
};
|
|
11848
|
+
export type HelpExternalResourcesResult = HelpExternalResourceQueryError | HelpExternalResources;
|
|
11770
11849
|
export type HelpLayout = Node & {
|
|
11771
11850
|
__typename?: 'HelpLayout';
|
|
11772
11851
|
id: Scalars['ID']['output'];
|
|
@@ -27440,8 +27519,8 @@ export type ShepherdDetection = {
|
|
|
27440
27519
|
};
|
|
27441
27520
|
export type ShepherdDetectionBooleanSetting = {
|
|
27442
27521
|
__typename?: 'ShepherdDetectionBooleanSetting';
|
|
27443
|
-
|
|
27444
|
-
|
|
27522
|
+
booleanDefault: Scalars['Boolean']['output'];
|
|
27523
|
+
booleanValue?: Maybe<Scalars['Boolean']['output']>;
|
|
27445
27524
|
};
|
|
27446
27525
|
export declare enum ShepherdDetectionScanningFrequency {
|
|
27447
27526
|
RealTime = "REAL_TIME",
|
|
@@ -29994,6 +30073,10 @@ export type TrelloImagePreviewUpdatedConnection = {
|
|
|
29994
30073
|
__typename?: 'TrelloImagePreviewUpdatedConnection';
|
|
29995
30074
|
nodes?: Maybe<Array<TrelloImagePreview>>;
|
|
29996
30075
|
};
|
|
30076
|
+
export type TrelloJwmWorkspaceLink = {
|
|
30077
|
+
__typename?: 'TrelloJwmWorkspaceLink';
|
|
30078
|
+
entityUrl?: Maybe<Scalars['URL']['output']>;
|
|
30079
|
+
};
|
|
29997
30080
|
export type TrelloLabel = {
|
|
29998
30081
|
__typename?: 'TrelloLabel';
|
|
29999
30082
|
color?: Maybe<Scalars['String']['output']>;
|
|
@@ -30429,6 +30512,7 @@ export type TrelloWorkspace = Node & {
|
|
|
30429
30512
|
displayName: Scalars['String']['output'];
|
|
30430
30513
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
30431
30514
|
id: Scalars['ID']['output'];
|
|
30515
|
+
jwmLink?: Maybe<TrelloJwmWorkspaceLink>;
|
|
30432
30516
|
logoHash?: Maybe<Scalars['String']['output']>;
|
|
30433
30517
|
logoUrl?: Maybe<Scalars['String']['output']>;
|
|
30434
30518
|
members?: Maybe<TrelloWorkspaceMembershipsConnection>;
|
|
@@ -30474,6 +30558,9 @@ export type TrelloWorkspaceMembershipsConnection = {
|
|
|
30474
30558
|
export type TrelloWorkspacePrefs = {
|
|
30475
30559
|
__typename?: 'TrelloWorkspacePrefs';
|
|
30476
30560
|
associatedDomain?: Maybe<Scalars['String']['output']>;
|
|
30561
|
+
attachmentRestrictions?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
30562
|
+
boardInviteRestrict?: Maybe<Scalars['String']['output']>;
|
|
30563
|
+
externalMembersDisabled?: Maybe<Scalars['Boolean']['output']>;
|
|
30477
30564
|
};
|
|
30478
30565
|
export type TunnelDefinitionsInput = {
|
|
30479
30566
|
customUI?: InputMaybe<Array<InputMaybe<CustomUiTunnelDefinitionInput>>>;
|