graphlit-client 1.0.20251220002 → 1.0.20251222001
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.
|
@@ -10251,6 +10251,8 @@ export type MicrosoftTeamsFeedProperties = {
|
|
|
10251
10251
|
clientSecret?: Maybe<Scalars['String']['output']>;
|
|
10252
10252
|
/** Authentication connector reference. */
|
|
10253
10253
|
connector?: Maybe<EntityReference>;
|
|
10254
|
+
/** Should the Microsoft Teams feed include attachments. */
|
|
10255
|
+
includeAttachments?: Maybe<Scalars['Boolean']['output']>;
|
|
10254
10256
|
/** The limit of items to be read from feed, defaults to 100. */
|
|
10255
10257
|
readLimit?: Maybe<Scalars['Int']['output']>;
|
|
10256
10258
|
/** Microsoft Teams refresh token. */
|
|
@@ -10272,6 +10274,8 @@ export type MicrosoftTeamsFeedPropertiesInput = {
|
|
|
10272
10274
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
10273
10275
|
/** The authentication connector reference. */
|
|
10274
10276
|
connector?: InputMaybe<EntityReferenceInput>;
|
|
10277
|
+
/** Should the Microsoft Teams feed include attachments. */
|
|
10278
|
+
includeAttachments?: InputMaybe<Scalars['Boolean']['input']>;
|
|
10275
10279
|
/** The limit of items to be read from feed, defaults to 100. */
|
|
10276
10280
|
readLimit?: InputMaybe<Scalars['Int']['input']>;
|
|
10277
10281
|
/** Microsoft Teams refresh token, requires User authentication type. */
|
|
@@ -10293,6 +10297,8 @@ export type MicrosoftTeamsFeedPropertiesUpdateInput = {
|
|
|
10293
10297
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
10294
10298
|
/** The authentication connector reference. */
|
|
10295
10299
|
connector?: InputMaybe<EntityReferenceInput>;
|
|
10300
|
+
/** Should the Microsoft Teams feed include attachments. */
|
|
10301
|
+
includeAttachments?: InputMaybe<Scalars['Boolean']['input']>;
|
|
10296
10302
|
/** The limit of items to be read from feed, defaults to 100. */
|
|
10297
10303
|
readLimit?: InputMaybe<Scalars['Int']['input']>;
|
|
10298
10304
|
/** Microsoft Teams refresh token, requires User authentication type. */
|