From 4ab36a630bbe3a1a2d2ff58d7b15cfbc3bc7737a Mon Sep 17 00:00:00 2001
From: Abdul Rahman <81605929+abdulrahmancodes@users.noreply.github.com>
Date: Fri, 10 Jul 2026 16:14:13 +0530
Subject: [PATCH] remove nestjs-query from app-token and drop unused
createOneAppToken mutation (#22765)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
## What
Migrates `app-token` off `@ptc-org/nestjs-query` and removes the
auto-generated `createOneAppToken` mutation, which was unused dead API
surface.
## Why
The `createOneAppToken` mutation was reachable only from the schema — no
frontend query, SDK caller, or test used it. It was also non-functional
(its input couldn't set the token `value`), a leftover from
nestjs-query's default `create.one` being left enabled. Real app tokens
(refresh, password-reset, email-verification, invitation, OAuth,
enterprise) are all created directly via the repository in ~14 services,
none of which touched this mutation.
## Notes
- ⚠️ This removes `AppToken`, `createOneAppToken`,
`CreateAppTokenInput`, and `CreateOneAppTokenInput` from the `/metadata`
schema, so the **api-breaking-changes check will flag it**
Co-authored-by: Weiko
---
.../src/metadata/generated/schema.graphql | 18 -
.../src/metadata/generated/schema.ts | 35 -
.../src/metadata/generated/types.ts | 1447 ++++++++---------
.../src/generated-metadata/graphql.ts | 24 -
.../app-token/app-token.auto-resolver-opts.ts | 42 -
.../app-token/app-token.entity.ts | 12 -
.../app-token/app-token.module.ts | 19 -
.../app-token/dtos/create-app-token.input.ts | 11 -
.../hooks/before-create-one-app-token.hook.ts | 22 -
.../services/app-token.service.spec.ts | 32 -
.../app-token/services/app-token.service.ts | 15 -
.../engine/core-modules/auth/auth.module.ts | 2 -
.../engine/core-modules/core-engine.module.ts | 2 -
13 files changed, 701 insertions(+), 980 deletions(-)
delete mode 100644 packages/twenty-server/src/engine/core-modules/app-token/app-token.auto-resolver-opts.ts
delete mode 100644 packages/twenty-server/src/engine/core-modules/app-token/app-token.module.ts
delete mode 100644 packages/twenty-server/src/engine/core-modules/app-token/dtos/create-app-token.input.ts
delete mode 100644 packages/twenty-server/src/engine/core-modules/app-token/hooks/before-create-one-app-token.hook.ts
delete mode 100644 packages/twenty-server/src/engine/core-modules/app-token/services/app-token.service.spec.ts
delete mode 100644 packages/twenty-server/src/engine/core-modules/app-token/services/app-token.service.ts
diff --git a/packages/twenty-client-sdk/src/metadata/generated/schema.graphql b/packages/twenty-client-sdk/src/metadata/generated/schema.graphql
index 4156f06ce4..f3ef6aabad 100644
--- a/packages/twenty-client-sdk/src/metadata/generated/schema.graphql
+++ b/packages/twenty-client-sdk/src/metadata/generated/schema.graphql
@@ -952,14 +952,6 @@ enum WorkspaceActivationStatus {
SUSPENDED
}
-type AppToken {
- id: UUID!
- type: String!
- expiresAt: DateTime!
- createdAt: DateTime!
- updatedAt: DateTime!
-}
-
type User {
id: UUID!
firstName: String!
@@ -3512,7 +3504,6 @@ type Mutation {
createPublicDomain(domain: String!, applicationId: String!): PublicDomain!
deletePublicDomain(domain: String!): Boolean!
checkPublicDomainValidRecords(domain: String!): DomainValidRecords
- createOneAppToken(input: CreateOneAppTokenInput!): AppToken!
createDevelopmentApplication(universalIdentifier: String!, name: String!): DevelopmentApplication!
syncApplication(manifest: JSON!, dryRun: Boolean): WorkspaceMigration!
uploadApplicationFile(file: Upload!, applicationUniversalIdentifier: String!, fileFolder: FileFolder!, filePath: String!): File!
@@ -4682,15 +4673,6 @@ input UpdateLabPublicFeatureFlagInput {
value: Boolean!
}
-input CreateOneAppTokenInput {
- """The record to create"""
- appToken: CreateAppTokenInput!
-}
-
-input CreateAppTokenInput {
- expiresAt: DateTime!
-}
-
type Subscription {
onEventSubscription(eventStreamId: String!): EventSubscription
logicFunctionLogs(input: LogicFunctionLogsInput!): LogicFunctionLogs!
diff --git a/packages/twenty-client-sdk/src/metadata/generated/schema.ts b/packages/twenty-client-sdk/src/metadata/generated/schema.ts
index f5f3755cc5..cad652e3c5 100644
--- a/packages/twenty-client-sdk/src/metadata/generated/schema.ts
+++ b/packages/twenty-client-sdk/src/metadata/generated/schema.ts
@@ -669,15 +669,6 @@ export type WorkspaceDiscoverability = 'PUBLIC' | 'MEMBERS_AND_INVITEES' | 'HIDD
export type WorkspaceActivationStatus = 'ONGOING_CREATION' | 'PENDING_CREATION' | 'ACTIVE' | 'INACTIVE' | 'SUSPENDED'
-export interface AppToken {
- id: Scalars['UUID']
- type: Scalars['String']
- expiresAt: Scalars['DateTime']
- createdAt: Scalars['DateTime']
- updatedAt: Scalars['DateTime']
- __typename: 'AppToken'
-}
-
export interface User {
id: Scalars['UUID']
firstName: Scalars['String']
@@ -3048,7 +3039,6 @@ export interface Mutation {
createPublicDomain: PublicDomain
deletePublicDomain: Scalars['Boolean']
checkPublicDomainValidRecords?: DomainValidRecords
- createOneAppToken: AppToken
createDevelopmentApplication: DevelopmentApplication
syncApplication: WorkspaceMigration
uploadApplicationFile: File
@@ -3751,16 +3741,6 @@ export interface WorkspaceGenqlSelection{
__scalar?: boolean | number
}
-export interface AppTokenGenqlSelection{
- id?: boolean | number
- type?: boolean | number
- expiresAt?: boolean | number
- createdAt?: boolean | number
- updatedAt?: boolean | number
- __typename?: boolean | number
- __scalar?: boolean | number
-}
-
export interface UserGenqlSelection{
id?: boolean | number
firstName?: boolean | number
@@ -6300,7 +6280,6 @@ export interface MutationGenqlSelection{
createPublicDomain?: (PublicDomainGenqlSelection & { __args: {domain: Scalars['String'], applicationId: Scalars['String']} })
deletePublicDomain?: { __args: {domain: Scalars['String']} }
checkPublicDomainValidRecords?: (DomainValidRecordsGenqlSelection & { __args: {domain: Scalars['String']} })
- createOneAppToken?: (AppTokenGenqlSelection & { __args: {input: CreateOneAppTokenInput} })
createDevelopmentApplication?: (DevelopmentApplicationGenqlSelection & { __args: {universalIdentifier: Scalars['String'], name: Scalars['String']} })
syncApplication?: (WorkspaceMigrationGenqlSelection & { __args: {manifest: Scalars['JSON'], dryRun?: (Scalars['Boolean'] | null)} })
uploadApplicationFile?: (FileGenqlSelection & { __args: {file: Scalars['Upload'], applicationUniversalIdentifier: Scalars['String'], fileFolder: FileFolder, filePath: Scalars['String']} })
@@ -6689,12 +6668,6 @@ export interface ConnectionParametersInput {host: Scalars['String'],port: Scalar
export interface UpdateLabPublicFeatureFlagInput {publicFeatureFlag: Scalars['String'],value: Scalars['Boolean']}
-export interface CreateOneAppTokenInput {
-/** The record to create */
-appToken: CreateAppTokenInput}
-
-export interface CreateAppTokenInput {expiresAt: Scalars['DateTime']}
-
export interface SubscriptionGenqlSelection{
onEventSubscription?: (EventSubscriptionGenqlSelection & { __args: {eventStreamId: Scalars['String']} })
logicFunctionLogs?: (LogicFunctionLogsGenqlSelection & { __args: {input: LogicFunctionLogsInput} })
@@ -7011,14 +6984,6 @@ export interface LogicFunctionLogsInput {applicationId?: (Scalars['UUID'] | null
- const AppToken_possibleTypes: string[] = ['AppToken']
- export const isAppToken = (obj?: { __typename?: any } | null): obj is AppToken => {
- if (!obj?.__typename) throw new Error('__typename is missing in "isAppToken"')
- return AppToken_possibleTypes.includes(obj.__typename)
- }
-
-
-
const User_possibleTypes: string[] = ['User']
export const isUser = (obj?: { __typename?: any } | null): obj is User => {
if (!obj?.__typename) throw new Error('__typename is missing in "isUser"')
diff --git a/packages/twenty-client-sdk/src/metadata/generated/types.ts b/packages/twenty-client-sdk/src/metadata/generated/types.ts
index 09e516f4dc..949d591acf 100644
--- a/packages/twenty-client-sdk/src/metadata/generated/types.ts
+++ b/packages/twenty-client-sdk/src/metadata/generated/types.ts
@@ -31,58 +31,58 @@ export default {
71,
73,
74,
+ 76,
77,
- 78,
- 83,
- 86,
+ 82,
+ 85,
+ 90,
91,
- 92,
+ 94,
95,
- 96,
- 98,
+ 97,
+ 100,
101,
- 102,
- 108,
- 122,
+ 107,
+ 121,
+ 132,
133,
134,
- 135,
- 137,
- 146,
- 159,
- 162,
- 164,
- 168,
- 170,
+ 136,
+ 145,
+ 158,
+ 161,
+ 163,
+ 167,
+ 169,
+ 176,
177,
- 178,
- 185,
- 188,
- 191,
- 202,
- 217,
- 234,
- 240,
- 274,
+ 184,
+ 187,
+ 190,
+ 201,
+ 216,
+ 233,
+ 239,
+ 273,
+ 275,
276,
277,
278,
279,
280,
281,
- 282,
- 289,
+ 288,
+ 328,
329,
330,
331,
- 332,
- 334,
- 336,
- 347,
- 354,
+ 333,
+ 335,
+ 346,
+ 353,
+ 360,
361,
- 362,
- 488
+ 487
],
"types": {
"BillingProductDTO": {
@@ -96,13 +96,13 @@ export default {
1
],
"metadata": [
- 132
+ 131
],
"on_BillingLicensedProduct": [
- 141
+ 140
],
"on_BillingMeteredProduct": [
- 142
+ 141
],
"__typename": [
1
@@ -343,7 +343,7 @@ export default {
3
],
"user": [
- 76
+ 75
],
"userId": [
3
@@ -951,10 +951,10 @@ export default {
3
],
"relation": [
- 201
+ 200
],
"morphRelations": [
- 201
+ 200
],
"object": [
52
@@ -990,10 +990,10 @@ export default {
4
],
"indexFieldMetadataList": [
- 203
+ 202
],
"objectMetadata": [
- 208,
+ 207,
{
"paging": [
47,
@@ -1201,10 +1201,10 @@ export default {
45
],
"searchFieldMetadataList": [
- 210
+ 209
],
"fields": [
- 214,
+ 213,
{
"paging": [
47,
@@ -1217,7 +1217,7 @@ export default {
}
],
"indexMetadatas": [
- 212,
+ 211,
{
"paging": [
47,
@@ -1822,22 +1822,22 @@ export default {
55
],
"featureFlags": [
- 169
+ 168
],
"billingSubscriptions": [
- 145
+ 144
],
"installedApplications": [
55
],
"currentBillingSubscription": [
- 145
- ],
- "billingCustomer": [
144
],
+ "billingCustomer": [
+ 143
+ ],
"billingEntitlements": [
- 233
+ 232
],
"hasValidSignedEnterpriseKey": [
6
@@ -1846,7 +1846,7 @@ export default {
6
],
"workspaceUrls": [
- 171
+ 170
],
"workspaceCustomApplicationId": [
1
@@ -1857,26 +1857,6 @@ export default {
},
"WorkspaceDiscoverability": {},
"WorkspaceActivationStatus": {},
- "AppToken": {
- "id": [
- 3
- ],
- "type": [
- 1
- ],
- "expiresAt": [
- 4
- ],
- "createdAt": [
- 4
- ],
- "updatedAt": [
- 4
- ],
- "__typename": [
- 1
- ]
- },
"User": {
"id": [
3
@@ -1921,7 +1901,7 @@ export default {
17
],
"onboardingStatus": [
- 77
+ 76
],
"currentWorkspace": [
72
@@ -1930,13 +1910,13 @@ export default {
17
],
"userVars": [
- 78
+ 77
],
"workspaceMembers": [
20
],
"deletedWorkspaceMembers": [
- 227
+ 226
],
"hasPassword": [
6
@@ -1948,7 +1928,7 @@ export default {
17
],
"availableWorkspaces": [
- 226
+ 225
],
"__typename": [
1
@@ -2009,19 +1989,19 @@ export default {
1
],
"type": [
- 83
+ 82
],
"objectMetadataId": [
3
],
"gridPosition": [
- 81
+ 80
],
"position": [
- 84
+ 83
],
"configuration": [
- 89
+ 88
],
"conditionalDisplay": [
7
@@ -2051,13 +2031,13 @@ export default {
"WidgetType": {},
"PageLayoutWidgetPosition": {
"on_PageLayoutWidgetGridPosition": [
- 85
+ 84
],
"on_PageLayoutWidgetVerticalListPosition": [
- 87
+ 86
],
"on_PageLayoutWidgetCanvasPosition": [
- 88
+ 87
],
"__typename": [
1
@@ -2065,7 +2045,7 @@ export default {
},
"PageLayoutWidgetGridPosition": {
"layoutMode": [
- 86
+ 85
],
"row": [
21
@@ -2086,7 +2066,7 @@ export default {
"PageLayoutTabLayoutMode": {},
"PageLayoutWidgetVerticalListPosition": {
"layoutMode": [
- 86
+ 85
],
"index": [
21
@@ -2097,7 +2077,7 @@ export default {
},
"PageLayoutWidgetCanvasPosition": {
"layoutMode": [
- 86
+ 85
],
"__typename": [
1
@@ -2105,70 +2085,70 @@ export default {
},
"WidgetConfiguration": {
"on_AggregateChartConfiguration": [
- 90
+ 89
],
"on_StandaloneRichTextConfiguration": [
- 93
+ 92
],
"on_PieChartConfiguration": [
- 94
+ 93
],
"on_LineChartConfiguration": [
- 97
+ 96
],
"on_IframeConfiguration": [
- 99
+ 98
],
"on_BarChartConfiguration": [
- 100
+ 99
],
"on_CalendarConfiguration": [
- 103
+ 102
],
"on_FrontComponentConfiguration": [
- 104
+ 103
],
"on_EmailsConfiguration": [
- 105
+ 104
],
"on_EmailThreadConfiguration": [
- 106
+ 105
],
"on_FieldConfiguration": [
- 107
+ 106
],
"on_FieldRichTextConfiguration": [
- 109
+ 108
],
"on_FieldsConfiguration": [
- 110
+ 109
],
"on_FilesConfiguration": [
- 111
+ 110
],
"on_NotesConfiguration": [
- 112
+ 111
],
"on_TasksConfiguration": [
- 113
+ 112
],
"on_TimelineConfiguration": [
- 114
+ 113
],
"on_ViewConfiguration": [
- 115
+ 114
],
"on_RecordTableConfiguration": [
- 116
+ 115
],
"on_WorkflowConfiguration": [
- 117
+ 116
],
"on_WorkflowRunConfiguration": [
- 118
+ 117
],
"on_WorkflowVersionConfiguration": [
- 119
+ 118
],
"__typename": [
1
@@ -2176,7 +2156,7 @@ export default {
},
"AggregateChartConfiguration": {
"configurationType": [
- 91
+ 90
],
"aggregateFieldMetadataId": [
3
@@ -2191,7 +2171,7 @@ export default {
6
],
"numberFormat": [
- 92
+ 91
],
"description": [
1
@@ -2212,7 +2192,7 @@ export default {
1
],
"ratioAggregateConfig": [
- 79
+ 78
],
"__typename": [
1
@@ -2222,10 +2202,10 @@ export default {
"ChartNumberFormat": {},
"StandaloneRichTextConfiguration": {
"configurationType": [
- 91
+ 90
],
"body": [
- 80
+ 79
],
"__typename": [
1
@@ -2233,7 +2213,7 @@ export default {
},
"PieChartConfiguration": {
"configurationType": [
- 91
+ 90
],
"aggregateFieldMetadataId": [
3
@@ -2248,10 +2228,10 @@ export default {
1
],
"dateGranularity": [
- 95
+ 94
],
"orderBy": [
- 96
+ 95
],
"manualSortOrder": [
1
@@ -2294,7 +2274,7 @@ export default {
"GraphOrderBy": {},
"LineChartConfiguration": {
"configurationType": [
- 91
+ 90
],
"aggregateFieldMetadataId": [
3
@@ -2309,10 +2289,10 @@ export default {
1
],
"primaryAxisDateGranularity": [
- 95
+ 94
],
"primaryAxisOrderBy": [
- 96
+ 95
],
"primaryAxisManualSortOrder": [
1
@@ -2324,10 +2304,10 @@ export default {
1
],
"secondaryAxisGroupByDateGranularity": [
- 95
+ 94
],
"secondaryAxisOrderBy": [
- 96
+ 95
],
"secondaryAxisManualSortOrder": [
1
@@ -2339,7 +2319,7 @@ export default {
6
],
"axisNameDisplay": [
- 98
+ 97
],
"displayDataLabel": [
6
@@ -2381,7 +2361,7 @@ export default {
"AxisNameDisplay": {},
"IframeConfiguration": {
"configurationType": [
- 91
+ 90
],
"url": [
1
@@ -2392,7 +2372,7 @@ export default {
},
"BarChartConfiguration": {
"configurationType": [
- 91
+ 90
],
"aggregateFieldMetadataId": [
3
@@ -2407,10 +2387,10 @@ export default {
1
],
"primaryAxisDateGranularity": [
- 95
+ 94
],
"primaryAxisOrderBy": [
- 96
+ 95
],
"primaryAxisManualSortOrder": [
1
@@ -2422,10 +2402,10 @@ export default {
1
],
"secondaryAxisGroupByDateGranularity": [
- 95
+ 94
],
"secondaryAxisOrderBy": [
- 96
+ 95
],
"secondaryAxisManualSortOrder": [
1
@@ -2437,7 +2417,7 @@ export default {
6
],
"axisNameDisplay": [
- 98
+ 97
],
"displayDataLabel": [
6
@@ -2461,10 +2441,10 @@ export default {
7
],
"groupMode": [
- 101
+ 100
],
"layout": [
- 102
+ 101
],
"isCumulative": [
6
@@ -2483,7 +2463,7 @@ export default {
"BarChartLayout": {},
"CalendarConfiguration": {
"configurationType": [
- 91
+ 90
],
"__typename": [
1
@@ -2491,7 +2471,7 @@ export default {
},
"FrontComponentConfiguration": {
"configurationType": [
- 91
+ 90
],
"frontComponentId": [
3
@@ -2502,7 +2482,7 @@ export default {
},
"EmailsConfiguration": {
"configurationType": [
- 91
+ 90
],
"__typename": [
1
@@ -2510,7 +2490,7 @@ export default {
},
"EmailThreadConfiguration": {
"configurationType": [
- 91
+ 90
],
"__typename": [
1
@@ -2518,13 +2498,13 @@ export default {
},
"FieldConfiguration": {
"configurationType": [
- 91
+ 90
],
"fieldMetadataId": [
1
],
"fieldDisplayMode": [
- 108
+ 107
],
"viewId": [
1
@@ -2536,7 +2516,7 @@ export default {
"FieldDisplayMode": {},
"FieldRichTextConfiguration": {
"configurationType": [
- 91
+ 90
],
"__typename": [
1
@@ -2544,7 +2524,7 @@ export default {
},
"FieldsConfiguration": {
"configurationType": [
- 91
+ 90
],
"viewId": [
1
@@ -2561,7 +2541,7 @@ export default {
},
"FilesConfiguration": {
"configurationType": [
- 91
+ 90
],
"__typename": [
1
@@ -2569,7 +2549,7 @@ export default {
},
"NotesConfiguration": {
"configurationType": [
- 91
+ 90
],
"__typename": [
1
@@ -2577,7 +2557,7 @@ export default {
},
"TasksConfiguration": {
"configurationType": [
- 91
+ 90
],
"__typename": [
1
@@ -2585,7 +2565,7 @@ export default {
},
"TimelineConfiguration": {
"configurationType": [
- 91
+ 90
],
"__typename": [
1
@@ -2593,7 +2573,7 @@ export default {
},
"ViewConfiguration": {
"configurationType": [
- 91
+ 90
],
"__typename": [
1
@@ -2601,7 +2581,7 @@ export default {
},
"RecordTableConfiguration": {
"configurationType": [
- 91
+ 90
],
"viewId": [
1
@@ -2615,7 +2595,7 @@ export default {
},
"WorkflowConfiguration": {
"configurationType": [
- 91
+ 90
],
"__typename": [
1
@@ -2623,7 +2603,7 @@ export default {
},
"WorkflowRunConfiguration": {
"configurationType": [
- 91
+ 90
],
"__typename": [
1
@@ -2631,7 +2611,7 @@ export default {
},
"WorkflowVersionConfiguration": {
"configurationType": [
- 91
+ 90
],
"__typename": [
1
@@ -2654,13 +2634,13 @@ export default {
3
],
"widgets": [
- 82
+ 81
],
"icon": [
1
],
"layoutMode": [
- 86
+ 85
],
"createdAt": [
4
@@ -2689,13 +2669,13 @@ export default {
1
],
"type": [
- 122
+ 121
],
"objectMetadataId": [
3
],
"tabs": [
- 120
+ 119
],
"defaultTabToFocusOnMobileAndSidePanelId": [
3
@@ -2745,7 +2725,7 @@ export default {
1
],
"oauth": [
- 123
+ 122
],
"__typename": [
1
@@ -2864,7 +2844,7 @@ export default {
12
],
"items": [
- 130
+ 129
],
"__typename": [
1
@@ -2872,13 +2852,13 @@ export default {
},
"BillingProductMetadata": {
"planKey": [
- 133
+ 132
],
"priceUsageBased": [
- 134
+ 133
],
"productKey": [
- 135
+ 134
],
"__typename": [
1
@@ -2889,7 +2869,7 @@ export default {
"BillingProductKey": {},
"BillingPriceLicensed": {
"recurringInterval": [
- 137
+ 136
],
"unitAmount": [
12
@@ -2898,7 +2878,7 @@ export default {
1
],
"priceUsageType": [
- 134
+ 133
],
"creditAmount": [
12
@@ -2924,16 +2904,16 @@ export default {
},
"BillingPriceMetered": {
"tiers": [
- 138
+ 137
],
"recurringInterval": [
- 137
+ 136
],
"stripePriceId": [
1
],
"priceUsageType": [
- 134
+ 133
],
"__typename": [
1
@@ -2950,7 +2930,7 @@ export default {
1
],
"metadata": [
- 132
+ 131
],
"__typename": [
1
@@ -2967,10 +2947,10 @@ export default {
1
],
"metadata": [
- 132
+ 131
],
"prices": [
- 136
+ 135
],
"__typename": [
1
@@ -2987,10 +2967,10 @@ export default {
1
],
"metadata": [
- 132
+ 131
],
"prices": [
- 139
+ 138
],
"__typename": [
1
@@ -3032,13 +3012,13 @@ export default {
3
],
"status": [
- 146
+ 145
],
"interval": [
- 137
+ 136
],
"billingSubscriptionItems": [
- 143
+ 142
],
"currentPeriodEnd": [
4
@@ -3047,7 +3027,7 @@ export default {
7
],
"phases": [
- 131
+ 130
],
"cancelAt": [
4
@@ -3059,7 +3039,7 @@ export default {
"SubscriptionStatus": {},
"BillingEndTrialPeriod": {
"status": [
- 146
+ 145
],
"hasPaymentMethod": [
6
@@ -3073,7 +3053,7 @@ export default {
},
"BillingResourceCreditUsage": {
"productKey": [
- 135
+ 134
],
"periodStart": [
4
@@ -3102,16 +3082,16 @@ export default {
},
"BillingPlan": {
"planKey": [
- 133
+ 132
],
"baseProducts": [
- 141
+ 140
],
"resourceCreditProducts": [
- 141
+ 140
],
"meteredProducts": [
- 142
+ 141
],
"__typename": [
1
@@ -3138,10 +3118,10 @@ export default {
},
"BillingUpdate": {
"currentBillingSubscription": [
- 145
+ 144
],
"billingSubscriptions": [
- 145
+ 144
],
"__typename": [
1
@@ -3191,7 +3171,7 @@ export default {
1
],
"result": [
- 155
+ 154
],
"__typename": [
1
@@ -3228,7 +3208,7 @@ export default {
3
],
"type": [
- 159
+ 158
],
"name": [
1
@@ -3261,7 +3241,7 @@ export default {
4
],
"targetRecordIdentifier": [
- 157
+ 156
],
"__typename": [
1
@@ -3287,7 +3267,7 @@ export default {
},
"MetadataEvent": {
"type": [
- 162
+ 161
],
"metadataName": [
1
@@ -3296,7 +3276,7 @@ export default {
1
],
"properties": [
- 160
+ 159
],
"updatedCollectionHash": [
1
@@ -3308,7 +3288,7 @@ export default {
"MetadataEventAction": {},
"ObjectRecordEvent": {
"action": [
- 164
+ 163
],
"objectNameSingular": [
1
@@ -3323,7 +3303,7 @@ export default {
1
],
"properties": [
- 160
+ 159
],
"__typename": [
1
@@ -3335,7 +3315,7 @@ export default {
1
],
"objectRecordEvent": [
- 163
+ 162
],
"__typename": [
1
@@ -3346,10 +3326,10 @@ export default {
1
],
"objectRecordEventsWithQueryIds": [
- 165
+ 164
],
"metadataEvents": [
- 161
+ 160
],
"__typename": [
1
@@ -3366,7 +3346,7 @@ export default {
12
],
"status": [
- 168
+ 167
],
"error": [
7
@@ -3378,7 +3358,7 @@ export default {
"LogicFunctionExecutionStatus": {},
"FeatureFlag": {
"key": [
- 170
+ 169
],
"value": [
6
@@ -3456,7 +3436,7 @@ export default {
1
],
"versionDistribution": [
- 173
+ 172
],
"__typename": [
1
@@ -3481,10 +3461,10 @@ export default {
1
],
"type": [
- 177
+ 176
],
"status": [
- 178
+ 177
],
"issuer": [
1
@@ -3497,7 +3477,7 @@ export default {
"SSOIdentityProviderStatus": {},
"AuthProviders": {
"sso": [
- 176
+ 175
],
"google": [
6
@@ -3534,10 +3514,10 @@ export default {
3
],
"authProviders": [
- 179
+ 178
],
"authBypassProviders": [
- 180
+ 179
],
"logo": [
1
@@ -3546,7 +3526,7 @@ export default {
1
],
"workspaceUrls": [
- 171
+ 170
],
"__typename": [
1
@@ -3585,7 +3565,7 @@ export default {
1
],
"modelFamily": [
- 185
+ 184
],
"modelFamilyLabel": [
1
@@ -3600,7 +3580,7 @@ export default {
12
],
"nativeCapabilities": [
- 183
+ 182
],
"isDeprecated": [
6
@@ -3639,7 +3619,7 @@ export default {
1
],
"trialPeriods": [
- 175
+ 174
],
"__typename": [
1
@@ -3647,7 +3627,7 @@ export default {
},
"Support": {
"supportDriver": [
- 188
+ 187
],
"supportFrontChatId": [
1
@@ -3673,7 +3653,7 @@ export default {
},
"Captcha": {
"provider": [
- 191
+ 190
],
"siteKey": [
1
@@ -3707,10 +3687,10 @@ export default {
},
"PublicFeatureFlag": {
"key": [
- 170
+ 169
],
"metadata": [
- 193
+ 192
],
"__typename": [
1
@@ -3735,13 +3715,13 @@ export default {
1
],
"authProviders": [
- 179
+ 178
],
"billing": [
- 186
+ 185
],
"aiModels": [
- 184
+ 183
],
"signInPrefilled": [
6
@@ -3765,25 +3745,25 @@ export default {
6
],
"support": [
- 187
+ 186
],
"isAttachmentPreviewEnabled": [
6
],
"sentry": [
- 189
+ 188
],
"captcha": [
- 190
+ 189
],
"api": [
- 192
+ 191
],
"canManageFeatureFlags": [
6
],
"publicFeatureFlags": [
- 194
+ 193
],
"isMicrosoftMessagingEnabled": [
6
@@ -3825,7 +3805,7 @@ export default {
1
],
"maintenance": [
- 195
+ 194
],
"__typename": [
1
@@ -3886,7 +3866,7 @@ export default {
},
"Relation": {
"type": [
- 202
+ 201
],
"sourceObjectMetadata": [
52
@@ -3958,10 +3938,10 @@ export default {
},
"IndexConnection": {
"pageInfo": [
- 205
+ 204
],
"edges": [
- 204
+ 203
],
"__typename": [
1
@@ -3980,10 +3960,10 @@ export default {
},
"IndexObjectMetadataConnection": {
"pageInfo": [
- 205
+ 204
],
"edges": [
- 207
+ 206
],
"__typename": [
1
@@ -4025,10 +4005,10 @@ export default {
},
"ObjectConnection": {
"pageInfo": [
- 205
+ 204
],
"edges": [
- 207
+ 206
],
"__typename": [
1
@@ -4036,10 +4016,10 @@ export default {
},
"ObjectIndexMetadatasConnection": {
"pageInfo": [
- 205
+ 204
],
"edges": [
- 204
+ 203
],
"__typename": [
1
@@ -4058,10 +4038,10 @@ export default {
},
"ObjectFieldsConnection": {
"pageInfo": [
- 205
+ 204
],
"edges": [
- 213
+ 212
],
"__typename": [
1
@@ -4069,10 +4049,10 @@ export default {
},
"FieldConnection": {
"pageInfo": [
- 205
+ 204
],
"edges": [
- 213
+ 212
],
"__typename": [
1
@@ -4080,7 +4060,7 @@ export default {
},
"AppConnection": {
"id": [
- 217
+ 216
],
"providerName": [
1
@@ -4132,7 +4112,7 @@ export default {
3
],
"type": [
- 177
+ 176
],
"issuer": [
1
@@ -4141,7 +4121,7 @@ export default {
1
],
"status": [
- 178
+ 177
],
"__typename": [
1
@@ -4160,7 +4140,7 @@ export default {
},
"FindAvailableSSOIDP": {
"type": [
- 177
+ 176
],
"id": [
3
@@ -4172,10 +4152,10 @@ export default {
1
],
"status": [
- 178
+ 177
],
"workspace": [
- 221
+ 220
],
"__typename": [
1
@@ -4186,7 +4166,7 @@ export default {
3
],
"type": [
- 177
+ 176
],
"issuer": [
1
@@ -4195,7 +4175,7 @@ export default {
1
],
"status": [
- 178
+ 177
],
"__typename": [
1
@@ -4203,7 +4183,7 @@ export default {
},
"SSOConnection": {
"type": [
- 177
+ 176
],
"id": [
3
@@ -4215,7 +4195,7 @@ export default {
1
],
"status": [
- 178
+ 177
],
"__typename": [
1
@@ -4238,13 +4218,13 @@ export default {
1
],
"workspaceUrls": [
- 171
+ 170
],
"logo": [
1
],
"sso": [
- 224
+ 223
],
"__typename": [
1
@@ -4252,10 +4232,10 @@ export default {
},
"AvailableWorkspaces": {
"availableWorkspacesForSignIn": [
- 225
+ 224
],
"availableWorkspacesForSignUp": [
- 225
+ 224
],
"__typename": [
1
@@ -4388,10 +4368,10 @@ export default {
1
],
"objectPermissions": [
- 229
+ 228
],
"fieldPermissions": [
- 230
+ 229
],
"__typename": [
1
@@ -4459,7 +4439,7 @@ export default {
1
],
"roles": [
- 231
+ 230
],
"manifest": [
7
@@ -4470,7 +4450,7 @@ export default {
},
"BillingEntitlement": {
"key": [
- 234
+ 233
],
"value": [
6
@@ -4508,7 +4488,7 @@ export default {
1
],
"records": [
- 235
+ 234
],
"isCustomDomainEnabled": [
6
@@ -4547,7 +4527,7 @@ export default {
1
],
"connectionSecurity": [
- 240
+ 239
],
"__typename": [
1
@@ -4556,13 +4536,13 @@ export default {
"EmailConnectionSecurity": {},
"PublicImapSmtpCaldavConnectionParameters": {
"IMAP": [
- 239
+ 238
],
"SMTP": [
- 239
+ 238
],
"CALDAV": [
- 239
+ 238
],
"__typename": [
1
@@ -4618,7 +4598,7 @@ export default {
4
],
"connectionParameters": [
- 241
+ 240
],
"__typename": [
1
@@ -4669,10 +4649,10 @@ export default {
},
"AvailableWorkspacesAndAccessTokens": {
"tokens": [
- 247
+ 246
],
"availableWorkspaces": [
- 226
+ 225
],
"__typename": [
1
@@ -4710,7 +4690,7 @@ export default {
},
"WorkspaceUrlsAndId": {
"workspaceUrls": [
- 171
+ 170
],
"id": [
3
@@ -4724,7 +4704,7 @@ export default {
32
],
"workspace": [
- 252
+ 251
],
"__typename": [
1
@@ -4757,7 +4737,7 @@ export default {
32
],
"workspaceUrls": [
- 171
+ 170
],
"__typename": [
1
@@ -4801,7 +4781,7 @@ export default {
},
"AuthTokens": {
"tokens": [
- 247
+ 246
],
"__typename": [
1
@@ -4842,7 +4822,7 @@ export default {
32
],
"workspace": [
- 252
+ 251
],
"__typename": [
1
@@ -4864,7 +4844,7 @@ export default {
1
],
"dailyUsage": [
- 265
+ 264
],
"__typename": [
1
@@ -4872,16 +4852,16 @@ export default {
},
"UsageAnalytics": {
"usageByUser": [
- 197
+ 196
],
"usageByOperationType": [
- 197
+ 196
],
"usageByModel": [
- 197
+ 196
],
"timeSeries": [
- 265
+ 264
],
"periodStart": [
4
@@ -4890,7 +4870,7 @@ export default {
4
],
"userDailyUsage": [
- 266
+ 265
],
"__typename": [
1
@@ -4986,10 +4966,10 @@ export default {
1
],
"status": [
- 274
+ 273
],
"verificationRecords": [
- 272
+ 271
],
"verifiedAt": [
4
@@ -5004,22 +4984,22 @@ export default {
3
],
"visibility": [
- 276
+ 275
],
"handle": [
1
],
"type": [
- 277
+ 276
],
"isContactAutoCreationEnabled": [
6
],
"contactAutoCreationPolicy": [
- 278
+ 277
],
"messageFolderImportPolicy": [
- 279
+ 278
],
"excludeNonProfessionalEmails": [
6
@@ -5028,7 +5008,7 @@ export default {
6
],
"pendingGroupEmailsAction": [
- 280
+ 279
],
"isSyncEnabled": [
6
@@ -5037,10 +5017,10 @@ export default {
4
],
"syncStatus": [
- 281
+ 280
],
"syncStage": [
- 282
+ 281
],
"syncStageStartedAt": [
4
@@ -5061,7 +5041,7 @@ export default {
4
],
"connectedAccount": [
- 242
+ 241
],
"__typename": [
1
@@ -5076,7 +5056,7 @@ export default {
"MessageChannelSyncStage": {},
"CreateEmailGroupChannelOutput": {
"messageChannel": [
- 275
+ 274
],
"forwardingAddress": [
1
@@ -5138,7 +5118,7 @@ export default {
21
],
"skipped": [
- 286
+ 285
],
"__typename": [
1
@@ -5161,7 +5141,7 @@ export default {
1
],
"visibility": [
- 289
+ 288
],
"__typename": [
1
@@ -5207,7 +5187,7 @@ export default {
1
],
"location": [
- 291
+ 290
],
"__typename": [
1
@@ -5224,7 +5204,7 @@ export default {
1
],
"connectionSecurity": [
- 240
+ 239
],
"__typename": [
1
@@ -5235,13 +5215,13 @@ export default {
1
],
"IMAP": [
- 293
+ 292
],
"SMTP": [
- 293
+ 292
],
"CALDAV": [
- 293
+ 292
],
"__typename": [
1
@@ -5261,7 +5241,7 @@ export default {
3
],
"connectionParameters": [
- 294
+ 293
],
"__typename": [
1
@@ -5483,7 +5463,7 @@ export default {
1
],
"series": [
- 303
+ 302
],
"xAxisLabel": [
1
@@ -5498,10 +5478,10 @@ export default {
6
],
"layout": [
- 102
+ 101
],
"groupMode": [
- 101
+ 100
],
"hasTooManyGroups": [
6
@@ -5532,7 +5512,7 @@ export default {
1
],
"data": [
- 305
+ 304
],
"__typename": [
1
@@ -5540,7 +5520,7 @@ export default {
},
"LineChartData": {
"series": [
- 306
+ 305
],
"xAxisLabel": [
1
@@ -5577,7 +5557,7 @@ export default {
},
"PieChartData": {
"data": [
- 308
+ 307
],
"showLegend": [
6
@@ -5682,13 +5662,13 @@ export default {
},
"EventLogQueryResult": {
"records": [
- 313
+ 312
],
"totalCount": [
21
],
"pageInfo": [
- 314
+ 313
],
"__typename": [
1
@@ -5752,7 +5732,7 @@ export default {
1
],
"parts": [
- 299
+ 298
],
"processedAt": [
4
@@ -5766,7 +5746,7 @@ export default {
},
"AgentChatThread": {
"id": [
- 217
+ 216
],
"title": [
1
@@ -5821,7 +5801,7 @@ export default {
},
"AiSystemPromptPreview": {
"sections": [
- 319
+ 318
],
"estimatedTokenCount": [
21
@@ -5849,7 +5829,7 @@ export default {
21
],
"error": [
- 321
+ 320
],
"__typename": [
1
@@ -5911,10 +5891,10 @@ export default {
3
],
"evaluations": [
- 325
+ 324
],
"messages": [
- 317
+ 316
],
"createdAt": [
4
@@ -5945,19 +5925,19 @@ export default {
1
],
"syncStatus": [
- 329
+ 328
],
"syncStage": [
- 330
+ 329
],
"visibility": [
- 331
+ 330
],
"isContactAutoCreationEnabled": [
6
],
"contactAutoCreationPolicy": [
- 332
+ 331
],
"isSyncEnabled": [
6
@@ -6008,7 +5988,7 @@ export default {
1
],
"pendingSyncAction": [
- 334
+ 333
],
"messageChannelId": [
3
@@ -6026,7 +6006,7 @@ export default {
"MessageFolderPendingSyncAction": {},
"CollectionHash": {
"collectionName": [
- 336
+ 335
],
"hash": [
1
@@ -6090,13 +6070,13 @@ export default {
},
"MinimalMetadata": {
"objectMetadataItems": [
- 337
+ 336
],
"views": [
- 338
+ 337
],
"collectionHashes": [
- 335
+ 334
],
"__typename": [
1
@@ -6104,10 +6084,10 @@ export default {
},
"Query": {
"navigationMenuItems": [
- 158
+ 157
],
"navigationMenuItem": [
- 158,
+ 157,
{
"id": [
3,
@@ -6132,7 +6112,7 @@ export default {
}
],
"enterpriseSubscriptionStatus": [
- 126
+ 125
],
"getViewFilterGroups": [
58,
@@ -6249,16 +6229,16 @@ export default {
2,
{
"input": [
- 341,
+ 340,
"GetApiKeyInput!"
]
}
],
"getInviteSuggestions": [
- 153
+ 152
],
"applicationConnectionProviders": [
- 124,
+ 123,
{
"applicationId": [
3,
@@ -6267,7 +6247,7 @@ export default {
}
],
"billingPortalSession": [
- 151,
+ 150,
{
"returnUrlPath": [
1
@@ -6278,19 +6258,19 @@ export default {
}
],
"listPlans": [
- 149
- ],
- "getResourceCreditUsage": [
148
],
+ "getResourceCreditUsage": [
+ 147
+ ],
"findWorkspaceInvitations": [
- 155
+ 154
],
"getApprovedAccessDomains": [
- 127
+ 126
],
"getPageLayoutTabs": [
- 120,
+ 119,
{
"pageLayoutId": [
1,
@@ -6299,7 +6279,7 @@ export default {
}
],
"getPageLayoutTab": [
- 120,
+ 119,
{
"id": [
1,
@@ -6308,18 +6288,18 @@ export default {
}
],
"getPageLayouts": [
- 121,
+ 120,
{
"objectMetadataId": [
1
],
"pageLayoutType": [
- 122
+ 121
]
}
],
"getPageLayout": [
- 121,
+ 120,
{
"id": [
1,
@@ -6328,7 +6308,7 @@ export default {
}
],
"getPageLayoutWidgets": [
- 82,
+ 81,
{
"pageLayoutTabId": [
1,
@@ -6337,7 +6317,7 @@ export default {
}
],
"getPageLayoutWidget": [
- 82,
+ 81,
{
"id": [
1,
@@ -6352,13 +6332,13 @@ export default {
25,
{
"input": [
- 342,
+ 341,
"AgentIdInput!"
]
}
],
"objectRecordCounts": [
- 209
+ 208
],
"object": [
52,
@@ -6370,7 +6350,7 @@ export default {
}
],
"objects": [
- 211,
+ 210,
{
"paging": [
47,
@@ -6392,7 +6372,7 @@ export default {
}
],
"indexMetadatas": [
- 206,
+ 205,
{
"paging": [
47,
@@ -6408,7 +6388,7 @@ export default {
41,
{
"input": [
- 343,
+ 342,
"LogicFunctionIdInput!"
]
}
@@ -6420,7 +6400,7 @@ export default {
7,
{
"input": [
- 343,
+ 342,
"LogicFunctionIdInput!"
]
}
@@ -6429,7 +6409,7 @@ export default {
1,
{
"input": [
- 343,
+ 342,
"LogicFunctionIdInput!"
]
}
@@ -6462,7 +6442,7 @@ export default {
72
],
"getPublicWorkspaceDataByDomain": [
- 181,
+ 180,
{
"origin": [
1
@@ -6470,7 +6450,7 @@ export default {
}
],
"getPublicWorkspaceDataById": [
- 182,
+ 181,
{
"id": [
3,
@@ -6488,7 +6468,7 @@ export default {
}
],
"fields": [
- 215,
+ 214,
{
"paging": [
47,
@@ -6532,7 +6512,7 @@ export default {
}
],
"findManyMarketplaceApps": [
- 228,
+ 227,
{
"universalIdentifiers": [
1,
@@ -6541,7 +6521,7 @@ export default {
}
],
"findMarketplaceAppDetail": [
- 232,
+ 231,
{
"universalIdentifier": [
1,
@@ -6550,7 +6530,7 @@ export default {
}
],
"publicMarketplaceApps": [
- 228,
+ 227,
{
"isVetted": [
6,
@@ -6559,7 +6539,7 @@ export default {
}
],
"publicMarketplaceAppDetail": [
- 232,
+ 231,
{
"universalIdentifier": [
1,
@@ -6568,7 +6548,7 @@ export default {
}
],
"findApplicationRegistrationByClientId": [
- 199,
+ 198,
{
"clientId": [
1,
@@ -6598,7 +6578,7 @@ export default {
}
],
"findApplicationRegistrationStats": [
- 174,
+ 173,
{
"id": [
1,
@@ -6607,7 +6587,7 @@ export default {
}
],
"findApplicationRegistrationVariables": [
- 172,
+ 171,
{
"applicationRegistrationId": [
1,
@@ -6628,22 +6608,22 @@ export default {
29
],
"previewMessageCampaignAudience": [
- 284,
+ 283,
{
"input": [
- 344,
+ 343,
"PreviewMessageCampaignAudienceInput!"
]
}
],
"unsubscribeTopics": [
- 288
+ 287
],
"unsubscribePagePreviewUrl": [
1
],
"myMessageChannels": [
- 275,
+ 274,
{
"connectedAccountId": [
3
@@ -6651,13 +6631,13 @@ export default {
}
],
"getEmailingDomains": [
- 273
+ 272
],
"myConnectedAccounts": [
- 242
+ 241
],
"getToolIndex": [
- 298
+ 297
],
"getToolInputSchema": [
7,
@@ -6669,10 +6649,10 @@ export default {
}
],
"webhooks": [
- 297
+ 296
],
"webhook": [
- 297,
+ 296,
{
"id": [
3,
@@ -6681,7 +6661,7 @@ export default {
}
],
"myMessageFolders": [
- 333,
+ 332,
{
"messageChannelId": [
3
@@ -6689,7 +6669,7 @@ export default {
}
],
"myCalendarChannels": [
- 328,
+ 327,
{
"connectedAccountId": [
3
@@ -6697,33 +6677,33 @@ export default {
}
],
"minimalMetadata": [
- 339
+ 338
],
"appConnections": [
- 216,
+ 215,
{
"filter": [
- 345
+ 344
]
}
],
"appConnection": [
- 216,
+ 215,
{
"id": [
- 217,
+ 216,
"ID!"
]
}
],
"findWorkspaceAiStats": [
- 327
+ 326
],
"chatThreads": [
- 318
+ 317
],
"chatThread": [
- 318,
+ 317,
{
"id": [
3,
@@ -6732,7 +6712,7 @@ export default {
}
],
"chatMessages": [
- 317,
+ 316,
{
"threadId": [
3,
@@ -6741,7 +6721,7 @@ export default {
}
],
"chatStreamCatchupChunks": [
- 322,
+ 321,
{
"threadId": [
3,
@@ -6750,13 +6730,13 @@ export default {
}
],
"getAiSystemPromptPreview": [
- 320
+ 319
],
"skills": [
- 316
+ 315
],
"skill": [
- 316,
+ 315,
{
"id": [
3,
@@ -6765,7 +6745,7 @@ export default {
}
],
"agentTurns": [
- 326,
+ 325,
{
"agentId": [
3,
@@ -6774,7 +6754,7 @@ export default {
}
],
"checkUserExists": [
- 262,
+ 261,
{
"email": [
1,
@@ -6786,7 +6766,7 @@ export default {
}
],
"checkWorkspaceInviteHashIsValid": [
- 263,
+ 262,
{
"inviteHash": [
1,
@@ -6804,7 +6784,7 @@ export default {
}
],
"checkWorkspaceSubdomainAvailability": [
- 257,
+ 256,
{
"subdomain": [
1,
@@ -6813,10 +6793,10 @@ export default {
}
],
"getWorkspaceCreationDefaults": [
- 258
+ 257
],
"validatePasswordResetToken": [
- 255,
+ 254,
{
"passwordResetToken": [
1,
@@ -6825,49 +6805,49 @@ export default {
}
],
"currentUser": [
- 76
+ 75
],
"getSSOIdentityProviders": [
- 222
+ 221
],
"eventLogs": [
- 315,
+ 314,
{
"input": [
- 346,
+ 345,
"EventLogQueryInput!"
]
}
],
"pieChartData": [
- 309,
+ 308,
{
"input": [
- 350,
+ 349,
"PieChartDataInput!"
]
}
],
"lineChartData": [
- 307,
+ 306,
{
"input": [
- 351,
+ 350,
"LineChartDataInput!"
]
}
],
"barChartData": [
- 304,
+ 303,
{
"input": [
- 352,
+ 351,
"BarChartDataInput!"
]
}
],
"getConnectedImapSmtpCaldavAccount": [
- 295,
+ 294,
{
"id": [
3,
@@ -6876,7 +6856,7 @@ export default {
}
],
"getAutoCompleteAddress": [
- 290,
+ 289,
{
"address": [
1,
@@ -6895,7 +6875,7 @@ export default {
}
],
"getAddressDetails": [
- 292,
+ 291,
{
"placeId": [
1,
@@ -6908,15 +6888,15 @@ export default {
}
],
"getUsageAnalytics": [
- 267,
+ 266,
{
"input": [
- 353
+ 352
]
}
],
"findManyPublicDomains": [
- 271
+ 270
],
"__typename": [
1
@@ -6940,7 +6920,7 @@ export default {
},
"LogicFunctionIdInput": {
"id": [
- 217
+ 216
],
"__typename": [
1
@@ -6973,10 +6953,10 @@ export default {
},
"EventLogQueryInput": {
"table": [
- 347
+ 346
],
"filters": [
- 348
+ 347
],
"first": [
21
@@ -6997,7 +6977,7 @@ export default {
1
],
"dateRange": [
- 349
+ 348
],
"recordId": [
1
@@ -7064,7 +7044,7 @@ export default {
1
],
"operationTypes": [
- 354
+ 353
],
"__typename": [
1
@@ -7076,7 +7056,7 @@ export default {
6,
{
"input": [
- 356,
+ 355,
"AddQuerySubscriptionInput!"
]
}
@@ -7085,49 +7065,49 @@ export default {
6,
{
"input": [
- 357,
+ 356,
"RemoveQueryFromEventStreamInput!"
]
}
],
"createManyNavigationMenuItems": [
- 158,
+ 157,
{
"inputs": [
- 358,
+ 357,
"[CreateNavigationMenuItemInput!]!"
]
}
],
"createNavigationMenuItem": [
- 158,
+ 157,
{
"input": [
- 358,
+ 357,
"CreateNavigationMenuItemInput!"
]
}
],
"updateManyNavigationMenuItems": [
- 158,
+ 157,
{
"inputs": [
- 359,
+ 358,
"[UpdateOneNavigationMenuItemInput!]!"
]
}
],
"updateNavigationMenuItem": [
- 158,
+ 157,
{
"input": [
- 359,
+ 358,
"UpdateOneNavigationMenuItemInput!"
]
}
],
"deleteManyNavigationMenuItems": [
- 158,
+ 157,
{
"ids": [
3,
@@ -7136,7 +7116,7 @@ export default {
}
],
"deleteNavigationMenuItem": [
- 158,
+ 157,
{
"id": [
3,
@@ -7145,7 +7125,7 @@ export default {
}
],
"createFileUpload": [
- 129,
+ 128,
{
"filename": [
1,
@@ -7156,7 +7136,7 @@ export default {
"Float!"
],
"fileFolder": [
- 361,
+ 360,
"FileFolder!"
],
"fieldMetadataId": [
@@ -7168,7 +7148,7 @@ export default {
}
],
"completeFileUpload": [
- 128,
+ 127,
{
"fileId": [
1,
@@ -7180,10 +7160,10 @@ export default {
6
],
"releaseEnterpriseServerBinding": [
- 125
+ 124
],
"setEnterpriseKey": [
- 125,
+ 124,
{
"enterpriseKey": [
1,
@@ -7192,55 +7172,55 @@ export default {
}
],
"uploadEmailAttachmentFile": [
- 128,
+ 127,
{
"file": [
- 362,
+ 361,
"Upload!"
]
}
],
"uploadAiChatFile": [
- 128,
+ 127,
{
"file": [
- 362,
+ 361,
"Upload!"
]
}
],
"uploadWorkflowFile": [
- 128,
+ 127,
{
"file": [
- 362,
+ 361,
"Upload!"
]
}
],
"uploadWorkspaceLogo": [
- 128,
+ 127,
{
"file": [
- 362,
+ 361,
"Upload!"
]
}
],
"uploadWorkspaceMemberProfilePicture": [
- 128,
+ 127,
{
"file": [
- 362,
+ 361,
"Upload!"
]
}
],
"uploadFilesFieldFile": [
- 128,
+ 127,
{
"file": [
- 362,
+ 361,
"Upload!"
],
"fieldMetadataId": [
@@ -7250,10 +7230,10 @@ export default {
}
],
"uploadFilesFieldFileByUniversalIdentifier": [
- 128,
+ 127,
{
"file": [
- 362,
+ 361,
"Upload!"
],
"fieldMetadataUniversalIdentifier": [
@@ -7266,7 +7246,7 @@ export default {
58,
{
"input": [
- 363,
+ 362,
"CreateViewFilterGroupInput!"
]
}
@@ -7279,7 +7259,7 @@ export default {
"String!"
],
"input": [
- 364,
+ 363,
"UpdateViewFilterGroupInput!"
]
}
@@ -7306,7 +7286,7 @@ export default {
60,
{
"input": [
- 365,
+ 364,
"CreateViewFilterInput!"
]
}
@@ -7315,7 +7295,7 @@ export default {
60,
{
"input": [
- 366,
+ 365,
"UpdateViewFilterInput!"
]
}
@@ -7324,7 +7304,7 @@ export default {
60,
{
"input": [
- 368,
+ 367,
"DeleteViewFilterInput!"
]
}
@@ -7333,7 +7313,7 @@ export default {
60,
{
"input": [
- 369,
+ 368,
"DestroyViewFilterInput!"
]
}
@@ -7342,7 +7322,7 @@ export default {
66,
{
"input": [
- 370,
+ 369,
"CreateViewInput!"
]
}
@@ -7355,7 +7335,7 @@ export default {
"String!"
],
"input": [
- 371,
+ 370,
"UpdateViewInput!"
]
}
@@ -7382,7 +7362,7 @@ export default {
66,
{
"input": [
- 372,
+ 371,
"UpsertViewWidgetInput!"
]
}
@@ -7391,7 +7371,7 @@ export default {
63,
{
"input": [
- 377,
+ 376,
"CreateViewSortInput!"
]
}
@@ -7400,7 +7380,7 @@ export default {
63,
{
"input": [
- 378,
+ 377,
"UpdateViewSortInput!"
]
}
@@ -7409,7 +7389,7 @@ export default {
6,
{
"input": [
- 380,
+ 379,
"DeleteViewSortInput!"
]
}
@@ -7418,7 +7398,7 @@ export default {
6,
{
"input": [
- 381,
+ 380,
"DestroyViewSortInput!"
]
}
@@ -7427,7 +7407,7 @@ export default {
56,
{
"input": [
- 382,
+ 381,
"UpdateViewFieldInput!"
]
}
@@ -7436,7 +7416,7 @@ export default {
56,
{
"input": [
- 384,
+ 383,
"CreateViewFieldInput!"
]
}
@@ -7445,7 +7425,7 @@ export default {
56,
{
"inputs": [
- 384,
+ 383,
"[CreateViewFieldInput!]!"
]
}
@@ -7454,7 +7434,7 @@ export default {
56,
{
"input": [
- 385,
+ 384,
"DeleteViewFieldInput!"
]
}
@@ -7463,7 +7443,7 @@ export default {
56,
{
"input": [
- 386,
+ 385,
"DestroyViewFieldInput!"
]
}
@@ -7472,7 +7452,7 @@ export default {
65,
{
"input": [
- 387,
+ 386,
"UpdateViewFieldGroupInput!"
]
}
@@ -7481,7 +7461,7 @@ export default {
65,
{
"input": [
- 389,
+ 388,
"CreateViewFieldGroupInput!"
]
}
@@ -7490,7 +7470,7 @@ export default {
65,
{
"inputs": [
- 389,
+ 388,
"[CreateViewFieldGroupInput!]!"
]
}
@@ -7499,7 +7479,7 @@ export default {
65,
{
"input": [
- 390,
+ 389,
"DeleteViewFieldGroupInput!"
]
}
@@ -7508,7 +7488,7 @@ export default {
65,
{
"input": [
- 391,
+ 390,
"DestroyViewFieldGroupInput!"
]
}
@@ -7517,7 +7497,7 @@ export default {
66,
{
"input": [
- 392,
+ 391,
"UpsertFieldsWidgetInput!"
]
}
@@ -7526,7 +7506,7 @@ export default {
2,
{
"input": [
- 395,
+ 394,
"CreateApiKeyInput!"
]
}
@@ -7535,7 +7515,7 @@ export default {
2,
{
"input": [
- 396,
+ 395,
"UpdateApiKeyInput!"
]
}
@@ -7544,7 +7524,7 @@ export default {
2,
{
"input": [
- 397,
+ 396,
"RevokeApiKeyInput!"
]
}
@@ -7563,10 +7543,10 @@ export default {
}
],
"skipSyncEmailOnboardingStep": [
- 154
+ 153
],
"triggerInstallAppsOnboardingStep": [
- 154,
+ 153,
{
"universalIdentifiers": [
1,
@@ -7592,14 +7572,14 @@ export default {
}
],
"checkoutSession": [
- 151,
+ 150,
{
"recurringInterval": [
- 137,
+ 136,
"SubscriptionInterval!"
],
"plan": [
- 133,
+ 132,
"BillingPlanKey!"
],
"requirePaymentMethod": [
@@ -7612,14 +7592,14 @@ export default {
}
],
"createSubscriptionPaymentIntent": [
- 150,
+ 149,
{
"recurringInterval": [
- 137,
+ 136,
"SubscriptionInterval!"
],
"plan": [
- 133,
+ 132,
"BillingPlanKey!"
],
"requirePaymentMethod": [
@@ -7636,22 +7616,22 @@ export default {
}
],
"createBillingPaymentMethodSetupIntent": [
- 150
+ 149
],
"switchSubscriptionInterval": [
- 152
+ 151
],
"switchBillingPlan": [
- 152
+ 151
],
"cancelSwitchBillingPlan": [
- 152
+ 151
],
"cancelSwitchBillingInterval": [
- 152
+ 151
],
"setResourceCreditSubscriptionPrice": [
- 152,
+ 151,
{
"priceId": [
1,
@@ -7660,10 +7640,10 @@ export default {
}
],
"endSubscriptionTrialPeriod": [
- 147
+ 146
],
"cancelSwitchResourceCreditPrice": [
- 152
+ 151
],
"deleteWorkspaceInvitation": [
1,
@@ -7675,7 +7655,7 @@ export default {
}
],
"resendWorkspaceInvitation": [
- 156,
+ 155,
{
"appTokenId": [
1,
@@ -7684,7 +7664,7 @@ export default {
}
],
"sendInvitations": [
- 156,
+ 155,
{
"emails": [
1,
@@ -7696,10 +7676,10 @@ export default {
}
],
"createApprovedAccessDomain": [
- 127,
+ 126,
{
"input": [
- 398,
+ 397,
"CreateApprovedAccessDomainInput!"
]
}
@@ -7708,38 +7688,38 @@ export default {
6,
{
"input": [
- 399,
+ 398,
"DeleteApprovedAccessDomainInput!"
]
}
],
"validateApprovedAccessDomain": [
- 127,
+ 126,
{
"input": [
- 400,
+ 399,
"ValidateApprovedAccessDomainInput!"
]
}
],
"createPageLayoutTab": [
- 120,
+ 119,
{
"input": [
- 401,
+ 400,
"CreatePageLayoutTabInput!"
]
}
],
"updatePageLayoutTab": [
- 120,
+ 119,
{
"id": [
1,
"String!"
],
"input": [
- 402,
+ 401,
"UpdatePageLayoutTabInput!"
]
}
@@ -7754,23 +7734,23 @@ export default {
}
],
"createPageLayout": [
- 121,
+ 120,
{
"input": [
- 403,
+ 402,
"CreatePageLayoutInput!"
]
}
],
"updatePageLayout": [
- 121,
+ 120,
{
"id": [
1,
"String!"
],
"input": [
- 404,
+ 403,
"UpdatePageLayoutInput!"
]
}
@@ -7785,37 +7765,19 @@ export default {
}
],
"updatePageLayoutWithTabsAndWidgets": [
- 121,
+ 120,
{
"id": [
1,
"String!"
],
"input": [
- 405,
+ 404,
"UpdatePageLayoutWithTabsInput!"
]
}
],
"resetPageLayoutToDefault": [
- 121,
- {
- "id": [
- 1,
- "String!"
- ]
- }
- ],
- "resetPageLayoutWidgetToDefault": [
- 82,
- {
- "id": [
- 1,
- "String!"
- ]
- }
- ],
- "resetPageLayoutTabToDefault": [
120,
{
"id": [
@@ -7824,24 +7786,42 @@ export default {
]
}
],
+ "resetPageLayoutWidgetToDefault": [
+ 81,
+ {
+ "id": [
+ 1,
+ "String!"
+ ]
+ }
+ ],
+ "resetPageLayoutTabToDefault": [
+ 119,
+ {
+ "id": [
+ 1,
+ "String!"
+ ]
+ }
+ ],
"createPageLayoutWidget": [
- 82,
+ 81,
{
"input": [
- 409,
+ 408,
"CreatePageLayoutWidgetInput!"
]
}
],
"updatePageLayoutWidget": [
- 82,
+ 81,
{
"id": [
1,
"String!"
],
"input": [
- 410,
+ 409,
"UpdatePageLayoutWidgetInput!"
]
}
@@ -7859,7 +7839,7 @@ export default {
25,
{
"input": [
- 411,
+ 410,
"CreateAgentInput!"
]
}
@@ -7868,7 +7848,7 @@ export default {
25,
{
"input": [
- 412,
+ 411,
"UpdateAgentInput!"
]
}
@@ -7877,7 +7857,7 @@ export default {
25,
{
"input": [
- 342,
+ 341,
"AgentIdInput!"
]
}
@@ -7886,7 +7866,7 @@ export default {
52,
{
"input": [
- 413,
+ 412,
"CreateOneObjectInput!"
]
}
@@ -7895,7 +7875,7 @@ export default {
52,
{
"input": [
- 415,
+ 414,
"DeleteOneObjectInput!"
]
}
@@ -7904,7 +7884,7 @@ export default {
52,
{
"input": [
- 416,
+ 415,
"UpdateOneObjectInput!"
]
}
@@ -7913,7 +7893,7 @@ export default {
45,
{
"input": [
- 418,
+ 417,
"CreateOneIndexInput!"
]
}
@@ -7922,7 +7902,7 @@ export default {
45,
{
"input": [
- 421,
+ 420,
"DeleteOneIndexInput!"
]
}
@@ -7931,7 +7911,7 @@ export default {
41,
{
"input": [
- 343,
+ 342,
"LogicFunctionIdInput!"
]
}
@@ -7940,16 +7920,16 @@ export default {
41,
{
"input": [
- 422,
+ 421,
"CreateLogicFunctionFromSourceInput!"
]
}
],
"executeOneLogicFunction": [
- 167,
+ 166,
{
"input": [
- 423,
+ 422,
"ExecuteOneLogicFunctionInput!"
]
}
@@ -7958,7 +7938,7 @@ export default {
6,
{
"input": [
- 424,
+ 423,
"UpdateLogicFunctionFromSourceInput!"
]
}
@@ -7967,7 +7947,7 @@ export default {
35,
{
"input": [
- 426,
+ 425,
"CreateCommandMenuItemInput!"
]
}
@@ -7976,7 +7956,7 @@ export default {
35,
{
"input": [
- 427,
+ 426,
"UpdateCommandMenuItemInput!"
]
}
@@ -8003,7 +7983,7 @@ export default {
34,
{
"input": [
- 428,
+ 427,
"CreateFrontComponentInput!"
]
}
@@ -8012,7 +7992,7 @@ export default {
34,
{
"input": [
- 429,
+ 428,
"UpdateFrontComponentInput!"
]
}
@@ -8030,7 +8010,7 @@ export default {
72,
{
"data": [
- 431,
+ 430,
"ActivateWorkspaceInput!"
]
}
@@ -8039,7 +8019,7 @@ export default {
72,
{
"data": [
- 432,
+ 431,
"UpdateWorkspaceInput!"
]
}
@@ -8048,13 +8028,13 @@ export default {
72
],
"checkCustomDomainValidRecords": [
- 236
+ 235
],
"createOneField": [
43,
{
"input": [
- 433,
+ 432,
"CreateOneFieldMetadataInput!"
]
}
@@ -8063,7 +8043,7 @@ export default {
43,
{
"input": [
- 435,
+ 434,
"UpdateOneFieldMetadataInput!"
]
}
@@ -8072,7 +8052,7 @@ export default {
43,
{
"input": [
- 437,
+ 436,
"DeleteOneFieldInput!"
]
}
@@ -8081,7 +8061,7 @@ export default {
62,
{
"input": [
- 438,
+ 437,
"CreateViewGroupInput!"
]
}
@@ -8090,7 +8070,7 @@ export default {
62,
{
"inputs": [
- 438,
+ 437,
"[CreateViewGroupInput!]!"
]
}
@@ -8099,7 +8079,7 @@ export default {
62,
{
"input": [
- 439,
+ 438,
"UpdateViewGroupInput!"
]
}
@@ -8108,7 +8088,7 @@ export default {
62,
{
"inputs": [
- 439,
+ 438,
"[UpdateViewGroupInput!]!"
]
}
@@ -8117,7 +8097,7 @@ export default {
62,
{
"input": [
- 441,
+ 440,
"DeleteViewGroupInput!"
]
}
@@ -8126,7 +8106,7 @@ export default {
62,
{
"input": [
- 442,
+ 441,
"DestroyViewGroupInput!"
]
}
@@ -8168,10 +8148,10 @@ export default {
6
],
"createApplicationRegistration": [
- 198,
+ 197,
{
"input": [
- 443,
+ 442,
"CreateApplicationRegistrationInput!"
]
}
@@ -8180,7 +8160,7 @@ export default {
8,
{
"input": [
- 444,
+ 443,
"UpdateApplicationRegistrationInput!"
]
}
@@ -8195,7 +8175,7 @@ export default {
}
],
"rotateApplicationRegistrationClientSecret": [
- 200,
+ 199,
{
"id": [
1,
@@ -8207,7 +8187,7 @@ export default {
5,
{
"input": [
- 446,
+ 445,
"CreateApplicationRegistrationVariableInput!"
]
}
@@ -8216,7 +8196,7 @@ export default {
5,
{
"input": [
- 447,
+ 446,
"UpdateApplicationRegistrationVariableInput!"
]
}
@@ -8234,7 +8214,7 @@ export default {
8,
{
"file": [
- 362,
+ 361,
"Upload!"
],
"universalIdentifier": [
@@ -8281,7 +8261,7 @@ export default {
29,
{
"createRoleInput": [
- 449,
+ 448,
"CreateRoleInput!"
]
}
@@ -8290,7 +8270,7 @@ export default {
29,
{
"updateRoleInput": [
- 450,
+ 449,
"UpdateRoleInput!"
]
}
@@ -8308,7 +8288,7 @@ export default {
16,
{
"upsertObjectPermissionsInput": [
- 452,
+ 451,
"UpsertObjectPermissionsInput!"
]
}
@@ -8317,7 +8297,7 @@ export default {
27,
{
"upsertPermissionFlagsInput": [
- 454,
+ 453,
"UpsertPermissionFlagsInput!"
]
}
@@ -8326,16 +8306,16 @@ export default {
26,
{
"upsertFieldPermissionsInput": [
- 455,
+ 454,
"UpsertFieldPermissionsInput!"
]
}
],
"upsertRowLevelPermissionPredicates": [
- 237,
+ 236,
{
"input": [
- 457,
+ 456,
"UpsertRowLevelPermissionPredicatesInput!"
]
}
@@ -8363,37 +8343,37 @@ export default {
}
],
"sendEmailViaEmailingDomain": [
- 285,
+ 284,
{
"input": [
- 460,
+ 459,
"SendEmailViaDomainInput!"
]
}
],
"sendMessageCampaign": [
- 287,
+ 286,
{
"input": [
- 461,
+ 460,
"SendMessageCampaignInput!"
]
}
],
"createUnsubscribeTopic": [
- 288,
+ 287,
{
"input": [
- 462,
+ 461,
"CreateUnsubscribeTopicInput!"
]
}
],
"updateUnsubscribeTopic": [
- 288,
+ 287,
{
"input": [
- 463,
+ 462,
"UpdateUnsubscribeTopicInput!"
]
}
@@ -8408,25 +8388,25 @@ export default {
}
],
"updateMessageChannel": [
- 275,
+ 274,
{
"input": [
- 464,
+ 463,
"UpdateMessageChannelInput!"
]
}
],
"createEmailGroupChannel": [
- 283,
+ 282,
{
"input": [
- 466,
+ 465,
"CreateEmailGroupChannelInput!"
]
}
],
"deleteEmailGroupChannel": [
- 275,
+ 274,
{
"id": [
3,
@@ -8435,10 +8415,10 @@ export default {
}
],
"createEmailingDomain": [
- 273,
+ 272,
{
"input": [
- 467,
+ 466,
"CreateEmailingDomainInput!"
]
}
@@ -8453,7 +8433,7 @@ export default {
}
],
"verifyEmailingDomain": [
- 273,
+ 272,
{
"id": [
1,
@@ -8462,7 +8442,7 @@ export default {
}
],
"deleteConnectedAccount": [
- 242,
+ 241,
{
"id": [
3,
@@ -8471,34 +8451,34 @@ export default {
}
],
"runAgent": [
- 300,
+ 299,
{
"input": [
- 468,
+ 467,
"RunAgentInput!"
]
}
],
"createWebhook": [
- 297,
+ 296,
{
"input": [
- 469,
+ 468,
"CreateWebhookInput!"
]
}
],
"updateWebhook": [
- 297,
+ 296,
{
"input": [
- 470,
+ 469,
"UpdateWebhookInput!"
]
}
],
"deleteWebhook": [
- 297,
+ 296,
{
"id": [
3,
@@ -8507,37 +8487,37 @@ export default {
}
],
"updateMessageFolder": [
- 333,
+ 332,
{
"input": [
- 472,
+ 471,
"UpdateMessageFolderInput!"
]
}
],
"updateMessageFolders": [
- 333,
+ 332,
{
"input": [
- 474,
+ 473,
"UpdateMessageFoldersInput!"
]
}
],
"updateCalendarChannel": [
- 328,
+ 327,
{
"input": [
- 475,
+ 474,
"UpdateCalendarChannelInput!"
]
}
],
"createChatThread": [
- 318
+ 317
],
"sendChatMessage": [
- 323,
+ 322,
{
"threadId": [
3,
@@ -8558,13 +8538,13 @@ export default {
1
],
"fileAttachments": [
- 477,
+ 476,
"[FileAttachmentInput!]"
]
}
],
"retryChatMessage": [
- 323,
+ 322,
{
"threadId": [
3,
@@ -8576,7 +8556,7 @@ export default {
}
],
"answerAgentChatQuestion": [
- 323,
+ 322,
{
"threadId": [
3,
@@ -8587,7 +8567,7 @@ export default {
"UUID!"
],
"answers": [
- 478,
+ 477,
"[AgentChatQuestionAnswerInput!]!"
],
"modelId": [
@@ -8605,7 +8585,7 @@ export default {
}
],
"renameChatThread": [
- 318,
+ 317,
{
"id": [
3,
@@ -8618,7 +8598,7 @@ export default {
}
],
"archiveChatThread": [
- 318,
+ 317,
{
"id": [
3,
@@ -8627,7 +8607,7 @@ export default {
}
],
"unarchiveChatThread": [
- 318,
+ 317,
{
"id": [
3,
@@ -8654,25 +8634,25 @@ export default {
}
],
"createSkill": [
- 316,
+ 315,
{
"input": [
- 479,
+ 478,
"CreateSkillInput!"
]
}
],
"updateSkill": [
- 316,
+ 315,
{
"input": [
- 480,
+ 479,
"UpdateSkillInput!"
]
}
],
"deleteSkill": [
- 316,
+ 315,
{
"id": [
3,
@@ -8681,7 +8661,7 @@ export default {
}
],
"activateSkill": [
- 316,
+ 315,
{
"id": [
3,
@@ -8690,7 +8670,7 @@ export default {
}
],
"deactivateSkill": [
- 316,
+ 315,
{
"id": [
3,
@@ -8699,7 +8679,7 @@ export default {
}
],
"evaluateAgentTurn": [
- 325,
+ 324,
{
"turnId": [
3,
@@ -8708,7 +8688,7 @@ export default {
}
],
"runEvaluationInput": [
- 326,
+ 325,
{
"agentId": [
3,
@@ -8721,16 +8701,16 @@ export default {
}
],
"getAuthorizationUrlForSSO": [
- 250,
+ 249,
{
"input": [
- 481,
+ 480,
"GetAuthorizationUrlForSSOInput!"
]
}
],
"getLoginTokenFromCredentials": [
- 261,
+ 260,
{
"email": [
1,
@@ -8756,7 +8736,7 @@ export default {
}
],
"signIn": [
- 248,
+ 247,
{
"email": [
1,
@@ -8778,7 +8758,7 @@ export default {
}
],
"verifyEmailAndGetLoginToken": [
- 256,
+ 255,
{
"emailVerificationToken": [
1,
@@ -8798,7 +8778,7 @@ export default {
}
],
"verifyEmailAndGetWorkspaceAgnosticToken": [
- 248,
+ 247,
{
"emailVerificationToken": [
1,
@@ -8814,7 +8794,7 @@ export default {
}
],
"getAuthTokensFromOTP": [
- 260,
+ 259,
{
"otp": [
1,
@@ -8834,7 +8814,7 @@ export default {
}
],
"signUp": [
- 248,
+ 247,
{
"email": [
1,
@@ -8856,7 +8836,7 @@ export default {
}
],
"signUpInWorkspace": [
- 253,
+ 252,
{
"email": [
1,
@@ -8887,31 +8867,31 @@ export default {
}
],
"signUpInNewWorkspace": [
- 253,
+ 252,
{
"input": [
- 482
+ 481
]
}
],
"uploadNewWorkspaceLogo": [
- 128,
+ 127,
{
"workspaceId": [
1,
"String!"
],
"file": [
- 362,
+ 361,
"Upload!"
]
}
],
"generateTransientToken": [
- 254
+ 253
],
"getAuthTokensFromLoginToken": [
- 260,
+ 259,
{
"loginToken": [
1,
@@ -8924,7 +8904,7 @@ export default {
}
],
"authorizeApp": [
- 246,
+ 245,
{
"clientId": [
1,
@@ -8946,7 +8926,7 @@ export default {
}
],
"renewToken": [
- 260,
+ 259,
{
"appToken": [
1,
@@ -8955,7 +8935,7 @@ export default {
}
],
"generateApiKeyToken": [
- 259,
+ 258,
{
"apiKeyId": [
3,
@@ -8971,7 +8951,7 @@ export default {
32
],
"emailPasswordResetLink": [
- 249,
+ 248,
{
"email": [
1,
@@ -8983,7 +8963,7 @@ export default {
}
],
"updatePasswordViaResetToken": [
- 251,
+ 250,
{
"passwordResetToken": [
1,
@@ -8996,7 +8976,7 @@ export default {
}
],
"initiateOTPProvisioning": [
- 244,
+ 243,
{
"loginToken": [
1,
@@ -9009,10 +8989,10 @@ export default {
}
],
"initiateOTPProvisioningForAuthenticatedUser": [
- 244
+ 243
],
"deleteTwoFactorAuthenticationMethod": [
- 243,
+ 242,
{
"twoFactorAuthenticationMethodId": [
3,
@@ -9021,7 +9001,7 @@ export default {
}
],
"verifyTwoFactorAuthenticationMethodForAuthenticatedUser": [
- 245,
+ 244,
{
"otp": [
1,
@@ -9030,7 +9010,7 @@ export default {
}
],
"deleteUser": [
- 76
+ 75
],
"deleteUserFromWorkspace": [
17,
@@ -9045,7 +9025,7 @@ export default {
6,
{
"input": [
- 483,
+ 482,
"UpdateWorkspaceMemberSettingsInput!"
]
}
@@ -9063,7 +9043,7 @@ export default {
}
],
"resendEmailVerificationToken": [
- 218,
+ 217,
{
"email": [
1,
@@ -9076,43 +9056,43 @@ export default {
}
],
"createOIDCIdentityProvider": [
- 223,
+ 222,
{
"input": [
- 484,
+ 483,
"SetupOIDCSsoInput!"
]
}
],
"createSAMLIdentityProvider": [
- 223,
+ 222,
{
"input": [
- 485,
+ 484,
"SetupSAMLSsoInput!"
]
}
],
"deleteSSOIdentityProvider": [
- 219,
+ 218,
{
"input": [
- 486,
+ 485,
"DeleteSsoInput!"
]
}
],
"editSSOIdentityProvider": [
- 220,
+ 219,
{
"input": [
- 487,
+ 486,
"EditSsoInput!"
]
}
],
"createObjectEvent": [
- 312,
+ 311,
{
"event": [
1,
@@ -9132,10 +9112,10 @@ export default {
}
],
"trackAnalytics": [
- 312,
+ 311,
{
"type": [
- 488,
+ 487,
"AnalyticsType!"
],
"name": [
@@ -9150,7 +9130,7 @@ export default {
}
],
"duplicateDashboard": [
- 310,
+ 309,
{
"id": [
3,
@@ -9159,7 +9139,7 @@ export default {
}
],
"impersonate": [
- 264,
+ 263,
{
"userId": [
3,
@@ -9172,25 +9152,25 @@ export default {
}
],
"createCalendarEvent": [
- 302,
+ 301,
{
"input": [
- 489,
+ 488,
"CreateCalendarEventInput!"
]
}
],
"sendEmail": [
- 311,
+ 310,
{
"input": [
- 490,
+ 489,
"SendEmailInput!"
]
}
],
"startChannelSync": [
- 301,
+ 300,
{
"connectedAccountId": [
3,
@@ -9199,14 +9179,14 @@ export default {
}
],
"saveImapSmtpCaldavAccount": [
- 296,
+ 295,
{
"handle": [
1,
"String!"
],
"connectionParameters": [
- 492,
+ 491,
"EmailAccountConnectionParameters!"
],
"id": [
@@ -9215,16 +9195,16 @@ export default {
}
],
"updateLabPublicFeatureFlag": [
- 169,
+ 168,
{
"input": [
- 494,
+ 493,
"UpdateLabPublicFeatureFlagInput!"
]
}
],
"createPublicDomain": [
- 271,
+ 270,
{
"domain": [
1,
@@ -9246,7 +9226,7 @@ export default {
}
],
"checkPublicDomainValidRecords": [
- 236,
+ 235,
{
"domain": [
1,
@@ -9254,17 +9234,8 @@ export default {
]
}
],
- "createOneAppToken": [
- 75,
- {
- "input": [
- 495,
- "CreateOneAppTokenInput!"
- ]
- }
- ],
"createDevelopmentApplication": [
- 268,
+ 267,
{
"universalIdentifier": [
1,
@@ -9277,7 +9248,7 @@ export default {
}
],
"syncApplication": [
- 269,
+ 268,
{
"manifest": [
7,
@@ -9289,10 +9260,10 @@ export default {
}
],
"uploadApplicationFile": [
- 270,
+ 269,
{
"file": [
- 362,
+ 361,
"Upload!"
],
"applicationUniversalIdentifier": [
@@ -9300,7 +9271,7 @@ export default {
"String!"
],
"fileFolder": [
- 361,
+ 360,
"FileFolder!"
],
"filePath": [
@@ -9386,7 +9357,7 @@ export default {
3
],
"type": [
- 159
+ 158
],
"name": [
1
@@ -9418,7 +9389,7 @@ export default {
3
],
"update": [
- 360
+ 359
],
"__typename": [
1
@@ -9529,7 +9500,7 @@ export default {
3
],
"update": [
- 367
+ 366
],
"__typename": [
1
@@ -9694,16 +9665,16 @@ export default {
3
],
"viewFields": [
- 373
+ 372
],
"viewFilters": [
- 374
+ 373
],
"viewFilterGroups": [
- 375
+ 374
],
"viewSorts": [
- 376
+ 375
],
"__typename": [
1
@@ -9814,7 +9785,7 @@ export default {
3
],
"update": [
- 379
+ 378
],
"__typename": [
1
@@ -9852,7 +9823,7 @@ export default {
3
],
"update": [
- 383
+ 382
],
"__typename": [
1
@@ -9928,7 +9899,7 @@ export default {
3
],
"update": [
- 388
+ 387
],
"__typename": [
1
@@ -9992,10 +9963,10 @@ export default {
3
],
"groups": [
- 393
+ 392
],
"fields": [
- 394
+ 393
],
"__typename": [
1
@@ -10015,7 +9986,7 @@ export default {
6
],
"fields": [
- 394
+ 393
],
"__typename": [
1
@@ -10121,7 +10092,7 @@ export default {
3
],
"layoutMode": [
- 86
+ 85
],
"__typename": [
1
@@ -10138,7 +10109,7 @@ export default {
1
],
"layoutMode": [
- 86
+ 85
],
"__typename": [
1
@@ -10149,7 +10120,7 @@ export default {
1
],
"type": [
- 122
+ 121
],
"objectMetadataId": [
3
@@ -10163,7 +10134,7 @@ export default {
1
],
"type": [
- 122
+ 121
],
"objectMetadataId": [
3
@@ -10177,13 +10148,13 @@ export default {
1
],
"type": [
- 122
+ 121
],
"objectMetadataId": [
3
],
"tabs": [
- 406
+ 405
],
"__typename": [
1
@@ -10203,10 +10174,10 @@ export default {
1
],
"layoutMode": [
- 86
+ 85
],
"widgets": [
- 407
+ 406
],
"__typename": [
1
@@ -10223,13 +10194,13 @@ export default {
1
],
"type": [
- 83
+ 82
],
"objectMetadataId": [
3
],
"gridPosition": [
- 408
+ 407
],
"position": [
7
@@ -10272,13 +10243,13 @@ export default {
1
],
"type": [
- 83
+ 82
],
"objectMetadataId": [
3
],
"gridPosition": [
- 408
+ 407
],
"position": [
7
@@ -10298,13 +10269,13 @@ export default {
1
],
"type": [
- 83
+ 82
],
"objectMetadataId": [
3
],
"gridPosition": [
- 408
+ 407
],
"position": [
7
@@ -10397,7 +10368,7 @@ export default {
},
"CreateOneObjectInput": {
"object": [
- 414
+ 413
],
"__typename": [
1
@@ -10457,7 +10428,7 @@ export default {
},
"UpdateOneObjectInput": {
"update": [
- 417
+ 416
],
"id": [
3
@@ -10512,7 +10483,7 @@ export default {
},
"CreateOneIndexInput": {
"index": [
- 419
+ 418
],
"__typename": [
1
@@ -10523,7 +10494,7 @@ export default {
3
],
"fields": [
- 420
+ 419
],
"indexType": [
46
@@ -10608,7 +10579,7 @@ export default {
3
],
"update": [
- 425
+ 424
],
"__typename": [
1
@@ -10768,7 +10739,7 @@ export default {
3
],
"update": [
- 430
+ 429
],
"__typename": [
1
@@ -10875,7 +10846,7 @@ export default {
},
"CreateOneFieldMetadataInput": {
"field": [
- 434
+ 433
],
"__typename": [
1
@@ -10948,7 +10919,7 @@ export default {
3
],
"update": [
- 436
+ 435
],
"__typename": [
1
@@ -11043,7 +11014,7 @@ export default {
3
],
"update": [
- 440
+ 439
],
"__typename": [
1
@@ -11104,7 +11075,7 @@ export default {
1
],
"update": [
- 445
+ 444
],
"__typename": [
1
@@ -11158,7 +11129,7 @@ export default {
1
],
"update": [
- 448
+ 447
],
"__typename": [
1
@@ -11224,7 +11195,7 @@ export default {
},
"UpdateRoleInput": {
"update": [
- 451
+ 450
],
"id": [
3
@@ -11279,7 +11250,7 @@ export default {
3
],
"objectPermissions": [
- 453
+ 452
],
"__typename": [
1
@@ -11321,7 +11292,7 @@ export default {
3
],
"fieldPermissions": [
- 456
+ 455
],
"__typename": [
1
@@ -11352,10 +11323,10 @@ export default {
3
],
"predicates": [
- 458
+ 457
],
"predicateGroups": [
- 459
+ 458
],
"__typename": [
1
@@ -11473,7 +11444,7 @@ export default {
1
],
"visibility": [
- 289
+ 288
],
"__typename": [
1
@@ -11490,7 +11461,7 @@ export default {
1
],
"visibility": [
- 289
+ 288
],
"__typename": [
1
@@ -11501,7 +11472,7 @@ export default {
3
],
"update": [
- 465
+ 464
],
"__typename": [
1
@@ -11509,16 +11480,16 @@ export default {
},
"UpdateMessageChannelInputUpdates": {
"visibility": [
- 276
+ 275
],
"isContactAutoCreationEnabled": [
6
],
"contactAutoCreationPolicy": [
- 278
+ 277
],
"messageFolderImportPolicy": [
- 279
+ 278
],
"isSyncEnabled": [
6
@@ -11585,7 +11556,7 @@ export default {
3
],
"update": [
- 471
+ 470
],
"__typename": [
1
@@ -11613,7 +11584,7 @@ export default {
3
],
"update": [
- 473
+ 472
],
"__typename": [
1
@@ -11632,7 +11603,7 @@ export default {
3
],
"update": [
- 473
+ 472
],
"__typename": [
1
@@ -11643,7 +11614,7 @@ export default {
3
],
"update": [
- 476
+ 475
],
"__typename": [
1
@@ -11651,13 +11622,13 @@ export default {
},
"UpdateCalendarChannelInputUpdates": {
"visibility": [
- 331
+ 330
],
"isContactAutoCreationEnabled": [
6
],
"contactAutoCreationPolicy": [
- 332
+ 331
],
"isSyncEnabled": [
6
@@ -11826,7 +11797,7 @@ export default {
3
],
"status": [
- 178
+ 177
],
"__typename": [
1
@@ -11897,7 +11868,7 @@ export default {
1
],
"files": [
- 491
+ 490
],
"__typename": [
1
@@ -11919,13 +11890,13 @@ export default {
1
],
"IMAP": [
- 493
+ 492
],
"SMTP": [
- 493
+ 492
],
"CALDAV": [
- 493
+ 492
],
"__typename": [
1
@@ -11945,7 +11916,7 @@ export default {
1
],
"connectionSecurity": [
- 240
+ 239
],
"__typename": [
1
@@ -11962,25 +11933,9 @@ export default {
1
]
},
- "CreateOneAppTokenInput": {
- "appToken": [
- 496
- ],
- "__typename": [
- 1
- ]
- },
- "CreateAppTokenInput": {
- "expiresAt": [
- 4
- ],
- "__typename": [
- 1
- ]
- },
"Subscription": {
"onEventSubscription": [
- 166,
+ 165,
{
"eventStreamId": [
1,
@@ -11989,16 +11944,16 @@ export default {
}
],
"logicFunctionLogs": [
- 238,
+ 237,
{
"input": [
- 498,
+ 495,
"LogicFunctionLogsInput!"
]
}
],
"onAgentChatEvent": [
- 324,
+ 323,
{
"threadId": [
3,
@@ -12007,10 +11962,10 @@ export default {
}
],
"eventLogsLive": [
- 313,
+ 312,
{
"table": [
- 347,
+ 346,
"EventLogTable!"
]
}
diff --git a/packages/twenty-front/src/generated-metadata/graphql.ts b/packages/twenty-front/src/generated-metadata/graphql.ts
index b0c28b7c74..a2231479c9 100644
--- a/packages/twenty-front/src/generated-metadata/graphql.ts
+++ b/packages/twenty-front/src/generated-metadata/graphql.ts
@@ -279,15 +279,6 @@ export type AppConnection = {
visibility: Scalars['String']['output'];
};
-export type AppToken = {
- __typename?: 'AppToken';
- createdAt: Scalars['DateTime']['output'];
- expiresAt: Scalars['DateTime']['output'];
- id: Scalars['UUID']['output'];
- type: Scalars['String']['output'];
- updatedAt: Scalars['DateTime']['output'];
-};
-
export type Application = {
__typename?: 'Application';
agents: Array;
@@ -1052,10 +1043,6 @@ export type CreateApiKeyInput = {
roleId: Scalars['UUID']['input'];
};
-export type CreateAppTokenInput = {
- expiresAt: Scalars['DateTime']['input'];
-};
-
export type CreateApplicationRegistration = {
__typename?: 'CreateApplicationRegistration';
applicationRegistration: ApplicationRegistration;
@@ -1225,11 +1212,6 @@ export type CreateObjectInput = {
skipNameField?: InputMaybe;
};
-export type CreateOneAppTokenInput = {
- /** The record to create */
- appToken: CreateAppTokenInput;
-};
-
export type CreateOneFieldMetadataInput = {
/** The record to create */
field: CreateFieldInput;
@@ -2557,7 +2539,6 @@ export type Mutation = {
createOIDCIdentityProvider: SetupSso;
createObjectEvent: Analytics;
createOneAgent: Agent;
- createOneAppToken: AppToken;
createOneField: Field;
createOneIndex: Index;
createOneLogicFunction: LogicFunction;
@@ -2925,11 +2906,6 @@ export type MutationCreateOneAgentArgs = {
};
-export type MutationCreateOneAppTokenArgs = {
- input: CreateOneAppTokenInput;
-};
-
-
export type MutationCreateOneFieldArgs = {
input: CreateOneFieldMetadataInput;
};
diff --git a/packages/twenty-server/src/engine/core-modules/app-token/app-token.auto-resolver-opts.ts b/packages/twenty-server/src/engine/core-modules/app-token/app-token.auto-resolver-opts.ts
deleted file mode 100644
index c2b1758cff..0000000000
--- a/packages/twenty-server/src/engine/core-modules/app-token/app-token.auto-resolver-opts.ts
+++ /dev/null
@@ -1,42 +0,0 @@
-import {
- type AutoResolverOpts,
- PagingStrategies,
- type ReadResolverOpts,
-} from '@ptc-org/nestjs-query-graphql';
-
-import { AppTokenEntity } from 'src/engine/core-modules/app-token/app-token.entity';
-import { CreateAppTokenInput } from 'src/engine/core-modules/app-token/dtos/create-app-token.input';
-import { WorkspaceAuthGuard } from 'src/engine/guards/workspace-auth.guard';
-
-export const appTokenAutoResolverOpts: AutoResolverOpts<
- // oxlint-disable-next-line typescript/no-explicit-any
- any,
- // oxlint-disable-next-line typescript/no-explicit-any
- any,
- unknown,
- unknown,
- // oxlint-disable-next-line typescript/no-explicit-any
- ReadResolverOpts,
- PagingStrategies
->[] = [
- {
- EntityClass: AppTokenEntity,
- DTOClass: AppTokenEntity,
- CreateDTOClass: CreateAppTokenInput,
- enableTotalCount: true,
- pagingStrategy: PagingStrategies.CURSOR,
- read: {
- many: { disabled: true },
- one: { disabled: true },
- },
- create: {
- many: { disabled: true },
- },
- update: {
- many: { disabled: true },
- one: { disabled: true },
- },
- delete: { many: { disabled: true }, one: { disabled: true } },
- guards: [WorkspaceAuthGuard],
- },
-];
diff --git a/packages/twenty-server/src/engine/core-modules/app-token/app-token.entity.ts b/packages/twenty-server/src/engine/core-modules/app-token/app-token.entity.ts
index f0b4d6bd86..f2beb0e7ac 100644
--- a/packages/twenty-server/src/engine/core-modules/app-token/app-token.entity.ts
+++ b/packages/twenty-server/src/engine/core-modules/app-token/app-token.entity.ts
@@ -1,6 +1,3 @@
-import { Field, ObjectType } from '@nestjs/graphql';
-
-import { BeforeCreateOne, IDField } from '@ptc-org/nestjs-query-graphql';
import { isDefined } from 'twenty-shared/utils';
import {
BeforeInsert,
@@ -15,8 +12,6 @@ import {
UpdateDateColumn,
} from 'typeorm';
-import { UUIDScalarType } from 'src/engine/api/graphql/workspace-schema-builder/graphql-types/scalars';
-import { BeforeCreateOneAppToken } from 'src/engine/core-modules/app-token/hooks/before-create-one-app-token.hook';
import { UserEntity } from 'src/engine/core-modules/user/user.entity';
import { WorkspaceEntity } from 'src/engine/core-modules/workspace/workspace.entity';
@@ -32,10 +27,7 @@ export enum AppTokenType {
}
@Entity({ name: 'appToken', schema: 'core' })
-@ObjectType('AppToken')
-@BeforeCreateOne(BeforeCreateOneAppToken)
export class AppTokenEntity {
- @IDField(() => UUIDScalarType)
@PrimaryGeneratedColumn('uuid')
id: string;
@@ -57,14 +49,12 @@ export class AppTokenEntity {
@Column({ nullable: true, type: 'uuid' })
workspaceId: string | null;
- @Field()
@Column({ nullable: false, type: 'text', default: AppTokenType.RefreshToken })
type: AppTokenType;
@Column({ nullable: true, type: 'text' })
value: string;
- @Field()
@Column({ type: 'timestamptz' })
expiresAt: Date;
@@ -74,11 +64,9 @@ export class AppTokenEntity {
@Column({ nullable: true, type: 'timestamptz' })
revokedAt: Date | null;
- @Field()
@CreateDateColumn({ type: 'timestamptz' })
createdAt: Date;
- @Field()
@UpdateDateColumn({ type: 'timestamptz' })
updatedAt: Date;
diff --git a/packages/twenty-server/src/engine/core-modules/app-token/app-token.module.ts b/packages/twenty-server/src/engine/core-modules/app-token/app-token.module.ts
deleted file mode 100644
index 3a3508af2e..0000000000
--- a/packages/twenty-server/src/engine/core-modules/app-token/app-token.module.ts
+++ /dev/null
@@ -1,19 +0,0 @@
-import { Module } from '@nestjs/common';
-
-import { NestjsQueryGraphQLModule } from '@ptc-org/nestjs-query-graphql';
-import { NestjsQueryTypeOrmModule } from '@ptc-org/nestjs-query-typeorm';
-
-import { AppTokenEntity } from 'src/engine/core-modules/app-token/app-token.entity';
-import { appTokenAutoResolverOpts } from 'src/engine/core-modules/app-token/app-token.auto-resolver-opts';
-import { AppTokenService } from 'src/engine/core-modules/app-token/services/app-token.service';
-
-@Module({
- imports: [
- NestjsQueryGraphQLModule.forFeature({
- imports: [NestjsQueryTypeOrmModule.forFeature([AppTokenEntity])],
- services: [AppTokenService],
- resolvers: appTokenAutoResolverOpts,
- }),
- ],
-})
-export class AppTokenModule {}
diff --git a/packages/twenty-server/src/engine/core-modules/app-token/dtos/create-app-token.input.ts b/packages/twenty-server/src/engine/core-modules/app-token/dtos/create-app-token.input.ts
deleted file mode 100644
index 5d2385ee7e..0000000000
--- a/packages/twenty-server/src/engine/core-modules/app-token/dtos/create-app-token.input.ts
+++ /dev/null
@@ -1,11 +0,0 @@
-import { Field, InputType } from '@nestjs/graphql';
-
-import { IsDate, IsNotEmpty } from 'class-validator';
-
-@InputType()
-export class CreateAppTokenInput {
- @IsDate()
- @IsNotEmpty()
- @Field()
- expiresAt: Date;
-}
diff --git a/packages/twenty-server/src/engine/core-modules/app-token/hooks/before-create-one-app-token.hook.ts b/packages/twenty-server/src/engine/core-modules/app-token/hooks/before-create-one-app-token.hook.ts
deleted file mode 100644
index f86eb4f525..0000000000
--- a/packages/twenty-server/src/engine/core-modules/app-token/hooks/before-create-one-app-token.hook.ts
+++ /dev/null
@@ -1,22 +0,0 @@
-import {
- type BeforeCreateOneHook,
- type CreateOneInputType,
-} from '@ptc-org/nestjs-query-graphql';
-
-import { type AppTokenEntity } from 'src/engine/core-modules/app-token/app-token.entity';
-
-export class BeforeCreateOneAppToken<
- T extends AppTokenEntity,
-> implements BeforeCreateOneHook {
- async run(
- instance: CreateOneInputType,
- // oxlint-disable-next-line typescript/no-explicit-any
- context: any,
- ): Promise> {
- const userId = context?.req?.user?.id;
-
- instance.input.userId = userId;
-
- return instance;
- }
-}
diff --git a/packages/twenty-server/src/engine/core-modules/app-token/services/app-token.service.spec.ts b/packages/twenty-server/src/engine/core-modules/app-token/services/app-token.service.spec.ts
deleted file mode 100644
index edd7c62a40..0000000000
--- a/packages/twenty-server/src/engine/core-modules/app-token/services/app-token.service.spec.ts
+++ /dev/null
@@ -1,32 +0,0 @@
-import { Test, type TestingModule } from '@nestjs/testing';
-import { getRepositoryToken } from '@nestjs/typeorm';
-
-import { AppTokenService } from 'src/engine/core-modules/app-token/services/app-token.service';
-import { AppTokenEntity } from 'src/engine/core-modules/app-token/app-token.entity';
-
-describe('AppTokenService', () => {
- let service: AppTokenService;
-
- beforeEach(async () => {
- const module: TestingModule = await Test.createTestingModule({
- providers: [
- AppTokenService,
- {
- provide: getRepositoryToken(AppTokenEntity),
- useValue: {
- manager: {
- connection: { driver: { options: { type: 'postgres' } } },
- },
- metadata: { columns: [] },
- },
- },
- ],
- }).compile();
-
- service = module.get(AppTokenService);
- });
-
- it('should be defined', () => {
- expect(service).toBeDefined();
- });
-});
diff --git a/packages/twenty-server/src/engine/core-modules/app-token/services/app-token.service.ts b/packages/twenty-server/src/engine/core-modules/app-token/services/app-token.service.ts
deleted file mode 100644
index cea5032aa3..0000000000
--- a/packages/twenty-server/src/engine/core-modules/app-token/services/app-token.service.ts
+++ /dev/null
@@ -1,15 +0,0 @@
-import { InjectRepository } from '@nestjs/typeorm';
-
-import { TypeOrmQueryService } from '@ptc-org/nestjs-query-typeorm';
-import { Repository } from 'typeorm';
-
-import { AppTokenEntity } from 'src/engine/core-modules/app-token/app-token.entity';
-
-export class AppTokenService extends TypeOrmQueryService {
- constructor(
- @InjectRepository(AppTokenEntity)
- private readonly appTokenRepository: Repository,
- ) {
- super(appTokenRepository);
- }
-}
diff --git a/packages/twenty-server/src/engine/core-modules/auth/auth.module.ts b/packages/twenty-server/src/engine/core-modules/auth/auth.module.ts
index b70a89241f..eb318ecfb6 100644
--- a/packages/twenty-server/src/engine/core-modules/auth/auth.module.ts
+++ b/packages/twenty-server/src/engine/core-modules/auth/auth.module.ts
@@ -5,7 +5,6 @@ import { CoreEntityCacheModule } from 'src/engine/core-entity-cache/core-entity-
import { ApiKeyEntity } from 'src/engine/core-modules/api-key/api-key.entity';
import { ApiKeyModule } from 'src/engine/core-modules/api-key/api-key.module';
import { AppTokenEntity } from 'src/engine/core-modules/app-token/app-token.entity';
-import { AppTokenService } from 'src/engine/core-modules/app-token/services/app-token.service';
import { ApplicationRegistrationModule } from 'src/engine/core-modules/application/application-registration/application-registration.module';
import { ApplicationModule } from 'src/engine/core-modules/application/application.module';
import { ConnectionProviderOAuthController } from 'src/engine/core-modules/application/connection-provider/connection-provider-oauth.controller';
@@ -151,7 +150,6 @@ import { JwtAuthStrategy } from './strategies/jwt.auth.strategy';
GoogleAPIScopesService,
GoogleApisServiceAvailabilityService,
MicrosoftAPIsService,
- AppTokenService,
AccessTokenService,
RefreshTokenService,
LoginTokenService,
diff --git a/packages/twenty-server/src/engine/core-modules/core-engine.module.ts b/packages/twenty-server/src/engine/core-modules/core-engine.module.ts
index b0bed69ba2..b3df8b1823 100644
--- a/packages/twenty-server/src/engine/core-modules/core-engine.module.ts
+++ b/packages/twenty-server/src/engine/core-modules/core-engine.module.ts
@@ -6,7 +6,6 @@ import { WorkspaceQueryRunnerModule } from 'src/engine/api/graphql/workspace-que
import { ActorModule } from 'src/engine/core-modules/actor/actor.module';
import { AdminPanelModule } from 'src/engine/core-modules/admin-panel/admin-panel.module';
import { ApiKeyModule } from 'src/engine/core-modules/api-key/api-key.module';
-import { AppTokenModule } from 'src/engine/core-modules/app-token/app-token.module';
import { ApplicationDevelopmentModule } from 'src/engine/core-modules/application/application-development/application-development.module';
import { ApplicationInstallModule } from 'src/engine/core-modules/application/application-install/application-install.module';
import { MarketplaceModule } from 'src/engine/core-modules/application/application-marketplace/marketplace.module';
@@ -107,7 +106,6 @@ import { FileModule } from './file/file.module';
ApplicationUpgradeModule,
ApplicationDevelopmentModule,
MarketplaceModule,
- AppTokenModule,
TimelineMessagingModule,
TimelineCalendarEventModule,
UserModule,