@forge/cli-shared 8.4.0 → 8.5.0-next.1
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 +12 -0
- package/out/graphql/graphql-types.d.ts +86 -0
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +26 -20
- package/out/service/statsig-service.d.ts.map +1 -1
- package/out/service/statsig-service.js +3 -0
- package/out/ui/text.d.ts +1 -1
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 8.5.0-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- bda7c8d: Send 'app packaged' analytics event
|
|
8
|
+
|
|
9
|
+
## 8.5.0-next.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- be30715: Add integration tests for developer space flow, comment T&C flow
|
|
14
|
+
|
|
3
15
|
## 8.4.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
|
@@ -19928,6 +19928,76 @@ export declare type CustomerServiceAttributes = {
|
|
|
19928
19928
|
maxAllowedAttributes?: Maybe<Scalars['Int']['output']>;
|
|
19929
19929
|
};
|
|
19930
19930
|
export declare type CustomerServiceAttributesQueryResult = CustomerServiceAttributes | QueryError;
|
|
19931
|
+
export declare type CustomerServiceBranding = {
|
|
19932
|
+
__typename?: 'CustomerServiceBranding';
|
|
19933
|
+
colors?: Maybe<CustomerServiceBrandingColors>;
|
|
19934
|
+
entityType: CustomerServiceBrandingEntityType;
|
|
19935
|
+
helpCenterId: Scalars['ID']['output'];
|
|
19936
|
+
icon?: Maybe<CustomerServiceBrandingIcon>;
|
|
19937
|
+
id: Scalars['ID']['output'];
|
|
19938
|
+
logo?: Maybe<CustomerServiceBrandingLogo>;
|
|
19939
|
+
tile?: Maybe<CustomerServiceBrandingTile>;
|
|
19940
|
+
};
|
|
19941
|
+
export declare type CustomerServiceBrandingColors = {
|
|
19942
|
+
__typename?: 'CustomerServiceBrandingColors';
|
|
19943
|
+
primary?: Maybe<Scalars['String']['output']>;
|
|
19944
|
+
textColor?: Maybe<Scalars['String']['output']>;
|
|
19945
|
+
};
|
|
19946
|
+
export declare type CustomerServiceBrandingColorsInput = {
|
|
19947
|
+
primary?: InputMaybe<Scalars['String']['input']>;
|
|
19948
|
+
textColor?: InputMaybe<Scalars['String']['input']>;
|
|
19949
|
+
};
|
|
19950
|
+
export declare enum CustomerServiceBrandingEntityType {
|
|
19951
|
+
CustomerHub = "CUSTOMER_HUB",
|
|
19952
|
+
SupportSite = "SUPPORT_SITE"
|
|
19953
|
+
}
|
|
19954
|
+
export declare type CustomerServiceBrandingIcon = {
|
|
19955
|
+
__typename?: 'CustomerServiceBrandingIcon';
|
|
19956
|
+
mediaFileId?: Maybe<Scalars['String']['output']>;
|
|
19957
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
19958
|
+
};
|
|
19959
|
+
export declare type CustomerServiceBrandingIconInput = {
|
|
19960
|
+
mediaFileId?: InputMaybe<Scalars['String']['input']>;
|
|
19961
|
+
};
|
|
19962
|
+
export declare type CustomerServiceBrandingLogo = {
|
|
19963
|
+
__typename?: 'CustomerServiceBrandingLogo';
|
|
19964
|
+
mediaFileId?: Maybe<Scalars['String']['output']>;
|
|
19965
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
19966
|
+
};
|
|
19967
|
+
export declare type CustomerServiceBrandingLogoInput = {
|
|
19968
|
+
mediaFileId?: InputMaybe<Scalars['String']['input']>;
|
|
19969
|
+
};
|
|
19970
|
+
export declare type CustomerServiceBrandingMediaConfig = {
|
|
19971
|
+
__typename?: 'CustomerServiceBrandingMediaConfig';
|
|
19972
|
+
asapIssuer?: Maybe<Scalars['String']['output']>;
|
|
19973
|
+
mediaCollectionName?: Maybe<Scalars['String']['output']>;
|
|
19974
|
+
mediaToken?: Maybe<Scalars['String']['output']>;
|
|
19975
|
+
mediaUrl?: Maybe<Scalars['String']['output']>;
|
|
19976
|
+
};
|
|
19977
|
+
export declare type CustomerServiceBrandingMediaConfigQueryResult = CustomerServiceBrandingMediaConfig | QueryError;
|
|
19978
|
+
export declare type CustomerServiceBrandingQueryResult = CustomerServiceBranding | QueryError;
|
|
19979
|
+
export declare type CustomerServiceBrandingTile = {
|
|
19980
|
+
__typename?: 'CustomerServiceBrandingTile';
|
|
19981
|
+
mediaFileId?: Maybe<Scalars['String']['output']>;
|
|
19982
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
19983
|
+
};
|
|
19984
|
+
export declare type CustomerServiceBrandingTileInput = {
|
|
19985
|
+
mediaFileId?: InputMaybe<Scalars['String']['input']>;
|
|
19986
|
+
};
|
|
19987
|
+
export declare type CustomerServiceBrandingUpsertInput = {
|
|
19988
|
+
colors?: InputMaybe<CustomerServiceBrandingColorsInput>;
|
|
19989
|
+
entityType: CustomerServiceBrandingEntityType;
|
|
19990
|
+
helpCenterId: Scalars['ID']['input'];
|
|
19991
|
+
icon?: InputMaybe<CustomerServiceBrandingIconInput>;
|
|
19992
|
+
logo?: InputMaybe<CustomerServiceBrandingLogoInput>;
|
|
19993
|
+
tile?: InputMaybe<CustomerServiceBrandingTileInput>;
|
|
19994
|
+
};
|
|
19995
|
+
export declare type CustomerServiceBrandingUpsertPayload = {
|
|
19996
|
+
__typename?: 'CustomerServiceBrandingUpsertPayload';
|
|
19997
|
+
branding?: Maybe<CustomerServiceBranding>;
|
|
19998
|
+
errors?: Maybe<Array<MutationError>>;
|
|
19999
|
+
success: Scalars['Boolean']['output'];
|
|
20000
|
+
};
|
|
19931
20001
|
export declare type CustomerServiceContext = {
|
|
19932
20002
|
issueId?: InputMaybe<Scalars['String']['input']>;
|
|
19933
20003
|
type: CustomerServiceContextType;
|
|
@@ -20284,6 +20354,7 @@ export declare type CustomerServiceMutationApi = {
|
|
|
20284
20354
|
updateParticipants?: Maybe<CustomerServiceRequestUpdateParticipantsPayload>;
|
|
20285
20355
|
updateProduct?: Maybe<CustomerServiceProductUpdatePayload>;
|
|
20286
20356
|
updateTemplateForm?: Maybe<CustomerServiceTemplateFormUpdatePayload>;
|
|
20357
|
+
upsertBranding?: Maybe<CustomerServiceBrandingUpsertPayload>;
|
|
20287
20358
|
};
|
|
20288
20359
|
export declare type CustomerServiceMutationApiAddEntitlementArgs = {
|
|
20289
20360
|
input: CustomerServiceEntitlementAddInput;
|
|
@@ -20399,6 +20470,9 @@ export declare type CustomerServiceMutationApiUpdateTemplateFormArgs = {
|
|
|
20399
20470
|
input: CustomerServiceTemplateFormUpdateInput;
|
|
20400
20471
|
templateFormId: Scalars['ID']['input'];
|
|
20401
20472
|
};
|
|
20473
|
+
export declare type CustomerServiceMutationApiUpsertBrandingArgs = {
|
|
20474
|
+
input: CustomerServiceBrandingUpsertInput;
|
|
20475
|
+
};
|
|
20402
20476
|
export declare type CustomerServiceNote = {
|
|
20403
20477
|
__typename?: 'CustomerServiceNote';
|
|
20404
20478
|
author: CustomerServiceNoteAuthor;
|
|
@@ -20602,6 +20676,8 @@ export declare type CustomerServiceProductUpdatePayload = Payload & {
|
|
|
20602
20676
|
};
|
|
20603
20677
|
export declare type CustomerServiceQueryApi = {
|
|
20604
20678
|
__typename?: 'CustomerServiceQueryApi';
|
|
20679
|
+
brandingByEntityType?: Maybe<CustomerServiceBrandingQueryResult>;
|
|
20680
|
+
brandingMediaConfigByEntityType?: Maybe<CustomerServiceBrandingMediaConfigQueryResult>;
|
|
20605
20681
|
customDetailsByEntityType?: Maybe<CustomerServiceCustomDetailsQueryResult>;
|
|
20606
20682
|
entitlementById?: Maybe<CustomerServiceEntitlementQueryResult>;
|
|
20607
20683
|
escalatableJiraProjects?: Maybe<CustomerServiceEscalatableJiraProjectsConnection>;
|
|
@@ -20615,6 +20691,14 @@ export declare type CustomerServiceQueryApi = {
|
|
|
20615
20691
|
templateFormById?: Maybe<CustomerServiceTemplateFormQueryResult>;
|
|
20616
20692
|
templateForms?: Maybe<CustomerServiceTemplateFormConnection>;
|
|
20617
20693
|
};
|
|
20694
|
+
export declare type CustomerServiceQueryApiBrandingByEntityTypeArgs = {
|
|
20695
|
+
entityType: CustomerServiceBrandingEntityType;
|
|
20696
|
+
helpCenterId: Scalars['ID']['input'];
|
|
20697
|
+
};
|
|
20698
|
+
export declare type CustomerServiceQueryApiBrandingMediaConfigByEntityTypeArgs = {
|
|
20699
|
+
entityType: CustomerServiceBrandingEntityType;
|
|
20700
|
+
helpCenterId: Scalars['ID']['input'];
|
|
20701
|
+
};
|
|
20618
20702
|
export declare type CustomerServiceQueryApiCustomDetailsByEntityTypeArgs = {
|
|
20619
20703
|
customDetailsEntityType: CustomerServiceCustomDetailsEntityType;
|
|
20620
20704
|
};
|
|
@@ -74902,6 +74986,7 @@ export declare type JiraUpdateBackgroundInput = {
|
|
|
74902
74986
|
entityId: Scalars['ID']['input'];
|
|
74903
74987
|
};
|
|
74904
74988
|
export declare type JiraUpdateCalendarViewConfigInput = {
|
|
74989
|
+
overrides?: InputMaybe<JiraCalendarViewSettings>;
|
|
74905
74990
|
settings?: InputMaybe<JiraCalendarViewSettings>;
|
|
74906
74991
|
viewId: Scalars['ID']['input'];
|
|
74907
74992
|
};
|
|
@@ -95785,6 +95870,7 @@ export declare enum Scope {
|
|
|
95785
95870
|
WriteServicedeskOrganization = "WRITE_SERVICEDESK_ORGANIZATION",
|
|
95786
95871
|
WriteServicedeskProperty = "WRITE_SERVICEDESK_PROPERTY",
|
|
95787
95872
|
WriteServicedeskRequest = "WRITE_SERVICEDESK_REQUEST",
|
|
95873
|
+
WriteTeam = "WRITE_TEAM",
|
|
95788
95874
|
WriteTownsquareGoal = "WRITE_TOWNSQUARE_GOAL",
|
|
95789
95875
|
WriteTownsquareProject = "WRITE_TOWNSQUARE_PROJECT",
|
|
95790
95876
|
WriteTownsquareRelationship = "WRITE_TOWNSQUARE_RELATIONSHIP"
|