npm package diff
Package: @forge/cli-shared
Versions: 8.4.0 - 8.5.0-next.0
File: package/out/graphql/graphql-types.d.ts
Index: package/out/graphql/graphql-types.d.ts
===================================================================
--- package/out/graphql/graphql-types.d.ts
+++ package/out/graphql/graphql-types.d.ts
@@ -19927,8 +19927,78 @@
attributes?: Maybe<Array<CustomerServiceAttribute>>;
maxAllowedAttributes?: Maybe<Scalars['Int']['output']>;
};
export declare type CustomerServiceAttributesQueryResult = CustomerServiceAttributes | QueryError;
+export declare type CustomerServiceBranding = {
+ __typename?: 'CustomerServiceBranding';
+ colors?: Maybe<CustomerServiceBrandingColors>;
+ entityType: CustomerServiceBrandingEntityType;
+ helpCenterId: Scalars['ID']['output'];
+ icon?: Maybe<CustomerServiceBrandingIcon>;
+ id: Scalars['ID']['output'];
+ logo?: Maybe<CustomerServiceBrandingLogo>;
+ tile?: Maybe<CustomerServiceBrandingTile>;
+};
+export declare type CustomerServiceBrandingColors = {
+ __typename?: 'CustomerServiceBrandingColors';
+ primary?: Maybe<Scalars['String']['output']>;
+ textColor?: Maybe<Scalars['String']['output']>;
+};
+export declare type CustomerServiceBrandingColorsInput = {
+ primary?: InputMaybe<Scalars['String']['input']>;
+ textColor?: InputMaybe<Scalars['String']['input']>;
+};
+export declare enum CustomerServiceBrandingEntityType {
+ CustomerHub = "CUSTOMER_HUB",
+ SupportSite = "SUPPORT_SITE"
+}
+export declare type CustomerServiceBrandingIcon = {
+ __typename?: 'CustomerServiceBrandingIcon';
+ mediaFileId?: Maybe<Scalars['String']['output']>;
+ url?: Maybe<Scalars['URL']['output']>;
+};
+export declare type CustomerServiceBrandingIconInput = {
+ mediaFileId?: InputMaybe<Scalars['String']['input']>;
+};
+export declare type CustomerServiceBrandingLogo = {
+ __typename?: 'CustomerServiceBrandingLogo';
+ mediaFileId?: Maybe<Scalars['String']['output']>;
+ url?: Maybe<Scalars['URL']['output']>;
+};
+export declare type CustomerServiceBrandingLogoInput = {
+ mediaFileId?: InputMaybe<Scalars['String']['input']>;
+};
+export declare type CustomerServiceBrandingMediaConfig = {
+ __typename?: 'CustomerServiceBrandingMediaConfig';
+ asapIssuer?: Maybe<Scalars['String']['output']>;
+ mediaCollectionName?: Maybe<Scalars['String']['output']>;
+ mediaToken?: Maybe<Scalars['String']['output']>;
+ mediaUrl?: Maybe<Scalars['String']['output']>;
+};
+export declare type CustomerServiceBrandingMediaConfigQueryResult = CustomerServiceBrandingMediaConfig | QueryError;
+export declare type CustomerServiceBrandingQueryResult = CustomerServiceBranding | QueryError;
+export declare type CustomerServiceBrandingTile = {
+ __typename?: 'CustomerServiceBrandingTile';
+ mediaFileId?: Maybe<Scalars['String']['output']>;
+ url?: Maybe<Scalars['URL']['output']>;
+};
+export declare type CustomerServiceBrandingTileInput = {
+ mediaFileId?: InputMaybe<Scalars['String']['input']>;
+};
+export declare type CustomerServiceBrandingUpsertInput = {
+ colors?: InputMaybe<CustomerServiceBrandingColorsInput>;
+ entityType: CustomerServiceBrandingEntityType;
+ helpCenterId: Scalars['ID']['input'];
+ icon?: InputMaybe<CustomerServiceBrandingIconInput>;
+ logo?: InputMaybe<CustomerServiceBrandingLogoInput>;
+ tile?: InputMaybe<CustomerServiceBrandingTileInput>;
+};
+export declare type CustomerServiceBrandingUpsertPayload = {
+ __typename?: 'CustomerServiceBrandingUpsertPayload';
+ branding?: Maybe<CustomerServiceBranding>;
+ errors?: Maybe<Array<MutationError>>;
+ success: Scalars['Boolean']['output'];
+};
export declare type CustomerServiceContext = {
issueId?: InputMaybe<Scalars['String']['input']>;
type: CustomerServiceContextType;
};
@@ -20283,8 +20353,9 @@
updateOrganizationAttributeValueByName?: Maybe<CustomerServiceOrganizationUpdateAttributeValuePayload>;
updateParticipants?: Maybe<CustomerServiceRequestUpdateParticipantsPayload>;
updateProduct?: Maybe<CustomerServiceProductUpdatePayload>;
updateTemplateForm?: Maybe<CustomerServiceTemplateFormUpdatePayload>;
+ upsertBranding?: Maybe<CustomerServiceBrandingUpsertPayload>;
};
export declare type CustomerServiceMutationApiAddEntitlementArgs = {
input: CustomerServiceEntitlementAddInput;
};
@@ -20398,8 +20469,11 @@
helpCenterId: Scalars['ID']['input'];
input: CustomerServiceTemplateFormUpdateInput;
templateFormId: Scalars['ID']['input'];
};
+export declare type CustomerServiceMutationApiUpsertBrandingArgs = {
+ input: CustomerServiceBrandingUpsertInput;
+};
export declare type CustomerServiceNote = {
__typename?: 'CustomerServiceNote';
author: CustomerServiceNoteAuthor;
body: Scalars['String']['output'];
@@ -20601,8 +20675,10 @@
updatedProduct?: Maybe<CustomerServiceProduct>;
};
export declare type CustomerServiceQueryApi = {
__typename?: 'CustomerServiceQueryApi';
+ brandingByEntityType?: Maybe<CustomerServiceBrandingQueryResult>;
+ brandingMediaConfigByEntityType?: Maybe<CustomerServiceBrandingMediaConfigQueryResult>;
customDetailsByEntityType?: Maybe<CustomerServiceCustomDetailsQueryResult>;
entitlementById?: Maybe<CustomerServiceEntitlementQueryResult>;
escalatableJiraProjects?: Maybe<CustomerServiceEscalatableJiraProjectsConnection>;
individualAttributes?: Maybe<CustomerServiceAttributesQueryResult>;
@@ -20614,8 +20690,16 @@
requestByIssueKey?: Maybe<CustomerServiceRequestByKeyResult>;
templateFormById?: Maybe<CustomerServiceTemplateFormQueryResult>;
templateForms?: Maybe<CustomerServiceTemplateFormConnection>;
};
+export declare type CustomerServiceQueryApiBrandingByEntityTypeArgs = {
+ entityType: CustomerServiceBrandingEntityType;
+ helpCenterId: Scalars['ID']['input'];
+};
+export declare type CustomerServiceQueryApiBrandingMediaConfigByEntityTypeArgs = {
+ entityType: CustomerServiceBrandingEntityType;
+ helpCenterId: Scalars['ID']['input'];
+};
export declare type CustomerServiceQueryApiCustomDetailsByEntityTypeArgs = {
customDetailsEntityType: CustomerServiceCustomDetailsEntityType;
};
export declare type CustomerServiceQueryApiEntitlementByIdArgs = {
@@ -74901,8 +74985,9 @@
dominantColor?: InputMaybe<Scalars['String']['input']>;
entityId: Scalars['ID']['input'];
};
export declare type JiraUpdateCalendarViewConfigInput = {
+ overrides?: InputMaybe<JiraCalendarViewSettings>;
settings?: InputMaybe<JiraCalendarViewSettings>;
viewId: Scalars['ID']['input'];
};
export declare type JiraUpdateCalendarViewConfigPayload = Payload & {
@@ -95784,8 +95869,9 @@
WriteServicedeskCustomer = "WRITE_SERVICEDESK_CUSTOMER",
WriteServicedeskOrganization = "WRITE_SERVICEDESK_ORGANIZATION",
WriteServicedeskProperty = "WRITE_SERVICEDESK_PROPERTY",
WriteServicedeskRequest = "WRITE_SERVICEDESK_REQUEST",
+ WriteTeam = "WRITE_TEAM",
WriteTownsquareGoal = "WRITE_TOWNSQUARE_GOAL",
WriteTownsquareProject = "WRITE_TOWNSQUARE_PROJECT",
WriteTownsquareRelationship = "WRITE_TOWNSQUARE_RELATIONSHIP"
}