graphlit-client 1.0.20260410001 → 1.0.20260411001
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/dist/client.d.ts
CHANGED
|
@@ -1350,68 +1350,6 @@ declare class Graphlit {
|
|
|
1350
1350
|
* @returns The Slack users with userId, displayName, realName, and email.
|
|
1351
1351
|
*/
|
|
1352
1352
|
querySlackUsers(properties: Types.SlackChannelsInput): Promise<Types.QuerySlackUsersQuery>;
|
|
1353
|
-
/**
|
|
1354
|
-
* Updates a Google Calendar event.
|
|
1355
|
-
* @param properties - The Google Calendar authentication properties.
|
|
1356
|
-
* @param eventId - The event identifier.
|
|
1357
|
-
* @param input - The event fields to update.
|
|
1358
|
-
* @returns The updated calendar event.
|
|
1359
|
-
*/
|
|
1360
|
-
updateGoogleCalendarEvent(properties: Types.GoogleCalendarEventsInput, eventId: string, input: Types.CalendarEventUpdateInput): Promise<Types.UpdateGoogleCalendarEventMutation>;
|
|
1361
|
-
/**
|
|
1362
|
-
* Updates a Microsoft Calendar event.
|
|
1363
|
-
* @param properties - The Microsoft Calendar authentication properties.
|
|
1364
|
-
* @param eventId - The event identifier.
|
|
1365
|
-
* @param input - The event fields to update.
|
|
1366
|
-
* @returns The updated calendar event.
|
|
1367
|
-
*/
|
|
1368
|
-
updateMicrosoftCalendarEvent(properties: Types.MicrosoftCalendarEventsInput, eventId: string, input: Types.CalendarEventUpdateInput): Promise<Types.UpdateMicrosoftCalendarEventMutation>;
|
|
1369
|
-
/**
|
|
1370
|
-
* Deletes a Google Calendar event.
|
|
1371
|
-
* @param properties - The Google Calendar authentication properties.
|
|
1372
|
-
* @param eventId - The event identifier.
|
|
1373
|
-
* @returns True if the event was deleted.
|
|
1374
|
-
*/
|
|
1375
|
-
deleteGoogleCalendarEvent(properties: Types.GoogleCalendarEventsInput, eventId: string): Promise<Types.DeleteGoogleCalendarEventMutation>;
|
|
1376
|
-
/**
|
|
1377
|
-
* Deletes a Microsoft Calendar event.
|
|
1378
|
-
* @param properties - The Microsoft Calendar authentication properties.
|
|
1379
|
-
* @param eventId - The event identifier.
|
|
1380
|
-
* @returns True if the event was deleted.
|
|
1381
|
-
*/
|
|
1382
|
-
deleteMicrosoftCalendarEvent(properties: Types.MicrosoftCalendarEventsInput, eventId: string): Promise<Types.DeleteMicrosoftCalendarEventMutation>;
|
|
1383
|
-
/**
|
|
1384
|
-
* Updates a Notion page.
|
|
1385
|
-
* @param properties - The Notion authentication properties.
|
|
1386
|
-
* @param pageId - The Notion page identifier.
|
|
1387
|
-
* @param input - The page fields to update (title, content, appendContent).
|
|
1388
|
-
* @returns The distribution result.
|
|
1389
|
-
*/
|
|
1390
|
-
updateNotionPage(properties: Types.NotionDatabasesInput, pageId: string, input: Types.NotionPageUpdateInput): Promise<Types.UpdateNotionPageMutation>;
|
|
1391
|
-
/**
|
|
1392
|
-
* Updates a Confluence page.
|
|
1393
|
-
* @param properties - The Confluence authentication properties.
|
|
1394
|
-
* @param pageId - The Confluence page identifier.
|
|
1395
|
-
* @param input - The page fields to update (title, content, appendContent).
|
|
1396
|
-
* @returns The distribution result.
|
|
1397
|
-
*/
|
|
1398
|
-
updateConfluencePage(properties: Types.ConfluenceSpacesInput, pageId: string, input: Types.ConfluencePageUpdateInput): Promise<Types.UpdateConfluencePageMutation>;
|
|
1399
|
-
/**
|
|
1400
|
-
* Updates a Jira issue.
|
|
1401
|
-
* @param properties - The Jira authentication properties.
|
|
1402
|
-
* @param issueIdOrKey - The Jira issue ID or key (e.g., "CS-123").
|
|
1403
|
-
* @param input - The issue fields to update (summary, description, priority, status, assigneeId, labels).
|
|
1404
|
-
* @returns The distribution result.
|
|
1405
|
-
*/
|
|
1406
|
-
updateJiraIssue(properties: Types.JiraProjectsInput, issueIdOrKey: string, input: Types.JiraIssueUpdateInput): Promise<Types.UpdateJiraIssueMutation>;
|
|
1407
|
-
/**
|
|
1408
|
-
* Updates a Linear issue.
|
|
1409
|
-
* @param properties - The Linear authentication properties.
|
|
1410
|
-
* @param issueId - The Linear issue identifier.
|
|
1411
|
-
* @param input - The issue fields to update (title, description, priority, stateId, assigneeId, labelIds).
|
|
1412
|
-
* @returns The distribution result.
|
|
1413
|
-
*/
|
|
1414
|
-
updateLinearIssue(properties: Types.LinearProjectsInput, issueId: string, input: Types.LinearIssueUpdateInput): Promise<Types.UpdateLinearIssueMutation>;
|
|
1415
1353
|
/**
|
|
1416
1354
|
* Queries Linear projects.
|
|
1417
1355
|
* @param properties - The Linear project query properties.
|
package/dist/client.js
CHANGED
|
@@ -2496,84 +2496,6 @@ class Graphlit {
|
|
|
2496
2496
|
async querySlackUsers(properties) {
|
|
2497
2497
|
return this.queryAndCheckError(Documents.QuerySlackUsers, { properties: properties });
|
|
2498
2498
|
}
|
|
2499
|
-
/**
|
|
2500
|
-
* Updates a Google Calendar event.
|
|
2501
|
-
* @param properties - The Google Calendar authentication properties.
|
|
2502
|
-
* @param eventId - The event identifier.
|
|
2503
|
-
* @param input - The event fields to update.
|
|
2504
|
-
* @returns The updated calendar event.
|
|
2505
|
-
*/
|
|
2506
|
-
async updateGoogleCalendarEvent(properties, eventId, input) {
|
|
2507
|
-
return this.mutateAndCheckError(Documents.UpdateGoogleCalendarEvent, { properties, eventId, input });
|
|
2508
|
-
}
|
|
2509
|
-
/**
|
|
2510
|
-
* Updates a Microsoft Calendar event.
|
|
2511
|
-
* @param properties - The Microsoft Calendar authentication properties.
|
|
2512
|
-
* @param eventId - The event identifier.
|
|
2513
|
-
* @param input - The event fields to update.
|
|
2514
|
-
* @returns The updated calendar event.
|
|
2515
|
-
*/
|
|
2516
|
-
async updateMicrosoftCalendarEvent(properties, eventId, input) {
|
|
2517
|
-
return this.mutateAndCheckError(Documents.UpdateMicrosoftCalendarEvent, { properties, eventId, input });
|
|
2518
|
-
}
|
|
2519
|
-
/**
|
|
2520
|
-
* Deletes a Google Calendar event.
|
|
2521
|
-
* @param properties - The Google Calendar authentication properties.
|
|
2522
|
-
* @param eventId - The event identifier.
|
|
2523
|
-
* @returns True if the event was deleted.
|
|
2524
|
-
*/
|
|
2525
|
-
async deleteGoogleCalendarEvent(properties, eventId) {
|
|
2526
|
-
return this.mutateAndCheckError(Documents.DeleteGoogleCalendarEvent, { properties, eventId });
|
|
2527
|
-
}
|
|
2528
|
-
/**
|
|
2529
|
-
* Deletes a Microsoft Calendar event.
|
|
2530
|
-
* @param properties - The Microsoft Calendar authentication properties.
|
|
2531
|
-
* @param eventId - The event identifier.
|
|
2532
|
-
* @returns True if the event was deleted.
|
|
2533
|
-
*/
|
|
2534
|
-
async deleteMicrosoftCalendarEvent(properties, eventId) {
|
|
2535
|
-
return this.mutateAndCheckError(Documents.DeleteMicrosoftCalendarEvent, { properties, eventId });
|
|
2536
|
-
}
|
|
2537
|
-
/**
|
|
2538
|
-
* Updates a Notion page.
|
|
2539
|
-
* @param properties - The Notion authentication properties.
|
|
2540
|
-
* @param pageId - The Notion page identifier.
|
|
2541
|
-
* @param input - The page fields to update (title, content, appendContent).
|
|
2542
|
-
* @returns The distribution result.
|
|
2543
|
-
*/
|
|
2544
|
-
async updateNotionPage(properties, pageId, input) {
|
|
2545
|
-
return this.mutateAndCheckError(Documents.UpdateNotionPage, { properties, pageId, input });
|
|
2546
|
-
}
|
|
2547
|
-
/**
|
|
2548
|
-
* Updates a Confluence page.
|
|
2549
|
-
* @param properties - The Confluence authentication properties.
|
|
2550
|
-
* @param pageId - The Confluence page identifier.
|
|
2551
|
-
* @param input - The page fields to update (title, content, appendContent).
|
|
2552
|
-
* @returns The distribution result.
|
|
2553
|
-
*/
|
|
2554
|
-
async updateConfluencePage(properties, pageId, input) {
|
|
2555
|
-
return this.mutateAndCheckError(Documents.UpdateConfluencePage, { properties, pageId, input });
|
|
2556
|
-
}
|
|
2557
|
-
/**
|
|
2558
|
-
* Updates a Jira issue.
|
|
2559
|
-
* @param properties - The Jira authentication properties.
|
|
2560
|
-
* @param issueIdOrKey - The Jira issue ID or key (e.g., "CS-123").
|
|
2561
|
-
* @param input - The issue fields to update (summary, description, priority, status, assigneeId, labels).
|
|
2562
|
-
* @returns The distribution result.
|
|
2563
|
-
*/
|
|
2564
|
-
async updateJiraIssue(properties, issueIdOrKey, input) {
|
|
2565
|
-
return this.mutateAndCheckError(Documents.UpdateJiraIssue, { properties, issueIdOrKey, input });
|
|
2566
|
-
}
|
|
2567
|
-
/**
|
|
2568
|
-
* Updates a Linear issue.
|
|
2569
|
-
* @param properties - The Linear authentication properties.
|
|
2570
|
-
* @param issueId - The Linear issue identifier.
|
|
2571
|
-
* @param input - The issue fields to update (title, description, priority, stateId, assigneeId, labelIds).
|
|
2572
|
-
* @returns The distribution result.
|
|
2573
|
-
*/
|
|
2574
|
-
async updateLinearIssue(properties, issueId, input) {
|
|
2575
|
-
return this.mutateAndCheckError(Documents.UpdateLinearIssue, { properties, issueId, input });
|
|
2576
|
-
}
|
|
2577
2499
|
/**
|
|
2578
2500
|
* Queries Linear projects.
|
|
2579
2501
|
* @param properties - The Linear project query properties.
|
|
@@ -170,8 +170,6 @@ export declare const CreateFeed: import("graphql").DocumentNode;
|
|
|
170
170
|
export declare const DeleteAllFeeds: import("graphql").DocumentNode;
|
|
171
171
|
export declare const DeleteFeed: import("graphql").DocumentNode;
|
|
172
172
|
export declare const DeleteFeeds: import("graphql").DocumentNode;
|
|
173
|
-
export declare const DeleteGoogleCalendarEvent: import("graphql").DocumentNode;
|
|
174
|
-
export declare const DeleteMicrosoftCalendarEvent: import("graphql").DocumentNode;
|
|
175
173
|
export declare const DisableFeed: import("graphql").DocumentNode;
|
|
176
174
|
export declare const EnableFeed: import("graphql").DocumentNode;
|
|
177
175
|
export declare const FeedExists: import("graphql").DocumentNode;
|
|
@@ -216,13 +214,7 @@ export declare const QuerySharePointLibraries: import("graphql").DocumentNode;
|
|
|
216
214
|
export declare const QuerySlackChannels: import("graphql").DocumentNode;
|
|
217
215
|
export declare const QuerySlackUsers: import("graphql").DocumentNode;
|
|
218
216
|
export declare const TriggerFeed: import("graphql").DocumentNode;
|
|
219
|
-
export declare const UpdateConfluencePage: import("graphql").DocumentNode;
|
|
220
217
|
export declare const UpdateFeed: import("graphql").DocumentNode;
|
|
221
|
-
export declare const UpdateGoogleCalendarEvent: import("graphql").DocumentNode;
|
|
222
|
-
export declare const UpdateJiraIssue: import("graphql").DocumentNode;
|
|
223
|
-
export declare const UpdateLinearIssue: import("graphql").DocumentNode;
|
|
224
|
-
export declare const UpdateMicrosoftCalendarEvent: import("graphql").DocumentNode;
|
|
225
|
-
export declare const UpdateNotionPage: import("graphql").DocumentNode;
|
|
226
218
|
export declare const CountInvestments: import("graphql").DocumentNode;
|
|
227
219
|
export declare const CreateInvestment: import("graphql").DocumentNode;
|
|
228
220
|
export declare const DeleteAllInvestments: import("graphql").DocumentNode;
|
|
@@ -2104,6 +2104,9 @@ export const Distribute = gql `
|
|
|
2104
2104
|
uri
|
|
2105
2105
|
identifier
|
|
2106
2106
|
serviceType
|
|
2107
|
+
operation
|
|
2108
|
+
resolvedTargetIdentifier
|
|
2109
|
+
resolvedTargetUri
|
|
2107
2110
|
error
|
|
2108
2111
|
}
|
|
2109
2112
|
}
|
|
@@ -9775,16 +9778,6 @@ export const DeleteFeeds = gql `
|
|
|
9775
9778
|
}
|
|
9776
9779
|
}
|
|
9777
9780
|
`;
|
|
9778
|
-
export const DeleteGoogleCalendarEvent = gql `
|
|
9779
|
-
mutation DeleteGoogleCalendarEvent($properties: GoogleCalendarEventsInput!, $eventId: String!) {
|
|
9780
|
-
deleteGoogleCalendarEvent(properties: $properties, eventId: $eventId)
|
|
9781
|
-
}
|
|
9782
|
-
`;
|
|
9783
|
-
export const DeleteMicrosoftCalendarEvent = gql `
|
|
9784
|
-
mutation DeleteMicrosoftCalendarEvent($properties: MicrosoftCalendarEventsInput!, $eventId: String!) {
|
|
9785
|
-
deleteMicrosoftCalendarEvent(properties: $properties, eventId: $eventId)
|
|
9786
|
-
}
|
|
9787
|
-
`;
|
|
9788
9781
|
export const DisableFeed = gql `
|
|
9789
9782
|
mutation DisableFeed($id: ID!) {
|
|
9790
9783
|
disableFeed(id: $id) {
|
|
@@ -10431,6 +10424,22 @@ export const GetFeed = gql `
|
|
|
10431
10424
|
jobTitle
|
|
10432
10425
|
jobRegion
|
|
10433
10426
|
jobDescription
|
|
10427
|
+
fieldsToTrack
|
|
10428
|
+
headcountGrowthMin
|
|
10429
|
+
headcountGrowthMax
|
|
10430
|
+
headcountGrowthTimeframe
|
|
10431
|
+
baselineHeadcount
|
|
10432
|
+
headcountGrowthFromBaseline
|
|
10433
|
+
annualRevenueMin
|
|
10434
|
+
annualRevenueMax
|
|
10435
|
+
postCategories
|
|
10436
|
+
keyword
|
|
10437
|
+
industry
|
|
10438
|
+
fundingRoundTypes
|
|
10439
|
+
companyDepartment
|
|
10440
|
+
companyHeadcountRanges
|
|
10441
|
+
frequency
|
|
10442
|
+
expirationDate
|
|
10434
10443
|
}
|
|
10435
10444
|
linkedin {
|
|
10436
10445
|
dateRange
|
|
@@ -11507,6 +11516,22 @@ export const QueryFeeds = gql `
|
|
|
11507
11516
|
jobTitle
|
|
11508
11517
|
jobRegion
|
|
11509
11518
|
jobDescription
|
|
11519
|
+
fieldsToTrack
|
|
11520
|
+
headcountGrowthMin
|
|
11521
|
+
headcountGrowthMax
|
|
11522
|
+
headcountGrowthTimeframe
|
|
11523
|
+
baselineHeadcount
|
|
11524
|
+
headcountGrowthFromBaseline
|
|
11525
|
+
annualRevenueMin
|
|
11526
|
+
annualRevenueMax
|
|
11527
|
+
postCategories
|
|
11528
|
+
keyword
|
|
11529
|
+
industry
|
|
11530
|
+
fundingRoundTypes
|
|
11531
|
+
companyDepartment
|
|
11532
|
+
companyHeadcountRanges
|
|
11533
|
+
frequency
|
|
11534
|
+
expirationDate
|
|
11510
11535
|
}
|
|
11511
11536
|
linkedin {
|
|
11512
11537
|
dateRange
|
|
@@ -12023,15 +12048,6 @@ export const TriggerFeed = gql `
|
|
|
12023
12048
|
}
|
|
12024
12049
|
}
|
|
12025
12050
|
`;
|
|
12026
|
-
export const UpdateConfluencePage = gql `
|
|
12027
|
-
mutation UpdateConfluencePage($properties: ConfluenceSpacesInput!, $pageId: String!, $input: ConfluencePageUpdateInput!) {
|
|
12028
|
-
updateConfluencePage(properties: $properties, pageId: $pageId, input: $input) {
|
|
12029
|
-
identifier
|
|
12030
|
-
uri
|
|
12031
|
-
serviceType
|
|
12032
|
-
}
|
|
12033
|
-
}
|
|
12034
|
-
`;
|
|
12035
12051
|
export const UpdateFeed = gql `
|
|
12036
12052
|
mutation UpdateFeed($feed: FeedUpdateInput!) {
|
|
12037
12053
|
updateFeed(feed: $feed) {
|
|
@@ -12043,79 +12059,6 @@ export const UpdateFeed = gql `
|
|
|
12043
12059
|
}
|
|
12044
12060
|
}
|
|
12045
12061
|
`;
|
|
12046
|
-
export const UpdateGoogleCalendarEvent = gql `
|
|
12047
|
-
mutation UpdateGoogleCalendarEvent($properties: GoogleCalendarEventsInput!, $eventId: String!, $input: CalendarEventUpdateInput!) {
|
|
12048
|
-
updateGoogleCalendarEvent(
|
|
12049
|
-
properties: $properties
|
|
12050
|
-
eventId: $eventId
|
|
12051
|
-
input: $input
|
|
12052
|
-
) {
|
|
12053
|
-
eventId
|
|
12054
|
-
summary
|
|
12055
|
-
startDateTime
|
|
12056
|
-
endDateTime
|
|
12057
|
-
location
|
|
12058
|
-
attendees
|
|
12059
|
-
isOnlineMeeting
|
|
12060
|
-
meetingLink
|
|
12061
|
-
description
|
|
12062
|
-
status
|
|
12063
|
-
organizer
|
|
12064
|
-
}
|
|
12065
|
-
}
|
|
12066
|
-
`;
|
|
12067
|
-
export const UpdateJiraIssue = gql `
|
|
12068
|
-
mutation UpdateJiraIssue($properties: JiraProjectsInput!, $issueIdOrKey: String!, $input: JiraIssueUpdateInput!) {
|
|
12069
|
-
updateJiraIssue(
|
|
12070
|
-
properties: $properties
|
|
12071
|
-
issueIdOrKey: $issueIdOrKey
|
|
12072
|
-
input: $input
|
|
12073
|
-
) {
|
|
12074
|
-
identifier
|
|
12075
|
-
uri
|
|
12076
|
-
serviceType
|
|
12077
|
-
}
|
|
12078
|
-
}
|
|
12079
|
-
`;
|
|
12080
|
-
export const UpdateLinearIssue = gql `
|
|
12081
|
-
mutation UpdateLinearIssue($properties: LinearProjectsInput!, $issueId: String!, $input: LinearIssueUpdateInput!) {
|
|
12082
|
-
updateLinearIssue(properties: $properties, issueId: $issueId, input: $input) {
|
|
12083
|
-
identifier
|
|
12084
|
-
uri
|
|
12085
|
-
serviceType
|
|
12086
|
-
}
|
|
12087
|
-
}
|
|
12088
|
-
`;
|
|
12089
|
-
export const UpdateMicrosoftCalendarEvent = gql `
|
|
12090
|
-
mutation UpdateMicrosoftCalendarEvent($properties: MicrosoftCalendarEventsInput!, $eventId: String!, $input: CalendarEventUpdateInput!) {
|
|
12091
|
-
updateMicrosoftCalendarEvent(
|
|
12092
|
-
properties: $properties
|
|
12093
|
-
eventId: $eventId
|
|
12094
|
-
input: $input
|
|
12095
|
-
) {
|
|
12096
|
-
eventId
|
|
12097
|
-
summary
|
|
12098
|
-
startDateTime
|
|
12099
|
-
endDateTime
|
|
12100
|
-
location
|
|
12101
|
-
attendees
|
|
12102
|
-
isOnlineMeeting
|
|
12103
|
-
meetingLink
|
|
12104
|
-
description
|
|
12105
|
-
status
|
|
12106
|
-
organizer
|
|
12107
|
-
}
|
|
12108
|
-
}
|
|
12109
|
-
`;
|
|
12110
|
-
export const UpdateNotionPage = gql `
|
|
12111
|
-
mutation UpdateNotionPage($properties: NotionDatabasesInput!, $pageId: String!, $input: NotionPageUpdateInput!) {
|
|
12112
|
-
updateNotionPage(properties: $properties, pageId: $pageId, input: $input) {
|
|
12113
|
-
identifier
|
|
12114
|
-
uri
|
|
12115
|
-
serviceType
|
|
12116
|
-
}
|
|
12117
|
-
}
|
|
12118
|
-
`;
|
|
12119
12062
|
export const CountInvestments = gql `
|
|
12120
12063
|
query CountInvestments($filter: InvestmentFilter, $correlationId: String) {
|
|
12121
12064
|
countInvestments(filter: $filter, correlationId: $correlationId) {
|
|
@@ -1107,6 +1107,14 @@ export type AttioDistributionPropertiesInput = {
|
|
|
1107
1107
|
parentObject: Scalars['String']['input'];
|
|
1108
1108
|
/** The record ID the note belongs to. */
|
|
1109
1109
|
parentRecordId: Scalars['String']['input'];
|
|
1110
|
+
/** The target resource identifier. */
|
|
1111
|
+
targetIdentifier?: InputMaybe<Scalars['String']['input']>;
|
|
1112
|
+
/** The target write kind. */
|
|
1113
|
+
targetKind?: InputMaybe<DistributionTargetKindTypes>;
|
|
1114
|
+
/** The requested target write operation. */
|
|
1115
|
+
targetOperation?: InputMaybe<DistributionTargetOperationTypes>;
|
|
1116
|
+
/** The target resource URI. */
|
|
1117
|
+
targetUri?: InputMaybe<Scalars['String']['input']>;
|
|
1110
1118
|
/** The note title. */
|
|
1111
1119
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
1112
1120
|
};
|
|
@@ -1257,6 +1265,14 @@ export type AttioTasksDistributionPropertiesInput = {
|
|
|
1257
1265
|
linkedObjectType?: InputMaybe<Scalars['String']['input']>;
|
|
1258
1266
|
/** The record ID to link the task to. */
|
|
1259
1267
|
linkedRecordId?: InputMaybe<Scalars['String']['input']>;
|
|
1268
|
+
/** The target resource identifier. */
|
|
1269
|
+
targetIdentifier?: InputMaybe<Scalars['String']['input']>;
|
|
1270
|
+
/** The target write kind. */
|
|
1271
|
+
targetKind?: InputMaybe<DistributionTargetKindTypes>;
|
|
1272
|
+
/** The requested target write operation. */
|
|
1273
|
+
targetOperation?: InputMaybe<DistributionTargetOperationTypes>;
|
|
1274
|
+
/** The target resource URI. */
|
|
1275
|
+
targetUri?: InputMaybe<Scalars['String']['input']>;
|
|
1260
1276
|
/** The task title. */
|
|
1261
1277
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
1262
1278
|
};
|
|
@@ -3007,6 +3023,14 @@ export type ConfluenceDistributionPropertiesInput = {
|
|
|
3007
3023
|
parentPageId?: InputMaybe<Scalars['String']['input']>;
|
|
3008
3024
|
/** The Confluence space ID. */
|
|
3009
3025
|
spaceId: Scalars['String']['input'];
|
|
3026
|
+
/** The target resource identifier. */
|
|
3027
|
+
targetIdentifier?: InputMaybe<Scalars['String']['input']>;
|
|
3028
|
+
/** The target write kind. */
|
|
3029
|
+
targetKind?: InputMaybe<DistributionTargetKindTypes>;
|
|
3030
|
+
/** The requested target write operation. */
|
|
3031
|
+
targetOperation?: InputMaybe<DistributionTargetOperationTypes>;
|
|
3032
|
+
/** The target resource URI. */
|
|
3033
|
+
targetUri?: InputMaybe<Scalars['String']['input']>;
|
|
3010
3034
|
/** The page title. */
|
|
3011
3035
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
3012
3036
|
};
|
|
@@ -3110,15 +3134,6 @@ export type ConfluenceFeedPropertiesUpdateInput = {
|
|
|
3110
3134
|
/** The Confluence base URI. */
|
|
3111
3135
|
uri?: InputMaybe<Scalars['String']['input']>;
|
|
3112
3136
|
};
|
|
3113
|
-
/** Represents Confluence page fields to update. */
|
|
3114
|
-
export type ConfluencePageUpdateInput = {
|
|
3115
|
-
/** If true, append to existing content; if false, replace. */
|
|
3116
|
-
appendContent?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3117
|
-
/** The page content (Markdown). */
|
|
3118
|
-
content?: InputMaybe<Scalars['String']['input']>;
|
|
3119
|
-
/** The new page title. */
|
|
3120
|
-
title?: InputMaybe<Scalars['String']['input']>;
|
|
3121
|
-
};
|
|
3122
3137
|
/** Represents a Confluence space. */
|
|
3123
3138
|
export type ConfluenceSpaceResult = {
|
|
3124
3139
|
__typename?: 'ConfluenceSpaceResult';
|
|
@@ -4852,58 +4867,154 @@ export type CrustdataPersonDiscoveryFilterInput = {
|
|
|
4852
4867
|
/** Represents Crustdata watcher search properties. */
|
|
4853
4868
|
export type CrustdataSearchFeedProperties = {
|
|
4854
4869
|
__typename?: 'CrustdataSearchFeedProperties';
|
|
4870
|
+
/** Maximum annual revenue in USD for revenue-aware Crustdata watchers. */
|
|
4871
|
+
annualRevenueMax?: Maybe<Scalars['Decimal']['output']>;
|
|
4872
|
+
/** Minimum annual revenue in USD for revenue-aware Crustdata watchers. */
|
|
4873
|
+
annualRevenueMin?: Maybe<Scalars['Decimal']['output']>;
|
|
4874
|
+
/** Baseline headcount for over-baseline headcount growth watchers. */
|
|
4875
|
+
baselineHeadcount?: Maybe<Scalars['Int']['output']>;
|
|
4876
|
+
/** Company department for department-based watcher signals. */
|
|
4877
|
+
companyDepartment?: Maybe<Scalars['String']['output']>;
|
|
4855
4878
|
/** Company domain for company-level signals. */
|
|
4856
4879
|
companyDomain?: Maybe<Scalars['String']['output']>;
|
|
4880
|
+
/** Company headcount ranges for watcher signals that support company size filters. */
|
|
4881
|
+
companyHeadcountRanges?: Maybe<Array<Scalars['String']['output']>>;
|
|
4857
4882
|
/** Crustdata company ID for company-level signals. */
|
|
4858
4883
|
companyId?: Maybe<Scalars['String']['output']>;
|
|
4859
4884
|
/** Company LinkedIn URL for company-level signals. */
|
|
4860
4885
|
companyLinkedInUrl?: Maybe<Scalars['String']['output']>;
|
|
4886
|
+
/** Watcher expiration date and time. */
|
|
4887
|
+
expirationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
4888
|
+
/** Profile fields to track for person profile update signals. */
|
|
4889
|
+
fieldsToTrack?: Maybe<Array<Scalars['String']['output']>>;
|
|
4890
|
+
/** Watcher polling frequency in days, defaults to 1. */
|
|
4891
|
+
frequency?: Maybe<Scalars['Int']['output']>;
|
|
4892
|
+
/** Funding round types for funding announcement watchers. */
|
|
4893
|
+
fundingRoundTypes?: Maybe<Array<Scalars['String']['output']>>;
|
|
4894
|
+
/** Percent growth threshold from the baseline headcount. */
|
|
4895
|
+
headcountGrowthFromBaseline?: Maybe<Scalars['Int']['output']>;
|
|
4896
|
+
/** Maximum headcount growth percentage for headcount growth watchers. */
|
|
4897
|
+
headcountGrowthMax?: Maybe<Scalars['Decimal']['output']>;
|
|
4898
|
+
/** Minimum headcount growth percentage for headcount growth watchers. */
|
|
4899
|
+
headcountGrowthMin?: Maybe<Scalars['Decimal']['output']>;
|
|
4900
|
+
/** Headcount growth timeframe for over-baseline watchers, e.g. YoY. */
|
|
4901
|
+
headcountGrowthTimeframe?: Maybe<Scalars['String']['output']>;
|
|
4902
|
+
/** Industry filter for watcher signals that support industry scoping. */
|
|
4903
|
+
industry?: Maybe<Scalars['String']['output']>;
|
|
4861
4904
|
/** Job description keyword for job posting signals. */
|
|
4862
4905
|
jobDescription?: Maybe<Scalars['String']['output']>;
|
|
4863
4906
|
/** Job region filter for job posting signals. */
|
|
4864
4907
|
jobRegion?: Maybe<Scalars['String']['output']>;
|
|
4865
4908
|
/** Job title keyword for job posting signals. */
|
|
4866
4909
|
jobTitle?: Maybe<Scalars['String']['output']>;
|
|
4910
|
+
/** Keyword query for keyword-based watcher signals. */
|
|
4911
|
+
keyword?: Maybe<Scalars['String']['output']>;
|
|
4867
4912
|
/** Person LinkedIn URLs for person-level signals. */
|
|
4868
4913
|
personLinkedInUrls?: Maybe<Array<Scalars['String']['output']>>;
|
|
4914
|
+
/** Post categories for LinkedIn post watchers. */
|
|
4915
|
+
postCategories?: Maybe<Array<Scalars['String']['output']>>;
|
|
4869
4916
|
/** The Crustdata watcher signal type. */
|
|
4870
4917
|
signalType?: Maybe<CrustdataWatcherSignalTypes>;
|
|
4871
4918
|
};
|
|
4872
4919
|
/** Represents Crustdata watcher search properties. */
|
|
4873
4920
|
export type CrustdataSearchFeedPropertiesInput = {
|
|
4921
|
+
/** Maximum annual revenue in USD for revenue-aware Crustdata watchers. */
|
|
4922
|
+
annualRevenueMax?: InputMaybe<Scalars['Decimal']['input']>;
|
|
4923
|
+
/** Minimum annual revenue in USD for revenue-aware Crustdata watchers. */
|
|
4924
|
+
annualRevenueMin?: InputMaybe<Scalars['Decimal']['input']>;
|
|
4925
|
+
/** Baseline headcount for over-baseline headcount growth watchers. */
|
|
4926
|
+
baselineHeadcount?: InputMaybe<Scalars['Int']['input']>;
|
|
4927
|
+
/** Company department for department-based watcher signals. */
|
|
4928
|
+
companyDepartment?: InputMaybe<Scalars['String']['input']>;
|
|
4874
4929
|
/** Company domain for company-level signals. */
|
|
4875
4930
|
companyDomain?: InputMaybe<Scalars['String']['input']>;
|
|
4931
|
+
/** Company headcount ranges for watcher signals that support company size filters. */
|
|
4932
|
+
companyHeadcountRanges?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
4876
4933
|
/** Crustdata company ID for company-level signals. */
|
|
4877
4934
|
companyId?: InputMaybe<Scalars['String']['input']>;
|
|
4878
4935
|
/** Company LinkedIn URL for company-level signals. */
|
|
4879
4936
|
companyLinkedInUrl?: InputMaybe<Scalars['String']['input']>;
|
|
4937
|
+
/** Watcher expiration date and time. */
|
|
4938
|
+
expirationDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
4939
|
+
/** Profile fields to track for person profile update signals. */
|
|
4940
|
+
fieldsToTrack?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
4941
|
+
/** Watcher polling frequency in days, defaults to 1. */
|
|
4942
|
+
frequency?: InputMaybe<Scalars['Int']['input']>;
|
|
4943
|
+
/** Funding round types for funding announcement watchers. */
|
|
4944
|
+
fundingRoundTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
4945
|
+
/** Percent growth threshold from the baseline headcount. */
|
|
4946
|
+
headcountGrowthFromBaseline?: InputMaybe<Scalars['Int']['input']>;
|
|
4947
|
+
/** Maximum headcount growth percentage for headcount growth watchers. */
|
|
4948
|
+
headcountGrowthMax?: InputMaybe<Scalars['Decimal']['input']>;
|
|
4949
|
+
/** Minimum headcount growth percentage for headcount growth watchers. */
|
|
4950
|
+
headcountGrowthMin?: InputMaybe<Scalars['Decimal']['input']>;
|
|
4951
|
+
/** Headcount growth timeframe for over-baseline watchers, e.g. YoY. */
|
|
4952
|
+
headcountGrowthTimeframe?: InputMaybe<Scalars['String']['input']>;
|
|
4953
|
+
/** Industry filter for watcher signals that support industry scoping. */
|
|
4954
|
+
industry?: InputMaybe<Scalars['String']['input']>;
|
|
4880
4955
|
/** Job description keyword for job posting signals. */
|
|
4881
4956
|
jobDescription?: InputMaybe<Scalars['String']['input']>;
|
|
4882
4957
|
/** Job region filter for job posting signals. */
|
|
4883
4958
|
jobRegion?: InputMaybe<Scalars['String']['input']>;
|
|
4884
4959
|
/** Job title keyword for job posting signals. */
|
|
4885
4960
|
jobTitle?: InputMaybe<Scalars['String']['input']>;
|
|
4961
|
+
/** Keyword query for keyword-based watcher signals. */
|
|
4962
|
+
keyword?: InputMaybe<Scalars['String']['input']>;
|
|
4886
4963
|
/** Person LinkedIn URLs for person-level signals. */
|
|
4887
4964
|
personLinkedInUrls?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
4965
|
+
/** Post categories for LinkedIn post watchers. */
|
|
4966
|
+
postCategories?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
4888
4967
|
/** The Crustdata watcher signal type. */
|
|
4889
4968
|
signalType: CrustdataWatcherSignalTypes;
|
|
4890
4969
|
};
|
|
4891
4970
|
/** Represents Crustdata watcher search properties. */
|
|
4892
4971
|
export type CrustdataSearchFeedPropertiesUpdateInput = {
|
|
4972
|
+
/** Maximum annual revenue in USD for revenue-aware Crustdata watchers. */
|
|
4973
|
+
annualRevenueMax?: InputMaybe<Scalars['Decimal']['input']>;
|
|
4974
|
+
/** Minimum annual revenue in USD for revenue-aware Crustdata watchers. */
|
|
4975
|
+
annualRevenueMin?: InputMaybe<Scalars['Decimal']['input']>;
|
|
4976
|
+
/** Baseline headcount for over-baseline headcount growth watchers. */
|
|
4977
|
+
baselineHeadcount?: InputMaybe<Scalars['Int']['input']>;
|
|
4978
|
+
/** Company department for department-based watcher signals. */
|
|
4979
|
+
companyDepartment?: InputMaybe<Scalars['String']['input']>;
|
|
4893
4980
|
/** Company domain for company-level signals. */
|
|
4894
4981
|
companyDomain?: InputMaybe<Scalars['String']['input']>;
|
|
4982
|
+
/** Company headcount ranges for watcher signals that support company size filters. */
|
|
4983
|
+
companyHeadcountRanges?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
4895
4984
|
/** Crustdata company ID for company-level signals. */
|
|
4896
4985
|
companyId?: InputMaybe<Scalars['String']['input']>;
|
|
4897
4986
|
/** Company LinkedIn URL for company-level signals. */
|
|
4898
4987
|
companyLinkedInUrl?: InputMaybe<Scalars['String']['input']>;
|
|
4988
|
+
/** Watcher expiration date and time. */
|
|
4989
|
+
expirationDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
4990
|
+
/** Profile fields to track for person profile update signals. */
|
|
4991
|
+
fieldsToTrack?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
4992
|
+
/** Watcher polling frequency in days, defaults to 1. */
|
|
4993
|
+
frequency?: InputMaybe<Scalars['Int']['input']>;
|
|
4994
|
+
/** Funding round types for funding announcement watchers. */
|
|
4995
|
+
fundingRoundTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
4996
|
+
/** Percent growth threshold from the baseline headcount. */
|
|
4997
|
+
headcountGrowthFromBaseline?: InputMaybe<Scalars['Int']['input']>;
|
|
4998
|
+
/** Maximum headcount growth percentage for headcount growth watchers. */
|
|
4999
|
+
headcountGrowthMax?: InputMaybe<Scalars['Decimal']['input']>;
|
|
5000
|
+
/** Minimum headcount growth percentage for headcount growth watchers. */
|
|
5001
|
+
headcountGrowthMin?: InputMaybe<Scalars['Decimal']['input']>;
|
|
5002
|
+
/** Headcount growth timeframe for over-baseline watchers, e.g. YoY. */
|
|
5003
|
+
headcountGrowthTimeframe?: InputMaybe<Scalars['String']['input']>;
|
|
5004
|
+
/** Industry filter for watcher signals that support industry scoping. */
|
|
5005
|
+
industry?: InputMaybe<Scalars['String']['input']>;
|
|
4899
5006
|
/** Job description keyword for job posting signals. */
|
|
4900
5007
|
jobDescription?: InputMaybe<Scalars['String']['input']>;
|
|
4901
5008
|
/** Job region filter for job posting signals. */
|
|
4902
5009
|
jobRegion?: InputMaybe<Scalars['String']['input']>;
|
|
4903
5010
|
/** Job title keyword for job posting signals. */
|
|
4904
5011
|
jobTitle?: InputMaybe<Scalars['String']['input']>;
|
|
5012
|
+
/** Keyword query for keyword-based watcher signals. */
|
|
5013
|
+
keyword?: InputMaybe<Scalars['String']['input']>;
|
|
4905
5014
|
/** Person LinkedIn URLs for person-level signals. */
|
|
4906
5015
|
personLinkedInUrls?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
5016
|
+
/** Post categories for LinkedIn post watchers. */
|
|
5017
|
+
postCategories?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
4907
5018
|
/** The Crustdata watcher signal type. */
|
|
4908
5019
|
signalType?: InputMaybe<CrustdataWatcherSignalTypes>;
|
|
4909
5020
|
};
|
|
@@ -5279,6 +5390,14 @@ export type DiscordChannelsInput = {
|
|
|
5279
5390
|
export type DiscordDistributionPropertiesInput = {
|
|
5280
5391
|
/** The Discord channel or DM ID. */
|
|
5281
5392
|
channelId: Scalars['String']['input'];
|
|
5393
|
+
/** The target resource identifier. */
|
|
5394
|
+
targetIdentifier?: InputMaybe<Scalars['String']['input']>;
|
|
5395
|
+
/** The target write kind. */
|
|
5396
|
+
targetKind?: InputMaybe<DistributionTargetKindTypes>;
|
|
5397
|
+
/** The requested target write operation. */
|
|
5398
|
+
targetOperation?: InputMaybe<DistributionTargetOperationTypes>;
|
|
5399
|
+
/** The target resource URI. */
|
|
5400
|
+
targetUri?: InputMaybe<Scalars['String']['input']>;
|
|
5282
5401
|
/** The thread ID to reply to. */
|
|
5283
5402
|
threadId?: InputMaybe<Scalars['String']['input']>;
|
|
5284
5403
|
};
|
|
@@ -5392,10 +5511,24 @@ export type DistributionConnectorInput = {
|
|
|
5392
5511
|
/** The distribution service type. */
|
|
5393
5512
|
type: DistributionServiceTypes;
|
|
5394
5513
|
};
|
|
5514
|
+
/** Distribution operation result type */
|
|
5515
|
+
export declare enum DistributionOperationTypes {
|
|
5516
|
+
/** Appended to an existing target resource. */
|
|
5517
|
+
Appended = "APPENDED",
|
|
5518
|
+
/** Created or appended comment-style content. */
|
|
5519
|
+
Commented = "COMMENTED",
|
|
5520
|
+
/** Created a new target resource. */
|
|
5521
|
+
Created = "CREATED",
|
|
5522
|
+
/** Replaced an existing target resource. */
|
|
5523
|
+
Replaced = "REPLACED"
|
|
5524
|
+
}
|
|
5395
5525
|
export type DistributionResult = {
|
|
5396
5526
|
__typename?: 'DistributionResult';
|
|
5397
5527
|
error?: Maybe<Scalars['String']['output']>;
|
|
5398
5528
|
identifier?: Maybe<Scalars['String']['output']>;
|
|
5529
|
+
operation?: Maybe<DistributionOperationTypes>;
|
|
5530
|
+
resolvedTargetIdentifier?: Maybe<Scalars['String']['output']>;
|
|
5531
|
+
resolvedTargetUri?: Maybe<Scalars['String']['output']>;
|
|
5399
5532
|
serviceType?: Maybe<DistributionServiceTypes>;
|
|
5400
5533
|
uri?: Maybe<Scalars['String']['output']>;
|
|
5401
5534
|
};
|
|
@@ -5448,6 +5581,24 @@ export declare enum DistributionServiceTypes {
|
|
|
5448
5581
|
/** X/Twitter */
|
|
5449
5582
|
Twitter = "TWITTER"
|
|
5450
5583
|
}
|
|
5584
|
+
/** Distribution target kind type */
|
|
5585
|
+
export declare enum DistributionTargetKindTypes {
|
|
5586
|
+
/** Write to the primary body or content of the target resource. */
|
|
5587
|
+
Body = "BODY",
|
|
5588
|
+
/** Write comment-style content associated with the target resource. */
|
|
5589
|
+
Comment = "COMMENT"
|
|
5590
|
+
}
|
|
5591
|
+
/** Distribution target operation type */
|
|
5592
|
+
export declare enum DistributionTargetOperationTypes {
|
|
5593
|
+
/** Append to an existing target body. */
|
|
5594
|
+
Append = "APPEND",
|
|
5595
|
+
/** Create a new target. */
|
|
5596
|
+
Create = "CREATE",
|
|
5597
|
+
/** Replace an existing target body. */
|
|
5598
|
+
Replace = "REPLACE",
|
|
5599
|
+
/** Replace an existing target when found, otherwise create a new target. */
|
|
5600
|
+
Upsert = "UPSERT"
|
|
5601
|
+
}
|
|
5451
5602
|
/** Represents document metadata. */
|
|
5452
5603
|
export type DocumentMetadata = {
|
|
5453
5604
|
__typename?: 'DocumentMetadata';
|
|
@@ -8271,6 +8422,14 @@ export type GitHubDistributionPropertiesInput = {
|
|
|
8271
8422
|
repositoryName: Scalars['String']['input'];
|
|
8272
8423
|
/** The repository owner (org or user). */
|
|
8273
8424
|
repositoryOwner: Scalars['String']['input'];
|
|
8425
|
+
/** The target resource identifier. */
|
|
8426
|
+
targetIdentifier?: InputMaybe<Scalars['String']['input']>;
|
|
8427
|
+
/** The target write kind. */
|
|
8428
|
+
targetKind?: InputMaybe<DistributionTargetKindTypes>;
|
|
8429
|
+
/** The requested target write operation. */
|
|
8430
|
+
targetOperation?: InputMaybe<DistributionTargetOperationTypes>;
|
|
8431
|
+
/** The target resource URI. */
|
|
8432
|
+
targetUri?: InputMaybe<Scalars['String']['input']>;
|
|
8274
8433
|
/** The issue title. */
|
|
8275
8434
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
8276
8435
|
};
|
|
@@ -8696,6 +8855,14 @@ export type GitLabDistributionPropertiesInput = {
|
|
|
8696
8855
|
milestone?: InputMaybe<Scalars['Int']['input']>;
|
|
8697
8856
|
/** The GitLab project path. */
|
|
8698
8857
|
projectPath: Scalars['String']['input'];
|
|
8858
|
+
/** The target resource identifier. */
|
|
8859
|
+
targetIdentifier?: InputMaybe<Scalars['String']['input']>;
|
|
8860
|
+
/** The target write kind. */
|
|
8861
|
+
targetKind?: InputMaybe<DistributionTargetKindTypes>;
|
|
8862
|
+
/** The requested target write operation. */
|
|
8863
|
+
targetOperation?: InputMaybe<DistributionTargetOperationTypes>;
|
|
8864
|
+
/** The target resource URI. */
|
|
8865
|
+
targetUri?: InputMaybe<Scalars['String']['input']>;
|
|
8699
8866
|
/** The issue title. */
|
|
8700
8867
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
8701
8868
|
};
|
|
@@ -9008,6 +9175,14 @@ export type GmailDistributionPropertiesInput = {
|
|
|
9008
9175
|
isDraft?: InputMaybe<Scalars['Boolean']['input']>;
|
|
9009
9176
|
/** The email subject line. */
|
|
9010
9177
|
subject: Scalars['String']['input'];
|
|
9178
|
+
/** The target resource identifier. */
|
|
9179
|
+
targetIdentifier?: InputMaybe<Scalars['String']['input']>;
|
|
9180
|
+
/** The target write kind. */
|
|
9181
|
+
targetKind?: InputMaybe<DistributionTargetKindTypes>;
|
|
9182
|
+
/** The requested target write operation. */
|
|
9183
|
+
targetOperation?: InputMaybe<DistributionTargetOperationTypes>;
|
|
9184
|
+
/** The target resource URI. */
|
|
9185
|
+
targetUri?: InputMaybe<Scalars['String']['input']>;
|
|
9011
9186
|
/** The recipient email addresses. */
|
|
9012
9187
|
to: Array<Scalars['String']['input']>;
|
|
9013
9188
|
};
|
|
@@ -9044,6 +9219,14 @@ export type GoogleCalendarDistributionPropertiesInput = {
|
|
|
9044
9219
|
startDateTime: Scalars['DateTime']['input'];
|
|
9045
9220
|
/** The event title. */
|
|
9046
9221
|
summary?: InputMaybe<Scalars['String']['input']>;
|
|
9222
|
+
/** The target resource identifier. */
|
|
9223
|
+
targetIdentifier?: InputMaybe<Scalars['String']['input']>;
|
|
9224
|
+
/** The target write kind. */
|
|
9225
|
+
targetKind?: InputMaybe<DistributionTargetKindTypes>;
|
|
9226
|
+
/** The requested target write operation. */
|
|
9227
|
+
targetOperation?: InputMaybe<DistributionTargetOperationTypes>;
|
|
9228
|
+
/** The target resource URI. */
|
|
9229
|
+
targetUri?: InputMaybe<Scalars['String']['input']>;
|
|
9047
9230
|
/** The IANA time zone. */
|
|
9048
9231
|
timeZone?: InputMaybe<Scalars['String']['input']>;
|
|
9049
9232
|
};
|
|
@@ -9222,6 +9405,14 @@ export type GoogleContactsCrmFeedPropertiesUpdateInput = {
|
|
|
9222
9405
|
export type GoogleDocsDistributionPropertiesInput = {
|
|
9223
9406
|
/** The Google Drive folder ID to create the doc in. */
|
|
9224
9407
|
folderId?: InputMaybe<Scalars['String']['input']>;
|
|
9408
|
+
/** The target resource identifier. */
|
|
9409
|
+
targetIdentifier?: InputMaybe<Scalars['String']['input']>;
|
|
9410
|
+
/** The target write kind. */
|
|
9411
|
+
targetKind?: InputMaybe<DistributionTargetKindTypes>;
|
|
9412
|
+
/** The requested target write operation. */
|
|
9413
|
+
targetOperation?: InputMaybe<DistributionTargetOperationTypes>;
|
|
9414
|
+
/** The target resource URI. */
|
|
9415
|
+
targetUri?: InputMaybe<Scalars['String']['input']>;
|
|
9225
9416
|
/** The document title. */
|
|
9226
9417
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
9227
9418
|
};
|
|
@@ -9240,6 +9431,14 @@ export type GoogleDriveDistributionPropertiesInput = {
|
|
|
9240
9431
|
fileName?: InputMaybe<Scalars['String']['input']>;
|
|
9241
9432
|
/** The target folder ID. */
|
|
9242
9433
|
folderId?: InputMaybe<Scalars['String']['input']>;
|
|
9434
|
+
/** The target resource identifier. */
|
|
9435
|
+
targetIdentifier?: InputMaybe<Scalars['String']['input']>;
|
|
9436
|
+
/** The target write kind. */
|
|
9437
|
+
targetKind?: InputMaybe<DistributionTargetKindTypes>;
|
|
9438
|
+
/** The requested target write operation. */
|
|
9439
|
+
targetOperation?: InputMaybe<DistributionTargetOperationTypes>;
|
|
9440
|
+
/** The target resource URI. */
|
|
9441
|
+
targetUri?: InputMaybe<Scalars['String']['input']>;
|
|
9243
9442
|
};
|
|
9244
9443
|
/** Represents a Google Drive shared drive. */
|
|
9245
9444
|
export type GoogleDriveDriveResult = {
|
|
@@ -10380,6 +10579,14 @@ export type HubSpotDistributionPropertiesInput = {
|
|
|
10380
10579
|
objectId: Scalars['String']['input'];
|
|
10381
10580
|
/** The CRM object type. */
|
|
10382
10581
|
objectType: Scalars['String']['input'];
|
|
10582
|
+
/** The target resource identifier. */
|
|
10583
|
+
targetIdentifier?: InputMaybe<Scalars['String']['input']>;
|
|
10584
|
+
/** The target write kind. */
|
|
10585
|
+
targetKind?: InputMaybe<DistributionTargetKindTypes>;
|
|
10586
|
+
/** The requested target write operation. */
|
|
10587
|
+
targetOperation?: InputMaybe<DistributionTargetOperationTypes>;
|
|
10588
|
+
/** The target resource URI. */
|
|
10589
|
+
targetUri?: InputMaybe<Scalars['String']['input']>;
|
|
10383
10590
|
};
|
|
10384
10591
|
export declare enum HubSpotFeedAuthenticationTypes {
|
|
10385
10592
|
Connector = "CONNECTOR",
|
|
@@ -11841,6 +12048,14 @@ export type JiraDistributionPropertiesInput = {
|
|
|
11841
12048
|
projectKey: Scalars['String']['input'];
|
|
11842
12049
|
/** The issue title. */
|
|
11843
12050
|
summary?: InputMaybe<Scalars['String']['input']>;
|
|
12051
|
+
/** The target resource identifier. */
|
|
12052
|
+
targetIdentifier?: InputMaybe<Scalars['String']['input']>;
|
|
12053
|
+
/** The target write kind. */
|
|
12054
|
+
targetKind?: InputMaybe<DistributionTargetKindTypes>;
|
|
12055
|
+
/** The requested target write operation. */
|
|
12056
|
+
targetOperation?: InputMaybe<DistributionTargetOperationTypes>;
|
|
12057
|
+
/** The target resource URI. */
|
|
12058
|
+
targetUri?: InputMaybe<Scalars['String']['input']>;
|
|
11844
12059
|
};
|
|
11845
12060
|
/** Represents Jira Epics feed properties. */
|
|
11846
12061
|
export type JiraEpicsFeedProperties = {
|
|
@@ -12125,6 +12340,14 @@ export type LinearDistributionPropertiesInput = {
|
|
|
12125
12340
|
projectId?: InputMaybe<Scalars['String']['input']>;
|
|
12126
12341
|
/** The workflow state ID. */
|
|
12127
12342
|
stateId?: InputMaybe<Scalars['String']['input']>;
|
|
12343
|
+
/** The target resource identifier. */
|
|
12344
|
+
targetIdentifier?: InputMaybe<Scalars['String']['input']>;
|
|
12345
|
+
/** The target write kind. */
|
|
12346
|
+
targetKind?: InputMaybe<DistributionTargetKindTypes>;
|
|
12347
|
+
/** The requested target write operation. */
|
|
12348
|
+
targetOperation?: InputMaybe<DistributionTargetOperationTypes>;
|
|
12349
|
+
/** The target resource URI. */
|
|
12350
|
+
targetUri?: InputMaybe<Scalars['String']['input']>;
|
|
12128
12351
|
/** The Linear team UUID. */
|
|
12129
12352
|
teamId: Scalars['String']['input'];
|
|
12130
12353
|
/** The issue title. */
|
|
@@ -14821,6 +15044,14 @@ export type MicrosoftCalendarDistributionPropertiesInput = {
|
|
|
14821
15044
|
startDateTime: Scalars['DateTime']['input'];
|
|
14822
15045
|
/** The event title. */
|
|
14823
15046
|
subject?: InputMaybe<Scalars['String']['input']>;
|
|
15047
|
+
/** The target resource identifier. */
|
|
15048
|
+
targetIdentifier?: InputMaybe<Scalars['String']['input']>;
|
|
15049
|
+
/** The target write kind. */
|
|
15050
|
+
targetKind?: InputMaybe<DistributionTargetKindTypes>;
|
|
15051
|
+
/** The requested target write operation. */
|
|
15052
|
+
targetOperation?: InputMaybe<DistributionTargetOperationTypes>;
|
|
15053
|
+
/** The target resource URI. */
|
|
15054
|
+
targetUri?: InputMaybe<Scalars['String']['input']>;
|
|
14824
15055
|
/** The Windows time zone name. */
|
|
14825
15056
|
timeZone?: InputMaybe<Scalars['String']['input']>;
|
|
14826
15057
|
};
|
|
@@ -15099,6 +15330,14 @@ export type MicrosoftOutlookDistributionPropertiesInput = {
|
|
|
15099
15330
|
isDraft?: InputMaybe<Scalars['Boolean']['input']>;
|
|
15100
15331
|
/** The email subject line. */
|
|
15101
15332
|
subject: Scalars['String']['input'];
|
|
15333
|
+
/** The target resource identifier. */
|
|
15334
|
+
targetIdentifier?: InputMaybe<Scalars['String']['input']>;
|
|
15335
|
+
/** The target write kind. */
|
|
15336
|
+
targetKind?: InputMaybe<DistributionTargetKindTypes>;
|
|
15337
|
+
/** The requested target write operation. */
|
|
15338
|
+
targetOperation?: InputMaybe<DistributionTargetOperationTypes>;
|
|
15339
|
+
/** The target resource URI. */
|
|
15340
|
+
targetUri?: InputMaybe<Scalars['String']['input']>;
|
|
15102
15341
|
/** The recipient email addresses. */
|
|
15103
15342
|
to: Array<Scalars['String']['input']>;
|
|
15104
15343
|
};
|
|
@@ -15137,6 +15376,14 @@ export type MicrosoftTeamsChannelsInput = {
|
|
|
15137
15376
|
export type MicrosoftTeamsDistributionPropertiesInput = {
|
|
15138
15377
|
/** The channel ID within the team. */
|
|
15139
15378
|
channelId: Scalars['String']['input'];
|
|
15379
|
+
/** The target resource identifier. */
|
|
15380
|
+
targetIdentifier?: InputMaybe<Scalars['String']['input']>;
|
|
15381
|
+
/** The target write kind. */
|
|
15382
|
+
targetKind?: InputMaybe<DistributionTargetKindTypes>;
|
|
15383
|
+
/** The requested target write operation. */
|
|
15384
|
+
targetOperation?: InputMaybe<DistributionTargetOperationTypes>;
|
|
15385
|
+
/** The target resource URI. */
|
|
15386
|
+
targetUri?: InputMaybe<Scalars['String']['input']>;
|
|
15140
15387
|
/** The Teams team ID. */
|
|
15141
15388
|
teamId: Scalars['String']['input'];
|
|
15142
15389
|
/** The thread message ID to reply to. */
|
|
@@ -15257,6 +15504,14 @@ export type MicrosoftWordDistributionPropertiesInput = {
|
|
|
15257
15504
|
fileName?: InputMaybe<Scalars['String']['input']>;
|
|
15258
15505
|
/** The OneDrive/SharePoint folder ID to create the doc in. */
|
|
15259
15506
|
folderId?: InputMaybe<Scalars['String']['input']>;
|
|
15507
|
+
/** The target resource identifier. */
|
|
15508
|
+
targetIdentifier?: InputMaybe<Scalars['String']['input']>;
|
|
15509
|
+
/** The target write kind. */
|
|
15510
|
+
targetKind?: InputMaybe<DistributionTargetKindTypes>;
|
|
15511
|
+
/** The requested target write operation. */
|
|
15512
|
+
targetOperation?: InputMaybe<DistributionTargetOperationTypes>;
|
|
15513
|
+
/** The target resource URI. */
|
|
15514
|
+
targetUri?: InputMaybe<Scalars['String']['input']>;
|
|
15260
15515
|
};
|
|
15261
15516
|
/** Represents the Mistral document preparation properties. */
|
|
15262
15517
|
export type MistralDocumentPreparationProperties = {
|
|
@@ -16083,8 +16338,6 @@ export type Mutation = {
|
|
|
16083
16338
|
updateCategory?: Maybe<Category>;
|
|
16084
16339
|
/** Updates an existing collection. */
|
|
16085
16340
|
updateCollection?: Maybe<Collection>;
|
|
16086
|
-
/** Updates an existing Confluence page. */
|
|
16087
|
-
updateConfluencePage?: Maybe<DistributionResult>;
|
|
16088
16341
|
/** Updates an existing connector. */
|
|
16089
16342
|
updateConnector?: Maybe<Connector>;
|
|
16090
16343
|
/** Updates existing content. */
|
|
@@ -16137,8 +16390,6 @@ export type Mutation = {
|
|
|
16137
16390
|
updateMedicalTherapy?: Maybe<MedicalTherapy>;
|
|
16138
16391
|
/** Updates an existing Microsoft Calendar event. */
|
|
16139
16392
|
updateMicrosoftCalendarEvent?: Maybe<CalendarEventResult>;
|
|
16140
|
-
/** Updates an existing Notion page. */
|
|
16141
|
-
updateNotionPage?: Maybe<DistributionResult>;
|
|
16142
16393
|
/** Updates an observation. */
|
|
16143
16394
|
updateObservation?: Maybe<Observation>;
|
|
16144
16395
|
/** Updates an organization. */
|
|
@@ -17296,11 +17547,6 @@ export type MutationUpdateCategoryArgs = {
|
|
|
17296
17547
|
export type MutationUpdateCollectionArgs = {
|
|
17297
17548
|
collection: CollectionUpdateInput;
|
|
17298
17549
|
};
|
|
17299
|
-
export type MutationUpdateConfluencePageArgs = {
|
|
17300
|
-
input: ConfluencePageUpdateInput;
|
|
17301
|
-
pageId: Scalars['String']['input'];
|
|
17302
|
-
properties: ConfluenceSpacesInput;
|
|
17303
|
-
};
|
|
17304
17550
|
export type MutationUpdateConnectorArgs = {
|
|
17305
17551
|
connector: ConnectorUpdateInput;
|
|
17306
17552
|
};
|
|
@@ -17387,11 +17633,6 @@ export type MutationUpdateMicrosoftCalendarEventArgs = {
|
|
|
17387
17633
|
input: CalendarEventUpdateInput;
|
|
17388
17634
|
properties: MicrosoftCalendarEventsInput;
|
|
17389
17635
|
};
|
|
17390
|
-
export type MutationUpdateNotionPageArgs = {
|
|
17391
|
-
input: NotionPageUpdateInput;
|
|
17392
|
-
pageId: Scalars['String']['input'];
|
|
17393
|
-
properties: NotionDatabasesInput;
|
|
17394
|
-
};
|
|
17395
17636
|
export type MutationUpdateObservationArgs = {
|
|
17396
17637
|
observation: ObservationUpdateInput;
|
|
17397
17638
|
};
|
|
@@ -17512,6 +17753,14 @@ export type NotionDistributionPropertiesInput = {
|
|
|
17512
17753
|
databaseId?: InputMaybe<Scalars['String']['input']>;
|
|
17513
17754
|
/** The Notion page ID to create child page under. */
|
|
17514
17755
|
parentPageId?: InputMaybe<Scalars['String']['input']>;
|
|
17756
|
+
/** The target resource identifier. */
|
|
17757
|
+
targetIdentifier?: InputMaybe<Scalars['String']['input']>;
|
|
17758
|
+
/** The target write kind. */
|
|
17759
|
+
targetKind?: InputMaybe<DistributionTargetKindTypes>;
|
|
17760
|
+
/** The requested target write operation. */
|
|
17761
|
+
targetOperation?: InputMaybe<DistributionTargetOperationTypes>;
|
|
17762
|
+
/** The target resource URI. */
|
|
17763
|
+
targetUri?: InputMaybe<Scalars['String']['input']>;
|
|
17515
17764
|
/** The page title. */
|
|
17516
17765
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
17517
17766
|
};
|
|
@@ -17599,15 +17848,6 @@ export type NotionPageResults = {
|
|
|
17599
17848
|
/** The Notion pages. */
|
|
17600
17849
|
results?: Maybe<Array<Maybe<NotionPageResult>>>;
|
|
17601
17850
|
};
|
|
17602
|
-
/** Represents Notion page fields to update. */
|
|
17603
|
-
export type NotionPageUpdateInput = {
|
|
17604
|
-
/** If true, append to existing content; if false, replace. */
|
|
17605
|
-
appendContent?: InputMaybe<Scalars['Boolean']['input']>;
|
|
17606
|
-
/** The page content (Markdown). */
|
|
17607
|
-
content?: InputMaybe<Scalars['String']['input']>;
|
|
17608
|
-
/** The new page title. */
|
|
17609
|
-
title?: InputMaybe<Scalars['String']['input']>;
|
|
17610
|
-
};
|
|
17611
17851
|
/** Represents Notion pages properties. */
|
|
17612
17852
|
export type NotionPagesInput = {
|
|
17613
17853
|
/** Notion authentication type, defaults to Token. */
|
|
@@ -17976,6 +18216,14 @@ export type OneDriveDistributionPropertiesInput = {
|
|
|
17976
18216
|
fileName?: InputMaybe<Scalars['String']['input']>;
|
|
17977
18217
|
/** The target folder ID. */
|
|
17978
18218
|
folderId?: InputMaybe<Scalars['String']['input']>;
|
|
18219
|
+
/** The target resource identifier. */
|
|
18220
|
+
targetIdentifier?: InputMaybe<Scalars['String']['input']>;
|
|
18221
|
+
/** The target write kind. */
|
|
18222
|
+
targetKind?: InputMaybe<DistributionTargetKindTypes>;
|
|
18223
|
+
/** The requested target write operation. */
|
|
18224
|
+
targetOperation?: InputMaybe<DistributionTargetOperationTypes>;
|
|
18225
|
+
/** The target resource URI. */
|
|
18226
|
+
targetUri?: InputMaybe<Scalars['String']['input']>;
|
|
17979
18227
|
};
|
|
17980
18228
|
/** Represents OneDrive properties. */
|
|
17981
18229
|
export type OneDriveFeedProperties = {
|
|
@@ -22434,6 +22682,14 @@ export type SalesforceDistributionPropertiesInput = {
|
|
|
22434
22682
|
objectId: Scalars['String']['input'];
|
|
22435
22683
|
/** The Salesforce object type. */
|
|
22436
22684
|
objectType: Scalars['String']['input'];
|
|
22685
|
+
/** The target resource identifier. */
|
|
22686
|
+
targetIdentifier?: InputMaybe<Scalars['String']['input']>;
|
|
22687
|
+
/** The target write kind. */
|
|
22688
|
+
targetKind?: InputMaybe<DistributionTargetKindTypes>;
|
|
22689
|
+
/** The requested target write operation. */
|
|
22690
|
+
targetOperation?: InputMaybe<DistributionTargetOperationTypes>;
|
|
22691
|
+
/** The target resource URI. */
|
|
22692
|
+
targetUri?: InputMaybe<Scalars['String']['input']>;
|
|
22437
22693
|
/** The note title. */
|
|
22438
22694
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
22439
22695
|
};
|
|
@@ -22679,6 +22935,14 @@ export declare enum SharePointAuthenticationTypes {
|
|
|
22679
22935
|
export type SharePointDistributionPropertiesInput = {
|
|
22680
22936
|
/** The SharePoint site ID. */
|
|
22681
22937
|
siteId: Scalars['String']['input'];
|
|
22938
|
+
/** The target resource identifier. */
|
|
22939
|
+
targetIdentifier?: InputMaybe<Scalars['String']['input']>;
|
|
22940
|
+
/** The target write kind. */
|
|
22941
|
+
targetKind?: InputMaybe<DistributionTargetKindTypes>;
|
|
22942
|
+
/** The requested target write operation. */
|
|
22943
|
+
targetOperation?: InputMaybe<DistributionTargetOperationTypes>;
|
|
22944
|
+
/** The target resource URI. */
|
|
22945
|
+
targetUri?: InputMaybe<Scalars['String']['input']>;
|
|
22682
22946
|
/** The page title. */
|
|
22683
22947
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
22684
22948
|
};
|
|
@@ -23106,6 +23370,14 @@ export type SlackChannelsInput = {
|
|
|
23106
23370
|
export type SlackDistributionPropertiesInput = {
|
|
23107
23371
|
/** The channel or DM ID. */
|
|
23108
23372
|
channelId: Scalars['String']['input'];
|
|
23373
|
+
/** The target resource identifier. */
|
|
23374
|
+
targetIdentifier?: InputMaybe<Scalars['String']['input']>;
|
|
23375
|
+
/** The target write kind. */
|
|
23376
|
+
targetKind?: InputMaybe<DistributionTargetKindTypes>;
|
|
23377
|
+
/** The requested target write operation. */
|
|
23378
|
+
targetOperation?: InputMaybe<DistributionTargetOperationTypes>;
|
|
23379
|
+
/** The target resource URI. */
|
|
23380
|
+
targetUri?: InputMaybe<Scalars['String']['input']>;
|
|
23109
23381
|
/** The thread timestamp for replying to a thread. */
|
|
23110
23382
|
threadTs?: InputMaybe<Scalars['String']['input']>;
|
|
23111
23383
|
};
|
|
@@ -24258,6 +24530,14 @@ export declare enum TwitterAuthenticationTypes {
|
|
|
24258
24530
|
export type TwitterDistributionPropertiesInput = {
|
|
24259
24531
|
/** The tweet ID to reply to. */
|
|
24260
24532
|
replyToTweetId?: InputMaybe<Scalars['String']['input']>;
|
|
24533
|
+
/** The target resource identifier. */
|
|
24534
|
+
targetIdentifier?: InputMaybe<Scalars['String']['input']>;
|
|
24535
|
+
/** The target write kind. */
|
|
24536
|
+
targetKind?: InputMaybe<DistributionTargetKindTypes>;
|
|
24537
|
+
/** The requested target write operation. */
|
|
24538
|
+
targetOperation?: InputMaybe<DistributionTargetOperationTypes>;
|
|
24539
|
+
/** The target resource URI. */
|
|
24540
|
+
targetUri?: InputMaybe<Scalars['String']['input']>;
|
|
24261
24541
|
};
|
|
24262
24542
|
/** Represents Twitter feed properties. */
|
|
24263
24543
|
export type TwitterFeedProperties = {
|
|
@@ -27918,6 +28198,9 @@ export type DistributeMutation = {
|
|
|
27918
28198
|
uri?: string | null;
|
|
27919
28199
|
identifier?: string | null;
|
|
27920
28200
|
serviceType?: DistributionServiceTypes | null;
|
|
28201
|
+
operation?: DistributionOperationTypes | null;
|
|
28202
|
+
resolvedTargetIdentifier?: string | null;
|
|
28203
|
+
resolvedTargetUri?: string | null;
|
|
27921
28204
|
error?: string | null;
|
|
27922
28205
|
}> | null;
|
|
27923
28206
|
};
|
|
@@ -36680,22 +36963,6 @@ export type DeleteFeedsMutation = {
|
|
|
36680
36963
|
state: EntityState;
|
|
36681
36964
|
} | null> | null;
|
|
36682
36965
|
};
|
|
36683
|
-
export type DeleteGoogleCalendarEventMutationVariables = Exact<{
|
|
36684
|
-
properties: GoogleCalendarEventsInput;
|
|
36685
|
-
eventId: Scalars['String']['input'];
|
|
36686
|
-
}>;
|
|
36687
|
-
export type DeleteGoogleCalendarEventMutation = {
|
|
36688
|
-
__typename?: 'Mutation';
|
|
36689
|
-
deleteGoogleCalendarEvent?: boolean | null;
|
|
36690
|
-
};
|
|
36691
|
-
export type DeleteMicrosoftCalendarEventMutationVariables = Exact<{
|
|
36692
|
-
properties: MicrosoftCalendarEventsInput;
|
|
36693
|
-
eventId: Scalars['String']['input'];
|
|
36694
|
-
}>;
|
|
36695
|
-
export type DeleteMicrosoftCalendarEventMutation = {
|
|
36696
|
-
__typename?: 'Mutation';
|
|
36697
|
-
deleteMicrosoftCalendarEvent?: boolean | null;
|
|
36698
|
-
};
|
|
36699
36966
|
export type DisableFeedMutationVariables = Exact<{
|
|
36700
36967
|
id: Scalars['ID']['input'];
|
|
36701
36968
|
}>;
|
|
@@ -37464,6 +37731,22 @@ export type GetFeedQuery = {
|
|
|
37464
37731
|
jobTitle?: string | null;
|
|
37465
37732
|
jobRegion?: string | null;
|
|
37466
37733
|
jobDescription?: string | null;
|
|
37734
|
+
fieldsToTrack?: Array<string> | null;
|
|
37735
|
+
headcountGrowthMin?: any | null;
|
|
37736
|
+
headcountGrowthMax?: any | null;
|
|
37737
|
+
headcountGrowthTimeframe?: string | null;
|
|
37738
|
+
baselineHeadcount?: number | null;
|
|
37739
|
+
headcountGrowthFromBaseline?: number | null;
|
|
37740
|
+
annualRevenueMin?: any | null;
|
|
37741
|
+
annualRevenueMax?: any | null;
|
|
37742
|
+
postCategories?: Array<string> | null;
|
|
37743
|
+
keyword?: string | null;
|
|
37744
|
+
industry?: string | null;
|
|
37745
|
+
fundingRoundTypes?: Array<string> | null;
|
|
37746
|
+
companyDepartment?: string | null;
|
|
37747
|
+
companyHeadcountRanges?: Array<string> | null;
|
|
37748
|
+
frequency?: number | null;
|
|
37749
|
+
expirationDate?: any | null;
|
|
37467
37750
|
} | null;
|
|
37468
37751
|
linkedin?: {
|
|
37469
37752
|
__typename?: 'LinkedInSearchProperties';
|
|
@@ -38754,6 +39037,22 @@ export type QueryFeedsQuery = {
|
|
|
38754
39037
|
jobTitle?: string | null;
|
|
38755
39038
|
jobRegion?: string | null;
|
|
38756
39039
|
jobDescription?: string | null;
|
|
39040
|
+
fieldsToTrack?: Array<string> | null;
|
|
39041
|
+
headcountGrowthMin?: any | null;
|
|
39042
|
+
headcountGrowthMax?: any | null;
|
|
39043
|
+
headcountGrowthTimeframe?: string | null;
|
|
39044
|
+
baselineHeadcount?: number | null;
|
|
39045
|
+
headcountGrowthFromBaseline?: number | null;
|
|
39046
|
+
annualRevenueMin?: any | null;
|
|
39047
|
+
annualRevenueMax?: any | null;
|
|
39048
|
+
postCategories?: Array<string> | null;
|
|
39049
|
+
keyword?: string | null;
|
|
39050
|
+
industry?: string | null;
|
|
39051
|
+
fundingRoundTypes?: Array<string> | null;
|
|
39052
|
+
companyDepartment?: string | null;
|
|
39053
|
+
companyHeadcountRanges?: Array<string> | null;
|
|
39054
|
+
frequency?: number | null;
|
|
39055
|
+
expirationDate?: any | null;
|
|
38757
39056
|
} | null;
|
|
38758
39057
|
linkedin?: {
|
|
38759
39058
|
__typename?: 'LinkedInSearchProperties';
|
|
@@ -39386,20 +39685,6 @@ export type TriggerFeedMutation = {
|
|
|
39386
39685
|
state: EntityState;
|
|
39387
39686
|
} | null;
|
|
39388
39687
|
};
|
|
39389
|
-
export type UpdateConfluencePageMutationVariables = Exact<{
|
|
39390
|
-
properties: ConfluenceSpacesInput;
|
|
39391
|
-
pageId: Scalars['String']['input'];
|
|
39392
|
-
input: ConfluencePageUpdateInput;
|
|
39393
|
-
}>;
|
|
39394
|
-
export type UpdateConfluencePageMutation = {
|
|
39395
|
-
__typename?: 'Mutation';
|
|
39396
|
-
updateConfluencePage?: {
|
|
39397
|
-
__typename?: 'DistributionResult';
|
|
39398
|
-
identifier?: string | null;
|
|
39399
|
-
uri?: string | null;
|
|
39400
|
-
serviceType?: DistributionServiceTypes | null;
|
|
39401
|
-
} | null;
|
|
39402
|
-
};
|
|
39403
39688
|
export type UpdateFeedMutationVariables = Exact<{
|
|
39404
39689
|
feed: FeedUpdateInput;
|
|
39405
39690
|
}>;
|
|
@@ -39414,92 +39699,6 @@ export type UpdateFeedMutation = {
|
|
|
39414
39699
|
type: FeedTypes;
|
|
39415
39700
|
} | null;
|
|
39416
39701
|
};
|
|
39417
|
-
export type UpdateGoogleCalendarEventMutationVariables = Exact<{
|
|
39418
|
-
properties: GoogleCalendarEventsInput;
|
|
39419
|
-
eventId: Scalars['String']['input'];
|
|
39420
|
-
input: CalendarEventUpdateInput;
|
|
39421
|
-
}>;
|
|
39422
|
-
export type UpdateGoogleCalendarEventMutation = {
|
|
39423
|
-
__typename?: 'Mutation';
|
|
39424
|
-
updateGoogleCalendarEvent?: {
|
|
39425
|
-
__typename?: 'CalendarEventResult';
|
|
39426
|
-
eventId: string;
|
|
39427
|
-
summary?: string | null;
|
|
39428
|
-
startDateTime: any;
|
|
39429
|
-
endDateTime: any;
|
|
39430
|
-
location?: string | null;
|
|
39431
|
-
attendees?: Array<string | null> | null;
|
|
39432
|
-
isOnlineMeeting?: boolean | null;
|
|
39433
|
-
meetingLink?: string | null;
|
|
39434
|
-
description?: string | null;
|
|
39435
|
-
status?: string | null;
|
|
39436
|
-
organizer?: string | null;
|
|
39437
|
-
} | null;
|
|
39438
|
-
};
|
|
39439
|
-
export type UpdateJiraIssueMutationVariables = Exact<{
|
|
39440
|
-
properties: JiraProjectsInput;
|
|
39441
|
-
issueIdOrKey: Scalars['String']['input'];
|
|
39442
|
-
input: JiraIssueUpdateInput;
|
|
39443
|
-
}>;
|
|
39444
|
-
export type UpdateJiraIssueMutation = {
|
|
39445
|
-
__typename?: 'Mutation';
|
|
39446
|
-
updateJiraIssue?: {
|
|
39447
|
-
__typename?: 'DistributionResult';
|
|
39448
|
-
identifier?: string | null;
|
|
39449
|
-
uri?: string | null;
|
|
39450
|
-
serviceType?: DistributionServiceTypes | null;
|
|
39451
|
-
} | null;
|
|
39452
|
-
};
|
|
39453
|
-
export type UpdateLinearIssueMutationVariables = Exact<{
|
|
39454
|
-
properties: LinearProjectsInput;
|
|
39455
|
-
issueId: Scalars['String']['input'];
|
|
39456
|
-
input: LinearIssueUpdateInput;
|
|
39457
|
-
}>;
|
|
39458
|
-
export type UpdateLinearIssueMutation = {
|
|
39459
|
-
__typename?: 'Mutation';
|
|
39460
|
-
updateLinearIssue?: {
|
|
39461
|
-
__typename?: 'DistributionResult';
|
|
39462
|
-
identifier?: string | null;
|
|
39463
|
-
uri?: string | null;
|
|
39464
|
-
serviceType?: DistributionServiceTypes | null;
|
|
39465
|
-
} | null;
|
|
39466
|
-
};
|
|
39467
|
-
export type UpdateMicrosoftCalendarEventMutationVariables = Exact<{
|
|
39468
|
-
properties: MicrosoftCalendarEventsInput;
|
|
39469
|
-
eventId: Scalars['String']['input'];
|
|
39470
|
-
input: CalendarEventUpdateInput;
|
|
39471
|
-
}>;
|
|
39472
|
-
export type UpdateMicrosoftCalendarEventMutation = {
|
|
39473
|
-
__typename?: 'Mutation';
|
|
39474
|
-
updateMicrosoftCalendarEvent?: {
|
|
39475
|
-
__typename?: 'CalendarEventResult';
|
|
39476
|
-
eventId: string;
|
|
39477
|
-
summary?: string | null;
|
|
39478
|
-
startDateTime: any;
|
|
39479
|
-
endDateTime: any;
|
|
39480
|
-
location?: string | null;
|
|
39481
|
-
attendees?: Array<string | null> | null;
|
|
39482
|
-
isOnlineMeeting?: boolean | null;
|
|
39483
|
-
meetingLink?: string | null;
|
|
39484
|
-
description?: string | null;
|
|
39485
|
-
status?: string | null;
|
|
39486
|
-
organizer?: string | null;
|
|
39487
|
-
} | null;
|
|
39488
|
-
};
|
|
39489
|
-
export type UpdateNotionPageMutationVariables = Exact<{
|
|
39490
|
-
properties: NotionDatabasesInput;
|
|
39491
|
-
pageId: Scalars['String']['input'];
|
|
39492
|
-
input: NotionPageUpdateInput;
|
|
39493
|
-
}>;
|
|
39494
|
-
export type UpdateNotionPageMutation = {
|
|
39495
|
-
__typename?: 'Mutation';
|
|
39496
|
-
updateNotionPage?: {
|
|
39497
|
-
__typename?: 'DistributionResult';
|
|
39498
|
-
identifier?: string | null;
|
|
39499
|
-
uri?: string | null;
|
|
39500
|
-
serviceType?: DistributionServiceTypes | null;
|
|
39501
|
-
} | null;
|
|
39502
|
-
};
|
|
39503
39702
|
export type CountInvestmentsQueryVariables = Exact<{
|
|
39504
39703
|
filter?: InputMaybe<InvestmentFilter>;
|
|
39505
39704
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -828,6 +828,18 @@ export var DeviceTypes;
|
|
|
828
828
|
/** Unknown */
|
|
829
829
|
DeviceTypes["Unknown"] = "UNKNOWN";
|
|
830
830
|
})(DeviceTypes || (DeviceTypes = {}));
|
|
831
|
+
/** Distribution operation result type */
|
|
832
|
+
export var DistributionOperationTypes;
|
|
833
|
+
(function (DistributionOperationTypes) {
|
|
834
|
+
/** Appended to an existing target resource. */
|
|
835
|
+
DistributionOperationTypes["Appended"] = "APPENDED";
|
|
836
|
+
/** Created or appended comment-style content. */
|
|
837
|
+
DistributionOperationTypes["Commented"] = "COMMENTED";
|
|
838
|
+
/** Created a new target resource. */
|
|
839
|
+
DistributionOperationTypes["Created"] = "CREATED";
|
|
840
|
+
/** Replaced an existing target resource. */
|
|
841
|
+
DistributionOperationTypes["Replaced"] = "REPLACED";
|
|
842
|
+
})(DistributionOperationTypes || (DistributionOperationTypes = {}));
|
|
831
843
|
/** Distribution service type */
|
|
832
844
|
export var DistributionServiceTypes;
|
|
833
845
|
(function (DistributionServiceTypes) {
|
|
@@ -878,6 +890,26 @@ export var DistributionServiceTypes;
|
|
|
878
890
|
/** X/Twitter */
|
|
879
891
|
DistributionServiceTypes["Twitter"] = "TWITTER";
|
|
880
892
|
})(DistributionServiceTypes || (DistributionServiceTypes = {}));
|
|
893
|
+
/** Distribution target kind type */
|
|
894
|
+
export var DistributionTargetKindTypes;
|
|
895
|
+
(function (DistributionTargetKindTypes) {
|
|
896
|
+
/** Write to the primary body or content of the target resource. */
|
|
897
|
+
DistributionTargetKindTypes["Body"] = "BODY";
|
|
898
|
+
/** Write comment-style content associated with the target resource. */
|
|
899
|
+
DistributionTargetKindTypes["Comment"] = "COMMENT";
|
|
900
|
+
})(DistributionTargetKindTypes || (DistributionTargetKindTypes = {}));
|
|
901
|
+
/** Distribution target operation type */
|
|
902
|
+
export var DistributionTargetOperationTypes;
|
|
903
|
+
(function (DistributionTargetOperationTypes) {
|
|
904
|
+
/** Append to an existing target body. */
|
|
905
|
+
DistributionTargetOperationTypes["Append"] = "APPEND";
|
|
906
|
+
/** Create a new target. */
|
|
907
|
+
DistributionTargetOperationTypes["Create"] = "CREATE";
|
|
908
|
+
/** Replace an existing target body. */
|
|
909
|
+
DistributionTargetOperationTypes["Replace"] = "REPLACE";
|
|
910
|
+
/** Replace an existing target when found, otherwise create a new target. */
|
|
911
|
+
DistributionTargetOperationTypes["Upsert"] = "UPSERT";
|
|
912
|
+
})(DistributionTargetOperationTypes || (DistributionTargetOperationTypes = {}));
|
|
881
913
|
/** Dropbox authentication type */
|
|
882
914
|
export var DropboxAuthenticationTypes;
|
|
883
915
|
(function (DropboxAuthenticationTypes) {
|