Fix server variable not shown (#20799)
## Before <img width="1502" height="675" alt="image" src="https://github.com/user-attachments/assets/b64b24b4-11a5-4f6b-a3aa-c77108f22e9d" /> ## After <img width="1262" height="593" alt="image" src="https://github.com/user-attachments/assets/42d662b4-2ec6-4ad4-9d19-58f25f52475c" /> --------- Co-authored-by: ehconitin <nitinkoche03@gmail.com>
This commit is contained in:
@@ -1764,6 +1764,18 @@ type WorkspaceUrls {
|
||||
subdomainUrl: String!
|
||||
}
|
||||
|
||||
type ApplicationRegistrationVariableDTO {
|
||||
id: UUID!
|
||||
key: String!
|
||||
value: String
|
||||
description: String!
|
||||
isSecret: Boolean!
|
||||
isRequired: Boolean!
|
||||
isFilled: Boolean!
|
||||
createdAt: DateTime!
|
||||
updatedAt: DateTime!
|
||||
}
|
||||
|
||||
type BillingTrialPeriod {
|
||||
duration: Float!
|
||||
isCreditCardRequired: Boolean!
|
||||
@@ -1968,18 +1980,6 @@ type RotateClientSecret {
|
||||
clientSecret: String!
|
||||
}
|
||||
|
||||
type ApplicationRegistrationVariableDTO {
|
||||
id: UUID!
|
||||
key: String!
|
||||
value: String
|
||||
description: String!
|
||||
isSecret: Boolean!
|
||||
isRequired: Boolean!
|
||||
isFilled: Boolean!
|
||||
createdAt: DateTime!
|
||||
updatedAt: DateTime!
|
||||
}
|
||||
|
||||
type Relation {
|
||||
type: RelationType!
|
||||
sourceObjectMetadata: Object!
|
||||
|
||||
@@ -1401,6 +1401,19 @@ export interface WorkspaceUrls {
|
||||
__typename: 'WorkspaceUrls'
|
||||
}
|
||||
|
||||
export interface ApplicationRegistrationVariableDTO {
|
||||
id: Scalars['UUID']
|
||||
key: Scalars['String']
|
||||
value?: Scalars['String']
|
||||
description: Scalars['String']
|
||||
isSecret: Scalars['Boolean']
|
||||
isRequired: Scalars['Boolean']
|
||||
isFilled: Scalars['Boolean']
|
||||
createdAt: Scalars['DateTime']
|
||||
updatedAt: Scalars['DateTime']
|
||||
__typename: 'ApplicationRegistrationVariableDTO'
|
||||
}
|
||||
|
||||
export interface BillingTrialPeriod {
|
||||
duration: Scalars['Float']
|
||||
isCreditCardRequired: Scalars['Boolean']
|
||||
@@ -1609,19 +1622,6 @@ export interface RotateClientSecret {
|
||||
__typename: 'RotateClientSecret'
|
||||
}
|
||||
|
||||
export interface ApplicationRegistrationVariableDTO {
|
||||
id: Scalars['UUID']
|
||||
key: Scalars['String']
|
||||
value?: Scalars['String']
|
||||
description: Scalars['String']
|
||||
isSecret: Scalars['Boolean']
|
||||
isRequired: Scalars['Boolean']
|
||||
isFilled: Scalars['Boolean']
|
||||
createdAt: Scalars['DateTime']
|
||||
updatedAt: Scalars['DateTime']
|
||||
__typename: 'ApplicationRegistrationVariableDTO'
|
||||
}
|
||||
|
||||
export interface Relation {
|
||||
type: RelationType
|
||||
sourceObjectMetadata: Object
|
||||
@@ -4332,6 +4332,20 @@ export interface WorkspaceUrlsGenqlSelection{
|
||||
__scalar?: boolean | number
|
||||
}
|
||||
|
||||
export interface ApplicationRegistrationVariableDTOGenqlSelection{
|
||||
id?: boolean | number
|
||||
key?: boolean | number
|
||||
value?: boolean | number
|
||||
description?: boolean | number
|
||||
isSecret?: boolean | number
|
||||
isRequired?: boolean | number
|
||||
isFilled?: boolean | number
|
||||
createdAt?: boolean | number
|
||||
updatedAt?: boolean | number
|
||||
__typename?: boolean | number
|
||||
__scalar?: boolean | number
|
||||
}
|
||||
|
||||
export interface BillingTrialPeriodGenqlSelection{
|
||||
duration?: boolean | number
|
||||
isCreditCardRequired?: boolean | number
|
||||
@@ -4553,20 +4567,6 @@ export interface RotateClientSecretGenqlSelection{
|
||||
__scalar?: boolean | number
|
||||
}
|
||||
|
||||
export interface ApplicationRegistrationVariableDTOGenqlSelection{
|
||||
id?: boolean | number
|
||||
key?: boolean | number
|
||||
value?: boolean | number
|
||||
description?: boolean | number
|
||||
isSecret?: boolean | number
|
||||
isRequired?: boolean | number
|
||||
isFilled?: boolean | number
|
||||
createdAt?: boolean | number
|
||||
updatedAt?: boolean | number
|
||||
__typename?: boolean | number
|
||||
__scalar?: boolean | number
|
||||
}
|
||||
|
||||
export interface RelationGenqlSelection{
|
||||
type?: boolean | number
|
||||
sourceObjectMetadata?: ObjectGenqlSelection
|
||||
@@ -7183,6 +7183,14 @@ export interface LogicFunctionLogsInput {applicationId?: (Scalars['UUID'] | null
|
||||
|
||||
|
||||
|
||||
const ApplicationRegistrationVariableDTO_possibleTypes: string[] = ['ApplicationRegistrationVariableDTO']
|
||||
export const isApplicationRegistrationVariableDTO = (obj?: { __typename?: any } | null): obj is ApplicationRegistrationVariableDTO => {
|
||||
if (!obj?.__typename) throw new Error('__typename is missing in "isApplicationRegistrationVariableDTO"')
|
||||
return ApplicationRegistrationVariableDTO_possibleTypes.includes(obj.__typename)
|
||||
}
|
||||
|
||||
|
||||
|
||||
const BillingTrialPeriod_possibleTypes: string[] = ['BillingTrialPeriod']
|
||||
export const isBillingTrialPeriod = (obj?: { __typename?: any } | null): obj is BillingTrialPeriod => {
|
||||
if (!obj?.__typename) throw new Error('__typename is missing in "isBillingTrialPeriod"')
|
||||
@@ -7367,14 +7375,6 @@ export interface LogicFunctionLogsInput {applicationId?: (Scalars['UUID'] | null
|
||||
|
||||
|
||||
|
||||
const ApplicationRegistrationVariableDTO_possibleTypes: string[] = ['ApplicationRegistrationVariableDTO']
|
||||
export const isApplicationRegistrationVariableDTO = (obj?: { __typename?: any } | null): obj is ApplicationRegistrationVariableDTO => {
|
||||
if (!obj?.__typename) throw new Error('__typename is missing in "isApplicationRegistrationVariableDTO"')
|
||||
return ApplicationRegistrationVariableDTO_possibleTypes.includes(obj.__typename)
|
||||
}
|
||||
|
||||
|
||||
|
||||
const Relation_possibleTypes: string[] = ['Relation']
|
||||
export const isRelation = (obj?: { __typename?: any } | null): obj is Relation => {
|
||||
if (!obj?.__typename) throw new Error('__typename is missing in "isRelation"')
|
||||
|
||||
@@ -51,11 +51,11 @@ export default {
|
||||
163,
|
||||
167,
|
||||
169,
|
||||
173,
|
||||
174,
|
||||
181,
|
||||
184,
|
||||
187,
|
||||
175,
|
||||
182,
|
||||
185,
|
||||
188,
|
||||
201,
|
||||
226,
|
||||
262,
|
||||
@@ -3434,6 +3434,38 @@ export default {
|
||||
1
|
||||
]
|
||||
},
|
||||
"ApplicationRegistrationVariableDTO": {
|
||||
"id": [
|
||||
3
|
||||
],
|
||||
"key": [
|
||||
1
|
||||
],
|
||||
"value": [
|
||||
1
|
||||
],
|
||||
"description": [
|
||||
1
|
||||
],
|
||||
"isSecret": [
|
||||
6
|
||||
],
|
||||
"isRequired": [
|
||||
6
|
||||
],
|
||||
"isFilled": [
|
||||
6
|
||||
],
|
||||
"createdAt": [
|
||||
4
|
||||
],
|
||||
"updatedAt": [
|
||||
4
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
]
|
||||
},
|
||||
"BillingTrialPeriod": {
|
||||
"duration": [
|
||||
11
|
||||
@@ -3453,10 +3485,10 @@ export default {
|
||||
1
|
||||
],
|
||||
"type": [
|
||||
173
|
||||
174
|
||||
],
|
||||
"status": [
|
||||
174
|
||||
175
|
||||
],
|
||||
"issuer": [
|
||||
1
|
||||
@@ -3469,7 +3501,7 @@ export default {
|
||||
"SSOIdentityProviderStatus": {},
|
||||
"AuthProviders": {
|
||||
"sso": [
|
||||
172
|
||||
173
|
||||
],
|
||||
"google": [
|
||||
6
|
||||
@@ -3506,10 +3538,10 @@ export default {
|
||||
3
|
||||
],
|
||||
"authProviders": [
|
||||
175
|
||||
176
|
||||
],
|
||||
"authBypassProviders": [
|
||||
176
|
||||
177
|
||||
],
|
||||
"logo": [
|
||||
1
|
||||
@@ -3557,7 +3589,7 @@ export default {
|
||||
1
|
||||
],
|
||||
"modelFamily": [
|
||||
181
|
||||
182
|
||||
],
|
||||
"modelFamilyLabel": [
|
||||
1
|
||||
@@ -3572,7 +3604,7 @@ export default {
|
||||
11
|
||||
],
|
||||
"nativeCapabilities": [
|
||||
179
|
||||
180
|
||||
],
|
||||
"isDeprecated": [
|
||||
6
|
||||
@@ -3608,7 +3640,7 @@ export default {
|
||||
1
|
||||
],
|
||||
"trialPeriods": [
|
||||
171
|
||||
172
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
@@ -3616,7 +3648,7 @@ export default {
|
||||
},
|
||||
"Support": {
|
||||
"supportDriver": [
|
||||
184
|
||||
185
|
||||
],
|
||||
"supportFrontChatId": [
|
||||
1
|
||||
@@ -3642,7 +3674,7 @@ export default {
|
||||
},
|
||||
"Captcha": {
|
||||
"provider": [
|
||||
187
|
||||
188
|
||||
],
|
||||
"siteKey": [
|
||||
1
|
||||
@@ -3679,7 +3711,7 @@ export default {
|
||||
169
|
||||
],
|
||||
"metadata": [
|
||||
189
|
||||
190
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
@@ -3704,13 +3736,13 @@ export default {
|
||||
1
|
||||
],
|
||||
"authProviders": [
|
||||
175
|
||||
176
|
||||
],
|
||||
"billing": [
|
||||
182
|
||||
183
|
||||
],
|
||||
"aiModels": [
|
||||
180
|
||||
181
|
||||
],
|
||||
"signInPrefilled": [
|
||||
6
|
||||
@@ -3731,25 +3763,25 @@ export default {
|
||||
6
|
||||
],
|
||||
"support": [
|
||||
183
|
||||
184
|
||||
],
|
||||
"isAttachmentPreviewEnabled": [
|
||||
6
|
||||
],
|
||||
"sentry": [
|
||||
185
|
||||
],
|
||||
"captcha": [
|
||||
186
|
||||
],
|
||||
"captcha": [
|
||||
187
|
||||
],
|
||||
"api": [
|
||||
188
|
||||
189
|
||||
],
|
||||
"canManageFeatureFlags": [
|
||||
6
|
||||
],
|
||||
"publicFeatureFlags": [
|
||||
190
|
||||
191
|
||||
],
|
||||
"isMicrosoftMessagingEnabled": [
|
||||
6
|
||||
@@ -3788,7 +3820,7 @@ export default {
|
||||
6
|
||||
],
|
||||
"maintenance": [
|
||||
191
|
||||
192
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
@@ -3827,7 +3859,7 @@ export default {
|
||||
1
|
||||
],
|
||||
"versionDistribution": [
|
||||
194
|
||||
195
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
@@ -3872,38 +3904,6 @@ export default {
|
||||
1
|
||||
]
|
||||
},
|
||||
"ApplicationRegistrationVariableDTO": {
|
||||
"id": [
|
||||
3
|
||||
],
|
||||
"key": [
|
||||
1
|
||||
],
|
||||
"value": [
|
||||
1
|
||||
],
|
||||
"description": [
|
||||
1
|
||||
],
|
||||
"isSecret": [
|
||||
6
|
||||
],
|
||||
"isRequired": [
|
||||
6
|
||||
],
|
||||
"isFilled": [
|
||||
6
|
||||
],
|
||||
"createdAt": [
|
||||
4
|
||||
],
|
||||
"updatedAt": [
|
||||
4
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
]
|
||||
},
|
||||
"Relation": {
|
||||
"type": [
|
||||
201
|
||||
@@ -4095,7 +4095,7 @@ export default {
|
||||
3
|
||||
],
|
||||
"type": [
|
||||
173
|
||||
174
|
||||
],
|
||||
"issuer": [
|
||||
1
|
||||
@@ -4104,7 +4104,7 @@ export default {
|
||||
1
|
||||
],
|
||||
"status": [
|
||||
174
|
||||
175
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
@@ -4123,7 +4123,7 @@ export default {
|
||||
},
|
||||
"FindAvailableSSOIDP": {
|
||||
"type": [
|
||||
173
|
||||
174
|
||||
],
|
||||
"id": [
|
||||
3
|
||||
@@ -4135,7 +4135,7 @@ export default {
|
||||
1
|
||||
],
|
||||
"status": [
|
||||
174
|
||||
175
|
||||
],
|
||||
"workspace": [
|
||||
218
|
||||
@@ -4149,7 +4149,7 @@ export default {
|
||||
3
|
||||
],
|
||||
"type": [
|
||||
173
|
||||
174
|
||||
],
|
||||
"issuer": [
|
||||
1
|
||||
@@ -4158,7 +4158,7 @@ export default {
|
||||
1
|
||||
],
|
||||
"status": [
|
||||
174
|
||||
175
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
@@ -4166,7 +4166,7 @@ export default {
|
||||
},
|
||||
"SSOConnection": {
|
||||
"type": [
|
||||
173
|
||||
174
|
||||
],
|
||||
"id": [
|
||||
3
|
||||
@@ -4178,7 +4178,7 @@ export default {
|
||||
1
|
||||
],
|
||||
"status": [
|
||||
174
|
||||
175
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
@@ -4529,13 +4529,13 @@ export default {
|
||||
},
|
||||
"UsageAnalytics": {
|
||||
"usageByUser": [
|
||||
193
|
||||
194
|
||||
],
|
||||
"usageByOperationType": [
|
||||
193
|
||||
194
|
||||
],
|
||||
"usageByModel": [
|
||||
193
|
||||
194
|
||||
],
|
||||
"timeSeries": [
|
||||
251
|
||||
@@ -6293,7 +6293,7 @@ export default {
|
||||
}
|
||||
],
|
||||
"findApplicationRegistrationByClientId": [
|
||||
197,
|
||||
198,
|
||||
{
|
||||
"clientId": [
|
||||
1,
|
||||
@@ -6323,7 +6323,7 @@ export default {
|
||||
}
|
||||
],
|
||||
"findApplicationRegistrationStats": [
|
||||
195,
|
||||
196,
|
||||
{
|
||||
"id": [
|
||||
1,
|
||||
@@ -6332,7 +6332,7 @@ export default {
|
||||
}
|
||||
],
|
||||
"findApplicationRegistrationVariables": [
|
||||
199,
|
||||
171,
|
||||
{
|
||||
"applicationRegistrationId": [
|
||||
1,
|
||||
@@ -6356,7 +6356,7 @@ export default {
|
||||
75
|
||||
],
|
||||
"getPublicWorkspaceDataByDomain": [
|
||||
177,
|
||||
178,
|
||||
{
|
||||
"origin": [
|
||||
1
|
||||
@@ -6364,7 +6364,7 @@ export default {
|
||||
}
|
||||
],
|
||||
"getPublicWorkspaceDataById": [
|
||||
178,
|
||||
179,
|
||||
{
|
||||
"id": [
|
||||
3,
|
||||
@@ -8197,7 +8197,7 @@ export default {
|
||||
}
|
||||
],
|
||||
"createApplicationRegistration": [
|
||||
196,
|
||||
197,
|
||||
{
|
||||
"input": [
|
||||
443,
|
||||
@@ -8224,7 +8224,7 @@ export default {
|
||||
}
|
||||
],
|
||||
"rotateApplicationRegistrationClientSecret": [
|
||||
198,
|
||||
199,
|
||||
{
|
||||
"id": [
|
||||
1,
|
||||
@@ -11010,7 +11010,7 @@ export default {
|
||||
3
|
||||
],
|
||||
"status": [
|
||||
174
|
||||
175
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
|
||||
Reference in New Issue
Block a user