khoros-aurora-sdk 24.8.0 → 24.8.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/build-hash.txt CHANGED
@@ -1 +1 @@
1
- 8d4e9b8
1
+ 2b135b6
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  ],
10
10
  "description": "The Aurora SDK allows you to customize various plugin points using a Git repository for your community. You can preview changes made to the repository through Aurora's Plugin Preview tool, which uses Node to synchronize your local development environment with your repository so that you can preview changes in your staging Community instance.",
11
11
  "license": "Apache 2.0",
12
- "version": "24.8.0",
12
+ "version": "24.8.1",
13
13
  "scripts": {
14
14
  "postinstall": "node ./scripts/postInstall.js",
15
15
  "start": "node ./scripts/pluginPreviewCli.js",
@@ -4048,7 +4048,7 @@ cliBase_default(
4048
4048
  alias: "auroraUrl",
4049
4049
  demandOption: false,
4050
4050
  describe: "The URL of the Aurora Server",
4051
- default: () => process.env.AURORA_URL ?? process.env.LIA_URL,
4051
+ default: () => process.env.AURORA_URL || process.env.LIA_URL,
4052
4052
  type: "string"
4053
4053
  }
4054
4054
  },
@@ -5688,7 +5688,10 @@ var PluginPreview = class {
5688
5688
  this.graphQLClient = graphqlClientHelper_default(liaUrl, sdkKey);
5689
5689
  this.componentHandler = new ComponentHandler_default(this.graphQLClient);
5690
5690
  this.textOverrideHandler = new ComponentTextAssetHandler_default(this.graphQLClient);
5691
- const endpointApiHost = process.env.AURORA_URL ?? this.config.liaUrl;
5691
+ const endpointApiHost = process.env.AURORA_URL || this.config.liaUrl;
5692
+ if (!endpointApiHost) {
5693
+ throw new Error("No endpoint API host specified");
5694
+ }
5692
5695
  this.endpointHandler = new EndpointHandler_default(this.graphQLClient, this.config, endpointApiHost);
5693
5696
  this.assetHandlers = [
5694
5697
  {
@@ -321,7 +321,7 @@ declare module "aurora/graphql/schema" {
321
321
  body?: Maybe<Scalars['String']['output']>;
322
322
  /** The conversation this message is a part of. */
323
323
  conversation: Conversation;
324
- /** Data about the current revision of the message. */
324
+ /** Data about the current published revision of the message. */
325
325
  currentRevision: Revision;
326
326
  /** Returns a custom field, or null if one does not exist with the given name. */
327
327
  customField?: Maybe<CustomField>;
@@ -360,6 +360,8 @@ declare module "aurora/graphql/schema" {
360
360
  language: Scalars['String']['output'];
361
361
  /** The last publish time field contains the datetime that the message was last updated. */
362
362
  lastPublishTime?: Maybe<Scalars['DateTime']['output']>;
363
+ /** The most recent revision, regardless of what revision (if any) is currently published. */
364
+ latestRevision?: Maybe<Revision>;
363
365
  /** The latest major and minor version of the message. */
364
366
  latestVersion?: Maybe<FriendlyVersion>;
365
367
  /** Policies whether the calling user can proceed with the message related actions. */
@@ -544,6 +546,12 @@ declare module "aurora/graphql/schema" {
544
546
  Granted = "GRANTED",
545
547
  Inherited = "INHERITED"
546
548
  }
549
+ /** Additional headers in the access token */
550
+ export type AccessToken = {
551
+ __typename?: 'AccessToken';
552
+ /** Any other parameters that need to be passed in the header of the request. Eg: header1 = value1, header2 = value2 */
553
+ headers?: Maybe<Scalars['JSON']['output']>;
554
+ };
547
555
  /** An error that can occur when the access token creation has failed. */
548
556
  export type AccessTokenCreationFailedError = Error & {
549
557
  __typename?: 'AccessTokenCreationFailedError';
@@ -1137,7 +1145,7 @@ declare module "aurora/graphql/schema" {
1137
1145
  contributors: UserConnection;
1138
1146
  /** The conversation this message is a part of. */
1139
1147
  conversation: Conversation;
1140
- /** Data about the current revision of the message. */
1148
+ /** Data about the current published revision of the message. */
1141
1149
  currentRevision: Revision;
1142
1150
  /** Returns a custom field, or null if one does not exist with the given name. */
1143
1151
  customField?: Maybe<CustomField>;
@@ -1176,6 +1184,8 @@ declare module "aurora/graphql/schema" {
1176
1184
  language: Scalars['String']['output'];
1177
1185
  /** The last publish time field contains the datetime that the message was last updated. */
1178
1186
  lastPublishTime?: Maybe<Scalars['DateTime']['output']>;
1187
+ /** The most recent revision, regardless of what revision (if any) is currently published. */
1188
+ latestRevision?: Maybe<Revision>;
1179
1189
  /** The latest major and minor version of the message. */
1180
1190
  latestVersion?: Maybe<FriendlyVersion>;
1181
1191
  /** Policies whether the calling user can proceed with the message related actions. */
@@ -1874,6 +1884,14 @@ declare module "aurora/graphql/schema" {
1874
1884
  /** The audit log. */
1875
1885
  node: AuditLog;
1876
1886
  };
1887
+ /** The Auth token information required for firehose */
1888
+ export type Auth = {
1889
+ __typename?: 'Auth';
1890
+ /** Base URL which is the relative path for Access tokens */
1891
+ tokenHost: Scalars['String']['output'];
1892
+ /** Base path which is the relative path for Access token */
1893
+ tokenPath: Scalars['String']['output'];
1894
+ };
1877
1895
  export type AuthAdministrative = {
1878
1896
  /** Settings for the auth feature. */
1879
1897
  authSettings: AuthSettings;
@@ -3377,7 +3395,7 @@ declare module "aurora/graphql/schema" {
3377
3395
  body?: Maybe<Scalars['String']['output']>;
3378
3396
  /** The conversation this message is a part of. */
3379
3397
  conversation: Conversation;
3380
- /** Data about the current revision of the message. */
3398
+ /** Data about the current published revision of the message. */
3381
3399
  currentRevision: Revision;
3382
3400
  /** Returns a custom field, or null if one does not exist with the given name. */
3383
3401
  customField?: Maybe<CustomField>;
@@ -3414,6 +3432,8 @@ declare module "aurora/graphql/schema" {
3414
3432
  language: Scalars['String']['output'];
3415
3433
  /** The last publish time field contains the datetime that the message was last updated. */
3416
3434
  lastPublishTime?: Maybe<Scalars['DateTime']['output']>;
3435
+ /** The most recent revision, regardless of what revision (if any) is currently published. */
3436
+ latestRevision?: Maybe<Revision>;
3417
3437
  /** The latest major and minor version of the message. */
3418
3438
  latestVersion?: Maybe<FriendlyVersion>;
3419
3439
  /** Policies whether the calling user can proceed with the message related actions. */
@@ -3609,7 +3629,7 @@ declare module "aurora/graphql/schema" {
3609
3629
  coverImage?: Maybe<Image>;
3610
3630
  /** The cover image properties for the cover image on a message. */
3611
3631
  coverImageProperties?: Maybe<CoverImageProperties>;
3612
- /** Data about the current revision of the message. */
3632
+ /** Data about the current published revision of the message. */
3613
3633
  currentRevision: Revision;
3614
3634
  /** Returns a custom field, or null if one does not exist with the given name. */
3615
3635
  customField?: Maybe<CustomField>;
@@ -3648,6 +3668,8 @@ declare module "aurora/graphql/schema" {
3648
3668
  language: Scalars['String']['output'];
3649
3669
  /** The last publish time field contains the datetime that the message was last updated. */
3650
3670
  lastPublishTime?: Maybe<Scalars['DateTime']['output']>;
3671
+ /** The most recent revision, regardless of what revision (if any) is currently published. */
3672
+ latestRevision?: Maybe<Revision>;
3651
3673
  /** The latest major and minor version of the message. */
3652
3674
  latestVersion?: Maybe<FriendlyVersion>;
3653
3675
  /** Policies whether the calling user can proceed with the message related actions. */
@@ -6880,6 +6902,14 @@ declare module "aurora/graphql/schema" {
6880
6902
  /** Will be true of the clear succeeded. It will be null if there was an error. */
6881
6903
  result?: Maybe<Scalars['Boolean']['output']>;
6882
6904
  };
6905
+ /** The client information required for firehose */
6906
+ export type Client = {
6907
+ __typename?: 'Client';
6908
+ /** The client id for firehose */
6909
+ id: Scalars['String']['output'];
6910
+ /** The client secret for firehose */
6911
+ secret: Scalars['String']['output'];
6912
+ };
6883
6913
  /** Auth method used by client for getting access token */
6884
6914
  export enum ClientAuthMethod {
6885
6915
  /** client secret basic mode */
@@ -7968,6 +7998,8 @@ declare module "aurora/graphql/schema" {
7968
7998
  canManageEscalations: PolicyResult;
7969
7999
  /** Whether the calling user can manage/admin feature content widget or not */
7970
8000
  canManageFeaturedWidget: PolicyResult;
8001
+ /** Whether the user can manage guides on any KB Board in the community. */
8002
+ canManageGuidesOnCommunity: PolicyResult;
7971
8003
  /** Whether the calling user can manage redirect rules. */
7972
8004
  canManageRedirectRules: PolicyResult;
7973
8005
  /** Whether the user can manage users in the community */
@@ -10298,7 +10330,7 @@ declare module "aurora/graphql/schema" {
10298
10330
  result?: Maybe<TextResource>;
10299
10331
  };
10300
10332
  /** A known error that can be returned by the createOrUpdateTheme mutation. */
10301
- export type CreateOrUpdateThemeError = BaseThemeNotFoundError | CreateOrUpdateThemeFailedError | InvalidGitCommitInfoHeaderError | MustBeAlphanumericError | QuiltNotFoundError | ThemeAlreadyExistsError | ThemeNotFoundError;
10333
+ export type CreateOrUpdateThemeError = BaseThemeNotFoundError | CreateOrUpdateThemeFailedError | InvalidGitCommitInfoHeaderError | MustBeAlphanumericError | QuiltNotFoundError | RequiredFieldError | ThemeAlreadyExistsError | ThemeNotFoundError;
10302
10334
  /** An unexpected error that might occur when attempting to create or update a theme. */
10303
10335
  export type CreateOrUpdateThemeFailedError = Error & ErrorWithArgs & ThemeError & {
10304
10336
  __typename?: 'CreateOrUpdateThemeFailedError';
@@ -13560,6 +13592,50 @@ declare module "aurora/graphql/schema" {
13560
13592
  /** A user. */
13561
13593
  User = "USER"
13562
13594
  }
13595
+ /** The response type for the firehoseConfigs query */
13596
+ export type FirehoseConfigs = {
13597
+ __typename?: 'FirehoseConfigs';
13598
+ /** The Auth host and path */
13599
+ auth: Auth;
13600
+ /** The Client informations */
13601
+ client: Client;
13602
+ /** URL of the REST Endpoint for delivering the event payload. */
13603
+ endpointURL: Scalars['String']['output'];
13604
+ /** Additional headers in http request */
13605
+ httpOptions?: Maybe<HttpOptions>;
13606
+ /** How the client fields to be sent and formatted */
13607
+ options: Options;
13608
+ /** Additional parameters for access token */
13609
+ parameters?: Maybe<Parameters>;
13610
+ };
13611
+ export type FirehosePutRequestParams = {
13612
+ /** Additional token body params for firehose */
13613
+ accessTokenBody?: InputMaybe<Scalars['String']['input']>;
13614
+ /** Additional token headers for firehose */
13615
+ accessTokenHeaders?: InputMaybe<Scalars['String']['input']>;
13616
+ /** Whether the client id and secret to be sent body / header */
13617
+ authorizationMethod: Scalars['String']['input'];
13618
+ /** Whether the client id and secret to be formatted json / form */
13619
+ bodyFormat: Scalars['String']['input'];
13620
+ /** The client id for firehose */
13621
+ clientId: Scalars['String']['input'];
13622
+ /** The client secret for firehose */
13623
+ clientSecret: Scalars['String']['input'];
13624
+ /** URL of the REST Endpoint for delivering the event payload. */
13625
+ endpointURL: Scalars['String']['input'];
13626
+ /** Base URL which is the relative path for Access tokens */
13627
+ tokenHost: Scalars['String']['input'];
13628
+ /** In which the token headers and token body available */
13629
+ tokenPath: Scalars['String']['input'];
13630
+ };
13631
+ /** Response of the updateFirehoseConfig mutation */
13632
+ export type FirehoseUpdatedResponse = {
13633
+ __typename?: 'FirehoseUpdatedResponse';
13634
+ /** Any errors while updating firehose configs */
13635
+ errors?: Maybe<Array<Maybe<Error>>>;
13636
+ /** Returns appropriate message after update */
13637
+ result: Scalars['Boolean']['output'];
13638
+ };
13563
13639
  /** Constraints to filter the FirstReplies metric data. */
13564
13640
  export type FirstForumRepliesConstraints = {
13565
13641
  /** End time of the time range. */
@@ -15319,7 +15395,7 @@ declare module "aurora/graphql/schema" {
15319
15395
  body?: Maybe<Scalars['String']['output']>;
15320
15396
  /** The conversation this message is a part of. */
15321
15397
  conversation: Conversation;
15322
- /** Data about the current revision of the message. */
15398
+ /** Data about the current published revision of the message. */
15323
15399
  currentRevision: Revision;
15324
15400
  /** Returns a custom field, or null if one does not exist with the given name. */
15325
15401
  customField?: Maybe<CustomField>;
@@ -15358,6 +15434,8 @@ declare module "aurora/graphql/schema" {
15358
15434
  language: Scalars['String']['output'];
15359
15435
  /** The last publish time field contains the datetime that the message was last updated. */
15360
15436
  lastPublishTime?: Maybe<Scalars['DateTime']['output']>;
15437
+ /** The most recent revision, regardless of what revision (if any) is currently published. */
15438
+ latestRevision?: Maybe<Revision>;
15361
15439
  /** The latest major and minor version of the message. */
15362
15440
  latestVersion?: Maybe<FriendlyVersion>;
15363
15441
  /** Policies whether the calling user can proceed with the message related actions. */
@@ -15543,7 +15621,7 @@ declare module "aurora/graphql/schema" {
15543
15621
  canonicalUrl?: Maybe<Scalars['String']['output']>;
15544
15622
  /** The conversation this message is a part of. */
15545
15623
  conversation: Conversation;
15546
- /** Data about the current revision of the message. */
15624
+ /** Data about the current published revision of the message. */
15547
15625
  currentRevision: Revision;
15548
15626
  /** Returns a custom field, or null if one does not exist with the given name. */
15549
15627
  customField?: Maybe<CustomField>;
@@ -15582,6 +15660,8 @@ declare module "aurora/graphql/schema" {
15582
15660
  language: Scalars['String']['output'];
15583
15661
  /** The last publish time field contains the datetime that the message was last updated. */
15584
15662
  lastPublishTime?: Maybe<Scalars['DateTime']['output']>;
15663
+ /** The most recent revision, regardless of what revision (if any) is currently published. */
15664
+ latestRevision?: Maybe<Revision>;
15585
15665
  /** The latest major and minor version of the message. */
15586
15666
  latestVersion?: Maybe<FriendlyVersion>;
15587
15667
  /** Policies whether the calling user can proceed with the message related actions. */
@@ -17587,6 +17667,12 @@ declare module "aurora/graphql/schema" {
17587
17667
  /** The localized message of the error. */
17588
17668
  message: Scalars['String']['output'];
17589
17669
  };
17670
+ /** Additional access token if required */
17671
+ export type HttpOptions = {
17672
+ __typename?: 'HttpOptions';
17673
+ /** The access token for firehose */
17674
+ accessToken?: Maybe<AccessToken>;
17675
+ };
17590
17676
  /** Defines an input for passing an ID constraint. */
17591
17677
  export type IdConstraint = {
17592
17678
  /** Equal to (=). */
@@ -18342,7 +18428,7 @@ declare module "aurora/graphql/schema" {
18342
18428
  body?: Maybe<Scalars['String']['output']>;
18343
18429
  /** The conversation this message is a part of. */
18344
18430
  conversation: Conversation;
18345
- /** Data about the current revision of the message. */
18431
+ /** Data about the current published revision of the message. */
18346
18432
  currentRevision: Revision;
18347
18433
  /** Returns a custom field, or null if one does not exist with the given name. */
18348
18434
  customField?: Maybe<CustomField>;
@@ -18379,6 +18465,8 @@ declare module "aurora/graphql/schema" {
18379
18465
  language: Scalars['String']['output'];
18380
18466
  /** The last publish time field contains the datetime that the message was last updated. */
18381
18467
  lastPublishTime?: Maybe<Scalars['DateTime']['output']>;
18468
+ /** The most recent revision, regardless of what revision (if any) is currently published. */
18469
+ latestRevision?: Maybe<Revision>;
18382
18470
  /** The latest major and minor version of the message. */
18383
18471
  latestVersion?: Maybe<FriendlyVersion>;
18384
18472
  /** Policies whether the calling user can proceed with the message related actions. */
@@ -18682,7 +18770,7 @@ declare module "aurora/graphql/schema" {
18682
18770
  contentWorkflow?: Maybe<ContentWorkflow>;
18683
18771
  /** The conversation this message is a part of. */
18684
18772
  conversation: Conversation;
18685
- /** Data about the current revision of the message. */
18773
+ /** Data about the current published revision of the message. */
18686
18774
  currentRevision: Revision;
18687
18775
  /** Returns a custom field, or null if one does not exist with the given name. */
18688
18776
  customField?: Maybe<CustomField>;
@@ -18721,6 +18809,8 @@ declare module "aurora/graphql/schema" {
18721
18809
  language: Scalars['String']['output'];
18722
18810
  /** The last publish time field contains the datetime that the message was last updated. */
18723
18811
  lastPublishTime?: Maybe<Scalars['DateTime']['output']>;
18812
+ /** The most recent revision, regardless of what revision (if any) is currently published. */
18813
+ latestRevision?: Maybe<Revision>;
18724
18814
  /** The latest major and minor version of the message. */
18725
18815
  latestVersion?: Maybe<FriendlyVersion>;
18726
18816
  /** Policies whether the calling user can proceed with the message related actions. */
@@ -21031,6 +21121,13 @@ declare module "aurora/graphql/schema" {
21031
21121
  /** Settings for the tag feature. */
21032
21122
  languageSettings: LanguageSettings;
21033
21123
  };
21124
+ export type LanguageAndTimeZoneForUser = {
21125
+ __typename?: 'LanguageAndTimeZoneForUser';
21126
+ /** The time zone for the current user. */
21127
+ timeZone: Scalars['String']['output'];
21128
+ /** The language for the current user. */
21129
+ userLocale: Scalars['Locale']['output'];
21130
+ };
21034
21131
  /**
21035
21132
  * An interface added to the core node types to provide a read-only UI-friendly view
21036
21133
  * of the node properties related to the tag feature.
@@ -21358,6 +21455,8 @@ declare module "aurora/graphql/schema" {
21358
21455
  * Only letters, numbers, and underscores are allowed.
21359
21456
  */
21360
21457
  templateId: Scalars['String']['input'];
21458
+ /** The ID of the template associated with this quilt wrapper template */
21459
+ themeId?: InputMaybe<Scalars['String']['input']>;
21361
21460
  };
21362
21461
  /** Defines an input for passing a long constraint. */
21363
21462
  export type LongConstraint = {
@@ -22409,7 +22508,7 @@ declare module "aurora/graphql/schema" {
22409
22508
  body?: Maybe<Scalars['String']['output']>;
22410
22509
  /** The conversation this message is a part of. */
22411
22510
  conversation: Conversation;
22412
- /** Data about the current revision of the message. */
22511
+ /** Data about the current published revision of the message. */
22413
22512
  currentRevision: Revision;
22414
22513
  /** Returns a custom field, or null if one does not exist with the given name. */
22415
22514
  customField?: Maybe<CustomField>;
@@ -22446,6 +22545,8 @@ declare module "aurora/graphql/schema" {
22446
22545
  language: Scalars['String']['output'];
22447
22546
  /** The last publish time field contains the datetime that the message was last updated. */
22448
22547
  lastPublishTime?: Maybe<Scalars['DateTime']['output']>;
22548
+ /** The most recent revision, regardless of what revision (if any) is currently published. */
22549
+ latestRevision?: Maybe<Revision>;
22449
22550
  /** The latest major and minor version of the message. */
22450
22551
  latestVersion?: Maybe<FriendlyVersion>;
22451
22552
  /** Policies whether the calling user can proceed with the message related actions. */
@@ -23646,6 +23747,8 @@ declare module "aurora/graphql/schema" {
23646
23747
  lastPublishTime?: InputMaybe<Sort>;
23647
23748
  /** Sort by the time the message was last rejected */
23648
23749
  lastRejectDate?: InputMaybe<Sort>;
23750
+ /** Sort by the time of the latest edit. */
23751
+ latestEditTime?: InputMaybe<Sort>;
23649
23752
  /** Sort by the end time of the occasion. */
23650
23753
  occasionEndTime?: InputMaybe<Sort>;
23651
23754
  /** Sort by the start time of the occasion. */
@@ -25365,6 +25468,7 @@ declare module "aurora/graphql/schema" {
25365
25468
  /** Soft deletes existing assets */
25366
25469
  softDeleteAssets: RemoveAssetsResponse;
25367
25470
  storeFeaturedContent: StoreFeaturedContentResponse;
25471
+ storeFeaturedGuides: StoreFeaturedGuidesResponse;
25368
25472
  storeFeaturedIdeaStatuses: StoreFeaturedStatusesResponse;
25369
25473
  storeFeaturedPlaces: StoreFeaturedPlacesResponse;
25370
25474
  /** Set a log in the audit log when a switch user action happens. */
@@ -25395,6 +25499,8 @@ declare module "aurora/graphql/schema" {
25395
25499
  updateChapter: UpdateChapterResponse;
25396
25500
  /** Updates a community info. */
25397
25501
  updateCommunity: UpdateCommunityResponse;
25502
+ /** Update the configs for firehose */
25503
+ updateFirehoseConfigs: FirehoseUpdatedResponse;
25398
25504
  /** Updates a forum reply message. */
25399
25505
  updateForumReply: ForumReplyMessageResponse;
25400
25506
  /** Updates a forum topic message. */
@@ -27116,6 +27222,13 @@ declare module "aurora/graphql/schema" {
27116
27222
  quiltId: Scalars['String']['input'];
27117
27223
  };
27118
27224
  /** The main Mutation type definition for the Khoros Community GraphQL schema. */
27225
+ export type MutationStoreFeaturedGuidesArgs = {
27226
+ coreNodeId: Scalars['ID']['input'];
27227
+ guides: Array<Scalars['ID']['input']>;
27228
+ instanceId: Scalars['String']['input'];
27229
+ quiltId: Scalars['String']['input'];
27230
+ };
27231
+ /** The main Mutation type definition for the Khoros Community GraphQL schema. */
27119
27232
  export type MutationStoreFeaturedIdeaStatusesArgs = {
27120
27233
  ideaBoardId: Scalars['ID']['input'];
27121
27234
  instanceId: Scalars['String']['input'];
@@ -27191,6 +27304,10 @@ declare module "aurora/graphql/schema" {
27191
27304
  updateInput: UpdateCommunityInput;
27192
27305
  };
27193
27306
  /** The main Mutation type definition for the Khoros Community GraphQL schema. */
27307
+ export type MutationUpdateFirehoseConfigsArgs = {
27308
+ firehoseRequestParams: FirehosePutRequestParams;
27309
+ };
27310
+ /** The main Mutation type definition for the Khoros Community GraphQL schema. */
27194
27311
  export type MutationUpdateForumReplyArgs = {
27195
27312
  id: Scalars['ID']['input'];
27196
27313
  updateInput: UpdateForumReplyInput;
@@ -29331,7 +29448,7 @@ declare module "aurora/graphql/schema" {
29331
29448
  body?: Maybe<Scalars['String']['output']>;
29332
29449
  /** The conversation this message is a part of. */
29333
29450
  conversation: Conversation;
29334
- /** Data about the current revision of the message. */
29451
+ /** Data about the current published revision of the message. */
29335
29452
  currentRevision: Revision;
29336
29453
  /** Returns a custom field, or null if one does not exist with the given name. */
29337
29454
  customField?: Maybe<CustomField>;
@@ -29368,6 +29485,8 @@ declare module "aurora/graphql/schema" {
29368
29485
  language: Scalars['String']['output'];
29369
29486
  /** The last publish time field contains the datetime that the message was last updated. */
29370
29487
  lastPublishTime?: Maybe<Scalars['DateTime']['output']>;
29488
+ /** The most recent revision, regardless of what revision (if any) is currently published. */
29489
+ latestRevision?: Maybe<Revision>;
29371
29490
  /** The latest major and minor version of the message. */
29372
29491
  latestVersion?: Maybe<FriendlyVersion>;
29373
29492
  /** Policies whether the calling user can proceed with the message related actions. */
@@ -29602,7 +29721,7 @@ declare module "aurora/graphql/schema" {
29602
29721
  coverImage?: Maybe<Image>;
29603
29722
  /** The cover image properties for the cover image on a occasion message. */
29604
29723
  coverImageProperties?: Maybe<CoverImageProperties>;
29605
- /** Data about the current revision of the message. */
29724
+ /** Data about the current published revision of the message. */
29606
29725
  currentRevision: Revision;
29607
29726
  /** Returns a custom field, or null if one does not exist with the given name. */
29608
29727
  customField?: Maybe<CustomField>;
@@ -29639,6 +29758,8 @@ declare module "aurora/graphql/schema" {
29639
29758
  language: Scalars['String']['output'];
29640
29759
  /** The last publish time field contains the datetime that the message was last updated. */
29641
29760
  lastPublishTime?: Maybe<Scalars['DateTime']['output']>;
29761
+ /** The most recent revision, regardless of what revision (if any) is currently published. */
29762
+ latestRevision?: Maybe<Revision>;
29642
29763
  /** The latest major and minor version of the message. */
29643
29764
  latestVersion?: Maybe<FriendlyVersion>;
29644
29765
  /** Policies whether the calling user can proceed with the message related actions. */
@@ -30336,6 +30457,14 @@ declare module "aurora/graphql/schema" {
30336
30457
  /** Unsupported operation. */
30337
30458
  operationName?: Maybe<Scalars['String']['output']>;
30338
30459
  };
30460
+ /** Client Id and Client Secret format and sent in firehose */
30461
+ export type Options = {
30462
+ __typename?: 'Options';
30463
+ /** Indicates how the Client ID and Client Secret will be sent. */
30464
+ authorizationMethod: Scalars['String']['output'];
30465
+ /** Indicates how the Client ID and Client Secret will be formatted. */
30466
+ bodyFormat: Scalars['String']['output'];
30467
+ };
30339
30468
  /** The input related to the page context for rendering the content. */
30340
30469
  export type PageContext = {
30341
30470
  /** List of the entities associated with the current page. */
@@ -30706,6 +30835,12 @@ declare module "aurora/graphql/schema" {
30706
30835
  /** CSS variable: --lia-panel-box-shadow. */
30707
30836
  boxShadow?: InputMaybe<Scalars['String']['input']>;
30708
30837
  };
30838
+ /** Additional body params in the access token */
30839
+ export type Parameters = {
30840
+ __typename?: 'Parameters';
30841
+ /** Any other body parameters that need to be passed in the body of the request. Eg: param1 = value1, param2 = value2 */
30842
+ accessToken?: Maybe<Scalars['JSON']['output']>;
30843
+ };
30709
30844
  /**
30710
30845
  * Defines a parent node in the community hierarchy.
30711
30846
  * Types of parent nodes include the community, a category, and a grouphub.
@@ -32871,6 +33006,8 @@ declare module "aurora/graphql/schema" {
32871
33006
  fieldDefinitionsLastModified?: Maybe<Scalars['String']['output']>;
32872
33007
  /** Fetches the connection of all content filter events that are triggered. */
32873
33008
  filterEvents?: Maybe<FilterEventsConnection>;
33009
+ /** Fetches the configs for firehose */
33010
+ firehoseConfigs: FirehoseConfigs;
32874
33011
  /** Fetches the first forum replies metric data using the Analytics API. */
32875
33012
  firstForumReplies?: Maybe<MetricWithChartData>;
32876
33013
  /** Fetches a list of follows. */
@@ -32958,10 +33095,10 @@ declare module "aurora/graphql/schema" {
32958
33095
  journeyOfIdeas?: Maybe<JourneyOfIdeasMetric>;
32959
33096
  /** Fetches kudos given metric data using the Analytics API. */
32960
33097
  kudosGiven?: Maybe<MetricWithMultiChartData>;
33098
+ /** Get the language for the current user. */
33099
+ languageAndTimeZoneForUser: LanguageAndTimeZoneForUser;
32961
33100
  /** Get the language for a specific node */
32962
33101
  languageForNode?: Maybe<Scalars['String']['output']>;
32963
- /** Get the language for a user, if no userId specified, return for current user. */
32964
- languageForUser: Scalars['String']['output'];
32965
33102
  /** Fetches Lead Upto Events metric using Analytics API. */
32966
33103
  leadUpToEvent?: Maybe<LeadUptoEventMetric>;
32967
33104
  /** Fetches the localized categories mapping */
@@ -33180,7 +33317,7 @@ declare module "aurora/graphql/schema" {
33180
33317
  /** Fetches the sso pre-populates values for a given user */
33181
33318
  ssoPrepopulateValues?: Maybe<SsoPrepopulateValuesResponse>;
33182
33319
  /** Get all languages an admin user can choose to expose to users */
33183
- systemLanguages: Array<Maybe<Scalars['String']['output']>>;
33320
+ systemLanguages: Array<Maybe<Scalars['Locale']['output']>>;
33184
33321
  /**
33185
33322
  * Checks that for a given text, whether a tag of the same name is present as a freeform or preset tag in the
33186
33323
  * community.
@@ -35172,6 +35309,12 @@ declare module "aurora/graphql/schema" {
35172
35309
  * Only letters, numbers, and underscores are allowed.
35173
35310
  */
35174
35311
  templateId: Scalars['String']['input'];
35312
+ /**
35313
+ * Should behave similar to how core node ids are stored, which is inside of the set score table
35314
+ * Ideally done in one transaction when setting scope of the core nodes
35315
+ * The ID of the theme associated with this quilt template
35316
+ */
35317
+ themeId?: InputMaybe<Scalars['String']['input']>;
35175
35318
  };
35176
35319
  /** An error that can occur when the quilt template is not found. */
35177
35320
  export type QuiltTemplateNotFoundError = Error & {
@@ -35195,6 +35338,8 @@ declare module "aurora/graphql/schema" {
35195
35338
  container: QuiltContainerInput;
35196
35339
  /** The ID of the quilt. */
35197
35340
  id: Scalars['String']['input'];
35341
+ /** The ID of the theme associated with this quilt */
35342
+ themeId?: InputMaybe<Scalars['String']['input']>;
35198
35343
  };
35199
35344
  export type QuiltWrapper = TemporaryOverrideable & {
35200
35345
  __typename?: 'QuiltWrapper';
@@ -35257,6 +35402,8 @@ declare module "aurora/graphql/schema" {
35257
35402
  header: QuiltWrapperSectionInput;
35258
35403
  /** id of the quilt wrapper */
35259
35404
  id: Scalars['String']['input'];
35405
+ /** The ID of the theme associated with this quilt */
35406
+ themeId?: InputMaybe<Scalars['String']['input']>;
35260
35407
  };
35261
35408
  /** An error that can occur when a quilt wrapper cannot be found. */
35262
35409
  export type QuiltWrapperNotFoundError = Error & ErrorWithArgs & QuiltWrapperError & {
@@ -36088,7 +36235,7 @@ declare module "aurora/graphql/schema" {
36088
36235
  body?: Maybe<Scalars['String']['output']>;
36089
36236
  /** The conversation this message is a part of. */
36090
36237
  conversation: Conversation;
36091
- /** Data about the current revision of the message. */
36238
+ /** Data about the current published revision of the message. */
36092
36239
  currentRevision: Revision;
36093
36240
  /** Returns a custom field, or null if one does not exist with the given name. */
36094
36241
  customField?: Maybe<CustomField>;
@@ -36125,6 +36272,8 @@ declare module "aurora/graphql/schema" {
36125
36272
  language: Scalars['String']['output'];
36126
36273
  /** The last publish time field contains the datetime that the message was last updated. */
36127
36274
  lastPublishTime?: Maybe<Scalars['DateTime']['output']>;
36275
+ /** The most recent revision, regardless of what revision (if any) is currently published. */
36276
+ latestRevision?: Maybe<Revision>;
36128
36277
  /** The latest major and minor version of the message. */
36129
36278
  latestVersion?: Maybe<FriendlyVersion>;
36130
36279
  /** Policies whether the calling user can proceed with the message related actions. */
@@ -38786,6 +38935,12 @@ declare module "aurora/graphql/schema" {
38786
38935
  /** Any error that occurred when calling the store featured content mutation. */
38787
38936
  errors?: Maybe<Array<StoreFeaturedContentError>>;
38788
38937
  };
38938
+ export type StoreFeaturedGuidesError = CoreNodeNotFoundError | FeaturedWidgetNotFoundError | GreaterThanMaxValueError | GuideNotEnabledError | InvalidGuideError | InvalidNodeTypeError | InvalidQuiltIdError | PermissionDeniedError;
38939
+ export type StoreFeaturedGuidesResponse = {
38940
+ __typename?: 'StoreFeaturedGuidesResponse';
38941
+ /** Any error that occurred when calling the store featured guides mutation. */
38942
+ errors?: Maybe<Array<StoreFeaturedGuidesError>>;
38943
+ };
38789
38944
  export type StoreFeaturedPlacesError = CoreNodeNotFoundError | FeaturedWidgetNotFoundError | GreaterThanMaxValueError | InvalidNodeTypeError | PermissionDeniedError;
38790
38945
  export type StoreFeaturedPlacesResponse = {
38791
38946
  __typename?: 'StoreFeaturedPlacesResponse';
@@ -40041,7 +40196,7 @@ declare module "aurora/graphql/schema" {
40041
40196
  /** Core types theme settings. */
40042
40197
  coreTypes?: Maybe<CoreTypesThemeSettings>;
40043
40198
  /** Theme display name */
40044
- displayName: Scalars['String']['output'];
40199
+ displayName?: Maybe<Scalars['String']['output']>;
40045
40200
  /** Divider theme settings. */
40046
40201
  divider?: Maybe<DividerThemeSettings>;
40047
40202
  /** Drop-down theme settings. */
@@ -40058,6 +40213,8 @@ declare module "aurora/graphql/schema" {
40058
40213
  imagePreview?: Maybe<ImagePreviewThemeSettings>;
40059
40214
  /** Input theme settings. */
40060
40215
  input?: Maybe<InputThemeSettings>;
40216
+ /** Theme last update time */
40217
+ lastModified?: Maybe<Scalars['String']['output']>;
40061
40218
  /** Link theme settings. */
40062
40219
  link?: Maybe<LinkThemeSettings>;
40063
40220
  /** List group theme settings. */
@@ -40154,7 +40311,7 @@ declare module "aurora/graphql/schema" {
40154
40311
  /** Core types theme settings. */
40155
40312
  coreTypes?: InputMaybe<CoreTypesThemeSettingsInput>;
40156
40313
  /** Theme display name */
40157
- displayName: Scalars['String']['input'];
40314
+ displayName?: InputMaybe<Scalars['String']['input']>;
40158
40315
  /** Divider theme settings. */
40159
40316
  divider?: InputMaybe<DividerThemeSettingsInput>;
40160
40317
  /** Drop-down theme settings. */
@@ -40905,7 +41062,7 @@ declare module "aurora/graphql/schema" {
40905
41062
  body?: Maybe<Scalars['String']['output']>;
40906
41063
  /** The conversation this message is a part of. */
40907
41064
  conversation: Conversation;
40908
- /** Data about the current revision of the message. */
41065
+ /** Data about the current published revision of the message. */
40909
41066
  currentRevision: Revision;
40910
41067
  /** Returns a custom field, or null if one does not exist with the given name. */
40911
41068
  customField?: Maybe<CustomField>;
@@ -40942,6 +41099,8 @@ declare module "aurora/graphql/schema" {
40942
41099
  language: Scalars['String']['output'];
40943
41100
  /** The last publish time field contains the datetime that the message was last updated. */
40944
41101
  lastPublishTime?: Maybe<Scalars['DateTime']['output']>;
41102
+ /** The most recent revision, regardless of what revision (if any) is currently published. */
41103
+ latestRevision?: Maybe<Revision>;
40945
41104
  /** The latest major and minor version of the message. */
40946
41105
  latestVersion?: Maybe<FriendlyVersion>;
40947
41106
  /** Policies whether the calling user can proceed with the message related actions. */
@@ -41131,7 +41290,7 @@ declare module "aurora/graphql/schema" {
41131
41290
  contributors: UserConnection;
41132
41291
  /** The conversation this message is a part of. */
41133
41292
  conversation: Conversation;
41134
- /** Data about the current revision of the message. */
41293
+ /** Data about the current published revision of the message. */
41135
41294
  currentRevision: Revision;
41136
41295
  /** Returns a custom field, or null if one does not exist with the given name. */
41137
41296
  customField?: Maybe<CustomField>;
@@ -41173,6 +41332,8 @@ declare module "aurora/graphql/schema" {
41173
41332
  language: Scalars['String']['output'];
41174
41333
  /** The last publish time field contains the datetime that the message was last updated. */
41175
41334
  lastPublishTime?: Maybe<Scalars['DateTime']['output']>;
41335
+ /** The most recent revision, regardless of what revision (if any) is currently published. */
41336
+ latestRevision?: Maybe<Revision>;
41176
41337
  /** The latest major and minor version of the message. */
41177
41338
  latestVersion?: Maybe<FriendlyVersion>;
41178
41339
  /** Policies whether the calling user can proceed with the message related actions. */
@@ -41491,7 +41652,7 @@ declare module "aurora/graphql/schema" {
41491
41652
  canonicalUrl?: Maybe<Scalars['String']['output']>;
41492
41653
  /** The conversation this message is a part of. */
41493
41654
  conversation: Conversation;
41494
- /** Data about the current revision of the message. */
41655
+ /** Data about the current published revision of the message. */
41495
41656
  currentRevision: Revision;
41496
41657
  /** Returns a custom field, or null if one does not exist with the given name. */
41497
41658
  customField?: Maybe<CustomField>;
@@ -41528,6 +41689,8 @@ declare module "aurora/graphql/schema" {
41528
41689
  language: Scalars['String']['output'];
41529
41690
  /** The last publish time field contains the datetime that the message was last updated. */
41530
41691
  lastPublishTime?: Maybe<Scalars['DateTime']['output']>;
41692
+ /** The most recent revision, regardless of what revision (if any) is currently published. */
41693
+ latestRevision?: Maybe<Revision>;
41531
41694
  /** The latest major and minor version of the message. */
41532
41695
  latestVersion?: Maybe<FriendlyVersion>;
41533
41696
  /** Policies whether the calling user can proceed with the message related actions. */
@@ -1507,7 +1507,7 @@ declare module "aurora/graphql/schema" {
1507
1507
  body?: Maybe<Scalars['String']['output']>;
1508
1508
  /** The conversation this message is a part of. */
1509
1509
  conversation: Conversation;
1510
- /** Data about the current revision of the message. */
1510
+ /** Data about the current published revision of the message. */
1511
1511
  currentRevision: Revision;
1512
1512
  /** Returns a custom field, or null if one does not exist with the given name. */
1513
1513
  customField?: Maybe<CustomField>;
@@ -1546,6 +1546,8 @@ declare module "aurora/graphql/schema" {
1546
1546
  language: Scalars['String']['output'];
1547
1547
  /** The last publish time field contains the datetime that the message was last updated. */
1548
1548
  lastPublishTime?: Maybe<Scalars['DateTime']['output']>;
1549
+ /** The most recent revision, regardless of what revision (if any) is currently published. */
1550
+ latestRevision?: Maybe<Revision>;
1549
1551
  /** The latest major and minor version of the message. */
1550
1552
  latestVersion?: Maybe<FriendlyVersion>;
1551
1553
  /** Policies whether the calling user can proceed with the message related actions. */
@@ -1730,6 +1732,12 @@ declare module "aurora/graphql/schema" {
1730
1732
  Granted = "GRANTED",
1731
1733
  Inherited = "INHERITED"
1732
1734
  }
1735
+ /** Additional headers in the access token */
1736
+ export type AccessToken = {
1737
+ __typename?: 'AccessToken';
1738
+ /** Any other parameters that need to be passed in the header of the request. Eg: header1 = value1, header2 = value2 */
1739
+ headers?: Maybe<Scalars['JSON']['output']>;
1740
+ };
1733
1741
  /** An error that can occur when the access token creation has failed. */
1734
1742
  export type AccessTokenCreationFailedError = Error & {
1735
1743
  __typename?: 'AccessTokenCreationFailedError';
@@ -2323,7 +2331,7 @@ declare module "aurora/graphql/schema" {
2323
2331
  contributors: UserConnection;
2324
2332
  /** The conversation this message is a part of. */
2325
2333
  conversation: Conversation;
2326
- /** Data about the current revision of the message. */
2334
+ /** Data about the current published revision of the message. */
2327
2335
  currentRevision: Revision;
2328
2336
  /** Returns a custom field, or null if one does not exist with the given name. */
2329
2337
  customField?: Maybe<CustomField>;
@@ -2362,6 +2370,8 @@ declare module "aurora/graphql/schema" {
2362
2370
  language: Scalars['String']['output'];
2363
2371
  /** The last publish time field contains the datetime that the message was last updated. */
2364
2372
  lastPublishTime?: Maybe<Scalars['DateTime']['output']>;
2373
+ /** The most recent revision, regardless of what revision (if any) is currently published. */
2374
+ latestRevision?: Maybe<Revision>;
2365
2375
  /** The latest major and minor version of the message. */
2366
2376
  latestVersion?: Maybe<FriendlyVersion>;
2367
2377
  /** Policies whether the calling user can proceed with the message related actions. */
@@ -3060,6 +3070,14 @@ declare module "aurora/graphql/schema" {
3060
3070
  /** The audit log. */
3061
3071
  node: AuditLog;
3062
3072
  };
3073
+ /** The Auth token information required for firehose */
3074
+ export type Auth = {
3075
+ __typename?: 'Auth';
3076
+ /** Base URL which is the relative path for Access tokens */
3077
+ tokenHost: Scalars['String']['output'];
3078
+ /** Base path which is the relative path for Access token */
3079
+ tokenPath: Scalars['String']['output'];
3080
+ };
3063
3081
  export type AuthAdministrative = {
3064
3082
  /** Settings for the auth feature. */
3065
3083
  authSettings: AuthSettings;
@@ -4563,7 +4581,7 @@ declare module "aurora/graphql/schema" {
4563
4581
  body?: Maybe<Scalars['String']['output']>;
4564
4582
  /** The conversation this message is a part of. */
4565
4583
  conversation: Conversation;
4566
- /** Data about the current revision of the message. */
4584
+ /** Data about the current published revision of the message. */
4567
4585
  currentRevision: Revision;
4568
4586
  /** Returns a custom field, or null if one does not exist with the given name. */
4569
4587
  customField?: Maybe<CustomField>;
@@ -4600,6 +4618,8 @@ declare module "aurora/graphql/schema" {
4600
4618
  language: Scalars['String']['output'];
4601
4619
  /** The last publish time field contains the datetime that the message was last updated. */
4602
4620
  lastPublishTime?: Maybe<Scalars['DateTime']['output']>;
4621
+ /** The most recent revision, regardless of what revision (if any) is currently published. */
4622
+ latestRevision?: Maybe<Revision>;
4603
4623
  /** The latest major and minor version of the message. */
4604
4624
  latestVersion?: Maybe<FriendlyVersion>;
4605
4625
  /** Policies whether the calling user can proceed with the message related actions. */
@@ -4795,7 +4815,7 @@ declare module "aurora/graphql/schema" {
4795
4815
  coverImage?: Maybe<Image>;
4796
4816
  /** The cover image properties for the cover image on a message. */
4797
4817
  coverImageProperties?: Maybe<CoverImageProperties>;
4798
- /** Data about the current revision of the message. */
4818
+ /** Data about the current published revision of the message. */
4799
4819
  currentRevision: Revision;
4800
4820
  /** Returns a custom field, or null if one does not exist with the given name. */
4801
4821
  customField?: Maybe<CustomField>;
@@ -4834,6 +4854,8 @@ declare module "aurora/graphql/schema" {
4834
4854
  language: Scalars['String']['output'];
4835
4855
  /** The last publish time field contains the datetime that the message was last updated. */
4836
4856
  lastPublishTime?: Maybe<Scalars['DateTime']['output']>;
4857
+ /** The most recent revision, regardless of what revision (if any) is currently published. */
4858
+ latestRevision?: Maybe<Revision>;
4837
4859
  /** The latest major and minor version of the message. */
4838
4860
  latestVersion?: Maybe<FriendlyVersion>;
4839
4861
  /** Policies whether the calling user can proceed with the message related actions. */
@@ -8066,6 +8088,14 @@ declare module "aurora/graphql/schema" {
8066
8088
  /** Will be true of the clear succeeded. It will be null if there was an error. */
8067
8089
  result?: Maybe<Scalars['Boolean']['output']>;
8068
8090
  };
8091
+ /** The client information required for firehose */
8092
+ export type Client = {
8093
+ __typename?: 'Client';
8094
+ /** The client id for firehose */
8095
+ id: Scalars['String']['output'];
8096
+ /** The client secret for firehose */
8097
+ secret: Scalars['String']['output'];
8098
+ };
8069
8099
  /** Auth method used by client for getting access token */
8070
8100
  export enum ClientAuthMethod {
8071
8101
  /** client secret basic mode */
@@ -9154,6 +9184,8 @@ declare module "aurora/graphql/schema" {
9154
9184
  canManageEscalations: PolicyResult;
9155
9185
  /** Whether the calling user can manage/admin feature content widget or not */
9156
9186
  canManageFeaturedWidget: PolicyResult;
9187
+ /** Whether the user can manage guides on any KB Board in the community. */
9188
+ canManageGuidesOnCommunity: PolicyResult;
9157
9189
  /** Whether the calling user can manage redirect rules. */
9158
9190
  canManageRedirectRules: PolicyResult;
9159
9191
  /** Whether the user can manage users in the community */
@@ -11484,7 +11516,7 @@ declare module "aurora/graphql/schema" {
11484
11516
  result?: Maybe<TextResource>;
11485
11517
  };
11486
11518
  /** A known error that can be returned by the createOrUpdateTheme mutation. */
11487
- export type CreateOrUpdateThemeError = BaseThemeNotFoundError | CreateOrUpdateThemeFailedError | InvalidGitCommitInfoHeaderError | MustBeAlphanumericError | QuiltNotFoundError | ThemeAlreadyExistsError | ThemeNotFoundError;
11519
+ export type CreateOrUpdateThemeError = BaseThemeNotFoundError | CreateOrUpdateThemeFailedError | InvalidGitCommitInfoHeaderError | MustBeAlphanumericError | QuiltNotFoundError | RequiredFieldError | ThemeAlreadyExistsError | ThemeNotFoundError;
11488
11520
  /** An unexpected error that might occur when attempting to create or update a theme. */
11489
11521
  export type CreateOrUpdateThemeFailedError = Error & ErrorWithArgs & ThemeError & {
11490
11522
  __typename?: 'CreateOrUpdateThemeFailedError';
@@ -14746,6 +14778,50 @@ declare module "aurora/graphql/schema" {
14746
14778
  /** A user. */
14747
14779
  User = "USER"
14748
14780
  }
14781
+ /** The response type for the firehoseConfigs query */
14782
+ export type FirehoseConfigs = {
14783
+ __typename?: 'FirehoseConfigs';
14784
+ /** The Auth host and path */
14785
+ auth: Auth;
14786
+ /** The Client informations */
14787
+ client: Client;
14788
+ /** URL of the REST Endpoint for delivering the event payload. */
14789
+ endpointURL: Scalars['String']['output'];
14790
+ /** Additional headers in http request */
14791
+ httpOptions?: Maybe<HttpOptions>;
14792
+ /** How the client fields to be sent and formatted */
14793
+ options: Options;
14794
+ /** Additional parameters for access token */
14795
+ parameters?: Maybe<Parameters>;
14796
+ };
14797
+ export type FirehosePutRequestParams = {
14798
+ /** Additional token body params for firehose */
14799
+ accessTokenBody?: InputMaybe<Scalars['String']['input']>;
14800
+ /** Additional token headers for firehose */
14801
+ accessTokenHeaders?: InputMaybe<Scalars['String']['input']>;
14802
+ /** Whether the client id and secret to be sent body / header */
14803
+ authorizationMethod: Scalars['String']['input'];
14804
+ /** Whether the client id and secret to be formatted json / form */
14805
+ bodyFormat: Scalars['String']['input'];
14806
+ /** The client id for firehose */
14807
+ clientId: Scalars['String']['input'];
14808
+ /** The client secret for firehose */
14809
+ clientSecret: Scalars['String']['input'];
14810
+ /** URL of the REST Endpoint for delivering the event payload. */
14811
+ endpointURL: Scalars['String']['input'];
14812
+ /** Base URL which is the relative path for Access tokens */
14813
+ tokenHost: Scalars['String']['input'];
14814
+ /** In which the token headers and token body available */
14815
+ tokenPath: Scalars['String']['input'];
14816
+ };
14817
+ /** Response of the updateFirehoseConfig mutation */
14818
+ export type FirehoseUpdatedResponse = {
14819
+ __typename?: 'FirehoseUpdatedResponse';
14820
+ /** Any errors while updating firehose configs */
14821
+ errors?: Maybe<Array<Maybe<Error>>>;
14822
+ /** Returns appropriate message after update */
14823
+ result: Scalars['Boolean']['output'];
14824
+ };
14749
14825
  /** Constraints to filter the FirstReplies metric data. */
14750
14826
  export type FirstForumRepliesConstraints = {
14751
14827
  /** End time of the time range. */
@@ -16505,7 +16581,7 @@ declare module "aurora/graphql/schema" {
16505
16581
  body?: Maybe<Scalars['String']['output']>;
16506
16582
  /** The conversation this message is a part of. */
16507
16583
  conversation: Conversation;
16508
- /** Data about the current revision of the message. */
16584
+ /** Data about the current published revision of the message. */
16509
16585
  currentRevision: Revision;
16510
16586
  /** Returns a custom field, or null if one does not exist with the given name. */
16511
16587
  customField?: Maybe<CustomField>;
@@ -16544,6 +16620,8 @@ declare module "aurora/graphql/schema" {
16544
16620
  language: Scalars['String']['output'];
16545
16621
  /** The last publish time field contains the datetime that the message was last updated. */
16546
16622
  lastPublishTime?: Maybe<Scalars['DateTime']['output']>;
16623
+ /** The most recent revision, regardless of what revision (if any) is currently published. */
16624
+ latestRevision?: Maybe<Revision>;
16547
16625
  /** The latest major and minor version of the message. */
16548
16626
  latestVersion?: Maybe<FriendlyVersion>;
16549
16627
  /** Policies whether the calling user can proceed with the message related actions. */
@@ -16729,7 +16807,7 @@ declare module "aurora/graphql/schema" {
16729
16807
  canonicalUrl?: Maybe<Scalars['String']['output']>;
16730
16808
  /** The conversation this message is a part of. */
16731
16809
  conversation: Conversation;
16732
- /** Data about the current revision of the message. */
16810
+ /** Data about the current published revision of the message. */
16733
16811
  currentRevision: Revision;
16734
16812
  /** Returns a custom field, or null if one does not exist with the given name. */
16735
16813
  customField?: Maybe<CustomField>;
@@ -16768,6 +16846,8 @@ declare module "aurora/graphql/schema" {
16768
16846
  language: Scalars['String']['output'];
16769
16847
  /** The last publish time field contains the datetime that the message was last updated. */
16770
16848
  lastPublishTime?: Maybe<Scalars['DateTime']['output']>;
16849
+ /** The most recent revision, regardless of what revision (if any) is currently published. */
16850
+ latestRevision?: Maybe<Revision>;
16771
16851
  /** The latest major and minor version of the message. */
16772
16852
  latestVersion?: Maybe<FriendlyVersion>;
16773
16853
  /** Policies whether the calling user can proceed with the message related actions. */
@@ -18773,6 +18853,12 @@ declare module "aurora/graphql/schema" {
18773
18853
  /** The localized message of the error. */
18774
18854
  message: Scalars['String']['output'];
18775
18855
  };
18856
+ /** Additional access token if required */
18857
+ export type HttpOptions = {
18858
+ __typename?: 'HttpOptions';
18859
+ /** The access token for firehose */
18860
+ accessToken?: Maybe<AccessToken>;
18861
+ };
18776
18862
  /** Defines an input for passing an ID constraint. */
18777
18863
  export type IdConstraint = {
18778
18864
  /** Equal to (=). */
@@ -19528,7 +19614,7 @@ declare module "aurora/graphql/schema" {
19528
19614
  body?: Maybe<Scalars['String']['output']>;
19529
19615
  /** The conversation this message is a part of. */
19530
19616
  conversation: Conversation;
19531
- /** Data about the current revision of the message. */
19617
+ /** Data about the current published revision of the message. */
19532
19618
  currentRevision: Revision;
19533
19619
  /** Returns a custom field, or null if one does not exist with the given name. */
19534
19620
  customField?: Maybe<CustomField>;
@@ -19565,6 +19651,8 @@ declare module "aurora/graphql/schema" {
19565
19651
  language: Scalars['String']['output'];
19566
19652
  /** The last publish time field contains the datetime that the message was last updated. */
19567
19653
  lastPublishTime?: Maybe<Scalars['DateTime']['output']>;
19654
+ /** The most recent revision, regardless of what revision (if any) is currently published. */
19655
+ latestRevision?: Maybe<Revision>;
19568
19656
  /** The latest major and minor version of the message. */
19569
19657
  latestVersion?: Maybe<FriendlyVersion>;
19570
19658
  /** Policies whether the calling user can proceed with the message related actions. */
@@ -19868,7 +19956,7 @@ declare module "aurora/graphql/schema" {
19868
19956
  contentWorkflow?: Maybe<ContentWorkflow>;
19869
19957
  /** The conversation this message is a part of. */
19870
19958
  conversation: Conversation;
19871
- /** Data about the current revision of the message. */
19959
+ /** Data about the current published revision of the message. */
19872
19960
  currentRevision: Revision;
19873
19961
  /** Returns a custom field, or null if one does not exist with the given name. */
19874
19962
  customField?: Maybe<CustomField>;
@@ -19907,6 +19995,8 @@ declare module "aurora/graphql/schema" {
19907
19995
  language: Scalars['String']['output'];
19908
19996
  /** The last publish time field contains the datetime that the message was last updated. */
19909
19997
  lastPublishTime?: Maybe<Scalars['DateTime']['output']>;
19998
+ /** The most recent revision, regardless of what revision (if any) is currently published. */
19999
+ latestRevision?: Maybe<Revision>;
19910
20000
  /** The latest major and minor version of the message. */
19911
20001
  latestVersion?: Maybe<FriendlyVersion>;
19912
20002
  /** Policies whether the calling user can proceed with the message related actions. */
@@ -22217,6 +22307,13 @@ declare module "aurora/graphql/schema" {
22217
22307
  /** Settings for the tag feature. */
22218
22308
  languageSettings: LanguageSettings;
22219
22309
  };
22310
+ export type LanguageAndTimeZoneForUser = {
22311
+ __typename?: 'LanguageAndTimeZoneForUser';
22312
+ /** The time zone for the current user. */
22313
+ timeZone: Scalars['String']['output'];
22314
+ /** The language for the current user. */
22315
+ userLocale: Scalars['Locale']['output'];
22316
+ };
22220
22317
  /**
22221
22318
  * An interface added to the core node types to provide a read-only UI-friendly view
22222
22319
  * of the node properties related to the tag feature.
@@ -22544,6 +22641,8 @@ declare module "aurora/graphql/schema" {
22544
22641
  * Only letters, numbers, and underscores are allowed.
22545
22642
  */
22546
22643
  templateId: Scalars['String']['input'];
22644
+ /** The ID of the template associated with this quilt wrapper template */
22645
+ themeId?: InputMaybe<Scalars['String']['input']>;
22547
22646
  };
22548
22647
  /** Defines an input for passing a long constraint. */
22549
22648
  export type LongConstraint = {
@@ -23595,7 +23694,7 @@ declare module "aurora/graphql/schema" {
23595
23694
  body?: Maybe<Scalars['String']['output']>;
23596
23695
  /** The conversation this message is a part of. */
23597
23696
  conversation: Conversation;
23598
- /** Data about the current revision of the message. */
23697
+ /** Data about the current published revision of the message. */
23599
23698
  currentRevision: Revision;
23600
23699
  /** Returns a custom field, or null if one does not exist with the given name. */
23601
23700
  customField?: Maybe<CustomField>;
@@ -23632,6 +23731,8 @@ declare module "aurora/graphql/schema" {
23632
23731
  language: Scalars['String']['output'];
23633
23732
  /** The last publish time field contains the datetime that the message was last updated. */
23634
23733
  lastPublishTime?: Maybe<Scalars['DateTime']['output']>;
23734
+ /** The most recent revision, regardless of what revision (if any) is currently published. */
23735
+ latestRevision?: Maybe<Revision>;
23635
23736
  /** The latest major and minor version of the message. */
23636
23737
  latestVersion?: Maybe<FriendlyVersion>;
23637
23738
  /** Policies whether the calling user can proceed with the message related actions. */
@@ -24832,6 +24933,8 @@ declare module "aurora/graphql/schema" {
24832
24933
  lastPublishTime?: InputMaybe<Sort>;
24833
24934
  /** Sort by the time the message was last rejected */
24834
24935
  lastRejectDate?: InputMaybe<Sort>;
24936
+ /** Sort by the time of the latest edit. */
24937
+ latestEditTime?: InputMaybe<Sort>;
24835
24938
  /** Sort by the end time of the occasion. */
24836
24939
  occasionEndTime?: InputMaybe<Sort>;
24837
24940
  /** Sort by the start time of the occasion. */
@@ -26551,6 +26654,7 @@ declare module "aurora/graphql/schema" {
26551
26654
  /** Soft deletes existing assets */
26552
26655
  softDeleteAssets: RemoveAssetsResponse;
26553
26656
  storeFeaturedContent: StoreFeaturedContentResponse;
26657
+ storeFeaturedGuides: StoreFeaturedGuidesResponse;
26554
26658
  storeFeaturedIdeaStatuses: StoreFeaturedStatusesResponse;
26555
26659
  storeFeaturedPlaces: StoreFeaturedPlacesResponse;
26556
26660
  /** Set a log in the audit log when a switch user action happens. */
@@ -26581,6 +26685,8 @@ declare module "aurora/graphql/schema" {
26581
26685
  updateChapter: UpdateChapterResponse;
26582
26686
  /** Updates a community info. */
26583
26687
  updateCommunity: UpdateCommunityResponse;
26688
+ /** Update the configs for firehose */
26689
+ updateFirehoseConfigs: FirehoseUpdatedResponse;
26584
26690
  /** Updates a forum reply message. */
26585
26691
  updateForumReply: ForumReplyMessageResponse;
26586
26692
  /** Updates a forum topic message. */
@@ -28302,6 +28408,13 @@ declare module "aurora/graphql/schema" {
28302
28408
  quiltId: Scalars['String']['input'];
28303
28409
  };
28304
28410
  /** The main Mutation type definition for the Khoros Community GraphQL schema. */
28411
+ export type MutationStoreFeaturedGuidesArgs = {
28412
+ coreNodeId: Scalars['ID']['input'];
28413
+ guides: Array<Scalars['ID']['input']>;
28414
+ instanceId: Scalars['String']['input'];
28415
+ quiltId: Scalars['String']['input'];
28416
+ };
28417
+ /** The main Mutation type definition for the Khoros Community GraphQL schema. */
28305
28418
  export type MutationStoreFeaturedIdeaStatusesArgs = {
28306
28419
  ideaBoardId: Scalars['ID']['input'];
28307
28420
  instanceId: Scalars['String']['input'];
@@ -28377,6 +28490,10 @@ declare module "aurora/graphql/schema" {
28377
28490
  updateInput: UpdateCommunityInput;
28378
28491
  };
28379
28492
  /** The main Mutation type definition for the Khoros Community GraphQL schema. */
28493
+ export type MutationUpdateFirehoseConfigsArgs = {
28494
+ firehoseRequestParams: FirehosePutRequestParams;
28495
+ };
28496
+ /** The main Mutation type definition for the Khoros Community GraphQL schema. */
28380
28497
  export type MutationUpdateForumReplyArgs = {
28381
28498
  id: Scalars['ID']['input'];
28382
28499
  updateInput: UpdateForumReplyInput;
@@ -30517,7 +30634,7 @@ declare module "aurora/graphql/schema" {
30517
30634
  body?: Maybe<Scalars['String']['output']>;
30518
30635
  /** The conversation this message is a part of. */
30519
30636
  conversation: Conversation;
30520
- /** Data about the current revision of the message. */
30637
+ /** Data about the current published revision of the message. */
30521
30638
  currentRevision: Revision;
30522
30639
  /** Returns a custom field, or null if one does not exist with the given name. */
30523
30640
  customField?: Maybe<CustomField>;
@@ -30554,6 +30671,8 @@ declare module "aurora/graphql/schema" {
30554
30671
  language: Scalars['String']['output'];
30555
30672
  /** The last publish time field contains the datetime that the message was last updated. */
30556
30673
  lastPublishTime?: Maybe<Scalars['DateTime']['output']>;
30674
+ /** The most recent revision, regardless of what revision (if any) is currently published. */
30675
+ latestRevision?: Maybe<Revision>;
30557
30676
  /** The latest major and minor version of the message. */
30558
30677
  latestVersion?: Maybe<FriendlyVersion>;
30559
30678
  /** Policies whether the calling user can proceed with the message related actions. */
@@ -30788,7 +30907,7 @@ declare module "aurora/graphql/schema" {
30788
30907
  coverImage?: Maybe<Image>;
30789
30908
  /** The cover image properties for the cover image on a occasion message. */
30790
30909
  coverImageProperties?: Maybe<CoverImageProperties>;
30791
- /** Data about the current revision of the message. */
30910
+ /** Data about the current published revision of the message. */
30792
30911
  currentRevision: Revision;
30793
30912
  /** Returns a custom field, or null if one does not exist with the given name. */
30794
30913
  customField?: Maybe<CustomField>;
@@ -30825,6 +30944,8 @@ declare module "aurora/graphql/schema" {
30825
30944
  language: Scalars['String']['output'];
30826
30945
  /** The last publish time field contains the datetime that the message was last updated. */
30827
30946
  lastPublishTime?: Maybe<Scalars['DateTime']['output']>;
30947
+ /** The most recent revision, regardless of what revision (if any) is currently published. */
30948
+ latestRevision?: Maybe<Revision>;
30828
30949
  /** The latest major and minor version of the message. */
30829
30950
  latestVersion?: Maybe<FriendlyVersion>;
30830
30951
  /** Policies whether the calling user can proceed with the message related actions. */
@@ -31522,6 +31643,14 @@ declare module "aurora/graphql/schema" {
31522
31643
  /** Unsupported operation. */
31523
31644
  operationName?: Maybe<Scalars['String']['output']>;
31524
31645
  };
31646
+ /** Client Id and Client Secret format and sent in firehose */
31647
+ export type Options = {
31648
+ __typename?: 'Options';
31649
+ /** Indicates how the Client ID and Client Secret will be sent. */
31650
+ authorizationMethod: Scalars['String']['output'];
31651
+ /** Indicates how the Client ID and Client Secret will be formatted. */
31652
+ bodyFormat: Scalars['String']['output'];
31653
+ };
31525
31654
  /** The input related to the page context for rendering the content. */
31526
31655
  export type PageContext = {
31527
31656
  /** List of the entities associated with the current page. */
@@ -31892,6 +32021,12 @@ declare module "aurora/graphql/schema" {
31892
32021
  /** CSS variable: --lia-panel-box-shadow. */
31893
32022
  boxShadow?: InputMaybe<Scalars['String']['input']>;
31894
32023
  };
32024
+ /** Additional body params in the access token */
32025
+ export type Parameters = {
32026
+ __typename?: 'Parameters';
32027
+ /** Any other body parameters that need to be passed in the body of the request. Eg: param1 = value1, param2 = value2 */
32028
+ accessToken?: Maybe<Scalars['JSON']['output']>;
32029
+ };
31895
32030
  /**
31896
32031
  * Defines a parent node in the community hierarchy.
31897
32032
  * Types of parent nodes include the community, a category, and a grouphub.
@@ -34057,6 +34192,8 @@ declare module "aurora/graphql/schema" {
34057
34192
  fieldDefinitionsLastModified?: Maybe<Scalars['String']['output']>;
34058
34193
  /** Fetches the connection of all content filter events that are triggered. */
34059
34194
  filterEvents?: Maybe<FilterEventsConnection>;
34195
+ /** Fetches the configs for firehose */
34196
+ firehoseConfigs: FirehoseConfigs;
34060
34197
  /** Fetches the first forum replies metric data using the Analytics API. */
34061
34198
  firstForumReplies?: Maybe<MetricWithChartData>;
34062
34199
  /** Fetches a list of follows. */
@@ -34144,10 +34281,10 @@ declare module "aurora/graphql/schema" {
34144
34281
  journeyOfIdeas?: Maybe<JourneyOfIdeasMetric>;
34145
34282
  /** Fetches kudos given metric data using the Analytics API. */
34146
34283
  kudosGiven?: Maybe<MetricWithMultiChartData>;
34284
+ /** Get the language for the current user. */
34285
+ languageAndTimeZoneForUser: LanguageAndTimeZoneForUser;
34147
34286
  /** Get the language for a specific node */
34148
34287
  languageForNode?: Maybe<Scalars['String']['output']>;
34149
- /** Get the language for a user, if no userId specified, return for current user. */
34150
- languageForUser: Scalars['String']['output'];
34151
34288
  /** Fetches Lead Upto Events metric using Analytics API. */
34152
34289
  leadUpToEvent?: Maybe<LeadUptoEventMetric>;
34153
34290
  /** Fetches the localized categories mapping */
@@ -34366,7 +34503,7 @@ declare module "aurora/graphql/schema" {
34366
34503
  /** Fetches the sso pre-populates values for a given user */
34367
34504
  ssoPrepopulateValues?: Maybe<SsoPrepopulateValuesResponse>;
34368
34505
  /** Get all languages an admin user can choose to expose to users */
34369
- systemLanguages: Array<Maybe<Scalars['String']['output']>>;
34506
+ systemLanguages: Array<Maybe<Scalars['Locale']['output']>>;
34370
34507
  /**
34371
34508
  * Checks that for a given text, whether a tag of the same name is present as a freeform or preset tag in the
34372
34509
  * community.
@@ -36358,6 +36495,12 @@ declare module "aurora/graphql/schema" {
36358
36495
  * Only letters, numbers, and underscores are allowed.
36359
36496
  */
36360
36497
  templateId: Scalars['String']['input'];
36498
+ /**
36499
+ * Should behave similar to how core node ids are stored, which is inside of the set score table
36500
+ * Ideally done in one transaction when setting scope of the core nodes
36501
+ * The ID of the theme associated with this quilt template
36502
+ */
36503
+ themeId?: InputMaybe<Scalars['String']['input']>;
36361
36504
  };
36362
36505
  /** An error that can occur when the quilt template is not found. */
36363
36506
  export type QuiltTemplateNotFoundError = Error & {
@@ -36381,6 +36524,8 @@ declare module "aurora/graphql/schema" {
36381
36524
  container: QuiltContainerInput;
36382
36525
  /** The ID of the quilt. */
36383
36526
  id: Scalars['String']['input'];
36527
+ /** The ID of the theme associated with this quilt */
36528
+ themeId?: InputMaybe<Scalars['String']['input']>;
36384
36529
  };
36385
36530
  export type QuiltWrapper = TemporaryOverrideable & {
36386
36531
  __typename?: 'QuiltWrapper';
@@ -36443,6 +36588,8 @@ declare module "aurora/graphql/schema" {
36443
36588
  header: QuiltWrapperSectionInput;
36444
36589
  /** id of the quilt wrapper */
36445
36590
  id: Scalars['String']['input'];
36591
+ /** The ID of the theme associated with this quilt */
36592
+ themeId?: InputMaybe<Scalars['String']['input']>;
36446
36593
  };
36447
36594
  /** An error that can occur when a quilt wrapper cannot be found. */
36448
36595
  export type QuiltWrapperNotFoundError = Error & ErrorWithArgs & QuiltWrapperError & {
@@ -37274,7 +37421,7 @@ declare module "aurora/graphql/schema" {
37274
37421
  body?: Maybe<Scalars['String']['output']>;
37275
37422
  /** The conversation this message is a part of. */
37276
37423
  conversation: Conversation;
37277
- /** Data about the current revision of the message. */
37424
+ /** Data about the current published revision of the message. */
37278
37425
  currentRevision: Revision;
37279
37426
  /** Returns a custom field, or null if one does not exist with the given name. */
37280
37427
  customField?: Maybe<CustomField>;
@@ -37311,6 +37458,8 @@ declare module "aurora/graphql/schema" {
37311
37458
  language: Scalars['String']['output'];
37312
37459
  /** The last publish time field contains the datetime that the message was last updated. */
37313
37460
  lastPublishTime?: Maybe<Scalars['DateTime']['output']>;
37461
+ /** The most recent revision, regardless of what revision (if any) is currently published. */
37462
+ latestRevision?: Maybe<Revision>;
37314
37463
  /** The latest major and minor version of the message. */
37315
37464
  latestVersion?: Maybe<FriendlyVersion>;
37316
37465
  /** Policies whether the calling user can proceed with the message related actions. */
@@ -39972,6 +40121,12 @@ declare module "aurora/graphql/schema" {
39972
40121
  /** Any error that occurred when calling the store featured content mutation. */
39973
40122
  errors?: Maybe<Array<StoreFeaturedContentError>>;
39974
40123
  };
40124
+ export type StoreFeaturedGuidesError = CoreNodeNotFoundError | FeaturedWidgetNotFoundError | GreaterThanMaxValueError | GuideNotEnabledError | InvalidGuideError | InvalidNodeTypeError | InvalidQuiltIdError | PermissionDeniedError;
40125
+ export type StoreFeaturedGuidesResponse = {
40126
+ __typename?: 'StoreFeaturedGuidesResponse';
40127
+ /** Any error that occurred when calling the store featured guides mutation. */
40128
+ errors?: Maybe<Array<StoreFeaturedGuidesError>>;
40129
+ };
39975
40130
  export type StoreFeaturedPlacesError = CoreNodeNotFoundError | FeaturedWidgetNotFoundError | GreaterThanMaxValueError | InvalidNodeTypeError | PermissionDeniedError;
39976
40131
  export type StoreFeaturedPlacesResponse = {
39977
40132
  __typename?: 'StoreFeaturedPlacesResponse';
@@ -41227,7 +41382,7 @@ declare module "aurora/graphql/schema" {
41227
41382
  /** Core types theme settings. */
41228
41383
  coreTypes?: Maybe<CoreTypesThemeSettings>;
41229
41384
  /** Theme display name */
41230
- displayName: Scalars['String']['output'];
41385
+ displayName?: Maybe<Scalars['String']['output']>;
41231
41386
  /** Divider theme settings. */
41232
41387
  divider?: Maybe<DividerThemeSettings>;
41233
41388
  /** Drop-down theme settings. */
@@ -41244,6 +41399,8 @@ declare module "aurora/graphql/schema" {
41244
41399
  imagePreview?: Maybe<ImagePreviewThemeSettings>;
41245
41400
  /** Input theme settings. */
41246
41401
  input?: Maybe<InputThemeSettings>;
41402
+ /** Theme last update time */
41403
+ lastModified?: Maybe<Scalars['String']['output']>;
41247
41404
  /** Link theme settings. */
41248
41405
  link?: Maybe<LinkThemeSettings>;
41249
41406
  /** List group theme settings. */
@@ -41340,7 +41497,7 @@ declare module "aurora/graphql/schema" {
41340
41497
  /** Core types theme settings. */
41341
41498
  coreTypes?: InputMaybe<CoreTypesThemeSettingsInput>;
41342
41499
  /** Theme display name */
41343
- displayName: Scalars['String']['input'];
41500
+ displayName?: InputMaybe<Scalars['String']['input']>;
41344
41501
  /** Divider theme settings. */
41345
41502
  divider?: InputMaybe<DividerThemeSettingsInput>;
41346
41503
  /** Drop-down theme settings. */
@@ -42091,7 +42248,7 @@ declare module "aurora/graphql/schema" {
42091
42248
  body?: Maybe<Scalars['String']['output']>;
42092
42249
  /** The conversation this message is a part of. */
42093
42250
  conversation: Conversation;
42094
- /** Data about the current revision of the message. */
42251
+ /** Data about the current published revision of the message. */
42095
42252
  currentRevision: Revision;
42096
42253
  /** Returns a custom field, or null if one does not exist with the given name. */
42097
42254
  customField?: Maybe<CustomField>;
@@ -42128,6 +42285,8 @@ declare module "aurora/graphql/schema" {
42128
42285
  language: Scalars['String']['output'];
42129
42286
  /** The last publish time field contains the datetime that the message was last updated. */
42130
42287
  lastPublishTime?: Maybe<Scalars['DateTime']['output']>;
42288
+ /** The most recent revision, regardless of what revision (if any) is currently published. */
42289
+ latestRevision?: Maybe<Revision>;
42131
42290
  /** The latest major and minor version of the message. */
42132
42291
  latestVersion?: Maybe<FriendlyVersion>;
42133
42292
  /** Policies whether the calling user can proceed with the message related actions. */
@@ -42317,7 +42476,7 @@ declare module "aurora/graphql/schema" {
42317
42476
  contributors: UserConnection;
42318
42477
  /** The conversation this message is a part of. */
42319
42478
  conversation: Conversation;
42320
- /** Data about the current revision of the message. */
42479
+ /** Data about the current published revision of the message. */
42321
42480
  currentRevision: Revision;
42322
42481
  /** Returns a custom field, or null if one does not exist with the given name. */
42323
42482
  customField?: Maybe<CustomField>;
@@ -42359,6 +42518,8 @@ declare module "aurora/graphql/schema" {
42359
42518
  language: Scalars['String']['output'];
42360
42519
  /** The last publish time field contains the datetime that the message was last updated. */
42361
42520
  lastPublishTime?: Maybe<Scalars['DateTime']['output']>;
42521
+ /** The most recent revision, regardless of what revision (if any) is currently published. */
42522
+ latestRevision?: Maybe<Revision>;
42362
42523
  /** The latest major and minor version of the message. */
42363
42524
  latestVersion?: Maybe<FriendlyVersion>;
42364
42525
  /** Policies whether the calling user can proceed with the message related actions. */
@@ -42677,7 +42838,7 @@ declare module "aurora/graphql/schema" {
42677
42838
  canonicalUrl?: Maybe<Scalars['String']['output']>;
42678
42839
  /** The conversation this message is a part of. */
42679
42840
  conversation: Conversation;
42680
- /** Data about the current revision of the message. */
42841
+ /** Data about the current published revision of the message. */
42681
42842
  currentRevision: Revision;
42682
42843
  /** Returns a custom field, or null if one does not exist with the given name. */
42683
42844
  customField?: Maybe<CustomField>;
@@ -42714,6 +42875,8 @@ declare module "aurora/graphql/schema" {
42714
42875
  language: Scalars['String']['output'];
42715
42876
  /** The last publish time field contains the datetime that the message was last updated. */
42716
42877
  lastPublishTime?: Maybe<Scalars['DateTime']['output']>;
42878
+ /** The most recent revision, regardless of what revision (if any) is currently published. */
42879
+ latestRevision?: Maybe<Revision>;
42717
42880
  /** The latest major and minor version of the message. */
42718
42881
  latestVersion?: Maybe<FriendlyVersion>;
42719
42882
  /** Policies whether the calling user can proceed with the message related actions. */