@forge/cli-shared 3.12.0-next.5 → 3.12.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
|
@@ -20266,6 +20266,7 @@ export declare enum RateLimitingCurrency {
|
|
|
20266
20266
|
TeamsCurrency = "TEAMS_CURRENCY",
|
|
20267
20267
|
TeamMembersCurrency = "TEAM_MEMBERS_CURRENCY",
|
|
20268
20268
|
TeamSearchCurrency = "TEAM_SEARCH_CURRENCY",
|
|
20269
|
+
TeamSearchV2Currency = "TEAM_SEARCH_V2_CURRENCY",
|
|
20269
20270
|
PolarisCurrency = "POLARIS_CURRENCY",
|
|
20270
20271
|
CompassSynchronizeLinkAssociationsCurrency = "COMPASS_SYNCHRONIZE_LINK_ASSOCIATIONS_CURRENCY",
|
|
20271
20272
|
HelpObjectStoreCurrency = "HELP_OBJECT_STORE_CURRENCY",
|
|
@@ -21827,6 +21828,7 @@ export declare type ShepherdAlert = Node & {
|
|
|
21827
21828
|
id: Scalars['ID'];
|
|
21828
21829
|
orgId?: Maybe<Scalars['ID']>;
|
|
21829
21830
|
status: ShepherdAlertStatus;
|
|
21831
|
+
statusUpdatedOn?: Maybe<Scalars['DateTime']>;
|
|
21830
21832
|
supportingData?: Maybe<ShepherdAlertSupportingData>;
|
|
21831
21833
|
template?: Maybe<ShepherdAlertTemplateType>;
|
|
21832
21834
|
title: Scalars['String'];
|
|
@@ -23153,6 +23155,7 @@ export declare type TeamQuery = {
|
|
|
23153
23155
|
__typename?: 'TeamQuery';
|
|
23154
23156
|
team?: Maybe<Team>;
|
|
23155
23157
|
teamSearch?: Maybe<TeamSearchResultConnection>;
|
|
23158
|
+
teamSearchV2?: Maybe<TeamSearchResultConnection>;
|
|
23156
23159
|
};
|
|
23157
23160
|
export declare type TeamQueryTeamArgs = {
|
|
23158
23161
|
id: Scalars['ID'];
|
|
@@ -23164,6 +23167,14 @@ export declare type TeamQueryTeamSearchArgs = {
|
|
|
23164
23167
|
after?: Maybe<Scalars['String']>;
|
|
23165
23168
|
sortBy?: Maybe<Array<Maybe<TeamSort>>>;
|
|
23166
23169
|
};
|
|
23170
|
+
export declare type TeamQueryTeamSearchV2Args = {
|
|
23171
|
+
organizationId: Scalars['ID'];
|
|
23172
|
+
siteId: Scalars['String'];
|
|
23173
|
+
filter?: Maybe<TeamSearchFilter>;
|
|
23174
|
+
first?: Maybe<Scalars['Int']>;
|
|
23175
|
+
after?: Maybe<Scalars['String']>;
|
|
23176
|
+
sortBy?: Maybe<Array<Maybe<TeamSort>>>;
|
|
23177
|
+
};
|
|
23167
23178
|
export declare type TeamSearchFilter = {
|
|
23168
23179
|
query?: Maybe<Scalars['String']>;
|
|
23169
23180
|
membership?: Maybe<TeamMembershipFilter>;
|
|
@@ -23209,6 +23220,12 @@ export declare type TenantContext = {
|
|
|
23209
23220
|
hostName?: Maybe<Scalars['String']>;
|
|
23210
23221
|
cloudUrl?: Maybe<Scalars['URL']>;
|
|
23211
23222
|
orgId?: Maybe<Scalars['ID']>;
|
|
23223
|
+
customDomains?: Maybe<Array<TenantContextCustomDomain>>;
|
|
23224
|
+
};
|
|
23225
|
+
export declare type TenantContextCustomDomain = {
|
|
23226
|
+
__typename?: 'TenantContextCustomDomain';
|
|
23227
|
+
product?: Maybe<Scalars['String']>;
|
|
23228
|
+
hostName?: Maybe<Scalars['String']>;
|
|
23212
23229
|
};
|
|
23213
23230
|
export declare type Testing = {
|
|
23214
23231
|
__typename?: 'Testing';
|