@forge/cli-shared 6.10.0-next.4 → 6.10.0-next.5

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,11 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 6.10.0-next.5
4
+
5
+ ### Minor Changes
6
+
7
+ - 08c43c1: The command should cancel the upgrade that is in progress (currently there is only one; if we later allow multiple simultaneous upgrades, we’ll need to change this), after asking for the user to confirm the specific upgrade that is being cancelled.
8
+
3
9
  ## 6.10.0-next.4
4
10
 
5
11
  ### Minor Changes
@@ -25436,6 +25436,7 @@ export declare type ExternalCalendarEvent = Node & {
25436
25436
  __typename?: 'ExternalCalendarEvent';
25437
25437
  associatedWith?: Maybe<ExternalAssociationConnection>;
25438
25438
  attachments?: Maybe<Array<Maybe<ExternalCalendarEventAttachment>>>;
25439
+ attendeeCount?: Maybe<Scalars['Long']['output']>;
25439
25440
  attendees?: Maybe<Array<Maybe<ExternalAttendee>>>;
25440
25441
  createdAt?: Maybe<Scalars['String']['output']>;
25441
25442
  createdBy?: Maybe<ExternalUser>;
@@ -25444,18 +25445,23 @@ export declare type ExternalCalendarEvent = Node & {
25444
25445
  eventEndTime?: Maybe<Scalars['String']['output']>;
25445
25446
  eventStartTime?: Maybe<Scalars['String']['output']>;
25446
25447
  eventType?: Maybe<ExternalEventType>;
25448
+ exceedsMaxAttendees?: Maybe<Scalars['Boolean']['output']>;
25447
25449
  externalId?: Maybe<Scalars['String']['output']>;
25448
25450
  id: Scalars['ID']['output'];
25451
+ isAllDayEvent?: Maybe<Scalars['Boolean']['output']>;
25452
+ isRecurringEvent?: Maybe<Scalars['Boolean']['output']>;
25449
25453
  lastUpdated?: Maybe<Scalars['String']['output']>;
25450
25454
  lastUpdatedBy?: Maybe<ExternalUser>;
25451
25455
  location?: Maybe<ExternalLocation>;
25452
25456
  parent?: Maybe<ExternalEntity>;
25453
25457
  parentId?: Maybe<Scalars['ID']['output']>;
25454
25458
  provider?: Maybe<ExternalProvider>;
25459
+ recordingUrl?: Maybe<Scalars['String']['output']>;
25455
25460
  recurringEventId?: Maybe<Scalars['String']['output']>;
25456
25461
  thirdPartyId?: Maybe<Scalars['String']['output']>;
25457
25462
  updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
25458
25463
  url?: Maybe<Scalars['String']['output']>;
25464
+ videoMeetingProvider?: Maybe<Scalars['String']['output']>;
25459
25465
  videoMeetingUrl?: Maybe<Scalars['String']['output']>;
25460
25466
  };
25461
25467
  export declare type ExternalCalendarEventAttachment = {