@forge/cli-shared 3.17.0-next.11 → 3.17.0-next.13

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,20 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.17.0-next.13
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [35638fcc]
8
+ - Updated dependencies [d8a23797]
9
+ - @forge/manifest@4.18.0-next.8
10
+
11
+ ## 3.17.0-next.12
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies [39964989]
16
+ - @forge/manifest@4.18.0-next.7
17
+
3
18
  ## 3.17.0-next.11
4
19
 
5
20
  ### Patch Changes
@@ -323,6 +323,17 @@ export type AddCompassComponentLabelsPayload = Payload & {
323
323
  errors?: Maybe<Array<MutationError>>;
324
324
  componentDetails?: Maybe<CompassComponent>;
325
325
  };
326
+ export type AddMultipleAppContributorInput = {
327
+ appId: Scalars['ID'];
328
+ newContributorEmails: Array<Scalars['String']>;
329
+ role: AppContributorRole;
330
+ };
331
+ export type AddMultipleAppContributorResponsePayload = Payload & {
332
+ __typename?: 'AddMultipleAppContributorResponsePayload';
333
+ success: Scalars['Boolean'];
334
+ contributorsFailed: Array<Maybe<ContributorFailed>>;
335
+ errors?: Maybe<Array<MutationError>>;
336
+ };
326
337
  export type AddPolarisColumnInput = {
327
338
  before?: Maybe<Scalars['ID']>;
328
339
  field: Scalars['ID'];
@@ -6117,6 +6128,11 @@ export type ContextEventObject = {
6117
6128
  type: Scalars['String'];
6118
6129
  attributes: Scalars['JSON'];
6119
6130
  };
6131
+ export type ContributorFailed = {
6132
+ __typename?: 'ContributorFailed';
6133
+ email: Scalars['String'];
6134
+ reason: Scalars['String'];
6135
+ };
6120
6136
  export type CopyPolarisInsightsContainerInput = {
6121
6137
  project: Scalars['ID'];
6122
6138
  container?: Maybe<Scalars['ID']>;
@@ -6813,7 +6829,9 @@ export declare enum CustomerServiceAttributeTypeName {
6813
6829
  Text = "TEXT",
6814
6830
  Email = "EMAIL",
6815
6831
  Url = "URL",
6832
+ Date = "DATE",
6816
6833
  Number = "NUMBER",
6834
+ Phone = "PHONE",
6817
6835
  Select = "SELECT",
6818
6836
  Multiselect = "MULTISELECT"
6819
6837
  }
@@ -8672,6 +8690,7 @@ export type EcosystemMutation = {
8672
8690
  __typename?: 'EcosystemMutation';
8673
8691
  updateAppHostServiceScopes?: Maybe<UpdateAppHostServiceScopesResponsePayload>;
8674
8692
  addAppContributor?: Maybe<AddAppContributorResponsePayload>;
8693
+ addMultipleAppContributor?: Maybe<AddMultipleAppContributorResponsePayload>;
8675
8694
  removeAppContributors?: Maybe<RemoveAppContributorsResponsePayload>;
8676
8695
  updateAppOwnership?: Maybe<UpdateAppOwnershipResponsePayload>;
8677
8696
  deleteUserGrant?: Maybe<DeleteUserGrantPayload>;
@@ -8686,6 +8705,9 @@ export type EcosystemMutationUpdateAppHostServiceScopesArgs = {
8686
8705
  export type EcosystemMutationAddAppContributorArgs = {
8687
8706
  input: AddAppContributorInput;
8688
8707
  };
8708
+ export type EcosystemMutationAddMultipleAppContributorArgs = {
8709
+ input: AddMultipleAppContributorInput;
8710
+ };
8689
8711
  export type EcosystemMutationRemoveAppContributorsArgs = {
8690
8712
  input: RemoveAppContributorsInput;
8691
8713
  };
@@ -21126,7 +21148,7 @@ export type PartnerCatalogApiPartnerOfferingDetailsArgs = {
21126
21148
  };
21127
21149
  export type PartnerCloudApp = PartnerOfferingNode & {
21128
21150
  __typename?: 'PartnerCloudApp';
21129
- key: Scalars['ID'];
21151
+ id: Scalars['ID'];
21130
21152
  name?: Maybe<Scalars['String']>;
21131
21153
  sku?: Maybe<Scalars['String']>;
21132
21154
  level?: Maybe<Scalars['Int']>;
@@ -21150,18 +21172,18 @@ export declare enum PartnerCloudLicenseType {
21150
21172
  export type PartnerCloudProduct = PartnerCloudProductNode & {
21151
21173
  __typename?: 'PartnerCloudProduct';
21152
21174
  chargeElements?: Maybe<Array<Maybe<Scalars['String']>>>;
21153
- key: Scalars['ID'];
21175
+ id: Scalars['ID'];
21154
21176
  name?: Maybe<Scalars['String']>;
21155
21177
  offerings?: Maybe<Array<Maybe<PartnerOfferingItem>>>;
21156
21178
  uncollectibleAction?: Maybe<PartnerUncollectibleAction>;
21157
21179
  };
21158
21180
  export type PartnerCloudProductItem = PartnerCloudProductNode & {
21159
21181
  __typename?: 'PartnerCloudProductItem';
21160
- key: Scalars['ID'];
21182
+ id: Scalars['ID'];
21161
21183
  name?: Maybe<Scalars['String']>;
21162
21184
  };
21163
21185
  export type PartnerCloudProductNode = {
21164
- key: Scalars['ID'];
21186
+ id: Scalars['ID'];
21165
21187
  name?: Maybe<Scalars['String']>;
21166
21188
  };
21167
21189
  export declare enum PartnerCurrency {
@@ -21175,7 +21197,7 @@ export type PartnerOfferingBtfInput = {
21175
21197
  };
21176
21198
  export type PartnerOfferingCloudInput = {
21177
21199
  currency?: Maybe<Array<Maybe<PartnerCurrency>>>;
21178
- key: Scalars['ID'];
21200
+ id: Scalars['ID'];
21179
21201
  pricingPlanType?: Maybe<Array<Maybe<PartnerCloudLicenseType>>>;
21180
21202
  };
21181
21203
  export type PartnerOfferingDetailsResponse = {
@@ -21193,7 +21215,7 @@ export type PartnerOfferingItem = PartnerOfferingNode & {
21193
21215
  __typename?: 'PartnerOfferingItem';
21194
21216
  billingType?: Maybe<Scalars['String']>;
21195
21217
  hostingType?: Maybe<Scalars['String']>;
21196
- key: Scalars['ID'];
21218
+ id: Scalars['ID'];
21197
21219
  level?: Maybe<Scalars['Int']>;
21198
21220
  name?: Maybe<Scalars['String']>;
21199
21221
  parent?: Maybe<Scalars['String']>;
@@ -21208,7 +21230,7 @@ export type PartnerOfferingListResponse = {
21208
21230
  cloudProducts?: Maybe<Array<Maybe<PartnerCloudProductItem>>>;
21209
21231
  };
21210
21232
  export type PartnerOfferingNode = {
21211
- key: Scalars['ID'];
21233
+ id: Scalars['ID'];
21212
21234
  name?: Maybe<Scalars['String']>;
21213
21235
  };
21214
21236
  export type PartnerOrderableItem = PartnerOrderableItemNode & {
@@ -21246,7 +21268,7 @@ export type PartnerPricingPlan = PartnerPricingPlanNode & {
21246
21268
  currency?: Maybe<Scalars['String']>;
21247
21269
  description?: Maybe<Scalars['String']>;
21248
21270
  items?: Maybe<Array<Maybe<PartnerPricingPlanItem>>>;
21249
- key: Scalars['ID'];
21271
+ id: Scalars['ID'];
21250
21272
  primaryCycle?: Maybe<PartnerBillingCycle>;
21251
21273
  sku?: Maybe<Scalars['String']>;
21252
21274
  type?: Maybe<Scalars['String']>;
@@ -21262,7 +21284,7 @@ export type PartnerPricingPlanItem = {
21262
21284
  export type PartnerPricingPlanNode = {
21263
21285
  currency?: Maybe<Scalars['String']>;
21264
21286
  description?: Maybe<Scalars['String']>;
21265
- key: Scalars['ID'];
21287
+ id: Scalars['ID'];
21266
21288
  type?: Maybe<Scalars['String']>;
21267
21289
  };
21268
21290
  export type PartnerPricingTier = {
@@ -27143,7 +27165,7 @@ export type TrelloChecklistEdge = {
27143
27165
  node: TrelloChecklist;
27144
27166
  };
27145
27167
  export type TrelloCreateCardInput = {
27146
- idList?: Maybe<Array<Scalars['ID']>>;
27168
+ idList: Scalars['ID'];
27147
27169
  name: Scalars['String'];
27148
27170
  };
27149
27171
  export type TrelloCreateCardPayload = Payload & {